-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.01 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
{
"name": "gdetassigny/simple-container",
"description": "A simple implementation of the standard container interface, with support for autowiring",
"license": "MIT",
"authors": [
{
"name": "Gabriel de Tassigny",
"email": "[email protected]"
}
],
"keywords": [
"container",
"dependency",
"DI"
],
"require": {
"php": ">= 7.2",
"psr/container": "^1.0",
"symfony/yaml": "^4.4 | ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phake/phake": "^3.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"GabrielDeTassigny\\SimpleContainer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GabrielDeTassigny\\SimpleContainer\\Tests\\": "tests/"
}
},
"scripts": {
"run-tests": "vendor/bin/phpunit",
"run-phpcs": "vendor/bin/phpcs",
"run-phpcbf": "vendor/bin/phpcbf"
}
}