-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.39 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.39 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
53
{
"name": "alextartan/xml2array",
"description": "Lightweight xml<->array conversion.",
"keywords": [
"xml",
"array",
"conversion"
],
"license": "Apache-2.0",
"type": "library",
"homepage": "https://github.com/alextartan/xml2array",
"authors": [
{
"name": "Alex Tartan",
"email": "alex.tartan@gmail.com",
"homepage": "http://web-factory.co",
"role": "Lead"
}
],
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-libxml": "*"
},
"autoload": {
"psr-4": {
"AlexTartan\\Array2Xml\\": "src/ArrayToXml"
}
},
"require-dev": {
"infection/infection": "^0.13.0 || ^0.15.0 || ^0.16.0 || ^0.20.0",
"phpunit/phpunit": "^8.2.0 || ^9.0.0",
"php-coveralls/php-coveralls": "^2.1",
"phpstan/phpstan": "0.11.20",
"phpstan/phpstan-strict-rules": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload-dev": {
"psr-4": {
"AlexTartanTest\\Array2Xml\\": "test/ArrayToXml"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --colors=always",
"test-infection": "vendor/bin/infection --threads=4",
"phpstan": "vendor/bin/phpstan analyse",
"test-coverage": "vendor/bin/phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "vendor/bin/php-coveralls -v"
}
}