-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "helpscout/specter-php",
"description": "JSON API Mocking and Testing for PHP",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"keywords": [
"psr7",
"middleware",
"fixture",
"Help Scout",
"Laravel",
"Illuminate"
],
"authors": [
{
"name": "Platform Group",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/helpscout/specter-php/issues"
},
"autoload": {
"files": [
"src/Helpers/helpers.php"
],
"psr-4": {
"HelpScout\\Specter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HelpScout\\Specter\\Tests\\": "tests/src",
"HelpScout\\Specter\\Tests\\Helpers\\": "tests/src/helpers"
}
},
"require": {
"php": "^7.0",
"coduo/php-matcher": "^2.0",
"fzaninotto/faker": "^1.6",
"guzzlehttp/psr7": "^1.3",
"phpspec/php-diff": "^1.1",
"psr/http-message": "^1.0"
},
"require-dev": {
"codeclimate/php-test-reporter": "dev-master",
"helpscout/php-standards": "^1.0",
"illuminate/http": "5.*",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phpunit/phpunit": "^6.1",
"squizlabs/php_codesniffer": "^3.0"
},
"bin": [
"bin/specter"
],
"scripts": {
"test": [
"@lint",
"@sniff",
"@phpunit"
],
"lint": "vendor/bin/parallel-lint --exclude app --exclude vendor .",
"sniff": "vendor/bin/phpcs --standard=vendor/helpscout/php-standards/HelpScout --warning-severity=0 --extensions=php src tests",
"strict": "vendor/bin/phpcs --standard=vendor/helpscout/php-standards/HelpScout --extensions=php src tests",
"format": "vendor/bin/phpcbf --standard=vendor/helpscout/php-standards/HelpScout --extensions=php src tests",
"phpunit": "vendor/bin/phpunit --verbose",
"phpunit-example": "vendor/bin/phpunit --verbose tests/src/ExampleTest.php",
"coverage": [
"vendor/bin/phpunit --coverage-html build/coverage",
"php -S localhost:8080 -t build/coverage"
]
}
}