-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
49 lines (49 loc) · 1.68 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
{
"name": "helpscout/api",
"type": "library",
"description": "Help Scout API v2 Client",
"homepage": "https://github.com/helpscout/helpscout-api-php",
"keywords": ["helpscout", "help desk", "support", "api"],
"license": "MIT",
"authors": [
{
"name": "Help Scout Platform Team",
"email": "[email protected]",
"homepage": "https://www.helpscout.net"
}
],
"require": {
"php": "^7.3|^8.0",
"webmozart/assert": "^1.2",
"guzzlehttp/guzzle": "^6.3|^7.0.1",
"rize/uri-template": "^0.3.5"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.4",
"mockery/mockery": "^1.1",
"ramsey/uuid": "^4.1"
},
"autoload": {
"psr-4": { "HelpScout\\Api\\": "src/" }
},
"autoload-dev": {
"psr-4": { "HelpScout\\Api\\Tests\\": "tests/" }
},
"suggest": {
"helpscout/api-laravel": "API adapters for use with Laravel and Lumen"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse src tests --level=5",
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"sniff": "vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run --verbose",
"phpunit": "vendor/bin/phpunit",
"phpunit:clover": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"test": ["@sniff", "@analyse", "@phpunit"],
"test:travis": ["@sniff", "@analyse", "@phpunit:clover"],
"test:report": "vendor/bin/phpunit --coverage-html build/reports/phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true
}