-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 968 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
{
"name": "project-terris/aman-skeleton",
"type": "project",
"description" : "A skeleton project for building out PHP APIs using the Aman Framework",
"keywords": ["php", "aman", "framework", "skeleton"],
"licence": "MIT",
"require": {
"php": ">=7.1.0"
},
"require-dev":{
"phpunit/phpunit": "4.8.*"
},
"license": "MIT",
"authors": [
{
"name": "Ben Soer",
"email": "[email protected]"
},
{
"name": "Sean Hodgies",
"email": "[email protected]"
}
],
"autoload":{
"psr-4":{
"Aman\\Models\\": "src\\lib\\models\\",
"Aman\\Routing\\": "src\\lib\\routing\\",
"Aman\\Controllers\\": ["src\\lib\\controllers\\", "src\\controllers\\"],
"Aman\\Contracts\\": "src\\lib\\contracts\\",
"Aman\\Lib\\" : "src\\lib\\",
"Aman\\Lib\\Response\\": "src\\lib\\response\\",
"Aman\\Lib\\Request\\": "src\\lib\request\\",
"Aman\\Exception\\": "src\\ex\\"
}
}
}