-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.07 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
{
"name": "wowngasb/tiny",
"type": "framework",
"description": "A Simple PHP Framework based on Composer.",
"keywords": [
"tiny",
"web",
"framework"
],
"homepage": "http://github.com/wowngasb/tiny",
"license": "MIT",
"support": {
"issues": "https://github.com/wowngasb/tiny/issues"
},
"authors": [
{
"name": "kong lin",
"email": "konglin4216@gmail.com",
"homepage": "http://github.com/wowngasb"
}
],
"require": {
"php": ">=5.5.9",
"symfony/http-foundation": "^3.4.35",
"webonyx/graphql-php": "^0.11",
"nikic/fast-route": "^1.2",
"phpFastCache/phpFastCache": "^5.0",
"illuminate/database": "5.2.*",
"illuminate/pagination": "5.2.*",
"philo/laravel-blade": "^3.1"
},
"require-dev": {
"php-console/php-console": "^3.1",
"phpunit/phpunit": "^4.8",
"php-mock/php-mock-phpunit": "^1.1"
},
"autoload": {
"psr-4": {
"Tiny\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tiny\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
}
}