-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
59 lines (59 loc) · 1.62 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
{
"name": "monooso/unobserve",
"type": "library",
"description": "Mute and unmute Laravel observers at will.",
"homepage": "https://github.com/monooso/unobserve",
"license": "MIT",
"keywords": [
"laravel"
],
"support": {
"issues": "https://github.com/monooso/unobserve/issues",
"source": "https://github.com/monooso/unobserve"
},
"authors": [
{
"name": "Stephen Lewis",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"illuminate/contracts": "^11.0|^12.0",
"illuminate/support": "^11.0|^12.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.52",
"orchestra/testbench": "^9.0|^10.0",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Monooso\\Unobserve\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Monooso\\Unobserve\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Monooso\\Unobserve\\UnobserveServiceProvider"
]
}
},
"scripts": {
"lint-check": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config tools/php-cs-fixer/.php-cs-fixer.php --dry-run --diff",
"lint-fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --config tools/php-cs-fixer/.php-cs-fixer.php",
"test": "phpunit"
}
}