mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-15 14:18:19 +00:00
Added new lines [skip ci]
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
src_dir: .
|
src_dir: .
|
||||||
coverage_clover: tests/_output/coverage.xml
|
coverage_clover: tests/_output/coverage.xml
|
||||||
json_path: tests/_output/coveralls-upload.json
|
json_path: tests/_output/coveralls-upload.json
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,7 +3,6 @@
|
|||||||
composer.phar
|
composer.phar
|
||||||
.env.*.php
|
.env.*.php
|
||||||
.env.php
|
.env.php
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
.idea/
|
.idea/
|
||||||
tests/_output/*
|
tests/_output/*
|
||||||
|
|||||||
@@ -13,4 +13,4 @@ script:
|
|||||||
- php vendor/bin/codecept run --coverage --coverage-xml
|
- php vendor/bin/codecept run --coverage --coverage-xml
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
- php vendor/bin/coveralls
|
- php vendor/bin/coveralls
|
||||||
|
|||||||
@@ -70,4 +70,4 @@ I have the basics up and running. Test coverage is currently coming, slowly.
|
|||||||
Although I have not checked extensively, some forms and views have CSRF vulnerabilities. This is because not all
|
Although I have not checked extensively, some forms and views have CSRF vulnerabilities. This is because not all
|
||||||
views escape all characters by default. Will be fixed.
|
views escape all characters by default. Will be fixed.
|
||||||
|
|
||||||
Questions, ideas or other things to contribute? [Let me know](https://github.com/JC5/firefly-iii/issues/new)!
|
Questions, ideas or other things to contribute? [Let me know](https://github.com/JC5/firefly-iii/issues/new)!
|
||||||
|
|||||||
2
app/config/.gitignore
vendored
2
app/config/.gitignore
vendored
@@ -1,4 +1,4 @@
|
|||||||
local/
|
local/
|
||||||
laptop/
|
laptop/
|
||||||
vagrant/
|
vagrant/
|
||||||
production/
|
production/
|
||||||
|
|||||||
@@ -295,7 +295,7 @@ class Report implements ReportInterface
|
|||||||
$end = clone $date;
|
$end = clone $date;
|
||||||
$end->endOfMonth();
|
$end->endOfMonth();
|
||||||
|
|
||||||
$set = \PiggyBank::
|
\PiggyBank::
|
||||||
leftJoin('accounts', 'accounts.id', '=', 'piggy_banks.account_id')
|
leftJoin('accounts', 'accounts.id', '=', 'piggy_banks.account_id')
|
||||||
->where('accounts.user_id', \Auth::user()->id)
|
->where('accounts.user_id', \Auth::user()->id)
|
||||||
->where('repeats', 0)
|
->where('repeats', 0)
|
||||||
|
|||||||
2
app/storage/.gitignore
vendored
2
app/storage/.gitignore
vendored
@@ -1 +1 @@
|
|||||||
services.manifest
|
services.manifest
|
||||||
|
|||||||
2
app/storage/cache/.gitignore
vendored
2
app/storage/cache/.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
*
|
*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|||||||
2
app/storage/debugbar/.gitignore
vendored
2
app/storage/debugbar/.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
*
|
*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|||||||
2
app/storage/logs/.gitignore
vendored
2
app/storage/logs/.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
*
|
*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|||||||
2
app/storage/meta/.gitignore
vendored
2
app/storage/meta/.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
*
|
*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|||||||
2
app/storage/sessions/.gitignore
vendored
2
app/storage/sessions/.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
*
|
*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|||||||
2
app/storage/views/.gitignore
vendored
2
app/storage/views/.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
*
|
*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ coverage:
|
|||||||
- app/models/*
|
- app/models/*
|
||||||
- app/lib/FireflyIII/*
|
- app/lib/FireflyIII/*
|
||||||
exclude:
|
exclude:
|
||||||
- app/controllers/BaseController.php
|
- app/controllers/BaseController.php
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
No vendor/provider stylesheets here at the moment. But this is where you could put things like twitter bootstrap, gumby, font awesome...
|
No vendor/provider stylesheets here at the moment. But this is where you could put things like twitter bootstrap, gumby, font awesome...
|
||||||
|
|||||||
@@ -7,4 +7,4 @@
|
|||||||
class_name: AcceptanceTester
|
class_name: AcceptanceTester
|
||||||
modules:
|
modules:
|
||||||
enabled:
|
enabled:
|
||||||
- AcceptanceHelper
|
- AcceptanceHelper
|
||||||
|
|||||||
@@ -17,4 +17,4 @@ modules:
|
|||||||
dump: tests/_data/dump.sql
|
dump: tests/_data/dump.sql
|
||||||
Laravel4:
|
Laravel4:
|
||||||
environment: 'testing'
|
environment: 'testing'
|
||||||
filters: false
|
filters: false
|
||||||
|
|||||||
Reference in New Issue
Block a user