forked from nicolaswurtz/chordpro-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.57 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
{
"name": "intelektron/chordpro-php",
"description": "Parse, transpose and format (html, json, plaintext) ChordPro format for songs lyrics with chords.",
"type": "library",
"require": {
"php": ">=8.1"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0",
"friendsofphp/php-cs-fixer": "^3.46",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.0",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"voku/phpstan-rules": "^3.2"
},
"autoload": {
"psr-4": {
"ChordPro\\":"src/"
}
},
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Nicolas Wurtz",
"email": "[email protected]"
},
{
"name": "Grzegorz Pietrzak",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit tests",
"phpstan": "phpstan analyse",
"php-compatibility": "phpcs --standard=phpcs.xml",
"cs": "php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --diff",
"cs-fix": "php-cs-fixer fix --config=.php-cs-fixer.php",
"check": [
"@test",
"@phpstan",
"@php-compatibility",
"@cs"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}