forked from paysera/lib-normalization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 793 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 793 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
{
"name": "paysera/lib-normalization",
"description": "Library for normalizing and denormalizing PHP objects to and from JSON structures",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Paysera\\Component\\Normalization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paysera\\Component\\Normalization\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.0 || ^8.0",
"paysera/lib-object-wrapper": "^0.3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^9.0",
"mockery/mockery": "^1.2",
"ext-json": "*"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"phpunit": "phpunit",
"test": ["@phpunit"]
}
}