-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 834 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 834 Bytes
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
{
"name": "enigma972/orange-api-client",
"description": "PHP SDK for Orange APIs Client with Token Caching",
"type": "library",
"keywords": [
"php", "api", "sms", "client", "http client", "json", "requests", "rest",
"restful", "web service", "orange", "cache"
],
"homepage": "https://github.com/enigma972/orange-api-client",
"license": "MIT",
"authors": [
{
"name": "Joel Lusavuvu",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"symfony/http-client": "^5.3|^6.0|^7.0",
"symfony/cache": "^5.3|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"OrangeApiClient\\": "src/"
}
},
"require-dev": {
"symfony/var-dumper": "^5.3|^6.0|^7.0"
}
}