This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
58 lines (58 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "godbout/alfred-time",
"description": "Track your time easily with Alfred",
"keywords": [
"alfred",
"workflow",
"alfred-workflow",
"time",
"tracking",
"toggl",
"harvest",
"everhour"
],
"homepage": "https://sleeplessmind.com.mo/news/alfred-time-2-0/",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Guillaume Leclerc",
"email": "[email protected]",
"role": "Craftsman"
}
],
"support": {
"issues": "https://github.com/godbout/alfred-time/issues",
"source": "https://github.com/godbout/alfred-time"
},
"require": {
"php": "^8.0.2",
"godbout/alfred-workflow-workflow": "^1.3",
"godbout/alfred-workflow-config": "^1.8.0",
"morningtrain/toggl-api": "^1.0.5",
"vlucas/phpdotenv": "^5.1",
"wearerequired/harvest-api-php-client": "dev-master",
"php-http/guzzle7-adapter": "^1.0",
"php-http/client-common": "^2.5",
"nesbot/carbon": "^2.62.1"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.32",
"phpunit/phpunit": "^9.5",
"scrutinizer/ocular": "^1.8"
},
"autoload": {
"psr-4": {
"Godbout\\Alfred\\Time\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --group=default,timerServicesApiCalls --color=always",
"format": "php-cs-fixer fix src tests -vvv --config=.php_cs.dist --ansi"
}
}