-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 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
{
"name": "tiggee/constellix-v4-client-laravel",
"description": "Laravel Integration for Constellix v4 API",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Tiggee\\ConstellixApiLaravel\\": "src/",
"Tiggee\\ConstellixApiLaravel\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jessica Smith",
"email": "jessica.smith@digicert.com"
}
],
"require-dev": {
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"friendsofphp/php-cs-fixer": "^3.22",
"phpunit/phpunit": "^9.6||^10.2"
},
"require": {
"php": "^8.0||^8.1||^8.2||^8.3",
"illuminate/support": "^9|^10",
"illuminate/pagination": "^9|^10",
"guzzlehttp/guzzle": "^7.2",
"tiggee/constellix-v4-client": "^1.0"
},
"extra": {
"laravel": {
"providers": [
"Tiggee\\ConstellixApiLaravel\\ServiceProvider"
],
"aliases": {
"ConstellixApi": "Tiggee\\ConstellixApiLaravel\\Facades\\ConstellixApi"
}
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan",
"phpunit": "vendor/bin/phpunit"
}
}