Add initial config and pipeline source files

This commit is contained in:
Tim
2023-03-19 12:05:45 +01:00
commit f2a18d2928
16 changed files with 1146 additions and 0 deletions

14
composer.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "ardent/pipeline-bundle",
"description": "Symfony bundle to create complex pipelines with settings and service injection",
"type": "symfony-bundle",
"require": {
"php": "^8.1"
},
"license": "GPL-3.0-only",
"autoload": {
"psr-4": {
"Ardent\\PipelineBundle\\": "src/"
}
}
}