-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 997 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
{
"name": "ironlions/whmcs-abstract",
"type": "library",
"description": "Abstraction for WHMCS modules.",
"license": "proprietary",
"authors": [
{
"name": "Fiteco",
"email": "[email protected]"
}
],
"require": {
"symfony/http-kernel": "5.0.*",
"symfony/event-dispatcher": "5.0.*",
"symfony/dependency-injection": "5.0.*",
"symfony/config": "5.0.*",
"symfony/cache": "5.0.*",
"symfony/messenger": "5.0.*",
"symfony/framework-bundle": "5.0.*",
"symfony/http-foundation": "5.0.*",
"doctrine/annotations": "^1.10",
"jakeasmith/http_build_url": "^1.0",
"twig/twig": "^3.0",
"kevinrob/guzzle-cache-middleware": "^3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "v2.16.4"
},
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"IronLions\\WHMCS\\": "src/"
}
}
}