mirror of
https://github.com/filegator/filegator.git
synced 2025-08-07 03:36:42 +02:00
cleanup
This commit is contained in:
@@ -1 +0,0 @@
|
||||
VUE_APP_API_ENDPOINT='http://localhost:8081/?r='
|
@@ -1 +0,0 @@
|
||||
VUE_APP_API_ENDPOINT=
|
@@ -1 +0,0 @@
|
||||
frontend/*
|
32
.gitignore
vendored
32
.gitignore
vendored
@@ -1,32 +0,0 @@
|
||||
/node_modules
|
||||
/vendor
|
||||
/dist/css
|
||||
/dist/js
|
||||
/dist/main.html
|
||||
|
||||
/configuration.php
|
||||
|
||||
/tests/backend/coverage
|
||||
/tests/backend/tmp/repository/*
|
||||
/tests/frontend/e2e/videos/
|
||||
/tests/frontend/e2e/screenshots/
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Cache files
|
||||
.*.cache
|
||||
.couscous
|
||||
|
||||
# Editor directories and files
|
||||
.DS_Store
|
||||
tags
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw*
|
17
.php_cs
17
.php_cs
@@ -1,17 +0,0 @@
|
||||
<?php
|
||||
|
||||
$finder = PhpCsFixer\Finder::create()
|
||||
->exclude('vendor')
|
||||
->in(__DIR__)
|
||||
;
|
||||
|
||||
return PhpCsFixer\Config::create()
|
||||
->setUsingCache(false)
|
||||
->setRules([
|
||||
'@PhpCsFixer' => true,
|
||||
'yoda_style' => null,
|
||||
'not_operator_with_successor_space' => true,
|
||||
'php_unit_test_class_requires_covers' => false,
|
||||
])
|
||||
->setFinder($finder)
|
||||
;
|
22
.travis.yml
22
.travis.yml
@@ -1,22 +0,0 @@
|
||||
language: php
|
||||
|
||||
php:
|
||||
- 7.1.3
|
||||
- 7.2
|
||||
- 7.3
|
||||
|
||||
before_script:
|
||||
- cp configuration_sample.php configuration.php
|
||||
- composer self-update
|
||||
- composer install --no-interaction
|
||||
|
||||
script:
|
||||
- vendor/bin/phpunit --coverage-clover=coverage.xml
|
||||
|
||||
after_success:
|
||||
- bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
# Installs Sensiolabs security checker to check against unsecure libraries
|
||||
- php -r "readfile('http://get.sensiolabs.org/security-checker.phar');" > security-checker
|
||||
- chmod +x security-checker
|
||||
- ./security-checker security:check
|
18
LICENSE
18
LICENSE
@@ -1,18 +0,0 @@
|
||||
Couscous
|
||||
|
||||
Copyright (C) Matthieu Napoli
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
||||
associated documentation files (the "Software"), to deal in the Software without restriction,
|
||||
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial
|
||||
portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
||||
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 176 KiB |
Reference in New Issue
Block a user