-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.58 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
{
"name": "fastbolt/excel-writer",
"type": "library",
"description": "A library for simple creation of excel-files",
"keywords": [
"fastbolt",
"excel",
"writer",
"excel-writer"
],
"homepage": "https://github.com/fastbolt/ExcelWriter",
"license": "MIT",
"authors": [
{
"name": "Steffen Leußink",
"email": "[email protected]",
"homepage": "https://github.com/StvL97",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"phpoffice/phpspreadsheet": "^2.1"
},
"require-dev": {
"fig-r/psr2r-sniffer": "^1.3",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^7.0",
"spryker/code-sniffer": "^0.17.4",
"squizlabs/php_codesniffer": "^3.0",
"vimeo/psalm": "^5.25"
},
"autoload": {
"psr-4": {
"Fastbolt\\ExcelWriter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fastbolt\\ExcelWriter\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"prefer-stable": true
}