This repository was archived by the owner on May 1, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.82 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "localheinz/github-pulse",
"type": "library",
"description": "Provides a command line tool for generating an organization-wide GitHub pulse.",
"homepage": "https://github.com/localheinz/github-pulse",
"license": "MIT",
"authors": [
{
"name": "Andreas Möller",
"email": "am@localheinz.com"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5.2",
"knplabs/github-api": "^2.2.0",
"league/flysystem": "^1.0.63",
"php-http/guzzle6-adapter": "^1.1.1",
"phpdocumentor/reflection-docblock": "^4.3.4",
"symfony/cache": "^4.4.2",
"symfony/console": "^4.4.2",
"symfony/property-access": "^5.0.2",
"symfony/property-info": "^5.0.4",
"symfony/serializer": "^5.0.4",
"symfony/stopwatch": "^5.0.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.3.2",
"ergebnis/php-cs-fixer-config": "^2.1.0",
"ergebnis/phpstan-rules": "~0.14.4",
"ergebnis/test-util": "~1.0.0",
"infection/infection": "~0.15.3",
"jangregor/phpstan-prophecy": "~0.6.2",
"phpstan/extension-installer": "^1.0.3",
"phpstan/phpstan-deprecation-rules": "~0.12.2",
"phpstan/phpstan-phpunit": "~0.12.6",
"phpstan/phpstan-strict-rules": "~0.12.2",
"phpunit/phpunit": "^8.5.2",
"psalm/plugin-phpunit": "~0.9.0",
"vimeo/psalm": "^3.9.5"
},
"config": {
"platform": {
"php": "7.2.25"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Localheinz\\GitHub\\Pulse\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Localheinz\\GitHub\\Pulse\\Test\\": "test"
}
},
"bin": [
"github-pulse"
],
"support": {
"issues": "https://github.com/localheinz/github-pulse/issues",
"source": "https://github.com/localheinz/github-pulse"
}
}