-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.88 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "supportpal/pollcast",
"description": "Laravel broadcasting driver suitable for restricted hosting environments.",
"license": "MIT",
"authors": [
{
"name": "Kieran Brahney",
"email": "kieran@supportpal.com"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"firebase/php-jwt": "^6.11 || ^7.0",
"illuminate/broadcasting": "^12.0|^13.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/http": "^12.0|^13.0",
"illuminate/session": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0"
},
"require-dev": {
"graham-campbell/testbench": "^6.0",
"larastan/larastan": "3.4.2",
"phpstan/phpstan-mockery": "2.0.0",
"phpunit/phpunit": "^12.2",
"rregeer/phpunit-coverage-check": "^0.3.1",
"supportpal/coding-standard": "0.4.5"
},
"autoload": {
"psr-4": {
"SupportPal\\Pollcast\\": "src",
"Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"SupportPal\\Pollcast\\Tests\\": "tests"
}
},
"config": {
"preferred-install": "dist",
"secure-http": false,
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"extra": {
"laravel": {
"providers": [
"SupportPal\\Pollcast\\ServiceProvider"
]
}
},
"scripts": {
"unit:tests": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-html codecov",
"stan:analyse": "./vendor/bin/phpstan analyse --memory-limit=256M",
"lint:analyse": "./vendor/bin/phpcs --standard=phpcs.xml",
"lint:fix": "./vendor/bin/phpcbf --standard=phpcs.xml"
}
}