-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.13 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
{
"name": "kminek/marklink",
"description": "A simple standard allowing embedding (and parsing) categorized lists of links inside Markdown files.",
"require": {
"php": ">=8.0.0",
"ext-json": "*",
"doctrine/collections": "1.6.7",
"guzzlehttp/guzzle": "7.2.*",
"league/commonmark": "1.5.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.18.3",
"justinrainbow/json-schema": "5.2.10",
"phpstan/phpstan": "0.12.81",
"phpunit/phpunit": "9.5.2",
"symfony/var-dumper": "5.2.5"
},
"autoload": {
"psr-4": {
"Kminek\\Marklink\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Kminek\\Marklink\\": "tests/"
}
},
"scripts": {
"cs": [
"php-cs-fixer fix --verbose"
],
"sa": [
"phpstan analyse src tests --level=max --memory-limit=256M"
],
"test": [
"phpunit"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}