-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 2.1 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "lephare/import",
"description": "Import CSV/XLS files",
"keywords": [
"import",
"csv",
"xls",
"excel",
"database"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Le Phare",
"homepage": "https://www.lephare.com"
}
],
"require": {
"php": "^7.4|^8.0",
"behat/transliterator": "^1.1",
"doctrine/collections": "^1.6|^2.0",
"doctrine/dbal": "^2.13|^3.0",
"monolog/monolog": "^2.0|^3.0",
"neitanod/forceutf8": "^2.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/event-dispatcher": "^5.4|^6.0|^7.0",
"symfony/finder": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"LePhare\\Import\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.3",
"jangregor/phpstan-prophecy": "^1.0",
"php-mock/php-mock-prophecy": "^0.1.1",
"phpoffice/phpspreadsheet": "^1.19",
"phpspec/prophecy": "^1.10",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0"
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse --no-progress",
"lint": "@lint:fix --dry-run",
"lint:ci": "@lint:fix --using-cache=no --dry-run",
"lint:fix": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"test:ci": "@test --colors=never --coverage-text",
"test": "./vendor/bin/phpunit"
},
"suggest": {
"phpoffice/phpspreadsheet": "Import XLS files"
},
"minimum-stability": "dev",
"prefer-stable": true
}