├── .gitignore ├── README.md ├── composer.json └── src └── Thanks.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # No Thanks! 2 | 3 | No Symfony, I'm using GitHub stars to "bookmark" repositories I'm interested in. I most certainly don't want to star every repository in my composer.json and their dependencies. Your reminder to install and run symfony/thanks is obtrusive, annoying and completely useless. Let's get rid of it. 4 | 5 | ## Installation 6 | 7 | ``` 8 | composer global require enumag/no-thanks 9 | ``` 10 | 11 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "enumag/no-thanks", 3 | "description": "Prevents symfony/flex from printing thanks reminder.", 4 | "type": "composer-plugin", 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "Jáchym Toušek", 9 | "email": "enumag@gmail.com" 10 | } 11 | ], 12 | "require": { 13 | "php": "^7.1.0|^8.0", 14 | "composer-plugin-api": "^1.0|^2.0" 15 | }, 16 | "replace": { 17 | "symfony/thanks": "*" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "Symfony\\Thanks\\": "src" 22 | } 23 | }, 24 | "extra": { 25 | "class": "Symfony\\Thanks\\Thanks" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Thanks.php: -------------------------------------------------------------------------------- 1 |