-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.18 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "brenoroosevelt/habemus",
"description": "PSR-11 Container for Dependency Injection (auto-wiring, attributes, factories, closures, array access)",
"keywords": [
"dependency injection",
"container",
"PSR-11",
"autowire",
"auto-wiring",
"attributes",
"php8 attributes",
"property injection",
"constructor injection",
"setter injection"
],
"minimum-stability": "stable",
"license": "MIT",
"homepage": "https://brenoroosevelt.github.io/habemus",
"authors": [
{
"name": "Breno Roosevelt",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6 || ^9",
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^1"
},
"provide": {
"psr/container-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"Habemus\\": "src"
},
"files": [
"src/Utility/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Habemus\\Test\\": "tests"
}
},
"scripts": {
"test": [
"phpunit tests",
"phpcs -p src tests",
"phpstan analyse src --level 5"
]
}
}