-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "dalabarge/srp-demo",
"description": "A Laravel application that demonstrates how SRP-6a works.",
"keywords": ["srp-6a", "laravel", "demo"],
"license": "MIT",
"type": "project",
"config": {
"platform": {
"php": "7.1.3"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": "^7.1.3",
"artisansdk/srp": "dev-master",
"laravel/framework": "~5.7.0"
},
"require-dev": {
"artisansdk/bench": "dev-master",
"filp/whoops": "~2.0",
"nunomaduro/collision": "~2.0",
"fzaninotto/faker": "~1.4",
"laravel/tinker": "~1.0",
"mockery/mockery": "~1.0"
},
"replace": {
"laravel/nexmo-notification-channel": "5.7.*",
"laravel/slack-notification-channel": "5.7.*",
"laravel-zero/foundation": "5.7.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"fix": [
"@php artisan bench:fix app/ config/ database/ tests/ --cache=storage/framework/cache/bench/fix.json --ansi"
],
"test": [
"@php artisan bench:test app/ config/ database/ tests/ --cache=storage/framework/cache/bench/fix.json --no-coverage --ansi"
],
"watch": [
"@php artisan bench:watch --no-coverage --ansi"
],
"report": [
"@php artisan bench:report app/ config/ database/ tests/ --cache=storage/framework/cache/bench/fix.json --min-line-coverage=80 --max-line-duplication=3 --max-token-duplication=35 --ansi"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
}
}