-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1004 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 1004 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
39
40
41
42
43
{
"name": "halloverden/symfony-validator-constraints-bundle",
"description": "Various constraints for symfony validator",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Tom Roar Furunes",
"email": "tom.roar@halloverden.no"
},
{
"name": "Erich Json Fosse",
"email": "erich@halloverden.no"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require": {
"ext-json": "*",
"php": ">=8.2",
"symfony/framework-bundle": "^6.4|^7.1",
"symfony/property-access": "^6.4|^7.1",
"symfony/validator": "^6.4|^7.1",
"giggsey/libphonenumber-for-php": "^8.11",
"league/uri": "^7.4"
},
"autoload": {
"psr-4": {
"HalloVerden\\ValidatorConstraintsBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HalloVerden\\ValidatorConstraintsBundle\\Tests\\": "tests"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4|^7.1"
}
}