-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
59 lines (59 loc) · 1.95 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
{
"name": "tolry/talkly",
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.0",
"symfony/symfony": "^3.1.3",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^2.8",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"doctrine/doctrine-migrations-bundle": "^1.1",
"timetoogo/pinq": "~2.1",
"lexik/jwt-authentication-bundle": "^1.5",
"zendframework/zend-code": "3.0.2",
"league/commonmark": "^0.14.0"
},
"require-dev": {
"hautelook/alice-bundle": "^1.3",
"doctrine/data-fixtures": "^1.2",
"davidbadura/faker-markdown-generator": "^1.0",
"phpunit/phpunit": "^5.6"
},
"autoload": {
"psr-4": { "": "src/" },
"classmap": [ "app/AppKernel.php" ]
},
"autoload-dev": {
"psr-4": { "": "tests/" }
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.0.8"
}
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public",
"symfony-assets-install": "relative"
},
"minimum-stability": "stable"
}