-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
45 lines (45 loc) · 1.2 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
{
"name": "pear/ole",
"type": "library",
"description": "This package allows reading and writing of OLE (Object Linking and Embedding) compound documents. This format is used as container for Excel (.xls), Word (.doc) and other Microsoft file formats.",
"license": "PHP-3.01",
"authors": [
{
"name": "Christian Schmidt",
"email": "[email protected]",
"role": "Lead"
},
{
"name": "Xavier Noguer",
"email": "[email protected]",
"role": "Lead"
}
],
"require": {
"php": ">=5.6",
"pear/pear_exception": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"pear/pear-core-minimal": "^1.10",
"phpunit/phpunit": ">=5 <10",
"sanmai/phpunit-legacy-adapter": "^6 || ^8"
},
"autoload": {
"psr-0": {
"OLE": "./"
}
},
"autoload-dev": {
"psr-0": {
"OLE": "tests/"
}
},
"include-path": [
"./"
],
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=OLE",
"source": "https://github.com/pear/OLE"
}
}