neophp / skeleton-package
One-line description of what this package does
v0.1.0
2026-08-08 03:22 UTC
Requires
- php: >=8.5
README
One-line description of what this package does.
Structure
skeleton-package/
├── composer.json
├── README.md
└── src/
└── NeoSkeletonPackage.php
How it works
Explain what the package does and how, in a few sentences.
Installation
Published (Packagist)
composer require neophp/skeleton-package
Via package:require
php bin/neo package:require neophp/skeleton-package --project=MyProject
Local development (path repository)
Root composer.json of the NeoPHP framework:
{
"repositories": [
{ "type": "path", "url": "packages/skeleton-package" }
]
}
Target project's composer.json:
{
"require": {
"neophp/skeleton-package": "@dev"
}
}
composer update
Enabling the package
// src/MyProject/Config/app.config.php return [ // ... 'packages' => [ \Vendor\NeoPHP\SkeletonPackage\NeoSkeletonPackage::class, ], ];
Usage
Explain how to use the package here.
License
MIT