-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
38 lines (38 loc) · 1.07 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
{
"name": "leaseweb/api-caller-bundle",
"type": "symfony-bundle",
"description": "cURL API call functionality with full Web Debug Toolbar integration",
"keywords": ["API","cURL","Symfony2"],
"homepage": "http://www.leaseweblabs.com",
"license": "MIT",
"authors": [
{
"name": "Maurits van der Schee",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.1",
"ext-curl": "*",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/security-bundle": "^4.4|^5.0"
},
"require-dev": {
"twig/twig": "*",
"doctrine/doctrine-bundle": "*",
"swiftmailer/swiftmailer": "*",
"willdurand/propel-typehintable-behavior": "dev-master",
"symfony/yaml": "^5.0",
"symfony/validator": "^5.0"
},
"autoload": {
"psr-0": { "Lsw\\ApiCallerBundle": "" }
},
"target-dir": "Lsw/ApiCallerBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}