composer.json 925 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "facade/ignition-contracts",
  3. "description": "Solution contracts for Ignition",
  4. "keywords": [
  5. "flare",
  6. "contracts",
  7. "ignition"
  8. ],
  9. "homepage": "https://github.com/facade/ignition-contracts",
  10. "license": "MIT",
  11. "authors": [
  12. {
  13. "name": "Freek Van der Herten",
  14. "email": "freek@spatie.be",
  15. "homepage": "https://flareapp.io",
  16. "role": "Developer"
  17. }
  18. ],
  19. "require": {
  20. "php": "^7.1"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Facade\\IgnitionContracts\\": "src"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "Facade\\IgnitionContracts\\Tests\\": "tests"
  30. }
  31. },
  32. "scripts": {
  33. "test": "vendor/bin/phpunit",
  34. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  35. },
  36. "config": {
  37. "sort-packages": true
  38. }
  39. }