-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
62 lines (62 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
62
{
"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": "[email protected]",
"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": "<1.1"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mockery/mockery": "0.9.3",
"brain/monkey": "~1.2.0",
"gmazzap/andrew": "~1.0.0",
"squizlabs/php_codesniffer": "^3.7",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3"
},
"autoload": {
"psr-4": {
"Brain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brain\\Cortex\\Tests\\": "tests/src/"
}
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts" : {
"phpcompat": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs -ps . --standard=PHPCompatibility --exclude=PHPCompatibility.Attributes.NewAttributes --ignore=*/vendor/* --extensions=php --runtime-set testVersion 7.0-"
]
}
}