3
0

First pass of the search bundle

This commit is contained in:
2022-07-20 09:23:11 +01:00
commit 06c5a90214
13 changed files with 392 additions and 0 deletions

31
composer.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "pcm/search-bundle",
"description": "Provides a search system for Symfony projects",
"type": "symfony-bundle",
"require": {
"php": ">=8.0",
"beberlei/doctrineextensions": "^1.3",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.12",
"symfony/framework-bundle": "*"
},
"autoload": {
"psr-4": {
"Pcm\\SearchBundle\\": "src/"
}
},
"authors": [
{
"name": "Matt Feeny",
"email": "mf@pcmsystems.co.uk"
},
{
"name": "Bradley Goode",
"email": "bg@pcmsystems.co.uk"
}
],
"require-dev": {
"vimeo/psalm": "^4.24",
"psalm/plugin-symfony": "^3.1"
}
}