composer.json

Summary

Maintainability
Test Coverage
{
    "name": "atk4/core",
    "description": "Agile Core - collection of PHP Traits for designing object-oriented frameworks",
    "license": "MIT",
    "type": "library",
    "keywords": [
        "php",
        "framework",
        "traits",
        "agile toolkit"
    ],
    "version": "dev-develop",
    "authors": [
        {
            "name": "Romans Malinovskis",
            "homepage": "https://nearly.guru/"
        },
        {
            "name": "Imants Horsts",
            "homepage": "https://darkside.lv/"
        },
        {
            "name": "Francesco Danti",
            "homepage": "https://oracoltech.com/"
        },
        {
            "name": "Michael Voříšek",
            "homepage": "https://mvorisek.cz/"
        }
    ],
    "homepage": "https://github.com/atk4/core",
    "require": {
        "php": ">=7.4 <8.4",
        "benmorel/weakmap-polyfill": "^0.5.0",
        "psr/log": "^1.0 || ^2.0 || ^3.0",
        "symfony/polyfill-php80": "^1.28",
        "symfony/polyfill-php81": "^1.28",
        "symfony/polyfill-php82": "^1.28",
        "symfony/polyfill-php83": "^1.28",
        "symfony/yaml": "^3.4 || ^4.4 || ^5.1 || ^6.0 || ^7.0"
    },
    "require-dev": {
        "ergebnis/composer-normalize": "^2.13",
        "ergebnis/phpunit-slow-test-detector": "^2.9",
        "friendsofphp/php-cs-fixer": "^3.0",
        "phpstan/extension-installer": "^1.1",
        "phpstan/phpstan": "^1.0",
        "phpstan/phpstan-deprecation-rules": "^1.0",
        "phpstan/phpstan-strict-rules": "^1.3",
        "phpunit/phpunit": "^9.5.5 || ^10.0 || ^11.0"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "autoload": {
        "psr-4": {
            "Atk4\\Core\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Atk4\\Core\\Tests\\": "tests/"
        }
    },
    "config": {
        "allow-plugins": {
            "ergebnis/composer-normalize": true,
            "phpstan/extension-installer": true
        },
        "sort-packages": true
    }
}