-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.35 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
{
"name": "cardanopress/plugin-governance",
"description": "A CardanoPress extension for governance",
"type": "wordpress-plugin",
"keywords": [
"generator-themeplate",
"themeplate",
"wordpress",
"plugin",
"cardanopress"
],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Gene Alyson Fortunado Torcende",
"email": "mail@pbwebdev.com",
"homepage": "https://pbwebdev.com"
}
],
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-ctype": "*"
},
"require-dev": {
"coenjacobs/mozart": "^0.7.1",
"themeplate/tester": "^2.1"
},
"autoload": {
"psr-4": {
"PBWebDev\\CardanoPress\\Governance\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"index.php": "find . -type d -not \\( -path ./vendor -prune \\) -exec cp -f ./index.php {} \\;",
"analyse": "themeplate analyse",
"lint": "themeplate lint",
"fix": "themeplate fix",
"test": "themeplate test",
"test:unit": "themeplate test --type unit",
"test:integration": "themeplate test --type integration"
}
}