-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
51 lines (51 loc) · 1.2 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
{
"name": "event-engine/discolight",
"description": "Lightweight PSR-11 DI Container inspired by bitExpert/disco",
"homepage": "https://event-engine.io/",
"license": "MIT",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://www.prooph.de"
},
{
"name": "Sandro Keil",
"email": "contact@prooph.de",
"homepage": "http://prooph-software.com/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"psr/container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.6",
"prooph/php-cs-fixer-config": "^v0.4.0",
"satooshi/php-coveralls": "^1.0",
"malukenho/docheader": "^0.1.8",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"EventEngine\\Discolight\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EventEngineTest\\Discolight\\": "tests/"
}
},
"prefer-stable": true,
"scripts": {
"check": [
"@cs",
"@docheader",
"@test"
],
"docheader": "vendor/bin/docheader check src/ tests/",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "vendor/bin/phpunit"
}
}