├── .phpstorm.meta.php ├── .phpunit-watcher.yml ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── infection.json.dist ├── psalm.xml ├── rector.php ├── src ├── Factory.php ├── FactoryInternalContainer.php ├── NotFoundException.php └── StrictFactory.php └── tools ├── .gitignore ├── infection └── composer.json └── psalm └── composer.json /.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/.phpstorm.meta.php -------------------------------------------------------------------------------- /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/composer.json -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/infection.json.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/rector.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/FactoryInternalContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/src/FactoryInternalContainer.php -------------------------------------------------------------------------------- /src/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/src/NotFoundException.php -------------------------------------------------------------------------------- /src/StrictFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/src/StrictFactory.php -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | /*/vendor 2 | /*/composer.lock 3 | -------------------------------------------------------------------------------- /tools/infection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/tools/infection/composer.json -------------------------------------------------------------------------------- /tools/psalm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/factory/HEAD/tools/psalm/composer.json --------------------------------------------------------------------------------