-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.08 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": "saasus-platform/saasus-sdk-php",
"type": "library",
"description": "SaaSus SDK for PHP",
"autoload": {
"psr-4": {
"AntiPatternInc\\Saasus\\": "src/",
"AntiPatternInc\\Saasus\\Sdk\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"AntiPatternInc\\Saasus\\Test\\": "test/"
}
},
"authors": [
{
"name": "SaaSus Platform",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"laravel/framework": ">=6.20 <10",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^1.7.0|^2.0",
"guzzlehttp/promises": "^1.4.0",
"jane-php/open-api-runtime": "^7.3",
"php-http/guzzle7-adapter": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0",
"jane-php/open-api-3": "^7.3",
"friendsofphp/php-cs-fixer": "^3.10"
},
"scripts": {
"test": "phpunit test"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"extra": {
"symfony": {
"allow-contrib": "true"
}
}
}