@scandipwa/magento-scripts 1.11.3-alpha.0 → 1.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +0 -0
- package/LICENSE +0 -0
- package/lib/config/dependencies-for-platforms.js +0 -1
- package/lib/config/index.js +4 -2
- package/lib/config/{php.js → php-config.js} +0 -0
- package/lib/config/phpbrew.js +12 -0
- package/lib/config/phpstorm/debug-config.js +46 -0
- package/lib/config/save-config.js +0 -0
- package/lib/config/templates/Project_Default.template.xml +13 -0
- package/lib/config/templates/cma-config.template.js +0 -0
- package/lib/config/templates/dataSources.local.template.xml +11 -0
- package/lib/config/templates/dataSources.template.xml +12 -0
- package/lib/config/templates/magentorc.template +0 -0
- package/lib/config/templates/php-fpm.template.conf +0 -0
- package/lib/config/templates/php.template.xml +14 -0
- package/lib/config/templates/vscode-launch.template.json +15 -0
- package/lib/config/templates/workspace.template.xml +20 -0
- package/lib/config/versions/magento-2.3.0.js +1 -1
- package/lib/config/versions/magento-2.3.1.js +1 -1
- package/lib/config/versions/magento-2.3.2-p2.js +1 -1
- package/lib/config/versions/magento-2.3.2.js +1 -1
- package/lib/config/versions/magento-2.3.3-p1.js +1 -1
- package/lib/config/versions/magento-2.3.3.js +1 -1
- package/lib/config/versions/magento-2.3.4-p2.js +1 -1
- package/lib/config/versions/magento-2.3.4.js +1 -1
- package/lib/config/versions/magento-2.3.5-p1.js +1 -1
- package/lib/config/versions/magento-2.3.5-p2.js +1 -1
- package/lib/config/versions/magento-2.3.5.js +1 -1
- package/lib/config/versions/magento-2.3.6-p1.js +1 -1
- package/lib/config/versions/magento-2.3.6.js +1 -1
- package/lib/config/versions/magento-2.3.7-p1.js +3 -3
- package/lib/config/versions/magento-2.3.7.js +3 -3
- package/lib/config/versions/magento-2.4.0-p1.js +2 -2
- package/lib/config/versions/magento-2.4.0.js +2 -2
- package/lib/config/versions/magento-2.4.1-p1.js +2 -2
- package/lib/config/versions/magento-2.4.1.js +2 -2
- package/lib/config/versions/magento-2.4.2-p1.js +3 -3
- package/lib/config/versions/magento-2.4.2-p2.js +3 -3
- package/lib/config/versions/magento-2.4.2.js +3 -3
- package/lib/config/versions/magento-2.4.3-p1.js +3 -3
- package/lib/config/versions/magento-2.4.3.js +3 -3
- package/lib/tasks/cache/index.js +0 -0
- package/lib/tasks/cli/index.js +0 -0
- package/lib/tasks/composer/index.js +13 -6
- package/lib/tasks/docker/index.js +1 -1
- package/lib/tasks/docker/network.js +2 -2
- package/lib/tasks/execute/index.js +0 -0
- package/lib/tasks/file-system/create-php-storm-config.js +82 -0
- package/lib/tasks/file-system/create-vscode-config.js +111 -0
- package/lib/tasks/file-system/index.js +5 -1
- package/lib/tasks/magento/index.js +0 -0
- package/lib/tasks/magento/setup-magento/adjust-magento-configuration.js +0 -0
- package/lib/tasks/magento/setup-magento/configure-elasticsearch.js +0 -0
- package/lib/tasks/magento/setup-magento/create-admin.js +0 -0
- package/lib/tasks/magento/setup-magento/delete-admin-users.js +0 -0
- package/lib/tasks/magento/setup-magento/flush-redis-config.js +0 -0
- package/lib/tasks/magento/setup-magento/increase-admin-session-lifetime.js +0 -0
- package/lib/tasks/magento/setup-magento/set-base-url.js +0 -0
- package/lib/tasks/magento/setup-magento/set-deployment-mode.js +1 -1
- package/lib/tasks/magento/setup-magento/set-url-rewrite.js +0 -0
- package/lib/tasks/magento/setup-magento/waiting-for-redis.js +1 -1
- package/lib/tasks/mysql/index.js +0 -0
- package/lib/tasks/php/compile.js +2 -2
- package/lib/tasks/php/configure.js +80 -59
- package/lib/tasks/php/extensions/disable.js +41 -0
- package/lib/tasks/php/extensions/enable.js +44 -0
- package/lib/tasks/php/extensions/install.js +47 -0
- package/lib/tasks/php/update-phpbrew.js +0 -0
- package/lib/tasks/php-fpm/index.js +0 -0
- package/lib/tasks/php-fpm/start-php-fpm.js +3 -3
- package/lib/tasks/php-fpm/stop-php-fpm.js +2 -2
- package/lib/tasks/requirements/composer.js +1 -1
- package/lib/tasks/requirements/dependency/arch.js +0 -0
- package/lib/tasks/requirements/dependency/centos.js +0 -0
- package/lib/tasks/requirements/dependency/fedora.js +0 -0
- package/lib/tasks/requirements/dependency/index.js +0 -0
- package/lib/tasks/requirements/dependency/mac.js +0 -0
- package/lib/tasks/requirements/dependency/ubuntu.js +0 -0
- package/lib/tasks/requirements/docker/index.js +2 -2
- package/lib/util/clean-object.js +0 -0
- package/lib/util/config-file-validator.js +7 -1
- package/lib/util/download-file.js +0 -0
- package/lib/util/ip.js +0 -0
- package/lib/util/match-filesystem.js +0 -0
- package/lib/util/move-file.js +0 -0
- package/lib/util/path-exists-sync.js +0 -0
- package/lib/util/portscanner.js +0 -0
- package/lib/util/run-composer.js +0 -0
- package/lib/util/run-magento.js +0 -0
- package/lib/util/run-php.js +0 -0
- package/lib/util/set-config.js +0 -0
- package/lib/util/sleep.js +0 -0
- package/lib/util/wait-for-it.js +0 -0
- package/lib/util/wait-for-logs.js +0 -0
- package/package.json +12 -11
- package/typings/context.d.ts +2 -2
- package/typings/index.d.ts +36 -2
package/.eslintrc
CHANGED
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
package/lib/config/index.js
CHANGED
|
@@ -4,9 +4,10 @@ const {
|
|
|
4
4
|
getConfigurations,
|
|
5
5
|
defaultConfiguration
|
|
6
6
|
} = require('./versions');
|
|
7
|
-
const getPhpConfig = require('./php');
|
|
7
|
+
const getPhpConfig = require('./php-config');
|
|
8
8
|
const getComposerConfig = require('./composer');
|
|
9
9
|
const { getMagentoConfig } = require('./magento-config');
|
|
10
|
+
const { getPhpStormConfig } = require('./phpstorm/debug-config');
|
|
10
11
|
const resolveConfigurationWithOverrides = require('../util/resolve-configuration-with-overrides');
|
|
11
12
|
const { getPrefix, folderName } = require('../util/prefix');
|
|
12
13
|
|
|
@@ -57,7 +58,8 @@ module.exports = {
|
|
|
57
58
|
baseConfig: newBaseConfig,
|
|
58
59
|
overridenConfiguration,
|
|
59
60
|
userConfiguration,
|
|
60
|
-
nonOverridenConfiguration: configurations[magentoVersion]
|
|
61
|
+
nonOverridenConfiguration: configurations[magentoVersion],
|
|
62
|
+
phpStorm: getPhpStormConfig(overridenConfiguration, newBaseConfig)
|
|
61
63
|
};
|
|
62
64
|
},
|
|
63
65
|
baseConfig,
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const os = require('os');
|
|
2
|
+
const path = require('path');
|
|
3
|
+
|
|
4
|
+
const homePath = process.env.PHPBREW_HOME || os.homedir();
|
|
5
|
+
const phpbrewConfig = {
|
|
6
|
+
homePath,
|
|
7
|
+
buildPath: path.join(homePath, 'build'),
|
|
8
|
+
phpPath: path.join(homePath, 'php'),
|
|
9
|
+
bashrcPath: path.join(homePath, 'bashrc')
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
module.exports = phpbrewConfig;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
|
|
3
|
+
const getPhpStormConfig = (app, config) => {
|
|
4
|
+
const [majorPHPVersion, minorPHPVersion] = app.configuration.php.version.split('.');
|
|
5
|
+
const phpLanguageLevel = `${ majorPHPVersion }.${ minorPHPVersion }`;
|
|
6
|
+
const { templateDir } = config;
|
|
7
|
+
const phpStormConfiguration = {
|
|
8
|
+
xdebug: {
|
|
9
|
+
v2Port: '9111',
|
|
10
|
+
v3Port: '9003',
|
|
11
|
+
debugServerAddress: `http://${ app.host }`,
|
|
12
|
+
serverName: 'create-magento-app',
|
|
13
|
+
runManagerName: 'create-magento-app',
|
|
14
|
+
sessionId: 'PHPSTORM',
|
|
15
|
+
path: path.join(process.cwd(), '.idea', 'workspace.xml'),
|
|
16
|
+
templatePath: path.join(templateDir, 'workspace.template.xml')
|
|
17
|
+
},
|
|
18
|
+
php: {
|
|
19
|
+
phpLanguageLevel,
|
|
20
|
+
path: path.join(process.cwd(), '.idea', 'php.xml'),
|
|
21
|
+
templatePath: path.join(templateDir, 'php.template.xml')
|
|
22
|
+
},
|
|
23
|
+
database: {
|
|
24
|
+
driver: 'mysql',
|
|
25
|
+
dataSourceManagerName: 'mysql 8.0',
|
|
26
|
+
dataSourcesLocal: {
|
|
27
|
+
path: path.join(process.cwd(), '.idea', 'dataSources.local.xml'),
|
|
28
|
+
templatePath: path.join(templateDir, 'dataSources.local.template.xml')
|
|
29
|
+
},
|
|
30
|
+
dataSources: {
|
|
31
|
+
path: path.join(process.cwd(), '.idea', 'dataSources.xml'),
|
|
32
|
+
templatePath: path.join(templateDir, 'dataSources.template.xml')
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
inspectionTools: {
|
|
36
|
+
path: path.join(process.cwd(), '.idea', 'inspectionProfiles', 'Project_Default.xml'),
|
|
37
|
+
templatePath: path.join(templateDir, 'Project_Default.template.xml')
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
return phpStormConfiguration;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
module.exports = {
|
|
45
|
+
getPhpStormConfig
|
|
46
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="PhpCSValidationInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
|
|
5
|
+
<option name="CODING_STANDARD" value="Custom" />
|
|
6
|
+
<option name="CUSTOM_RULESET_PATH" value="$PROJECT_DIR$/vendor/magento/magento-coding-standard/Magento2/ruleset.xml" />
|
|
7
|
+
<option name="USE_INSTALLED_PATHS" value="true" />
|
|
8
|
+
<option name="INSTALLED_PATHS" value="$PROJECT_DIR$/vendor/phpcompatibility/php-compatibility/PHPCompatibility" />
|
|
9
|
+
<option name="EXTENSIONS" value="php,js,css,inc" />
|
|
10
|
+
</inspection_tool>
|
|
11
|
+
<inspection_tool class="PhpStanGlobal" enabled="true" level="WEAK WARNING" enabled_by_default="true" />
|
|
12
|
+
</profile>
|
|
13
|
+
</component>
|
|
File without changes
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="dataSourceStorageLocal" created-in="PS-212.5284.49">
|
|
4
|
+
<data-source name="<%~ it.phpStorm.database.dataSourceManagerName %>" uuid="a2eadb3c-6fc9-4d85-b5f4-d8114906ce2f">
|
|
5
|
+
<database-info product="" version="" jdbc-version="" driver-name="" driver-version="" dbms="MYSQL" exact-version="0" />
|
|
6
|
+
<secret-storage>master_key</secret-storage>
|
|
7
|
+
<user-name>magento</user-name>
|
|
8
|
+
<schema-mapping />
|
|
9
|
+
</data-source>
|
|
10
|
+
</component>
|
|
11
|
+
</project>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="DataSourceManagerImpl" format="xml" multifile-model="true">
|
|
4
|
+
<data-source source="LOCAL" name="<%~ it.phpStorm.database.dataSourceManagerName %>" uuid="a2eadb3c-6fc9-4d85-b5f4-d8114906ce2f">
|
|
5
|
+
<driver-ref>mysql.8</driver-ref>
|
|
6
|
+
<synchronize>true</synchronize>
|
|
7
|
+
<jdbc-driver>com.mysql.cj.jdbc.Driver</jdbc-driver>
|
|
8
|
+
<jdbc-url><%= it.jdbcUrl %></jdbc-url>
|
|
9
|
+
<working-dir>$ProjectFileDir$</working-dir>
|
|
10
|
+
</data-source>
|
|
11
|
+
</component>
|
|
12
|
+
</project>
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="PhpCodeSniffer">
|
|
4
|
+
<phpcs_settings>
|
|
5
|
+
<PhpCSConfiguration beautifier_path="$PROJECT_DIR$/vendor/bin/phpcbf" standards="Magento2;MySource;PEAR;PHPCompatibility;PSR1;PSR12;PSR2;Squiz;Zend" tool_path="$PROJECT_DIR$/vendor/bin/phpcs" />
|
|
6
|
+
</phpcs_settings>
|
|
7
|
+
</component>
|
|
8
|
+
<component name="PhpStan">
|
|
9
|
+
<PhpStan_settings>
|
|
10
|
+
<PhpStanConfiguration tool_path="$PROJECT_DIR$/vendor/bin/phpstan" />
|
|
11
|
+
</PhpStan_settings>
|
|
12
|
+
</component>
|
|
13
|
+
<component name="PhpProjectSharedConfiguration" php_language_level="<%~ it.phpLanguageLevel %>" />
|
|
14
|
+
</project>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
|
3
|
+
// Hover to view descriptions of existing attributes.
|
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
+
"version": "0.2.0",
|
|
6
|
+
"configurations": [
|
|
7
|
+
{
|
|
8
|
+
"name": "Listen for XDebug",
|
|
9
|
+
"type": "php",
|
|
10
|
+
"request": "launch",
|
|
11
|
+
"port": <%~ it.XDebugPort %>,
|
|
12
|
+
"runtimeExecutable": "<%~ it.PHPBinPath %>"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="PhpDebugGeneral" xdebug_debug_port="<%~ it.phpStorm.xdebug.v3Port %>" ignore_connections_through_unregistered_servers="true">
|
|
4
|
+
<xdebug_debug_ports port="<%~ it.phpStorm.xdebug.v3Port %>" />
|
|
5
|
+
<xdebug_debug_ports port="<%~ it.phpStorm.xdebug.v2Port %>" />
|
|
6
|
+
</component>
|
|
7
|
+
<component name="PhpServers">
|
|
8
|
+
<servers>
|
|
9
|
+
<server host="<%~ it.phpStorm.xdebug.debugServerAddress %>" id="7e16e907-9ce3-4559-9d26-a30a5650d11f" name="<%~ it.phpStorm.xdebug.serverName %>" />
|
|
10
|
+
</servers>
|
|
11
|
+
</component>
|
|
12
|
+
<component name="RunManager">
|
|
13
|
+
<configuration name="<%~ it.phpStorm.xdebug.runManagerName %>" type="PhpRemoteDebugRunConfigurationType" factoryName="PHP Remote Debug" filter_connections="FILTER" server_name="<%~ it.phpStorm.xdebug.serverName %>" session_id="<%~ it.phpStorm.xdebug.sessionId %>">
|
|
14
|
+
<method v="2" />
|
|
15
|
+
</configuration>
|
|
16
|
+
</component>
|
|
17
|
+
<component name="PropertiesComponent">
|
|
18
|
+
<property name="DatabaseDriversLRU" value="<%~ it.phpStorm.database.driver %>" />
|
|
19
|
+
</component>
|
|
20
|
+
</project>
|
|
@@ -5,7 +5,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
5
5
|
magentoVersion: '2.3.7-p1',
|
|
6
6
|
configuration: {
|
|
7
7
|
php: {
|
|
8
|
-
version: '7.4.
|
|
8
|
+
version: '7.4.27',
|
|
9
9
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
10
10
|
extensions: {
|
|
11
11
|
gd: {},
|
|
@@ -15,7 +15,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
15
15
|
sockets: {},
|
|
16
16
|
SimpleXML: {},
|
|
17
17
|
xdebug: {
|
|
18
|
-
version: '
|
|
18
|
+
version: '3.1.2'
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
},
|
|
@@ -36,7 +36,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
36
36
|
version: '7.9.3'
|
|
37
37
|
},
|
|
38
38
|
composer: {
|
|
39
|
-
version: '2'
|
|
39
|
+
version: '2.1.14'
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
magento: defaultMagentoConfig,
|
|
@@ -5,7 +5,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
5
5
|
magentoVersion: '2.3.7',
|
|
6
6
|
configuration: {
|
|
7
7
|
php: {
|
|
8
|
-
version: '7.4.
|
|
8
|
+
version: '7.4.27',
|
|
9
9
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
10
10
|
extensions: {
|
|
11
11
|
gd: {},
|
|
@@ -15,7 +15,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
15
15
|
sockets: {},
|
|
16
16
|
SimpleXML: {},
|
|
17
17
|
xdebug: {
|
|
18
|
-
version: '
|
|
18
|
+
version: '3.1.2'
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
},
|
|
@@ -36,7 +36,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
36
36
|
version: '7.9.3'
|
|
37
37
|
},
|
|
38
38
|
composer: {
|
|
39
|
-
version: '2'
|
|
39
|
+
version: '2.1.14'
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
magento: defaultMagentoConfig,
|
|
@@ -5,7 +5,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
5
5
|
magentoVersion: '2.4.0-p1',
|
|
6
6
|
configuration: {
|
|
7
7
|
php: {
|
|
8
|
-
version: '7.4.
|
|
8
|
+
version: '7.4.27',
|
|
9
9
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
10
10
|
extensions: {
|
|
11
11
|
gd: {},
|
|
@@ -15,7 +15,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
15
15
|
sockets: {},
|
|
16
16
|
SimpleXML: {},
|
|
17
17
|
xdebug: {
|
|
18
|
-
version: '3.
|
|
18
|
+
version: '3.1.2'
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
},
|
|
@@ -5,7 +5,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
5
5
|
magentoVersion: '2.4.0',
|
|
6
6
|
configuration: {
|
|
7
7
|
php: {
|
|
8
|
-
version: '7.4.
|
|
8
|
+
version: '7.4.27',
|
|
9
9
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
10
10
|
extensions: {
|
|
11
11
|
gd: {},
|
|
@@ -15,7 +15,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
15
15
|
sockets: {},
|
|
16
16
|
SimpleXML: {},
|
|
17
17
|
xdebug: {
|
|
18
|
-
version: '3.
|
|
18
|
+
version: '3.1.2'
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
},
|
|
@@ -6,7 +6,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
6
6
|
magentoVersion: '2.4.1-p1',
|
|
7
7
|
configuration: {
|
|
8
8
|
php: {
|
|
9
|
-
version: '7.4.
|
|
9
|
+
version: '7.4.27',
|
|
10
10
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
11
11
|
extensions: {
|
|
12
12
|
gd: {},
|
|
@@ -17,7 +17,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
17
17
|
SimpleXML: {},
|
|
18
18
|
libsodium,
|
|
19
19
|
xdebug: {
|
|
20
|
-
version: '3.
|
|
20
|
+
version: '3.1.2'
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -5,7 +5,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
5
5
|
magentoVersion: '2.4.1',
|
|
6
6
|
configuration: {
|
|
7
7
|
php: {
|
|
8
|
-
version: '7.4.
|
|
8
|
+
version: '7.4.27',
|
|
9
9
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
10
10
|
extensions: {
|
|
11
11
|
gd: {},
|
|
@@ -15,7 +15,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
15
15
|
sockets: {},
|
|
16
16
|
SimpleXML: {},
|
|
17
17
|
xdebug: {
|
|
18
|
-
version: '3.
|
|
18
|
+
version: '3.1.2'
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
},
|
|
@@ -7,7 +7,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
7
7
|
isDefault: true,
|
|
8
8
|
configuration: {
|
|
9
9
|
php: {
|
|
10
|
-
version: '7.4.
|
|
10
|
+
version: '7.4.27',
|
|
11
11
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
12
12
|
extensions: {
|
|
13
13
|
gd: {},
|
|
@@ -19,7 +19,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
19
19
|
libsodium,
|
|
20
20
|
fileinfo: {},
|
|
21
21
|
xdebug: {
|
|
22
|
-
version: '3.
|
|
22
|
+
version: '3.1.2'
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -40,7 +40,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
40
40
|
version: '7.12.1'
|
|
41
41
|
},
|
|
42
42
|
composer: {
|
|
43
|
-
version: '2'
|
|
43
|
+
version: '2.1.14'
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
magento: defaultMagentoConfig,
|
|
@@ -7,7 +7,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
7
7
|
isDefault: true,
|
|
8
8
|
configuration: {
|
|
9
9
|
php: {
|
|
10
|
-
version: '7.4.
|
|
10
|
+
version: '7.4.27',
|
|
11
11
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
12
12
|
extensions: {
|
|
13
13
|
gd: {},
|
|
@@ -19,7 +19,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
19
19
|
libsodium,
|
|
20
20
|
fileinfo: {},
|
|
21
21
|
xdebug: {
|
|
22
|
-
version: '3.
|
|
22
|
+
version: '3.1.2'
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -40,7 +40,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
40
40
|
version: '7.12.1'
|
|
41
41
|
},
|
|
42
42
|
composer: {
|
|
43
|
-
version: '2'
|
|
43
|
+
version: '2.1.14'
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
magento: defaultMagentoConfig,
|
|
@@ -6,7 +6,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
6
6
|
magentoVersion: '2.4.2',
|
|
7
7
|
configuration: {
|
|
8
8
|
php: {
|
|
9
|
-
version: '7.4.
|
|
9
|
+
version: '7.4.27',
|
|
10
10
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
11
11
|
extensions: {
|
|
12
12
|
gd: {},
|
|
@@ -18,7 +18,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
18
18
|
libsodium,
|
|
19
19
|
fileinfo: {},
|
|
20
20
|
xdebug: {
|
|
21
|
-
version: '3.
|
|
21
|
+
version: '3.1.2'
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
},
|
|
@@ -39,7 +39,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
39
39
|
version: '7.12.1'
|
|
40
40
|
},
|
|
41
41
|
composer: {
|
|
42
|
-
version: '2'
|
|
42
|
+
version: '2.1.14'
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
magento: defaultMagentoConfig,
|
|
@@ -7,7 +7,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
7
7
|
isDefault: true,
|
|
8
8
|
configuration: {
|
|
9
9
|
php: {
|
|
10
|
-
version: '7.4.
|
|
10
|
+
version: '7.4.27',
|
|
11
11
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
12
12
|
extensions: {
|
|
13
13
|
gd: {},
|
|
@@ -19,7 +19,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
19
19
|
libsodium,
|
|
20
20
|
fileinfo: {},
|
|
21
21
|
xdebug: {
|
|
22
|
-
version: '3.
|
|
22
|
+
version: '3.1.2'
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -40,7 +40,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
40
40
|
version: '7.12.1'
|
|
41
41
|
},
|
|
42
42
|
composer: {
|
|
43
|
-
version: '2'
|
|
43
|
+
version: '2.1.14'
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
magento: defaultMagentoConfig,
|
|
@@ -7,7 +7,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
7
7
|
isDefault: true,
|
|
8
8
|
configuration: {
|
|
9
9
|
php: {
|
|
10
|
-
version: '7.4.
|
|
10
|
+
version: '7.4.27',
|
|
11
11
|
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
12
12
|
extensions: {
|
|
13
13
|
gd: {},
|
|
@@ -19,7 +19,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
19
19
|
libsodium,
|
|
20
20
|
fileinfo: {},
|
|
21
21
|
xdebug: {
|
|
22
|
-
version: '3.
|
|
22
|
+
version: '3.1.2'
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -40,7 +40,7 @@ module.exports = ({ templateDir } = {}) => ({
|
|
|
40
40
|
version: '7.12.1'
|
|
41
41
|
},
|
|
42
42
|
composer: {
|
|
43
|
-
version: '2'
|
|
43
|
+
version: '2.1.14'
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
46
|
magento: defaultMagentoConfig,
|
package/lib/tasks/cache/index.js
CHANGED
|
File without changes
|
package/lib/tasks/cli/index.js
CHANGED
|
File without changes
|