You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
789 B
38 lines
789 B
{ |
|
"name": "league/event", |
|
"description": "Event package", |
|
"keywords": [ |
|
"event", |
|
"emitter", |
|
"listener" |
|
], |
|
"license": "MIT", |
|
"authors": [ |
|
{ |
|
"name": "Frank de Jonge", |
|
"email": "info@frenky.net" |
|
} |
|
], |
|
"require": { |
|
"php": ">=7.2.0", |
|
"psr/event-dispatcher": "^1.0" |
|
}, |
|
"require-dev": { |
|
"phpunit/phpunit": "^8.5", |
|
"phpstan/phpstan": "^0.12.45", |
|
"friendsofphp/php-cs-fixer": "^2.16" |
|
}, |
|
"provide": { |
|
"psr/event-dispatcher-implementation": "1.0" |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"League\\Event\\": "src/" |
|
} |
|
}, |
|
"extra": { |
|
"branch-alias": { |
|
"dev-master": "3.0-dev" |
|
} |
|
} |
|
}
|
|
|