-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
60 lines (60 loc) · 1.95 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
{
"name": "helpscout/api-laravel",
"homepage": "https://www.helpscout.com",
"description": "Service provider and facade to integrate the Help Scout Mailbox API 2.0 with Laravel and Lumen",
"keywords": ["helpscout", "help desk", "support", "api", "laravel", "lumen"],
"license": "MIT",
"authors": [
{
"name": "Help Scout Platform Team",
"email": "[email protected]",
"homepage": "https://www.helpscout.com"
}
],
"support": {
"issues": "https://github.com/helpscout/helpscout-api-php-laravel/issues",
"source": "https://github.com/helpscout/helpscout-api-php-laravel"
},
"require": {
"php": "^7.3|^8.0",
"helpscout/api": "~3.0",
"illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.3"
},
"suggest": {
"laravel/framework": "To test the Laravel bindings",
"laravel/lumen-framework": "To test the Lumen bindings"
},
"autoload": {
"psr-4": { "HelpScout\\Laravel\\": "src/" }
},
"autoload-dev": {
"psr-4": { "HelpScout\\Laravel\\Test\\": "tests/" }
},
"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 --stop-on-violation",
"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,
"extra": {
"laravel": {
"providers": [
"HelpScout\\Laravel\\HelpScoutServiceProvider"
],
"aliases": {
"HelpScout": "HelpScout\\Laravel\\HelpScoutFacade"
}
}
}
}