Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create README.md #1

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# PDF GLPI plugin

[![License](https://img.shields.io/github/license/pluginsGLPI/pdf.svg?&label=License)](https://github.com/pluginsGLPI/pdf/blob/main/LICENSE)
[![Project Status: Active](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![GitHub release](https://img.shields.io/github/release/pluginsGLPI/pdf.svg)](https://github.com/pluginsGLPI/pdf/releases)
[![GitHub build](https://travis-ci.org/pluginsGLPI/pdf.svg?)](https://travis-ci.org/pluginsGLPI/pdf/)

![Screenshot](./docs/screenshots/pdf.gif)

This plugin allow you to select and export informations of an equipment to PDF file.
- equipment types from GLPI
- equipment types from some plugins
- additional data from some plugins
- one or many object(s) in a file

## Download

Releases can be donwloaded on [GitHub](https://github.com/PluginsGLPI/pdf/releases).

## Documentation

We maintain a detailed [documentation](http://glpi-plugins.rtfd.io/en/latest/pdf/index.html).

## Contact

For notices about major changes and general discussion of pdf, subscribe to the [/r/glpi](https://www.reddit.com/r/glpi/) subreddit.
You can also chat with us via [@glpi on Telegram](https://t.me/glpien).

## Professional Services

![GLPI Network](./docs/glpi_network.png "GLPI network")

The GLPI Network services are available through our [Partner's Network](http://www.teclib-edition.com/en/partners/).
We provide special training, bug fixes with editor subscription, contributions for new features, and more.

Obtain a personalized service experience, associated with benefits and opportunities.

## Contributing

* Open a ticket for each bug/feature so it can be discussed
* Follow [development guidelines](http://glpi-developer-documentation.readthedocs.io/en/latest/plugins/index.html)
* Refer to [GitFlow](http://git-flow.readthedocs.io/) process for branching
* Work on a new branch on your own fork
* Open a PR that will be reviewed by a developer

## Copying

* **Code**: you can redistribute it and/or modify it under the terms of the GNU General Public License ([AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.html)).
18 changes: 16 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
{
"require": {
"tecnickcom/tcpdf": "^6.4",
"glpi-project/tools": "^0.7.4"
"php": ">=7.4",
"symfony/yaml": "^5.4",
"tecnickcom/tcpdf": "^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"glpi-project/tools": "^0.7.4",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/phpstan": "^1.12"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.4.0"
},
"sort-packages": true
}
}
Loading
Loading