-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.33 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": "web-fu/anymapper",
"type": "library",
"description": "Library that allows to map objects and arrays into objects and arrays with strong type support and pattern detection.",
"keywords": [
"object", "mapper", "mapping", "hydrator", "array", "conversion"
],
"license": "MIT",
"authors": [
{
"name": "Gabriele Manganello",
"email": "info@web-fu.it",
"homepage": "https://web-fu.it"
}
],
"require": {
"php": "8.1.* || 8.2.* || 8.3.*",
"web-fu/reflection": "^2.1"
},
"autoload": {
"psr-4": {
"WebFu\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebFu\\Tests\\": "tests/"
},
"files": [
"src/bootstrap.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/phpstan": "^1.9",
"vimeo/psalm": "^5.4",
"phpbench/phpbench": "^1.2",
"vimeo/php-mysql-engine": "^0.6.1"
},
"scripts": {
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php ./vendor/bin/php-cs-fixer fix --dry-run --allow-risky=yes",
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 php ./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=-1",
"tests": "./vendor/bin/phpunit --coverage-text --color",
"ci": [
"@autoload",
"@parallel cs phpstan tests"
]
}
}