-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 858 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 858 Bytes
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
{
"name" : "vankosoft/users-bundle",
"type" : "symfony-bundle",
"description" : "Symfony VSUsersBundle",
"keywords" : [
"User management"
],
"homepage" : "https://github.com/iatanasov77/vs-users-bundle",
"license" : "MIT",
"authors" : [{
"name" : "Ivan I. Atanasov",
"email" : "i.atanasov77@gmail.com"
}
],
"require" : {
"php" : "^8.2",
"vankosoft/application-bundle" : "1.13.*",
"symfony/security-bundle" : "^6.4 || ^7.4",
"symfony/mailer" : "^6.4 || ^7.4",
"symfonycasts/verify-email-bundle" : "^1.18",
"symfonycasts/reset-password-bundle" : "^1.24"
},
"conflict" : {
"doctrine/doctrine-bundle" : "<1.3",
"symfony/doctrine-bridge" : "<2.7"
},
"autoload" : {
"psr-4" : {
"Vankosoft\\UsersBundle\\" : "lib/"
}
},
"repositories" : [{
"type" : "path",
"url" : "../*"
}
],
"minimum-stability" : "dev"
}