Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
{
2
    "name": "openspout/openspout",
3
    "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
4
    "license": "MIT",
5
    "type": "library",
6
    "keywords": [
7
        "php",
8
        "read",
9
        "write",
10
        "csv",
11
        "xlsx",
12
        "ods",
13
        "odf",
14
        "open",
15
        "office",
16
        "excel",
17
        "spreadsheet",
18
        "scale",
19
        "memory",
20
        "stream",
21
        "ooxml"
22
    ],
23
    "authors": [
24
        {
25
            "name": "Adrien Loison",
26
            "email": "adrien@box.com"
27
        }
28
    ],
29
    "homepage": "https://github.com/openspout/openspout",
30
    "require": {
31
        "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
32
        "ext-dom": "*",
33
        "ext-fileinfo": "*",
34
        "ext-filter": "*",
35
        "ext-libxml": "*",
36
        "ext-xmlreader": "*",
37
        "ext-zip": "*"
38
    },
39
    "require-dev": {
40
        "ext-zlib": "*",
41
        "friendsofphp/php-cs-fixer": "^3.68.3",
42
        "infection/infection": "^0.29.10",
43
        "phpbench/phpbench": "^1.4.0",
44
        "phpstan/phpstan": "^2.1.2",
45
        "phpstan/phpstan-phpunit": "^2.0.4",
46
        "phpstan/phpstan-strict-rules": "^2",
47
        "phpunit/phpunit": "^11.5.4"
48
    },
49
    "suggest": {
50
        "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
51
        "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
52
    },
53
    "autoload": {
54
        "psr-4": {
55
            "OpenSpout\\": "src/"
56
        }
57
    },
58
    "autoload-dev": {
59
        "psr-4": {
60
            "OpenSpout\\Benchmarks\\": "benchmarks/"
61
        },
62
        "classmap": [
63
            "tests/"
64
        ]
65
    },
66
    "config": {
67
        "allow-plugins": {
68
            "infection/extension-installer": true
69
        }
70
    },
71
    "extra": {
72
        "branch-alias": {
73
            "dev-master": "3.3.x-dev"
74
        }
75
    }
76
}