├── Config ├── config_function.php └── database_config.php ├── LICENSE ├── README.md ├── composer.json ├── index.php ├── phptricks └── phptricksORM ├── Builder.php ├── Collection └── Collection.php ├── Command ├── Alter.php ├── Clear.php ├── CommandHelpers.php ├── Config │ └── GetConfig.php ├── Create.php ├── Drop.php ├── Make.php ├── Migrate.php ├── Model.php └── Templates │ ├── alter.template │ ├── create.template │ ├── drop.template │ └── model.template ├── DDL ├── Alter.php ├── Base.php ├── Create.php └── Vars.php ├── DML ├── Delete.php ├── Insert.php ├── Paginate.php ├── Query.php ├── Update.php └── Vars.php ├── Database.php ├── Faker └── Faker.php ├── Model.php ├── Operations ├── Cond.php ├── Operations.php ├── Other.php ├── Where.php └── parseWhere.php ├── Providers └── Provider.php ├── Relation └── RelationProvider.php └── Variables.php /Config/config_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/Config/config_function.php -------------------------------------------------------------------------------- /Config/database_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/Config/database_config.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/composer.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/index.php -------------------------------------------------------------------------------- /phptricks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricks -------------------------------------------------------------------------------- /phptricksORM/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Builder.php -------------------------------------------------------------------------------- /phptricksORM/Collection/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Collection/Collection.php -------------------------------------------------------------------------------- /phptricksORM/Command/Alter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Alter.php -------------------------------------------------------------------------------- /phptricksORM/Command/Clear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Clear.php -------------------------------------------------------------------------------- /phptricksORM/Command/CommandHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/CommandHelpers.php -------------------------------------------------------------------------------- /phptricksORM/Command/Config/GetConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Config/GetConfig.php -------------------------------------------------------------------------------- /phptricksORM/Command/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Create.php -------------------------------------------------------------------------------- /phptricksORM/Command/Drop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Drop.php -------------------------------------------------------------------------------- /phptricksORM/Command/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Make.php -------------------------------------------------------------------------------- /phptricksORM/Command/Migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Migrate.php -------------------------------------------------------------------------------- /phptricksORM/Command/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Model.php -------------------------------------------------------------------------------- /phptricksORM/Command/Templates/alter.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Templates/alter.template -------------------------------------------------------------------------------- /phptricksORM/Command/Templates/create.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Templates/create.template -------------------------------------------------------------------------------- /phptricksORM/Command/Templates/drop.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Templates/drop.template -------------------------------------------------------------------------------- /phptricksORM/Command/Templates/model.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Command/Templates/model.template -------------------------------------------------------------------------------- /phptricksORM/DDL/Alter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DDL/Alter.php -------------------------------------------------------------------------------- /phptricksORM/DDL/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DDL/Base.php -------------------------------------------------------------------------------- /phptricksORM/DDL/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DDL/Create.php -------------------------------------------------------------------------------- /phptricksORM/DDL/Vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DDL/Vars.php -------------------------------------------------------------------------------- /phptricksORM/DML/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DML/Delete.php -------------------------------------------------------------------------------- /phptricksORM/DML/Insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DML/Insert.php -------------------------------------------------------------------------------- /phptricksORM/DML/Paginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DML/Paginate.php -------------------------------------------------------------------------------- /phptricksORM/DML/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DML/Query.php -------------------------------------------------------------------------------- /phptricksORM/DML/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DML/Update.php -------------------------------------------------------------------------------- /phptricksORM/DML/Vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/DML/Vars.php -------------------------------------------------------------------------------- /phptricksORM/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Database.php -------------------------------------------------------------------------------- /phptricksORM/Faker/Faker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Faker/Faker.php -------------------------------------------------------------------------------- /phptricksORM/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Model.php -------------------------------------------------------------------------------- /phptricksORM/Operations/Cond.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Operations/Cond.php -------------------------------------------------------------------------------- /phptricksORM/Operations/Operations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Operations/Operations.php -------------------------------------------------------------------------------- /phptricksORM/Operations/Other.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Operations/Other.php -------------------------------------------------------------------------------- /phptricksORM/Operations/Where.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Operations/Where.php -------------------------------------------------------------------------------- /phptricksORM/Operations/parseWhere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Operations/parseWhere.php -------------------------------------------------------------------------------- /phptricksORM/Providers/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Providers/Provider.php -------------------------------------------------------------------------------- /phptricksORM/Relation/RelationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Relation/RelationProvider.php -------------------------------------------------------------------------------- /phptricksORM/Variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anzawi/php-database-class/HEAD/phptricksORM/Variables.php --------------------------------------------------------------------------------