├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── EasyCache.php ├── EasyCacheCollection.php ├── Http │ └── routes.php ├── Models │ ├── BaseModel.php │ ├── Comment.php │ ├── Domain.php │ └── Item.php ├── migrations │ ├── 0000_00_00_000000_create_websanova_easy_cache_comments_table.php │ ├── 0000_00_00_000000_create_websanova_easy_cache_domains_table.php │ └── 0000_00_00_000000_create_websanova_easy_cache_items_table.php └── seeds │ └── EasyCacheSeeder.php └── tests └── EasyCacheTest.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/EasyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/EasyCache.php -------------------------------------------------------------------------------- /src/EasyCacheCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/EasyCacheCollection.php -------------------------------------------------------------------------------- /src/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/Http/routes.php -------------------------------------------------------------------------------- /src/Models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/Models/BaseModel.php -------------------------------------------------------------------------------- /src/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/Models/Comment.php -------------------------------------------------------------------------------- /src/Models/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/Models/Domain.php -------------------------------------------------------------------------------- /src/Models/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/Models/Item.php -------------------------------------------------------------------------------- /src/migrations/0000_00_00_000000_create_websanova_easy_cache_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/migrations/0000_00_00_000000_create_websanova_easy_cache_comments_table.php -------------------------------------------------------------------------------- /src/migrations/0000_00_00_000000_create_websanova_easy_cache_domains_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/migrations/0000_00_00_000000_create_websanova_easy_cache_domains_table.php -------------------------------------------------------------------------------- /src/migrations/0000_00_00_000000_create_websanova_easy_cache_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/migrations/0000_00_00_000000_create_websanova_easy_cache_items_table.php -------------------------------------------------------------------------------- /src/seeds/EasyCacheSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/src/seeds/EasyCacheSeeder.php -------------------------------------------------------------------------------- /tests/EasyCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websanova/easycache/HEAD/tests/EasyCacheTest.php --------------------------------------------------------------------------------