Use jetpack autoloader and composer instead of namespace rewrite
This commit is contained in:
144
composer.json
144
composer.json
@ -1,57 +1,93 @@
|
||||
{
|
||||
"name": "devstone/wp-multisite-waas",
|
||||
"url": "https://wpmultisitewaas.org",
|
||||
"description": "The WordPress Multisite Website as a Service (WaaS) plugin.",
|
||||
"version": "2.3.3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Arindo Duque",
|
||||
"email": "arindo@wpultimo.com",
|
||||
"homepage": "https://wpultimo.com"
|
||||
"name": "devstone/wp-multisite-waas",
|
||||
"url": "https://wpmultisitewaas.org",
|
||||
"description": "The WordPress Multisite Website as a Service (WaaS) plugin.",
|
||||
"version": "2.3.3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Arindo Duque",
|
||||
"email": "arindo@wpultimo.com",
|
||||
"homepage": "https://wpultimo.com"
|
||||
},
|
||||
{
|
||||
"name": "David Stone",
|
||||
"homepage": "https://github.com/superdav42"
|
||||
}
|
||||
],
|
||||
"license": [
|
||||
"GPL-3.0-or-later"
|
||||
],
|
||||
"type": "wordpress-plugin",
|
||||
"require": {
|
||||
"php": ">=7.4.30",
|
||||
"automattic/jetpack-autoloader": "^5.0.0",
|
||||
"rpnzl/arrch": "dev-master#994258bbefb7722243211654c4f78813312cd5ed",
|
||||
"amphp/amp": "v2.6.2",
|
||||
"pablo-sg-pacheco/wp-namespace-autoloader": "dev-master#069163f215743c83381613749ace0c5a642720b4",
|
||||
"psr/log": "2.0.0",
|
||||
"delight-im/cookie": "v3.4.0",
|
||||
"berlindb/core": "2.0.1",
|
||||
"spatie/ssl-certificate": "1.22.1",
|
||||
"mexitek/phpcolors": "v1.0.4",
|
||||
"nesbot/carbon": "2.71.0",
|
||||
"phpdocumentor/reflection-docblock": "5.3.0",
|
||||
"stripe/stripe-php": "v10.21.0",
|
||||
"hashids/hashids": "4.1.0",
|
||||
"rakit/validation": "dev-master#ff003a35cdf5030a5f2482299f4c93f344a35b29",
|
||||
"ifsnop/mysqldump-php": "v2.12",
|
||||
"mpdf/mpdf": "v8.2.0",
|
||||
"remotelyliving/php-dns": "4.3.0",
|
||||
"jasny/sso": "v0.4.2",
|
||||
"nyholm/psr7": "1.8.0",
|
||||
"symfony/cache": "v5.4.29",
|
||||
"scssphp/scssphp": "v1.11.1",
|
||||
"cweagans/composer-patches": "^1.7"
|
||||
},
|
||||
{
|
||||
"name": "David Stone",
|
||||
"homepage": "https://github.com/superdav42"
|
||||
"require-dev": {
|
||||
"composer/installers": "1.9.0",
|
||||
"phpunit/phpunit": "^9.6.22",
|
||||
"yoast/phpunit-polyfills": "^1.1.3",
|
||||
"woocommerce/woocommerce-sniffs": "^1.0.0",
|
||||
"symplify/vendor-patches": "^11.3"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"composer/installers": true,
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true,
|
||||
"automattic/jetpack-autoloader": true,
|
||||
"cweagans/composer-patches": true
|
||||
}
|
||||
},
|
||||
"archive": {
|
||||
"exclude": [
|
||||
"tests",
|
||||
"bin",
|
||||
"phpunit.xml.dist",
|
||||
"composer.lock",
|
||||
".phpcs.xml.dist",
|
||||
".circleci",
|
||||
"vendor",
|
||||
"addons",
|
||||
".idea",
|
||||
"node_modules",
|
||||
".gitignore",
|
||||
".phpcs.xml.dist",
|
||||
".phpunit.result.cache",
|
||||
"build.sh",
|
||||
"package.json",
|
||||
"package-lock.json",
|
||||
"setuptest.sh"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"patches": {
|
||||
"jasny/sso": [
|
||||
"patches/jasny-sso-src-broker-cookies-php.patch"
|
||||
],
|
||||
"berlindb/core": [
|
||||
"patches/berlindb-core-src-database-query-php.patch",
|
||||
"patches/berlindb-core-src-database-column-php.patch"
|
||||
]
|
||||
}
|
||||
}
|
||||
],
|
||||
"license": [
|
||||
"GPL-3.0-or-later"
|
||||
],
|
||||
"type": "wordpress-plugin",
|
||||
"require": {
|
||||
"php": ">=7.4.30"
|
||||
},
|
||||
"require-dev": {
|
||||
"composer/installers": "1.9.0",
|
||||
"phpunit/phpunit": "^9.6.22",
|
||||
"yoast/phpunit-polyfills": "^1.1.3",
|
||||
"woocommerce/woocommerce-sniffs": "^1.0.0"
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"composer/installers": true,
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true
|
||||
}
|
||||
},
|
||||
"archive": {
|
||||
"exclude": [
|
||||
"tests",
|
||||
"bin",
|
||||
"phpunit.xml.dist",
|
||||
"composer.lock",
|
||||
".phpcs.xml.dist",
|
||||
".circleci",
|
||||
"vendor",
|
||||
"addons",
|
||||
".idea",
|
||||
"node_modules",
|
||||
".gitignore",
|
||||
".phpcs.xml.dist",
|
||||
".phpunit.result.cache",
|
||||
"build.sh",
|
||||
"package.json",
|
||||
"package-lock.json",
|
||||
"setuptest.sh"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user