Add boilerplate.
This commit is contained in:
Joshua Ramon Enslin 2023-07-17 22:15:32 +02:00
commit a246677d6a
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
6 changed files with 1667 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/vendor

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Quality Assessment Tools at museum-digital
The classes of this library provide tools to access the quality of museum object records and provide tips for improving it.

5
composer.json Normal file
View File

@ -0,0 +1,5 @@
{
"require-dev": {
"phpunit/phpunit": "^10.2"
}
}

1626
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

16
src/MDPuqi.php Normal file
View File

@ -0,0 +1,16 @@
<?PHP
/**
* Publication Quality Index: This class provides the base for computing a
* numeric score for describing the quality of an object record for publication.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Publication Quality Index: This class provides the base for computing a
* numeric score for describing the quality of an object record for publication.
*/
final class MDPuqi {
}

16
tests/MDPuqiTest.php Normal file
View File

@ -0,0 +1,16 @@
<?PHP
/**
* Tests for PUQI.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
use PHPUnit\Framework\TestCase;
/**
* Tests for PUQI.
*/
final class MDPuqiTest extends TestCase {
}