Beacon/composer.json

40 lines
895 B
JSON

{
"name": "getphred/beacon",
"description": "Enterprise-grade PSR-14 event management engine for the Phred Framework.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Phred Team",
"email": "team@getphred.com"
}
],
"require": {
"php": "^8.2",
"getphred/beacon-contracts": "dev-master",
"psr/simple-cache": "^3.0",
"psr/container": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Phred\\Beacon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phred\\Beacon\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "path",
"url": "../BeaconContracts"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}