-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
47 lines (47 loc) · 1.22 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
{
"name" : "stampie/extra",
"description" : "Event-based plugin for stampie/stampie",
"homepage" : "https://github.com/Stampie/extra",
"type" : "library",
"license" : "MIT",
"authors" : [
{
"name" : "Christophe Coevoet",
"email" : "[email protected]"
}
],
"autoload" : {
"psr-4" : {
"Stampie\\Extra\\": "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Stampie\\Extra\\Tests\\": "tests/"
}
},
"require" : {
"php": "^7.2 || ^8.0",
"stampie/stampie": "^1.0",
"symfony/event-dispatcher": "^4.4 || ^5.4 || ^6.0",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.5 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.20 || ^9.5.9",
"php-http/mock-client": "^1.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/error-handler": "^4.4 || ^5.4 || ^6.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0"
},
"conflict": {
"stof/stampie-extra": "*"
},
"suggest": {
"psr/log": "to log sent emails to a LoggerInterface"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
}
}