| 1234567891011121314151617181920212223242526272829 |
- {
- "name": "depo/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": {
- "Depo\\UniTester\\": "src",
- "Test\\Depo\\UniTester\\": "tests"
- },
- "files": [
- "src/assert.php"
- ]
- },
- "require": {
- "php": ">=7.4",
- "ext-mbstring": "*",
- "psr/container": "^2.0"
- },
- "license": "MIT",
- "authors": [
- {
- "name": "F. Michel",
- "homepage": "https://www.depohub.org"
- }
- ],
- "bin": [
- "bin/unitester"
- ]
- }
|