-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.6 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "archipro/silverstripe-revolt-event-dispatcher",
"description": "A Revolt Event Dispatcher integration for Silverstripe CMS",
"type": "silverstripe-vendormodule",
"license": "MIT",
"require": {
"php": "^8.1",
"silverstripe/framework": "^4.13 || ^5.0",
"silverstripe/versioned": "^1.13 || ^2.0",
"psr/event-dispatcher": "^1.0",
"psr/event-dispatcher-implementation": "^1.0",
"archipro/revolt-event-dispatcher": "^0.1.0",
"psr/log": "^1 || ^2 || ^3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.10",
"colinodell/psr-testlogger": "^1.0"
},
"autoload": {
"psr-4": {
"ArchiPro\\Silverstripe\\EventDispatcher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArchiPro\\Silverstripe\\EventDispatcher\\Tests\\": "tests/php/"
}
},
"scripts": {
"lint": "php-cs-fixer fix --dry-run --diff",
"lint-fix": "php-cs-fixer fix",
"analyse": "phpstan analyse",
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"expose": []
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
},
"suggest": {
"colinodell/psr-testlogger": "To use the TestEventService, you must require the 'colinodell/psr-testlogger' package in your dev dependencies."
}
}