generated from 8fold/github-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1023 Bytes
/
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": "8fold/commonmark-fluent-markdown",
"description": "A fluent API for CommonMark by the PHP League",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Josh Bruce",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"league/commonmark": "^2.0",
"symfony/yaml": "^2.3 || ^3.0 || ^4.0 || ^5.0",
"8fold/commonmark-abbreviations": "^1.2 || ^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^0.12",
"pestphp/pest": "^1.20",
"psr/log": "^1.0.1"
},
"autoload": {
"psr-4": {
"Eightfold\\Markdown\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"scripts": {
"prod": "@production",
"production": ["@style", "@stan", "@test"],
"style": "./vendor/bin/phpcs --standard=phpcs.xml -p ./src",
"stan": "./vendor/bin/phpstan analyze",
"test": "./vendor/bin/pest"
}
}