forked from square/laravel-hyrule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.22 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
{
"name": "helixdigital-io/laravel-hyrule",
"description": "Fluent API for building validation rules in Laravel",
"license": "Apache-2.0",
"type": "library",
"require": {
"php": ">=8.1",
"illuminate/validation": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"phpstan/phpstan": "^1.10",
"laravel/framework": "^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Square\\Hyrule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Square\\Hyrule\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Bez Hermoso",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Square\\Hyrule\\HyruleServiceProvider"
]
}
},
"scripts": {
"test": "phpunit ./tests --testdox",
"analyze": "phpstan analyze --memory-limit=1024M",
"ci": [
"[[ ! -f vendor/autoload.php ]] && composer update --prefer-lowest || echo 'Dependencies already vendored'",
"@test",
"@analyze"
]
}
}