generated from ergebnis/symfony-application-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
127 lines (127 loc) · 3.32 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
126
127
{
"name": "ergebnis/factory-bot-example",
"description": "Provides a GitHub repository template for a PHP library, using GitHub actions.",
"license": "MIT",
"type": "project",
"keywords": [
"ergebnis",
"factory-bot",
"example"
],
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]",
"homepage": "https://localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/factory-bot-example",
"support": {
"issues": "https://github.com/ergebnis/factory-bot-example/issues",
"source": "https://github.com/ergebnis/factory-bot-example"
},
"require": {
"php": "~8.3.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-pdo_pgsql": "*",
"doctrine/collections": "^2.2.2",
"doctrine/doctrine-bundle": "^2.13.2",
"doctrine/doctrine-migrations-bundle": "^3.4.1",
"doctrine/migrations": "^3.8.2",
"doctrine/orm": "^3.3.2",
"doctrine/persistence": "^3.4.0",
"ramsey/uuid": "^4.7.6",
"symfony/config": "^7.1.7",
"symfony/console": "^7.2.1",
"symfony/dependency-injection": "^7.2.0",
"symfony/dotenv": "^7.2.0",
"symfony/error-handler": "^7.2.3",
"symfony/filesystem": "^7.2.0",
"symfony/flex": "^2.4.7",
"symfony/framework-bundle": "^7.2.3",
"symfony/http-kernel": "^7.2.1",
"symfony/routing": "^7.1.9",
"symfony/runtime": "^7.2.3",
"symfony/serializer": "^7.2.3",
"symfony/yaml": "^7.2.3"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"dama/doctrine-test-bundle": "^8.2.2",
"ergebnis/composer-normalize": "^2.45.0",
"ergebnis/factory-bot": "^1.9.0",
"ergebnis/license": "^2.6.0",
"ergebnis/php-cs-fixer-config": "^6.44.0",
"ergebnis/phpunit-slow-test-detector": "^2.19.0",
"infection/infection": "~0.27.11",
"phpunit/phpunit": "^10.5.26",
"psalm/plugin-phpunit": "~0.19.0",
"psalm/plugin-symfony": "^5.2.6",
"rector/rector": "^2.0.9",
"symplify/config-transformer": "^12.3.4",
"vimeo/psalm": "^5.26.1",
"weirdan/doctrine-psalm-plugin": "^2.9.0"
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.3.8"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^5.1.0"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}