Skip to content
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.

Latest commit

 

History

History
35 lines (24 loc) · 840 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 840 Bytes

Introduction

This is a package installer for the microphork framework. It makes sure that all packages are installed in vendor/microphork/packages.

Usage

Each package must have its own composer.json file similar to the example below. Note that the type is microphork-package and that this installer is required.

{
    "name": "microphork/package-auth",
    "description": "An authentication package for the microphork framework",
    "type": "microphork-package",
    "require": {
        "microphork/package-installer": "*"
    },
    "autoload": {
        "psr-4": {
            "Phork\\Pkg\\Auth\\": "classes"
        }
    }
}

Credits

Built by Elenor at Phork Labs.

License

Licensed under The MIT License http://www.opensource.org/licenses/mit-license.php