tnapf/package

A package that does something

v1.1.0 2023-07-10 01:48 UTC

This package is auto-updated.

Last update: 2024-05-12 18:13:06 UTC


README

A template repository for making composer packages

Requirements

  • PHP 8.1+

What's Included

Installation

composer create-project tnapf/package <package>

Setup GitHub Repository

  1. Run git init to initialize a new git repository
  2. Run git add . to add all files to the repository
  3. Run git commit -m "initial commit" to commit the files
  4. Run git branch -M main to rename the current branch to main
  5. Create a new repository on GitHub
  6. Run git remote add origin https://github.com/tnapf/<package>.git to add the new repository as remote
  7. Run git push -u origin main to push the files to the new repository