-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathcomposer.json
66 lines (66 loc) · 1.59 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
{
"name": "qcod/laravel-gamify",
"description": "Add gamification in laravel app with reputation point and badges support",
"homepage": "https://github.com/qcod/laravel-gamify",
"type": "library",
"license": "MIT",
"keywords": [
"qcod",
"laravel",
"achivement",
"gamify",
"gamification",
"reputation",
"points",
"badge",
"reward"
],
"authors": [
{
"name": "Mohd Saqueib Ansari",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.83.27|^9.51.0|^10.0.0|^11.0",
"spatie/laravel-package-tools": "^1.12"
},
"require-dev": {
"orchestra/testbench": "^6.25.1|^7.22.0|^8.0.0|^9.0",
"mockery/mockery": "^0.9.4 || ~1.0",
"pestphp/pest": "^1.23.1|^2.11",
"pestphp/pest-plugin-laravel": "^1.4|^2.1",
"laravel/pint": "^1.5"
},
"autoload": {
"psr-4": {
"QCod\\Gamify\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"QCod\\Gamify\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"QCod\\Gamify\\GamifyServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/pest",
"format": "vendor/bin/pint",
"format-dryrun": "vendor/bin/pint --test"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}