-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
110 lines (110 loc) · 3.44 KB
/
composer.json
File metadata and controls
110 lines (110 loc) · 3.44 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"$schema": "https://getcomposer.org/schema.json",
"name": "fgilio/rfa",
"type": "project",
"description": "Local code review tool for AI agent changes.",
"keywords": [
"code-review",
"ai-agent",
"diff-viewer",
"livewire"
],
"license": "MIT",
"require": {
"php": "^8.4",
"laravel/boost": "^2.4",
"laravel/framework": "^13.0",
"livewire/blaze": "^1.0",
"livewire/flux": "^2.12.1",
"livewire/livewire": "^4.1",
"nativephp/desktop": "dev-l13-compatibility",
"phiki/phiki": "^2.1"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"joshcirre/instruckt-laravel": "^0.4.26",
"larastan/larastan": "^3.0",
"laravel/pint": "^1.24",
"laravel/tinker": "^3.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"nunomaduro/pao": "^0.1.5",
"pestphp/pest": "^4.6",
"pestphp/pest-plugin-browser": "^4.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"setup": [
"composer install",
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate",
"@php artisan migrate --force"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"php artisan serve"
],
"lint": "./vendor/bin/pint",
"test:lint": "./vendor/bin/pint --test",
"test:types": "./vendor/bin/phpstan analyse --memory-limit=512M",
"test": [
"@php artisan config:clear --ansi",
"@php -d memory_limit=512M ./vendor/bin/pest --testsuite=Core"
],
"test:arch": "@php artisan test --testsuite=Arch",
"test:browser": "@php artisan test --testsuite=Browser",
"test:browser:headed": "@php artisan test --testsuite=Browser --headed",
"test:perf": "@php artisan rfa:benchmark-perf",
"test:perf:smoke": "@php artisan test --testsuite=Performance",
"test:all": [
"@composer test",
"@composer test:browser",
"@composer test:perf:smoke"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php scripts/patch-native-preload.php"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan native:install --force --quiet ",
"@php scripts/patch-native-preload.php"
],
"native:dev": [
"Composer\\Config::disableProcessTimeout",
"php artisan native:run --no-interaction"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
},
"platform": {
"php": "8.4.19"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}