-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
43 lines (43 loc) · 1.1 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
{
"name": "jaylinski/xmltv",
"description": "A library for generating XMLTV files.",
"keywords": ["XMLTV"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jakob Linskeseder",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*"
},
"require-dev": {
"friends-of-phpspec/phpspec-code-coverage": "^6.3",
"friendsofphp/php-cs-fixer": "^3.16",
"phpspec/phpspec": "^7.3",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"XmlTv\\": "src/"
}
},
"scripts": {
"test": "phpspec run --ansi",
"test-ci": "phpspec run --no-interaction --verbose",
"lint": "php-cs-fixer fix src --rules=@PSR12",
"lint-ci": "php-cs-fixer fix src --dry-run --rules=@PSR12",
"analyse": "phpstan analyse --level 7 src"
},
"config": {
"platform": {
"php": "8.0.28"
},
"sort-packages": true
}
}