-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.74 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
{
"type": "library",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"akeneo/api-php-client-ee": "^6.0",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"symfony/console": "5.3.*",
"symfony/expression-language": "^5.3",
"symfony/options-resolver": "^5.3",
"symfony/translation-contracts": "^2.4",
"symfony/yaml": "5.3.*"
},
"require-dev": {
"behat/behat": "^3.8",
"friendsofphp/php-cs-fixer": "^3.0",
"phpmd/phpmd": "^2.10",
"phpstan/phpstan": "^0.12.94",
"phpunit/phpunit": "^9",
"qossmic/deptrac-shim": "^0.14.1",
"twig/twig": "^3.0",
"ext-json": "*"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"AkeneoE3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AkeneoE3\\Tests\\": "tests/"
}
},
"scripts": {
"fix": [
"php-cs-fixer fix"
],
"test": [
"@test-quality",
"@test-unit",
"@test-acceptance"
],
"test-quality": [
"find src/ | xargs -n 1 -P 8 -i php -l {} | grep -v 'No syntax errors detected' || echo 'OK'",
"php-cs-fixer fix --dry-run",
"phpmd ./src text ./phpmd.xml",
"phpstan analyse",
"deptrac"
],
"test-unit": [
"phpunit tests/ --testdox --color"
],
"test-acceptance": [
"behat"
]
}
}