gridonic/princexml-php

This package is abandoned and no longer maintained. No replacement package was suggested.

PrinceXML PHP5 wrapper converted to follow the PSR-0 standard.

Maintainers

👁 gridonic

Package info

github.com/gridonic/PrinceXMLPhp

pkg:composer/gridonic/princexml-php

Statistics

Installs: 335 338

Dependents: 5

Suggesters: 0

Stars: 8

Open Issues: 2

1.2.1 2017-04-20 09:36 UTC

Requires

  • php: >=5.3.0

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT c4441d82c50efa7635ab46eee01e03f70e11a53b

xmlprincexml

This package is not auto-updated.

Last update: 2026-05-23 22:07:22 UTC


README

👁 Build Status
👁 Latest Stable Version
👁 Total Downloads
👁 License

PrinceXML PHP5 wrapper, converted to follow PSR-0 conventions.

Fetch

The recommended way to install PrinceXMLPhp is through composer.

Just create a composer.json file for your project:

{
 "require": {
 "gridonic/princexml-php": "*"
 }
}

And run these two commands to install it:

$ wget http://getcomposer.org/composer.phar
$ php composer.phar install

Now you can add the autoloader, and you will have access to the library:

<?php
require 'vendor/autoload.php';

Usage

<?php
use PrinceXMLPhp\PrinceWrapper;

$prince = new PrinceWrapper('/path/to/prince/binary');

// for instance methods, see the original library documentation
// @see lib/readme.html

License

The PrinceXMLPhp wrapper is licensed under the MIT license. The original library from is taken from the Prince Website and subject to the license by YesLogic Pty. Ltd. A Github repository for the original library can be found at https://github.com/yeslogic/prince-tools.