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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "spatie/macroable",
  3. "description": "A trait to dynamically add methods to a class",
  4. "keywords": [
  5. "spatie",
  6. "macroable"
  7. ],
  8. "homepage": "https://github.com/spatie/macroable",
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "Freek Van der Herten",
  13. "email": "freek@spatie.be",
  14. "homepage": "https://spatie.be",
  15. "role": "Developer"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.0"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^6.3"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Spatie\\Macroable\\": "src"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Spatie\\Macroable\\Test\\": "tests"
  32. }
  33. },
  34. "scripts": {
  35. "test": "vendor/bin/phpunit"
  36. },
  37. "config": {
  38. "sort-packages": true
  39. }
  40. }