forked from portphp/portphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.47 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
{
"name": "portphp/portphp",
"description": "Data import/export workflow",
"keywords": [ "data", "import", "export", "csv", "excel", "doctrine" ],
"license": "MIT",
"homepage": "https://github.com/portphp",
"authors": [
{
"name": "David de Boer",
"email": "[email protected]"
},
{
"name": "Markus Bachmann",
"email": "[email protected]"
},
{
"name": "Community contributors",
"homepage": "https://github.com/portphp/portphp/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/portphp/portphp/issues",
"source": "https://github.com/portphp/portphp",
"docs": "https://portphp.readthedocs.org"
},
"require": {
"php": ">=7.4",
"psr/log": "^3.0",
"symfony/property-access": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/validator": "^2.8 || ^3.0 || ^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"Port\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Port\\Tests\\": "tests/"
}
},
"require-dev": {
"ext-iconv": "*",
"ext-mbstring": "*",
"phpunit/phpunit": "^9.5",
"phpspec/phpspec": "7.2.0",
"doctrine/instantiator": "^1.0.5",
"doctrine/common": "^2.7"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}