This repository has been archived by the owner on Apr 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
55 lines (55 loc) · 1.5 KB
/
composer.json
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
{
"name": "league/commonmark-ext-table",
"type": "commonmark-extension",
"description": "Table extension for league/commonmark",
"keywords": ["markdown", "commonmark", "extension", "table"],
"homepage": "https://github.com/thephpleague/commonmark-ext-table",
"license": "MIT",
"authors": [
{
"name": "Martin Hasoň",
"email": "[email protected]"
},
{
"name": "Webuni s.r.o.",
"homepage": "https://www.webuni.cz"
},
{
"name": "Colin O'Dell",
"email": "[email protected]",
"homepage": "https://www.colinodell.com"
}
],
"require": {
"php": "^7.1",
"league/commonmark": "~0.19.3|^1.0"
},
"require-dev": {
"phpstan/phpstan": "~0.11",
"phpunit/phpunit": "^7.0|^8.0",
"vimeo/psalm": "^3.0",
"friendsofphp/php-cs-fixer": "^2.14",
"symfony/var-dumper": "^4.0"
},
"autoload": {
"psr-4": {
"League\\CommonMark\\Ext\\Table\\": "src"
}
},
"scripts": {
"test": ["@phpunit", "@phpstan", "@psalm"],
"phpstan": "phpstan analyse -l7 src",
"phpunit": "phpunit",
"psalm": "psalm",
"cs-fix": "php-cs-fixer fix --allow-risky=yes"
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"abandoned": "league/commonmark"
}