-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
74 lines (74 loc) · 2.07 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
{
"name": "adshares/wordpress-plugin",
"description": "Adshares WordPress Plugin",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"keywords": [
"adshares",
"ads",
"wordpress"
],
"homepage": "https://github.com/adshares/wordpress-plugin",
"support": {
"issues": "https://github.com/adshares/wordpress-plugin/issues",
"source": "https://github.com/adshares/wordpress-plugin"
},
"authors": [
{
"name": "Adshares",
"homepage": "https://adshares.pl"
},
{
"name": "Contributors",
"homepage": "https://github.com/adshares/wordpress-plugin/graphs/contributors"
}
],
"require": {
"php": ">=5.5.0",
"ext-json": "*",
"composer/installers": "^1.6",
"twig/twig": "^1.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"jakub-onderka/php-parallel-lint": "^1.0",
"wimg/php-compatibility": "^8.1",
"sensiolabs/security-checker": "^4.1",
"phing/phing": "^2.16"
},
"autoload": {
"psr-4": {
"Adshares\\WordPress\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Adshares\\WordPress\\Tests\\": "tests/"
}
},
"scripts": {
"build": [
"phing build"
],
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"qa-check": [
"security-checker security:check",
"parallel-lint --no-colors --blame --exclude vendor .",
"phpcs -s src --standard=PHPCompatibility",
"phpcs -s src --standard=PSR2"
]
},
"extra": {
"installer-name": "adshares",
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}