Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
PHP : Refactor (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
koromerzhin authored Apr 25, 2023
1 parent c7b742a commit 25671a7
Show file tree
Hide file tree
Showing 555 changed files with 12,973 additions and 10,482 deletions.
16 changes: 16 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"ignorePaths": [
"**/node_modules/**",
"**/vscode-extension/**",
"**/.git/**",
"**/.pnpm-lock.json",
".vscode",
"megalinter",
"package-lock.json",
"report"
],
"language": "en",
"noConfigSearch": true,
"words": ["megalinter", "oxsecurity"],
"version": "0.2"
}
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ jobs:
run: npm run doctrine:schema:update
- name: 'Run the fixtures'
run: npm run doctrine:fixtures
- name: 'Install Labstag'
run: npm run cmd:labstag:all
- name: Run Acceptance Tests
run: npm run test:behat
- name: Cypress run
Expand Down
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
!apps/bin/console
!docker-compose-lampy.yml
.env
/apps/*.cache
/apps/.env
/apps/.phpcs-cache
/apps/*.cache
apps/.phpdoc
apps/*.phar
apps/.phpdoc
apps/bin/
apps/public/assets
apps/public/docs
apps/public/uploads
docker-compose-*.yml
!docker-compose-lampy.yml
mariadb
node_modules
report
report
16 changes: 16 additions & 0 deletions .jscpd.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"threshold": 2,
"reporters": ["html", "markdown"],
"ignore": [
"**/node_modules/**",
"**/.git/**",
"apps/src/**/.gitignore",
"**/.rbenv/**",
"**/.venv/**",
"**/*cache*/**",
"**/.github/**",
"**/.idea/**",
"**/report/**",
"**/*.svg"
]
}
1 change: 0 additions & 1 deletion .vscode/configurationCache.log

This file was deleted.

8 changes: 0 additions & 8 deletions .vscode/dryrun.log

This file was deleted.

41 changes: 40 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
{
"makefile.extensionOutputFolder": "./.vscode"

"files.exclude": {
"**/apps/var/cache": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true
},
"search.exclude": {
"**/apps/var/cache": true,
"**/apps/vendor": true,
"**/node_modules": true
},
"files.watcherExclude": {
"**/apps/var/cache": true,
"**/apps/vendor": true,
"**/node_modules": true
},
"intelephense.files.exclude": [
"**/.git/**",
"**/.svn/**",
"**/.hg/**",
"**/CVS/**",
"**/.DS_Store/**",
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**/{Tests,tests}/**",
"**/.history/**",
"**/vendor/**/vendor/**",
"**/apps/var/cache/**",
],
"php.files.exclude": [
"**/node_modules/**"
"**/apps/var/cache/**"
],
"php.executablePath": "/bin/php",
"phpstan.binPath": "apps/phpstan.phar",
"phpstan.configFile": "apps/phpstan.neon"
}
Loading

0 comments on commit 25671a7

Please sign in to comment.