├── .gitignore ├── .php_cs ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── config └── config.php ├── migrations └── create_poster_tables.php.stub ├── phpunit.xml ├── scrutinizer.yml ├── src ├── HasPoster.php ├── MiniProgramShareImg.php ├── PhantoMmagickServiceProvider.php └── Poster.php └── tests ├── BaseTest.php ├── GoodsTestModel.php ├── ShareImgTest.php └── database └── 2018_07_02_145446_create_point_test_table.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | tests/codeCoverage 4 | /.php_cs.cache 5 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/.php_cs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/config/config.php -------------------------------------------------------------------------------- /migrations/create_poster_tables.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/migrations/create_poster_tables.php.stub -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/phpunit.xml -------------------------------------------------------------------------------- /scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/scrutinizer.yml -------------------------------------------------------------------------------- /src/HasPoster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/src/HasPoster.php -------------------------------------------------------------------------------- /src/MiniProgramShareImg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/src/MiniProgramShareImg.php -------------------------------------------------------------------------------- /src/PhantoMmagickServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/src/PhantoMmagickServiceProvider.php -------------------------------------------------------------------------------- /src/Poster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/src/Poster.php -------------------------------------------------------------------------------- /tests/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/tests/BaseTest.php -------------------------------------------------------------------------------- /tests/GoodsTestModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/tests/GoodsTestModel.php -------------------------------------------------------------------------------- /tests/ShareImgTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/tests/ShareImgTest.php -------------------------------------------------------------------------------- /tests/database/2018_07_02_145446_create_point_test_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guojiangclub/laravel-miniprogram-poster/HEAD/tests/database/2018_07_02_145446_create_point_test_table.php --------------------------------------------------------------------------------