This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
65 lines (65 loc) · 1.99 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
{
"name": "whatwedo/search-bundle",
"type": "symfony-bundle",
"description": "Full text search on Doctrine entities without external dependencies.",
"license": "MIT",
"homepage": "https://whatwedo.github.io/SearchBundle/#/",
"minimum-stability": "stable",
"authors": [
{
"name": "whatwedo GmbH",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"doctrine/annotations": "^1.13.2",
"doctrine/orm": "^2.11.0",
"whatwedo/core-bundle": "^1.0",
"doctrine/doctrine-migrations-bundle": "^3.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^v6.0",
"symfony/config": "^v6.0",
"symfony/dependency-injection": "^v6.0",
"symfony/yaml": "^v6.0",
"symfony/validator": "^6.0",
"nyholm/symfony-bundle-test": "^1.8",
"doctrine/doctrine-bundle": "^2.5.5",
"whatwedo/php-coding-standard": "^1.0",
"whatwedo/core-bundle": "dev-1.0-dev as 1.0",
"zenstruck/foundry": "^1.16",
"zenstruck/console-test": "^v1.1.0",
"symfony/orm-pack": "^1.0",
"symfony/translation": "^6.0",
"symfony/twig-bundle": "^6.0",
"phpstan/phpstan": "^1.7"
},
"autoload": {
"psr-4": {
"whatwedo\\SearchBundle\\": "src/",
"whatwedo\\SearchBundle\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "twbs/icons",
"version": "1.8.1",
"source": {
"url": "https://github.com/twbs/icons",
"type": "git",
"reference": "tags/v1.8.1"
}
}
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}