mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 03:14:52 +00:00
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:
36
vendor/mpdf/mpdf/.github/CONTRIBUTING.md
vendored
36
vendor/mpdf/mpdf/.github/CONTRIBUTING.md
vendored
@@ -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.
|
||||
22
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE.md
vendored
22
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE.md
vendored
@@ -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
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
2
vendor/mpdf/mpdf/.gitignore
vendored
2
vendor/mpdf/mpdf/.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
vendor/*
|
||||
composer.lock
|
||||
50
vendor/mpdf/mpdf/.travis.yml
vendored
50
vendor/mpdf/mpdf/.travis.yml
vendored
@@ -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
|
||||
Reference in New Issue
Block a user