-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.06 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
39
40
41
42
43
44
45
46
47
{
"name": "erick/touch",
"description": "Microframework for web applications",
"version": "1.0.0-alpha",
"type": "library",
"keywords": [
"microframework",
"framework",
"php",
"touch",
"web",
"applications",
"rest",
"api"
],
"license": "MIT",
"autoload": {
"psr-4": {
"Touch\\": "src/"
},
"files": [
"helpers.php"
]
},
"authors": [
{
"name": "Erick Tucto",
"email": "erick@ericktucto.com"
}
],
"minimum-stability": "dev",
"require": {
"php-di/php-di": "^7.0",
"illuminate/database": "^10.10",
"filp/whoops": "^2.15",
"twig/twig": "^3.0",
"itsgoingd/clockwork": "^5.1",
"symfony/var-dumper": "^6.2",
"guzzlehttp/psr7": "^2.5",
"league/event": "^3.0",
"league/route": "^5.1",
"symfony/yaml": "^6.2",
"hassankhan/config": "^3.1",
"lune/http-emitter": "^0.0",
"vlucas/valitron": "^1.4"
}
}