-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 903 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
{
"name": "welcomattic/has-attributes",
"type": "library",
"description": "Check if a class, a method or a property has an attribute",
"keywords": ["attribute", "utility"],
"license": "MIT",
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.4"
},
"autoload": {
"psr-4": {
"Welcomattic\\HasAttribute\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Welcomattic\\HasAttribute\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"lint": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config tools/php-cs-fixer/.php-cs-fixer.php",
"lint-check": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config tools/php-cs-fixer/.php-cs-fixer.php --dry-run",
"phpstan": "tools/phpstan/vendor/bin/phpstan analyse --configuration=tools/phpstan/phpstan.neon"
}
}