sikudamobile / testlib
Test lib for PHP
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
pkg:composer/sikudamobile/testlib
This package is auto-updated.
Last update: 2025-12-25 10:01:56 UTC
README
Test empty library for composer v2
1.Add library into project:
- composer require sikuda\testlib
2.Ensure in composer.json
"require": {
"sikuda/testlib": "^2.0"
}
version 1.0 don't work
3. Make php file in project
<-?-php
declare(strict_types = 1);
namespace Sikuda\TestlibProject;
require __DIR__ . '/../vendor/autoload.php';
use Sikuda\Testlib\TestLib;
$test = new TestLib();
$test->hello();