Download the PHP package phpcl/laminas-tools without Composer
On this page you can find all versions of the php package phpcl/laminas-tools. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download phpcl/laminas-tools
More information about phpcl/laminas-tools
Files in phpcl/laminas-tools
Package laminas-tools
Short Description Create modules, controllers, controller-plugins, view helpers and factories for Laminas/ZF3 projects
License MIT
Homepage https://github.com/phpcl/laminas_tools
Informations about the package laminas-tools
Laminas Tools v1.0.6
Tools to facilitate rapid app development using Laminas MVC.
Installation
To get the latest version add the --dev
flag.
Otherwise, specify your preferred version in the composer.json
file:
and then run composer install
.
Followup
Have a look at the vendor/bin
folder:
If you notice there are no links for phpcl-laminas-tools
, run the following command:
Usage
From a command prompt or terminal window, change to the project root directory of your ZF 3 or Laminas MVC project.
Linux
Windows
Params
Param | Example | Description |
---|---|---|
WHAT | module : controller : factory : controller-plugin : view-helper | Describes what component you want to build |
PATH | "/path/to/project" | Full path to your project root directory |
NAME | "Test" | Name of the module you want to create, or |
"Test\Controller\ListController" | Name of the controller you want to create, or | |
"Test\Factory\ListServiceFactory" | Name of the factory you want to create | |
"Test\Controller\Plugin\NameOfPlugin" | Name of the controller plugin you want to create ("nameOf" becomes the alias) | |
"Test\View\Helper\NameOfHelper" | Name of the view helper you want to create ("nameOf" becomes the alias) |
Examples
These examples assume you are running from a command prompt / terminal window, and have changed to the root directory of your project.
Creating a Module
As an example, to create a module "Test" on a Linux server:
Here is what the tool does:
- Creates the module directory structure
- Creates a file
module/Test/src/Module.php
- Create a controller
module/Test/src/Controller/IndexController.php
- Creates a view template
/module/Test/view/test/index/index.phtml
- Creates a config file
module/Test/config/module.config.php
- Adds a route
/test[/:action]
(whereaction
is the name of any additionalxxxAction()
methods created in the controller) - Registers the controller with the framework
- Adds a route
Creating a Controller
As an example, to create a controller "Test\Controller\ListController" on a Windows server:
Here is what the tool does:
- Creates a file
C:\path\to\project\module\Test\src\Controller\ListController.php
- Creates a view template
C:\path\to\project\module\Test\view\test\list\index.phtml
- Creates a config file
C:\path\to\project\module\Test\config\module.config.php
- Adds a route
/test-list[/:action]
(whereaction
is the name of any additionalxxxAction()
methods created in the new controller) - Registers the new controller with the framework
- Adds a route
Creating a Factory
As an example, to create a factory "Test\Factory\ListServiceFactory" on Linux:
The tool will then directly output the code for a generic factory named ListServiceFactory
. If you wish to pipe the output into a file, do this:
Creating a Controller Plugin
As an example, to create a controller plugin "Test\Controller\Plugin\ReallyCoolPlugin" on Linux:
Here is what the tool does:
- Creates a file
path\to\project\module\Test\src\Controller\Plugin\ReallyCoolPlugin.php
- Adds to the module config file
\path\to\project\module\Test\config\module.config.php
- Registers the new controller plugin with the framework under the
controller_plugins => factories
key - Adds an alias
reallyCool
under thecontroller_plugins => aliases
key
- Registers the new controller plugin with the framework under the
Creating a View Helper
As an example, to create a view helper "Test\View\Helper\ReallyCoolHelper" on Linux:
Here is what the tool does:
- Creates a file
path\to\project\module\Test\src\View\Helper\ReallyCoolHelper.php
- Adds to the module config file
\path\to\project\module\Test\config\module.config.php
- Registers the new view helper with the framework under the
view_helpers => factories
key - Adds an alias
reallyCool
under theview_helpers => aliases
key
- Registers the new view helper with the framework under the
Routes
When you create a new module:
- This route is defined for you:
/module
wheremodule
is the lower case name of the new module.- Example: you add a new module
Test
. The new route will be/test
.
- Example: you add a new module
- Any action methods added to the default controller
MODULE\Controller\IndexController
can be referenced using the name of the action method minus the suffixAction
, all lowercase.- Example: you add a method
public function demoAction() {}
toIndexController
in theTest
module. The new route will be:/test/demo
. When you create a new controller:
- Example: you add a method
- This route is defined for you:
/MODULE-CTRL_SHORT
whereMODULE
is the lower case name of the new module andCTRL_SHORT
is the "short" name of the controller (class name minus the suffixController
, all lower case)- Example: you add a new controller
DemoController
to theTest
module. The new route will be:/test-demo
.
- Example: you add a new controller
- Any action methods added to the new controller can be referenced using the name of the action method minus the suffix
Action
, all lowercase.- Example: you add a method
public function whateverAction() {}
toDemoController
. The new route will be:/test-demo/whatever
.
- Example: you add a method
IMPORTANT
- If you wish to generate a factory for a specific class, use the already-existing Laminas CLI tool
vendor/bin/generate-factory-for-class
instead. - The PHP-CL Laminas Tools can be used to create a factory if the
generate-factory-for-class
command fails, or if the factory class you wish to create does not have resolvable type-hints. - If you prefer, you can also simply download the file
laminas-tools.phar
- Usage is the same: follow the examples above, but substitute
php laminas-tools.phar
in place ofvendor/bin/phpcl-laminas-tools
- Usage is the same: follow the examples above, but substitute