-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 809 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 809 Bytes
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
{
"name": "transformers/mapping-transformer",
"description": "Integrates Mapper to transform array collections using Mappings.",
"authors": [
{
"name": "Bilge",
"email": "bilge@scriptfusion.com"
}
],
"license": "LGPL-3.0",
"minimum-stability": "beta",
"require": {
"php": "^8.1",
"scriptfusion/mapper": "^1|^2|^3",
"scriptfusion/porter": "^7|^8"
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5.23",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"ScriptFUSION\\Porter\\Transform\\Mapping\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ScriptFUSIONTest\\": "test"
}
},
"scripts": {
"test": "phpunit -c test"
},
"config": {
"sort-packages": true
}
}