-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.38 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cjmellor/engageify",
"description": "Easily add engagement features like likes, dislikes, upvotes, and downvotes to your models, paving the way for richer user interactions in your application",
"keywords": [
"laravel",
"engageify"
],
"homepage": "https://github.com/cjmellor/engageify",
"support": {
"issues": "https://github.com/cjmellor/engageify/issues",
"source": "https://github.com/cjmellor/engageify"
},
"license": "MIT",
"authors": [
{
"name": "Chris Mellor",
"email": "chris@mellor.pizza"
}
],
"require": {
"php": "^8.3",
"illuminate/database": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0"
},
"require-dev": {
"driftingly/rector-laravel": "^2.0",
"larastan/larastan": "^3.0",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^8.0",
"orchestra/testbench": "^10.0|^11.0",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-arch": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"pestphp/pest-plugin-type-coverage": "^4.0",
"phpunit/phpunit": "^12.0",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Cjmellor\\Engageify\\": "src/",
"Cjmellor\\Engageify\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Cjmellor\\Engageify\\Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"test:lint": [
"pint --parallel --test",
"rector --dry-run"
],
"test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
"test:types": "vendor/bin/phpstan",
"test:unit": "XDEBUG_MODE=\"coverage\" pest --parallel --coverage --exactly=100.0",
"test": [
"@test:lint",
"@test:type-coverage",
"@test:types",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Cjmellor\\Engageify\\EngageifyServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}