-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
125 lines (125 loc) · 4.07 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "slashfan/symfony-realworld-example-app",
"description": "Exemplary real world application built with Symfony",
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"composer/package-versions-deprecated": "1.11.99.2",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.9",
"friendsofsymfony/rest-bundle": "3.1.*",
"lexik/jwt-authentication-bundle": "^2.12",
"nelmio/cors-bundle": "^2.1",
"nesbot/carbon": "^2.50",
"sensio/framework-extra-bundle": "^6.2",
"stof/doctrine-extensions-bundle": "^1.6",
"symfony/cache": "5.4.*",
"symfony/console": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/expression-language": "5.4.*",
"symfony/flex": "^1.13",
"symfony/form": "5.4.*",
"symfony/framework-bundle": "5.4.*",
"symfony/monolog-bundle": "^3.7",
"symfony/property-access": "5.4.*",
"symfony/property-info": "5.4.*",
"symfony/runtime": "5.4.*",
"symfony/security-bundle": "5.4.*",
"symfony/serializer": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/twig-bundle": "5.4.*",
"symfony/validator": "5.4.*",
"symfony/yaml": "5.4.*"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.6",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"ergebnis/composer-normalize": "^2.15",
"fakerphp/faker": "^1.15",
"friendsofphp/php-cs-fixer": "^3.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.7",
"nelmio/alice": "^3.8",
"phpmd/phpmd": "2.6.*",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpunit/phpunit": "^9.5",
"psalm/plugin-symfony": "^2.4",
"pyrech/composer-changelogs": "^1.7",
"rector/rector": "^0.11",
"slam/phpstan-extensions": "^5.1",
"squizlabs/php_codesniffer": "^3.6",
"symfony/browser-kit": "5.4.*",
"symfony/css-selector": "5.4.*",
"symfony/debug-bundle": "5.4.*",
"symfony/maker-bundle": "^1.33",
"symfony/phpunit-bridge": "5.4.*",
"symfony/stopwatch": "5.4.*",
"symfony/var-dumper": "5.4.*",
"symfony/web-profiler-bundle": "5.4.*",
"symplify/phpstan-rules": "^9.3",
"thecodingmachine/phpstan-strict-rules": "^0.12",
"theofidry/alice-data-fixtures": "^1.4",
"vimeo/psalm": "^4.9"
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"pyrech/composer-changelogs": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "5.4.*"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}