Skip to content

Commit 6a02fd4

Browse files
author
Tigran Hakobyan
committed
initial composer json file
1 parent e6ef659 commit 6a02fd4

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

composer.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "cronhub/cronhub",
3+
"type": "library",
4+
"description": "Official Cronhub package for PHP applications.",
5+
"keywords": [
6+
"cronhub",
7+
"cron",
8+
"errors",
9+
"logging"
10+
],
11+
"homepage": "https://github.com/cronhub-app/cronhub-php",
12+
"license": "MIT",
13+
"authors": [
14+
{
15+
"name": "Tigran Hakobyan",
16+
"email": "tigran@cronhub.io",
17+
"homepage": "https://cronhub.io"
18+
}
19+
],
20+
"require": {
21+
"php": ">=5.5",
22+
"guzzlehttp/guzzle": "^5.0|^6.0"
23+
},
24+
"require-dev": {
25+
"phpunit/phpunit": "^5.7",
26+
"mockery/mockery": "^0.9.9"
27+
},
28+
"autoload": {
29+
"psr-4": {
30+
"Cronhub\\": "src/"
31+
}
32+
},
33+
"autoload-dev": {
34+
"psr-4": {
35+
"Cronhub\\Tests\\": "tests/"
36+
}
37+
},
38+
"minimum-stability": "dev"
39+
}

0 commit comments

Comments
 (0)