Skip to content
Open
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ nbproject/
/apidoc/
error_log.txt
node_modules/
composer.lock
npm-debug.log
build/
localsettings.php
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: php
php:
- 7.1
- 7.2
- 7.3
- 8.2
- 8.3
- 8.4
install:
- composer self-update
- composer install --no-interaction --dev
Expand Down
23 changes: 12 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"type": "library",
"authors": [
{
"name": "Xenofon Spafaridis",
"email": "nohponex@gmail.com",
"homepage": "https://nohponex.gr"
"name": "Xenofon Spafaridis",
"email": "nohponex@gmail.com",
"homepage": "https://nohponex.gr"
},
{
"name": "Alex Kalliontzis",
Expand All @@ -26,27 +26,28 @@
}
},
"require": {
"php": "^7.1 || ^8.0.0",
"php": "^8.2",
"ext-json": "*",
"phramework/exceptions": "0.*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.2.3",
"php-coveralls/php-coveralls": "^2.0.0",
"codacy/coverage": "^1.0"
"phpunit/phpunit": "^12",
"squizlabs/php_codesniffer": "^3",
"php-coveralls/php-coveralls": "^2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"archive": {
"exclude": ["tests"]
"exclude": [
"tests"
]
},
"scripts": {
"test": [
"find src/ -name '*.php' -print0 | xargs -0 -L 1 php -l",
"find tests/ -name '*.php' -print0 | xargs -0 -L 1 php -l",
"phpunit; start=\"file://\";end=\"build/coverage/index.html\"; echo \"\nOpen $start$(pwd)/$end\" in browser..."
"phpunit --configuration phpunit.xml --coverage-text"
],
"lint": "phpcs -p -s --standard=PSR2 ./src"
}
}
}
Loading