-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.91 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
{
"name": "php-censor/common",
"description": "PHP Censor Common Library",
"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": "[email protected]",
"homepage": "https://corpsee.com",
"role": "PHP Censor developer"
}
],
"support": {
"issues": "https://github.com/php-censor/common/issues",
"source": "https://github.com/php-censor/common"
},
"autoload": {
"psr-4": {
"PHPCensor\\Common\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PHPCensor\\Common\\": "tests/src"
}
},
"require": {
"php": ">=8.1.0",
"ext-json": "*",
"psr/container": "^1.1",
"symfony/mailer": "^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
}
}
}