-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 995 Bytes
/
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
{
"name": "prinsfrank/object-resolver",
"description": "From arrays/requests/json to typed and validated objects with ease",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"PrinsFrank\\ObjectResolver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\ObjectResolver\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"prinsfrank/enums": "^1.2"
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.62",
"phpunit/phpunit": "^11.3 || ^12.0",
"phpstan/phpstan-strict-rules": "^1.6"
},
"scripts": {
"cs": "php-cs-fixer fix --allow-risky=yes --dry-run",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"stan": "phpstan analyse --memory-limit 4G -v",
"unit": "phpunit --testsuite=Unit",
"test": [
"@unit",
"@cs"
]
}
}