-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 1.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
{
"name": "idmarinas/common-bundle",
"type": "symfony-bundle",
"license": "BSD-3-Clause",
"keywords": [
"symfony-bundle",
"user",
"user-bundle",
"user-reset-password",
"user-verify-email"
],
"homepage": "https://github.com/idmarinas/common-bundle",
"authors": [
{
"name": "Iván Diaz Marinas (IDMarinas)",
"email": "35842929+idmarinas@users.noreply.github.com",
"role": "Creator, Developer"
}
],
"support": {
"issues": "https://github.com/idmarinas/common-bundle/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"symfony/config": "^5.4 | ^6.4 | ^7.0",
"symfony/console": "^5.4 | ^6.4 | ^7.0",
"symfony/dependency-injection": "^5.4 | ^6.4 | ^7.0",
"symfony/filesystem": "^5.4 | ^6.4 | ^7.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^2.20",
"easycorp/easyadmin-bundle": "^4.0",
"fakerphp/faker": "^1.21",
"gedmo/doctrine-extensions": "^3.17",
"matthiasnoback/symfony-config-test": "^4.2 | ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.2 | ^5.0 | ^6.0",
"nyholm/symfony-bundle-test": "^2.0",
"php-mock/php-mock-phpunit": "^2.10",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.2",
"symfony/form": "^5.4 | ^6.4 | ^7.0",
"symfony/framework-bundle": "^5.4 | ^6.4 | ^7.0",
"symfony/phpunit-bridge": "^5.4",
"symfony/test-pack": "^1.0",
"symfony/validator": "^5.4 | ^6.4 | ^7.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": false,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Idm\\Bundle\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Idm\\Bundle\\Common\\Tests\\": "tests/"
}
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/idmarinas"
},
{
"type": "githubsponsors",
"url": "https://github.com/sponsors/idmarinas"
}
]
}