-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.13 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.13 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
52
{
"name": "webdevcave/yadic",
"description": "Yet another dependency injection container for PHP",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"dependency-injection",
"autowiring",
"repository",
"container",
"service-container",
"hydration"
],
"autoload": {
"psr-4": {
"Webdevcave\\Yadic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webdevcave\\Yadic\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Carlos A. B. Carucce",
"homepage": "https://github.com/carloscarucce"
}
],
"require": {
"php": ">=8.1",
"psr/container": "^2.0",
"psr/simple-cache": "^3.0",
"webdevcave/directory-crawler": "^1.1",
"webdevcave/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10",
"rregeer/phpunit-coverage-check": "^0.3.1"
},
"scripts": {
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit",
"check-coverage": "./vendor/bin/coverage-check ./build/coverage-clover.xml 85"
},
"scripts-descriptions": {
"test": "Run PHPUNIT tests"
},
"provide": {
"psr/container-implementation": "2"
}
}