-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.58 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
{
"name": "al-rimi/submit",
"description": "A simple submission system for managing student submissions.",
"type": "library",
"require": {
"php": ">=8.0",
"laravel/framework": "^10.0 || ^11.0",
"illuminate/bus": "^10.0 || ^11.0",
"illuminate/contracts": "^10.0 || ^11.0",
"illuminate/mail": "^10.0 || ^11.0",
"illuminate/queue": "^10.0 || ^11.0",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/http": "^10.0 || ^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"AlRimi\\Submit\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"AlRimi\\Submit\\SubmitServiceProvider"
]
}
},
"authors": [
{
"name": "Al raimi Abdullah",
"email": "abdullah@syalux.com",
"role": "Developer",
"homepage": "https://github.com/Al-rimi"
}
],
"keywords": [
"laravel",
"package",
"submission",
"student-management",
"customizable"
],
"license": "MIT",
"support": {
"issues": "https://github.com/Al-rimi/submit-pak/issues",
"source": "https://github.com/Al-rimi/submit-pak"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}