giosf / form-builder
A laravel form builder with components
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
pkg:composer/giosf/form-builder
Requires
- php: >=8.3
Requires (Dev)
- phpunit/phpunit: ^11.3
README
Create package:
- create git repository with the package code
- in the pckage code, include a composer.json file with informations about the package. This file also needs a autoload object that registers how the package namespace will point to the folder where the package files are in: "autoload": { "psr-4": { "Giosf\FormBuilder\": "src/" } },
- release it under some tag (e.g. v0.1)
- upload it to packagist
- register the package on your laravel's project composer.json file under "require" and "autoload" objects as below: "require": { "giosf/form-builder": "0.1" }, "autoload": { "psr-4": { "Giosf\FormBuilder\": "vendor/giosf/form-builder/src/" } },