Add boilerplate.
This commit is contained in:
2023-07-17 22:15:32 +02:00
commit a246677d6a
6 changed files with 1667 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
/vendor
+3
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
View File
@@ -0,0 +1,5 @@
{
"require-dev": {
"phpunit/phpunit": "^10.2"
}
}
Generated
+1626
View File
File diff suppressed because it is too large Load Diff
+16
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
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 {
}