-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.39 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
{
"name": "phetit/dependency-injection",
"type": "library",
"description": "A simple PHP dependency injection container",
"keywords": [
"di",
"di container",
"dependency injection",
"dependency injection container"
],
"homepage": "https://github.com/phetit/dependency-injection",
"license": "MIT",
"authors": [
{
"name": "David Lombera",
"email": "david.lomberlan@gmail.com"
}
],
"autoload": {
"psr-4": {
"Phetit\\DependencyInjection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phetit\\DependencyInjection\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"psr/container": "1.1|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-deprecation-rules": "^1.1",
"squizlabs/php_codesniffer": "^3.7"
},
"provide": {
"psr/container-implementation": "1.1|2.0"
},
"scripts": {
"test:lint": "./vendor/bin/phpcs",
"test:unit": "./vendor/bin/phpunit",
"test:types": "./vendor/bin/phpstan",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}