-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "grafite/support",
"description": "Some handy Laravel Support tools",
"license": "MIT",
"keywords": [
"Laravel"
],
"authors": [
{
"name": "Matt Lantz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/view": "^9.0|^10.0|^11.0",
"illuminate/collections": "^9.0|^10.0|^11.0",
"donatello-za/rake-php-plus": "^1.0",
"divineomega/php-summary": "^3.0",
"nojimage/twitter-text-php": "^3.3",
"hallindavid/manny": "^1.02",
"nxp/math-executor": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.0",
"laravel/pint": "^1.10",
"orchestra/testbench": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Grafite\\Support\\": "src/"
},
"files": [
"src/GlobalHelpers/RouteHelper.php",
"src/GlobalHelpers/SessionHelper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Grafite\\Support\\SupportProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check-style": "vendor/bin/pint --test",
"fix-style": "vendor/bin/pint",
"insights": "vendor/bin/phpinsights",
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover clover.xml && php coverage-checker.php clover.xml 50"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}