-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
98 lines (98 loc) · 3.33 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "toneflix-code/laravel-op",
"type": "project",
"description": "Laravel OP is a simple fork of Laravel that provides a set of tools to help you build your Laravel application faster and easier. It is a collection of useful classes, traits, and functions that I have found useful in my own projects. It is a work in progress and I will be adding more features as I need them. I hope you find it useful too.",
"keywords": [
"framework",
"laravel",
"toneflix",
"toneflix-code",
"library",
"laravel-op",
"bootstrap",
"quick-start"
],
"license": "MIT",
"require": {
"php": "^8.2",
"cartalyst/stripe-laravel": "^16.0",
"hrace009/config-writer": "^1.6",
"laravel-notification-channels/twilio": "^3.4",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9",
"maatwebsite/excel": "^3.1",
"masbug/flysystem-google-drive-ext": "^2.4",
"matomo/device-detector": "^6.3",
"simplesoftwareio/simple-qrcode": "^4.2",
"spatie/laravel-permission": "^6.4",
"toneflix-code/kudisms-notification": "^1.0.1",
"toneflix-code/laravel-fileable": "^2.0.8",
"toneflix-code/laravel-resource-modifier": "^1.0.0",
"valorin/random": "^0.5.0",
"yabacon/paystack-php": "^2.2"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0",
"spatie/laravel-ignition": "^2.4",
"toneflix-code/fakerphp-lorem-toneflix": "^1.0.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"V1\\": "app/v1/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/v1/Helpers/MainHelper.php",
"app/v1/Helpers/UrlHelper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"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"
],
"run-test": "php artisan test",
"test": "XDEBUG_MODE=coverage php artisan test",
"pint": "./vendor/bin/pint"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}