composer.json 339 B

123456789101112131415
  1. {
  2. "name": "codeception/stub",
  3. "description":"Flexible Stub wrapper for PHPUnit's Mock Builder",
  4. "type": "library",
  5. "license":"MIT",
  6. "minimum-stability": "stable",
  7. "autoload": {
  8. "psr-4": {
  9. "Codeception\\": "src/"
  10. }
  11. },
  12. "require": {
  13. "phpunit/phpunit": "^8.4 | ^9.0"
  14. }
  15. }