-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 790 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 790 Bytes
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
{
"name": "nikrou/event-handler",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Nicolas Roudaire",
"email": "nikrou77@gmail.com"
}
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.1",
"rector/rector": "^0.18.12"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-dir": "bin",
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"": "./"
}
},
"scripts": {
"phpstan": "phpstan analyse",
"rector": "rector process"
}
}