├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer-require-checker.json ├── composer.json ├── config ├── di.php └── params.php ├── rector.php ├── src ├── AliasReference.php └── Aliases.php └── tools ├── .gitignore ├── infection └── composer.json └── psalm └── composer.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/README.md -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/composer.json -------------------------------------------------------------------------------- /config/di.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/config/di.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/config/params.php -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/rector.php -------------------------------------------------------------------------------- /src/AliasReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/src/AliasReference.php -------------------------------------------------------------------------------- /src/Aliases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/src/Aliases.php -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | /*/vendor 2 | /*/composer.lock 3 | -------------------------------------------------------------------------------- /tools/infection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/tools/infection/composer.json -------------------------------------------------------------------------------- /tools/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/aliases/HEAD/tools/psalm/composer.json --------------------------------------------------------------------------------