Skip to content

Commit 9caa6a0

Browse files
authored
Merge pull request #15 from sunrise-php/release/v4.0.0
v4
2 parents 68b5a88 + fba3404 commit 9caa6a0

File tree

150 files changed

+992
-10778
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+992
-10778
lines changed

.circleci/config.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.editorconfig

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# More info at:
2-
# https://editorconfig.org/
3-
41
root = true
52

63
[*]
@@ -11,5 +8,5 @@ indent_size = 4
118
trim_trailing_whitespace = true
129
insert_final_newline = true
1310

14-
[*.yml]
11+
[*.{json,xml,xml.dist,yaml,yml}]
1512
indent_size = 2

.env.dist

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
APP_ENV=dev
2+
APP_NAME=app
3+
APP_VERSION=1.0.0
4+
5+
LOGGING_LEVEL=debug

.env.example

Lines changed: 0 additions & 47 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.gitignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
/.down
21
/.env
2+
/.idea
33
/.php_cs.cache
44
/.phpunit.result.cache
5-
/.rr.yml
5+
/composer.lock
66
/coverage.xml
77
/phpbench.json
88
/phpcs.xml
99
/phpunit.xml
10-
/cache/*
11-
/config/definitions/*.php.local
12-
/tests/db/*.sqlite
10+
/psalm.xml
11+
/var/cache/*
12+
/var/log/*
13+
/var/tmp/*
1314
/vendor/
1415
!.gitkeep

.rr.yml.example

Lines changed: 0 additions & 9 deletions
This file was deleted.

.scrutinizer.yml

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,36 @@
11
build:
2-
environment:
3-
php:
4-
version: '8.0'
5-
ini:
6-
'xdebug.mode': 'coverage'
2+
image: default-bionic
73
nodes:
84
analysis:
5+
environment:
6+
php: 8.3.16
97
tests:
108
override:
119
- php-scrutinizer-run
1210
coverage:
11+
environment:
12+
php: 8.3.16
1313
tests:
14-
before:
15-
- command: cp .env.example .env
1614
override:
17-
- command: php vendor/bin/phpunit --coverage-clover coverage.xml
15+
- command: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-clover coverage.xml
1816
coverage:
1917
file: coverage.xml
2018
format: clover
19+
php83:
20+
environment:
21+
php: 8.3.16
22+
tests:
23+
override:
24+
- command: composer test
25+
php82:
26+
environment:
27+
php: 8.2.27
28+
tests:
29+
override:
30+
- command: composer test
31+
php81:
32+
environment:
33+
php: 8.1.31
34+
tests:
35+
override:
36+
- command: composer test

0 commit comments

Comments
 (0)