-
-
Notifications
You must be signed in to change notification settings - Fork 399
/
composer.json
78 lines (78 loc) · 1.97 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
{
"name": "n98/magerun",
"description": "Tools for managing Magento projects and installations",
"license": "MIT",
"support": {
"issues": "https://github.com/netz98/n98-magerun/issues"
},
"homepage": "https://netz98.github.com/n98-magerun/",
"keywords": [
"magento",
"installer",
"cli",
"magerun"
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-json": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"ext-zip": "*",
"fakerphp/faker": "^1.20",
"n98/junit-xml": "~1.0",
"psy/psysh": "~0.4",
"rmccue/requests": "^2.0.11",
"symfony/console": "~5.4",
"symfony/event-dispatcher": "~5.4",
"symfony/finder": "~5.4",
"symfony/polyfill-php80": "^1.30",
"symfony/process": "~5.4",
"symfony/validator": "~5.4",
"symfony/yaml": "~5.4",
"twig/twig": "^3.7.1"
},
"require-dev": {
"ext-simplexml": "*",
"bamarni/symfony-console-autocomplete": "^1.2.0",
"composer/composer": "^2.7",
"friendsofphp/php-cs-fixer": "^3.4",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9",
"rector/rector": "^1.0.0",
"seld/phar-utils": "~1.2.0"
},
"autoload": {
"psr-4": {
"N98\\": "src/N98"
}
},
"autoload-dev": {
"psr-4": {
"N98\\": "tests/N98"
}
},
"authors": [
{
"name": "Christian Münch",
"email": "c.muench@netz98.de"
},
{
"name": "Alexander Menk",
"email": "a.menk@netz98.de"
},
{
"name": "Sven Reichel",
"email": "github-sr@hotmail.com",
"role": "Maintainer"
}
],
"bin": [
"bin/n98-magerun"
],
"config": {
"platform": {
"php": "7.4.0"
},
"sort-packages": true
}
}