├── .idea ├── .gitignore ├── extendeddatabase.iml ├── misc.xml ├── modules.xml ├── php.xml └── vcs.xml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── LICENSE.md ├── README.md ├── composer.json └── src └── ExtendedDatabaseServiceProvider.php /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/extendeddatabase.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/.idea/extendeddatabase.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["paypal.me/rakshitbharat"] 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/composer.json -------------------------------------------------------------------------------- /src/ExtendedDatabaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakshitbharat/extendeddatabase/HEAD/src/ExtendedDatabaseServiceProvider.php --------------------------------------------------------------------------------