-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 862 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
38
39
40
41
42
43
{
"name": "seeren/container",
"description": "Autowire and configure dependencies",
"keywords": [
"autowiring",
"service",
"psr-11"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cyril Ichti",
"email": "consultant@seeren.fr",
"homepage": "https://github.com/seeren/container"
}
],
"require": {
"php": ">=8.0.1",
"psr/container": "^2.0"
},
"autoload": {
"psr-4": {
"Seeren\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Seeren\\Container\\Test\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^v2.5.2"
},
"scripts": {
"start": "php -S localhost:8000 -t public",
"test": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always --coverage-text"
]
}
}