-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 749 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 749 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
31
32
33
34
35
36
{
"name": "beyerz/api-adapter-bundle",
"description": "Symfony bundle to act as an api connector and adapter for third party apis",
"type": "symfony-bundle",
"authors": [
{
"name": "Lance Bailey",
"homepage": "http://www.me-vs-php.com"
}
],
"keywords": [
"Symfony",
"Symfony2",
"api",
"api adapter",
"rest api",
"soap api",
"api adapter"
],
"license": "MIT",
"require": {
"php": ">=7.0",
"symfony/symfony": "2.8.*",
"jms/serializer-bundle": "^1.0.0|^2.0.0",
"besimple/soap": "0.2.6",
"csa/guzzle-bundle": "^2.0|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~3"
},
"autoload": {
"psr-4": {
"Beyerz\\ApiAdapterBundle\\": ""
}
}
}