forked from thephpleague/container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.5 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
58
59
60
61
62
63
64
65
{
"name": "fuel/container",
"type": "library",
"description": "PSR-11 Dependency Injection container",
"keywords": [
"fuel",
"fuelphp",
"php",
"container",
"dependency injection",
"psr-11",
"psr11"
],
"homepage": "https://fuelphp.org/",
"license": "MIT",
"authors": [
{
"name": "Phil Bennett",
"email": "[email protected]",
"role": "Original developer"
},
{
"name": "Fuel PHP team",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/fuel/container/issues",
"source": "https://github.com/fuel/container",
"docs": "https://fuelphp.org/docs/container"
},
"require": {
"php": "^8.2",
"psr/container": "^1.1 || ^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "dev",
"prefer-stable": true,
"provide": {
},
"autoload": {
"psr-4": {
"Fuel\\Container\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fuel\\Container\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"static": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"check": [
"@cs-check",
"@static",
"@test"
]
}
}