-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.93 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
{
"name": "lychee-org/lycheeverify",
"description": "Verification package for Lychee",
"homepage": "https://github.com/LycheeOrg/verify",
"license": "MIT",
"require": {
"php": "^8.2",
"illuminate/contracts": "^11.0",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"nunomaduro/collision": "^8.3",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^9.0.0||^8.22.0",
"friendsofphp/php-cs-fixer": "^3.3",
"lychee-org/phpstan-lychee": "^v1.0.1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"LycheeVerify\\": "src/",
"LycheeVerify\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"LycheeVerify\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/"
}
},
"scripts": {
"post-autoload-dump": "@composer run prepare",
"clear": "@php vendor/bin/testbench package:purge-lycheeverify --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": [
"@composer run prepare",
"@php vendor/bin/testbench workbench:build --ansi"
],
"start": [
"Composer\\Config::disableProcessTimeout",
"@composer run build",
"@php vendor/bin/testbench serve"
],
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit"
},
"config": {
"platform": {
"php": "8.2"
},
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"LycheeVerify\\VerifyServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}