From 7cf53c7de85d352b6c09865e83064a78c3e5e514 Mon Sep 17 00:00:00 2001 From: alexpozzi Date: Fri, 23 Jun 2023 11:27:07 +0200 Subject: [PATCH] feat: add bundle shell --- .gitattributes | 4 ++++ .gitignore | 2 ++ src/Bundle/.gitattributes | 3 +++ src/Bundle/.gitignore | 2 ++ src/Bundle/SnappyBundle.php | 10 ++++++++++ src/Bundle/composer.json | 33 +++++++++++++++++++++++++++++++++ 6 files changed, 54 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 src/Bundle/.gitattributes create mode 100644 src/Bundle/.gitignore create mode 100644 src/Bundle/SnappyBundle.php create mode 100644 src/Bundle/composer.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..03ef07f9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +/.github/ export-ignore +/spec/ export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..ff72e2d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/composer.lock +/vendor diff --git a/src/Bundle/.gitattributes b/src/Bundle/.gitattributes new file mode 100644 index 00000000..ea3019f9 --- /dev/null +++ b/src/Bundle/.gitattributes @@ -0,0 +1,3 @@ +/spec/ export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore diff --git a/src/Bundle/.gitignore b/src/Bundle/.gitignore new file mode 100644 index 00000000..ff72e2d0 --- /dev/null +++ b/src/Bundle/.gitignore @@ -0,0 +1,2 @@ +/composer.lock +/vendor diff --git a/src/Bundle/SnappyBundle.php b/src/Bundle/SnappyBundle.php new file mode 100644 index 00000000..de3bd6a4 --- /dev/null +++ b/src/Bundle/SnappyBundle.php @@ -0,0 +1,10 @@ +=8.0", + "symfony/http-kernel": "^5.4|^6.2" + }, + "autoload": { + "psr-4": { "KnpLabs\\Snappy\\Bundle\\": "" }, + "exclude-from-classmap": [ + "/spec/" + ] + }, + "autoload-dev": { + "psr-4": { + "KnpLabs\\Snappy\\Bundle\\Spec\\": "spec/" + } + } +}