php-tool-bucket / incload
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 232
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=7 <8
- symfony/console: >=4 <5
This package is auto-updated.
Last update: 2022-03-01 00:24:25 UTC
README
Looks for files that cannot be autoloaded (e.g. functions) and compiles a list of
require()
s out of them.
Installation
composer require php-tool-bucket/incload --dev
Then chdir
to the project root and run:
php vendor/php-tool-bucket/incload/incload update
Then edit composer.json
and add:
{
// ...
"autoload": {
// ...
"files": ["composer-includes.php"]
},
"autoload-dev": {
// ...
"files": ["composer-includes-dev.php"]
}
}
Then run the following, so that the two files are added to vendor/autoload.php
:
composer update
Finally, proceed creating .inc.php
files within the project's folders. These files will be
added automatically to said composer-includes.php
and composer-includes-dev.php
files as soon as the program notices them.
Options list
- --composer = getcwd() . "/composer.json"
Specifycomposer.json
path - --file = "composer-includes"
Specify the main include file name (exclusive of.php
) - --devfile = "composer-includes-dev"
Specify the main include-dev file name (exclusive of.php
) - --ext = "inc.php;fn.php;function.php;class.php;const.php;constant.php;ns.php;namespace.php"
Specify the file extensions, semicolon separated - --interval = "5"
Specify interval in seconds between each check for changes - --errdelay = "30"
Specify interval in seconds between an error and the consecutive retry