-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
94 lines (94 loc) · 2.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "d3strukt0r/votifier-client",
"description": "Simple Tool to send vote request to a server which has the Votifier plugin.",
"type": "library",
"keywords": [
"minecraft",
"vote",
"votifier"
],
"homepage": "https://github.com/D3strukt0r/votifier-client-php",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Manuele Vaccari",
"email": "[email protected]",
"homepage": "https://github.com/D3strukt0r",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/D3strukt0r/votifier-client-php/issues",
"wiki": "https://github.com/D3strukt0r/votifier-client-php/wiki",
"source": "https://github.com/D3strukt0r/votifier-client-php",
"docs": "https://votifier-client-php.readthedocs.io"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/D3strukt0r"
},
{
"type": "patreon",
"url": "https://patreon.com/d3strukt0r"
}
],
"require": {
"php": ">=7.1",
"ext-SPL": "*",
"ext-date": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.6.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpcompatibility/php-compatibility": "*",
"phpunit/phpunit": "^9 || ^8 || ^7",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"D3strukt0r\\Votifier\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"D3strukt0r\\Votifier\\Client\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"check": "phpcs",
"check2": "php-cs-fixer fix --diff --dry-run -v",
"fix": "phpcbf",
"fix2": "php-cs-fixer fix"
},
"archive": {
"exclude": [
"/.github",
"/.idea",
"/.vscode",
"/docs",
"/tests",
".editorconfig",
".gitattributes",
".gitignore",
".php_cs.dist",
".phpcs.xml",
".readthedocs.yml",
".scrutinizer.yml",
".symfony.insight.yaml",
"CONTRIBUTING.md",
"phpdoc.dist.xml",
"phpunit.xml.dist"
]
}
}