aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/maennchen/zipstream-php/src/Version.php
blob: c014f8a104b6a477aab4b111c7e753102af902e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

declare(strict_types=1);

namespace ZipStream;

enum Version: int
{
    case STORE = 0x000A; // 1.00
    case DEFLATE = 0x0014; // 2.00
    case ZIP64 = 0x002D; // 4.50
}