https://github.com/b13/pdfreactor
PHP wrapper library for PDFreactor
https://github.com/b13/pdfreactor
Last synced: 12 months ago
JSON representation
PHP wrapper library for PDFreactor
- Host: GitHub
- URL: https://github.com/b13/pdfreactor
- Owner: b13
- License: mit
- Created: 2017-07-26T05:31:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-26T05:31:23.000Z (almost 9 years ago)
- Last Synced: 2024-11-07T08:51:06.698Z (over 1 year ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 2
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RealObjects PDFreactor® PHP wrapper
PHP wrapper API for PDFreactor (PHP include, PHP sample), put into a composer-compatible library package which
autoloads the PDFreactor wrapper.
Used from PDFreactor.com / Version 9.0.9411.6, 2017-07-06
Please note that by installing and using PDFreactor itself (not the wrapper) you agree to the license, terms and
conditions of PDFreactor.com.
This package is not affiliated with RealObjects or PDFreactor.
## Usage
Use composer to install the library via `composer require b13/pdfreactor`.
In an ideal world, you then have your composer-based application and just use it like this:
$pdfReactor = new PDFreactor('http://yourServer:9423/service/rest');
or via .env logic
$pdfReactor = new PDFreactor(getenv('PDFREACTOR_API_ENDPOINT'));
as the class is already available via the composer autoloader.
The default example taken from PDFreactor can be found under example/sample.php.
## License
The PDFreactor wrapper library is licensed under MIT, see LICENSE file for more details.