-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.96 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
{
"type": "project",
"description": "",
"license": "proprietary",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.com/productsupcom/"
},
{
"packagist.org": false
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"symfony/runtime": true
}
},
"require": {
"php": ">=8.1",
"ext-xmlwriter": "*",
"async-aws/simple-s3": "^1.0",
"league/flysystem": "^3.0",
"league/flysystem-async-aws-s3": "^3.0",
"productsupcom/cde-binary-framework": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"mikey179/vfsstream": "^1.6",
"phpmd/phpmd": "^2.11",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Productsup\\BinCdeHeinemann\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Productsup\\BinCdeHeinemann\\Tests\\": "tests",
"Productsup\\CDE\\Tests\\Tools\\": "vendor/productsupcom/cde-binary-framework/tests/Tools"
}
},
"scripts": {
"post-create-project-cmd": [
"./vendor/bin/init-app"
],
"test": "vendor/bin/phpunit",
"csfix": "vendor/bin/php-cs-fixer fix --verbose",
"csdiff": "vendor/bin/php-cs-fixer fix --stop-on-violation --verbose --dry-run --diff",
"stan": "vendor/bin/phpstan analyze src",
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html ./tests/logs/coverage",
"phpmd-report": "vendor/bin/phpmd src/ html rulesets.xml --reportfile phpmd_report.html",
"phpmd": "vendor/bin/phpmd src/ ansi rulesets.xml"
}
}