-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 958 Bytes
/
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
{
"name": "kodedict/php-util",
"description": "Utility library",
"authors": [
{
"name": "olumayokun olayinka",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"ext-intl": "*"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"KodeDict\\PHPUtil\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"KodeDict\\PHPUtil\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpunit": "vendor/bin/phpunit",
"coverage-test": "vendor\\bin\\phpunit --coverage-html /test-reports/coverage",
"format": "vendor\\bin\\php-cs-fixer fix"
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"phpunit/phpunit": "^9"
}
}