-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 1.03 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
{
"name": "eventsauce/clock",
"type": "library",
"description": "Consume time from a Clock",
"keywords": ["clock", "time", "eventsauce"],
"license": "MIT",
"authors": [
{
"name": "Frank de Jonge",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"psr/clock": "^1.0"
},
"provide": {
"psr/clock-implementation": "1.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "^v3.65.0"
},
"autoload": {
"psr-4": {
"EventSauce\\Clock\\": "src/"
}
},
"scripts": {
"phpunit": "phpunit",
"phpunit:coverage": "XDEBUG_MODE=coverage phpunit --verbose --coverage-text=coverage.clover",
"phpcs": "php-cs-fixer fix -v --dry-run --using-cache=no",
"phpcs:fix": "php-cs-fixer fix",
"phpstan": "phpstan analyze -c phpstan.neon",
"check" : ["@phpcs", "@phpstan", "@phpunit"]
}
}