├── .phpunit-watcher.yml ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── infection.json.dist ├── psalm-7.4-8.0.xml ├── psalm.xml └── src ├── RequirementsChecker.php └── views ├── console └── index.php └── web ├── css.php ├── index.php ├── yii3_sign.svg ├── yii3_sign_grey.svg └── yii3_sign_red.svg /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/infection.json.dist -------------------------------------------------------------------------------- /psalm-7.4-8.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/psalm-7.4-8.0.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/RequirementsChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/src/RequirementsChecker.php -------------------------------------------------------------------------------- /src/views/console/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/src/views/console/index.php -------------------------------------------------------------------------------- /src/views/web/css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/src/views/web/css.php -------------------------------------------------------------------------------- /src/views/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/src/views/web/index.php -------------------------------------------------------------------------------- /src/views/web/yii3_sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/src/views/web/yii3_sign.svg -------------------------------------------------------------------------------- /src/views/web/yii3_sign_grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/src/views/web/yii3_sign_grey.svg -------------------------------------------------------------------------------- /src/views/web/yii3_sign_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/requirements/HEAD/src/views/web/yii3_sign_red.svg --------------------------------------------------------------------------------