-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.27 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
{
"name": "escsrl/user",
"type": "library",
"description": "Symfony base user configuration",
"keywords": [
"user",
"symfony",
"symfony-user"
],
"license": "MIT",
"authors": [
{
"name": "Alessandro Bellanda",
"email": "a.bellanda@gmail.com"
},
{
"name": "Mattia Vitali",
"email": "mattia.vitali@blue-web.it"
}
],
"autoload": {
"psr-4": {
"Esc\\User\\": "src/",
"Test\\Esc\\User\\": "tests/"
}
},
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-intl": "*",
"beberlei/assert": "^3.2",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.7",
"escsrl/repository": "^1.1",
"escsrl/requestparams": "^3.0",
"escsrl/result": "^1.0",
"nesbot/carbon": "^2.27",
"phpspec/prophecy": "^1.10",
"sensio/framework-extra-bundle": "^5.5",
"symfony/security-bundle": "^5.1",
"symfony/serializer-pack": "^1.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.3",
"phpunit/phpunit": "^9.0"
},
"config": {
"sort-packages": true
},
"version": "5.0.1"
}