A fresh, clean Extended API for EVE SeAT.

Maintainers

Package info

github.com/1234nin4321/Extendd

pkg:composer/seat-extended/api

Statistics

Installs: 3

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-05-03 14:48 UTC

This package is auto-updated.

Last update: 2026-05-03 14:55:04 UTC


README

A fresh, clean Laravel package to extend the EVE SeAT API with detailed character information, including attributes and implants.

Features

  • Extended Character List: /api/extended/characters
  • Detailed Character Info: /api/extended/characters/{id}
  • Included Data:
    • Character Attributes (Intelligence, Perception, etc.)
    • Active Implants
    • Skillpoints (Total & Unallocated)
    • Wallet Balance
    • Affiliation (Corporation & Alliance)

Installation (Docker)

  1. Mount the package in your docker-compose.yml:

    services:
      seat:
        volumes:
          - ./Extendd:/var/www/seat/packages/seat-extended-api
  2. Add the repository to SeAT's composer.json:

    "repositories": [
        {
            "type": "path",
            "url": "packages/seat-extended-api"
        }
    ]
  3. Require the package:

    docker-compose exec seat composer require seat-extended/api
  4. Clear cache:

    docker-compose exec seat php artisan route:clear