composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "winzou/state-machine",
  3. "description": "A very lightweight yet powerful PHP state machine",
  4. "keywords": ["statemachine", "state", "event", "callback"],
  5. "homepage": "https://github.com/winzou/StateMachine",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Alexandre Bacco",
  11. "email": "alexandre.bacco@gmail.com",
  12. "homepage": "http://alex.bacco.fr"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.3.0",
  17. "symfony/event-dispatcher": "~2.1|~3.0|~4.0",
  18. "symfony/property-access": "~2.1|~3.0|~4.0",
  19. "symfony/expression-language": "~2.4|~3.0|~4.0"
  20. },
  21. "suggest": {
  22. "twig/twig": "Access the state machine in your twig templates (~1.0)"
  23. },
  24. "require-dev": {
  25. "phpspec/phpspec": "~2.0",
  26. "twig/twig": "~1.0"
  27. },
  28. "autoload": {
  29. "psr-0": { "SM": "src/" }
  30. },
  31. "autoload-dev": {
  32. "psr-4": { "spec\\": "spec/" }
  33. },
  34. "config": {
  35. "bin-dir": "bin"
  36. }
  37. }