-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
84 lines (84 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "https://getcomposer.org/schema.json",
"name": "orchestra/workbench",
"description": "Workbench Companion for Laravel Packages Development",
"type": "library",
"keywords": ["laravel", "laravel-packages", "testing", "dev"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Workbench\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Orchestra\\Workbench\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"require": {
"php": "^8.2",
"composer-runtime-api": "^2.2",
"fakerphp/faker": "^1.23",
"laravel/framework": "^11.35",
"laravel/pail": "^1.2",
"laravel/tinker": "^2.9",
"nunomaduro/collision": "^8.0",
"orchestra/canvas": "^9.1",
"orchestra/testbench-core": "^9.7",
"symfony/polyfill-php83": "^1.31",
"symfony/polyfill-php84": "^1.31",
"symfony/yaml": "^7.0.3"
},
"require-dev": {
"laravel/pint": "^1.17",
"mockery/mockery": "^1.6.10",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5.35 || ^11.3.6",
"symfony/process": "^7.0.3"
},
"suggest": {
"ext-pcntl": "Required to use all features of the console signal trapping."
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
],
"lint": [
"@php vendor/bin/pint --ansi",
"@php vendor/bin/phpstan analyse --verbose"
],
"test": "@php vendor/bin/phpunit --no-coverage --no-configuration --dont-report-useless-tests --bootstrap vendor/autoload.php --color tests",
"sync": [
"@php bin/sync",
"@php vendor/bin/pint --ansi",
"npm ci",
"npm run build"
],
"ci": [
"@composer audit",
"@prepare",
"@lint",
"@test"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}