-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
45 lines (45 loc) · 1.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
{
"name": "anteris-dev/autotask-client",
"description": "This package provides a PHP API client for the Autotask REST API. It is strongly typed and it is a wonderful experience to work with these classes in any intelligent IDE with autocompletion.",
"authors": [
{
"name": "Aidan Casey",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Anteris\\Autotask\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"license": "MIT",
"require": {
"php": "^7.4 | ^8.0 | ^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.0",
"illuminate/collections": "^8.0 | ^9.0 | ^10.0",
"nesbot/carbon": "^2.0",
"spatie/data-transfer-object": "^3.0"
},
"require-dev": {
"anteris-dev/autotask-client-generator": "^v1.1",
"brianium/paratest": "^6.0",
"phpunit/phpunit": "^9.3",
"vlucas/phpdotenv": "^4.0|^5.0"
},
"scripts": {
"generate": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/autotask make:defaults -f -o ./ --no-cache"
],
"test": "vendor/bin/paratest"
}
}