46
.scrutinizer.yml
Normal file
46
.scrutinizer.yml
Normal file
@@ -0,0 +1,46 @@
|
||||
build:
|
||||
environment:
|
||||
node: v8.11.2
|
||||
nodes:
|
||||
analysis:
|
||||
project_setup:
|
||||
override:
|
||||
- 'true'
|
||||
tests:
|
||||
override:
|
||||
- php-scrutinizer-run
|
||||
-
|
||||
command: phpcs-run
|
||||
use_website_config: true
|
||||
- js-scrutinizer-run
|
||||
tests: true
|
||||
tests:
|
||||
override:
|
||||
-
|
||||
command: 'vendor/bin/phpunit --exclude-group integration --coverage-clover=unit tests/'
|
||||
coverage:
|
||||
file: 'unit'
|
||||
format: 'clover'
|
||||
-
|
||||
command: 'vendor/bin/phpunit --group integration --coverage-clover=integration tests/'
|
||||
coverage:
|
||||
file: 'integration'
|
||||
format: 'clover'
|
||||
|
||||
filter:
|
||||
excluded_paths:
|
||||
- 'tests/*'
|
||||
- 'bin/*'
|
||||
- '*/build/*'
|
||||
- 'node_modules/*'
|
||||
- 'public/*'
|
||||
- 'var/*'
|
||||
- 'vendor/*'
|
||||
checks:
|
||||
php: true
|
||||
javascript: true
|
||||
coding_style:
|
||||
php:
|
||||
spaces:
|
||||
around_operators:
|
||||
concatenation: true
|
||||
15
README.md
15
README.md
@@ -2,14 +2,19 @@
|
||||
|
||||
Kimai v2 - the reloaded open source Time-Tracking application.
|
||||
|
||||
[](https://travis-ci.org/kevinpapst/kimai2)
|
||||
[](https://travis-ci.org/kevinpapst/kimai2)
|
||||
[](https://scrutinizer-ci.com/g/kevinpapst/kimai2/?branch=master)
|
||||
[](https://scrutinizer-ci.com/g/kevinpapst/kimai2/?branch=master)
|
||||
[](https://scrutinizer-ci.com/g/kevinpapst/kimai2/build-status/master)
|
||||
|
||||
## Introduction
|
||||
|
||||
This is (or will be in the future, currently a lot of features are still missing) the reloaded version of the open source time-tracking application [Kimai](http://www.kimai.org).
|
||||
This is the reloaded version of the open source time-tracking application [Kimai](http://www.kimai.org).
|
||||
|
||||
It is based on a lot of great PHP components. Special thanks to:
|
||||
- [Symfony Framework 4](https://github.com/symfony/symfony)
|
||||
Right now its in an early development phase, as a some important features from Kimai v1 are missing.
|
||||
|
||||
Kimai is based on a lot of great frameworks. Special thanks to:
|
||||
- [Symfony v4](https://github.com/symfony/symfony)
|
||||
- [Doctrine](https://github.com/doctrine/)
|
||||
- [AdminThemeBundle](https://github.com/avanzu/AdminThemeBundle/) (based on [AdminLTE](https://github.com/almasaeed2010/AdminLTE/))
|
||||
|
||||
@@ -178,4 +183,4 @@ All available Kimai 2 bundles can be found at the [Kimai recipes](https://github
|
||||
If you want to develop for Kimai 2 please read the following documentation:
|
||||
|
||||
- an example on how to extend Kimai 2 can be found in this [GitHub repository](https://github.com/kevinpapst/kimai2-invoice)
|
||||
- the developer documentation can be found at [var/docs/developers.md](var/docs/developers.md) both on GitHub and your local installation
|
||||
- the [developer documentation](var/docs/developers.md) is available both on GitHub and your local installation
|
||||
|
||||
@@ -36,8 +36,10 @@
|
||||
<directory suffix=".php">src/</directory>
|
||||
<directory suffix=".php">templates/</directory>
|
||||
<exclude>
|
||||
<directory suffix=".php">vendor/</directory>
|
||||
<directory suffix=".php">public/</directory>
|
||||
<directory suffix=".php">tests/</directory>
|
||||
<directory suffix=".php">var/</directory>
|
||||
<directory suffix=".php">vendor/</directory>
|
||||
</exclude>
|
||||
</whitelist>
|
||||
</filter>
|
||||
|
||||
Reference in New Issue
Block a user