-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.11 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": "marcin-orlowski/lombok-php",
"description": "Write less code!",
"homepage": "https://github.com/MarcinOrlowski/lombok-php",
"version": "1.1.1",
"keywords": [
"lombok",
"annotation",
"annotations",
"getters",
"setters",
"accessors",
"php",
"php8"
],
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Marcin Orlowski",
"homepage": "https://MarcinOrlowski.com/"
}
],
"support": {
"source": "https://github.com/MarcinOrlowski/lombok-php/",
"issues": "https://github.com/MarcinOrlowski/lombok-php/issues"
},
"minimum-stability": "stable",
"require": {
"php": "^8.0|^8.1|^8.2"
},
"autoload": {
"psr-4": {
"Lombok\\": "src/",
"LombokTest\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.5"
},
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml -c phpunit.xml.dist",
"phpstan": "vendor/bin/phpstan analyze -c phpstan.neon.dist",
"lint": "@composer phpstan",
"mdlint": "markdownlint -c .markdownlint.yaml.dist docs *.md --ignore LICENSE.md"
}
}