-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
115 lines (115 loc) · 3.24 KB
/
composer.json
File metadata and controls
115 lines (115 loc) · 3.24 KB
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
{
"name": "idmarinas/user-bundle",
"description": "Bundle to manage user basics without having to configure everything for each project, comes with a password reset and email verification system",
"type": "symfony-bundle",
"license": "BSD-3-Clause",
"keywords": [
"user-bundle",
"user",
"symfony-bundle"
],
"homepage": "https://github.com/idmarinas/user-bundle",
"authors": [
{
"name": "Iván Diaz Marinas (IDMarinas)",
"email": "35842929+idmarinas@users.noreply.github.com",
"role": "Author, Developer, Maintainer"
}
],
"support": {
"issues": "https://github.com/idmarinas/user-bundle/issues"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"doctrine/dbal": "^3.0",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^2.17 || ^3.0",
"gedmo/doctrine-extensions": "^3.14",
"idmarinas/common-bundle": "^3.0",
"symfony/config": "^6.4 | ^7.0",
"symfony/dependency-injection": "^6.4 | ^7.0",
"symfony/form": "^6.4 | ^7.0",
"symfony/framework-bundle": "^6.4 | ^7.0",
"symfony/lock": "^6.4 | ^7.0",
"symfony/mailer": "^6.4 | ^7.0",
"symfony/rate-limiter": "^6.4 | ^7.0",
"symfony/routing": "^6.4 | ^7.0",
"symfony/security-bundle": "^6.4 | ^7.0",
"symfony/serializer": "^6.4 | ^7.0",
"symfony/translation": "^6.4 | ^7.0",
"symfony/twig-bundle": "^6.4 | ^7.0",
"symfony/uid": "^6.4 | ^7.0",
"symfony/validator": "^6.4 | ^7.0",
"symfony/yaml": "^6.4 | ^7.0",
"symfonycasts/reset-password-bundle": "^1.19",
"symfonycasts/verify-email-bundle": "^1.15"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.2",
"doctrine/doctrine-fixtures-bundle": "^3.0 | ^4.0",
"easycorp/easyadmin-bundle": "^4.20",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.2",
"stof/doctrine-extensions-bundle": "^1.13",
"symfony/browser-kit": "^6.4 | ^7.0",
"symfony/css-selector": "^6.4 | ^7.0",
"symfony/http-client": "^6.4 | ^7.0",
"symfony/maker-bundle": "^1.61",
"symfony/phpunit-bridge": "^6.0",
"symfony/runtime": "^6.4 | ^7.0",
"zenstruck/foundry": "^2.3"
},
"conflict": {
"idmarinas/common-bundle": "<=3.0.0",
"doctrine/dbal": ">=4.0"
},
"autoload": {
"psr-4": {
"Idm\\Bundle\\User\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "app/src/",
"Idm\\Bundle\\User\\Tests\\": "tests/",
"DataFixtures\\": "fixtures/",
"Factory\\": "factories/"
}
},
"scripts": {
"test:fixtures:load": [
"php bin/console doctrine:schema:drop --env=test --force --ansi",
"php bin/console doctrine:schema:update --env=test --force --ansi",
"php bin/console doctrine:fixtures:load --env=test -n --ansi"
],
"dev:fixtures:load": [
"php bin/console doctrine:schema:drop --env=dev --force --ansi",
"php bin/console doctrine:schema:update --env=dev --force --ansi",
"php bin/console doctrine:fixtures:load --env=dev -n --ansi"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": false,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/idmarinas"
},
{
"type": "github-sponsors",
"url": "https://github.com/sponsors/idmarinas"
}
]
}