-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
51 lines (51 loc) · 1.25 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
{
"name": "scriptfusion/porter",
"description": "Scalable and durable data import for publishing and consuming APIs.",
"authors": [
{
"name": "Bilge",
"email": "[email protected]"
}
],
"license": "LGPL-3.0",
"require": {
"php": "^8.1",
"async/throttle": "^4",
"psr/cache": "^1|^2|^3",
"psr/container": "^1|^2",
"scriptfusion/retry": "^5",
"scriptfusion/retry-exception-handlers": "^1.2",
"scriptfusion/static-class": "^1"
},
"require-dev": {
"amphp/amp": "^3-beta.9",
"infection/infection": ">=0.26.16,<0.27",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5.23",
"revolt/event-loop": "^0.2"
},
"suggest" : {
"connectors/http": "Provides an HTTP connector for Porter providers.",
"transformers/mapping-transformer": "Transforms records using Mappings and provides sub-imports."
},
"autoload": {
"psr-4": {
"ScriptFUSION\\Porter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ScriptFUSIONTest\\": "test"
}
},
"scripts": {
"test": "phpunit -c test",
"mutate": "infection --configuration=test/infection.json"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": false
}
}
}