├── .gitignore ├── LICENSE ├── README.md ├── app ├── .htaccess ├── Common.php ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Honeypot.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Routes.php │ ├── Services.php │ ├── Toolbar.php │ ├── UserAgents.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── BaseController.php │ ├── Blog.php │ ├── Home.php │ └── User.php ├── Database │ ├── Migrations │ │ └── .gitkeep │ └── Seeds │ │ └── .gitkeep ├── Filters │ ├── .gitkeep │ ├── OauthFilter.php │ └── Options.php ├── Helpers │ └── .gitkeep ├── Language │ └── .gitkeep ├── Libraries │ ├── .gitkeep │ ├── CustomOauthStorage.php │ └── Oauth.php ├── Models │ ├── .gitkeep │ ├── BlogModel.php │ └── UserModel.php ├── ThirdParty │ └── .gitkeep ├── Views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ └── welcome_message.php └── index.html ├── composer.json ├── contributing.md ├── env ├── license.txt ├── phpunit.xml.dist ├── public ├── .htaccess ├── assets │ └── uploads │ │ ├── avatar13.jpg │ │ ├── avatar13_1.jpg │ │ ├── avatar2.jpg │ │ ├── avatar3.jpg │ │ ├── avatar4.jpg │ │ └── img1.jpg ├── favicon.ico ├── index.php └── robots.txt ├── restapi.sql ├── spark ├── tests ├── README.md ├── _support │ ├── Autoloader │ │ └── UnnamespacedClass.php │ ├── Commands │ │ ├── AbstractInfo.php │ │ └── AppInfo.php │ ├── Config │ │ ├── BadRegistrar.php │ │ ├── Registrar.php │ │ └── Routes.php │ ├── Controllers │ │ └── Popcorn.php │ ├── Database │ │ ├── Migrations │ │ │ ├── 20160428212500_Create_test_tables.php │ │ │ └── 2020-02-22-222222_example_migration.php │ │ └── Seeds │ │ │ ├── AnotherSeeder.php │ │ │ ├── CITestSeeder.php │ │ │ └── ExampleSeeder.php │ ├── DatabaseTestCase.php │ ├── Files │ │ ├── able │ │ │ ├── apple.php │ │ │ ├── fig_3.php │ │ │ └── prune_ripe.php │ │ └── baker │ │ │ └── banana.php │ ├── HTTP │ │ └── Files │ │ │ ├── CookiesHolder.txt │ │ │ └── tmp │ │ │ ├── fileA.txt │ │ │ └── fileB.txt │ ├── Images │ │ ├── EXIFsamples │ │ │ ├── down-mirrored.jpg │ │ │ ├── down.jpg │ │ │ ├── left-mirrored.jpg │ │ │ ├── left.jpg │ │ │ ├── right-mirrored.jpg │ │ │ ├── right.jpg │ │ │ ├── up-mirrored.jpg │ │ │ └── up.jpg │ │ ├── Steveston_dusk.JPG │ │ ├── ci-logo.gif │ │ ├── ci-logo.jpeg │ │ └── ci-logo.png │ ├── Language │ │ ├── SecondMockLanguage.php │ │ ├── ab-CD │ │ │ └── Allin.php │ │ ├── ab │ │ │ └── Allin.php │ │ ├── en-ZZ │ │ │ └── More.php │ │ ├── en │ │ │ ├── Allin.php │ │ │ ├── Core.php │ │ │ └── More.php │ │ └── ru │ │ │ └── Language.php │ ├── Libraries │ │ └── ConfigReader.php │ ├── Log │ │ └── Handlers │ │ │ └── TestHandler.php │ ├── MigrationTestMigrations │ │ └── Database │ │ │ └── Migrations │ │ │ ├── 2018-01-24-102300_Another_migration.py │ │ │ ├── 2018-01-24-102301_Some_migration.php │ │ │ └── 2018-01-24-102302_Another_migration.php │ ├── Models │ │ ├── EntityModel.php │ │ ├── EventModel.php │ │ ├── ExampleModel.php │ │ ├── JobModel.php │ │ ├── SecondaryModel.php │ │ ├── SimpleEntity.php │ │ ├── UserModel.php │ │ ├── ValidErrorsModel.php │ │ └── ValidModel.php │ ├── RESTful │ │ ├── Worker.php │ │ └── Worker2.php │ ├── Services.php │ ├── SessionTestCase.php │ ├── SomeEntity.php │ ├── Validation │ │ ├── TestRules.php │ │ └── uploads │ │ │ └── phpUxc0ty │ ├── View │ │ ├── SampleClass.php │ │ └── Views │ │ │ ├── simple.php │ │ │ └── simpler.php │ └── coverage.txt ├── database │ └── ExampleDatabaseTest.php ├── session │ └── ExampleSessionTest.php └── unit │ └── HealthTest.php └── writable ├── .htaccess ├── cache └── index.html ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Common.php -------------------------------------------------------------------------------- /app/Config/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/App.php -------------------------------------------------------------------------------- /app/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Autoload.php -------------------------------------------------------------------------------- /app/Config/Boot/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Boot/development.php -------------------------------------------------------------------------------- /app/Config/Boot/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Boot/production.php -------------------------------------------------------------------------------- /app/Config/Boot/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Boot/testing.php -------------------------------------------------------------------------------- /app/Config/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Cache.php -------------------------------------------------------------------------------- /app/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Constants.php -------------------------------------------------------------------------------- /app/Config/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /app/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Database.php -------------------------------------------------------------------------------- /app/Config/DocTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/DocTypes.php -------------------------------------------------------------------------------- /app/Config/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Email.php -------------------------------------------------------------------------------- /app/Config/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Encryption.php -------------------------------------------------------------------------------- /app/Config/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Events.php -------------------------------------------------------------------------------- /app/Config/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Exceptions.php -------------------------------------------------------------------------------- /app/Config/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Filters.php -------------------------------------------------------------------------------- /app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /app/Config/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Format.php -------------------------------------------------------------------------------- /app/Config/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Honeypot.php -------------------------------------------------------------------------------- /app/Config/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Images.php -------------------------------------------------------------------------------- /app/Config/Kint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Kint.php -------------------------------------------------------------------------------- /app/Config/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Logger.php -------------------------------------------------------------------------------- /app/Config/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Migrations.php -------------------------------------------------------------------------------- /app/Config/Mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Mimes.php -------------------------------------------------------------------------------- /app/Config/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Modules.php -------------------------------------------------------------------------------- /app/Config/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Pager.php -------------------------------------------------------------------------------- /app/Config/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Paths.php -------------------------------------------------------------------------------- /app/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Routes.php -------------------------------------------------------------------------------- /app/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Services.php -------------------------------------------------------------------------------- /app/Config/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Toolbar.php -------------------------------------------------------------------------------- /app/Config/UserAgents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/UserAgents.php -------------------------------------------------------------------------------- /app/Config/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/Validation.php -------------------------------------------------------------------------------- /app/Config/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Config/View.php -------------------------------------------------------------------------------- /app/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Controllers/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Controllers/Blog.php -------------------------------------------------------------------------------- /app/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Controllers/Home.php -------------------------------------------------------------------------------- /app/Controllers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Controllers/User.php -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filters/OauthFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Filters/OauthFilter.php -------------------------------------------------------------------------------- /app/Filters/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Filters/Options.php -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Libraries/CustomOauthStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Libraries/CustomOauthStorage.php -------------------------------------------------------------------------------- /app/Libraries/Oauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Libraries/Oauth.php -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/BlogModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Models/BlogModel.php -------------------------------------------------------------------------------- /app/Models/UserModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Models/UserModel.php -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/cli/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/cli/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/cli/production.php -------------------------------------------------------------------------------- /app/Views/errors/html/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/html/debug.css -------------------------------------------------------------------------------- /app/Views/errors/html/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/html/debug.js -------------------------------------------------------------------------------- /app/Views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/html/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/html/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/html/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/errors/html/production.php -------------------------------------------------------------------------------- /app/Views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/Views/welcome_message.php -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/app/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/contributing.md -------------------------------------------------------------------------------- /env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/env -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/license.txt -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/uploads/avatar13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/assets/uploads/avatar13.jpg -------------------------------------------------------------------------------- /public/assets/uploads/avatar13_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/assets/uploads/avatar13_1.jpg -------------------------------------------------------------------------------- /public/assets/uploads/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/assets/uploads/avatar2.jpg -------------------------------------------------------------------------------- /public/assets/uploads/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/assets/uploads/avatar3.jpg -------------------------------------------------------------------------------- /public/assets/uploads/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/assets/uploads/avatar4.jpg -------------------------------------------------------------------------------- /public/assets/uploads/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/assets/uploads/img1.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /restapi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/restapi.sql -------------------------------------------------------------------------------- /spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/spark -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/_support/Autoloader/UnnamespacedClass.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_support/View/Views/simpler.php: -------------------------------------------------------------------------------- 1 |

{testString}

-------------------------------------------------------------------------------- /tests/_support/coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/tests/_support/coverage.txt -------------------------------------------------------------------------------- /tests/database/ExampleDatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/tests/database/ExampleDatabaseTest.php -------------------------------------------------------------------------------- /tests/session/ExampleSessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/tests/session/ExampleSessionTest.php -------------------------------------------------------------------------------- /tests/unit/HealthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/tests/unit/HealthTest.php -------------------------------------------------------------------------------- /writable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/writable/.htaccess -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/writable/cache/index.html -------------------------------------------------------------------------------- /writable/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/writable/logs/index.html -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/writable/session/index.html -------------------------------------------------------------------------------- /writable/uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlancer/CodeIgniter-RESTapi-Server-for-VueJS-Blog-project/HEAD/writable/uploads/index.html --------------------------------------------------------------------------------