generated from Sammyjo20/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
60 lines (60 loc) · 1.53 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
{
"name": "saloonphp/xml-wrangler",
"description": "Easily Read & Write XML in PHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sam Carré",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/saloonphp/xml-wrangler",
"require": {
"php": "^8.1",
"veewee/xml": "^3.1.0",
"spatie/array-to-xml": "^3.2",
"ext-dom": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"pestphp/pest": "^2.24",
"phpstan/phpstan": "^1.9",
"spatie/ray": "^1.33",
"psr/http-message": "^2.0",
"guzzlehttp/guzzle": "^7.8",
"saloonphp/saloon": "^3.0",
"illuminate/collections": "^10.30"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Saloon\\XmlWrangler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Saloon\\XmlWrangler\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"fix-code": [
"./vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"pstan": [
"./vendor/bin/phpstan analyse"
],
"test": [
"./vendor/bin/pest"
]
},
"suggest": {
"illuminate/collections": "Used for the collect and lazyCollect methods when reading XML."
}
}