-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
46 lines (46 loc) · 1.19 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
{
"name": "gamez/duration",
"description": "Working with durations made easy",
"keywords": ["duration", "time"],
"license": "MIT",
"homepage": "https://github.com/jeromegamez/duration-php",
"authors": [
{
"name": "Jérôme Gamez",
"homepage": "https://github.com/jeromegamez"
}
],
"require": {
"php": "^7.3.4|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.63",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Gamez\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gamez\\Duration\\Tests\\": "tests"
}
},
"scripts": {
"test": ["@phpunit", "@phpstan"],
"coverage": "vendor/bin/phpunit --coverage-html=build/coverage",
"phpunit": "vendor/bin/phpunit --testdox",
"phpstan": "vendor/bin/phpstan analyze",
"phpstan-ci": "vendor/bin/phpstan analyze -c phpstan.neon.dist --no-interaction --no-progress"
},
"config": {
"sort-packages": true
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jeromegamez"
}
]
}