-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.24 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
{
"name": "acelot/automapper",
"description": "Powerful declarative data mapper for PHP 8",
"keywords": [
"mapper",
"automapper",
"data-mapper",
"marshaller"
],
"type": "library",
"homepage": "https://github.com/acelot/automapper",
"license": "MIT",
"authors": [
{
"name": "Valeriy Protopopov",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"nikic/php-parser": "^4.15",
"friendsofphp/php-cs-fixer": "^3.13",
"respect/validation": "^2",
"giggsey/libphonenumber-for-php": "*"
},
"suggest": {
"respect/validation": "Enables respect-validation integration"
},
"autoload": {
"psr-4": {
"Acelot\\AutoMapper\\": "src/",
"Acelot\\AutoMapper\\Integrations\\RespectValidation\\": "integrations/respect-validation/src/"
}
},
"autoload-dev": {
"psr-4": {
"Acelot\\AutoMapper\\Tests\\": "tests/",
"Acelot\\AutoMapper\\Integrations\\RespectValidation\\Tests\\": "integrations/respect-validation/tests/"
}
},
"bin": ["bin/generate-static-api"],
"scripts": {
"test": "phpunit",
"generate-static-api": "generate-static-api",
"php-cs-fixer": "php-cs-fixer"
}
}