cleaned up the file hiearchy, added icons to asset types. fixed edit client net terms, added change photo for contacts, added some more options to settings

This commit is contained in:
root
2019-06-11 19:37:42 -04:00
parent f06a66887d
commit a5b7004e8a
1013 changed files with 120 additions and 183718 deletions

View File

@@ -1,36 +0,0 @@
Contributing
============
Issue tracker
-------------
The Issue tracker serves mainly as a place to report bugs and request new features.
Please do not abuse it as a general questions or troubleshooting location.
For these questions you can always use the
[mpdf tag](https://stackoverflow.com/questions/tagged/mpdf) at [Stack Overflow](https://stackoverflow.com/).
* Please provide a small example in php/html that reproduces your situation
* Please report one feature or one bug per issue
* Failing to provide necessary information or not using the issue template may cause the issue to be closed without consideration.
Pull requests
-------------
Pull requests should be always based on the default [development](https://github.com/mpdf/mpdf/tree/development)
branch except for backports to older versions.
Some guidelines:
* Use an aptly named feature branch for the Pull request.
* Only files and lines affecting the scope of the Pull request must be affected.
* Make small, *atomic* commits that keep the smallest possible related code changes together.
* Code should be accompanied by a unit test testing expected behaviour.
* To be incorporated, the PR must contain a change in the CHANGELOG.md file describing itself
When updating a PR, do not create a new one, just `git push --force` to your former feature branch, the PR will
update itself.

View File

@@ -1,22 +0,0 @@
> Please use https://stackoverflow.com/questions/tagged/mpdf for all your general questions or troubleshooting!
> For contributing here, please see the guideline: https://github.com/mpdf/mpdf/blob/development/.github/CONTRIBUTING.md
>
> *Warning*: Failing to provide necessary information may cause the issue to be closed without consideration
### I found this bug / would like to have this new functionality
### This is mPDF and PHP version and environment (server/fpm/cli etc) I am using
### This is a PHP code snippet I use
```
<?php
```
### This is a HTML/CSS code snippet I use
```
```

View File

@@ -1,2 +0,0 @@
vendor/*
composer.lock

View File

@@ -1,50 +0,0 @@
language: php
dist: xenial
group: edge
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
matrix:
include:
- env: LINT=1
php: 7.1
#- env: COVERAGE=1
# php: 7.1
allow_failures:
- php: nightly
install:
- composer self-update
- echo "${TRAVIS_PHP_VERSION:0:3}"
- |
if [[ "${TRAVIS_PHP_VERSION:0:7}" == "nightly" ]]; then
composer install --ignore-platform-reqs
else
composer install
fi
script:
- |
if [[ "$LINT" == "1" ]]; then
./vendor/bin/phpcs -v --report-width=160 --standard=ruleset.xml --severity=1 --warning-severity=0 --extensions=php src utils tests
elif [[ "$COVERAGE" == "1" ]]; then
vendor/bin/phpunit --coverage-text
else
vendor/bin/phpunit
fi
notifications:
email:
on_success: change
on_failure: always