https://github.com/ravendb/samples-php-laravel
https://github.com/ravendb/samples-php-laravel
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ravendb/samples-php-laravel
- Owner: ravendb
- Created: 2022-11-23T10:54:33.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-03T20:24:24.000Z (6 months ago)
- Last Synced: 2025-04-09T16:15:26.338Z (3 months ago)
- Language: PHP
- Size: 431 KB
- Stars: 0
- Watchers: 5
- 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.
## Requirements
- PHP 8.2.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)---