This repository has been archived by the owner on Dec 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
55 lines (55 loc) · 1.73 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
{
"name": "beelab/user-bundle",
"type": "symfony-bundle",
"description": "Simple user provider for Symfony",
"keywords": [
"User",
"User management"
],
"homepage": "https://github.com/Bee-Lab",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"doctrine/doctrine-bundle": "^1.6 || ^2.0",
"doctrine/orm": "^2.5",
"sensio/framework-extra-bundle": "^4.0 || ^5.0",
"symfony/config": "^3.4.35 || ^4.4.7 || ^5.0.7",
"symfony/console": "^3.4.35 || ^4.4.7 || ^5.0.7",
"symfony/dependency-injection": "^3.4.35 || ^4.4.7 || ^5.0.7",
"symfony/doctrine-bridge": "^3.4.35 || ^4.4.7 || ^5.0.7",
"symfony/form": "^3.4.35 || ^4.4.7 || ^5.0.7",
"symfony/security": "^3.4.35 || ^4.4.7 || ^5.0.7",
"symfony/templating": "^3.4.35 || ^4.4.7 || ^5.0.7",
"symfony/validator": "^3.4.35 || ^4.4.7 || ^5.0.7",
"twig/twig": "^1.26 || ^2.0 || ^3.0"
},
"require-dev": {
"knplabs/knp-components": "^1.3 || ^2.0",
"knplabs/knp-paginator-bundle": "^3.0 || ^4.0 || ^5.0",
"lexik/form-filter-bundle": "^5.0",
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.1"
},
"suggest": {
"knplabs/knp-paginator-bundle": "Needed for optional pagination",
"lexik/form-filter-bundle": "If you want to use filters"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.6.x-dev"
}
},
"autoload": {
"psr-4": {
"Beelab\\UserBundle\\": ""
}
}
}