laravel-test-examples
No description available.
File Explorer
Download Latest Version (.zip)- config.yml
- .gitkeep
- Kernel.php
- CityShown.php
- Handler.php
- ForgotPasswordController.php
- LoginController.php
- RegisterController.php
- ResetPasswordController.php
- CityController.php
- Controller.php
- HomeController.php
- OAuthController.php
- StreetController.php
- AfterMiddleware.php
- BeforeMiddleware.php
- ComplexMiddleware.php
- EncryptCookies.php
- RedirectIfAuthenticated.php
- TrimStrings.php
- TrustProxies.php
- VerifyCsrfToken.php
- Kernel.php
- OnCityHasBeenShown.php
- AppServiceProvider.php
- AuthServiceProvider.php
- BroadcastServiceProvider.php
- EventServiceProvider.php
- RouteServiceProvider.php
- StreetRepository.php
- StreetRepositoryInterface.php
- City.php
- Street.php
- User.php
- .gitignore
- app.php
- app.php
- auth.php
- broadcasting.php
- cache.php
- database.php
- filesystems.php
- mail.php
- queue.php
- services.php
- session.php
- view.php
- CityFactory.php
- StreetFactory.php
- UserFactory.php
- 2014_10_12_000000_create_users_table.php
- 2014_10_12_100000_create_password_resets_table.php
- 2017_07_13_040345_create_cities_table.php
- 2017_07_13_175103_create_streets_table.php
- DatabaseSeeder.php
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .htaccess
- favicon.ico
- index.php
- robots.txt
- web.config
- AuthorizedClients.vue
- Clients.vue
- PersonalAccessTokens.vue
- Example.vue
- app.js
- bootstrap.js
- _variables.scss
- app.scss
- auth.php
- pagination.php
- passwords.php
- validation.php
- email.blade.php
- reset.blade.php
- login.blade.php
- register.blade.php
- form.blade.php
- item.blade.php
- list.blade.php
- app.blade.php
- authorized-clients.blade.php
- clients.blade.php
- personal-access-tokens.blade.php
- list.blade.php
- home.blade.php
- welcome.blade.php
- api.php
- channels.php
- console.php
- web.php
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- .gitignore
- CitiesTest.php
- CityShownTest.php
- CityControllerTest.php
- OAuthControllerTest.php
- StreetControllerTest.php
- AfterMiddlewareTest.php
- BeforeMiddlewareTest.php
- ComplexMiddlewareTest.php
- RedirectIfAuthenticatedTest.php
- OnCityHasBeenShownTest.php
- AppServiceProviderTest.php
- StreetRepositoryTest.php
- CityTest.php
- StreetTest.php
- UserTest.php
- CreatesApplication.php
- ModelTestCase.php
- SimpleTestCase.php
- TestCase.php
- WithClearQueryLog.php
- WithStubUser.php
- .drone.yml
- .env.circleci.example
- .env.docker.example
- .env.example
- .env.testing.example
- .env.travis.example
- .framgia-ci.yml
- .gitattributes
- .gitignore
- .scrutinizer.yml
- .travis.install-mysql-5.7.sh
- .travis.yml
- artisan
- composer.json
- composer.lock
- docker-compose.yml
- LICENSE.md
- package-lock.json
- package.json
- phpunit.xml
- README.md
- server.php
- webpack.mix.js
- yarn.lock
# Installation Guide
1. Get the code
git clone https://github.com/framgia/laravel-test-examples
Downloads the entire project code from GitHub to your computer.
cd laravel-test-examples
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker exec -ti laravel_test_examples_workspace /bin/bash
Type this command into your terminal and run it.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
Pulled directly from this repo's README.
3. Node.js
EasyPrerequisites
yarn
Downloads and installs the libraries listed in package.json.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
Pulled directly from this repo's README.
4. PHP (Composer)
EasyPrerequisites
composer install
Installs the PHP libraries listed in composer.json.
Run it with a built-in server like php -S localhost:8000, then open http://localhost:8000 in your browser.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
