endtoend-test-psl/composer.json

45 lines
1.0 KiB
JSON
Raw 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": {
2021-05-14 15:15:55 +02:00
"php": "^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": {
2021-04-11 18:12:01 +02:00
"Psl\\Tests\\StaticAnalysis\\": "tests/static-analysis",
"Psl\\Tests\\Unit\\": "tests/unit",
"Psl\\Tests\\Fixture\\": "tests/fixture"
2020-02-21 02:03:40 +01:00
}
},
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
}
2021-04-11 18:12:01 +02:00
}