Compare commits

..

1 Commits

Author SHA1 Message Date
238033fcc7 1
555

Signed-off-by: lxbfYeaa <lxbfyeaa@noreply.localhost>
2026-04-06 06:53:53 +00:00
5 changed files with 1602 additions and 4 deletions

View File

45
composer.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "lawcarta/wordpress",
"description": "LawCarta WordPress Site",
"require": {
"wpackagist-plugin/contact-form-7-mailchimp-extension": "~0.9",
"wpackagist-plugin/contact-form-7": "~6.1",
"wpackagist-plugin/duplicator": "~1.5",
"wpackagist-plugin/flamingo": "~2.2",
"wpackagist-plugin/google-sitemap-generator": "~4.1",
"wpackagist-plugin/honeypot": "~2.3",
"wpackagist-plugin/mailchimp-for-wp": "4.10.1",
"wpackagist-plugin/meta-tag-manager": "~3.3",
"wpackagist-plugin/post-smtp": "~3.8",
"wpackagist-plugin/really-simple-captcha": "~2",
"wpackagist-plugin/svg-support": "~2.5",
"wpackagist-plugin/taxonomy-terms-order": "~1.7",
"wpackagist-plugin/tinymce-advanced": "~5.9",
"wpackagist-plugin/toggle-wpautop": "~1.3",
"wpackagist-plugin/wordpress-seo": "~27.1",
"wpackagist-plugin/wps-hide-login": "~1.9",
"humanmade/s3-uploads": "~3.0"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"extra": {
"installer-paths": {
"wordpress/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wordpress/wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
},
"config": {
"vendor-dir": "wordpress/wp-content/vendor",
"allow-plugins": {
"composer/installers": true
}
}
}

1558
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1 +0,0 @@
555

View File

@@ -6,8 +6,6 @@ define( 'DB_PASSWORD', getenv('DB_PASSWORD') );
define( 'DB_HOST', getenv('DB_HOST') ); define( 'DB_HOST', getenv('DB_HOST') );
define('DOMAIN_CURRENT_SITE', getenv('DOMAIN_CURRENT_SITE')); define('DOMAIN_CURRENT_SITE', getenv('DOMAIN_CURRENT_SITE'));
define('WP_HOME', getenv('WP_HOME'));
define('WP_SITEURL', getenv('WP_SITEURL'));
define('LAWCARTA_SUBDOMAIN', getenv('SUBDOMAIN')); define('LAWCARTA_SUBDOMAIN', getenv('SUBDOMAIN'));
define('LAWCARTA_PORT', ''); define('LAWCARTA_PORT', '');