neophp/skeleton-package

One-line description of what this package does

Maintainers

Package info

github.com/NeoPHP-Dev/neo-skeleton-package

pkg:composer/neophp/skeleton-package

Transparency log

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-08-08 03:22 UTC

This package is auto-updated.

Last update: 2026-08-08 04:04:11 UTC


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