├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── CommandService.php ├── DataBase.php ├── EntityController.php ├── EntityServiceProvider.php ├── FileService.php ├── MySQL.php ├── PostgreSQL.php └── routes.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/composer.json -------------------------------------------------------------------------------- /src/CommandService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/CommandService.php -------------------------------------------------------------------------------- /src/DataBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/DataBase.php -------------------------------------------------------------------------------- /src/EntityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/EntityController.php -------------------------------------------------------------------------------- /src/EntityServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/EntityServiceProvider.php -------------------------------------------------------------------------------- /src/FileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/FileService.php -------------------------------------------------------------------------------- /src/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/MySQL.php -------------------------------------------------------------------------------- /src/PostgreSQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/PostgreSQL.php -------------------------------------------------------------------------------- /src/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooGee/Entity/HEAD/src/routes.php --------------------------------------------------------------------------------