generated from spiral-packages/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "spiral-packages/symfony-validator",
"description": "Symfony validator bridge for Spiral Framework",
"keywords": [
"spiral-packages",
"spiral",
"validator"
],
"homepage": "https://github.com/spiral-packages/validator",
"license": "MIT",
"authors": [
{
"name": "butschster",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"spiral/filters": "^3.1",
"spiral/validation": "^3.1",
"doctrine/annotations": "^1.13 || ^2.0",
"symfony/cache": "^6.4 || ^7.0",
"symfony/psr-http-message-bridge": "^2",
"symfony/validator": "^6.4 || ^7.0",
"spiral/attributes": "^2.8 || ^3.0",
"spiral/http": "^3.1"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"spiral/framework": "^3.1",
"spiral/testing": "^2.0",
"vimeo/psalm": "^4.9",
"spiral/nyholm-bridge": "^1.2"
},
"autoload": {
"psr-4": {
"Spiral\\Validation\\Symfony\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Validation\\Symfony\\Tests\\App\\": "tests/app",
"Spiral\\Validation\\Symfony\\Tests\\": "tests/src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\Validation\\Symfony\\Bootloader\\ValidatorBootloader"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}