composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "spatie/menu",
  3. "description": "Html menu generator",
  4. "keywords": [
  5. "spatie",
  6. "navigation",
  7. "menu"
  8. ],
  9. "homepage": "https://github.com/spatie/menu",
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Sebastian De Deyne",
  14. "email": "sebastian@spatie.be",
  15. "homepage": "https://spatie.be",
  16. "role": "Developer"
  17. }
  18. ],
  19. "require": {
  20. "php" : "^8.0",
  21. "spatie/url": "^2.0.0"
  22. },
  23. "require-dev": {
  24. "phpunit/phpunit": "^9.0",
  25. "vimeo/psalm": "^4.0",
  26. "larapack/dd": "^1.0",
  27. "pestphp/pest": "^1.22"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Spatie\\Menu\\": "src"
  32. }
  33. },
  34. "autoload-dev": {
  35. "files": [
  36. "tests/callables.php"
  37. ],
  38. "psr-4": {
  39. "Spatie\\Menu\\Test\\": "tests"
  40. }
  41. },
  42. "scripts": {
  43. "psalm": "vendor/bin/psalm",
  44. "test": "vendor/bin/pest"
  45. },
  46. "funding": [
  47. {
  48. "type": "github",
  49. "url": "https://github.com/sponsors/spatie"
  50. },
  51. {
  52. "type": "other",
  53. "url": "https://spatie.be/open-source/support-us"
  54. }
  55. ],
  56. "config": {
  57. "allow-plugins": {
  58. "pestphp/pest-plugin": true
  59. }
  60. }
  61. }