-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.4 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
{
"name": "phpexperts/rest-speaker",
"description": "A quick and easy GuzzleHTTP extension for effortlessly handling RESTful APIs.",
"keywords": [
"rest",
"restful",
"php",
"api",
"json"
],
"homepage": "https://www.phpexperts.pro/",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/hopeseekr"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "6.*|7.*"
},
"suggest": {
"phpexperts/laravel-env-polyfill": "1.*",
"octoper/cuzzle": "3.*"
},
"require-dev": {
"phpunit/phpunit": "8.*|9.*",
"phpstan/phpstan": "*",
"symfony/var-dumper": "*",
"phpexperts/laravel-env-polyfill": "*",
"phpexperts/dockerize": "^12.0",
"vlucas/phpdotenv": "^5.4",
"octoper/cuzzle": "^3.1",
"monolog/monolog": "^2.8"
},
"autoload": {
"psr-4": { "PHPExperts\\RESTSpeaker\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "PHPExperts\\RESTSpeaker\\Tests\\" : "tests/" }
},
"config": {
"allow-plugins": {
"0.0.0/composer-include-files": true
}
}
}