Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/berkanumutlu/laravel-test
Laravel Test
https://github.com/berkanumutlu/laravel-test
laravel laravel-app laravel-documentation laravel-example laravel-framework laravel-test laravel10 php php81
Last synced: about 2 months ago
JSON representation
Laravel Test
- Host: GitHub
- URL: https://github.com/berkanumutlu/laravel-test
- Owner: berkanumutlu
- Created: 2023-10-11T16:53:50.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-08T11:29:45.000Z (4 months ago)
- Last Synced: 2024-10-13T12:42:25.103Z (3 months ago)
- Topics: laravel, laravel-app, laravel-documentation, laravel-example, laravel-framework, laravel-test, laravel10, php, php81
- Language: PHP
- Homepage:
- Size: 1.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Test Project
It is a project where document information about Laravel is used with simple examples.
## Installation
### global
```sh
$ docker-compose up
$ docker ps
$ docker exec -it {PHP8_CONTAINER_ID} bash
``````sh
$ composer global require laravel/installer
``````sh
$ composer global about
# Changed current directory to /root/.composer
# Composer - Dependency Manager for PHP - version 2.6.5
# Composer is a dependency manager tracking local dependencies of your projects and libraries.
# See https://getcomposer.org/ for more information.
``````sh
$ export PATH="/root/.composer/vendor/bin:$PATH"
``````sh
$ laravel new laravel-test
``````sh
$ cd laravel-test
$ php artisan serve
```### local
Clone the project and execute below command.
```sh
$ composer install
$ docker-compose up -d
```