laminas/laminas-composer-autoloading
最新稳定版本:3.6.0
Composer 安装命令:
composer require laminas/laminas-composer-autoloading
包简介
Sets up Composer-based autoloading for your Laminas modules
README 文档
README
🇷🇺 Русским гражданам
Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
🇺🇸 To Citizens of Russia
We at Laminas come from all over the world. Many of us have friends, family and colleagues in both Russia and Ukraine. Some of us were born in Russia. Some of us currently live in Russia. Some have grandparents who fought Nazis in World War II. Nobody here supports fascism.
One team member has a Ukrainian relative who fled her home with her son. The train was delayed due to bombing on the road ahead. We have friends who are hiding in bomb shelters. We anxiously follow up on them after the air raids, which indiscriminately fire at hospitals, schools, kindergartens and houses. We're not taking this from any media. These are our actual experiences.
You trust us enough to use our software. We ask that you trust us to say the truth on this. We need your help. Go out and protest this unnecessary war. Stop the bloodshed. Say "stop the war!"
Introduction
The laminas-composer-autoloading package provides the following commands for use with laminas-cli:
composer:autoload:enable- add the named module to the project autoloading rules defined incomposer.jsoncomposer:autoload:disable- remove autoloading rules for the module fromcomposer.json
Both commands also dump the autoloading rules on completion.
Upgrading
If you were using the v2 series of this component, the package previously provided its own binary,
laminas-composer-autoloading. You will now calllaminas composer:autoload:(disable|enable)instead.
Installation
Run the following composer command:
$ composer require --dev "laminas/laminas-composer-autoloading"
Note the --dev flag; this tool is intended for use in development only.
Usage
# Enable the module "Foo" and autodetermine if PSR-0 or PSR-4 autoloading should be generated $ ./vendor/bin/laminas composer:autoload:enable Foo # Enable the module "Bar" using PSR-0 rules $ ./vendor/bin/laminas composer:autoload:enable Bar --type psr-0 # Disable the module "Baz" $ ./vendor/bin/laminas composer:autoload:disable Baz
Use laminas help <command> to get detailed help about available options and arguments.
Notes
- Modules are assumed to have a
src/directory. If they do not, the autoloading generated will be incorrect. - If unable to determine the autoloading type, the command raises an exception.
- On enabling autoloading, if the
Moduleclass file for the module is in the module root, it will be moved to the module'ssrc/directory (laminas-mvc applications only).
Examples
-
Autodetect a module's autoloading type, and generate a Composer autoloading entry for "Status" module.
$ ./vendor/bin/laminas composer:autoload:enable Status
-
Autodetect a module's autoloading type, and remove a Composer autoloading entry for "Status" module.
$ ./vendor/bin/laminas composer:autoload:disable Status
-
Specify PSR-0 for the module type, and generate a Composer autoloading entry for "Status" module.
$ ./vendor/bin/laminas composer:autoload:enable --type psr-0 Status
-
Specify PSR-4 for the module type, and generate a Composer autoloading entry for "Status" module.
$ ./vendor/bin/laminas composer:autoload:enable --type psr-4 Status
-
Specify the path to the composer binary when generating autoloading entry for "Status" module:
$ ./vendor/bin/laminas composer:autoload:enable -c composer.phar Status
-
Specify the path to modules directory, and generate a Composer autoloading entry for "Status" module.
$ ./vendor/bin/laminas composer:autoload:enable -m src Status
统计信息
- 总下载量: 853.02k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 1
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2020-01-01