├── LICENSE ├── README.md ├── app ├── commands │ └── .gitkeep ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── local │ │ └── app.php │ ├── mail.php │ ├── packages │ │ └── .gitkeep │ ├── queue.php │ ├── remote.php │ ├── session.php │ ├── social.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── .gitkeep │ ├── BaseController.php │ ├── HomeController.php │ └── UserController.php ├── database │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_09_15_163208_create_users_table.php │ │ ├── 2014_09_15_164006_create_tokens_table.php │ │ ├── 2014_10_03_180144_create_reset_keys_table.php │ │ └── 2014_11_11_113836_create_relation_foreignkeys.php │ ├── production.sqlite │ └── seeds │ │ ├── .gitkeep │ │ ├── remove_admin.js │ │ └── seed_admin.js ├── filters.php ├── lang │ └── en │ │ ├── pagination.php │ │ ├── reminders.php │ │ └── validation.php ├── models │ ├── ApiResponse.php │ ├── EmailTrigger.php │ ├── FacebookWrapper.php │ ├── Nonce.php │ ├── ResetKey.php │ ├── SmartLoquent.php │ ├── Token.php │ ├── TwitterWrapper.php │ └── User.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ ├── .gitignore │ │ ├── laravel-2014-06-08.log │ │ └── laravel-2014-06-22.log │ ├── meta │ │ ├── .gitignore │ │ └── services.json │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── tests │ ├── ExampleTest.php │ └── TestCase.php └── views │ ├── emails │ ├── auth │ │ └── reminder.blade.php │ └── trig_lost_password.blade.php │ └── hello.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── public ├── .htaccess ├── assets │ └── locker.png ├── favicon.ico ├── index.php ├── packages │ └── .gitkeep └── robots.txt └── server.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/README.md -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/local/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/local/app.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/social.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/controllers/HomeController.php -------------------------------------------------------------------------------- /app/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/controllers/UserController.php -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/2014_09_15_163208_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/database/migrations/2014_09_15_163208_create_users_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_09_15_164006_create_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/database/migrations/2014_09_15_164006_create_tokens_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_10_03_180144_create_reset_keys_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/database/migrations/2014_10_03_180144_create_reset_keys_table.php -------------------------------------------------------------------------------- /app/database/migrations/2014_11_11_113836_create_relation_foreignkeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/database/migrations/2014_11_11_113836_create_relation_foreignkeys.php -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/remove_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/database/seeds/remove_admin.js -------------------------------------------------------------------------------- /app/database/seeds/seed_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/database/seeds/seed_admin.js -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/models/ApiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/ApiResponse.php -------------------------------------------------------------------------------- /app/models/EmailTrigger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/EmailTrigger.php -------------------------------------------------------------------------------- /app/models/FacebookWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/FacebookWrapper.php -------------------------------------------------------------------------------- /app/models/Nonce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/Nonce.php -------------------------------------------------------------------------------- /app/models/ResetKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/ResetKey.php -------------------------------------------------------------------------------- /app/models/SmartLoquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/SmartLoquent.php -------------------------------------------------------------------------------- /app/models/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/Token.php -------------------------------------------------------------------------------- /app/models/TwitterWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/TwitterWrapper.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlosy/laravel-restful-api-starter/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 |