-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
41 lines (41 loc) · 1.03 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
{
"name": "czim/laravel-paperclip",
"description": "Laravel Eloquent file attachment solution",
"keywords": [ "file", "attachment", "laravel", "upload" ],
"homepage": "https://github.com/czim",
"require": {
"php": "^8.1",
"czim/file-handling": "^2.3",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.5",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"Czim\\Paperclip\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Czim\\Paperclip\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"Czim\\Paperclip\\Providers\\PaperclipServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}