Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/fluentform/vendor/openspout/openspout/composer.json

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
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": "~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0",
32 + "ext-dom": "*",
33 + "ext-filter": "*",
34 + "ext-libxml": "*",
35 + "ext-xmlreader": "*",
36 + "ext-zip": "*"
37 + },
38 + "require-dev": {
39 + "ext-zlib": "*",
40 + "friendsofphp/php-cs-fixer": "^3.4",
41 + "phpstan/phpstan": "^1.4",
42 + "phpstan/phpstan-phpunit": "^1.0",
43 + "phpunit/phpunit": "^9.5"
44 + },
45 + "suggest": {
46 + "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
47 + "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
48 + },
49 + "autoload": {
50 + "psr-4": {
51 + "OpenSpout\\": "src/"
52 + }
53 + },
54 + "autoload-dev": {
55 + "classmap": [
56 + "tests/"
57 + ]
58 + },
59 + "config": {
60 + "platform": {
61 + "php": "7.3"
62 + }
63 + },
64 + "extra": {
65 + "branch-alias": {
66 + "dev-master": "3.3.x-dev"
67 + }
68 + }
69 + }
70 +