-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.84 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.84 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
{
"name": "kirschbaum-development/commentions",
"description": "A package to allow you to create comments, tag users and more",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Kirschbaum\\Commentions\\": "src/",
"Kirschbaum\\Commentions\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Luís Dalmolin",
"email": "luis.nh@gmail.com"
}
],
"require": {
"spatie/laravel-package-tools": "^1.18",
"league/html-to-markdown": "^5.1",
"illuminate/support": "^11.0|^12.0|^13.0",
"illuminate/database": "^11.0|^12.0|^13.0",
"livewire/livewire": "^3.5|^4.0",
"filament/support": "^3.2|^4.0|^5.0",
"filament/notifications": "^3.2|^4.0|^5.0",
"filament/filament": "^3.2|^4.0|^5.0"
},
"extra": {
"laravel": {
"providers": [
"Kirschbaum\\Commentions\\CommentionsServiceProvider"
]
}
},
"require-dev": {
"pestphp/pest": "^3.7|^4.0",
"illuminate/auth": "^11.0|^12.0|^13.0",
"orchestra/testbench": "^9.9|^10.0|^11.0",
"pestphp/pest-plugin-laravel": "^3.1|^4.0",
"pestphp/pest-plugin-livewire": "^3.0|^4.0",
"laravel/pint": "^1.21",
"larastan/larastan": "^3.0",
"filament/upgrade": "^5.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "vendor/bin/pest",
"lint": "./vendor/bin/pint --config pint.json",
"lint:check": "./vendor/bin/pint --config pint.json --test",
"static-analysis": "./vendor/bin/phpstan analyse -c phpstan.neon"
}
}