-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
59 lines (59 loc) · 1.59 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
54
55
56
57
58
59
{
"name": "hussainweb/drupal-api-client",
"description": "Convenient wrapper on Guzzle to access Drupal.org API",
"keywords": ["drupal", "api"],
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Hussain Abbas",
"email": "[email protected]",
"homepage": "http://hussainweb.me",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"guzzlehttp/psr7": "^1.6 || ^2.4",
"php-http/client-implementation": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"http-interop/http-factory-guzzle": "^1.2",
"php-http/mock-client": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.18.3",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Hussainweb\\DrupalApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hussainweb\\DrupalApi\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"rector/rector-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
},
"scripts": {
"phpcs": ["phpcs --standard=PSR12 src/"],
"phpcbf": ["phpcbf --standard=PSR12 src/"],
"test": ["phpunit"],
"phpstan": ["phpstan analyse src/ --level 5"]
}
}