-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
103 lines (103 loc) · 2.98 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
{
"type": "project",
"name": "rest/api-lite",
"description": "Demo of Slim Rest API build with Symfony 4",
"license": "MIT",
"authors": [
{
"name": "Lukasz D. Tulikowski",
"email": "[email protected]",
"homepage": "https://tulik.github.io",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"jms/serializer-bundle": "^2.4",
"lexik/form-filter-bundle": "^5.0",
"lexik/jwt-authentication-bundle": "^2.5",
"nelmio/api-doc-bundle": "^3.3",
"sensio/framework-extra-bundle": "^5.2",
"sensiolabs/security-checker": "^5.0",
"stof/doctrine-extensions-bundle": "^1.3",
"symfony/asset": "*",
"symfony/console": "*",
"symfony/expression-language": "*",
"symfony/flex": "^1.1",
"symfony/framework-bundle": "*",
"symfony/orm-pack": "^1.0",
"symfony/security-bundle": "*",
"symfony/serializer": "*",
"symfony/twig-bundle": "*",
"symfony/validator": "*",
"symfony/yaml": "*",
"white-october/pagerfanta-bundle": "^1.2"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "3.x-dev",
"friendsofphp/php-cs-fixer": "^2.13",
"hautelook/alice-bundle": "^2.3",
"phpmd/phpmd": "^2.6",
"phpmetrics/phpmetrics": "^2.4",
"phpstan/phpstan": "^0.10.3",
"squizlabs/php_codesniffer": "^3.3",
"symfony/browser-kit": "^4.0",
"symfony/dotenv": "*",
"symfony/maker-bundle": "^1.9",
"symfony/phpunit-bridge": "^4.0",
"symfony/profiler-pack": "^1.0",
"symfony/test-pack": "^1.0",
"symfony/web-server-bundle": "4.1.*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "4.1.*"
}
}
}