-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·108 lines (108 loc) · 2.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name" : "townteki/dtdb",
"description" : "A deckbuilder for the Doomtown card game.",
"type" : "project",
"license" : "MIT",
"require" : {
"php": ">=7.4.0",
"ext-ctype": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-zip": "*",
"debril/rss-atom-bundle": "^4.0",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "2.2.*",
"doctrine/doctrine-fixtures-bundle": "3.3.*",
"doctrine/doctrine-migrations-bundle": "3.1.*",
"doctrine/orm": "2.6.*",
"erusev/parsedown": "^1.6",
"ezyang/htmlpurifier": "^4.9",
"friendsofsymfony/jsrouting-bundle": "^2.1",
"friendsofsymfony/oauth-server-bundle": "^1.5",
"friendsofsymfony/user-bundle": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"incenteev/composer-parameter-handler": "^2.0",
"michelf/php-markdown": "1.3.*",
"nelmio/api-doc-bundle": "^3.6",
"nelmio/cors-bundle": "^2.1",
"phpdocumentor/reflection-docblock": "^5.2",
"ramsey/uuid-doctrine": "^1.5",
"sensio/framework-extra-bundle": "^5.0.0",
"stof/doctrine-extensions-bundle": "^1.3",
"symfony/asset": "4.4.*",
"symfony/console": "4.4.*",
"symfony/dotenv": "4.4.*",
"symfony/flex": "^1.3.1",
"symfony/form": "4.4.*",
"symfony/framework-bundle": "4.4.*",
"symfony/monolog-bundle": "3.7.*",
"symfony/options-resolver": "4.4.*",
"symfony/polyfill-apcu": "^1.0",
"symfony/polyfill-mbstring": "^1.14.0",
"symfony/property-access": "4.4.*",
"symfony/property-info": "4.4.*",
"symfony/serializer": "4.4.*",
"symfony/swiftmailer-bundle": "^3.3.1",
"symfony/templating": "4.4.*",
"symfony/yaml": "4.4.*",
"twig/twig": "^2.7.0",
"willdurand/js-translation-bundle": "^4.0.2",
"yectep/phpspreadsheet-bundle": "^1.0"
},
"require-dev": {
"beberlei/assert": "^3.2",
"justinrainbow/json-schema": "^5.2",
"mockery/mockery": "^1.2",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.31",
"phpstan/phpstan-symfony": "^0.12.7",
"squizlabs/php_codesniffer": "@stable",
"symfony/browser-kit": "4.4.*",
"symfony/phpunit-bridge": "4.4.*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "4.4.*"
}
}
}