-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 982 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
{
"name": "fabricity/markdown",
"description": "Generate markdown files with php",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Fabricity\\Markdown\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fabricity\\Markdown\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"friendsofphp/php-cs-fixer": "^3.46"
},
"scripts": {
"phpcs": "php-cs-fixer fix",
"phpstan": "phpstan analyse -c phpstan.neon.dist --memory-limit=128M",
"phpunit": "phpunit",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
}
}