-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.05 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "tiimepdp/cdar",
"description": "CDAR PHP - Cross Domain Acknowledgement and Response Library",
"type": "library",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"TiimePDP\\CrossDomainAcknowledgementAndResponse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TiimePDP\\CrossDomainAcknowledgementAndResponse\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3",
"jms/serializer": "^3.32"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.93",
"phpunit/phpunit": "^12.5",
"ext-libxml": "*",
"ext-dom": "*",
"symfony/process": "^7.4"
},
"scripts": {
"cs-fix": "php-cs-fixer fix",
"cs-check": "php-cs-fixer check",
"phpstan": "phpstan",
"test": "phpunit",
"rector": "./tools/bin/rector",
"quality-check": [
"@rector",
"@cs-check",
"@phpstan",
"@test"
]
}
}