dev-master
9999999-dev
LGPLv3
The Requires
The Development Requires
contao composer installer, (*1)
Contao require a strict module structure.
Composer install all dependencies into the vendor
directory, using the complete repository structure.
Both often not match each other., (*2)
To solve this problem, without making a lot of shadow copies the contao-module
installer create symlinks., (*3)
Hint for users: Symlinks require a good server setup. To work with Apache2 the FollowSymLinks
option is mostly required., (*4)
Hint for developers: PHP will follow symlinks by default, but using __DIR__
or __FILE__
will return the real path.
You will get composer/vendor/me/my-module/MyClass.php
instead of system/modules/my-module/MyClass.php
., (*5)
Hint for Windows users: Symlinks on Windows require PHP 5.3+, but this is no real problem, because composer require PHP 5.3+ ;-), (*6)
Installing repository root as module my-module
:
Hint: This is the implicit fallback (system/modules/$packageName
), if no symlinks specified!, (*7)
{ "extra": { "symlinks": { "": "system/modules/my-module" } } }
Installing repository sub-path src/system/modules/my-module
as module my-module
:, (*8)
{ "extra": { "symlinks": { "src/system/modules/my-module": "system/modules/my-module" } } }
Sometimes you need to provide user files (files within the (tl_)files
directory).
There is a support to install these user files.
Normally these files can be modified by users.
To protect user changes, user files are only copied if they are not exists.
The installer will never overwrite a user file., (*9)
Hint: User files are installed into the $uploadPath
directory, not TL_ROOT
., (*10)
{ "extra": { "userfiles": { "src/system/modules/my-module/files/images": "my-module/images" } } }
Putting your runonce.php
into your modules config
directory is not a good idea in combination with composer.
After contao runs the runonce.php
it get deleted. Next time you do an update, composer complains about this modification.
To solve this, you can define your runcone.php
's, yes you are right, you can use multiple runonce.php
files.
There is no need to name them runonce.php
, feel free to use any other name., (*11)
{ "extra": { "runonce": [ "src/system/modules/my-module/runonce/init_update.php", "src/system/modules/my-module/runonce/do_db_update.php", "src/system/modules/my-module/runonce/refresh_entities.php" ] } }
Hint: The order of the runonce files is taken into account., (*12)
Hint: No, the installer will not support directories. This is just to protect unexpected behavior., (*13)
LGPLv3