-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (35 loc) · 978 Bytes
/
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
{
"name": "livy/climber",
"description": "An alternative to WordPress's Walker system for navigational menus.",
"license": "MIT",
"authors": [
{
"name": "Ben Martinez-Bateman",
"email": "ben@alwaysblank.org"
}
],
"require": {
"php": ">=7.1",
"zenodorus/arrays": "^1.1",
"zenodorus/strings": "^1.0"
},
"require-dev": {
"zenodorus/core": "dev-master",
"phpunit/phpunit": "^6.4",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload-dev": {
"files": ["tests/shims.php", "tests/storage.php"]
},
"autoload": {
"psr-4": {
"Livy\\Climber\\": "src"
},
"files": ["src/func/function_loader.php"]
},
"scripts": {
"check": ["phpcs --standard=vendor/zenodorus/core/phpcs.xml src tests"],
"fix": ["phpcbf --standard=vendor/zenodorus/core/phpcs.xml src tests"],
"test": ["phpunit"]
}
}