├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── fab.png ├── phpunit.xml.dist ├── src └── Fab │ ├── Fab.php │ ├── Factory.php │ └── SuperFab.php └── tests └── Fab └── Tests ├── FabTest.php ├── FactoryTest.php └── SuperFabTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/composer.json -------------------------------------------------------------------------------- /fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/fab.png -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Fab/Fab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/src/Fab/Fab.php -------------------------------------------------------------------------------- /src/Fab/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/src/Fab/Factory.php -------------------------------------------------------------------------------- /src/Fab/SuperFab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/src/Fab/SuperFab.php -------------------------------------------------------------------------------- /tests/Fab/Tests/FabTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/tests/Fab/Tests/FabTest.php -------------------------------------------------------------------------------- /tests/Fab/Tests/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/tests/Fab/Tests/FactoryTest.php -------------------------------------------------------------------------------- /tests/Fab/Tests/SuperFabTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whatthejeff/fab/HEAD/tests/Fab/Tests/SuperFabTest.php --------------------------------------------------------------------------------