-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.2 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
{
"name": "darkwebdesign/symfony-addon-constraints",
"type": "library",
"description": "Symfony Add-on Constraints",
"keywords": ["constraints", "symfony", "validation"],
"homepage": "https://www.darkwebdesign.nl/",
"license": "MIT",
"authors": [
{"name": "Raymond Schouten"}
],
"require": {
"ext-json": "*",
"php": "^8.2",
"symfony/validator": "7.2.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.1"
},
"suggest": {
"darkwebdesign/symfony-addon-pack": "All Symfony add-ons bundled together"
},
"autoload": {
"psr-4": {
"DarkWebDesign\\SymfonyAddonConstraints\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DarkWebDesign\\SymfonyAddonConstraints\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}