endtoend-test-psl/composer.json

42 lines
908 B
JSON
Raw Permalink Normal View History

2019-12-24 01:52:07 +01:00
{
"name": "azjezz/psl",
"description": "PHP Standard Library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "azjezz",
"email": "azjezz@protonmail.com"
}
],
"require": {
2020-10-30 23:45:07 +01:00
"php": "^7.4 || ^8.0",
2019-12-26 21:03:29 +01:00
"ext-bcmath": "*",
"ext-json": "*",
2020-10-14 09:37:46 +02:00
"ext-mbstring": "*",
2020-10-03 19:56:55 +02:00
"ext-sodium": "*",
"ext-intl": "*"
2019-12-24 01:52:07 +01:00
},
"autoload": {
"psr-4": {
"Psl\\Integration\\": "integration"
2019-12-24 01:52:07 +01:00
},
"files": [
"src/bootstrap.php"
]
},
2020-02-21 02:03:40 +01:00
"autoload-dev": {
"psr-4": {
"Psl\\Tests\\": "tests/Psl"
}
},
2021-02-09 21:15:06 +01:00
"extra": {
"psalm": {
"pluginClass": "Psl\\Integration\\Psalm\\Plugin"
},
"thanks": {
"name": "hhvm/hsl",
"url": "https://github.com/hhvm/hsl"
2021-02-09 21:15:06 +01:00
}
2019-12-24 01:52:07 +01:00
}
}