gammamatrix / playground
Playground: A base package for Laravel integration.
Installs: 1 138
Dependents: 21
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 2
Requires
- php: ^8.2
- ext-intl: *
- ezyang/htmlpurifier: ^4.16
- illuminate/auth: ^11.0
- illuminate/console: ^11.0
- illuminate/contracts: ^11.0
- illuminate/database: ^11.0
- illuminate/http: ^11.0
- illuminate/routing: ^11.0
- illuminate/support: ^11.0
- illuminate/translation: ^11.0
- illuminate/validation: ^11.0
- illuminate/view: ^11.0
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-01 00:41:02 UTC
README
This is the base package for Playground.
This package provides model handling for Laravel packages.
- Playground allows using Laravel ordered UUIDs for primary keys.
- The configuration in Playground and subpackages permits defining the user model, table and primary key type:
increments
oruuid
. - Packages are compatible and tested with and without: middleware, roles, policies, privileges, Sanctum...
Read more on using Playground at the Read the Docs for Playground.
Installation
You can install the package via composer:
composer require gammamatrix/playground
Configuration
You can publish the configuration file with:
php artisan vendor:publish --provider="GammaMatrix\Playground\ServiceProvider" --tag="playground-config"
See the contents of the published config file: config/playground.php
artisan about
Playground provides information in the artisan about
command.
Environment Variables
env() | config() |
---|---|
PLAYGROUND_LOAD_MIGRATIONS |
playground.load.migrations |
- The loading option for migrations does not take effect if the migrations have been exported to your app. The control for loading is handled in the package ServiceProvider.
Migrations
The migrations provided in this package are used for PHPunit 11 feature testing with Orchestra Testbench.
- They will not be exported in software builds.
Cloc
composer cloc
➜ playground git:(develop) ✗ composer cloc
> cloc --exclude-dir=output,vendor .
98 text files.
62 unique files.
38 files ignored.
github.com/AlDanial/cloc v 1.98 T=0.11 s (582.6 files/s, 57515.8 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code
-------------------------------------------------------------------------------
PHP 52 921 856 3591
YAML 1 5 0 275
XML 3 0 9 222
JSON 2 0 0 103
Markdown 3 42 0 82
INI 1 3 0 12
-------------------------------------------------------------------------------
SUM: 62 971 865 4285
-------------------------------------------------------------------------------
PHPStan
Tests at level 9 on:
config/
database/
src/
tests/Feature/
tests/Unit/
composer analyse
Coding Standards
composer format
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.