forked from phpcommunity/phptestfest.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 957 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
37
38
39
{
"name": "phpc/testfest",
"description": "PHP TestFest tools and resources.",
"type": "project",
"license": "Apache-2.0",
"require": {
"php": "^5.6 || ^7.0",
"symfony/console": "^3.3"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^5.7 || ^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"bin": [
"bin/testfest"
],
"autoload": {
"psr-4": {
"Phpc\\TestFest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phpc\\TestFest\\Test\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"phpunit": "phpunit --verbose --colors=always",
"phpcs": "phpcs src tests --standard=psr2 -sp --colors",
"test": [
"@lint",
"@phpunit",
"@phpcs"
]
}
}