diff --git a/.gitattributes b/.gitattributes
index 18e14aad..5732033d 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1 +1,7 @@
+/.github export-ignore
+/.gitignore export-ignore
+/.readthedocs.yaml export-ignore
+/phpcs.xml.dist export-ignore
+/phpstan.neon export-ignore
+/phpunit.xml export-ignore
/tests export-ignore
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
deleted file mode 100644
index 980b2f88..00000000
--- a/.github/CONTRIBUTING.md
+++ /dev/null
@@ -1,49 +0,0 @@
-# Contribution Guide
-
-- [Bug Reports](#bug-reports)
-- [Core Development Discussion](#core-development-discussion)
-- [Which Branch?](#which-branch)
-- [Coding Style](#coding-style)
-
-
-## Bug Reports
-
-To encourage active collaboration, we strongly encourages pull requests, not just bug reports. "Bug reports" may also be sent in the form of a pull request containing a failing test.
-
-However, if you file a bug report, your issue should contain a title and a clear description of the issue. You should also include as much relevant information as possible and a code sample that demonstrates the issue. The goal of a bug report is to make it easy for yourself - and others - to replicate the bug and develop a fix.
-
-Remember, bug reports are created in the hope that others with the same problem will be able to collaborate with you on solving it. Do not expect that the bug report will automatically see any activity or that others will jump to fix it. Creating a bug report serves to help yourself and others start on the path of fixing the problem.
-
-The Laravel Doctrine source code is managed on Github, and there are repositories for each of the Laravel Doctrine projects:
-
-- [Laravel Doctrine ORM](https://github.com/laravel-doctrine/orm)
-- [Laravel Doctrine ACL](https://github.com/laravel-doctrine/acl)
-- [Laravel Doctrine Extensions](https://github.com/laravel-doctrine/extensions)
-- [Laravel Doctrine Migrations](https://github.com/laravel-doctrine/migrations)
-- [Laravel Doctrine Documentation](https://github.com/laravel-doctrine/docs)
-- [Laravel Doctrine Website](https://github.com/laravel-doctrine/laraveldoctrine.org)
-
-
-## Core Development Discussion
-
-Discussion regarding bugs, new features, and implementation of existing features takes place in the channel linked to the package of the [Laravel Doctrine Slack](http://slack.laraveldoctrine.org) Slack team.
-
-
-## Which Branch?
-
-**All** bug fixes should be sent to the latest stable branch. Bug fixes should **never** be sent to the `master` branch unless they fix features that exist only in the upcoming release.
-
-**Minor** features that are **fully backwards compatible** with the current Laravel Doctrine release may be sent to the latest stable branch.
-
-**Major** new features should always be sent to the `master` branch, which contains the upcoming Laravel Doctrine release.
-
-If you are unsure if your feature qualifies as a major or minor, please ask help in the `#general` channel of the [Laravel Doctrine Slack](http://slack.laraveldoctrine.org) Slack team.
-
-It's always a good idea to back your Pull Request with tests, proving your implementation works and gives an idea of what your code does. Always run the tests locally to see if you didn't break any existing code.
-
-
-## Coding Style
-
-Laravel Doctrine follows the [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) coding standard and the [PSR-4](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md) autoloading standard.
-
-A config file for [PHP-CS-Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) is included. Every PR will be analyzed for PSR-2 and PSR-4 by [StyleCI](https://styleci.io/).
\ No newline at end of file
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
deleted file mode 100644
index d4baf1fe..00000000
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-# These are supported funding model platforms
-
-github: patrickbrouwers
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index cd0e8ff3..b56808fe 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -1,9 +1,12 @@
-Please prefix your issue with one of the following: [BUG] [PROPOSAL] [QUESTION].
+> If you have a question, and not a bug or proposal, post in the discussions.
+> https://github.com/laravel-doctrine/orm/discussions
-### Package version, Laravel version
-### Expected behaviour
+# laravel-doctrine/orm version & Laravel version
-### Actual behaviour
+# Expected behaviour
+
+# Actual behaviour
+
+# Steps to reproduce
-### Steps to reproduce the behaviour
\ No newline at end of file
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index 45629c36..00000000
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,6 +0,0 @@
-Please prefix your pull request with one of the following: [FIX] [FEATURE].
-
-### Changes proposed in this pull request:
--
--
--
\ No newline at end of file
diff --git a/README.md b/README.md
index df55d677..6fc59e3c 100644
--- a/README.md
+++ b/README.md
@@ -48,22 +48,8 @@ Full documentation at https://laravel-doctrine-orm-official.readthedocs.io
or in the docs directory.
-Features
---------
-
-* Easy configuration
-* Doctrine console commands
-* DoctrineExtensions supported
-* Pagination
-* Support for multiple entity managers and connections
-* Laravel naming strategy
-* Timestamps and SoftDelete listeners
-* Simple authentication
-* Pre-configured metadata, connections, and caching
-* Password reminders
-
-
License
-------
See [LICENSE](https://github.com/laravel-doctrine/orm/blob/master/LICENSE).
+
diff --git a/composer.json b/composer.json
index 87e4e957..f4e67e85 100644
--- a/composer.json
+++ b/composer.json
@@ -1,13 +1,11 @@
{
"name": "laravel-doctrine/orm",
- "description": "A Doctrine ORM bridge for Laravel 5",
+ "description": "An integration library for Laravel and Doctrine ORM",
"license": "MIT",
"keywords": [
- "doctrine",
"laravel",
- "orm",
- "data mapper",
- "database"
+ "doctrine",
+ "orm"
],
"authors": [
{
diff --git a/src/Extensions/ExtensionManager.php b/src/Extensions/ExtensionManager.php
index c9339035..1759aa33 100644
--- a/src/Extensions/ExtensionManager.php
+++ b/src/Extensions/ExtensionManager.php
@@ -68,6 +68,8 @@ protected function bootExtension(
EventManager $evm,
Configuration $configuration,
): void {
+ $extension->addSubscribers($evm, $em);
+
if (is_array($extension->getFilters())) {
foreach ($extension->getFilters() as $name => $filter) {
$configuration->addFilter($name, $filter);