-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.41 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": "klever/tutor",
"description": "PHPUnit Extensions to easily spec-test data models",
"authors": [
{
"name": "Tim Klever",
"email": "[email protected]"
}
],
"keywords": [
"data",
"entity",
"getter",
"phpunit",
"model",
"setter",
"test"
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Klever\\Tutor\\": "src/Tutor/"
}
},
"autoload-dev": {
"psr-4": {
"Klever\\TutorTest\\": "test/TutorTest/"
}
},
"require": {
"php": "^7.0",
"phpunit/phpunit": "^6.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"infection/infection": "^0.8",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.3"
},
"scripts": {
"develop": "composer lint && composer tests",
"lint": "composer php-lint && composer phpcs",
"php-lint": "vendor/bin/parallel-lint src test",
"phpcs": "vendor/bin/phpcs --standard=PSR2 --colors -p src/ test/",
"phpcbf": "vendor/bin/phpcbf --standard=PSR2 --colors -p src/ test/",
"tests": "composer unit-tests && composer mutation-tests",
"unit-tests": "vendor/bin/phpunit --coverage-text",
"mutation-tests": "vendor/bin/infection"
}
}