gammamatrix/playground-directory

Playground: Provide the Directory models for the Playground Directory System.

dev-develop / 74.x-dev 2025-09-21 18:24 UTC

This package is auto-updated.

Last update: 2025-09-21 18:26:26 UTC


README

Playground CI Workflow Test Coverage PHPStan Level 10

The Playground Directory is a package for Laravel applications.

Playground: Provide the Directory models for the Playground Directory System.

Read more on using Playground: Directory at Read the Docs

Installation

NOTE: This package is required by:

Install this package, with composer, to get access to the Directory Models:

composer require gammamatrix/playground-directory

artisan:about

Playground Directory provides information in the artisan about command.

Configuration

Migrations are disabled by default. This package may sometimes be installed where another system handles the migrations.

See the contents of the published config file: config/playground-directory.php

You can publish the config file with:

php artisan vendor:publish --provider="Playground\Directory\ServiceProvider" --tag="playground-config"

Environment Variables

env() config() Default
PLAYGROUND_DIRECTORY_ABOUT playground-directory.about true
PLAYGROUND_DIRECTORY_LOAD_MIGRATIONS playground-directory.load.migrations false
  • 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.

Models

This package includes factories, models and migrations for:

Migrations

All migrations are disabled by default.

See the contents of the published config file: database/migrations

  • NOTE: There are 4 tables that will be created, they do have indexes and unique constraints defined; however, this release does not have the foreign key constraint migrations included at this time.

You can publish the migrations file with:

php artisan vendor:publish --provider="Playground\Directory\ServiceProvider" --tag="playground-migrations"

Cloc

composer cloc
➜  playground-directory git:(develop) ✗ composer cloc
      77 text files.
      72 unique files.
       6 files ignored.

github.com/AlDanial/cloc v 2.06  T=0.04 s (2005.9 files/s, 441010.1 lines/s)
-------------------------------------------------------------------------------
Language                     files          blank        comment           code
-------------------------------------------------------------------------------
JSON                            29              0              0          11866
PHP                             28            320            742           2130
XML                             10              0              7            304
YAML                             1              5              0            275
Markdown                         3             46              0            120
INI                              1              3              0             12
-------------------------------------------------------------------------------
SUM:                            72            374            749          14707
-------------------------------------------------------------------------------

PHPStan

Tests at level 10 on:

  • config/
  • database/
  • src/
  • tests/Feature/
  • tests/Unit/
composer analyse

Coding Standards

composer format

Testing

Unit tests

composer test

Unit and feature tests

composer test-dev

Run unit and feature tests in parallel:

composer test-parallel

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.