-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.35 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
53
54
55
56
57
58
{
"name": "68publishers/event-dispatcher-extra",
"description": "Extension that adds a combination of global and local event dispatchers with bridge into Nette Framework.",
"keywords": ["68publishers", "event", "events", "manager"],
"license": "MIT",
"authors": [
{
"name": "Tomáš Glawaty",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.1",
"symfony/event-dispatcher": "^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
"mockery/mockery": "^1.4",
"nette/bootstrap": "^3.0",
"nette/di": "^3.0.3",
"nette/tester": "^2.3.4",
"roave/security-advisories": "dev-master"
},
"suggest": {
"nette/di": "For an integration with Nette Framework."
},
"conflict": {
"nette/di": "<3.0",
"nette/schema": "<1.1"
},
"autoload": {
"psr-4": {
"SixtyEightPublishers\\EventDispatcherExtra\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SixtyEightPublishers\\EventDispatcherExtra\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"tests": [
"@tests:lowest",
"@tests:highest"
],
"tests:lowest" : [
"@composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable",
"vendor/bin/tester ./tests"
],
"tests:highest" : [
"@composer update --no-progress --prefer-dist --prefer-stable",
"vendor/bin/tester ./tests"
]
}
}