-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.45 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
{
"name": "gravatalonga/container",
"type": "library",
"description": "Implementation of PSR-11 Container, it is lightweight yet powerful. Feature such as Lazy Factory, Factory, Optinal Share of Services, Array Access and other it can be very versatile.",
"license": "MIT",
"authors": [
{
"name": "Jonathan Fontes",
"email": "[email protected]",
"homepage": "https://jonathan.pt",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1",
"psr/container": "^2.0"
},
"provide": {
"psr/container-implementation": "^2.0"
},
"require-dev": {
"infection/infection": "^0.18.0",
"phpunit/phpunit": "^9",
"vimeo/psalm": "^4.3.0",
"rector/rector": "^0.13.4",
"scrutinizer/ocular": "^1.9"
},
"autoload": {
"psr-4": {
"Gravatalonga\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"allow-plugins": {
"infection/infection": true,
"phpunit/phpunit": true,
"vimeo/psalm": true,
"rector/rector": true,
"scrutinizer/ocular": true
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit",
"reactor": "rector process --no-progress-bar --no-diffs",
"scrutinizer": "ocular code-coverage:upload build/logs/clover.xml --format=php-clover"
}
}