Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Include/Header.php
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@
<!-- mini logo for sidebar mini 50x50 pixels -->
<img src="<?= SystemURLs::getRootPath() ?>/Images/CRM_50x50.png" alt="ChurchCRM Logo" class="brand-image img-circle elevation-3" style="opacity: .8">
<!-- logo for regular state and mobile devices -->
<span class="brand-text font-weight-light"><?= ChurchMetaData::getChurchName() ?></span>
<span class="brand-text font-weight-light"><?= ChurchMetaData::getChurchName() ?: gettext('ChurchCRM') ?></span>
</a>
<!-- sidebar: style can be found in sidebar.less -->
<div class="sidebar">
Expand Down
203 changes: 98 additions & 105 deletions src/composer.json
Original file line number Diff line number Diff line change
@@ -1,110 +1,103 @@
{
"name": "churchcrm/crm",
"description": "Free Church CRM Software",
"license": "MIT",
"type": "project",
"version": "7.0.1",
"keywords": [
"church",
"crm"
],
"authors": [
{
"name": "George Dawoud",
"role": "Lead Developer"
}
],
"homepage": "https://churchcrm.io",
"support": {
"email": "info@churchcrm.io",
"issues": "https://github.com/ChurchCRM/CRM/issues",
"chat": "https://gitter.im/ChurchCRM/CRM",
"source": "https://github.com/ChurchCRM/CRM",
"docs": "https://github.com/ChurchCRM/CRM/wiki"
},
"require": {
"php": ">=8.4",
"ext-PDO": "*",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-gettext": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-session": "*",
"ext-sodium": "*",
"ext-zip": "*",
"ext-zlib": "*",
"azuyalabs/yasumi": "^2.7.0",
"defuse/php-encryption": "^2.4.0",
"drewm/mailchimp-api": "^2.5.4",
"endroid/qr-code": "^6.1.3",
"ezyang/htmlpurifier": "^4.17.0",
"geocoder-php/google-maps-provider": "^4.7.1",
"ifsnop/mysqldump-php": "^2.12",
"knplabs/github-api": "^3.12.0",
"league/csv": "^9.16.0",
"monolog/monolog": "^3.10.0",
"php-http/guzzle7-adapter": "^1.0.0",
"php-http/message": "^1.11.1",
"perplorm/perpl": "^2.6.0",
"phpmailer/phpmailer": "^7.0.2",
"pragmarx/google2fa": "^9.0.0",
"setasign/fpdf": "^1.8.6",
"slim/http-cache": "^1.1.0",
"slim/php-view": "^3.2.0",
"slim/psr7": "^1.7",
"slim/slim": "^4.15.0",
"symfony/translation": "^5.4.35",
"twig/twig": "^3.20.0",
"vonage/client": "^4.3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.6",
"rector/rector": "^2.0.9",
"squizlabs/php_codesniffer": "^3.11.3"
},
"replace": {
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.org"
}
"name": "churchcrm/crm",
"description": "Free Church CRM Software",
"license": "MIT",
"type": "project",
"version": "7.0.1",
"keywords": ["church", "crm"],
"authors": [
{
"name": "George Dawoud",
"role": "Lead Developer"
}
],
"homepage": "https://churchcrm.io",
"support": {
"email": "info@churchcrm.io",
"issues": "https://github.com/ChurchCRM/CRM/issues",
"chat": "https://gitter.im/ChurchCRM/CRM",
"source": "https://github.com/ChurchCRM/CRM",
"docs": "https://github.com/ChurchCRM/CRM/wiki"
},
"require": {
"php": ">=8.4",
"ext-PDO": "*",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-gettext": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-session": "*",
"ext-sodium": "*",
"ext-zip": "*",
"ext-zlib": "*",
"azuyalabs/yasumi": "^2.7.0",
"defuse/php-encryption": "^2.4.0",
"drewm/mailchimp-api": "^2.5.4",
"endroid/qr-code": "^6.1.3",
"ezyang/htmlpurifier": "^4.17.0",
"geocoder-php/google-maps-provider": "^4.7.1",
"ifsnop/mysqldump-php": "^2.12",
"knplabs/github-api": "^3.12.0",
"league/csv": "^9.16.0",
"monolog/monolog": "^3.10.0",
"php-http/guzzle7-adapter": "^1.0.0",
"php-http/message": "^1.11.1",
"perplorm/perpl": "^2.6.0",
"phpmailer/phpmailer": "^7.0.2",
"pragmarx/google2fa": "^9.0.0",
"setasign/fpdf": "^1.8.6",
"slim/http-cache": "^1.1.0",
"slim/php-view": "^3.2.0",
"slim/psr7": "^1.7",
"slim/slim": "^4.15.0",
"symfony/translation": "^5.4.35",
"twig/twig": "^3.20.0",
"vonage/client": "^4.3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.6",
"rector/rector": "^2.0.9",
"squizlabs/php_codesniffer": "^3.11.3"
},
"replace": {
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.org"
}
},
"autoload": {
"psr-4": {
"ChurchCRM\\": "ChurchCRM/"
},
"autoload": {
"psr-4": {
"ChurchCRM\\": "ChurchCRM/"
},
"classmap": [
"ChurchCRM/"
]
"classmap": ["ChurchCRM/"]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"platform": {
"php": "8.4"
},
"sort-packages": true
"platform": {
"php": "8.4"
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"orm-gen": "php vendor/bin/propel --config-dir=../orm model:build",
"sql-gen": "php vendor/bin/propel --config-dir=../orm sql:build",
"graph-viz": "php vendor/bin/propel --config-dir=../orm graphviz:generate",
"datadictionary": "php vendor/bin/propel --config-dir=../orm datadictionary:generate",
"post-autoload-dump": [
"@orm-gen"
]
}
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"orm-gen": "php vendor/bin/propel --config-dir=../orm model:build",
"sql-gen": "php vendor/bin/propel --config-dir=../orm sql:build",
"graph-viz": "php vendor/bin/propel --config-dir=../orm graphviz:generate",
"datadictionary": "php vendor/bin/propel --config-dir=../orm datadictionary:generate",
"post-autoload-dump": ["@orm-gen"]
}
}
Loading