composer.json 898 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name":"codeception/lib-asserts",
  3. "description":"Assertion methods used by Codeception core and Asserts module",
  4. "keywords":["codeception"],
  5. "homepage":"https://codeception.com/",
  6. "type":"library",
  7. "license":"MIT",
  8. "authors":[
  9. {
  10. "name":"Michael Bodnarchuk",
  11. "email":"davert@mail.ua",
  12. "homepage":"http://codegyre.com"
  13. },
  14. {
  15. "name":"Gintautas Miselis"
  16. },
  17. {
  18. "name":"Gustavo Nieves",
  19. "homepage": "https://medium.com/@ganieves"
  20. }
  21. ],
  22. "minimum-stability": "RC",
  23. "require": {
  24. "php": ">=5.6.0 <9.0",
  25. "ext-dom": "*",
  26. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0"
  27. },
  28. "autoload":{
  29. "classmap": ["src/"]
  30. },
  31. "config": {
  32. "classmap-authoritative": true
  33. }
  34. }