├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── src ├── BaseFace.php ├── Bill.php ├── Clothing.php ├── Exception │ └── FetchImageException.php ├── Foundation │ ├── Api.php │ ├── Face.php │ └── ServiceProviders │ │ ├── BillServiceProvider.php │ │ ├── ClothingServiceProvider.php │ │ ├── PoemServiceProvider.php │ │ ├── PopularServiceProvider.php │ │ ├── RelationServiceProvider.php │ │ └── ScoreServiceProvider.php ├── Poem.php ├── Popular.php ├── Relation.php └── Score.php └── tests └── BasicTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/composer.lock -------------------------------------------------------------------------------- /src/BaseFace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/BaseFace.php -------------------------------------------------------------------------------- /src/Bill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Bill.php -------------------------------------------------------------------------------- /src/Clothing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Clothing.php -------------------------------------------------------------------------------- /src/Exception/FetchImageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Exception/FetchImageException.php -------------------------------------------------------------------------------- /src/Foundation/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/Api.php -------------------------------------------------------------------------------- /src/Foundation/Face.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/Face.php -------------------------------------------------------------------------------- /src/Foundation/ServiceProviders/BillServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/ServiceProviders/BillServiceProvider.php -------------------------------------------------------------------------------- /src/Foundation/ServiceProviders/ClothingServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/ServiceProviders/ClothingServiceProvider.php -------------------------------------------------------------------------------- /src/Foundation/ServiceProviders/PoemServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/ServiceProviders/PoemServiceProvider.php -------------------------------------------------------------------------------- /src/Foundation/ServiceProviders/PopularServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/ServiceProviders/PopularServiceProvider.php -------------------------------------------------------------------------------- /src/Foundation/ServiceProviders/RelationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/ServiceProviders/RelationServiceProvider.php -------------------------------------------------------------------------------- /src/Foundation/ServiceProviders/ScoreServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Foundation/ServiceProviders/ScoreServiceProvider.php -------------------------------------------------------------------------------- /src/Poem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Poem.php -------------------------------------------------------------------------------- /src/Popular.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Popular.php -------------------------------------------------------------------------------- /src/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Relation.php -------------------------------------------------------------------------------- /src/Score.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/src/Score.php -------------------------------------------------------------------------------- /tests/BasicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hanson/face/HEAD/tests/BasicTest.php --------------------------------------------------------------------------------