PHPackages                             mentos1386/opencrest - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. mentos1386/opencrest

AbandonedArchivedLibrary[API Development](/categories/api)

mentos1386/opencrest
====================

CREST Library for Eve Online

3.0.1(9y ago)3453[2 issues](https://github.com/mentos1386/OpenCrest/issues)MITPHPPHP ^7.0

Since Feb 20Pushed 9y ago1 watchersCompare

[ Source](https://github.com/mentos1386/OpenCrest)[ Packagist](https://packagist.org/packages/mentos1386/opencrest)[ RSS](/packages/mentos1386-opencrest/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (9)Dependencies (2)Versions (10)Used By (0)

OpenCrest
=========

[](#opencrest)

[![Latest Stable Version](https://camo.githubusercontent.com/4009575b2a524ab766e434a073f861a0e65d997514dcd65777bfbdf6e1c6acf0/68747470733a2f2f706f7365722e707567782e6f72672f6d656e746f73313338362f6f70656e63726573742f762f737461626c65)](https://packagist.org/packages/mentos1386/opencrest) [![Total Downloads](https://camo.githubusercontent.com/8df66d5c22e43ab683270f873d0e67012f1368300d4114077de5bb1068e63d9d/68747470733a2f2f706f7365722e707567782e6f72672f6d656e746f73313338362f6f70656e63726573742f646f776e6c6f616473)](https://packagist.org/packages/mentos1386/opencrest) [![Latest Unstable Version](https://camo.githubusercontent.com/e22c52fff9d3b52bceea333eb8e8445f2a53388f24e03796879ce5f8bd1406fb/68747470733a2f2f706f7365722e707567782e6f72672f6d656e746f73313338362f6f70656e63726573742f762f756e737461626c65)](https://packagist.org/packages/mentos1386/opencrest) [![License](https://camo.githubusercontent.com/62efb283349d49397f54ea49984ed48808a73f112cb5cece3af050a08651fecc/68747470733a2f2f706f7365722e707567782e6f72672f6d656e746f73313338362f6f70656e63726573742f6c6963656e7365)](https://github.com/mentos1386/OpenCrest/blob/master/LICENSE) [![Documentation Status](https://camo.githubusercontent.com/164686dc704b0bcae08d0853a9aa08ac03949cc50707fa2a6877f0afe1ae0c51/68747470733a2f2f72656164746865646f63732e6f72672f70726f6a656374732f6f70656e63726573742f62616467652f3f76657273696f6e3d6c6174657374)](http://opencrest.readthedocs.org/en/latest/?badge=latest) [![Code Climate](https://camo.githubusercontent.com/d9f6fac6df2f45f12721d09d2a017779c02324ba9b5c47f8502a0d32c6efdc5b/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f6d656e746f73313338362f4f70656e43726573742f6261646765732f6770612e737667)](https://codeclimate.com/github/mentos1386/OpenCrest) [![Test Coverage](https://camo.githubusercontent.com/c57437ae4554e67dbb88d2a5504eeb55d52fd87e8d0172f58f5a7122de6011d5/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f6d656e746f73313338362f4f70656e43726573742f6261646765732f636f7665726167652e737667)](https://codeclimate.com/github/mentos1386/OpenCrest/coverage) [![Build Status](https://camo.githubusercontent.com/41c7833745128c57d701e51a94b995068eb8b673c3ab704608c2364082d25cdc/68747470733a2f2f7472617669732d63692e6f72672f6d656e746f73313338362f4f70656e43726573742e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/mentos1386/OpenCrest)

EVE Online CREST PHP Library

Open Source PHP Library for using EVE Online CREST API

Shouldn't be used for production just yet, as CREST API lacks data. It's better to use XML API for now.

How to use
----------

[](#how-to-use)

```
use OpenCrest\OpenCrest;
$token = "Access Token you got from OAuth authentication | Required only for Authenticated resources";
OpenCrest::setToken($token);

// Get list of constellations
$constellations = OpenCrest::Constellations->get();

// You can then foreach list to get more details on constellations
foreach ($constellations as $constellation) {
    // This will make show($id) request for every object.
    //Beware, that OpenCrest::[something]->get() can be very long and that making get request on every item
    // will make alot of reqquests.
    var_dump($constellation->get);

}
// Get specific constellation
$id = 20000002;
$constellation = OpenCrest::Constellations->get($id);

// Same with planets
$id = 40000017;
$planet = OpenCrest::Planets->get($id);

// Or alliances
$id = 99000006;
$alliance = OpenCrest::Alliances->get($id)->description;

// Get list of alliances
$alliances = OpenCrest::Alliances->get();

// Go to specific page
$alliances = OpenCrest::Alliances->page(2);

// Go to next page
// Using allrady recived object to know which page is next.
$alliances = $alliances->nextPage();

// Go to previouse page
// Using allrady recived object to know which page is previous.
$alliances = $alliances->previousPage();
```

Endpoints Documentation
-----------------------

[](#endpoints-documentation)

[Documentation](https://github.com/mentos1386/OpenCrest/blob/master/src/Endpoints/README.md)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/mentos1386/OpenCrest/blob/master/LICENSE) for more information.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance7

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~18 days

Recently: every ~36 days

Total

9

Last Release

3632d ago

Major Versions

1.0.3 → 2.0.02016-02-23

2.0.1 → 3.0.0-beta2016-03-25

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1910649?v=4)[Tine Jozelj](/maintainers/mentos1386)[@mentos1386](https://github.com/mentos1386)

---

Top Contributors

[![mentos1386](https://avatars.githubusercontent.com/u/1910649?v=4)](https://github.com/mentos1386 "mentos1386 (55 commits)")

---

Tags

apiCRESTeveeveonline

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/mentos1386-opencrest/health.svg)

```
[![Health](https://phpackages.com/badges/mentos1386-opencrest/health.svg)](https://phpackages.com/packages/mentos1386-opencrest)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.7k371.6k6](/packages/theodo-group-llphant)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

563.5M11](/packages/checkout-checkout-sdk-php)[eveseat/seat

Simple Eve Api Tool

45719.4k](/packages/eveseat-seat)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
