-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.51 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
{
"name": "tesladethray/anagrammer",
"description": "An anagram engine which accepts wildcards",
"keywords": [ "anagram", "scrabble" ],
"homepage": "https://tesladethray.me",
"license": "MIT",
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"php": ">=5.5.9",
"doctrine/orm": "^2.5",
"league/container": "^2.2"
},
"autoload": {
"psr-4": {
"TeslaDethray\\Anagrammer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TeslaDethray\\Anagrammer\\UnitTests\\": "tests/unit_tests/",
"TeslaDethray\\Anagrammer\\FeatureTests\\": "tests/features/bootstrap/"
}
},
"scripts": {
"behat": "SHELL_INTERACTIVE=true behat --colors -c=tests/config/behat.yml --suite=default",
"cbf": "phpcbf --standard=PSR2 -n tests/* src/*",
"clover": "phpunit -c tests/config/phpunit.xml.dist --coverage-clover tests/logs/clover.xml",
"coveralls": "coveralls -v -c tests/config/coveralls.xml",
"cs": "phpcs --standard=PSR2 --severity=1 -n tests src",
"lint": "@cs",
"phpunit": "SHELL_INTERACTIVE=true phpunit --colors=always -c tests/config/phpunit.xml.dist --debug",
"test": "set -ex ; composer cs ; composer phpunit ; composer behat"
},
"require-dev": {
"behat/behat": "^3.3",
"phpunit/phpcov": "^4.0",
"phpunit/phpunit": "^6.0",
"sebastian/phpcpd": "^3.0",
"squizlabs/php_codesniffer": "^2.8",
"satooshi/php-coveralls": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}