-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.53 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.53 KB
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
52
{
"name": "nicksdot/blade-html-attributes",
"description": "Laravel Blade directives for conditionally rendering HTML attributes",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Nick Sdot",
"email": "hi@nicksdot.com"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0|^12.0",
"illuminate/view": "^10.0|^11.0|^12.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.88.2",
"larastan/larastan": "^3.7.2",
"nicksdot/phpstan-phpstorm-error-identifiers": "^0.2.0",
"orchestra/testbench": "^v10.6.0",
"phpstan/phpstan": "^2.1.31",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpunit/phpunit": "^12.4.1"
},
"autoload": {
"psr-4": {
"NickSdot\\BladeHtmlAttributes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NickSdot\\BladeHtmlAttributes\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"NickSdot\\BladeHtmlAttributes\\BladeHtmlAttributesServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"stan": "./vendor/bin/phpstan analyse",
"fixer": "export PHP_CS_FIXER_IGNORE_ENV=1; ./vendor/bin/php-cs-fixer",
"fixer-fresh": "files=($(git --no-pager diff --name-only --diff-filter=ACMR HEAD | grep -E '\\.php$')); [ ${#files[@]} -gt 0 ] && vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --path-mode=intersection -- \"${files[@]}\""
},
"minimum-stability": "stable",
"prefer-stable": true
}