| 12345678910111213141516171819202122232425262728 |
- {
- "name": "michel/unitester",
- "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.",
- "type": "library",
- "autoload": {
- "psr-4": {
- "Michel\\UniTester\\": "src",
- "Test\\Michel\\UniTester\\": "tests"
- },
- "files": [
- "src/assert.php"
- ]
- },
- "require": {
- "php": ">=7.4",
- "ext-mbstring": "*",
- "psr/container": "^2.0"
- },
- "license": "MIT",
- "authors": [
- {
- "name": "F. Michel"
- }
- ],
- "bin": [
- "bin/unitester"
- ]
- }
|