-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.33 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
{
"name": "drupal/github_cards",
"type": "drupal-module",
"description": "GitHub user and repo cards.",
"keywords": [
"drupal",
"github",
"drupal-8",
"module"
],
"homepage": "https://www.drupal.org/project/github_cards",
"license": "GPL-3.0",
"authors": [
{
"name": "Steven Wichers",
"email": "me@stevenwichers.com",
"homepage": "https://stevenwichers.com"
}
],
"require": {
"php": ">=7.2",
"knplabs/github-api": "^2.12@dev",
"php-http/guzzle6-adapter": "^1.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"drupal/coder": "^8.3",
"ergebnis/composer-normalize": "^2.6",
"phpunit/phpunit": "^6.5"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4"
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpcs": [
"./vendor/bin/phpcs"
],
"phpunit": [
"./vendor/bin/phpunit --colors=always"
]
},
"support": {
"issues": "https://www.drupal.org/project/issues/github_cards",
"source": "http://cgit.drupalcode.org/github_cards"
}
}