-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
executable file
·48 lines (48 loc) · 1.11 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
{
"name": "pongtan/framework",
"description": "The Pongtan Framework.",
"license": "MIT",
"authors": [
{
"name": "orvice",
"email": "[email protected]"
}
],
"require": {
"slim/slim": "^3.5",
"illuminate/database": "^5.4",
"illuminate/translation": "^5.4",
"illuminate/pagination": "^5.4",
"illuminate/config": "^5.4",
"slim/twig-view": "~2.0",
"slim/csrf": "0.5.*",
"monolog/monolog": "^1.22",
"smarty/smarty": "~3.1",
"mailgun/mailgun-php": "~1.7.2",
"predis/predis": "~1.0",
"phpmailer/phpmailer": "~5.2",
"vlucas/phpdotenv": "~2.1",
"zeuxisoo/slim-whoops": "0.4.*",
"firebase/php-jwt": "~3.0",
"aws/aws-sdk-php": "3.*",
"gregwar/captcha": "1.*",
"desarrolla2/cache": "~2.0",
"twig/twig": "~1.0",
"pongtan/twig-php-function": "~0.1",
"pongtan/simple-cache": "0.1.*"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"autoload": {
"classmap": [
],
"files": [
"src/Pongtan/Support/helpers.php"
],
"psr-4": {
"Pongtan\\": "src/Pongtan",
"Pongtan\\Tests\\": "tests"
}
}
}