-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.2 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": "sef/sef",
"type": "library",
"description": "SEF is a simple and extensible framework which handles the dependency injection and the routing.",
"keywords": [
"framework",
"simple",
"extensible",
"dependency injection",
"routing"
],
"license": "MIT",
"authors": [
{
"name": "Michael Lefrank",
"email": "michael.lefrank@gmx.de"
}
],
"require": {
"php": ">=5.4.0",
"symfony/http-foundation": "~2.6",
"php-di/php-di": "^5.0",
"ocramius/proxy-manager": "~1.0",
"doctrine/annotations": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "~4.7"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Sef\\": "Sef/src",
"Sef\\Configuration\\": "Sef/src/Configuration",
"Sef\\Bootstrap\\": "Sef/src/Bootstrap",
"Sef\\Router\\": "Sef/src/Router",
"Sef\\Validator\\": "Sef/src/Validator",
"Mock\\Module\\Configuration\\": "Sef/tests/unit-tests/src/Configuration",
"Mock\\Module\\Controller\\": "Sef/tests/unit-tests/src/Controller"
}
}
}