This repository was archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.3 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
{
"name": "sumday/console",
"description": "The console app for Sumday.io",
"keywords": ["console", "cli", "sumday", "hour tracking"],
"homepage": "https://sumday.io",
"license": "MIT",
"support": {
"issues": "https://github.com/grafiteinc/sumday-console/issues",
"source": "https://github.com/grafiteinc/sumday-console"
},
"authors": [
{
"name": "Matt Lantz",
"email": "matt@grafite.ca"
}
],
"require": {
"php": "^7.2",
"gitonomy/gitlib": "^1.1",
"laravel-zero/framework": "^6.0",
"mashape/unirest-php": "^3.0",
"nunomaduro/laravel-console-menu": "^2.1"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-create-project-cmd": [
"@php application app:rename"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["sumday"]
}