-
Notifications
You must be signed in to change notification settings - Fork 225
/
composer.json
84 lines (84 loc) · 2.23 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "n98/magerun2",
"description": "Tools for managing Magento projects and installations",
"license": "MIT",
"support": {
"issues": "https://github.com/netz98/n98-magerun2/issues"
},
"homepage": "http://netz98.github.com/n98-magerun2/",
"keywords": [
"magento",
"installer",
"cli",
"magerun2"
],
"config": {
"use-include-path": false,
"preferred-install": "dist",
"platform": {
"php": "7.4.0"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"php": "^7.4||^8.0",
"ext-PDO": "*",
"ext-SimpleXML": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-posix": "*",
"ext-zip": "*",
"dflydev/dot-access-data": "^3.0",
"fakerphp/faker": "~1.16",
"laminas/laminas-filter": "^2.12",
"n98/junit-xml": "~1.0",
"pbergman/tree-helper": "^1.0",
"psr/container": "~1.1.2",
"psy/psysh": "~0.7",
"rmccue/requests": "^2.0",
"symfony/console": "^5.4",
"symfony/event-dispatcher": "^5.4",
"symfony/finder": "^5.4",
"symfony/process": "^5.4",
"symfony/validator": "^5.4",
"symfony/yaml": "^5.4",
"twig/twig": "~3.4"
},
"require-dev": {
"bamarni/symfony-console-autocomplete": "^1.2.0",
"captainhook/captainhook": "^5.3",
"friendsofphp/php-cs-fixer": "^3.8",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.8.5",
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master",
"seld/phar-utils": "~1.2.0"
},
"suggest": {
"n98/magerun2-dist": "Deploys only the phar file. Use this to prevent dependency conflicts."
},
"autoload": {
"psr-4": {
"N98\\": "src/N98"
}
},
"autoload-dev": {
"psr-4": {
"N98\\": "tests/N98"
}
},
"authors": [
{
"name": "Christian Münch",
"email": "[email protected]"
}
],
"bin": [
"bin/n98-magerun2"
],
"prefer-stable": true
}