-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.77 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
{
"name": "danielgp/io-operations",
"description": "to support various Input/Output operations",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniel Popiniuc",
"email": "danielpopiniuc@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^5.4 || ^5.5 || ^5.6 || ^7.0 || ^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4",
"ext-json": "*",
"matomo/device-detector": "*",
"phpoffice/phpspreadsheet": "~3.4",
"symfony/http-foundation": ">=7.1.7"
},
"require-dev": {
"phpunit/phpunit": "^10.4"
},
"config": {
"platform": {
"php": "8.2.18"
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"classmap": [
"source/ArchitecturesCpu.php",
"source/InputOutputArrays.php",
"source/InputOutputBrowserAgent.php",
"source/InputOutputCurl.php",
"source/InputOutputDatabases.php",
"source/InputOutputExcel.php",
"source/InputOutputFilePermissions.php",
"source/InputOutputFiles.php",
"source/InputOutputHardware.php",
"source/InputOutputMemory.php",
"source/InputOutputNetworkComponents.php",
"source/InputOutputOperations.php",
"source/InputOutputQueries.php",
"source/InputOutputStrings.php",
"source/InputOutputTiming.php"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": [
"/.settings",
"/nbproject",
"/results",
"/tests",
"/vendor"
]
}
}