forked from thenpingme/thenpingme-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.98 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "thenpingme/laravel",
"description": "Zero config scheduled task monitoring for Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"thenpingme",
"laravel"
],
"authors": [
{
"name": "Michael Dyrynda",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/thenpingme/laravel",
"require": {
"php": "^8.0",
"laravel/framework": "^9.45||^10.0",
"lorisleiva/cron-translator": "^0.3",
"nesbot/carbon": "^2.62",
"nunomaduro/laravel-console-task": "^1.7",
"sixlive/dotenv-editor": "^2.0",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.23",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.4.2",
"nikic/php-parser": "^4.15",
"nunomaduro/larastan": "^2.3",
"orchestra/testbench": "^7.0||^8.0",
"pestphp/pest": "^1.17",
"pestphp/pest-plugin-parallel": "^0.3.0",
"rector/rector": "^0.12"
},
"autoload": {
"psr-4": {
"Thenpingme\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Thenpingme\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
},
"laravel": {
"aliases": {
"Laravel": "Thenpingme\\Facades\\Thenpingme"
},
"providers": [
"Thenpingme\\ThenpingmeServiceProvider"
]
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.dist.php",
"normalise": "@composer normalize --indent-style space --indent-size 2 --ansi",
"rector": "vendor/bin/rector process src --ansi",
"stan": "vendor/bin/phpstan --ansi",
"test": "vendor/bin/pest --parallel",
"test-coverage": "vendor/bin/pest --parallel --coverage-html coverage"
}
}