-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 756 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 756 Bytes
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
{
"name": "savioandres/skunkapi",
"description": "Skunk API. PHP framework for organizing code in the project API.",
"keywords": ["framework", "skunkapi", "skunk", "api"],
"minimum-stability": "stable",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Sávio Andres",
"email": "savioandres@hotmail.com",
"role": "Developer",
"homepage": "https://github.com/SavioAndres"
}
],
"autoload": {
"psr-4": {
"App\\": "app/",
"Controller\\": "controller/",
"Business\\": "business/"
},
"files": [
"app/helpers.php"
]
},
"require": {
"php": ">=7.3.8"
}
}