Skip to content

Commit fea1d23

Browse files
Rewriting ARCANESOFT (v4)
* using Laravel v8.x
1 parent 2c24885 commit fea1d23

783 files changed

Lines changed: 40186 additions & 4218 deletions

File tree

Some content is hidden

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

.editorconfig

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# This file is for unifying the coding style for different editors and IDEs
2-
# editorconfig.org
3-
41
root = true
52

63
[*]
7-
end_of_line = lf
84
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
97
indent_style = space
108
indent_size = 4
119
trim_trailing_whitespace = true
12-
insert_final_newline = true
1310

1411
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
1515
indent_size = 2

.gitattributes

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
/_docs export-ignore
2-
/tests export-ignore
3-
/.editorconfig export-ignore
4-
/.gitattributes export-ignore
5-
/.gitignore export-ignore
6-
/.scrutinizer.yml export-ignore
7-
/.travis.yml export-ignore
8-
/CONTRIBUTING.md export-ignore
9-
/phpunit.xml.dist export-ignore
1+
* text=auto
2+
3+
/.github export-ignore
4+
/_docs export-ignore
5+
/tests export-ignore
6+
.editorconfig export-ignore
7+
.gitattributes export-ignore
8+
.gitignore export-ignore
9+
.scrutinizer.yml export-ignore
10+
.travis.yml export-ignore
11+
phpcs.xml.dist export-ignore
12+
phpunit.xml.dist export-ignore
13+
CONTRIBUTING.md export-ignore

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/build/
22
/vendor/
3-
/composer.lock
43
/composer.phar
4+
/composer.lock

.scrutinizer.yml

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

.travis.yml

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

CONTRIBUTING.md

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

LICENSE.md

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

README.md

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

assets/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/coverage
2+
/node_modules
3+
npm-debug.log
4+
yarn-error.log

assets/jest.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
preset: 'ts-jest',
3+
clearMocks: true,
4+
testEnvironment: 'node',
5+
testMatch: [
6+
"**/tests/**/?(*.)+(spec|test).[jt]s?(x)"
7+
],
8+
};

0 commit comments

Comments
 (0)