forked from Brain-WP/Cortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.39 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
{
"name": "brain/cortex",
"description": "Cortex is a package that implements a routing system in WordPress.",
"keywords": [
"wordpress",
"routing",
"fast route",
"router",
"rewrite rules",
"pretty permalink"
],
"homepage": "https://github.com/Brain-WP/Cortex",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "giuseppe.mazzapica@gmail.com",
"homepage": "http://gm.zoomlab.it",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/Brain-WP/Cortex/issues",
"source": "https://github.com/Brain-WP/Cortex"
},
"require": {
"php": ">=5.5",
"nikic/fast-route": "~0.7.0",
"psr/http-message": "*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mockery/mockery": "0.9.3",
"brain/monkey": "~1.2.0",
"gmazzap/andrew": "~1.0.0"
},
"autoload": {
"psr-4": {
"Brain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brain\\Cortex\\Tests\\": "tests/src/"
}
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true
}
}