├── .editorconfig ├── .env.example ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── .gitkeep │ │ └── StartGame.php │ └── Kernel.php ├── Entities │ ├── Player.php │ └── Village.php ├── Enums │ ├── Choices.php │ └── Enum.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ └── ExampleController.php │ └── Middleware │ │ ├── Authenticate.php │ │ └── ExampleMiddleware.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ └── EventServiceProvider.php ├── Services │ └── TWService.php └── User.php ├── artisan ├── bootstrap └── app.php ├── composer.json ├── composer.lock ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_100000_create_password_resets_table.php └── seeds │ └── DatabaseSeeder.php ├── phpunit.xml ├── public ├── .htaccess └── index.php ├── routes └── web.php ├── storage ├── app │ └── .gitignore ├── framework │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── tests ├── ExampleTest.php └── TestCase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Console/Commands/StartGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Console/Commands/StartGame.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Entities/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Entities/Player.php -------------------------------------------------------------------------------- /app/Entities/Village.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Entities/Village.php -------------------------------------------------------------------------------- /app/Enums/Choices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Enums/Choices.php -------------------------------------------------------------------------------- /app/Enums/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Enums/Enum.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ExampleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Http/Controllers/ExampleController.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/ExampleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Http/Middleware/ExampleMiddleware.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Services/TWService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/Services/TWService.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/composer.lock -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/public/index.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/tribalwars-bot/HEAD/tests/TestCase.php --------------------------------------------------------------------------------