-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 982 Bytes
/
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": "fairway/canto-saas-api",
"type": "library",
"description": "Client library for Canto SaaS APIs.",
"homepage": "https://github.com/ecentral/fairway-canto-saas-api/",
"license": "MIT",
"keywords": [
"Canto",
"API"
],
"authors": [
{
"name": "Tim Schreiner",
"role": "Developer",
"email": "[email protected]"
},
{
"name": "Christian Rodriguez Benthake",
"role": "Developer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.3",
"psr/log": "^1.1 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.2",
"friendsofphp/php-cs-fixer": "^3.3",
"phpro/grumphp": "^1.5"
},
"autoload": {
"psr-4": {
"Fairway\\CantoSaasApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fairway\\CantoSaasApi\\Tests\\": "tests"
}
}
}