Files
pcm-geocode-bundle/composer.json
Matt Feeny 0f6a3fed2b - Updating composer to allow version 2 or 3
- Update postcode in tests as the old one stopped working
2025-05-08 17:19:40 +01:00

42 lines
923 B
JSON

{
"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.3.0",
"symfony/http-client": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/framework-bundle": "^7.1",
"symfony/yaml": "^7.1",
"doctrine/orm": "^2|^3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^7.1"
},
"autoload": {
"psr-4": {
"Pcm\\GeocodeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pcm\\GeocodeBundle\\Tests\\": "tests/"
}
}
}