valueadding / toolbox
its a toolbox what more do you need to know?
1.0.0
2022-05-12 17:55 UTC
Requires
- php: >=8.0
This package is not auto-updated.
Last update: 2025-07-05 06:36:45 UTC
README
#how to make a package in php Wonder how to make a package?
- create a public repository on Github
- create a composer.json in the root of your project
- use
composer init
and walk through the steps - write a simple and useful readme like above
- write a package:
- best practise: create a src directory in your project root
- open up the composer.json and add:
"autoload": {
"psr-4": {
"Toolbox\\": "src/Toolbox/"
}
- register at packagist