Skip to content

Commit

Permalink
Updated Composer.json and plugin meta
Browse files Browse the repository at this point in the history
  • Loading branch information
shinde-rahul committed Dec 29, 2023
1 parent e8cb93e commit dbb2e25
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 23 deletions.
11 changes: 1 addition & 10 deletions Config/config.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
<?php

/*
* @copyright 2016 Mautic Contributors. All rights reserved
* @author Mautic
*
* @link http://mautic.org
*
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/

return [
'name' => 'GoTo Integration by Leuchtfeuer',
'description' => 'Enables integration with Mautic supported GoTo collaboration products.',
'version' => '3.0.0',
'version' => '4.0.0',
'author' => 'Leuchtfeuer Digital Marketing GmbH',
'routes' => [
'public' => [
Expand Down
51 changes: 38 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,46 @@
{
"name": "leuchtfeuer/mautic-go-to-bundle",
"description": "This is version specific to Mautic 3.3",
"description": "Enables integration with Mautic supported GoTo collaboration products.",
"type": "mautic-plugin",
"version": "4.4.1",
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"rector/rector": "^0.13.10"
},
"license": "GPL-3.0-or-later",
"keywords": [
"mautic",
"plugin",
"integration"
],
"extra": {
"install-directory-name": "LeuchtfeuerGoToBundle"
},
"minimum-stability": "dev",
"require": {
"php": ">=8.0.0",
"mautic/core-lib": "^5.0"
},
"scripts": {
"test": [
"@phpunit",
"@csfixer"
],
"quicktest": [
"@unit",
"@csfixer"
],
"phpunit": "../../bin/phpunit -d --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=all",
"unit": "../../bin/phpunit -d --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=unit",
"functional": "../../bin/phpunit -d --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=functional",
"coverage": "../../bin/phpunit -d --bootstrap ../../vendor/autoload.php --configuration phpunit.xml --fail-on-warning --testsuite=all --coverage-text --coverage-html=Tests/Coverage",
"csfixer": "../../bin/php-cs-fixer fix . -v --dry-run --diff --using-cache=no --config=../../.php-cs-fixer.php",
"fixcs": "../../bin/php-cs-fixer fix . -v --using-cache=no --config=../../.php-cs-fixer.php",
"phpstan": "[ ! -f ../../var/cache/test/AppKernelTestDebugContainer.xml ] && (echo 'Building test cache ...'; APP_ENV=test APP_DEBUG=1 ../../bin/console > /dev/null 2>&1); php -d memory_limit=4G ../../bin/phpstan analyse ."
},
"authors": [
{
"name": "Max Rösch",
"email": "github@elbebass.com"
"name": "Leuchtfeuer Digital Marketing GmbH",
"email": "hello@Leuchtfeuer.com"
},
{
"name": "Rahul Shinde",
"email": "shinde.r.a@gmail.com"
}
],
"require": {},
"scripts": {
"cs-fix": "./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --using-cache no --show-progress dots -v"
}
]
}

0 comments on commit dbb2e25

Please sign in to comment.