-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
57 lines (57 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
{
"name": "sveneisenschmidt/yay",
"license": "proprietary",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/App",
"Component\\": "src/Component",
"ThirdParty\\": "src/ThirdParty"
},
"classmap": [
"src/App/Kernel.php"
]
},
"require": {
"php": ">=7.2",
"doctrine/doctrine-bundle": "~1.8",
"doctrine/doctrine-cache-bundle": "~1.3",
"doctrine/orm": "~2.6",
"jms/serializer-bundle": "~2.2",
"nelmio/api-doc-bundle": "~2.13",
"predis/predis": "~1.1",
"roave/security-advisories": "dev-master",
"sensio/framework-extra-bundle": "~5.0",
"snc/redis-bundle": "~2.0.6",
"symfony/symfony": "~4.0",
"symfony/monolog-bundle": "~3.1|~4.0",
"symfony/swiftmailer-bundle": "^3.1|~4.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "~3.0|~4.0",
"nelmio/alice": "~3.0",
"phpunit/phpunit": "~7.0",
"symfony/phpunit-bridge": "~4.0",
"phpstan/phpstan": "^0.9.1",
"phpstan/phpstan-phpunit": "^0.9.3",
"phpstan/phpstan-doctrine": "^0.9.1"
},
"scripts": {
},
"config": {
"cache-dir": ".build/cache",
"optimize-autoloader": true,
"apcu-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative"
}
}