Install psalm as dev, sync scripts updates

This commit is contained in:
Clemens Schwaighofer
2023-03-09 16:27:10 +09:00
parent 6bec59e387
commit feba79a2e8
2099 changed files with 283333 additions and 32 deletions

46
vendor/spatie/array-to-xml/composer.json vendored Executable file
View File

@@ -0,0 +1,46 @@
{
"name": "spatie/array-to-xml",
"description": "Convert an array to xml",
"keywords": [
"convert",
"array",
"xml"
],
"homepage": "https://github.com/spatie/array-to-xml",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://freek.dev",
"role": "Developer"
}
],
"require": {
"php" : "^8.0",
"ext-dom": "*"
},
"require-dev": {
"mockery/mockery": "^1.2",
"pestphp/pest": "^1.21",
"spatie/pest-plugin-snapshots": "^1.1"
},
"autoload": {
"psr-4": {
"Spatie\\ArrayToXml\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\ArrayToXml\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}