Initial
Add boilerplate.
This commit is contained in:
commit
a246677d6a
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/vendor
|
3
README.md
Normal file
3
README.md
Normal 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
5
composer.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^10.2"
|
||||
}
|
||||
}
|
1626
composer.lock
generated
Normal file
1626
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
16
src/MDPuqi.php
Normal file
16
src/MDPuqi.php
Normal 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
16
tests/MDPuqiTest.php
Normal 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 {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user