-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.36 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
{
"name": "netzmacht/release-notifier",
"type": "library",
"description": "Ths package provides a CLI tool to create release notes of packagist releases.",
"keywords": [
"release",
"notification",
"twitter",
"tapatalk",
"forum"
],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "David Molineus",
"email": "[email protected]"
}
],
"require": {
"php": "~7.1",
"ext-json": "*",
"ext-posix": "*",
"abraham/twitteroauth": "^0.9.2",
"beberlei/assert": "^3.0",
"composer/semver": "^1.4",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/psr7": "^1.4",
"netzmacht/tapatalk-client-api": "^0.4.0",
"psr/container": "^1.0",
"symfony/console": "^4.1",
"symfony/filesystem": "^4.1",
"webmozart/path-util": "^2.3",
"zendframework/zend-feed": "^2.10",
"zendframework/zend-servicemanager": "^3.3"
},
"require-dev": {
"phpcq/all-tasks": "^1.2"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev",
"dev-develop": "0.5.x-dev"
}
},
"autoload": {
"psr-4": {
"Netzmacht\\ReleaseNotifier\\": "src/"
}
},
"bin": [
"bin/release-notifier"
]
}