-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.79 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
63
{
"type": "library",
"name": "locomotivemtl/charcoal-search",
"description": "Charcoal Search Engine tools and utilities",
"keywords": [ "charcoal", "search" ],
"homepage": "https://charcoal.locomotive.ca",
"license": "MIT",
"authors": [
{
"name": "Mathieu Ducharme",
"email": "[email protected]"
},
{
"name": "Locomotive",
"homepage": "https://locomotive.ca"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"require": {
"php": ">=5.6.0 || >=7.0",
"psr/log": "^1.0",
"locomotivemtl/charcoal-object": "~0.2",
"locomotivemtl/charcoal-core": "~0.4",
"locomotivemtl/charcoal-app": "~0.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.5",
"squizlabs/php_codesniffer": "^3.0",
"satooshi/php-coveralls": "^2.0",
"cache/void-adapter": "^0.3"
},
"autoload": {
"psr-4": {
"Charcoal\\Admin\\": "src/Charcoal/Admin",
"Charcoal\\Search\\": "src/Charcoal/Search"
}
},
"autoload-dev": {
"psr-4": {
"Charcoal\\Tests\\": "tests/Charcoal/"
}
},
"scripts": {
"test": [
"@tests"
],
"tests": [
"@phplint",
"@phpcs",
"@phpunit"
],
"phplint": "find src tests -type f -name '*.php' -print0 | xargs -0 -n1 -P8 php -l | grep -v '^No syntax errors detected'; test $? -eq 1",
"phpcs": "php vendor/bin/phpcs -ps --colors src/",
"phpcbf": "php vendor/bin/phpcbf -ps --colors src/ tests/",
"phpunit": "php vendor/bin/phpunit --coverage-text"
}
}