-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 loc) · 1.13 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
{
"name": "textpattern/installer",
"type": "composer-plugin",
"description": "Textpattern plugin and theme installer",
"keywords": ["textpattern", "plugin", "theme", "txp", "installer"],
"homepage": "https://github.com/gocom/textpattern-installer",
"license": "GPL-2.0",
"authors": [
{
"name": "Jukka Svahn",
"homepage": "https://github.com/gocom",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/gocom/textpattern-installer/issues",
"source": "https://github.com/gocom/textpattern-installer"
},
"require": {
"php": ">=5.5.38",
"textpattern/lock": ">=4.4.1",
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"composer/composer": "^1.6 || ^2.0",
"squizlabs/php_codesniffer": "^3.6.2"
},
"autoload": {
"psr-0": {
"Textpattern\\Composer\\Installer\\": "src/"
}
},
"extra": {
"class": "Textpattern\\Composer\\Installer\\Installer\\Plugin"
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"lint-fix": "./vendor/bin/phpcbf"
}
}