-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "surface/commonmark-ext-spotify-iframe",
"type": "commonmark-extension",
"description": "Extension for league/commonmark to replace Spotify link with an iframe.",
"version": "2.1.0",
"keywords": [
"markdown",
"commonmark",
"extension",
"spotify",
"iframe",
"embed",
"music"
],
"homepage": "https://github.com/trovster/commonmark-ext-spotify-iframe",
"license": "MIT",
"authors": [
{
"name": "Trevor Morris",
"email": "code@trovster.com",
"homepage": "https://www.trovster.com",
"role": "Developer"
}
],
"require": {
"php" : "^8.0",
"league/commonmark": "^2.3"
},
"require-dev": {
"phpmd/phpmd": "^2.12",
"phpro/grumphp": "^1.5",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9.5",
"sirbrillig/phpcs-import-detection": "^1.3",
"slevomat/coding-standard": "^7.1",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"post-install-cmd": [
"@php ./vendor/bin/grumphp git:init"
],
"sniff": [
"./vendor/bin/phpcs -s"
],
"stan": [
"@php ./vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=2G"
],
"mess": [
"@php ./vendor/bin/phpmd ./src text phpmd.xml --reportfile ./code-analysis/phpmd.txt"
],
"grum": [
"@php ./vendor/bin/grumphp run"
],
"test-unit": [
"./vendor/bin/phpunit --testsuite Unit --colors=always --log-junit ./code-analysis/junit.xml"
],
"test-integration": [
"./vendor/bin/phpunit --testsuite Integration --colors=always --log-junit ./code-analysis/junit.xml"
],
"test-ci": [
"./vendor/bin/phpunit --testsuite Unit,Integration --colors=always --log-junit ./code-analysis/junit.xml"
],
"test": [
"./vendor/bin/phpunit --testsuite Unit,Integration --colors=always --log-junit ./code-analysis/junit.xml"
]
},
"autoload": {
"psr-4": {
"Surface\\CommonMark\\Ext\\SpotifyIframe\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Surface\\CommonMark\\Ext\\SpotifyIframe\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
}
}
}