forked from grobmeier/cicada
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.13 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
48
49
50
51
52
{
"name": "opendi/cicada",
"type": "library",
"description": "Tiny PHP framework for quickly creating webapps, inspired by Rubys Sinatra",
"keywords": [
"framework"
],
"homepage": "https://github.com/opendi/cicada",
"license": "Apache-2.0",
"authors": [
{
"name": "Christian Grobmeier",
"email": "grobmeier@gmail.com",
"homepage": "http://www.grobmeier.de",
"role": "Developer"
},
{
"name": "Ivan Habunek",
"email": "ivan.habunek@gmail.com",
"role": "Developer"
},
{
"name": "Michel Feldheim",
"email": "m.feldheim@opendi.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/opendi/cicada/issues",
"source": "https://github.com/opendi/cicada"
},
"require": {
"php": ">=7.4.0",
"evenement/evenement": "^3.0",
"pimple/pimple": "^3.5",
"symfony/http-foundation": "^5.4",
"symfony/http-kernel": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Cicada\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cicada\\Tests\\": "tests"
}
}
}