-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 987 Bytes
/
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
{
"name": "brenoroosevelt/php-attributes",
"description": "Easy way to handle PHP Attributes",
"keywords": [
"php8",
"attributes",
"extractor",
"php 8",
"annotation"
],
"homepage": "http://github.com/brenoroosevelt/php-attributes",
"license": "MIT",
"authors": [
{
"name": "Breno Roosevelt",
"email": "breno.roosevelt@gmail.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"BrenoRoosevelt\\PhpAttributes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrenoRoosevelt\\PhpAttributes\\Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t web",
"test": "phpunit",
"check": [
"phpunit",
"phpstan",
"phpcs -p src tests"
]
}
}