-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
31 lines (31 loc) · 942 Bytes
/
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
{
"name": "intaro/custom-index-bundle",
"description": "Annotation and command for control entity custom indexes",
"keywords": ["symfony", "index", "postgresql-index"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [{
"name": "Chernyavtsev Ivan",
"email": "[email protected]",
"role": "Developer"
}],
"require": {
"php": "^8.1",
"doctrine/orm": "^2.2.3 || ^3.0",
"symfony/config": "^5.0 || ^6.0",
"symfony/console": "^5.0 || ^6.0",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/http-kernel": "^5.0 || ^6.0",
"symfony/validator": "^5.0 || ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpstan/phpstan": "^1.11",
"retailcrm/php-code-style": "^1.0"
},
"autoload": {
"psr-4": {
"Intaro\\CustomIndexBundle\\": ""
}
}
}