-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.22 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
{
"name": "riipandi/laravel-helpers",
"description": "A collection of awesome helpful functions for Laravel",
"keywords": [ "laravel", "helpers" ],
"homepage": "https://github.com/riipandi/laravel-helpers",
"license": "MIT",
"authors": [
{
"name": "Caleb Porzio",
"email": "[email protected]"
},
{
"name": "Aris Ripandi",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5",
"robinvdvleuten/ulid": "^4.0"
},
"require-dev": {
"fzaninotto/faker": "^1.9",
"illuminate/support": "5.7.*|5.8.*|^6.0|^7.0",
"mockery/mockery": "dev-master",
"phpunit/phpunit": "^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Riipandi\\LaravelHelpers\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Riipandi\\LaravelHelpers\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Riipandi\\LaravelHelpers\\LaravelHelpersServiceProvider"
]
}
}
}