@scandipwa/magento-scripts 1.14.0 → 1.14.1-alpha.0
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/lib/config/templates/php-fpm.template.conf +1 -0
- package/lib/config/versions/magento-2.3.7-p2.js +47 -0
- package/lib/config/versions/magento-2.3.7-p3.js +47 -0
- package/lib/config/versions/magento-2.4.3-p2.js +51 -0
- package/lib/config/versions/magento-2.4.4.js +51 -0
- package/package.json +12 -2
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const { defaultMagentoConfig } = require('../magento-config');
|
|
3
|
+
|
|
4
|
+
module.exports = ({ templateDir } = {}) => ({
|
|
5
|
+
magentoVersion: '2.3.7-p2',
|
|
6
|
+
configuration: {
|
|
7
|
+
php: {
|
|
8
|
+
version: '7.4.27',
|
|
9
|
+
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
10
|
+
extensions: {
|
|
11
|
+
gd: {},
|
|
12
|
+
intl: {},
|
|
13
|
+
zlib: {},
|
|
14
|
+
openssl: {},
|
|
15
|
+
sockets: {},
|
|
16
|
+
SimpleXML: {},
|
|
17
|
+
xdebug: {
|
|
18
|
+
version: '3.1.2'
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
nginx: {
|
|
23
|
+
version: '1.18.0',
|
|
24
|
+
configTemplate: path.join(templateDir || '', 'nginx.template.conf')
|
|
25
|
+
},
|
|
26
|
+
redis: {
|
|
27
|
+
version: '6'
|
|
28
|
+
},
|
|
29
|
+
mysql: {
|
|
30
|
+
version: '5.7'
|
|
31
|
+
},
|
|
32
|
+
mariadb: {
|
|
33
|
+
version: '10.2'
|
|
34
|
+
},
|
|
35
|
+
elasticsearch: {
|
|
36
|
+
version: '7.9.3'
|
|
37
|
+
},
|
|
38
|
+
composer: {
|
|
39
|
+
version: '2'
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
magento: defaultMagentoConfig,
|
|
43
|
+
host: 'localhost',
|
|
44
|
+
ssl: {
|
|
45
|
+
enabled: false
|
|
46
|
+
}
|
|
47
|
+
});
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const { defaultMagentoConfig } = require('../magento-config');
|
|
3
|
+
|
|
4
|
+
module.exports = ({ templateDir } = {}) => ({
|
|
5
|
+
magentoVersion: '2.3.7-p3',
|
|
6
|
+
configuration: {
|
|
7
|
+
php: {
|
|
8
|
+
version: '7.4.27',
|
|
9
|
+
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
10
|
+
extensions: {
|
|
11
|
+
gd: {},
|
|
12
|
+
intl: {},
|
|
13
|
+
zlib: {},
|
|
14
|
+
openssl: {},
|
|
15
|
+
sockets: {},
|
|
16
|
+
SimpleXML: {},
|
|
17
|
+
xdebug: {
|
|
18
|
+
version: '3.1.2'
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
nginx: {
|
|
23
|
+
version: '1.18.0',
|
|
24
|
+
configTemplate: path.join(templateDir || '', 'nginx.template.conf')
|
|
25
|
+
},
|
|
26
|
+
redis: {
|
|
27
|
+
version: '6'
|
|
28
|
+
},
|
|
29
|
+
mysql: {
|
|
30
|
+
version: '5.7'
|
|
31
|
+
},
|
|
32
|
+
mariadb: {
|
|
33
|
+
version: '10.2'
|
|
34
|
+
},
|
|
35
|
+
elasticsearch: {
|
|
36
|
+
version: '7.9.3'
|
|
37
|
+
},
|
|
38
|
+
composer: {
|
|
39
|
+
version: '2'
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
magento: defaultMagentoConfig,
|
|
43
|
+
host: 'localhost',
|
|
44
|
+
ssl: {
|
|
45
|
+
enabled: false
|
|
46
|
+
}
|
|
47
|
+
});
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const { defaultMagentoConfig } = require('../magento-config');
|
|
3
|
+
const { libsodium } = require('../php/extensions');
|
|
4
|
+
|
|
5
|
+
module.exports = ({ templateDir } = {}) => ({
|
|
6
|
+
magentoVersion: '2.4.3-p2',
|
|
7
|
+
isDefault: true,
|
|
8
|
+
configuration: {
|
|
9
|
+
php: {
|
|
10
|
+
version: '7.4.27',
|
|
11
|
+
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
12
|
+
extensions: {
|
|
13
|
+
gd: {},
|
|
14
|
+
intl: {},
|
|
15
|
+
zlib: {},
|
|
16
|
+
openssl: {},
|
|
17
|
+
sockets: {},
|
|
18
|
+
SimpleXML: {},
|
|
19
|
+
libsodium,
|
|
20
|
+
fileinfo: {},
|
|
21
|
+
xdebug: {
|
|
22
|
+
version: '3.1.2'
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
nginx: {
|
|
27
|
+
version: '1.18.0',
|
|
28
|
+
configTemplate: path.join(templateDir || '', 'nginx.template.conf')
|
|
29
|
+
},
|
|
30
|
+
redis: {
|
|
31
|
+
version: '6.0'
|
|
32
|
+
},
|
|
33
|
+
mysql: {
|
|
34
|
+
version: '8.0'
|
|
35
|
+
},
|
|
36
|
+
mariadb: {
|
|
37
|
+
version: '10.4'
|
|
38
|
+
},
|
|
39
|
+
elasticsearch: {
|
|
40
|
+
version: '7.12.1'
|
|
41
|
+
},
|
|
42
|
+
composer: {
|
|
43
|
+
version: '2'
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
magento: defaultMagentoConfig,
|
|
47
|
+
host: 'localhost',
|
|
48
|
+
ssl: {
|
|
49
|
+
enabled: false
|
|
50
|
+
}
|
|
51
|
+
});
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const { defaultMagentoConfig } = require('../magento-config');
|
|
3
|
+
const { libsodium } = require('../php/extensions');
|
|
4
|
+
|
|
5
|
+
module.exports = ({ templateDir } = {}) => ({
|
|
6
|
+
magentoVersion: '2.4.4',
|
|
7
|
+
isDefault: true,
|
|
8
|
+
configuration: {
|
|
9
|
+
php: {
|
|
10
|
+
version: '8.1.4',
|
|
11
|
+
configTemplate: path.join(templateDir || '', 'php.template.ini'),
|
|
12
|
+
extensions: {
|
|
13
|
+
gd: {},
|
|
14
|
+
intl: {},
|
|
15
|
+
zlib: {},
|
|
16
|
+
openssl: {},
|
|
17
|
+
sockets: {},
|
|
18
|
+
SimpleXML: {},
|
|
19
|
+
libsodium,
|
|
20
|
+
fileinfo: {},
|
|
21
|
+
xdebug: {
|
|
22
|
+
version: '3.1.4'
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
nginx: {
|
|
27
|
+
version: '1.18.0',
|
|
28
|
+
configTemplate: path.join(templateDir || '', 'nginx.template.conf')
|
|
29
|
+
},
|
|
30
|
+
redis: {
|
|
31
|
+
version: '6.0'
|
|
32
|
+
},
|
|
33
|
+
mysql: {
|
|
34
|
+
version: '8.0'
|
|
35
|
+
},
|
|
36
|
+
mariadb: {
|
|
37
|
+
version: '10.4'
|
|
38
|
+
},
|
|
39
|
+
elasticsearch: {
|
|
40
|
+
version: '7.16.3'
|
|
41
|
+
},
|
|
42
|
+
composer: {
|
|
43
|
+
version: '2'
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
magento: defaultMagentoConfig,
|
|
47
|
+
host: 'localhost',
|
|
48
|
+
ssl: {
|
|
49
|
+
enabled: false
|
|
50
|
+
}
|
|
51
|
+
});
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Scripts and configuration used by CMA.",
|
|
4
4
|
"homepage": "https://docs.create-magento-app.com/",
|
|
5
5
|
"repository": "github:scandipwa/create-magento-app",
|
|
6
|
-
"version": "1.14.0",
|
|
6
|
+
"version": "1.14.1-alpha.0",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"types": "./typings/index.d.ts",
|
|
9
9
|
"license": "OSL-3.0",
|
|
@@ -41,5 +41,15 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"
|
|
44
|
+
"keywords": [
|
|
45
|
+
"magento",
|
|
46
|
+
"docker",
|
|
47
|
+
"php",
|
|
48
|
+
"nginx",
|
|
49
|
+
"redis",
|
|
50
|
+
"elasticsearch",
|
|
51
|
+
"mysql",
|
|
52
|
+
"scandipwa"
|
|
53
|
+
],
|
|
54
|
+
"gitHead": "055ef1bd01035af8eaf80dffa087e77c67938fa8"
|
|
45
55
|
}
|