composer.json 753 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "kendall-hopkins/formal-theory",
  3. "type": "library",
  4. "description": "FormalTheory is a library that allows for manipulation and conversion of NFAs, DFAs and Regular Expressions.",
  5. "version": "1.0.0",
  6. "keywords": [
  7. "formal",
  8. "theory",
  9. "regex",
  10. "regular",
  11. "expression",
  12. "dfa",
  13. "nfa",
  14. "fa",
  15. "deterministic",
  16. "nondeterministic",
  17. "finite",
  18. "automata",
  19. "lexer",
  20. "transform",
  21. "optimizer",
  22. "state"
  23. ],
  24. "homepage": "https://github.com/KendallHopkins/FormalTheory",
  25. "license": "MIT",
  26. "authors": [
  27. {
  28. "name": "Kendall Hopkins",
  29. "email": "softwareelves@gmail.com",
  30. "role": "Developer"
  31. }
  32. ],
  33. "require": {
  34. "php": ">=5.3.0"
  35. },
  36. "autoload": {
  37. "psr-0": {
  38. "FormalTheory": "lib/FormalTheory/"
  39. }
  40. }
  41. }