-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.14 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
{
"name": "timephp/skeleton",
"type": "project",
"license": "GPL-3.0-or-later",
"description": "Boilerplate project using TimePHP",
"homepage": "https://github.com/TimePHP-org/TimePHP-Skeleton",
"keywords": ["TimePHP", "Framework", "PHP", "MVC"],
"minimum-stability": "stable",
"readme": "https://github.com/TimePHP-org/TimePHP-Skeleton/blob/master/README.md",
"support": {
"email": "timephp.org@gmail.com",
"docs": "https://timephp-org.github.io/TimePHP-Docs/#/",
"issues": "https://github.com/TimePHP-org/TimePHP-Skeleton/issues",
"source": "https://github.com/TimePHP-org/TimePHP-Skeleton/releases"
},
"authors": [
{
"name": "Robin B",
"email": "timephp.org@gmail.com",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"App\\": "App/"
}
},
"require": {
"php": "^7.4",
"timephp/database": "^0.0.9",
"timephp/timephp": "^0.0.16",
"timephp/rest": "^0.0.3"
},
"require-dev": {
"symfony/var-dumper": "^5.1",
"fzaninotto/faker": "^1.9"
}
}