forked from jromero98/entrust
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
114 lines (114 loc) · 3.9 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "mitchbred/entrust",
"description": "This package provides a flexible way to add role-based permissions to Laravel and is a fork from Zizaco/entrust",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": false,
"require": {
"php": "^8.2",
"doctrine/inflector": "^2.0.8",
"illuminate/bus": "^11.0.0",
"illuminate/cache": "^11.0.0",
"illuminate/collections": "^11.0.0",
"illuminate/conditionable": "^11.0.0",
"illuminate/console": "^11.0.0",
"illuminate/container": "^11.0.0",
"illuminate/contracts": "^11.0.0",
"illuminate/events": "^11.0.0",
"illuminate/filesystem": "^11.0.0",
"illuminate/macroable": "^11.0.0",
"illuminate/pipeline": "^11.0.0",
"illuminate/support": "^11.0.0",
"illuminate/view": "^11.0.0",
"laravel/prompts": "^0.1.13",
"nesbot/carbon": "^3.6",
"psr/clock": "^1.0.0",
"psr/container": "^2.0.2",
"psr/simple-cache": "^3.0.0",
"symfony/console": "^7.0.4",
"symfony/deprecation-contracts": "^3.3.0",
"symfony/finder": "^7.0.4",
"symfony/polyfill-ctype": "^1.0.0",
"symfony/polyfill-intl-grapheme": "^1.0.0",
"symfony/polyfill-intl-normalizer": "^1.0.0",
"symfony/polyfill-mbstring": "^1.0.0",
"symfony/polyfill-php80": "^1.0.0",
"symfony/process": "^7.0.4",
"symfony/service-contracts": "^3.3.0",
"symfony/string": "^7.0.4",
"symfony/translation": "^7.0.4",
"symfony/translation-contracts": "^3.3.0",
"voku/portable-ascii": "^2.0.1",
"brick/math": "^0.11.0 || ^0.12.0",
"hamcrest/hamcrest-php": "^2.0.1",
"illuminate/database": "^11.0.0",
"myclabs/deep-copy": "^1.11.0",
"nikic/php-parser": "^5.0.2",
"phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.2.1",
"psr/cache": "^3.0.0",
"psr/event-dispatcher": "^1.0.0",
"psr/log": "^3.0.0",
"sebastian/cli-parser": "^3.0.1",
"sebastian/code-unit": "^3.0.0",
"sebastian/code-unit-reverse-lookup": "^4.0.0",
"sebastian/comparator": "^6.0.0",
"sebastian/complexity": "^4.0.0",
"sebastian/diff": "^6.0.0",
"sebastian/environment": "^7.1.0",
"sebastian/exporter": "^6.0.1",
"sebastian/global-state": "^7.0.1",
"sebastian/lines-of-code": "^3.0.0",
"sebastian/object-enumerator": "^6.0.0",
"sebastian/object-reflector": "^4.0.0",
"sebastian/recursion-context": "^6.0.0",
"sebastian/type": "^5.0.0",
"sebastian/version": "^5.0.0",
"symfony/cache": "^7.0.4",
"symfony/cache-contracts": "^3.3.0",
"symfony/event-dispatcher": "^7.0.4",
"symfony/event-dispatcher-contracts": "^3.3.0",
"symfony/options-resolver": "^7.0.4",
"symfony/var-exporter": "^7.0.4",
"symfony/yaml": "^7.0.4",
"theseer/tokenizer": "^1.2.1"
},
"require-dev": {
"phpunit/phpunit": "^11",
"mockery/mockery": "^1.5.1",
"overtrue/phplint": "^9.0.3",
"phpunit/php-file-iterator": "^5.0",
"phpunit/php-invoker": "dev-main",
"phpunit/php-text-template": "dev-main",
"phpunit/php-timer": "dev-main"
},
"autoload": {
"classmap": [
"src/commands"
],
"psr-4": {
"Trebol\\Entrust\\": "src/Entrust/"
}
},
"extra":{
"laravel":{
"providers":[
"Trebol\\Entrust\\EntrustServiceProvider"
],
"aliases":{
"Entrust": "Trebol\\Entrust\\EntrustFacade"
}
}
},
"autoload-dev": {
"classmap": [
"tests/Middleware/MiddlewareTest.php"
]
},
"config": {
"platform": {
"php": "8.2"
}
}
}