forked from belgattitude/php_excel_dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.94 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.94 KB
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
67
68
{
"name": "do-php/php8_excel_dev",
"description": "LibXL - php_excel development stubs",
"license": "MIT",
"keywords": [
"php_excel",
"libxl"
],
"homepage": "https://github.com/doPhp/php_excel_dev",
"type": "library",
"authors": [
{
"name": "Darren Odden",
"homepage": "https://github.com/do-io"
}
],
"bin": [
"bin/check_phpexcel_install.sh",
"bin/check_phpexcel_install.php"
],
"require": {
"php": "^7.4||^8.0"
},
"require-dev" : {
"captainhook/plugin-composer": "^4.0",
"friendsofphp/php-cs-fixer": "^2.15",
"phpoffice/phpspreadsheet": "^1.9",
"phpstan/phpstan": "^0.11.15",
"phpstan/phpstan-phpunit": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^7.4||^8.0"
},
"conflict": {
"bolovsky/php_excel_stubs": "*"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-0": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ExcelE2eTests\\": "tests/e2e",
"ExcelTestsUtil\\": "tests/util"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan"
],
"fix": [
"@cs-fix"
],
"test": "vendor/bin/phpunit",
"check:libxl":"bin/check_phpexcel_install.php",
"cs-check": "vendor/bin/php-cs-fixer --diff --dry-run -v fix --using-cache=false",
"cs-fix": "vendor/bin/php-cs-fixer -v fix --using-cache=false",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon src tests"
},
"archive": {
"exclude": [".travis", "infection.json", ".sami.php", "phpstan.neon", "tests", "docs", ".travis", ".travis.yml", ".codeclimate.yml", ".coveralls.yml", ".scrutinizer.yml", ".php_cs", ".gitignore", "phpcs.xml"]
}
}