├── assets ├── settings │ ├── index.asset.php │ ├── index.css │ └── index.js ├── sidebar │ ├── block.json │ ├── index.asset.php │ ├── index.css │ └── index.js └── widget │ ├── index.asset.php │ ├── index.css │ └── index.js ├── blueprint.json ├── classes ├── class-config.php ├── class-demo.php ├── class-generator.php ├── class-meta.php ├── class-migrations.php ├── class-premium.php ├── class-settings.php ├── class-snippets.php ├── class-templates.php ├── class-tools.php └── class-widget.php ├── demo └── templates.json ├── fonts ├── alice.ttf ├── lobster.ttf ├── merriweather.ttf ├── montserrat.ttf ├── open-sans-bold.ttf ├── open-sans-light.ttf ├── open-sans.ttf ├── roboto-slab.ttf ├── rubik-bold.ttf └── ubuntu.ttf ├── functions.php ├── license.txt ├── premium-sample.php ├── readme.txt ├── sharing-image.php ├── snippets ├── class-aioseo.php ├── class-rankmath.php ├── class-seopress.php ├── class-slimseo.php ├── class-squirrly.php ├── class-theseoframework.php └── class-yoastseo.php ├── templates ├── config.php ├── premium.php ├── settings.php ├── tools.php └── widget.php └── vendor ├── antonlukin └── poster-editor │ ├── LICENSE │ ├── README.md │ ├── assets │ ├── fonts │ │ ├── liquidcrystal-bolditalic.otf │ │ ├── merriweather.ttf │ │ ├── notosans-tc-regular.otf │ │ └── opensans.ttf │ └── images │ │ ├── belgrade.webp │ │ ├── bridge.jpg │ │ ├── icon.png │ │ └── logo.png │ ├── composer.json │ ├── composer.lock │ ├── examples │ ├── alpha.php │ ├── append.php │ ├── boundary.php │ ├── canvas.php │ ├── center.php │ ├── chinese.php │ ├── insert.php │ ├── justify.php │ ├── make.php │ ├── nospace.php │ ├── opacity.php │ ├── resize.php │ ├── resource.php │ ├── scaling.php │ ├── shapes.php │ └── webp.php │ ├── phpcs.xml │ ├── phpunit.xml │ ├── src │ └── PosterEditor.php │ └── tests │ ├── AlphaImageTest.php │ ├── AppendImageTest.php │ ├── BoundaryImageTest.php │ ├── CanvasTest.php │ ├── CenterTextTest.php │ ├── ChineseSpacesTest.php │ ├── CoreFunctionTest.php │ ├── EmptyTitleTest.php │ ├── InsertImageTest.php │ ├── JustifyTextTest.php │ ├── MakeTest.php │ ├── NoSpaceTextTest.php │ ├── OpacityTest.php │ ├── ResizeImageTest.php │ ├── ResourceGDTest.php │ ├── ShapesTest.php │ ├── WebPSupportTest.php │ ├── bootstrap.php │ ├── output │ └── .gitkeep │ └── references │ ├── alpha.png │ ├── append.jpg │ ├── boundary.jpg │ ├── canvas.png │ ├── center.jpg │ ├── chinese.png │ ├── empty.png │ ├── insert.png │ ├── justify.png │ ├── make.png │ ├── nospace.png │ ├── opacity.png │ ├── resize.jpg │ ├── resource.jpg │ ├── shapes.png │ └── webp.webp ├── autoload.php └── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php /assets/settings/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/settings/index.asset.php -------------------------------------------------------------------------------- /assets/settings/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/settings/index.css -------------------------------------------------------------------------------- /assets/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/settings/index.js -------------------------------------------------------------------------------- /assets/sidebar/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/sidebar/block.json -------------------------------------------------------------------------------- /assets/sidebar/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/sidebar/index.asset.php -------------------------------------------------------------------------------- /assets/sidebar/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/sidebar/index.css -------------------------------------------------------------------------------- /assets/sidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/sidebar/index.js -------------------------------------------------------------------------------- /assets/widget/index.asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/widget/index.asset.php -------------------------------------------------------------------------------- /assets/widget/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/widget/index.css -------------------------------------------------------------------------------- /assets/widget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/assets/widget/index.js -------------------------------------------------------------------------------- /blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/blueprint.json -------------------------------------------------------------------------------- /classes/class-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-config.php -------------------------------------------------------------------------------- /classes/class-demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-demo.php -------------------------------------------------------------------------------- /classes/class-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-generator.php -------------------------------------------------------------------------------- /classes/class-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-meta.php -------------------------------------------------------------------------------- /classes/class-migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-migrations.php -------------------------------------------------------------------------------- /classes/class-premium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-premium.php -------------------------------------------------------------------------------- /classes/class-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-settings.php -------------------------------------------------------------------------------- /classes/class-snippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-snippets.php -------------------------------------------------------------------------------- /classes/class-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-templates.php -------------------------------------------------------------------------------- /classes/class-tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-tools.php -------------------------------------------------------------------------------- /classes/class-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/classes/class-widget.php -------------------------------------------------------------------------------- /demo/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/demo/templates.json -------------------------------------------------------------------------------- /fonts/alice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/alice.ttf -------------------------------------------------------------------------------- /fonts/lobster.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/lobster.ttf -------------------------------------------------------------------------------- /fonts/merriweather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/merriweather.ttf -------------------------------------------------------------------------------- /fonts/montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/montserrat.ttf -------------------------------------------------------------------------------- /fonts/open-sans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/open-sans-bold.ttf -------------------------------------------------------------------------------- /fonts/open-sans-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/open-sans-light.ttf -------------------------------------------------------------------------------- /fonts/open-sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/open-sans.ttf -------------------------------------------------------------------------------- /fonts/roboto-slab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/roboto-slab.ttf -------------------------------------------------------------------------------- /fonts/rubik-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/rubik-bold.ttf -------------------------------------------------------------------------------- /fonts/ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/fonts/ubuntu.ttf -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/functions.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/license.txt -------------------------------------------------------------------------------- /premium-sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/premium-sample.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/readme.txt -------------------------------------------------------------------------------- /sharing-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/sharing-image.php -------------------------------------------------------------------------------- /snippets/class-aioseo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/snippets/class-aioseo.php -------------------------------------------------------------------------------- /snippets/class-rankmath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/snippets/class-rankmath.php -------------------------------------------------------------------------------- /snippets/class-seopress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/snippets/class-seopress.php -------------------------------------------------------------------------------- /snippets/class-slimseo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/snippets/class-slimseo.php -------------------------------------------------------------------------------- /snippets/class-squirrly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/snippets/class-squirrly.php -------------------------------------------------------------------------------- /snippets/class-theseoframework.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/snippets/class-theseoframework.php -------------------------------------------------------------------------------- /snippets/class-yoastseo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/snippets/class-yoastseo.php -------------------------------------------------------------------------------- /templates/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/templates/config.php -------------------------------------------------------------------------------- /templates/premium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/templates/premium.php -------------------------------------------------------------------------------- /templates/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/templates/settings.php -------------------------------------------------------------------------------- /templates/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/templates/tools.php -------------------------------------------------------------------------------- /templates/widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/templates/widget.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/LICENSE -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/README.md -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/fonts/liquidcrystal-bolditalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/fonts/liquidcrystal-bolditalic.otf -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/fonts/merriweather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/fonts/merriweather.ttf -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/fonts/notosans-tc-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/fonts/notosans-tc-regular.otf -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/fonts/opensans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/fonts/opensans.ttf -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/images/belgrade.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/images/belgrade.webp -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/images/bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/images/bridge.jpg -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/images/icon.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/assets/images/logo.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/composer.json -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/composer.lock -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/alpha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/alpha.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/append.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/boundary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/boundary.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/canvas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/canvas.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/center.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/center.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/chinese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/chinese.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/insert.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/justify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/justify.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/make.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/nospace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/nospace.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/opacity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/opacity.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/resize.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/resource.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/scaling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/scaling.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/shapes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/shapes.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/examples/webp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/examples/webp.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/phpcs.xml -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/phpunit.xml -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/src/PosterEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/src/PosterEditor.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/AlphaImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/AlphaImageTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/AppendImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/AppendImageTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/BoundaryImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/BoundaryImageTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/CanvasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/CanvasTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/CenterTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/CenterTextTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/ChineseSpacesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/ChineseSpacesTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/CoreFunctionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/CoreFunctionTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/EmptyTitleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/EmptyTitleTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/InsertImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/InsertImageTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/JustifyTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/JustifyTextTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/MakeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/MakeTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/NoSpaceTextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/NoSpaceTextTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/OpacityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/OpacityTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/ResizeImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/ResizeImageTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/ResourceGDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/ResourceGDTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/ShapesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/ShapesTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/WebPSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/WebPSupportTest.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/alpha.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/append.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/append.jpg -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/boundary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/boundary.jpg -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/canvas.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/center.jpg -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/chinese.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/empty.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/insert.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/justify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/justify.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/make.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/make.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/nospace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/nospace.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/opacity.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/resize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/resize.jpg -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/resource.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/resource.jpg -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/shapes.png -------------------------------------------------------------------------------- /vendor/antonlukin/poster-editor/tests/references/webp.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/antonlukin/poster-editor/tests/references/webp.webp -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonlukin/sharing-image/HEAD/vendor/composer/platform_check.php --------------------------------------------------------------------------------