-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·37 lines (37 loc) · 1.06 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
{
"name": "rochamarcelo/cake-pimple-di",
"type": "cakephp-plugin",
"description": "A cakephp plugin for dependency injection based on Pimple library ",
"keywords": ["cakephp", "cake3", "plugin", "dependency", "injection", "pimple"],
"homepage": "https://github.com/rochamarcelo/cake-pimple-di",
"license": "MIT",
"support":{
"source":"https://github.com/rochamarcelo/cake-pimple-di",
"issues":"https://github.com/rochamarcelo/cake-pimple-di/issues"
},
"authors": [
{
"name": "Marcelo Rocha",
"email": "[email protected]",
"homepage": "https://github.com/rochamarcelo"
}
],
"require": {
"php": ">=5.4.16",
"pimple/pimple": "~3.0"
},
"require-dev": {
"cakephp/cakephp": "~4.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"RochaMarcelo\\CakePimpleDi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RochaMarcelo\\CakePimpleDi\\Test\\": "tests"
}
}
}