-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.25 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"name": "netresearch/composer-patches-plugin",
"type": "composer-plugin",
"license": "GPL-2.0-or-later",
"description": "Composer patches plugin",
"keywords": [
"composer", "patches", "plugin"
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Netresearch\\Composer\\Patches\\": "src/Netresearch/Composer/Patches/"
}
},
"autoload-dev": {
"psr-4": {
"Netresearch\\Test\\": "tests/"
}
},
"require": {
"php": "^8.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.7.7",
"phpunit/phpunit": "^9.5 || ^10.0 || ^11.0 || ^12.0 || ^13.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"test": "phpunit",
"test-compatibility": "@php test_compatibility.php",
"cs-fix": "php-cs-fixer fix",
"cs-check": "php-cs-fixer fix --dry-run --diff"
},
"extra": {
"class": "Netresearch\\Composer\\Patches\\Plugin",
"branch-alias": {
"dev-master": "1.4.x-dev"
}
},
"config": {
"allow-plugins": {
"netresearch/composer-patches-plugin": true
}
}
}