-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 2.74 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "softrules/laravel",
"description": "Laravel implementatie van de SoftRules Userinterfaces",
"keywords": [
"laravel",
"SoftRules Laravel"
],
"homepage": "https://github.com/my-tp-vergelijken/softrules-laravel",
"license": "proprietary",
"type": "library",
"authors": [
{
"name": "SoftRules",
"email": "[email protected]",
"homepage": "https://www.softrules.com/",
"role": "Organisation"
},
{
"name": "My TP - a Blinqx company",
"email": "[email protected]",
"homepage": "https://my-tp.net/",
"role": "Organisation"
}
],
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-simplexml": "*",
"spatie/laravel-package-tools": "^1.16",
"laravel/framework": "^10.0|^11.0",
"softrules/php": "^0.2.12"
},
"require-dev": {
"laravel/pint": "^1.17",
"nunomaduro/collision": "^8.1.1||^7.10.0",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^9.0.0||^8.24.0",
"pestphp/pest": "^2.35",
"pestphp/pest-plugin-arch": "^2.7",
"pestphp/pest-plugin-laravel": "^2.4",
"rector/rector": "^1.2",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"SoftRules\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoftRules\\Laravel\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint",
"rector": "vendor/bin/rector process"
},
"config": {
"platform": {
"php": "8.1.0"
},
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/SoftRules/PHP.git"
}
],
"extra": {
"laravel": {
"providers": [
"SoftRules\\Laravel\\SoftRulesServiceProvider"
],
"aliases": {
"SoftRules": "SoftRules\\Laravel\\SoftRules"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}