-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.14 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
{
"name": "prinsfrank/container",
"description": "A strict PSR-11 implementation",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"PrinsFrank\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\Container\\Tests\\": "tests/"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"psr/container": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59.3",
"phpunit/phpunit": "^11.2.2",
"phpstan/phpstan": "^1.11.5",
"composer/composer": "^2.7.7",
"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 -v --memory-limit 4G",
"unit": "phpunit --testsuite=Unit",
"integration": "phpunit --testsuite=Integration",
"test": [
"@unit",
"@integration",
"@cs"
]
},
"provide": {
"psr/container-implementation": "^1.0"
}
}