-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.1 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.1 KB
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
{
"name": "abdullahpazarbasi/symfony-validators",
"homepage": "https://github.com/abdullahpazarbasi/symfony-validators",
"description": "Symfony Framework Validators",
"license": "MIT",
"authors": [
{
"name": "Abdullah Pazarbasi",
"email": "mail@abdullahpazarbasi.com"
}
],
"autoload": {
"psr-4": {
"SfV\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SfV\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.2",
"symfony/validator": "^5.0"
},
"require-dev": {
"doctrine/cache": "^1.10",
"doctrine/collections": "^1.6",
"jms/serializer": "^3.4",
"phpunit/phpunit": "^8",
"symfony/cache": "^5.0",
"symfony/console": "^5.0",
"symfony/dotenv": "^5.0",
"symfony/expression-language": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/monolog-bundle": "^3.5",
"symfony/property-access": "^5.0",
"symfony/property-info": "^5.0",
"symfony/yaml": "^5.0"
},
"scripts": {
},
"config": {
"bin-dir": "bin",
"src-dir": "src",
"cache-files-ttl": 0,
"preferred-install": "dist"
}
}