-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
51 lines (51 loc) · 1.48 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
{
"name": "magento/upward",
"description": "UPWARD parser and server",
"type": "library",
"license": "OSL-3.0",
"require": {
"php": "~8.1.0||~8.2.0||~8.3.0",
"mustache/mustache": "^2.12",
"xantios/mimey": "^2.2",
"symfony/yaml": "^2.3 || ^3.3 || ^4.0 || ^5.0",
"laminas/laminas-http": "^2.6.0",
"laminas/laminas-stdlib": "^3.2.1"
},
"require-dev": {
"bebat/verify": "^2.0",
"friendsofphp/php-cs-fixer": "~3.0.0",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "~9.5.0",
"phpmd/phpmd": "^2.9.1"
},
"authors": [
{
"name": "Ben Batschelet",
"email": "[email protected]"
}, {
"name": "Tommy Wiebell",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Magento\\Upward\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Magento\\Upward\\Test\\": "test"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"scripts": {
"cs-check": "php-cs-fixer fix -v --allow-risky=yes --ansi --dry-run --diff",
"cs-check-file": "php-cs-fixer fix -v --allow-risky=yes --ansi --dry-run --diff --path-mode=intersection",
"cs-fix": "php-cs-fixer fix -v --allow-risky=yes --ansi",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover=coverage.xml"
}
}