-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.52 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "violinist-dev/update-check-runner",
"description": "Runner for update checks",
"license": "proprietary",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"cweagans/composer-patches": "^1.7",
"eiriksm/cosy-composer": "^1.3",
"eiriksm/gitinfo": "^4",
"symfony/dependency-injection": "^5.4",
"symfony/dotenv": "^5.4",
"violinist-dev/licence-check": "dev-main"
},
"autoload-dev": {
"psr-4": {
"Violinist\\UpdateCheckRunner\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyse tests runner.php",
"phpcs": "./vendor/bin/phpcs -pn"
},
"require-dev": {
"eiriksm/wait-for-listen": "^1.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10",
"stevenmaguire/oauth2-bitbucket": "^3.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"extra": {
"violinist": {
"extends": "update-check-runner-violinist.json"
},
"patches": {
"bitbucket/client": {
"PHP 8.4 fixes (https://github.com/BitbucketPHP/Client/pull/86)": "./patches/bitbucket-client-php-8.4.patch"
},
"m4tthumphrey/php-gitlab-api": {
"PHP 8.4 fixes (https://github.com/GitLabPHP/Client/pull/819)": "./patches/819-2.diff"
}
}
}
}