composer.json 876 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "depo/unitester",
  3. "description": "PHP UniTester is a unit testing library for PHP that provides a straightforward interface for writing and executing tests. It focuses on a minimalist approach, allowing developers to create assertions and organize tests at the lowest level of PHP, without reliance on complex external libraries.",
  4. "type": "library",
  5. "autoload": {
  6. "psr-4": {
  7. "Depo\\UniTester\\": "src",
  8. "Test\\Depo\\UniTester\\": "tests"
  9. },
  10. "files": [
  11. "src/assert.php"
  12. ]
  13. },
  14. "require": {
  15. "php": ">=7.4",
  16. "ext-mbstring": "*",
  17. "psr/container": "^2.0"
  18. },
  19. "license": "MIT",
  20. "authors": [
  21. {
  22. "name": "F. Michel",
  23. "homepage": "https://www.depohub.org"
  24. }
  25. ],
  26. "bin": [
  27. "bin/unitester"
  28. ]
  29. }