-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (58 loc) · 1.64 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "liger/framework",
"description": "The liger Framework.",
"keywords": ["framework", "liger","php","api"],
"license": "MIT",
"homepage": "https://liger.com",
"support": {
"issues": "https://github.com/ligerphp/framework/issues",
"source": "https://github.com/ligerphp/framework"
},
"authors": [
{
"name": "Alfred Johnson Awah",
"email": "ligerframework@gmail.com"
}
],
"require": {
"symfony/console": "^4.2",
"symfony/http-foundation": "^4.2",
"symfony/routing": "^4.2",
"symfony/http-kernel": "^4.2",
"symfony/dependency-injection": "^4.2",
"symfony/event-dispatcher": "^4.2",
"symfony/contracts": "^1.0",
"fzaninotto/faker": "^1.8",
"ramsey/uuid": "^3.8",
"symfony/filesystem": "^4.2",
"twig/twig": "^2.0",
"swiftmailer/swiftmailer": "^6.0",
"symfony/var-dumper": "^4.2",
"symfony/security": "^4.2",
"symfony/dotenv": "^4.2",
"tymon/jwt-auth": "dev-master",
"league/flysystem": "^1.1@dev",
"respect/validation": "^2.0@dev",
"symfony/process": "4.4.x-dev"
},
"autoload": {
"classmap": [
"database"
],
"files": [
"src/Core/Foundation/helpers.php"
],
"psr-4": {
"Core\\": "src/Core/",
"App\\":"app/"
}
}, "autoload-dev": {
"psr-4": {
"Core\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"minimum-stability": "dev"
}