You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
381 B
15 lines
381 B
<?php |
|
|
|
namespace Ocfl; |
|
|
|
/** |
|
* Defines constants used across the OCFL library. |
|
*/ |
|
class OcflConstants |
|
{ |
|
public const OCFL_VERSION = '1.0'; |
|
public const DEFAULT_DIGEST_ALGORITHM = 'sha512'; |
|
public const OCFL_OBJECT_DECLARATION_FILENAME = 'ocfl_object_1.0'; // For OCFL 1.0 |
|
public const INVENTORY_FILENAME = 'inventory.json'; |
|
public const CONTENT_DIRECTORY = 'content'; |
|
}
|
|
|