This commit is contained in:
Milos Stojanovic
2019-06-18 12:58:35 +02:00
parent 0be852f486
commit cd341db896
9 changed files with 0 additions and 92 deletions

View File

@@ -1 +0,0 @@
VUE_APP_API_ENDPOINT='http://localhost:8081/?r='

View File

@@ -1 +0,0 @@
VUE_APP_API_ENDPOINT=

View File

@@ -1 +0,0 @@
frontend/*

View File

32
.gitignore vendored
View File

@@ -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
View File

@@ -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)
;

View File

@@ -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
View File

@@ -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.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 176 KiB