mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
7fe167c41f
This splits the testing suite into the separate modules as appropriate in order to improve the reliability of the testing suite as a whole and make it easier for developers to have an up to date testing suite from the core to build off of. Additionally the tests are now namespaced and some minor improvements to the PluginManager were made. Now the PluginManager will internally treat plugin identifiers as lower case strings, only transforming them to their normalized versions when requested by methods like getPlugins() & getAllPlugins(). The idea behind this is that it provides a much simpler way to internally handle checking, especially for plugin replacement where casing could cause issues. Replaces #576. Fixes #575.
36 lines
485 B
Plaintext
36 lines
485 B
Plaintext
# Composer ignores
|
|
/vendor
|
|
composer.phar
|
|
composer.lock
|
|
|
|
# Framework ignores
|
|
.env
|
|
.env.*.php
|
|
.env.php
|
|
selenium.php
|
|
/bootstrap/compiled.php
|
|
.phpunit.result.cache
|
|
|
|
# Hosting ignores
|
|
php_errors.log
|
|
nginx-error.log
|
|
nginx-access.log
|
|
nginx-ssl.access.log
|
|
nginx-ssl.error.log
|
|
sftp-config.json
|
|
.ftpconfig
|
|
|
|
# Editor ignores
|
|
nbproject
|
|
.idea
|
|
.vscode
|
|
_ide_helper.php
|
|
|
|
# Other ignores
|
|
.DS_Store
|
|
package-lock.json
|
|
/node_modules
|
|
|
|
# Ignore generated public directory from `winter:mirror public`
|
|
public
|