-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 820 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
{
"name": "sergix44/container",
"description": "A simple and fast service container",
"type": "library",
"require": {
"php": "^8.1",
"psr/container": "^1.1|^2.0",
"ext-reflection": "*"
},
"require-dev": {
"pestphp/pest": "^2.0",
"php-di/php-di": "^7.0",
"vimeo/psalm": "^5.13"
},
"provide": {
"psr/container-implementation": "^1.1|^2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"SergiX44\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SergiX44\\Container\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sergio Brighenti",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}