composer.json 560 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "ibrand/laravel-scheduling",
  3. "type": "library",
  4. "description": "ibrand's laravel scheduling. Split scheduling to every package.",
  5. "keywords": [
  6. "ibrand",
  7. "laravel scheduling"
  8. ],
  9. "license": "MIT",
  10. "authors": [
  11. {
  12. "name": "shjchen",
  13. "email": "ibrand.sjchen@foxmail.com"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.6"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "iBrand\\Scheduling\\": "src/"
  22. }
  23. },
  24. "extra": {
  25. "laravel": {
  26. "providers": [
  27. "iBrand\\Scheduling\\ServiceProvider"
  28. ]
  29. }
  30. }
  31. }