-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.08 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
{
"name": "magento-hackathon/magerun2-generate-dependencies",
"type": "library",
"description": "Command to generated the M2 module dependencies for N98MageRun2",
"keywords": ["magerun"],
"homepage": "https://github.com/magento-hackathon/magerun2-generate-dependencies",
"license": "MIT",
"authors": [
{
"name": "Lars Roettig",
"email": "[email protected]"
}
],
"require": {
"php": ">= 7.3",
"composer/composer": "^2.7"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^9.6",
"n98/magerun2-test-framework": "dev-master",
"phpro/grumphp": "^1.5",
"friendsofphp/php-cs-fixer": "^2.11",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^1.10",
"phpmd/phpmd": "^2.12",
"squizlabs/php_codesniffer": "^3.4"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"MagentoHackathon\\": "src/MagentoHackathon"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}