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.

46 lines
1.2 KiB

3 years ago
  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.3|^8.0"
  21. },
  22. "require-dev": {
  23. "friendsofphp/php-cs-fixer": "^v2.15.8",
  24. "phpunit/phpunit": "^9.3.11",
  25. "vimeo/psalm": "^3.17.1"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Facade\\IgnitionContracts\\": "src"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Facade\\IgnitionContracts\\Tests\\": "tests"
  35. }
  36. },
  37. "scripts": {
  38. "psalm": "vendor/bin/psalm",
  39. "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
  40. "test": "vendor/bin/phpunit",
  41. "test-coverage": "vendor/bin/phpunit --coverage-html coverage"
  42. },
  43. "config": {
  44. "sort-packages": true
  45. }
  46. }