-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.39 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": "davidlienhard/functioncaller",
"license": ["MIT"],
"description": "🐘 php library to call functions and catch triggered errors",
"keywords": [ "errorhandler", "php", "library" ],
"type": "libary",
"homepage": "https://github.com/davidlienhard/functioncaller/",
"authors": [
{
"name": "David Lienhard",
"email": "github@lienhard.win",
"homepage": "http://www.lienhard.win/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/davidlienhard/functioncaller/issues/",
"email": "github@lienhard.win"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^1",
"davidlienhard/coding-standard": "^1"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"changed-files": "git diff --name-only origin/master",
"phpcs": "./vendor/bin/phpcs",
"phpstan": "./vendor/bin/phpstan analyse",
"test": [
"@phpcs",
"@phpstan"
],
"phpdoc": "docker run --rm -v ${PWD}:/data phpdoc/phpdoc:3 run",
"doc": [
"@phpdoc"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}