forked from agorakit/agorakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
110 lines (110 loc) · 3.26 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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "agorakit/agorakit",
"description": "Agorakit, groupware for citizen.",
"keywords": [
"groupware",
"laravel"
],
"license": "AGPL-3.0-only",
"type": "project",
"require": {
"php": "^8.3",
"consoletvs/charts": "^6.7",
"cviebrock/eloquent-sluggable": "^11.0",
"cviebrock/eloquent-taggable": "^11.0",
"ddeboer/imap": "^1.21",
"doctrine/dbal": "^3.9",
"geocoder-php/nominatim-provider": "^5.7",
"guzzlehttp/guzzle": "^7.9",
"intervention/image": "^3.9",
"intervention/image-laravel": "^1.3",
"konekt/html": "^6.5",
"laravel/framework": "^11.30",
"laravel/helpers": "^1.7",
"laravel/tinker": "^2.10",
"laravel/ui": "^4.5",
"laravolt/avatar": "^6.0",
"league/html-to-markdown": "^5.1",
"mews/purifier": "^3.4",
"michelf/php-markdown": "^2.0",
"misd/linkify": "^1.1",
"mpratt/embera": "^2.0",
"nesbot/carbon": "^3.8",
"nicolaslopezj/searchable": "^1.13",
"rap2hpoutre/laravel-log-viewer": "^2.4",
"spatie/icalendar-generator": "^2.8",
"spatie/laravel-honeypot": "^4.5",
"spatie/laravel-ignition": "^2.8",
"suin/php-rss-writer": "^1.6",
"tio/laravel": "^1.23",
"toin0u/geocoder-laravel": "^4.7",
"venturecraft/revisionable": "^1.41",
"watson/validating": "^8.2",
"willdurand/email-reply-parser": "^2.10",
"zbateson/mail-mime-parser": "^3.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.14",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.9",
"laravel/browser-kit-testing": "^7.2",
"mmo/faker-images": "^0.9.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.5",
"phpunit/phpunit": "^11.4"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
},
"platform": {
"php": "8.3"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
],
"files": [
"app/Helpers/Functions.php",
"app/Helpers/Filters.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"classmap": [
"tests/TestCase.php",
"tests/BrowserKitTestCase.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"scan": "vendor/bin/phpstan analyse app tests --level 0 --memory-limit 1G",
"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"
]
}
}