Skip to content

Commit

Permalink
⬆️ upgradeded dependencies
Browse files Browse the repository at this point in the history
🎨 php-cs-fixer, phpunit, travis

Signed-off-by: Bruno Meilick <b@bnomei.com>
  • Loading branch information
bnomei committed May 16, 2021
1 parent 565141d commit e4aab9e
Show file tree
Hide file tree
Showing 121 changed files with 7,063 additions and 14,289 deletions.
11 changes: 8 additions & 3 deletions .php_cs.dist → .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
<?php


$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->exclude('content')
->exclude('kirby')
->exclude('node_modules')
//->exclude('site/plugins')
->exclude('src')
->exclude('vendor')
->in(__DIR__)
;

return PhpCsFixer\Config::create()
return (new PhpCsFixer\Config())
->setRules([
'@PSR2' => true,
])
->setFinder($finder)
;
;
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: php
php: 7.2
php: 7.3
matrix:
fast_finish: true
install: composer install --no-interaction
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bnomei/kirby3-mailjet",
"description": "Send transactional SMS, transactional E-Mail and Campaigns with Mailjet",
"type": "kirby-plugin",
"version": "1.3.2",
"version": "1.3.3",
"license": "MIT",
"authors": [
{
Expand Down Expand Up @@ -39,22 +39,21 @@
"sort-packages": true
},
"require": {
"php": ">=7.2.0",
"php": ">=7.3.0",
"getkirby/composer-installer": "^1.1",
"mailjet/mailjet-apiv3-php": "^1.4.1"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"getkirby/cms": "^3.2",
"php-coveralls/php-coveralls": "^2.1",
"nunomaduro/phpinsights": "^1.8"
"getkirby/cms": "^3.5",
"php-coveralls/php-coveralls": "^2.4",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"analyze": "phpstan analyse classes",
"insights": "./vendor/bin/phpinsights -v",
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration ./phpunit.xml"
],
"dist": [
Expand Down

0 comments on commit e4aab9e

Please sign in to comment.