This repository was archived by the owner on Jan 30, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.72 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.72 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
{
"name": "evosys21/portphp-portphp",
"description": "Data import/export workflow",
"keywords": [
"data",
"import",
"export",
"csv",
"excel",
"doctrine"
],
"license": "MIT",
"homepage": "https://github.com/evosys21/portphp-portphp",
"authors": [
{
"name": "David de Boer",
"email": "david@ddeboer.nl"
},
{
"name": "Markus Bachmann",
"email": "markus.bachmann@bachi.biz"
},
{
"name": "Andrei Bintintan",
"email": "andy@interpid.eu"
},
{
"name": "Community contributors",
"homepage": "https://github.com/evosys21/portphp-portphp/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/evosys21/portphp-portphp/issues",
"source": "https://github.com/evosys21/portphp-portphp/portphp",
"docs": "https://portphp.readthedocs.org"
},
"require": {
"php": ">=7.3",
"psr/log": "^1.1",
"symfony/property-access": "^3.0 || ^4.0 || ^5.0",
"symfony/validator": "^3.0 || ^4.0 || ^5.0",
"doctrine/orm": "^2.6"
},
"require-dev": {
"ext-iconv": "*",
"ext-mbstring": "*",
"phpunit/phpunit": "^9.2.0",
"phpspec/phpspec": "^7.0",
"friends-of-phpspec/phpspec-code-coverage": "^5.0"
},
"autoload": {
"psr-4": {
"Port\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Port\\Tests\\": "tests/",
"spec\\Port\\": "spec/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}