summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 736a7d2c899696f8c11da564d589ba9ff026a3bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
    "name": "laminas/laminas-feed",
    "description": "provides functionality for consuming RSS and Atom feeds",
    "license": "BSD-3-Clause",
    "keywords": [
        "laminas",
        "feed"
    ],
    "homepage": "https://laminas.dev",
    "support": {
        "docs": "https://docs.laminas.dev/laminas-feed/",
        "issues": "https://github.com/laminas/laminas-feed/issues",
        "source": "https://github.com/laminas/laminas-feed",
        "rss": "https://github.com/laminas/laminas-feed/releases.atom",
        "chat": "https://laminas.dev/chat",
        "forum": "https://discourse.laminas.dev"
    },
    "config": {
        "sort-packages": true
    },
    "extra": {
    },
    "require": {
        "php": "^7.3 || ~8.0.0",
        "ext-dom": "*",
        "ext-libxml": "*",
        "laminas/laminas-escaper": "^2.5.2",
        "laminas/laminas-stdlib": "^3.2.1",
        "laminas/laminas-zendframework-bridge": "^1.0"
    },
    "require-dev": {
        "laminas/laminas-cache": "^2.7.2",
        "laminas/laminas-coding-standard": "~1.0.0",
        "laminas/laminas-db": "^2.8.2",
        "laminas/laminas-http": "^2.7",
        "laminas/laminas-servicemanager": "^3.3",
        "laminas/laminas-validator": "^2.10.1",
        "phpunit/phpunit": "^9.3",
        "psalm/plugin-phpunit": "^0.13.0",
        "psr/http-message": "^1.0.1",
        "vimeo/psalm": "^4.1"
    },
    "conflict": {
        "laminas/laminas-servicemanager": "<3.3"
    },
    "suggest": {
        "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
        "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
        "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
        "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
        "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
        "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
    },
    "autoload": {
        "psr-4": {
            "Laminas\\Feed\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "LaminasTest\\Feed\\": "test/"
        }
    },
    "scripts": {
        "check": [
            "@cs-check",
            "@test"
        ],
        "cs-check": "phpcs",
        "cs-fix": "phpcbf",
        "static-analysis": "psalm --shepherd --stats",
        "test": "phpunit --colors=always",
        "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
    },
    "replace": {
        "zendframework/zend-feed": "^2.12.0"
    }
}