Initial commit

This commit is contained in:
pcm-libraries
2024-08-07 15:04:23 +00:00
commit a4f4e1990c
17 changed files with 450 additions and 0 deletions

40
composer.json Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "pcm/example-bundle",
"description": "PCM Example Bundle",
"type": "symfony-bundle",
"license": "MIT",
"version": "dev-develop",
"authors": [
{
"name": "Bradley Goode",
"email": "bg@pcmsystems.co.uk"
},
{
"name": "Matt Feeney",
"email": "mf@pcmsystems.co.uk"
}
],
"autoload": {
"psr-4": {
"Pcm\\ExampleBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pcm\\ExampleBundle\\Tests\\": "tests/"
}
},
"require": {
"symfony/dependency-injection": "^7.1",
"symfony/framework-bundle": "^7.1",
"symfony/yaml": "^7.1"
},
"require-dev": {
"symfony/test-pack": "^1.1",
"friendsofphp/php-cs-fixer": "^3.61"
}
}