-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 944 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 944 Bytes
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
{
"name": "rixbeck/reptor",
"description": "PHP Spreadsheet Report Generator",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "8.1.*",
"ext-pdo": "*",
"ext-json": "*",
"ext-sqlite3": "*",
"symfony/expression-language": "^6.3",
"symfony/yaml": "^6.3",
"symfony/cache": "^6.3",
"phpoffice/phpspreadsheet": "^1.29",
"psr/event-dispatcher": "*",
"uuf6429/expression-language-tplstring": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.26.0",
"phpstan/phpstan": "^1.8.5",
"rector/rector": "^0.15.0",
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"brix\\Reptor\\": "src/Reptor/"
},
"classmap": ["src/PhpOffice/Worksheet.php"]
}
}