-
-
Notifications
You must be signed in to change notification settings - Fork 400
/
Copy pathcomposer.json
101 lines (101 loc) · 3.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"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 || ~8.3.0 || ~8.4.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"fakerphp/faker": "^1.20",
"n98/junit-xml": "~1.0",
"nesbot/carbon": "^2.73",
"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": {
"bamarni/symfony-console-autocomplete": "^1.2.0",
"composer/composer": "^2.7",
"friendsofphp/php-cs-fixer": "^3.4",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9",
"rector/rector": "^2",
"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": "[email protected]"
},
{
"name": "Alexander Menk",
"email": "[email protected]"
},
{
"name": "Sven Reichel",
"email": "[email protected]",
"role": "Maintainer"
}
],
"bin": [
"bin/n98-magerun"
],
"config": {
"platform": {
"php": "7.4.0"
},
"sort-packages": true
},
"scripts": {
"php-cs-fixer:test": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"php-cs-fixer:fix": "vendor/bin/php-cs-fixer fix",
"phpstan": "XDEBUG_MODE=off php vendor/bin/phpstan analyze",
"phpstan:baseline": "XDEBUG_MODE=off php vendor/bin/phpstan analyze -b .phpstan.dist.baseline.neon",
"phpunit:test": "XDEBUG_MODE=off php vendor/bin/phpunit --configuration .phpunit.dist.xml --no-coverage",
"rector:test": "vendor/bin/rector process --config .rector.php --dry-run",
"rector:fix": "vendor/bin/rector process --config .rector.php"
},
"scripts-descriptions": {
"php-cs-fixer:test": "Run php-cs-fixer",
"php-cs-fixer:fix": "Run php-cs-fixer and fix issues",
"phpstan": "Run phpstan",
"phpstan:baseline": "Run phpstan and update baseline",
"phpunit:test": "Run PHPUnit",
"rector:test": "Run rector",
"rector:fix": "Run rector and fix issues"
}
}