-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 944 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
37
{
"name": "intraworlds/service-container",
"description": "Lightweight yet powerful implementation of dependancy injection container with autowiring",
"license": "MIT",
"require": {
"php": "^8.0",
"psr/container": "^1.0||^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"doctrine/coding-standard": "^10.0",
"infection/infection": "^0.26.16",
"phpbench/phpbench": "^1.2",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"IW\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IW\\": "tests"
}
},
"scripts": {
"bench": [
"phpbench run --report=aggregate benchmarks/"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}