generated from silverstripe/silverstripe-module
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 940 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "silverstripe/event-dispatcher",
"description": "Publish and subscribe to events in Silverstripe CMS or your Silverstripe application",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"CMS",
"events"
],
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"silverstripe/framework": "^5",
"symfony/event-dispatcher": "^6.1",
"psr/event-dispatcher": "^1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"SilverStripe\\EventDispatcher\\": "src/",
"SilverStripe\\EventDispatcher\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}