Skip to content

Commit 7f131a5

Browse files
authored
Merge pull request #36 from eug-L/dynamic-properties-deprecation
Fixed dynamic properties deprecation
2 parents bc791d4 + 6706d65 commit 7f131a5

File tree

6 files changed

+324
-597
lines changed

6 files changed

+324
-597
lines changed

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,15 @@
3131
"build": "composer run build:dev && composer run build:prod",
3232
"build:dev": "COMPOSER_VENDOR_DIR=vendor composer install",
3333
"build:prod": "COMPOSER_VENDOR_DIR=tawkto/vendor composer install --no-dev",
34-
"lint": "phpcs -p -s -v --runtime-set ignore_warnings_on_exit true .",
34+
"lint": "phpcs -p -s -v --ignore=tests/* --ignore=tmp/* --runtime-set ignore_warnings_on_exit true .",
3535
"lint:fix": "phpcbf -p -s -v .; err=$?; if [ $err -eq 1 ]; then exit 0; else exit $err; fi;",
3636
"package": "composer run clean && mkdir -p ./tmp/tawkto-live-chat && cp -r ./tawkto/* ./tmp/tawkto-live-chat && (cd ./tmp && zip -9 -rq ./tawkto-live-chat.zip ./tawkto-live-chat)",
3737
"clean": "rm -rf ./tmp"
3838
},
3939
"config": {
40-
"process-timeout": 0
40+
"process-timeout": 0,
41+
"allow-plugins": {
42+
"dealerdirect/phpcodesniffer-composer-installer": true
43+
}
4144
}
4245
}

0 commit comments

Comments
 (0)