-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.18 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.18 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
42
43
44
45
46
47
48
49
50
51
{
"name": "jd297/psr-container",
"type": "library",
"description": "Simple implementation of PSR-11 (Container Interface)",
"keywords": [
"psr-11",
"container",
"dependency-injection",
"di"
],
"license": "BSD-2-Clause",
"homepage": "https://github.com/jd297/psr-container",
"authors": [
{
"name": "JD297",
"email": "jan.dommasch297@gmail.com"
}
],
"require": {
"php": "^8.1",
"psr/container": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.11",
"phpunit/phpunit": "^9.5.26",
"phpstan/phpstan": "^1.9"
},
"provide": {
"psr/container-implementation": "^2.0"
},
"autoload": {
"psr-4": {
"Jd297\\Psr\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jd297\\Psr\\Container\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"scripts": {
"reformat": "php-cs-fixer fix --allow-risky=yes --ansi",
"unit": "phpunit",
"analyse": "phpstan analyse"
}
}