-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.3 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "digbang/utils",
"description": "Utility belt for your Laravel project",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Darío Govergun",
"email": "[email protected]"
},
{
"name": "Juan Falcón",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/contracts": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/http": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"illuminate/pagination": "^8.0 || ^9.0 || ^10.0 || ^11.0",
"laravel-doctrine/fluent": "^1.2 || ^3.0",
"laravel-doctrine/orm": "^1.7 || ^3.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^8.5 || ^9.5"
},
"autoload": {
"psr-4": {
"Digbang\\Utils\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Digbang\\Utils\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"./vendor/bin/phpunit",
"./vendor/bin/php-cs-fixer fix --allow-risky=yes"
]
}
}