-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.1 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
{
"authors": [
{
"name": "David J Eddy",
"email": "[email protected]"
}
],
"autoload": {
"classmap": [
"src/"
],
"files": [
"./src/Arrays.php",
"./src/Strings.php"
]
},
"description": "Attempt to normalize the PHP standard library array and string function parameter order.",
"license": "MIT",
"name": "davidjeddy/normie",
"require": {
"php": "^7.4"
},
"require-dev": {
"bmitch/churn-php": "^1",
"dephpend/dephpend": "dev-master",
"friendsofphp/php-cs-fixer": "^2",
"phploc/phploc": "^4",
"phpmd/phpmd": "^2",
"phpmetrics/phpmetrics": "^2",
"phpstan/phpstan": "^0.11",
"phpunit/phpunit": "^8",
"povils/phpmnd": "^2",
"roave/no-leaks": "1.1.2",
"sebastian/phpcpd": "^4",
"squizlabs/php_codesniffer": "^3",
"wapmorgan/php-code-fixer": "dev-master",
"roave/no-floaters": "^1",
"roave/security-advisories": "dev-master"
},
"type": "library"
}