Add more files

This commit is contained in:
Brabli
2022-07-23 17:52:36 +01:00
parent 0acd25a0a4
commit ae5c5fbf71
7 changed files with 101 additions and 0 deletions

41
composer.json Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "pcm/bundle-name",
"description": "bundle description",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Bradley Goode",
"email": "bg@pcmsystems.co.uk"
},
{
"name": "Matt Feeney",
"email": "mf@pcmsystems.co.uk"
}
],
"require": {
"symfony/dependency-injection": "^6.1",
"symfony/framework-bundle": "^6.1",
"symfony/yaml": "^6.1",
"symfony/http-client": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.1"
},
"autoload": {
"psr-4": {
"Pcm\\GeocodeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pcm\\GeocodeBundle\\Tests\\": "tests/"
}
}
}