-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.35 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
{
"name": "webparking/laravel-limited-access",
"description": "Limited access for Laravel",
"license": "MIT",
"authors": [
{
"name": "Dion Gerrese",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Webparking\\LimitedAccess\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webparking\\LimitedAccess\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Webparking\\LimitedAccess\\ServiceProvider"
]
}
},
"require": {
"php": "^7.4|^8.0",
"laravel/framework": "^7|^8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^5|^6",
"roave/security-advisories": "dev-master",
"nunomaduro/larastan": "^1"
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse config routes src --memory-limit=-1 --level 5",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"phpunit": "vendor/bin/phpunit",
"test": [
"composer phpstan",
"composer php-cs-fixer",
"composer phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}