├── .gitignore ├── FactoryInterface.php ├── FactoryMuffin.php ├── LICENSE ├── ModelStoreYii.php ├── README.md └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | composer.lock 4 | phpunit.xml -------------------------------------------------------------------------------- /FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saada/yii2-factory-muffin/HEAD/FactoryInterface.php -------------------------------------------------------------------------------- /FactoryMuffin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saada/yii2-factory-muffin/HEAD/FactoryMuffin.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saada/yii2-factory-muffin/HEAD/LICENSE -------------------------------------------------------------------------------- /ModelStoreYii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saada/yii2-factory-muffin/HEAD/ModelStoreYii.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saada/yii2-factory-muffin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saada/yii2-factory-muffin/HEAD/composer.json --------------------------------------------------------------------------------