First commit

This commit is contained in:
Brabli
2022-07-19 10:21:40 +01:00
commit 25c87ef115
12 changed files with 379 additions and 0 deletions

38
composer.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "pcm/geocode-bundle",
"description": "Geocode postcodes and entities",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Bradley Goode",
"email": "bg@pcmsystems.co.uk"
},
{
"name": "Matt Feeney",
"email": "mf@pcmsystems.co.uk"
}
],
"require": {
"php": "^8.1.0",
"symfony/http-client": "^6.1",
"symfony/dependency-injection": "^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/"
}
}
}