Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ravendb/samples-php-laravel
https://github.com/ravendb/samples-php-laravel
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ravendb/samples-php-laravel
- Owner: ravendb
- Created: 2022-11-23T10:54:33.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T13:14:57.000Z (over 1 year ago)
- Last Synced: 2024-07-27T15:44:47.413Z (3 months ago)
- Language: PHP
- Size: 372 KB
- Stars: 0
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RavenDB Laravel Demo Application
====================================The "_RavenDB Laravel Demo Application_" is a reference application created
to show how to develop _Laravel_ applications using [RavenDB](https://ravendb.net/) database.![_RavenDB Laravel Demo Application_](doc/todo-manager.png)
## Requirements
- PHP 8.1.0 or higher
- DS PHP extension enabled
- Docker
- usual Laravel application requirements## Installation
Before you begin, you should ensure that your local machine has PHP and [Composer](https://getcomposer.org/) installed.
```bash
composer create-project ravendb/samples-php-laravel demo-app
```Make sure that docker is started and running.
Start application containers with:
```
./vendor/bin/sail up
```## Access the application
Access the application in your browser at the given URL [http://localhost/](http://localhost/).
Note:
- On seeding command default database `Northwind` will be created.
- You can access this database and its data directly through _RavenDB Studio_ on address: [http://localhost:8080](http://localhost:8080)---