composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "spatie/url",
  3. "description": "Parse, build and manipulate URL's",
  4. "license": "MIT",
  5. "keywords": [
  6. "spatie",
  7. "url"
  8. ],
  9. "authors": [
  10. {
  11. "name": "Sebastian De Deyne",
  12. "email": "sebastian@spatie.be",
  13. "homepage": "https://spatie.be",
  14. "role": "Developer"
  15. }
  16. ],
  17. "homepage": "https://github.com/spatie/url",
  18. "require": {
  19. "php": "^8.0",
  20. "psr/http-message": "^1.0 || ^2.0",
  21. "spatie/macroable": "^1.0 || ^2.0"
  22. },
  23. "require-dev": {
  24. "pestphp/pest": "^1.21"
  25. },
  26. "minimum-stability": "dev",
  27. "prefer-stable": true,
  28. "autoload": {
  29. "psr-4": {
  30. "Spatie\\Url\\": "src"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "Spatie\\Url\\Test\\": "tests"
  36. }
  37. },
  38. "config": {
  39. "allow-plugins": {
  40. "pestphp/pest-plugin": true
  41. },
  42. "sort-packages": true
  43. },
  44. "scripts": {
  45. "test": "vendor/bin/pest",
  46. "test-coverage": "vendor/bin/pest --coverage-html coverage"
  47. }
  48. }