-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·66 lines (66 loc) · 1.55 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "spaghetti/xlsx-parser",
"description": "Very simple to implement xlsx parser to extract data from spreadsheets",
"type": "library",
"keywords": [
"excel",
"excel-parser",
"library",
"parser",
"php",
"xlsx",
"xlsx-parser"
],
"license": "MIT",
"authors": [
{
"name": "simpletoimplement",
"email": "simpletoimplement@gmail.com"
},
{
"name": "Dāvis Zālītis (k0d3r1s)",
"email": "k0d3r1s@vairogs.com",
"homepage": "https://me.k0d3r1s.com"
}
],
"require": {
"php": ">=8.1.0",
"ext-xmlreader": "*",
"ext-zip": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Spaghetti\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spaghetti\\Tests\\": "tests/src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-spaghetti": "1.3.x-dev"
},
"thanks": {
"name": "spaghetti/xlsx-parser",
"url": "https://github.com/spaghettisolutions/xlsx-parser"
}
},
"funding": [
{
"type": "issuehunt",
"url": "https://issuehunt.io/r/spaghettisolutions/xlsx-parser"
}
]
}