-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.37 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.37 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
{
"name": "nham24/macroable",
"description": "A set of useful Laravel macros",
"keywords": [
"nham24",
"macroable"
],
"homepage": "https://github.com/go24dev/marcoable",
"license": "MIT",
"authors": [
{
"name": "Sophy SEM",
"email": "sophy@go24.sg",
"homepage": "https://github.com/semsphy",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"illuminate/support": ">=5.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21",
"mockery/mockery": "^1.6.2",
"orchestra/testbench": "^8.5.9",
"pestphp/pest": "^2.0",
"phpunit/phpunit": "10.2.2"
},
"autoload": {
"psr-4": {
"Nham24\\Macroable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nham24\\Macroable\\Test\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Nham24\\Macroable\\MacroServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}