-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.49 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
{
"name": "araise/search-bundle",
"type": "symfony-bundle",
"description": "Full text search on Doctrine entities without external dependencies.",
"license": "MIT",
"homepage": "https://araise.dev",
"minimum-stability": "stable",
"authors": [
{
"name": "whatwedo GmbH",
"email": "welove@whatwedo.ch"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"doctrine/annotations": "^1.13.2|^2.0",
"doctrine/orm": "^2.13.3|^3.1",
"araise/core-bundle": "^1.1",
"doctrine/doctrine-migrations-bundle": "^3.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0",
"doctrine/doctrine-bundle": "^2.5.5",
"whatwedo/php-coding-standard": "^1.0",
"zenstruck/foundry": "^2.0",
"zenstruck/console-test": "^v1.1.0",
"symfony/translation": "^6.4|^7.0",
"symfony/twig-bundle": "^6.4|^7.0",
"phpstan/phpstan": "^1.7"
},
"autoload": {
"psr-4": {
"araise\\SearchBundle\\": "src/",
"araise\\SearchBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}