composer.json 831 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "michel/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. "Michel\\UniTester\\": "src",
  8. "Test\\Michel\\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. }
  24. ],
  25. "bin": [
  26. "bin/unitester"
  27. ]
  28. }