generated from php-lights/php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.17 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.17 KB
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
{
"name": "neoncitylights/xml",
"description": "PHP library that provides a nicer interface over PHP's native XML API",
"authors": [
{
"name": "Samantha Nguyen",
"email": "contact@samanthanguyen.me"
}
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Neoncitylights\\Xml\\": "src/"
}
},
"require": {
"php": ">=8.3",
"ext-libxml": "*"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "48.0.0",
"mediawiki/minus-x": "1.1.3",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"phpunit/phpunit": "12.4.0"
},
"scripts": {
"test": [
"@lint",
"@phpunit:xml",
"minus-x check .",
"@phpcs"
],
"lint": "parallel-lint . --exclude vendor --exclude node_modules",
"phpcs": "phpcs -p -s",
"phpunit": "phpunit tests",
"phpunit:xml": "@phpunit --coverage-clover .phpunit/coverage.xml",
"phpunit:html": "@phpunit --coverage-html .phpunit/html/",
"fix": [
"minus-x fix .",
"phpcbf"
],
"docs": "phpdoc"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}