generated from svenluijten/package-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.03 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
{
"name": "sven/commonmark-image-media-queries",
"description": "",
"keywords": [],
"license": "MIT",
"authors": [
{
"name": "Sven Luijten",
"email": "[email protected]",
"homepage": "https://svenluijten.com"
}
],
"require": {
"php": "^8.1",
"league/commonmark": "^2.3",
"league/config": "^1.2",
"nette/schema": "^1.2"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"spatie/phpunit-snapshot-assertions": "^5.0.1"
},
"autoload": {
"psr-4": {
"Sven\\CommonMark\\ImageMediaQueries\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sven\\CommonMark\\ImageMediaQueries\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"check": [
"@test",
"@analyse"
],
"test": "phpunit",
"analyse": "phpstan analyse"
}
}