mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
Bump version to 1.9.4
This commit is contained in:
parent
db0bbd209b
commit
3160874a27
@ -1,14 +1,6 @@
|
|||||||
import * as extensions from '../src/extensions';
|
import * as extensions from '../src/extensions';
|
||||||
|
|
||||||
describe('Extension tests', () => {
|
describe('Extension tests', () => {
|
||||||
it('checking getXdebugVersion', async () => {
|
|
||||||
expect(await extensions.getXdebugVersion('5.3')).toContain('2.2.7');
|
|
||||||
expect(await extensions.getXdebugVersion('5.4')).toContain('2.4.1');
|
|
||||||
expect(await extensions.getXdebugVersion('5.5')).toContain('2.5.5');
|
|
||||||
expect(await extensions.getXdebugVersion('5.6')).toContain('2.5.5');
|
|
||||||
expect(await extensions.getXdebugVersion('7.0')).toContain('2.7.2');
|
|
||||||
expect(await extensions.getXdebugVersion('7.2')).toContain('2.9.6');
|
|
||||||
});
|
|
||||||
it('checking addExtensionOnWindows', async () => {
|
it('checking addExtensionOnWindows', async () => {
|
||||||
let win32: string = await extensions.addExtension(
|
let win32: string = await extensions.addExtension(
|
||||||
'Xdebug, pcov, sqlite, phalcon4, ast-beta',
|
'Xdebug, pcov, sqlite, phalcon4, ast-beta',
|
||||||
|
23
dist/index.js
vendored
23
dist/index.js
vendored
@ -3505,30 +3505,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.addExtension = exports.addExtensionLinux = exports.addExtensionWindows = exports.addExtensionDarwin = exports.getXdebugVersion = void 0;
|
exports.addExtension = exports.addExtensionLinux = exports.addExtensionWindows = exports.addExtensionDarwin = void 0;
|
||||||
const path = __importStar(__webpack_require__(622));
|
const path = __importStar(__webpack_require__(622));
|
||||||
const utils = __importStar(__webpack_require__(163));
|
const utils = __importStar(__webpack_require__(163));
|
||||||
/**
|
|
||||||
* Function to get Xdebug version compatible with php versions
|
|
||||||
*
|
|
||||||
* @param version
|
|
||||||
*/
|
|
||||||
async function getXdebugVersion(version) {
|
|
||||||
switch (version) {
|
|
||||||
case '5.3':
|
|
||||||
return '2.2.7';
|
|
||||||
case '5.4':
|
|
||||||
return '2.4.1';
|
|
||||||
case '5.5':
|
|
||||||
case '5.6':
|
|
||||||
return '2.5.5';
|
|
||||||
case '7.0':
|
|
||||||
return '2.7.2';
|
|
||||||
default:
|
|
||||||
return '2.9.6';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.getXdebugVersion = getXdebugVersion;
|
|
||||||
/**
|
/**
|
||||||
* Install and enable extensions for darwin
|
* Install and enable extensions for darwin
|
||||||
*
|
*
|
||||||
|
1123
package-lock.json
generated
1123
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
20
package.json
20
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "setup-php",
|
"name": "setup-php",
|
||||||
"version": "1.9.3",
|
"version": "1.9.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Setup PHP for use with GitHub Actions",
|
"description": "Setup PHP for use with GitHub Actions",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
@ -31,21 +31,21 @@
|
|||||||
"fs": "0.0.1-security"
|
"fs": "0.0.1-security"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^26.0.5",
|
"@types/jest": "^26.0.9",
|
||||||
"@types/node": "^14.0.23",
|
"@types/node": "^14.0.27",
|
||||||
"@typescript-eslint/eslint-plugin": "^3.6.1",
|
"@typescript-eslint/eslint-plugin": "^3.8.0",
|
||||||
"@typescript-eslint/parser": "^3.6.1",
|
"@typescript-eslint/parser": "^3.8.0",
|
||||||
"@zeit/ncc": "^0.22.3",
|
"@zeit/ncc": "^0.22.3",
|
||||||
"eslint": "^7.5.0",
|
"eslint": "^7.6.0",
|
||||||
"eslint-config-prettier": "^6.11.0",
|
"eslint-config-prettier": "^6.11.0",
|
||||||
"eslint-plugin-import": "^2.22.0",
|
"eslint-plugin-import": "^2.22.0",
|
||||||
"eslint-plugin-jest": "^23.18.0",
|
"eslint-plugin-jest": "^23.20.0",
|
||||||
"eslint-plugin-prettier": "^3.1.4",
|
"eslint-plugin-prettier": "^3.1.4",
|
||||||
"husky": "^4.2.5",
|
"husky": "^4.2.5",
|
||||||
"jest": "^26.1.0",
|
"jest": "^26.2.2",
|
||||||
"jest-circus": "^26.1.0",
|
"jest-circus": "^26.2.2",
|
||||||
"prettier": "^2.0.5",
|
"prettier": "^2.0.5",
|
||||||
"ts-jest": "^26.1.3",
|
"ts-jest": "^26.1.4",
|
||||||
"typescript": "^3.9.7"
|
"typescript": "^3.9.7"
|
||||||
},
|
},
|
||||||
"husky": {
|
"husky": {
|
||||||
|
@ -1,27 +1,6 @@
|
|||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as utils from './utils';
|
import * as utils from './utils';
|
||||||
|
|
||||||
/**
|
|
||||||
* Function to get Xdebug version compatible with php versions
|
|
||||||
*
|
|
||||||
* @param version
|
|
||||||
*/
|
|
||||||
export async function getXdebugVersion(version: string): Promise<string> {
|
|
||||||
switch (version) {
|
|
||||||
case '5.3':
|
|
||||||
return '2.2.7';
|
|
||||||
case '5.4':
|
|
||||||
return '2.4.1';
|
|
||||||
case '5.5':
|
|
||||||
case '5.6':
|
|
||||||
return '2.5.5';
|
|
||||||
case '7.0':
|
|
||||||
return '2.7.2';
|
|
||||||
default:
|
|
||||||
return '2.9.6';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Install and enable extensions for darwin
|
* Install and enable extensions for darwin
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user