-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
52 lines (52 loc) · 1.53 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": "hunteryun/hunterphp",
"description": "Best PHP CMF for chinese",
"keywords": ["microframework", "laravel", "drupal", "psr7", "high-performance"],
"homepage": "https://github.com/hunteryun/hunterphp",
"license": "MIT",
"authors": [
{
"name": "DrupalHunter",
"email": "[email protected]"
}
],
"require": {
"league/container": "^2.2",
"league/route": "^3.0",
"zendframework/zend-diactoros": "^1.3",
"wikimedia/composer-merge-plugin": "^1.4",
"symfony/yaml": "~3.0",
"symfony/console": "^3.1",
"hassankhan/config": "^0.11.2",
"schnittstabil/csrf-tokenservice": "^3.1",
"lootils/uuid": "^1.0",
"overclokk/cookie": "^1.0",
"phpfastcache/phpfastcache": "^7.1",
"fzaninotto/faker": "^1.6",
"creitive/breadcrumbs": "^3.1",
"voku/anti-xss": "^2.0",
"gregwar/captcha": "1.*",
"katzgrau/klogger": "^1.2",
"doctrine/annotations": "^1.8",
"overtrue/pinyin": "~3.0"
},
"extra": {
"merge-plugin": {
"include": [
"module/*/composer.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
},
"autoload": {
"psr-4": {
"Hunter\\Core\\": "core/lib/Hunter"
}
}
}