yireo / magento1-formapi
This package is abandoned and no longer maintained.
No replacement package was suggested.
Form API for Yireo extensions in Magento
Package info
github.com/yireo-magento1/Yireo_FormApi
Type:magento-module
pkg:composer/yireo/magento1-formapi
dev-master
2017-08-17 14:07 UTC
Requires
- php: >=5.4.0
Requires (Dev)
- composer/composer: *@dev
- phpunit/phpunit: *
This package is auto-updated.
Last update: 2025-09-29 01:44:00 UTC
README
Magento library offering a Form API. Currently this is only meant for Yireo extensions.
Instructions for using composer
Use composer to install this extension. First make sure to initialize composer with the right settings:
composer -n init
composer install --no-dev
Next, modify your local composer.json file:
{
"require": {
"yireo/magento1-formapi": "dev-master",
"magento-hackathon/magento-composer-installer": "*"
},
"repositories":[
{
"packagist": false
},
{
"type":"composer",
"url":"https://packages.firegento.com"
},
{
"type":"composer",
"url":"https://satis.yireo.com"
}
],
"extra":{
"magento-root-dir":"/path/to/magento",
"magento-deploystrategy":"copy"
}
}
Make sure to set the magento-root-dir properly. Test this by running:
composer update --no-dev
Done.