forked from SeanJA/query-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.16 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
{
"name": "seanja/query-builder",
"description": "Query building classes",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^4.7",
"squizlabs/php_codesniffer": "^2.9",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^2.0"
},
"license": "MIT / GPL",
"authors": [
{
"name": "SeanJA",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SeanJA\\": "source"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\SeanJA\\": "tests\\source"
}
},
"require": {},
"scripts": {
"phpcpd": [
"vendor/bin/phpcpd --min-tokens 10 ./source"
],
"phpcs": [
"vendor/bin/phpcs --standard=PSR2 --extensions=php ./source"
],
"phpunit": [
"vendor/bin/phpunit --configuration ./phpunit.xml"
],
"phpmd": [
"vendor/bin/phpmd ./source text codesize,naming,unusedcode"
],
"coverage": [
"php vendor/bin/phpunit --coverage-clover clover.xml"
],
"build": [
"vendor/bin/phpunit",
"vendor/bin/phpcpd --min-tokens 10 ./source",
"vendor/bin/phpcs --standard=PSR2 --extensions=php ./source",
"vendor/bin/phpunit --coverage-text"
]
}
}