-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.04 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
{
"name": "cardanopress/framework",
"description": "A ThemePlate project for Cardano WordPress integration",
"keywords": [
"generator-themeplate",
"themeplate",
"wordpress",
"cardano",
"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": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"ext-json": "*"
},
"require-dev": {
"automattic/jetpack-autoloader": "^2.12",
"themeplate/tester": "^2.1"
},
"autoload": {
"files": [
"dependencies/compatibility.php"
],
"psr-4": {
"CardanoPress\\Dependencies\\": "dependencies/",
"CardanoPress\\": "src/"
}
}
}