-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
138 lines (138 loc) · 4.46 KB
/
composer.json
File metadata and controls
138 lines (138 loc) · 4.46 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "joomla-bible-study/proclaim",
"type": "project",
"description": "CWM Proclaim",
"keywords": [
"bible",
"joomla",
"comments",
"Proclaim"
],
"homepage": "https://github.com/Joomla-Bible-Study/Proclaim",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Tom Fuller",
"email": "info@christianwebministries.org",
"homepage": "https://www.christianwebministries.org",
"role": "Tech Writer & Developer"
},
{
"name": "Brent Cordis",
"email": "info@christianwebministries.org",
"homepage": "https://www.christianwebministries.org",
"role": "Lead Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.3.0"
},
"vendor-dir": "libraries/vendor",
"github-protocols": [
"https"
],
"allow-plugins": {}
},
"support": {
"issues": "https://www.christianwebministries.org/issues",
"forum": "https://www.christianwebministries.org/forum",
"docs": "https://www.christianwebministries.org/docs"
},
"autoload": {
"psr-4": {
"CWM\\Component\\Proclaim\\Administrator\\": "admin/src/",
"CWM\\Component\\Proclaim\\Site\\": "site/src/",
"CWM\\Library\\Scripture\\": "libraries/lib_cwmscripture/src/"
}
},
"autoload-dev": {
"psr-4": {
"CWM\\Component\\Proclaim\\Tests\\": "tests/unit/"
}
},
"require": {
"php": "^8.3.0",
"ext-mbstring": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-gd": "*",
"simplepie/simplepie": "^1.8",
"google/recaptcha": "^1.3",
"typo3/phar-stream-wrapper": "^3.1.7",
"jfcherng/php-diff": "^6.16",
"psr/log": "^3.0",
"composer/ca-bundle": "^1.3",
"ext-zip": "*",
"ext-libxml": "*",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phan/phan": "^5.4",
"roave/security-advisories": "dev-latest",
"pdepend/pdepend": "^2.16",
"phpmd/phpmd": "^2.15",
"joomla/database": "^4.0",
"joomla/registry": "^4.0",
"joomla/di": "^4.0",
"joomla/event": "^4.0",
"joomla/input": "^4.0",
"joomla/filter": "^4.0",
"joomla/filesystem": "^4.0",
"joomla/uri": "^4.0",
"joomla/application": "^4.0",
"joomla/string": "^4.0"
},
"replace": {
"paragonie/random_compat": "9.99.99",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite 'Proclaim Unit Tests'",
"test:integration": "phpunit --testsuite 'Proclaim Integration Tests'",
"test:js": "npm test",
"test:all": ["@test", "@test:js"],
"lint:syntax": "php build/proclaim_build.php lint-syntax",
"lint": "php-cs-fixer fix --dry-run --diff",
"lint:fix": "php-cs-fixer fix",
"check": ["@lint:syntax", "@lint", "@test"],
"check:all": ["@lint:syntax", "@lint", "@test:all"],
"build:assets": "npm ci && npm run build",
"build:bridge": "cd build/migration-bridge && zip -r ../packages/proclaim_bridge_v1.0.0.zip proclaim_bridge.xml script.php index.html",
"build:full": ["@check:all", "@build"],
"setup": "php build/proclaim_build.php setup",
"joomla-install": "php build/proclaim_build.php install-joomla",
"joomla-latest": "php build/proclaim_build.php joomla-latest",
"symlink": "php build/proclaim_build.php link",
"verify": "php build/proclaim_build.php verify",
"clean": "php build/proclaim_build.php clean",
"build": "php build/proclaim_build.php build",
"package": "php build/proclaim_build.php package",
"version": "php build/bump.php",
"sync-languages": "python3 build/sync_languages.py",
"sync-languages-force": "python3 build/sync_languages.py --force",
"sync-languages-setup": "python3 build/sync_languages.py setup",
"vendor:check": "node build/check-vendor-versions.js",
"vendor:update": "node build/update-vendors.js",
"post-install-cmd": [
"@php -r \"if (!file_exists('build.properties')) { copy('build.dist.properties', 'build.properties'); echo 'Created build.properties from template. Run composer setup to configure.\\n'; }\"",
"@joomla-cms-deps"
],
"joomla-cms-deps": "@php build/joomla-cms-deps.php",
"ars-publish": "bash build/ars-release.sh",
"release": "bash build/release.sh",
"jed-prep": "bash build/jed-prep.sh"
}
}