endtoend-test-psl/composer.json

35 lines
730 B
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": {
"php": "^7.4",
"symfony/polyfill": "^1.12"
},
"require-dev": {
"vimeo/psalm": "dev-master",
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"Psl\\": "src/Psl"
},
"files": [
"src/bootstrap.php"
]
},
"scripts": {
"type-check": "psalm",
"test": "phpunit",
"cs-fix": "php-cs-fixer fix"
}
}