Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This is a Laravel package called "Media Manager" (
cleaniquecoders/media-manager) that provides media management capabilities built on top of Spatie Media Library. The package is designed to manage media through a user interface.
# Run tests composer test # Run tests with coverage composer test-coverage # Run a single test file ./vendor/bin/pest tests/ExampleTest.php # Run a specific test by name ./vendor/bin/pest --filter "test name" # Static analysis composer analyse # Code formatting composer format
This is a Laravel package built using
spatie/laravel-package-tools. The package structure follows standard Laravel package conventions:
src/MediaManagerServiceProvider.php - Configures the package (config, views, migrations, commands)src/Facades/MediaManager.php - Provides static access to the MediaManager classsrc/MediaManager.php - Main package functionality (currently a stub)src/Commands/MediaManagerCommand.php - CLI command accessible via php artisan media-managerconfig/media-manager.php - Package configurationresources/views/ - Blade templatesTests use Pest PHP with Orchestra Testbench for Laravel package testing. The test configuration:
tests/TestCase.php extends Orchestra's TestCasetests/Pest.php binds the base TestCasetests/ArchTest.php ensures no debugging functions are usedPHPStan is configured at level 5 with:
src/, config/, and database/ directories