-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(chore) cleans up project structure and removes symbolic links usage
- Loading branch information
1 parent
95a0251
commit c917e1d
Showing
37 changed files
with
555 additions
and
531 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
engines: | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
- php | ||
fixme: | ||
enabled: true | ||
phpmd: | ||
enabled: true | ||
ratings: | ||
paths: | ||
- "**.php" | ||
exclude_paths: [] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
repo_token: c1DEnhEDEsdeHDUepRI24RibVJ6yDw2kN |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 8 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.txt] | ||
indent_size = 2 | ||
|
||
[*.md] | ||
indent_size = 2 | ||
trim_trailing_whitespace = false | ||
|
||
[*.html] | ||
indent_size = 4 | ||
|
||
[*.json] | ||
indent_size = 4 | ||
|
||
[*.yml] | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
documents/api/ | ||
private/ | ||
sandbox/ | ||
composer.lock | ||
.idea | ||
/.idea | ||
/*.code-workspace | ||
/composer.lock | ||
/doc/api/ | ||
/private/ | ||
/sandbox/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
build: | ||
environment: | ||
php: | ||
version: 8.1.24 | ||
tests: | ||
override: | ||
- | ||
command: ./support/init && ./support/test && ./support/coverage clover-code-coverage | ||
coverage: | ||
file: 'sandbox/code-coverage-report/clover.xml' | ||
format: 'php-clover' | ||
cache: | ||
directories: | ||
- sandbox/composer/ | ||
filter: | ||
paths: | ||
- source/ | ||
excluded_paths: | ||
- sandbox/ | ||
- specs/ | ||
- support/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
language: php | ||
php: | ||
- 8.1 | ||
- 8.2 | ||
cache: | ||
directories: | ||
- sandbox/composer/ | ||
install: | ||
- composer self-update | ||
- git config --global github.accesstoken 21fd5f444e024f66f292461ca7ea7243f63a200d | ||
- ./support/init | ||
script: | ||
- ./support/test | ||
after_script: | ||
- ./support/coveralls "$TRAVIS_JOB_ID" | ||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"set wildignore+=sandbox/** | ||
|
||
if ! exists('g:CommandTWildIgnore') | ||
let g:CommandTWildIgnore='' | ||
endif | ||
|
||
let g:CommandTWildIgnore.=",sandbox/**" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.