-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.04 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "digbang/security",
"license": "MIT",
"description": "Security package for Laravel projects in Digbang.",
"authors": [
{
"name": "Guido Contreras Woda",
"email": "gcontreras@digbang.com"
}
],
"require": {
"php": "^8.0.2",
"laravel-doctrine/orm": "^1.8",
"laravel-doctrine/fluent": "^1.3",
"illuminate/support": "^9.0",
"illuminate/contracts": "^9.0",
"illuminate/events": "^9.0",
"illuminate/cookie": "^9.0",
"illuminate/routing": "^9.0",
"cartalyst/sentinel": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/phpspec": "dev-main",
"laravel/pint": "^0.2.1",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"Digbang\\Security\\": "src/"
}
},
"scripts": {
"stan": "./vendor/bin/phpstan analyse --memory-limit=2G",
"test": "./vendor/bin/phpunit",
"cs": "./vendor/bin/pint",
"spec": "./vendor/bin/phpspec run phpspec.cc.yml",
"coverage": "./vendor/bin/phpunit --coverage-html coverage"
},
"repositories": [],
"minimum-stability": "dev",
"prefer-stable": true
}