-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.56 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
52
53
54
55
56
57
58
59
{
"name": "supportpal/api-client-php",
"description": "A client to interact with the SupportPal API written in PHP.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ghaith Olabi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"doctrine/cache": "^1.10",
"guzzlehttp/guzzle": "^7.0",
"kevinrob/guzzle-cache-middleware": "^5.0",
"phpdocumentor/reflection-docblock": "^5.2",
"propaganistas/laravel-phone": "^5.3",
"psr/http-message": "^1.1|^2.0",
"supportpal/eloquent-model": "^1.0",
"symfony/config": "^6.2|^7.0",
"symfony/dependency-injection": "^6.2|^7.0",
"symfony/yaml": "^6.2|^7.0"
},
"require-dev": {
"brianium/paratest": "^4.0|^5.0|^6.0",
"jangregor/phpstan-prophecy": "2.0.0",
"larapack/dd": "^1.1",
"phpmd/phpmd": "^2.9",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "2.0.2",
"phpunit/phpunit": "^9.3",
"rregeer/phpunit-coverage-check": "^0.3.1",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.5",
"supportpal/coding-standard": "^0.4"
},
"autoload": {
"psr-4": {
"SupportPal\\ApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SupportPal\\ApiClient\\Tests\\": "test/"
}
},
"config": {
"preferred-install": "dist",
"secure-http": false,
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}