-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.78 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.78 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
{
"name": "notur/notur",
"description": "Extension framework for Pterodactyl Panel v1",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/sak0a/notur",
"keywords": ["pterodactyl", "extensions", "plugins", "panel", "laravel"],
"support": {
"issues": "https://github.com/sak0a/notur/issues",
"source": "https://github.com/sak0a/notur"
},
"authors": [
{
"name": "Notur Contributors"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/console": "^10.0 || ^11.0",
"illuminate/database": "^10.0 || ^11.0",
"illuminate/routing": "^10.0 || ^11.0",
"illuminate/events": "^10.0 || ^11.0",
"illuminate/view": "^10.0 || ^11.0",
"symfony/yaml": "^6.2 || ^7.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^9.0",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"Notur\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Notur\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Notur\\NoturServiceProvider"
],
"aliases": {
"Notur": "Notur\\Facades\\Notur"
}
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite Unit",
"test:integration": "phpunit --testsuite Integration",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-text --coverage-html coverage/php"
},
"minimum-stability": "dev",
"prefer-stable": true
}