-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.33 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
{
"name": "melba-ch/laravel-zoho",
"description": "This package provides an interface to connect your Laravel application to Zoho",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"MelbaCh\\LaravelZoho\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MelbaCh\\LaravelZoho\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Clément Baconnier",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"MelbaCh\\LaravelZoho\\LaravelZohoServiceProvider"
],
"aliases": {
"ZohoClient": "MelbaCh\\LaravelZoho\\Facades\\ZohoClient"
}
}
},
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"league/oauth2-client": "^2.6"
},
"require-dev": {
"brianium/paratest": "^6.2|^7.4",
"orchestra/testbench": "^7.0|^8.20|^9.0",
"phpunit/phpunit": "^9.3|^10.3",
"nunomaduro/collision": "^6.1|^7.0|^8.0",
"spatie/invade": "^1.1",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage",
"format" : "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}