Skip to content

Commit fc56af6

Browse files
committed
BREAKING: update to clean app
1 parent 8d3d86c commit fc56af6

Some content is hidden

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

49 files changed

+747
-2030
lines changed

.dockerignore

-45
This file was deleted.

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml,json}]
15+
indent_size = 2

.env.example

-20
This file was deleted.

.github/FUNDING.yml

-2
This file was deleted.

.github/dependabot.yml

-39
This file was deleted.

.github/workflows/docker-publish.yml

-93
This file was deleted.

.github/workflows/lint.yml

-30
This file was deleted.

.github/workflows/php.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: PHP Composer
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- name: Validate composer.json and composer.lock
18+
run: composer validate --strict
19+
20+
- name: Cache Composer packages
21+
id: composer-cache
22+
uses: actions/cache@v2
23+
with:
24+
path: vendor
25+
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
26+
restore-keys: |
27+
${{ runner.os }}-php-
28+
29+
- name: Install dependencies
30+
run: composer install --prefer-dist --no-progress
31+
32+
- name: Check code style
33+
run: composer test:lint
34+
35+
- name: Run test suite
36+
run: composer test:unit

.github/workflows/tests.yml

-32
This file was deleted.

.github/workflows/update-changelog.yml

-31
This file was deleted.

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
.phpunit.result.cache
33
.composer/
44
vendor/
5-
logs/
5+
composer.lock

0 commit comments

Comments
 (0)