Skip to content

Commit 73c2731

Browse files
authored
Add files via upload
1 parent 53e9285 commit 73c2731

3 files changed

Lines changed: 78 additions & 0 deletions

File tree

.gitattributes

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Force LF line endings
2+
* text=auto eol=lf
3+
4+
# Set file types
5+
*.php text
6+
*.sh text eol=lf
7+
*.md text
8+
*.yml text
9+
*.json text
10+
*.xml text
11+
*.env text
12+
13+
# Exclude tests and dev files from export
14+
/tests export-ignore
15+
phpunit.xml export-ignore
16+
phpcs.xml export-ignore
17+
php-cs-fixer.dist.php export-ignore
18+
Makefile export-ignore
19+
.dockerignore export-ignore
20+
composer.lock export-ignore
21+
22+
README.md export-ignore
23+
CHANGELOG.md export-ignore
24+

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.env
2+
.env.local
3+
.env.*.local
4+
/vendor/
5+
/node_modules/
6+
/.idea/
7+
/.vscode/
8+
.DS_Store
9+
*.log
10+
*.cache
11+
12+
docker-compose.override.yml
13+
*.pid
14+
15+
composer.lock
16+
17+
.phpunit.result.cache
18+
/tests/output/
19+
20+
data/**/lang.txt
21+
data/**/user_config.json
22+
data/**/*.sqlite
23+
24+
/build/
25+
/dist/
26+
27+
*.bak
28+
*.swp
29+
*.swo
30+
31+
sessions
32+
docs_md
33+
session.mad
34+
*.madeline
35+
*.madeline.*
36+
madeline.phar
37+
madeline.phar.version
38+
madeline.php
39+
40+
*.save
41+
*.save.1
42+
*.save.*

.php-cs-fixer.dist.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
$finder = PhpCsFixer\Finder::create()
4+
->in(__DIR__)
5+
->exclude('vendor');
6+
7+
return (new PhpCsFixer\Config())
8+
->setRules([
9+
'@PSR12' => true,
10+
'array_syntax' => ['syntax' => 'short'],
11+
])
12+
->setFinder($finder);

0 commit comments

Comments
 (0)