-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.94 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
60
61
62
63
64
65
66
67
68
69
{
"name": "drupify/version-resolver",
"description": "A PHP library for resolving version, supported releases etc. for Drupal Core, modules, themes, and other related projects.",
"license": "MIT",
"keywords": [
"drupal",
"drupal library",
"version resolver",
"php library",
"drupal version resolver"
],
"authors": [
{
"name": "Vishal Khode"
}
],
"homepage": "https://github.com/vishalkhode1/version-resolver",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.9",
"hassankhan/config": "^3.1"
},
"require-dev": {
"acquia/coding-standards": "^3.0",
"ergebnis/composer-normalize": "^2.43",
"php-coveralls/php-coveralls": "^2.7",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpro/grumphp": "^1.5 || ^2.7",
"phpunit/phpunit": "^9.6"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Drupify\\Resolver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Drupify\\Resolver\\Tests\\": "tests/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"cbf": "phpcbf",
"coverage": "php -d pcov.enabled=1 vendor/bin/phpunit tests/src --coverage-clover build/logs/clover.xml",
"coveralls": [
"php-coveralls -vvv"
],
"cs": "phpcs",
"lint": [
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"find tests -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"test": [
"@lint",
"@unit",
"@cs"
],
"unit": "phpunit"
}
}