=== Eve Online Pheal API ===
Requires at least: 3.2
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=tumeski%40gmail%2ecom&lc=US&item_name=Eve%20wordpress%20plugins&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
Tested up to: 3.5.1
Stable tag: 1.0
Contributors:  Tumeski, Peter Petermann, Daniel Hoffend
Tags: eve, api, class, eve online
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

== Description ==

Do Eve Online related API calls through PHP. Easy to use and fast.

This handy class can be used as part of any of your projects.

Install this plugin and start calling it where you need.

== Installation ==

1. Upload the files to the `/wp-content/plugins/eve-phealapi` directory.
2. Activate the plugin through the 'Plugins' menu in WordPress.
3. Use it anywhere on your WordPress site.
4. More info from `wp-content/plugins/eve-phealapi/phealclass/README.md` or https://github.com/ppetermann/pheal/blob/master/README.md

Example:
`<?php 
$PhealEveAPI = new PhealEveApi();
$return = $PhealEveAPI->QueryAPI($APIKeyID, $APIVCode);
$result = $return->Characters();
foreach($result->characters as $character) {
  echo $character->name;
}
?>`

And there you would have all your characters name printed out.

== Important Notes ==

= Show support for Pheal API =

Original author of Pheal API itself,
https://github.com/ppetermann/pheal/
http://devedge.eu/project/pheal/
Copyright (C) 2010-2012 by Peter Petermann All rights reserved.

== Changelog ==
= 1.0 =
* Base version.