├── .gitignore ├── LICENSE ├── README.md ├── classes └── TextImage.php ├── composer.json ├── composer.lock ├── goodbyemyfriend.php ├── index.php ├── process-image.php ├── tmp ├── .htaccess └── lmao ├── treasure.gif ├── x1.png └── x2.png /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/README.md -------------------------------------------------------------------------------- /classes/TextImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/classes/TextImage.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/composer.lock -------------------------------------------------------------------------------- /goodbyemyfriend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/goodbyemyfriend.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/index.php -------------------------------------------------------------------------------- /process-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/process-image.php -------------------------------------------------------------------------------- /tmp/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | 3 | -------------------------------------------------------------------------------- /tmp/lmao: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /treasure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/treasure.gif -------------------------------------------------------------------------------- /x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/x1.png -------------------------------------------------------------------------------- /x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmaucoin/friendship-ended/HEAD/x2.png --------------------------------------------------------------------------------