-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
68 lines (68 loc) · 1.87 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
67
68
{
"name": "hypefactors/laravel-follow",
"description": "Laravel 9 Follow System for Eloquent models.",
"keywords": [
"php",
"hypefactors",
"laravel",
"follow"
],
"homepage": "https://hypefactors.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Hypefactors A/S",
"email": "[email protected]",
"homepage": "https://hypefactors.com"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"hypefactors/php-code-standards": "^3.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Hypefactors\\Laravel\\Follow\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hypefactors\\Laravel\\Follow\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"hypefactors/php-code-standards": true
}
},
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "9.0.x-dev"
},
"laravel": {
"providers": [
"Hypefactors\\Laravel\\Follow\\FollowServiceProvider"
]
}
},
"scripts": {
"ecs:fix": "./vendor/bin/ecs --fix",
"ecs:check": "./vendor/bin/ecs",
"phpstan": "./vendor/bin/phpstan analyse --ansi",
"rector:fix": "./vendor/bin/rector process --ansi",
"rector:check": "./vendor/bin/rector process --ansi --dry-run",
"test": "vendor/bin/phpunit --verbose --colors=always"
}
}