Download the PHP package easybib/zf1module-installer without Composer
On this page you can find all versions of the php package easybib/zf1module-installer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download easybib/zf1module-installer
More information about easybib/zf1module-installer
Files in easybib/zf1module-installer
Download easybib/zf1module-installer
More information about easybib/zf1module-installer
Files in easybib/zf1module-installer
Vendor easybib
Package zf1module-installer
Short Description An installer for ZendFramework(1) modules (WIP).
License BSD-2-Clause
Package zf1module-installer
Short Description An installer for ZendFramework(1) modules (WIP).
License BSD-2-Clause
Please rate this library. Is it a good library?
Informations about the package zf1module-installer
A Composer installer for ZendFramework(1) modules
This is a WIP – so handle with care!
How does it work?
Say, you have a module called admin:
You put the following composer.json
file into this module:
{
"name":"example/admin",
"description": "Admin module!",
"type":"zf1-module",
"authors":[
{
"name":"John Doe",
"email":"[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"easybib/zf1module-installer": "*"
}
}
The other important bit is easybib/zf1module-installer
.
In your application, add your own module as a dependency:
{
"name":"example/main",
"description": "My application",
"authors":[
{
"name":"John Doe",
"email":"[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"example/admin": "*"
}
}
When you run php composer.phar install
, the admin
module should end up in your modules folder.
All versions of zf1module-installer with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
composer-plugin-api Version 1.0.0
composer-plugin-api Version 1.0.0
The package easybib/zf1module-installer contains the following files
Loading the files please wait ....