-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
70 lines (70 loc) · 1.93 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
{
"name": "team-blue/value-objects",
"type": "library",
"description": "Value objects",
"homepage": "https://github.com/arnedesmedt/value-objects",
"license": "MIT",
"authors": [
{
"name": "Arne De Smedt",
"email": "[email protected]",
"homepage": "https://github.com/arnedesmedt"
}
],
"require": {
"php": "^8.0 || ^8.1 || ^8.2 || ^8.3",
"ext-intl": "*",
"ext-json": "*",
"team-blue/php-exception": "^0.3",
"ramsey/uuid": "~4.0",
"symfony/http-kernel": "~6.0 || ~7.0"
},
"require-dev": {
"doctrine/coding-standard": "~12.0",
"phpmd/phpmd": "~2.0",
"phpro/grumphp": "~2.0",
"phpstan/phpstan": "~1.0",
"phpunit/phpunit": "~10.0",
"rector/rector": "~1.1",
"squizlabs/php_codesniffer": "~3.0"
},
"repositories": {
"packeton.teamblue-ops.net": {
"type": "composer",
"url": "https://packeton.teamblue-ops.net"
}
},
"autoload": {
"psr-4": {
"TeamBlue\\ValueObjects\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TeamBlue\\ValueObjects\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
},
"sort-packages": true
},
"scripts-descriptions": {
"tests": "Run all tests"
},
"scripts": {
"tests": [
"vendor/bin/phpcbf",
"vendor/bin/phpcs",
"vendor/bin/phpstan analyze --no-progress",
"vendor/bin/phpmd src text phpmd.xml",
"vendor/bin/phpmd tests text phpmd-tests.xml",
"vendor/bin/rector --dry-run --no-progress-bar",
"vendor/bin/phpunit"
]
}
}