-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.39 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "php-censor/plugins",
"description": "PHP Censor Plugins",
"minimum-stability": "stable",
"type": "library",
"keywords": [
"php",
"php-censor",
"ci-server",
"testing",
"self-hosted",
"open-source",
"ci",
"continuous integration"
],
"homepage": "https://php-censor.info",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Dmitry Khomutov",
"email": "poisoncorpsee@gmail.com",
"homepage": "https://corpsee.com",
"role": "PHP Censor developer"
}
],
"support": {
"issues": "https://github.com/php-censor/plugins/issues",
"source": "https://github.com/php-censor/plugins"
},
"autoload": {
"psr-4": {
"PHPCensor\\Plugins\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PHPCensor\\Plugins\\": "tests/src"
}
},
"require": {
"php": ">=8.1.0",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-pdo": "*",
"ext-curl": "*",
"ext-bcmath": "*",
"php-censor/common": "dev-master",
"guzzlehttp/guzzle": "^6.5",
"hipchat/hipchat-php": "^1.4",
"maknz/slack": "^1.7",
"sebastian/diff": "^4.0",
"php-censor/flowdock-client": "^2.0",
"symfony/yaml": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.4",
"infection/infection": "^0.25",
"vimeo/psalm": "^4.16",
"phpmd/phpmd": "^1.5",
"sebastian/phpcpd": "^6.0",
"phploc/phploc": "^7.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"rector/rector": "^1.0"
},
"extra": {
"platform": {
"php": "8.1.*"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
}
}
}