-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 991 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
{
"name": "headsnet/carbon-clock",
"description": "A clock interface and implementation using the Carbon date manipulation library",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Headsnet\\CarbonClock\\": "src/",
"Headsnet\\CarbonClock\\Test\\": "test/"
}
},
"authors": [
{
"name": "Ben Roberts",
"email": "ben@headsnet.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">8.1",
"nesbot/carbon": "^2.38 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"symplify/easy-coding-standard": "^11",
"phpstan/phpstan": "^1.8"
},
"scripts": {
"cs": "vendor/bin/ecs check --ansi --config=ecs.php",
"cs-fix": "vendor/bin/ecs check --ansi --config=ecs.php --fix",
"static": "vendor/bin/phpstan analyze --ansi",
"test": "vendor/bin/phpunit test"
}
}