You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 655B

12345678910111213141516171819202122232425
  1. {
  2. "name": "yurunsoft/composer-include-files",
  3. "type": "composer-plugin",
  4. "description": "Include files at a higher priority than autoload files.",
  5. "keywords": ["composer", "autoload"],
  6. "homepage": "https://github.com/funkjedi/composer-include-files",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Tim Robertson",
  11. "email": "funkjedi@gmail.com"
  12. }
  13. ],
  14. "require": {
  15. "composer-plugin-api": "^1.0 || ^2.0"
  16. },
  17. "autoload": {
  18. "psr-4": {
  19. "ComposerIncludeFiles\\": "src"
  20. }
  21. },
  22. "extra": {
  23. "class": "ComposerIncludeFiles\\Plugin"
  24. }
  25. }