Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cnizzardini/cakephp-sakila-plugin
CakePHP migrations and data seeders for the MySQL Sakila Sample Database.
https://github.com/cnizzardini/cakephp-sakila-plugin
Last synced: about 1 month ago
JSON representation
CakePHP migrations and data seeders for the MySQL Sakila Sample Database.
- Host: GitHub
- URL: https://github.com/cnizzardini/cakephp-sakila-plugin
- Owner: cnizzardini
- License: other
- Created: 2020-04-22T01:40:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-08T21:51:31.000Z (11 months ago)
- Last Synced: 2024-10-09T16:31:57.590Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 1010 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# CakePHP Sakila Plugin
[![Latest Version on Packagist](https://img.shields.io/packagist/v/cnizzardini/cakephp-sakila-plugin.svg?style=flat-square)](https://packagist.org/packages/cnizzardini/cakephp-sakila-plugin)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE.txt)
[![Build Status](https://travis-ci.org/cnizzardini/cakephp-sakila-plugin.svg?branch=master)](https://travis-ci.org/github/cnizzardini/cakephp-sakila-plugin)
[![Coverage Status](https://coveralls.io/repos/github/cnizzardini/cakephp-sakila-plugin/badge.svg?branch=master)](https://coveralls.io/github/cnizzardini/cakephp-sakila-plugin?branch=master)
[![CakePHP](https://img.shields.io/badge/cakephp-^5.0-red?logo=cakephp)](https://book.cakephp.org/5/en/index.html)
[![Minimum PHP Version](https://img.shields.io/badge/php-^8.1-8892BF.svg?logo=php)](https://php.net/)This Cake 4 plugin comes with a snapshot and data seeds for the
[MySQL Sakila Sample Data](https://dev.mysql.com/doc/sakila/en/). I found myself needing test data when I am creating
new plugins and wanted something with complex enough relations for realistic development. While the SQL dump provided
by MySQL is okay, it doesn't follow full Cake conventions. This plugin includes full cake conventions and additional
schema improvements.## Install
```console
composer require cnizzardini/cakephp-sakila-plugin
bin/cake plugin load Sakila
```Alternatively after composer installing you can manually load the plugin in your Application:
```php
# src/Application.php
public function bootstrap(): void
{
// other logic...
$this->addPlugin('Sakila');
}
```## Usage
Run migrate and seed with `-p Sakila`
```console
bin/cake migrations migrate -p Sakila
bin/cake migrations seed -p Sakila
```## Baking
You should now be able to bake a full application skeleton
```console
bin/cake bake all --everything
```Verify everything is working by running `bin/cake server`
## Schema
See [config/Migrations/20200422015732_Initial.php](config/Migrations/20200422015732_Initial.php) for full schema.
## Unit Tests
Unit tests ensure the schema can be built and seeders run. It uses `cakephp/migrations` and SQLite for the data store.
```console
vendor/bin/phpunit
```