123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- {
- "name": "league/commonmark",
- "type": "library",
- "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
- "keywords": ["markdown","parser","commonmark","gfm","github","flavored","github-flavored","md"],
- "homepage": "https://commonmark.thephpleague.com",
- "license": "BSD-3-Clause",
- "authors": [
- {
- "name": "Colin O'Dell",
- "email": "colinodell@gmail.com",
- "homepage": "https://www.colinodell.com",
- "role": "Lead Developer"
- }
- ],
- "support": {
- "docs": "https://commonmark.thephpleague.com/",
- "forum": "https://github.com/thephpleague/commonmark/discussions",
- "issues": "https://github.com/thephpleague/commonmark/issues",
- "rss": "https://github.com/thephpleague/commonmark/releases.atom",
- "source": "https://github.com/thephpleague/commonmark"
- },
- "require": {
- "php": "^7.4 || ^8.0",
- "ext-mbstring": "*",
- "league/config": "^1.1.1",
- "psr/event-dispatcher": "^1.0",
- "symfony/deprecation-contracts": "^2.1 || ^3.0",
- "symfony/polyfill-php80": "^1.16"
- },
- "require-dev": {
- "ext-json": "*",
- "cebe/markdown": "^1.0",
- "commonmark/cmark": "0.30.0",
- "commonmark/commonmark.js": "0.30.0",
- "composer/package-versions-deprecated": "^1.8",
- "embed/embed": "^4.4",
- "erusev/parsedown": "^1.0",
- "github/gfm": "0.29.0",
- "michelf/php-markdown": "^1.4 || ^2.0",
- "nyholm/psr7": "^1.5",
- "phpstan/phpstan": "^1.8.2",
- "phpunit/phpunit": "^9.5.21",
- "scrutinizer/ocular": "^1.8.1",
- "symfony/finder": "^5.3 | ^6.0",
- "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
- "unleashedtech/php-coding-standard": "^3.1.1",
- "vimeo/psalm": "^4.24.0 || ^5.0.0"
- },
- "minimum-stability": "beta",
- "suggest": {
- "symfony/yaml": "v2.3+ required if using the Front Matter extension"
- },
- "repositories": [
- {
- "type": "package",
- "package": {
- "name": "commonmark/commonmark.js",
- "version": "0.30.0",
- "dist": {
- "url": "https://github.com/commonmark/commonmark.js/archive/0.30.0.zip",
- "type": "zip"
- }
- }
- },
- {
- "type": "package",
- "package": {
- "name": "commonmark/cmark",
- "version": "0.30.0",
- "dist": {
- "url": "https://github.com/commonmark/cmark/archive/0.30.0.zip",
- "type": "zip"
- }
- }
- },
- {
- "type": "package",
- "package": {
- "name": "github/gfm",
- "version": "0.29.0",
- "dist": {
- "url": "https://github.com/github/cmark-gfm/archive/0.29.0.gfm.0.zip",
- "type": "zip"
- }
- }
- }
- ],
- "autoload": {
- "psr-4": {
- "League\\CommonMark\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "League\\CommonMark\\Tests\\Unit\\": "tests/unit",
- "League\\CommonMark\\Tests\\Functional\\": "tests/functional",
- "League\\CommonMark\\Tests\\PHPStan\\": "tests/phpstan"
- }
- },
- "scripts": {
- "phpcs": "phpcs",
- "phpstan": "phpstan analyse",
- "phpunit": "phpunit --no-coverage",
- "psalm": "psalm --stats",
- "test": [
- "@phpcs",
- "@phpstan",
- "@psalm",
- "@phpunit"
- ]
- },
- "extra": {
- "branch-alias": {
- "dev-main": "2.4-dev"
- }
- },
- "config": {
- "allow-plugins": {
- "composer/package-versions-deprecated": true,
- "dealerdirect/phpcodesniffer-composer-installer": true
- },
- "sort-packages": true
- }
- }
|