Download the PHP package jelix/composer-module-setup without Composer
On this page you can find all versions of the php package jelix/composer-module-setup. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jelix/composer-module-setup
More information about jelix/composer-module-setup
Files in jelix/composer-module-setup
Package composer-module-setup
Short Description Plugin for Composer to declare Jelix modules automatically into a Jelix application
License MIT
Homepage http://jelix.org
Informations about the package composer-module-setup
composer-module-setup
A plugin for Composer to declare automatically jelix modules into a jelix application
For Jelix 1.6.9 and higher.
Authors who provide their modules via Composer, should declare directories containing modules or plugins. It will avoid the developer to declare them into his application.init.php (Jelix 1.7) or in the configuration (Jelix 1.6.9+).
installation
In the composer.json of your application, declare the plugin and authorize the plugin to be executed by Composer.
Declaring modules and plugins into a package
Author who provide their modules via Composer, should declare directories containing modules or plugins. It will avoid the developer to declare them into his application.init.php.
To declare them, he should add information into the extra/jelix object in composer.json:
In this object, he can add three type of information:
modules-dir
, an array containing directories where modules can be found. These paths will be added to the jelix configuration parametermodulesPath
.plugins-dir
, an array containing directories where plugins can be found. These paths will be added to the jelix configuration parameterpluginsPath
.modules
, an array containing modules directories. These paths will be added into themodules
section of the jelix configuration as<module>.path=<path>
.
For instances, in the repository, if modules are in a "modules/" directory, the author should add these information into his composer.json:
Declaring modules and plugins at the application level
Application developers could declare also their modules and plugins in the same way, in the composer.json of the application:
Enable modules on entrypoints automatically (jelix 1.6 only)
In module packages, you can indicate on which entrypoint the module should be enabled.
app/identifiant1
must be the application id that is indicated into the project.xml
file ( id
attribute of the <info>
element).
In the composer.json of the application, you can also indicate the same informations
for each module, when a module does not provide an "autoconfig-access-16"
configuration
If the package has already an "autoconfig-access-16"
configuration, this
modules-autoconfig-access-16
configuration has priority over it.
Indicating the path to the app or the configuration directory
At the application level, the composer.json may content the path
to the application directory (the directory containing the project.xml etc), and
the path to the var/config
directory.
It is useful when the directory containing the composer.json file is not the application directory and/or if the var/config is not in the application directory
So you must set these paths into app-dir
and var-config-dir
. Path should be
relative to the composer.json directory, or can be absolute.
In Jelix 1.7 and higher
In order to use modules declared into a composer.json file, you should include
the jelix_app_path.php
file into your application.init.php
:
This jelix_app_path.php
file is generated automatically by the composer-module-setup plugin.
Remember: in Jelix 1.7 and higher, declaring modules and plugins in the modulesPath/pluginsPath parameter in the configuration file is not supported anymore.
In Jelix 1.6.x equal or higher than 1.6.9
The composer plugin declares automatically modules and plugins directory into
the localconfig.ini.php file or into the mainconfig.ini.php file,
in modulesPath
and pluginsPath
properties, and also in the modules
section.
You can also indicate if you want that the plugin modify localconfig.ini.php
or mainconfig.ini.php. By default it is localconfig.ini.php. Indicate the
configuration filename into config-file-16
:
debugging the plugin
Set an environnement variable JELIX_DEBUG_COMPOSER
to true
or create an
empty file named JELIX_DEBUG_COMPOSER
into the vendor directory.
After launching Composer, you will have a file jelix_debug.log
into
the vendor directory.