endtoend-test-psl/composer.json
2021-03-28 09:29:08 +01:00

42 lines
908 B
JSON

{
"name": "azjezz/psl",
"description": "PHP Standard Library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "azjezz",
"email": "azjezz@protonmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-bcmath": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-sodium": "*",
"ext-intl": "*"
},
"autoload": {
"psr-4": {
"Psl\\Integration\\": "integration"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Psl\\Tests\\": "tests/Psl"
}
},
"extra": {
"psalm": {
"pluginClass": "Psl\\Integration\\Psalm\\Plugin"
},
"thanks": {
"name": "hhvm/hsl",
"url": "https://github.com/hhvm/hsl"
}
}
}