-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 912 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
{
"name": "giannisftaras/speedex-api",
"description": "Use the Speedex WSDL SOAP API with PHP",
"version": "1.0.0",
"type": "library",
"homepage": "https://github.com/giannisftaras/speedex-api",
"require": {
"php": ">=5.3.0"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Giannis Ftaras",
"email": "[email protected]",
"homepage": "https://giannisftaras.dev",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"SpeedexAPI\\": "src/SpeedexAPI/"
},
"psr-4": {
"SpeedexAPI\\": "src/SpeedexAPI/"
},
"files": [
"src/SpeedexAPI/SpeedexAPI.php"
]
},
"extra": {
"laravel": {
"providers": [
"SpeedexAPI\\SpeedexAPIServiceProvider"
]
}
}
}