-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.08 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
{
"name": "k2gl/entity-exist",
"description": "Checks if there is at least one row with the required field in the database, for example, a row with the same identifier",
"license": "MIT",
"type": "symfony-bundle",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"doctrine/orm": "^2.13|^3.0",
"php": "^8.1",
"symfony/validator": "^6.1|^7.0",
"symfony/dependency-injection": "^6.1|^v7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.1.2",
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/var-dumper": "^6.1|^7.0",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"K2gl\\Component\\Validator\\Constraint\\EntityExist\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"K2gl\\Component\\Validator\\Constraint\\EntityExist\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Nickolay Harin",
"email": "[email protected]"
}
]
}