Skip to content

Commit

Permalink
Merge pull request #19 from sunrise-php/release/v2.5.0
Browse files Browse the repository at this point in the history
v2.5.0
  • Loading branch information
fenric authored Apr 20, 2022
2 parents 28c7e46 + bdb5483 commit 80f234d
Show file tree
Hide file tree
Showing 51 changed files with 1,403 additions and 453 deletions.
17 changes: 13 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,32 @@ version: 2
jobs:
php74:
docker:
- image: circleci/php:7.4-cli-node-browsers
- image: cimg/php:7.4
steps:
- checkout
- run: php -v
- run: composer install --no-interaction --no-suggest --prefer-source
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php80:
docker:
- image: circleci/php:8.0-cli-node-browsers
- image: cimg/php:8.0
steps:
- checkout
- run: php -v
- run: composer install --no-interaction --no-suggest --prefer-source
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
php81:
docker:
- image: cimg/php:8.1
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text
workflows:
version: 2
build:
jobs:
- php74
- php80
- php81
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
/phpbench.json
/phpcs.xml
/phpunit.xml
/psalm.xml
/vendor/
3 changes: 2 additions & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
build:
image: default-bionic
environment:
php:
version: '8.0'
version: '8.1'
nodes:
analysis:
tests:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Sunrise // PHP
Copyright (c) 2021 Anatoly Nekhay

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 80f234d

Please sign in to comment.