-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.32 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
49
50
51
52
53
{
"name": "monooso/apposite",
"type": "library",
"description": "Conditionally apply validation rules in Laravel",
"homepage": "https://github.com/monooso/apposite",
"license": "MIT",
"keywords": [
"laravel",
"validation"
],
"support": {
"issues": "https://github.com/monooso/apposite/issues",
"source": "https://github.com/monooso/apposite"
},
"authors": [
{
"name": "Stephen Lewis",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.22.1",
"illuminate/support": "^8.22.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Monooso\\Apposite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Monooso\\Apposite\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpcs src --standard=PSR2",
"test": "phpunit"
}
}