← Code-Übersicht

composer.json

Pfad: composer.json

Ext: json

Größe: 670 Bytes

Geändert: 2026-07-16 17:34:48+02

{
  "name": "karlkratz/demo-prozesssystem",
  "description": "Internes Schulungs- und Prozess-Demosystem",
  "license": "proprietary",
  "type": "project",
  "require": {
    "php": "^8.2",
    "ext-curl": "*",
    "ext-dom": "*",
    "ext-json": "*",
    "ext-pdo": "*",
    "ext-pgsql": "*"
  },
  "require-dev": {
    "phpstan/phpstan": "2.1.33",
    "phpunit/phpunit": "11.5.55"
  },
  "autoload": {
    "psr-4": {
      "Demo\\": "src/"
    }
  },
  "scripts": {
    "analyse": "phpstan analyse --no-progress",
    "test": "phpunit",
    "quality": [
      "@analyse",
      "@test"
    ]
  },
  "config": {
    "allow-plugins": {},
    "sort-packages": true
  }
}