-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 958 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 958 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
30
31
32
33
34
35
36
37
38
{
"name": "gekko/framework",
"version": "0.1.0",
"description": "The Gekko Framework.",
"keywords": [
"framework",
"gekko"
],
"license": "MIT",
"homepage": "https://github.com/gekko-framework",
"authors": [
{
"name": "Leonardo Brugnara",
"email": "lfbrugnara@gmail.com"
}
],
"require": {
"php": "^7.2",
"gekko/collections": "^0.1.0",
"gekko/config": "^0.1.0",
"gekko/console": "^0.1.0",
"gekko/database": "^0.1.0",
"gekko/dependency-injection": "^0.1.0",
"gekko/env": "^0.1.0",
"gekko/helpers": "^0.1.0",
"gekko/http": "^0.1.0",
"gekko/model": "^0.1.0",
"gekko/mvc": "^0.1.0",
"gekko/mysql": "^0.1.0",
"gekko/serialization": "^0.1.0",
"gekko/types": "^0.1.0"
},
"autoload": {
"psr-4": {
"Gekko\\": "src/"
}
}
}