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 923B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "mexitek/phpcolors",
  3. "description": "A series of methods that let you manipulate colors. Just incase you ever need different shades of one color on the fly.",
  4. "type": "library",
  5. "keywords": [
  6. "color",
  7. "ui",
  8. "css",
  9. "frontend",
  10. "design"
  11. ],
  12. "homepage": "http://mexitek.github.com/phpColors/",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Arlo Carreon",
  17. "homepage": "http://arlocarreon.com",
  18. "role": "creator"
  19. }
  20. ],
  21. "support": {
  22. "issues": "https://github.com/mexitek/phpColors/issues",
  23. "source": "https://github.com/mexitek/phpColors"
  24. },
  25. "require": {
  26. "php": "^7.2|^8.0"
  27. },
  28. "require-dev": {
  29. "nette/tester": "^2.3",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "autoload": {
  33. "classmap": [
  34. "src"
  35. ]
  36. }
  37. }