-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 976 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 976 Bytes
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
{
"name": "findkit/wp-findkit",
"description": "WordPress plugin for findkit.com",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Esa-Matti Suuronen",
"email": "findkit@findkit.com",
"role": "developer"
}
],
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Findkit\\": "src/"
}
},
"require": {
"firebase/php-jwt": "^7.0"
},
"scripts": {
"phpstan": "php -d memory_limit=4G ./vendor/bin/phpstan analyze src *.php",
"phpcs": "phpcs src *.php"
},
"support": {
"issues": "https://github.com/findkit/wp-findkit/issues",
"source": "https://github.com/findkit/wp-findkit"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"phpstan/extension-installer": "^1.3",
"valu/wp-codesniffer-rules": "dev-master"
}
}