-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.07 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
{
"name": "rikudou/array-merge-recursive",
"description": "Replacement of built-in array_merge_recursive function that doesn't add values to array but replaces them",
"type": "library",
"license": "WTFPL",
"authors": [
{
"name": "Dominik Chrastecky",
"email": "dominik@chrastecky.cz"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.3|^8.0"
},
"autoload": {
"files": [
"src/array_merge_recursive.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.84",
"php-coveralls/php-coveralls": "^2.4",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload-dev": {
"psr-4": {
"Rikudou\\Tests\\ArrayMergeRecursive\\": "tests/"
}
},
"scripts": {
"fixer": "php-cs-fixer fix src --verbose",
"phpstan": "phpstan analyse --level=max src",
"phpunit": "phpunit"
},
"config": {
"platform": {
"php": "7.3.27"
}
}
}