goez / drafter-installer
Install drafter in your php project with ease
Installs: 10
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 3
Type:custom-installer
Requires (Dev)
- composer/composer: ^2.2
- symfony/filesystem: >=5.0
- symfony/process: >=5.0
This package is auto-updated.
Last update: 2024-11-07 09:28:35 UTC
README
Install drafter in your php project with ease.
Installation
The recommended way to install drafter-installer is composer:
composer require hmaus/drafter-installer
Add config to extra
:
Pass the tag of drafter to install
"extra": { "drafter-installer-tag": "v3.2.7" }
Add it to scripts
:
"scripts": { "install-drafter": "Goez\\Drafter\\Installer::installDrafter" }
You may also consider adding a reference to your update and install hooks:
"scripts": { "post-install-cmd": [ "@install-drafter" ], "post-update-cmd": [ "@install-drafter" ] }