"No files" was inaccurate; amend to specify "no files except"
parent
56ffa407f1
commit
4e3fbeabfc
|
@ -84,7 +84,8 @@ and command-line executable commands.
|
||||||
autoload functionality.
|
autoload functionality.
|
||||||
- If a defined callback relies on functions defined outside of a class, the
|
- If a defined callback relies on functions defined outside of a class, the
|
||||||
callback itself is responsible for loading the appropriate files, as no files
|
callback itself is responsible for loading the appropriate files, as no files
|
||||||
are autoloaded during Composer commands.
|
beyond those required for `psr-0`, `psr-4`, and `classmap` autoloading are
|
||||||
|
loaded during Composer commands.
|
||||||
|
|
||||||
Script definition example:
|
Script definition example:
|
||||||
|
|
||||||
|
@ -99,6 +100,9 @@ Script definition example:
|
||||||
"MyVendor\\MyClass::warmCache",
|
"MyVendor\\MyClass::warmCache",
|
||||||
"phpunit -c app/"
|
"phpunit -c app/"
|
||||||
],
|
],
|
||||||
|
"post-autoload-dump": [
|
||||||
|
"MyVendor\\MyClass::postAutoloadDump"
|
||||||
|
]
|
||||||
"post-create-project-cmd" : [
|
"post-create-project-cmd" : [
|
||||||
"php -r \"copy('config/local-example.php', 'config/local.php');\""
|
"php -r \"copy('config/local-example.php', 'config/local.php');\""
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue