-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.16 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.16 KB
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
{
"name": "timephp/timephp",
"type": "library",
"license": "GPL-3.0-or-later",
"description": "Foundation to create a lightweight MVC architecture",
"homepage": "https://github.com/TimePHP-org/TimePHP",
"keywords": ["TimePHP", "Framework", "PHP", "MVC"],
"minimum-stability": "stable",
"readme": "https://github.com/TimePHP-org/TimePHP/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/issues",
"source": "https://github.com/TimePHP-org/TimePHP/releases"
},
"authors": [
{
"name": "Robin B",
"email": "timephp.org@gmail.com",
"role": "developer"
}
],
"require": {
"twig/twig": "^3.0",
"altorouter/altorouter": "^2.0",
"filp/whoops": "^2.7",
"symfony/dotenv": "^5.1",
"ramsey/uuid": "^4.1",
"timephp/urlparser": "^0.0.3"
},
"autoload": {
"psr-4": {
"TimePHP\\": "src/"
}
},
"require-dev": {
"symfony/var-dumper": "^5.1"
}
}