https://github.com/gridonic/princexmlphp
PrinceXML PHP5 wrapper, converted to follow PSR-0 conventions.
https://github.com/gridonic/princexmlphp
Last synced: about 1 year ago
JSON representation
PrinceXML PHP5 wrapper, converted to follow PSR-0 conventions.
- Host: GitHub
- URL: https://github.com/gridonic/princexmlphp
- Owner: gridonic
- License: mit
- Created: 2012-06-01T16:22:28.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2017-04-20T09:37:52.000Z (about 9 years ago)
- Last Synced: 2024-11-14T14:44:31.844Z (over 1 year ago)
- Language: PHP
- Homepage: http://www.princexml.com/download/wrappers/
- Size: 43 KB
- Stars: 8
- Watchers: 11
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PrinceXMLPhp
============
[](https://travis-ci.org/gridonic/PrinceXMLPhp) [](https://packagist.org/packages/gridonic/princexml-php) [](https://packagist.org/packages/gridonic/princexml-php) [](https://packagist.org/packages/gridonic/princexml-php)
[PrinceXML PHP5 wrapper](http://www.princexml.com/download/wrappers), converted to follow PSR-0 conventions.
Fetch
-----
The recommended way to install PrinceXMLPhp is [through composer](http://packagist.org).
Just create a composer.json file for your project:
```JSON
{
"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