-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathcomposer.json
More file actions
121 lines (121 loc) · 4.3 KB
/
Copy pathcomposer.json
File metadata and controls
121 lines (121 loc) · 4.3 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
111
112
113
114
115
116
117
118
119
120
121
{
"name": "hawki/hawki",
"type": "project",
"description": "data protection-compliant platform for generative AI in academy.",
"keywords": [
"HAWKI2",
"HAWKI",
"laravel",
"framework",
"Generative AI",
"educational"
],
"license": "MIT",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-zip": "*",
"ext-gd": "*",
"blade-ui-kit/blade-icons": "^1.8.0",
"hawk-hhg/hawki-crypto": "^0.5.3",
"jumbojett/openid-connect-php": "^1.0.2",
"laravel-json-api/laravel": "^5.2",
"laravel-json-api/non-eloquent": "^4.3",
"laravel/ai": "*",
"laravel/framework": "^13.0",
"laravel/reverb": "^1.6.0",
"laravel/sanctum": "^4.2.0",
"league/flysystem-aws-s3-v3": "^3.30.1",
"league/flysystem-sftp-v3": "^3.30.0",
"league/flysystem-webdav": "^3.30.0",
"logiscape/mcp-sdk-php": "^1.7",
"neunerlei/dbg": "^3.3",
"opis/json-schema": "^2.6",
"phpseclib/phpseclib": "^3.0",
"spatie/laravel-backup": "^10.0"
},
"require-dev": {
"ergebnis/php-cs-fixer-config": "^6.61",
"fakerphp/faker": "^1.24.1",
"laravel-json-api/testing": "^3.2",
"friendsofphp/php-cs-fixer": "^3.95",
"larastan/larastan": "^3.9",
"laravel/sail": "^1.46.0",
"nunomaduro/collision": "^8.8.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.0.1",
"spatie/laravel-ignition": "^2.9.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"hawki": "php hawki",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"queue": [
"Composer\\Config::disableProcessTimeout",
"@php artisan queue:work -vv --queue=default,mails,message_broadcast --timeout=0"
],
"websocket": [
"Composer\\Config::disableProcessTimeout",
"@php artisan reverb:start --debug"
],
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix",
"test:stan": "./vendor/bin/phpstan analyse",
"test:unit": "XDEBUG_MODE=off _php ./vendor/bin/phpunit --testsuite unit --no-coverage",
"test:unit:coverage": "XDEBUG_MODE=coverage phpunit --testsuite unit --coverage-html ./.phpunit.coverage",
"test:unit:coverage:text": "XDEBUG_MODE=coverage phpunit --testsuite unit --coverage-text",
"test:unit:coverage:clover": "XDEBUG_MODE=coverage phpunit --testsuite unit --coverage-clover .phpunit.coverage/coverage-clover.xml",
"test:feature": "XDEBUG_MODE=off _php ./vendor/bin/phpunit --testsuite feature --no-coverage",
"test:feature:coverage": "XDEBUG_MODE=coverage phpunit --testsuite feature --coverage-html ./.phpunit.feature.coverage; cp ./tests/coverage.dark.css .phpunit.feature.coverage/_css/custom.css",
"test:all": [
"composer test:stan",
"composer test:unit",
"composer test:feature"
]
},
"extra": {
"laravel": {
"dont-discover": [
"spatie/laravel-backup"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"0.0.0/composer-include-files": true,
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}