composer.json 897 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "itsgoingd/clockwork",
  3. "description": "Server-side component of Clockwork, a Chrome extension for PHP development",
  4. "keywords": ["debugging", "profiling", "logging", "laravel"],
  5. "homepage": "http://github.com/itsgoingd/clockwork",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "itsgoingd",
  10. "email": "itsgoingd@luzer.sk",
  11. "homepage": "http://twitter.com/itsgoingd"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.9",
  16. "psr/log": "1.*"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Clockwork\\": "Clockwork/"
  21. }
  22. },
  23. "extra": {
  24. "laravel": {
  25. "providers": [
  26. "Clockwork\\Support\\Laravel\\ClockworkServiceProvider"
  27. ],
  28. "aliases": {
  29. "Clockwork": "Clockwork\\Support\\Laravel\\Facade"
  30. }
  31. }
  32. }
  33. }