composer.json 888B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "illuminate/encryption",
  3. "description": "The Illuminate Encryption package.",
  4. "license": "MIT",
  5. "homepage": "https://laravel.com",
  6. "support": {
  7. "issues": "https://github.com/laravel/framework/issues",
  8. "source": "https://github.com/laravel/framework"
  9. },
  10. "authors": [
  11. {
  12. "name": "Taylor Otwell",
  13. "email": "taylor@laravel.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.1.3",
  18. "ext-mbstring": "*",
  19. "ext-openssl": "*",
  20. "illuminate/contracts": "5.6.*",
  21. "illuminate/support": "5.6.*"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Illuminate\\Encryption\\": ""
  26. }
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "5.6-dev"
  31. }
  32. },
  33. "config": {
  34. "sort-packages": true
  35. },
  36. "minimum-stability": "dev"
  37. }