Skip to content

Commit 61fa503

Browse files
committed
1.0-alpha-1
0 parents  commit 61fa503

File tree

11 files changed

+1937
-0
lines changed

11 files changed

+1937
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_style = tab
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
indent_size = 4
10+
11+
[*.yml]
12+
indent_style = space
13+
indent_size = 2

.github/workflows/php-lint.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: PHP Lint
2+
3+
on: [push]
4+
5+
jobs:
6+
PHPCS:
7+
name: PHPCS
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
12+
- name: Install dependencies
13+
run: |
14+
composer install --dev --prefer-dist --no-progress --no-suggest
15+
composer require --dev staabm/annotate-pull-request-from-checkstyle
16+
- name: Run phpcs
17+
run: ./vendor/bin/phpcs -q --report=checkstyle | ./vendor/bin/cs2pr --graceful-warnings

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# macOS Junk Files
2+
.DS_Store
3+
4+
# Composer
5+
/vendor
6+
7+
# Cypress
8+
cypress/screenshots
9+
cypress/videos
10+
11+
# NPM/Yarn
12+
/node_modules
13+
14+
# Transpiled/Built/Minified Files
15+
*.js.map
16+
*.min.js
17+
*.css.map
18+
*.min.css
19+
/dist
20+
/js/built
21+
22+
# Private Files (Personal or sensitive info to not version control)
23+
.env
24+
.envrc
25+
*.log
26+
_output
27+
results.xml

0 commit comments

Comments
 (0)