Commit abc1b901e995bfa28ec820c8a7112609d4bd14bc
1 parent
e66e075e19
Коммит баг с миграциями
Showing 8 changed files with 84 additions and 299 deletions Inline Diff
- composer.json
- composer.lock
- database/migrations/2024_06_24_092718_alert_table_users.php
- database/migrations/2024_06_27_124222_alert_sertifications_table.php
- database/migrations/2024_08_09_072423_alter_table_chats.php
- database/migrations/2024_08_10_123217_alter_table_workers.php
- database/migrations/2024_09_18_104034_change_ip_to_id_in_likes_tables.php
- webstat/index.html
composer.json
1 | { | 1 | { |
2 | "name": "laravel/laravel", | 2 | "name": "laravel/laravel", |
3 | "type": "project", | 3 | "type": "project", |
4 | "description": "The Laravel Framework.", | 4 | "description": "The Laravel Framework.", |
5 | "keywords": ["framework", "laravel"], | 5 | "keywords": ["framework", "laravel"], |
6 | "license": "MIT", | 6 | "license": "MIT", |
7 | "require": { | 7 | "require": { |
8 | "php": "^8.0.2", | 8 | "php": "^8.0.2", |
9 | "barryvdh/laravel-dompdf": "^2.1", | 9 | "barryvdh/laravel-dompdf": "^2.1", |
10 | "doctrine/dbal": "3.0", | 10 | "doctrine/dbal": "^4.1", |
11 | "filament/forms": "^2.17", | 11 | "filament/forms": "^2.17", |
12 | "filament/notifications": "^2.17", | 12 | "filament/notifications": "^2.17", |
13 | "filament/tables": "^2.17", | 13 | "filament/tables": "^2.17", |
14 | "guzzlehttp/guzzle": "^7.2", | 14 | "guzzlehttp/guzzle": "^7.2", |
15 | "irazasyed/telegram-bot-sdk": "^3.14", | 15 | "irazasyed/telegram-bot-sdk": "^3.14", |
16 | "laravel-lang/lang": "^12.17", | 16 | "laravel-lang/lang": "^12.17", |
17 | "laravel/framework": "^9.19", | 17 | "laravel/framework": "^9.19", |
18 | "laravel/sanctum": "^3.0", | 18 | "laravel/sanctum": "^3.0", |
19 | "laravel/tinker": "^2.7", | 19 | "laravel/tinker": "^2.7", |
20 | "laravel/ui": "^4.2", | 20 | "laravel/ui": "^4.2", |
21 | "phpoffice/phpspreadsheet": "^1.29" | 21 | "phpoffice/phpspreadsheet": "^1.29" |
22 | }, | 22 | }, |
23 | "require-dev": { | 23 | "require-dev": { |
24 | "barryvdh/laravel-debugbar": "^3.9", | 24 | "barryvdh/laravel-debugbar": "^3.9", |
25 | "fakerphp/faker": "^1.9.1", | 25 | "fakerphp/faker": "^1.9.1", |
26 | "laravel/pint": "^1.0", | 26 | "laravel/pint": "^1.0", |
27 | "laravel/sail": "^1.0.1", | 27 | "laravel/sail": "^1.0.1", |
28 | "mockery/mockery": "^1.4.4", | 28 | "mockery/mockery": "^1.4.4", |
29 | "nunomaduro/collision": "^6.1", | 29 | "nunomaduro/collision": "^6.1", |
30 | "phpunit/phpunit": "^9.5.10", | 30 | "phpunit/phpunit": "^9.5.10", |
31 | "spatie/laravel-ignition": "^1.0" | 31 | "spatie/laravel-ignition": "^1.0" |
32 | }, | 32 | }, |
33 | "autoload": { | 33 | "autoload": { |
34 | "psr-4": { | 34 | "psr-4": { |
35 | "App\\": "app/", | 35 | "App\\": "app/", |
36 | "Database\\Factories\\": "database/factories/", | 36 | "Database\\Factories\\": "database/factories/", |
37 | "Database\\Seeders\\": "database/seeders/" | 37 | "Database\\Seeders\\": "database/seeders/" |
38 | } | 38 | } |
39 | }, | 39 | }, |
40 | "autoload-dev": { | 40 | "autoload-dev": { |
41 | "psr-4": { | 41 | "psr-4": { |
42 | "Tests\\": "tests/" | 42 | "Tests\\": "tests/" |
43 | } | 43 | } |
44 | }, | 44 | }, |
45 | "scripts": { | 45 | "scripts": { |
46 | "post-autoload-dump": [ | 46 | "post-autoload-dump": [ |
47 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | 47 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", |
48 | "@php artisan package:discover --ansi" | 48 | "@php artisan package:discover --ansi" |
49 | ], | 49 | ], |
50 | "post-update-cmd": [ | 50 | "post-update-cmd": [ |
51 | "@php artisan vendor:publish --tag=laravel-assets --ansi --force" | 51 | "@php artisan vendor:publish --tag=laravel-assets --ansi --force" |
52 | ], | 52 | ], |
53 | "post-root-package-install": [ | 53 | "post-root-package-install": [ |
54 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | 54 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" |
55 | ], | 55 | ], |
56 | "post-create-project-cmd": [ | 56 | "post-create-project-cmd": [ |
57 | "@php artisan key:generate --ansi" | 57 | "@php artisan key:generate --ansi" |
58 | ] | 58 | ] |
59 | }, | 59 | }, |
60 | "extra": { | 60 | "extra": { |
61 | "laravel": { | 61 | "laravel": { |
62 | "dont-discover": [] | 62 | "dont-discover": [] |
63 | } | 63 | } |
64 | }, | 64 | }, |
65 | "config": { | 65 | "config": { |
66 | "optimize-autoloader": true, | 66 | "optimize-autoloader": true, |
67 | "preferred-install": "dist", | 67 | "preferred-install": "dist", |
68 | "sort-packages": true, | 68 | "sort-packages": true, |
69 | "allow-plugins": { | 69 | "allow-plugins": { |
70 | "pestphp/pest-plugin": true | 70 | "pestphp/pest-plugin": true |
71 | } | 71 | } |
72 | }, | 72 | }, |
73 | "minimum-stability": "stable", | 73 | "minimum-stability": "stable", |
74 | "prefer-stable": true | 74 | "prefer-stable": true |
75 | } | 75 | } |
76 | 76 |
composer.lock
1 | { | 1 | { |
2 | "_readme": [ | 2 | "_readme": [ |
3 | "This file locks the dependencies of your project to a known state", | 3 | "This file locks the dependencies of your project to a known state", |
4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", | 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", |
5 | "This file is @generated automatically" | 5 | "This file is @generated automatically" |
6 | ], | 6 | ], |
7 | "content-hash": "a7eb5dd83a46d4d36bcfd6dc5e419b75", | 7 | "content-hash": "3ec5ac1b1672ef52de708476e39931cf", |
8 | "packages": [ | 8 | "packages": [ |
9 | { | 9 | { |
10 | "name": "akaunting/laravel-money", | 10 | "name": "akaunting/laravel-money", |
11 | "version": "4.0.1", | 11 | "version": "4.0.1", |
12 | "source": { | 12 | "source": { |
13 | "type": "git", | 13 | "type": "git", |
14 | "url": "https://github.com/akaunting/laravel-money.git", | 14 | "url": "https://github.com/akaunting/laravel-money.git", |
15 | "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903" | 15 | "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903" |
16 | }, | 16 | }, |
17 | "dist": { | 17 | "dist": { |
18 | "type": "zip", | 18 | "type": "zip", |
19 | "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903", | 19 | "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903", |
20 | "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903", | 20 | "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903", |
21 | "shasum": "" | 21 | "shasum": "" |
22 | }, | 22 | }, |
23 | "require": { | 23 | "require": { |
24 | "illuminate/contracts": "^9.0|^10.0", | 24 | "illuminate/contracts": "^9.0|^10.0", |
25 | "illuminate/support": "^9.0|^10.0", | 25 | "illuminate/support": "^9.0|^10.0", |
26 | "illuminate/validation": "^9.0|^10.0", | 26 | "illuminate/validation": "^9.0|^10.0", |
27 | "illuminate/view": "^9.0|^10.0", | 27 | "illuminate/view": "^9.0|^10.0", |
28 | "php": "^8.0", | 28 | "php": "^8.0", |
29 | "vlucas/phpdotenv": "^5.4.1" | 29 | "vlucas/phpdotenv": "^5.4.1" |
30 | }, | 30 | }, |
31 | "require-dev": { | 31 | "require-dev": { |
32 | "orchestra/testbench": "^7.4|^8.0", | 32 | "orchestra/testbench": "^7.4|^8.0", |
33 | "phpunit/phpunit": "^9.5|^10.0", | 33 | "phpunit/phpunit": "^9.5|^10.0", |
34 | "vimeo/psalm": "^4.23" | 34 | "vimeo/psalm": "^4.23" |
35 | }, | 35 | }, |
36 | "type": "library", | 36 | "type": "library", |
37 | "extra": { | 37 | "extra": { |
38 | "laravel": { | 38 | "laravel": { |
39 | "providers": [ | 39 | "providers": [ |
40 | "Akaunting\\Money\\Provider" | 40 | "Akaunting\\Money\\Provider" |
41 | ] | 41 | ] |
42 | } | 42 | } |
43 | }, | 43 | }, |
44 | "autoload": { | 44 | "autoload": { |
45 | "files": [ | 45 | "files": [ |
46 | "src/helpers.php" | 46 | "src/helpers.php" |
47 | ], | 47 | ], |
48 | "psr-4": { | 48 | "psr-4": { |
49 | "Akaunting\\Money\\": "src" | 49 | "Akaunting\\Money\\": "src" |
50 | } | 50 | } |
51 | }, | 51 | }, |
52 | "notification-url": "https://packagist.org/downloads/", | 52 | "notification-url": "https://packagist.org/downloads/", |
53 | "license": [ | 53 | "license": [ |
54 | "MIT" | 54 | "MIT" |
55 | ], | 55 | ], |
56 | "authors": [ | 56 | "authors": [ |
57 | { | 57 | { |
58 | "name": "Denis Duliçi", | 58 | "name": "Denis Duliçi", |
59 | "email": "info@akaunting.com", | 59 | "email": "info@akaunting.com", |
60 | "homepage": "https://akaunting.com", | 60 | "homepage": "https://akaunting.com", |
61 | "role": "Developer" | 61 | "role": "Developer" |
62 | } | 62 | } |
63 | ], | 63 | ], |
64 | "description": "Currency formatting and conversion package for Laravel", | 64 | "description": "Currency formatting and conversion package for Laravel", |
65 | "keywords": [ | 65 | "keywords": [ |
66 | "convert", | 66 | "convert", |
67 | "currency", | 67 | "currency", |
68 | "format", | 68 | "format", |
69 | "laravel", | 69 | "laravel", |
70 | "money" | 70 | "money" |
71 | ], | 71 | ], |
72 | "support": { | 72 | "support": { |
73 | "issues": "https://github.com/akaunting/laravel-money/issues", | 73 | "issues": "https://github.com/akaunting/laravel-money/issues", |
74 | "source": "https://github.com/akaunting/laravel-money/tree/4.0.1" | 74 | "source": "https://github.com/akaunting/laravel-money/tree/4.0.1" |
75 | }, | 75 | }, |
76 | "time": "2023-03-16T14:39:27+00:00" | 76 | "time": "2023-03-16T14:39:27+00:00" |
77 | }, | 77 | }, |
78 | { | 78 | { |
79 | "name": "barryvdh/laravel-dompdf", | 79 | "name": "barryvdh/laravel-dompdf", |
80 | "version": "v2.1.0", | 80 | "version": "v2.1.0", |
81 | "source": { | 81 | "source": { |
82 | "type": "git", | 82 | "type": "git", |
83 | "url": "https://github.com/barryvdh/laravel-dompdf.git", | 83 | "url": "https://github.com/barryvdh/laravel-dompdf.git", |
84 | "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24" | 84 | "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24" |
85 | }, | 85 | }, |
86 | "dist": { | 86 | "dist": { |
87 | "type": "zip", | 87 | "type": "zip", |
88 | "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c8b8a8490e5f7348cf99054821fb248f103e7d24", | 88 | "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c8b8a8490e5f7348cf99054821fb248f103e7d24", |
89 | "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24", | 89 | "reference": "c8b8a8490e5f7348cf99054821fb248f103e7d24", |
90 | "shasum": "" | 90 | "shasum": "" |
91 | }, | 91 | }, |
92 | "require": { | 92 | "require": { |
93 | "dompdf/dompdf": "^2.0.3", | 93 | "dompdf/dompdf": "^2.0.3", |
94 | "illuminate/support": "^6|^7|^8|^9|^10|^11", | 94 | "illuminate/support": "^6|^7|^8|^9|^10|^11", |
95 | "php": "^7.2 || ^8.0" | 95 | "php": "^7.2 || ^8.0" |
96 | }, | 96 | }, |
97 | "require-dev": { | 97 | "require-dev": { |
98 | "larastan/larastan": "^1.0|^2.7.0", | 98 | "larastan/larastan": "^1.0|^2.7.0", |
99 | "orchestra/testbench": "^4|^5|^6|^7|^8|^9", | 99 | "orchestra/testbench": "^4|^5|^6|^7|^8|^9", |
100 | "phpro/grumphp": "^1 || ^2.5", | 100 | "phpro/grumphp": "^1 || ^2.5", |
101 | "squizlabs/php_codesniffer": "^3.5" | 101 | "squizlabs/php_codesniffer": "^3.5" |
102 | }, | 102 | }, |
103 | "type": "library", | 103 | "type": "library", |
104 | "extra": { | 104 | "extra": { |
105 | "branch-alias": { | 105 | "branch-alias": { |
106 | "dev-master": "2.0-dev" | 106 | "dev-master": "2.0-dev" |
107 | }, | 107 | }, |
108 | "laravel": { | 108 | "laravel": { |
109 | "providers": [ | 109 | "providers": [ |
110 | "Barryvdh\\DomPDF\\ServiceProvider" | 110 | "Barryvdh\\DomPDF\\ServiceProvider" |
111 | ], | 111 | ], |
112 | "aliases": { | 112 | "aliases": { |
113 | "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf", | 113 | "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf", |
114 | "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf" | 114 | "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf" |
115 | } | 115 | } |
116 | } | 116 | } |
117 | }, | 117 | }, |
118 | "autoload": { | 118 | "autoload": { |
119 | "psr-4": { | 119 | "psr-4": { |
120 | "Barryvdh\\DomPDF\\": "src" | 120 | "Barryvdh\\DomPDF\\": "src" |
121 | } | 121 | } |
122 | }, | 122 | }, |
123 | "notification-url": "https://packagist.org/downloads/", | 123 | "notification-url": "https://packagist.org/downloads/", |
124 | "license": [ | 124 | "license": [ |
125 | "MIT" | 125 | "MIT" |
126 | ], | 126 | ], |
127 | "authors": [ | 127 | "authors": [ |
128 | { | 128 | { |
129 | "name": "Barry vd. Heuvel", | 129 | "name": "Barry vd. Heuvel", |
130 | "email": "barryvdh@gmail.com" | 130 | "email": "barryvdh@gmail.com" |
131 | } | 131 | } |
132 | ], | 132 | ], |
133 | "description": "A DOMPDF Wrapper for Laravel", | 133 | "description": "A DOMPDF Wrapper for Laravel", |
134 | "keywords": [ | 134 | "keywords": [ |
135 | "dompdf", | 135 | "dompdf", |
136 | "laravel", | 136 | "laravel", |
137 | "pdf" | 137 | "pdf" |
138 | ], | 138 | ], |
139 | "support": { | 139 | "support": { |
140 | "issues": "https://github.com/barryvdh/laravel-dompdf/issues", | 140 | "issues": "https://github.com/barryvdh/laravel-dompdf/issues", |
141 | "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.1.0" | 141 | "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.1.0" |
142 | }, | 142 | }, |
143 | "funding": [ | 143 | "funding": [ |
144 | { | 144 | { |
145 | "url": "https://fruitcake.nl", | 145 | "url": "https://fruitcake.nl", |
146 | "type": "custom" | 146 | "type": "custom" |
147 | }, | 147 | }, |
148 | { | 148 | { |
149 | "url": "https://github.com/barryvdh", | 149 | "url": "https://github.com/barryvdh", |
150 | "type": "github" | 150 | "type": "github" |
151 | } | 151 | } |
152 | ], | 152 | ], |
153 | "time": "2024-03-04T08:18:20+00:00" | 153 | "time": "2024-03-04T08:18:20+00:00" |
154 | }, | 154 | }, |
155 | { | 155 | { |
156 | "name": "blade-ui-kit/blade-heroicons", | 156 | "name": "blade-ui-kit/blade-heroicons", |
157 | "version": "1.4.0", | 157 | "version": "1.4.0", |
158 | "source": { | 158 | "source": { |
159 | "type": "git", | 159 | "type": "git", |
160 | "url": "https://github.com/blade-ui-kit/blade-heroicons.git", | 160 | "url": "https://github.com/blade-ui-kit/blade-heroicons.git", |
161 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b" | 161 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b" |
162 | }, | 162 | }, |
163 | "dist": { | 163 | "dist": { |
164 | "type": "zip", | 164 | "type": "zip", |
165 | "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b", | 165 | "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b", |
166 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b", | 166 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b", |
167 | "shasum": "" | 167 | "shasum": "" |
168 | }, | 168 | }, |
169 | "require": { | 169 | "require": { |
170 | "blade-ui-kit/blade-icons": "^1.1", | 170 | "blade-ui-kit/blade-icons": "^1.1", |
171 | "illuminate/support": "^8.0|^9.0|^10.0", | 171 | "illuminate/support": "^8.0|^9.0|^10.0", |
172 | "php": "^7.4|^8.0" | 172 | "php": "^7.4|^8.0" |
173 | }, | 173 | }, |
174 | "require-dev": { | 174 | "require-dev": { |
175 | "orchestra/testbench": "^6.0|^7.0|^8.0", | 175 | "orchestra/testbench": "^6.0|^7.0|^8.0", |
176 | "phpunit/phpunit": "^9.0" | 176 | "phpunit/phpunit": "^9.0" |
177 | }, | 177 | }, |
178 | "type": "library", | 178 | "type": "library", |
179 | "extra": { | 179 | "extra": { |
180 | "laravel": { | 180 | "laravel": { |
181 | "providers": [ | 181 | "providers": [ |
182 | "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider" | 182 | "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider" |
183 | ] | 183 | ] |
184 | } | 184 | } |
185 | }, | 185 | }, |
186 | "autoload": { | 186 | "autoload": { |
187 | "psr-4": { | 187 | "psr-4": { |
188 | "BladeUI\\Heroicons\\": "src" | 188 | "BladeUI\\Heroicons\\": "src" |
189 | } | 189 | } |
190 | }, | 190 | }, |
191 | "notification-url": "https://packagist.org/downloads/", | 191 | "notification-url": "https://packagist.org/downloads/", |
192 | "license": [ | 192 | "license": [ |
193 | "MIT" | 193 | "MIT" |
194 | ], | 194 | ], |
195 | "authors": [ | 195 | "authors": [ |
196 | { | 196 | { |
197 | "name": "Dries Vints", | 197 | "name": "Dries Vints", |
198 | "homepage": "https://driesvints.com" | 198 | "homepage": "https://driesvints.com" |
199 | } | 199 | } |
200 | ], | 200 | ], |
201 | "description": "A package to easily make use of Heroicons in your Laravel Blade views.", | 201 | "description": "A package to easily make use of Heroicons in your Laravel Blade views.", |
202 | "homepage": "https://github.com/blade-ui-kit/blade-heroicons", | 202 | "homepage": "https://github.com/blade-ui-kit/blade-heroicons", |
203 | "keywords": [ | 203 | "keywords": [ |
204 | "Heroicons", | 204 | "Heroicons", |
205 | "blade", | 205 | "blade", |
206 | "laravel" | 206 | "laravel" |
207 | ], | 207 | ], |
208 | "support": { | 208 | "support": { |
209 | "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues", | 209 | "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues", |
210 | "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0" | 210 | "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0" |
211 | }, | 211 | }, |
212 | "funding": [ | 212 | "funding": [ |
213 | { | 213 | { |
214 | "url": "https://github.com/caneco", | 214 | "url": "https://github.com/caneco", |
215 | "type": "github" | 215 | "type": "github" |
216 | }, | 216 | }, |
217 | { | 217 | { |
218 | "url": "https://github.com/driesvints", | 218 | "url": "https://github.com/driesvints", |
219 | "type": "github" | 219 | "type": "github" |
220 | } | 220 | } |
221 | ], | 221 | ], |
222 | "time": "2023-01-25T17:57:58+00:00" | 222 | "time": "2023-01-25T17:57:58+00:00" |
223 | }, | 223 | }, |
224 | { | 224 | { |
225 | "name": "blade-ui-kit/blade-icons", | 225 | "name": "blade-ui-kit/blade-icons", |
226 | "version": "1.5.1", | 226 | "version": "1.5.1", |
227 | "source": { | 227 | "source": { |
228 | "type": "git", | 228 | "type": "git", |
229 | "url": "https://github.com/blade-ui-kit/blade-icons.git", | 229 | "url": "https://github.com/blade-ui-kit/blade-icons.git", |
230 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228" | 230 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228" |
231 | }, | 231 | }, |
232 | "dist": { | 232 | "dist": { |
233 | "type": "zip", | 233 | "type": "zip", |
234 | "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228", | 234 | "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228", |
235 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228", | 235 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228", |
236 | "shasum": "" | 236 | "shasum": "" |
237 | }, | 237 | }, |
238 | "require": { | 238 | "require": { |
239 | "illuminate/contracts": "^8.0|^9.0|^10.0", | 239 | "illuminate/contracts": "^8.0|^9.0|^10.0", |
240 | "illuminate/filesystem": "^8.0|^9.0|^10.0", | 240 | "illuminate/filesystem": "^8.0|^9.0|^10.0", |
241 | "illuminate/support": "^8.0|^9.0|^10.0", | 241 | "illuminate/support": "^8.0|^9.0|^10.0", |
242 | "illuminate/view": "^8.0|^9.0|^10.0", | 242 | "illuminate/view": "^8.0|^9.0|^10.0", |
243 | "php": "^7.4|^8.0", | 243 | "php": "^7.4|^8.0", |
244 | "symfony/console": "^5.3|^6.0", | 244 | "symfony/console": "^5.3|^6.0", |
245 | "symfony/finder": "^5.3|^6.0" | 245 | "symfony/finder": "^5.3|^6.0" |
246 | }, | 246 | }, |
247 | "require-dev": { | 247 | "require-dev": { |
248 | "mockery/mockery": "^1.3", | 248 | "mockery/mockery": "^1.3", |
249 | "orchestra/testbench": "^6.0|^7.0|^8.0", | 249 | "orchestra/testbench": "^6.0|^7.0|^8.0", |
250 | "phpunit/phpunit": "^9.0" | 250 | "phpunit/phpunit": "^9.0" |
251 | }, | 251 | }, |
252 | "bin": [ | 252 | "bin": [ |
253 | "bin/blade-icons-generate" | 253 | "bin/blade-icons-generate" |
254 | ], | 254 | ], |
255 | "type": "library", | 255 | "type": "library", |
256 | "extra": { | 256 | "extra": { |
257 | "laravel": { | 257 | "laravel": { |
258 | "providers": [ | 258 | "providers": [ |
259 | "BladeUI\\Icons\\BladeIconsServiceProvider" | 259 | "BladeUI\\Icons\\BladeIconsServiceProvider" |
260 | ] | 260 | ] |
261 | } | 261 | } |
262 | }, | 262 | }, |
263 | "autoload": { | 263 | "autoload": { |
264 | "files": [ | 264 | "files": [ |
265 | "src/helpers.php" | 265 | "src/helpers.php" |
266 | ], | 266 | ], |
267 | "psr-4": { | 267 | "psr-4": { |
268 | "BladeUI\\Icons\\": "src" | 268 | "BladeUI\\Icons\\": "src" |
269 | } | 269 | } |
270 | }, | 270 | }, |
271 | "notification-url": "https://packagist.org/downloads/", | 271 | "notification-url": "https://packagist.org/downloads/", |
272 | "license": [ | 272 | "license": [ |
273 | "MIT" | 273 | "MIT" |
274 | ], | 274 | ], |
275 | "authors": [ | 275 | "authors": [ |
276 | { | 276 | { |
277 | "name": "Dries Vints", | 277 | "name": "Dries Vints", |
278 | "homepage": "https://driesvints.com" | 278 | "homepage": "https://driesvints.com" |
279 | } | 279 | } |
280 | ], | 280 | ], |
281 | "description": "A package to easily make use of icons in your Laravel Blade views.", | 281 | "description": "A package to easily make use of icons in your Laravel Blade views.", |
282 | "homepage": "https://github.com/blade-ui-kit/blade-icons", | 282 | "homepage": "https://github.com/blade-ui-kit/blade-icons", |
283 | "keywords": [ | 283 | "keywords": [ |
284 | "blade", | 284 | "blade", |
285 | "icons", | 285 | "icons", |
286 | "laravel", | 286 | "laravel", |
287 | "svg" | 287 | "svg" |
288 | ], | 288 | ], |
289 | "support": { | 289 | "support": { |
290 | "issues": "https://github.com/blade-ui-kit/blade-icons/issues", | 290 | "issues": "https://github.com/blade-ui-kit/blade-icons/issues", |
291 | "source": "https://github.com/blade-ui-kit/blade-icons" | 291 | "source": "https://github.com/blade-ui-kit/blade-icons" |
292 | }, | 292 | }, |
293 | "funding": [ | 293 | "funding": [ |
294 | { | 294 | { |
295 | "url": "https://github.com/caneco", | 295 | "url": "https://github.com/caneco", |
296 | "type": "github" | 296 | "type": "github" |
297 | }, | 297 | }, |
298 | { | 298 | { |
299 | "url": "https://github.com/driesvints", | 299 | "url": "https://github.com/driesvints", |
300 | "type": "github" | 300 | "type": "github" |
301 | } | 301 | } |
302 | ], | 302 | ], |
303 | "time": "2023-02-15T16:30:12+00:00" | 303 | "time": "2023-02-15T16:30:12+00:00" |
304 | }, | 304 | }, |
305 | { | 305 | { |
306 | "name": "brick/math", | 306 | "name": "brick/math", |
307 | "version": "0.11.0", | 307 | "version": "0.11.0", |
308 | "source": { | 308 | "source": { |
309 | "type": "git", | 309 | "type": "git", |
310 | "url": "https://github.com/brick/math.git", | 310 | "url": "https://github.com/brick/math.git", |
311 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" | 311 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" |
312 | }, | 312 | }, |
313 | "dist": { | 313 | "dist": { |
314 | "type": "zip", | 314 | "type": "zip", |
315 | "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", | 315 | "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", |
316 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", | 316 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", |
317 | "shasum": "" | 317 | "shasum": "" |
318 | }, | 318 | }, |
319 | "require": { | 319 | "require": { |
320 | "php": "^8.0" | 320 | "php": "^8.0" |
321 | }, | 321 | }, |
322 | "require-dev": { | 322 | "require-dev": { |
323 | "php-coveralls/php-coveralls": "^2.2", | 323 | "php-coveralls/php-coveralls": "^2.2", |
324 | "phpunit/phpunit": "^9.0", | 324 | "phpunit/phpunit": "^9.0", |
325 | "vimeo/psalm": "5.0.0" | 325 | "vimeo/psalm": "5.0.0" |
326 | }, | 326 | }, |
327 | "type": "library", | 327 | "type": "library", |
328 | "autoload": { | 328 | "autoload": { |
329 | "psr-4": { | 329 | "psr-4": { |
330 | "Brick\\Math\\": "src/" | 330 | "Brick\\Math\\": "src/" |
331 | } | 331 | } |
332 | }, | 332 | }, |
333 | "notification-url": "https://packagist.org/downloads/", | 333 | "notification-url": "https://packagist.org/downloads/", |
334 | "license": [ | 334 | "license": [ |
335 | "MIT" | 335 | "MIT" |
336 | ], | 336 | ], |
337 | "description": "Arbitrary-precision arithmetic library", | 337 | "description": "Arbitrary-precision arithmetic library", |
338 | "keywords": [ | 338 | "keywords": [ |
339 | "Arbitrary-precision", | 339 | "Arbitrary-precision", |
340 | "BigInteger", | 340 | "BigInteger", |
341 | "BigRational", | 341 | "BigRational", |
342 | "arithmetic", | 342 | "arithmetic", |
343 | "bigdecimal", | 343 | "bigdecimal", |
344 | "bignum", | 344 | "bignum", |
345 | "brick", | 345 | "brick", |
346 | "math" | 346 | "math" |
347 | ], | 347 | ], |
348 | "support": { | 348 | "support": { |
349 | "issues": "https://github.com/brick/math/issues", | 349 | "issues": "https://github.com/brick/math/issues", |
350 | "source": "https://github.com/brick/math/tree/0.11.0" | 350 | "source": "https://github.com/brick/math/tree/0.11.0" |
351 | }, | 351 | }, |
352 | "funding": [ | 352 | "funding": [ |
353 | { | 353 | { |
354 | "url": "https://github.com/BenMorel", | 354 | "url": "https://github.com/BenMorel", |
355 | "type": "github" | 355 | "type": "github" |
356 | } | 356 | } |
357 | ], | 357 | ], |
358 | "time": "2023-01-15T23:15:59+00:00" | 358 | "time": "2023-01-15T23:15:59+00:00" |
359 | }, | 359 | }, |
360 | { | 360 | { |
361 | "name": "composer/package-versions-deprecated", | ||
362 | "version": "1.11.99.5", | ||
363 | "source": { | ||
364 | "type": "git", | ||
365 | "url": "https://github.com/composer/package-versions-deprecated.git", | ||
366 | "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d" | ||
367 | }, | ||
368 | "dist": { | ||
369 | "type": "zip", | ||
370 | "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d", | ||
371 | "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d", | ||
372 | "shasum": "" | ||
373 | }, | ||
374 | "require": { | ||
375 | "composer-plugin-api": "^1.1.0 || ^2.0", | ||
376 | "php": "^7 || ^8" | ||
377 | }, | ||
378 | "replace": { | ||
379 | "ocramius/package-versions": "1.11.99" | ||
380 | }, | ||
381 | "require-dev": { | ||
382 | "composer/composer": "^1.9.3 || ^2.0@dev", | ||
383 | "ext-zip": "^1.13", | ||
384 | "phpunit/phpunit": "^6.5 || ^7" | ||
385 | }, | ||
386 | "type": "composer-plugin", | ||
387 | "extra": { | ||
388 | "class": "PackageVersions\\Installer", | ||
389 | "branch-alias": { | ||
390 | "dev-master": "1.x-dev" | ||
391 | } | ||
392 | }, | ||
393 | "autoload": { | ||
394 | "psr-4": { | ||
395 | "PackageVersions\\": "src/PackageVersions" | ||
396 | } | ||
397 | }, | ||
398 | "notification-url": "https://packagist.org/downloads/", | ||
399 | "license": [ | ||
400 | "MIT" | ||
401 | ], | ||
402 | "authors": [ | ||
403 | { | ||
404 | "name": "Marco Pivetta", | ||
405 | "email": "ocramius@gmail.com" | ||
406 | }, | ||
407 | { | ||
408 | "name": "Jordi Boggiano", | ||
409 | "email": "j.boggiano@seld.be" | ||
410 | } | ||
411 | ], | ||
412 | "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", | ||
413 | "support": { | ||
414 | "issues": "https://github.com/composer/package-versions-deprecated/issues", | ||
415 | "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5" | ||
416 | }, | ||
417 | "funding": [ | ||
418 | { | ||
419 | "url": "https://packagist.com", | ||
420 | "type": "custom" | ||
421 | }, | ||
422 | { | ||
423 | "url": "https://github.com/composer", | ||
424 | "type": "github" | ||
425 | }, | ||
426 | { | ||
427 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", | ||
428 | "type": "tidelift" | ||
429 | } | ||
430 | ], | ||
431 | "time": "2022-01-17T14:14:24+00:00" | ||
432 | }, | ||
433 | { | ||
434 | "name": "danharrin/date-format-converter", | 361 | "name": "danharrin/date-format-converter", |
435 | "version": "v0.3.0", | 362 | "version": "v0.3.0", |
436 | "source": { | 363 | "source": { |
437 | "type": "git", | 364 | "type": "git", |
438 | "url": "https://github.com/danharrin/date-format-converter.git", | 365 | "url": "https://github.com/danharrin/date-format-converter.git", |
439 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2" | 366 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2" |
440 | }, | 367 | }, |
441 | "dist": { | 368 | "dist": { |
442 | "type": "zip", | 369 | "type": "zip", |
443 | "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2", | 370 | "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2", |
444 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2", | 371 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2", |
445 | "shasum": "" | 372 | "shasum": "" |
446 | }, | 373 | }, |
447 | "require": { | 374 | "require": { |
448 | "php": "^7.2|^8.0" | 375 | "php": "^7.2|^8.0" |
449 | }, | 376 | }, |
450 | "type": "library", | 377 | "type": "library", |
451 | "autoload": { | 378 | "autoload": { |
452 | "files": [ | 379 | "files": [ |
453 | "src/helpers.php", | 380 | "src/helpers.php", |
454 | "src/standards.php" | 381 | "src/standards.php" |
455 | ], | 382 | ], |
456 | "psr-4": { | 383 | "psr-4": { |
457 | "DanHarrin\\DateFormatConverter\\": "src/" | 384 | "DanHarrin\\DateFormatConverter\\": "src/" |
458 | } | 385 | } |
459 | }, | 386 | }, |
460 | "notification-url": "https://packagist.org/downloads/", | 387 | "notification-url": "https://packagist.org/downloads/", |
461 | "license": [ | 388 | "license": [ |
462 | "MIT" | 389 | "MIT" |
463 | ], | 390 | ], |
464 | "authors": [ | 391 | "authors": [ |
465 | { | 392 | { |
466 | "name": "Dan Harrin", | 393 | "name": "Dan Harrin", |
467 | "email": "dan@danharrin.com" | 394 | "email": "dan@danharrin.com" |
468 | } | 395 | } |
469 | ], | 396 | ], |
470 | "description": "Convert token-based date formats between standards.", | 397 | "description": "Convert token-based date formats between standards.", |
471 | "homepage": "https://github.com/danharrin/date-format-converter", | 398 | "homepage": "https://github.com/danharrin/date-format-converter", |
472 | "support": { | 399 | "support": { |
473 | "issues": "https://github.com/danharrin/date-format-converter/issues", | 400 | "issues": "https://github.com/danharrin/date-format-converter/issues", |
474 | "source": "https://github.com/danharrin/date-format-converter" | 401 | "source": "https://github.com/danharrin/date-format-converter" |
475 | }, | 402 | }, |
476 | "funding": [ | 403 | "funding": [ |
477 | { | 404 | { |
478 | "url": "https://github.com/danharrin", | 405 | "url": "https://github.com/danharrin", |
479 | "type": "github" | 406 | "type": "github" |
480 | } | 407 | } |
481 | ], | 408 | ], |
482 | "time": "2022-09-29T07:48:20+00:00" | 409 | "time": "2022-09-29T07:48:20+00:00" |
483 | }, | 410 | }, |
484 | { | 411 | { |
485 | "name": "dflydev/dot-access-data", | 412 | "name": "dflydev/dot-access-data", |
486 | "version": "v3.0.2", | 413 | "version": "v3.0.2", |
487 | "source": { | 414 | "source": { |
488 | "type": "git", | 415 | "type": "git", |
489 | "url": "https://github.com/dflydev/dflydev-dot-access-data.git", | 416 | "url": "https://github.com/dflydev/dflydev-dot-access-data.git", |
490 | "reference": "f41715465d65213d644d3141a6a93081be5d3549" | 417 | "reference": "f41715465d65213d644d3141a6a93081be5d3549" |
491 | }, | 418 | }, |
492 | "dist": { | 419 | "dist": { |
493 | "type": "zip", | 420 | "type": "zip", |
494 | "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", | 421 | "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", |
495 | "reference": "f41715465d65213d644d3141a6a93081be5d3549", | 422 | "reference": "f41715465d65213d644d3141a6a93081be5d3549", |
496 | "shasum": "" | 423 | "shasum": "" |
497 | }, | 424 | }, |
498 | "require": { | 425 | "require": { |
499 | "php": "^7.1 || ^8.0" | 426 | "php": "^7.1 || ^8.0" |
500 | }, | 427 | }, |
501 | "require-dev": { | 428 | "require-dev": { |
502 | "phpstan/phpstan": "^0.12.42", | 429 | "phpstan/phpstan": "^0.12.42", |
503 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", | 430 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", |
504 | "scrutinizer/ocular": "1.6.0", | 431 | "scrutinizer/ocular": "1.6.0", |
505 | "squizlabs/php_codesniffer": "^3.5", | 432 | "squizlabs/php_codesniffer": "^3.5", |
506 | "vimeo/psalm": "^4.0.0" | 433 | "vimeo/psalm": "^4.0.0" |
507 | }, | 434 | }, |
508 | "type": "library", | 435 | "type": "library", |
509 | "extra": { | 436 | "extra": { |
510 | "branch-alias": { | 437 | "branch-alias": { |
511 | "dev-main": "3.x-dev" | 438 | "dev-main": "3.x-dev" |
512 | } | 439 | } |
513 | }, | 440 | }, |
514 | "autoload": { | 441 | "autoload": { |
515 | "psr-4": { | 442 | "psr-4": { |
516 | "Dflydev\\DotAccessData\\": "src/" | 443 | "Dflydev\\DotAccessData\\": "src/" |
517 | } | 444 | } |
518 | }, | 445 | }, |
519 | "notification-url": "https://packagist.org/downloads/", | 446 | "notification-url": "https://packagist.org/downloads/", |
520 | "license": [ | 447 | "license": [ |
521 | "MIT" | 448 | "MIT" |
522 | ], | 449 | ], |
523 | "authors": [ | 450 | "authors": [ |
524 | { | 451 | { |
525 | "name": "Dragonfly Development Inc.", | 452 | "name": "Dragonfly Development Inc.", |
526 | "email": "info@dflydev.com", | 453 | "email": "info@dflydev.com", |
527 | "homepage": "http://dflydev.com" | 454 | "homepage": "http://dflydev.com" |
528 | }, | 455 | }, |
529 | { | 456 | { |
530 | "name": "Beau Simensen", | 457 | "name": "Beau Simensen", |
531 | "email": "beau@dflydev.com", | 458 | "email": "beau@dflydev.com", |
532 | "homepage": "http://beausimensen.com" | 459 | "homepage": "http://beausimensen.com" |
533 | }, | 460 | }, |
534 | { | 461 | { |
535 | "name": "Carlos Frutos", | 462 | "name": "Carlos Frutos", |
536 | "email": "carlos@kiwing.it", | 463 | "email": "carlos@kiwing.it", |
537 | "homepage": "https://github.com/cfrutos" | 464 | "homepage": "https://github.com/cfrutos" |
538 | }, | 465 | }, |
539 | { | 466 | { |
540 | "name": "Colin O'Dell", | 467 | "name": "Colin O'Dell", |
541 | "email": "colinodell@gmail.com", | 468 | "email": "colinodell@gmail.com", |
542 | "homepage": "https://www.colinodell.com" | 469 | "homepage": "https://www.colinodell.com" |
543 | } | 470 | } |
544 | ], | 471 | ], |
545 | "description": "Given a deep data structure, access data by dot notation.", | 472 | "description": "Given a deep data structure, access data by dot notation.", |
546 | "homepage": "https://github.com/dflydev/dflydev-dot-access-data", | 473 | "homepage": "https://github.com/dflydev/dflydev-dot-access-data", |
547 | "keywords": [ | 474 | "keywords": [ |
548 | "access", | 475 | "access", |
549 | "data", | 476 | "data", |
550 | "dot", | 477 | "dot", |
551 | "notation" | 478 | "notation" |
552 | ], | 479 | ], |
553 | "support": { | 480 | "support": { |
554 | "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", | 481 | "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", |
555 | "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" | 482 | "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" |
556 | }, | 483 | }, |
557 | "time": "2022-10-27T11:44:00+00:00" | 484 | "time": "2022-10-27T11:44:00+00:00" |
558 | }, | 485 | }, |
559 | { | 486 | { |
560 | "name": "doctrine/cache", | ||
561 | "version": "1.13.0", | ||
562 | "source": { | ||
563 | "type": "git", | ||
564 | "url": "https://github.com/doctrine/cache.git", | ||
565 | "reference": "56cd022adb5514472cb144c087393c1821911d09" | ||
566 | }, | ||
567 | "dist": { | ||
568 | "type": "zip", | ||
569 | "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09", | ||
570 | "reference": "56cd022adb5514472cb144c087393c1821911d09", | ||
571 | "shasum": "" | ||
572 | }, | ||
573 | "require": { | ||
574 | "php": "~7.1 || ^8.0" | ||
575 | }, | ||
576 | "conflict": { | ||
577 | "doctrine/common": ">2.2,<2.4" | ||
578 | }, | ||
579 | "require-dev": { | ||
580 | "alcaeus/mongo-php-adapter": "^1.1", | ||
581 | "cache/integration-tests": "dev-master", | ||
582 | "doctrine/coding-standard": "^9", | ||
583 | "mongodb/mongodb": "^1.1", | ||
584 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | ||
585 | "predis/predis": "~1.0", | ||
586 | "psr/cache": "^1.0 || ^2.0 || ^3.0", | ||
587 | "symfony/cache": "^4.4 || ^5.4 || ^6", | ||
588 | "symfony/var-exporter": "^4.4 || ^5.4 || ^6" | ||
589 | }, | ||
590 | "suggest": { | ||
591 | "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" | ||
592 | }, | ||
593 | "type": "library", | ||
594 | "autoload": { | ||
595 | "psr-4": { | ||
596 | "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" | ||
597 | } | ||
598 | }, | ||
599 | "notification-url": "https://packagist.org/downloads/", | ||
600 | "license": [ | ||
601 | "MIT" | ||
602 | ], | ||
603 | "authors": [ | ||
604 | { | ||
605 | "name": "Guilherme Blanco", | ||
606 | "email": "guilhermeblanco@gmail.com" | ||
607 | }, | ||
608 | { | ||
609 | "name": "Roman Borschel", | ||
610 | "email": "roman@code-factory.org" | ||
611 | }, | ||
612 | { | ||
613 | "name": "Benjamin Eberlei", | ||
614 | "email": "kontakt@beberlei.de" | ||
615 | }, | ||
616 | { | ||
617 | "name": "Jonathan Wage", | ||
618 | "email": "jonwage@gmail.com" | ||
619 | }, | ||
620 | { | ||
621 | "name": "Johannes Schmitt", | ||
622 | "email": "schmittjoh@gmail.com" | ||
623 | } | ||
624 | ], | ||
625 | "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", | ||
626 | "homepage": "https://www.doctrine-project.org/projects/cache.html", | ||
627 | "keywords": [ | ||
628 | "abstraction", | ||
629 | "apcu", | ||
630 | "cache", | ||
631 | "caching", | ||
632 | "couchdb", | ||
633 | "memcached", | ||
634 | "php", | ||
635 | "redis", | ||
636 | "xcache" | ||
637 | ], | ||
638 | "support": { | ||
639 | "issues": "https://github.com/doctrine/cache/issues", | ||
640 | "source": "https://github.com/doctrine/cache/tree/1.13.0" | ||
641 | }, | ||
642 | "funding": [ | ||
643 | { | ||
644 | "url": "https://www.doctrine-project.org/sponsorship.html", | ||
645 | "type": "custom" | ||
646 | }, | ||
647 | { | ||
648 | "url": "https://www.patreon.com/phpdoctrine", | ||
649 | "type": "patreon" | ||
650 | }, | ||
651 | { | ||
652 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", | ||
653 | "type": "tidelift" | ||
654 | } | ||
655 | ], | ||
656 | "time": "2022-05-20T20:06:54+00:00" | ||
657 | }, | ||
658 | { | ||
659 | "name": "doctrine/dbal", | 487 | "name": "doctrine/dbal", |
660 | "version": "3.0.0", | 488 | "version": "4.1.1", |
661 | "source": { | 489 | "source": { |
662 | "type": "git", | 490 | "type": "git", |
663 | "url": "https://github.com/doctrine/dbal.git", | 491 | "url": "https://github.com/doctrine/dbal.git", |
664 | "reference": "ee6d1260d5cc20ec506455a585945d7bdb98662c" | 492 | "reference": "7a8252418689feb860ea8dfeab66d64a56a64df8" |
665 | }, | 493 | }, |
666 | "dist": { | 494 | "dist": { |
667 | "type": "zip", | 495 | "type": "zip", |
668 | "url": "https://api.github.com/repos/doctrine/dbal/zipball/ee6d1260d5cc20ec506455a585945d7bdb98662c", | 496 | "url": "https://api.github.com/repos/doctrine/dbal/zipball/7a8252418689feb860ea8dfeab66d64a56a64df8", |
669 | "reference": "ee6d1260d5cc20ec506455a585945d7bdb98662c", | 497 | "reference": "7a8252418689feb860ea8dfeab66d64a56a64df8", |
670 | "shasum": "" | 498 | "shasum": "" |
671 | }, | 499 | }, |
672 | "require": { | 500 | "require": { |
673 | "composer/package-versions-deprecated": "^1.11.99", | 501 | "doctrine/deprecations": "^0.5.3|^1", |
674 | "doctrine/cache": "^1.0", | 502 | "php": "^8.1", |
675 | "doctrine/event-manager": "^1.0", | 503 | "psr/cache": "^1|^2|^3", |
676 | "php": "^7.3 || ^8.0" | 504 | "psr/log": "^1|^2|^3" |
677 | }, | 505 | }, |
678 | "require-dev": { | 506 | "require-dev": { |
679 | "doctrine/coding-standard": "^8.1", | 507 | "doctrine/coding-standard": "12.0.0", |
680 | "jetbrains/phpstorm-stubs": "^2019.1", | 508 | "fig/log-test": "^1", |
681 | "phpstan/phpstan": "^0.12.40", | 509 | "jetbrains/phpstorm-stubs": "2023.2", |
682 | "phpstan/phpstan-strict-rules": "^0.12.2", | 510 | "phpstan/phpstan": "1.12.0", |
683 | "phpunit/phpunit": "^9.4", | 511 | "phpstan/phpstan-phpunit": "1.4.0", |
684 | "psalm/plugin-phpunit": "^0.10.0", | 512 | "phpstan/phpstan-strict-rules": "^1.6", |
685 | "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", | 513 | "phpunit/phpunit": "10.5.30", |
686 | "vimeo/psalm": "^3.17.2" | 514 | "psalm/plugin-phpunit": "0.19.0", |
515 | "slevomat/coding-standard": "8.13.1", | ||
516 | "squizlabs/php_codesniffer": "3.10.2", | ||
517 | "symfony/cache": "^6.3.8|^7.0", | ||
518 | "symfony/console": "^5.4|^6.3|^7.0", | ||
519 | "vimeo/psalm": "5.25.0" | ||
687 | }, | 520 | }, |
688 | "suggest": { | 521 | "suggest": { |
689 | "symfony/console": "For helpful console commands such as SQL execution and import of files." | 522 | "symfony/console": "For helpful console commands such as SQL execution and import of files." |
690 | }, | 523 | }, |
691 | "bin": [ | ||
692 | "bin/doctrine-dbal" | ||
693 | ], | ||
694 | "type": "library", | 524 | "type": "library", |
695 | "extra": { | ||
696 | "branch-alias": { | ||
697 | "dev-master": "4.0.x-dev" | ||
698 | } | ||
699 | }, | ||
700 | "autoload": { | 525 | "autoload": { |
701 | "psr-4": { | 526 | "psr-4": { |
702 | "Doctrine\\DBAL\\": "src" | 527 | "Doctrine\\DBAL\\": "src" |
703 | } | 528 | } |
704 | }, | 529 | }, |
705 | "notification-url": "https://packagist.org/downloads/", | 530 | "notification-url": "https://packagist.org/downloads/", |
706 | "license": [ | 531 | "license": [ |
707 | "MIT" | 532 | "MIT" |
708 | ], | 533 | ], |
709 | "authors": [ | 534 | "authors": [ |
710 | { | 535 | { |
711 | "name": "Guilherme Blanco", | 536 | "name": "Guilherme Blanco", |
712 | "email": "guilhermeblanco@gmail.com" | 537 | "email": "guilhermeblanco@gmail.com" |
713 | }, | 538 | }, |
714 | { | 539 | { |
715 | "name": "Roman Borschel", | 540 | "name": "Roman Borschel", |
716 | "email": "roman@code-factory.org" | 541 | "email": "roman@code-factory.org" |
717 | }, | 542 | }, |
718 | { | 543 | { |
719 | "name": "Benjamin Eberlei", | 544 | "name": "Benjamin Eberlei", |
720 | "email": "kontakt@beberlei.de" | 545 | "email": "kontakt@beberlei.de" |
721 | }, | 546 | }, |
722 | { | 547 | { |
723 | "name": "Jonathan Wage", | 548 | "name": "Jonathan Wage", |
724 | "email": "jonwage@gmail.com" | 549 | "email": "jonwage@gmail.com" |
725 | } | 550 | } |
726 | ], | 551 | ], |
727 | "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", | 552 | "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.", |
728 | "homepage": "https://www.doctrine-project.org/projects/dbal.html", | 553 | "homepage": "https://www.doctrine-project.org/projects/dbal.html", |
729 | "keywords": [ | 554 | "keywords": [ |
730 | "abstraction", | 555 | "abstraction", |
731 | "database", | 556 | "database", |
732 | "db2", | 557 | "db2", |
733 | "dbal", | 558 | "dbal", |
734 | "mariadb", | 559 | "mariadb", |
735 | "mssql", | 560 | "mssql", |
736 | "mysql", | 561 | "mysql", |
737 | "oci8", | 562 | "oci8", |
738 | "oracle", | 563 | "oracle", |
739 | "pdo", | 564 | "pdo", |
740 | "pgsql", | 565 | "pgsql", |
741 | "postgresql", | 566 | "postgresql", |
742 | "queryobject", | 567 | "queryobject", |
743 | "sasql", | 568 | "sasql", |
744 | "sql", | 569 | "sql", |
745 | "sqlite", | 570 | "sqlite", |
746 | "sqlserver", | 571 | "sqlserver", |
747 | "sqlsrv" | 572 | "sqlsrv" |
748 | ], | 573 | ], |
749 | "support": { | 574 | "support": { |
750 | "issues": "https://github.com/doctrine/dbal/issues", | 575 | "issues": "https://github.com/doctrine/dbal/issues", |
751 | "source": "https://github.com/doctrine/dbal/tree/3.0.0" | 576 | "source": "https://github.com/doctrine/dbal/tree/4.1.1" |
752 | }, | 577 | }, |
753 | "funding": [ | 578 | "funding": [ |
754 | { | 579 | { |
755 | "url": "https://www.doctrine-project.org/sponsorship.html", | 580 | "url": "https://www.doctrine-project.org/sponsorship.html", |
756 | "type": "custom" | 581 | "type": "custom" |
757 | }, | 582 | }, |
758 | { | 583 | { |
759 | "url": "https://www.patreon.com/phpdoctrine", | 584 | "url": "https://www.patreon.com/phpdoctrine", |
760 | "type": "patreon" | 585 | "type": "patreon" |
761 | }, | 586 | }, |
762 | { | 587 | { |
763 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal", | 588 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal", |
764 | "type": "tidelift" | 589 | "type": "tidelift" |
765 | } | 590 | } |
766 | ], | 591 | ], |
767 | "time": "2020-11-15T18:20:41+00:00" | 592 | "time": "2024-09-03T08:58:39+00:00" |
768 | }, | 593 | }, |
769 | { | 594 | { |
770 | "name": "doctrine/deprecations", | 595 | "name": "doctrine/deprecations", |
771 | "version": "v1.0.0", | 596 | "version": "v1.0.0", |
772 | "source": { | 597 | "source": { |
773 | "type": "git", | 598 | "type": "git", |
774 | "url": "https://github.com/doctrine/deprecations.git", | 599 | "url": "https://github.com/doctrine/deprecations.git", |
775 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" | 600 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" |
776 | }, | 601 | }, |
777 | "dist": { | 602 | "dist": { |
778 | "type": "zip", | 603 | "type": "zip", |
779 | "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", | 604 | "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", |
780 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", | 605 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", |
781 | "shasum": "" | 606 | "shasum": "" |
782 | }, | 607 | }, |
783 | "require": { | 608 | "require": { |
784 | "php": "^7.1|^8.0" | 609 | "php": "^7.1|^8.0" |
785 | }, | 610 | }, |
786 | "require-dev": { | 611 | "require-dev": { |
787 | "doctrine/coding-standard": "^9", | 612 | "doctrine/coding-standard": "^9", |
788 | "phpunit/phpunit": "^7.5|^8.5|^9.5", | 613 | "phpunit/phpunit": "^7.5|^8.5|^9.5", |
789 | "psr/log": "^1|^2|^3" | 614 | "psr/log": "^1|^2|^3" |
790 | }, | 615 | }, |
791 | "suggest": { | 616 | "suggest": { |
792 | "psr/log": "Allows logging deprecations via PSR-3 logger implementation" | 617 | "psr/log": "Allows logging deprecations via PSR-3 logger implementation" |
793 | }, | 618 | }, |
794 | "type": "library", | 619 | "type": "library", |
795 | "autoload": { | 620 | "autoload": { |
796 | "psr-4": { | 621 | "psr-4": { |
797 | "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" | 622 | "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" |
798 | } | 623 | } |
799 | }, | 624 | }, |
800 | "notification-url": "https://packagist.org/downloads/", | 625 | "notification-url": "https://packagist.org/downloads/", |
801 | "license": [ | 626 | "license": [ |
802 | "MIT" | 627 | "MIT" |
803 | ], | 628 | ], |
804 | "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", | 629 | "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", |
805 | "homepage": "https://www.doctrine-project.org/", | 630 | "homepage": "https://www.doctrine-project.org/", |
806 | "support": { | 631 | "support": { |
807 | "issues": "https://github.com/doctrine/deprecations/issues", | 632 | "issues": "https://github.com/doctrine/deprecations/issues", |
808 | "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" | 633 | "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" |
809 | }, | 634 | }, |
810 | "time": "2022-05-02T15:47:09+00:00" | 635 | "time": "2022-05-02T15:47:09+00:00" |
811 | }, | 636 | }, |
812 | { | 637 | { |
813 | "name": "doctrine/event-manager", | ||
814 | "version": "1.2.0", | ||
815 | "source": { | ||
816 | "type": "git", | ||
817 | "url": "https://github.com/doctrine/event-manager.git", | ||
818 | "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520" | ||
819 | }, | ||
820 | "dist": { | ||
821 | "type": "zip", | ||
822 | "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520", | ||
823 | "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520", | ||
824 | "shasum": "" | ||
825 | }, | ||
826 | "require": { | ||
827 | "doctrine/deprecations": "^0.5.3 || ^1", | ||
828 | "php": "^7.1 || ^8.0" | ||
829 | }, | ||
830 | "conflict": { | ||
831 | "doctrine/common": "<2.9" | ||
832 | }, | ||
833 | "require-dev": { | ||
834 | "doctrine/coding-standard": "^9 || ^10", | ||
835 | "phpstan/phpstan": "~1.4.10 || ^1.8.8", | ||
836 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | ||
837 | "vimeo/psalm": "^4.24" | ||
838 | }, | ||
839 | "type": "library", | ||
840 | "autoload": { | ||
841 | "psr-4": { | ||
842 | "Doctrine\\Common\\": "src" | ||
843 | } | ||
844 | }, | ||
845 | "notification-url": "https://packagist.org/downloads/", | ||
846 | "license": [ | ||
847 | "MIT" | ||
848 | ], | ||
849 | "authors": [ | ||
850 | { | ||
851 | "name": "Guilherme Blanco", | ||
852 | "email": "guilhermeblanco@gmail.com" | ||
853 | }, | ||
854 | { | ||
855 | "name": "Roman Borschel", | ||
856 | "email": "roman@code-factory.org" | ||
857 | }, | ||
858 | { | ||
859 | "name": "Benjamin Eberlei", | ||
860 | "email": "kontakt@beberlei.de" | ||
861 | }, | ||
862 | { | ||
863 | "name": "Jonathan Wage", | ||
864 | "email": "jonwage@gmail.com" | ||
865 | }, | ||
866 | { | ||
867 | "name": "Johannes Schmitt", | ||
868 | "email": "schmittjoh@gmail.com" | ||
869 | }, | ||
870 | { | ||
871 | "name": "Marco Pivetta", | ||
872 | "email": "ocramius@gmail.com" | ||
873 | } | ||
874 | ], | ||
875 | "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", | ||
876 | "homepage": "https://www.doctrine-project.org/projects/event-manager.html", | ||
877 | "keywords": [ | ||
878 | "event", | ||
879 | "event dispatcher", | ||
880 | "event manager", | ||
881 | "event system", | ||
882 | "events" | ||
883 | ], | ||
884 | "support": { | ||
885 | "issues": "https://github.com/doctrine/event-manager/issues", | ||
886 | "source": "https://github.com/doctrine/event-manager/tree/1.2.0" | ||
887 | }, | ||
888 | "funding": [ | ||
889 | { | ||
890 | "url": "https://www.doctrine-project.org/sponsorship.html", | ||
891 | "type": "custom" | ||
892 | }, | ||
893 | { | ||
894 | "url": "https://www.patreon.com/phpdoctrine", | ||
895 | "type": "patreon" | ||
896 | }, | ||
897 | { | ||
898 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", | ||
899 | "type": "tidelift" | ||
900 | } | ||
901 | ], | ||
902 | "time": "2022-10-12T20:51:15+00:00" | ||
903 | }, | ||
904 | { | ||
905 | "name": "doctrine/inflector", | 638 | "name": "doctrine/inflector", |
906 | "version": "2.0.6", | 639 | "version": "2.0.6", |
907 | "source": { | 640 | "source": { |
908 | "type": "git", | 641 | "type": "git", |
909 | "url": "https://github.com/doctrine/inflector.git", | 642 | "url": "https://github.com/doctrine/inflector.git", |
910 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" | 643 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" |
911 | }, | 644 | }, |
912 | "dist": { | 645 | "dist": { |
913 | "type": "zip", | 646 | "type": "zip", |
914 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", | 647 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", |
915 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", | 648 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", |
916 | "shasum": "" | 649 | "shasum": "" |
917 | }, | 650 | }, |
918 | "require": { | 651 | "require": { |
919 | "php": "^7.2 || ^8.0" | 652 | "php": "^7.2 || ^8.0" |
920 | }, | 653 | }, |
921 | "require-dev": { | 654 | "require-dev": { |
922 | "doctrine/coding-standard": "^10", | 655 | "doctrine/coding-standard": "^10", |
923 | "phpstan/phpstan": "^1.8", | 656 | "phpstan/phpstan": "^1.8", |
924 | "phpstan/phpstan-phpunit": "^1.1", | 657 | "phpstan/phpstan-phpunit": "^1.1", |
925 | "phpstan/phpstan-strict-rules": "^1.3", | 658 | "phpstan/phpstan-strict-rules": "^1.3", |
926 | "phpunit/phpunit": "^8.5 || ^9.5", | 659 | "phpunit/phpunit": "^8.5 || ^9.5", |
927 | "vimeo/psalm": "^4.25" | 660 | "vimeo/psalm": "^4.25" |
928 | }, | 661 | }, |
929 | "type": "library", | 662 | "type": "library", |
930 | "autoload": { | 663 | "autoload": { |
931 | "psr-4": { | 664 | "psr-4": { |
932 | "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" | 665 | "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" |
933 | } | 666 | } |
934 | }, | 667 | }, |
935 | "notification-url": "https://packagist.org/downloads/", | 668 | "notification-url": "https://packagist.org/downloads/", |
936 | "license": [ | 669 | "license": [ |
937 | "MIT" | 670 | "MIT" |
938 | ], | 671 | ], |
939 | "authors": [ | 672 | "authors": [ |
940 | { | 673 | { |
941 | "name": "Guilherme Blanco", | 674 | "name": "Guilherme Blanco", |
942 | "email": "guilhermeblanco@gmail.com" | 675 | "email": "guilhermeblanco@gmail.com" |
943 | }, | 676 | }, |
944 | { | 677 | { |
945 | "name": "Roman Borschel", | 678 | "name": "Roman Borschel", |
946 | "email": "roman@code-factory.org" | 679 | "email": "roman@code-factory.org" |
947 | }, | 680 | }, |
948 | { | 681 | { |
949 | "name": "Benjamin Eberlei", | 682 | "name": "Benjamin Eberlei", |
950 | "email": "kontakt@beberlei.de" | 683 | "email": "kontakt@beberlei.de" |
951 | }, | 684 | }, |
952 | { | 685 | { |
953 | "name": "Jonathan Wage", | 686 | "name": "Jonathan Wage", |
954 | "email": "jonwage@gmail.com" | 687 | "email": "jonwage@gmail.com" |
955 | }, | 688 | }, |
956 | { | 689 | { |
957 | "name": "Johannes Schmitt", | 690 | "name": "Johannes Schmitt", |
958 | "email": "schmittjoh@gmail.com" | 691 | "email": "schmittjoh@gmail.com" |
959 | } | 692 | } |
960 | ], | 693 | ], |
961 | "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", | 694 | "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", |
962 | "homepage": "https://www.doctrine-project.org/projects/inflector.html", | 695 | "homepage": "https://www.doctrine-project.org/projects/inflector.html", |
963 | "keywords": [ | 696 | "keywords": [ |
964 | "inflection", | 697 | "inflection", |
965 | "inflector", | 698 | "inflector", |
966 | "lowercase", | 699 | "lowercase", |
967 | "manipulation", | 700 | "manipulation", |
968 | "php", | 701 | "php", |
969 | "plural", | 702 | "plural", |
970 | "singular", | 703 | "singular", |
971 | "strings", | 704 | "strings", |
972 | "uppercase", | 705 | "uppercase", |
973 | "words" | 706 | "words" |
974 | ], | 707 | ], |
975 | "support": { | 708 | "support": { |
976 | "issues": "https://github.com/doctrine/inflector/issues", | 709 | "issues": "https://github.com/doctrine/inflector/issues", |
977 | "source": "https://github.com/doctrine/inflector/tree/2.0.6" | 710 | "source": "https://github.com/doctrine/inflector/tree/2.0.6" |
978 | }, | 711 | }, |
979 | "funding": [ | 712 | "funding": [ |
980 | { | 713 | { |
981 | "url": "https://www.doctrine-project.org/sponsorship.html", | 714 | "url": "https://www.doctrine-project.org/sponsorship.html", |
982 | "type": "custom" | 715 | "type": "custom" |
983 | }, | 716 | }, |
984 | { | 717 | { |
985 | "url": "https://www.patreon.com/phpdoctrine", | 718 | "url": "https://www.patreon.com/phpdoctrine", |
986 | "type": "patreon" | 719 | "type": "patreon" |
987 | }, | 720 | }, |
988 | { | 721 | { |
989 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", | 722 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", |
990 | "type": "tidelift" | 723 | "type": "tidelift" |
991 | } | 724 | } |
992 | ], | 725 | ], |
993 | "time": "2022-10-20T09:10:12+00:00" | 726 | "time": "2022-10-20T09:10:12+00:00" |
994 | }, | 727 | }, |
995 | { | 728 | { |
996 | "name": "doctrine/lexer", | 729 | "name": "doctrine/lexer", |
997 | "version": "2.1.0", | 730 | "version": "2.1.0", |
998 | "source": { | 731 | "source": { |
999 | "type": "git", | 732 | "type": "git", |
1000 | "url": "https://github.com/doctrine/lexer.git", | 733 | "url": "https://github.com/doctrine/lexer.git", |
1001 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" | 734 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" |
1002 | }, | 735 | }, |
1003 | "dist": { | 736 | "dist": { |
1004 | "type": "zip", | 737 | "type": "zip", |
1005 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", | 738 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", |
1006 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", | 739 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", |
1007 | "shasum": "" | 740 | "shasum": "" |
1008 | }, | 741 | }, |
1009 | "require": { | 742 | "require": { |
1010 | "doctrine/deprecations": "^1.0", | 743 | "doctrine/deprecations": "^1.0", |
1011 | "php": "^7.1 || ^8.0" | 744 | "php": "^7.1 || ^8.0" |
1012 | }, | 745 | }, |
1013 | "require-dev": { | 746 | "require-dev": { |
1014 | "doctrine/coding-standard": "^9 || ^10", | 747 | "doctrine/coding-standard": "^9 || ^10", |
1015 | "phpstan/phpstan": "^1.3", | 748 | "phpstan/phpstan": "^1.3", |
1016 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | 749 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", |
1017 | "psalm/plugin-phpunit": "^0.18.3", | 750 | "psalm/plugin-phpunit": "^0.18.3", |
1018 | "vimeo/psalm": "^4.11 || ^5.0" | 751 | "vimeo/psalm": "^4.11 || ^5.0" |
1019 | }, | 752 | }, |
1020 | "type": "library", | 753 | "type": "library", |
1021 | "autoload": { | 754 | "autoload": { |
1022 | "psr-4": { | 755 | "psr-4": { |
1023 | "Doctrine\\Common\\Lexer\\": "src" | 756 | "Doctrine\\Common\\Lexer\\": "src" |
1024 | } | 757 | } |
1025 | }, | 758 | }, |
1026 | "notification-url": "https://packagist.org/downloads/", | 759 | "notification-url": "https://packagist.org/downloads/", |
1027 | "license": [ | 760 | "license": [ |
1028 | "MIT" | 761 | "MIT" |
1029 | ], | 762 | ], |
1030 | "authors": [ | 763 | "authors": [ |
1031 | { | 764 | { |
1032 | "name": "Guilherme Blanco", | 765 | "name": "Guilherme Blanco", |
1033 | "email": "guilhermeblanco@gmail.com" | 766 | "email": "guilhermeblanco@gmail.com" |
1034 | }, | 767 | }, |
1035 | { | 768 | { |
1036 | "name": "Roman Borschel", | 769 | "name": "Roman Borschel", |
1037 | "email": "roman@code-factory.org" | 770 | "email": "roman@code-factory.org" |
1038 | }, | 771 | }, |
1039 | { | 772 | { |
1040 | "name": "Johannes Schmitt", | 773 | "name": "Johannes Schmitt", |
1041 | "email": "schmittjoh@gmail.com" | 774 | "email": "schmittjoh@gmail.com" |
1042 | } | 775 | } |
1043 | ], | 776 | ], |
1044 | "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", | 777 | "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", |
1045 | "homepage": "https://www.doctrine-project.org/projects/lexer.html", | 778 | "homepage": "https://www.doctrine-project.org/projects/lexer.html", |
1046 | "keywords": [ | 779 | "keywords": [ |
1047 | "annotations", | 780 | "annotations", |
1048 | "docblock", | 781 | "docblock", |
1049 | "lexer", | 782 | "lexer", |
1050 | "parser", | 783 | "parser", |
1051 | "php" | 784 | "php" |
1052 | ], | 785 | ], |
1053 | "support": { | 786 | "support": { |
1054 | "issues": "https://github.com/doctrine/lexer/issues", | 787 | "issues": "https://github.com/doctrine/lexer/issues", |
1055 | "source": "https://github.com/doctrine/lexer/tree/2.1.0" | 788 | "source": "https://github.com/doctrine/lexer/tree/2.1.0" |
1056 | }, | 789 | }, |
1057 | "funding": [ | 790 | "funding": [ |
1058 | { | 791 | { |
1059 | "url": "https://www.doctrine-project.org/sponsorship.html", | 792 | "url": "https://www.doctrine-project.org/sponsorship.html", |
1060 | "type": "custom" | 793 | "type": "custom" |
1061 | }, | 794 | }, |
1062 | { | 795 | { |
1063 | "url": "https://www.patreon.com/phpdoctrine", | 796 | "url": "https://www.patreon.com/phpdoctrine", |
1064 | "type": "patreon" | 797 | "type": "patreon" |
1065 | }, | 798 | }, |
1066 | { | 799 | { |
1067 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", | 800 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", |
1068 | "type": "tidelift" | 801 | "type": "tidelift" |
1069 | } | 802 | } |
1070 | ], | 803 | ], |
1071 | "time": "2022-12-14T08:49:07+00:00" | 804 | "time": "2022-12-14T08:49:07+00:00" |
1072 | }, | 805 | }, |
1073 | { | 806 | { |
1074 | "name": "dompdf/dompdf", | 807 | "name": "dompdf/dompdf", |
1075 | "version": "v2.0.4", | 808 | "version": "v2.0.4", |
1076 | "source": { | 809 | "source": { |
1077 | "type": "git", | 810 | "type": "git", |
1078 | "url": "https://github.com/dompdf/dompdf.git", | 811 | "url": "https://github.com/dompdf/dompdf.git", |
1079 | "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f" | 812 | "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f" |
1080 | }, | 813 | }, |
1081 | "dist": { | 814 | "dist": { |
1082 | "type": "zip", | 815 | "type": "zip", |
1083 | "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", | 816 | "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", |
1084 | "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", | 817 | "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", |
1085 | "shasum": "" | 818 | "shasum": "" |
1086 | }, | 819 | }, |
1087 | "require": { | 820 | "require": { |
1088 | "ext-dom": "*", | 821 | "ext-dom": "*", |
1089 | "ext-mbstring": "*", | 822 | "ext-mbstring": "*", |
1090 | "masterminds/html5": "^2.0", | 823 | "masterminds/html5": "^2.0", |
1091 | "phenx/php-font-lib": ">=0.5.4 <1.0.0", | 824 | "phenx/php-font-lib": ">=0.5.4 <1.0.0", |
1092 | "phenx/php-svg-lib": ">=0.3.3 <1.0.0", | 825 | "phenx/php-svg-lib": ">=0.3.3 <1.0.0", |
1093 | "php": "^7.1 || ^8.0" | 826 | "php": "^7.1 || ^8.0" |
1094 | }, | 827 | }, |
1095 | "require-dev": { | 828 | "require-dev": { |
1096 | "ext-json": "*", | 829 | "ext-json": "*", |
1097 | "ext-zip": "*", | 830 | "ext-zip": "*", |
1098 | "mockery/mockery": "^1.3", | 831 | "mockery/mockery": "^1.3", |
1099 | "phpunit/phpunit": "^7.5 || ^8 || ^9", | 832 | "phpunit/phpunit": "^7.5 || ^8 || ^9", |
1100 | "squizlabs/php_codesniffer": "^3.5" | 833 | "squizlabs/php_codesniffer": "^3.5" |
1101 | }, | 834 | }, |
1102 | "suggest": { | 835 | "suggest": { |
1103 | "ext-gd": "Needed to process images", | 836 | "ext-gd": "Needed to process images", |
1104 | "ext-gmagick": "Improves image processing performance", | 837 | "ext-gmagick": "Improves image processing performance", |
1105 | "ext-imagick": "Improves image processing performance", | 838 | "ext-imagick": "Improves image processing performance", |
1106 | "ext-zlib": "Needed for pdf stream compression" | 839 | "ext-zlib": "Needed for pdf stream compression" |
1107 | }, | 840 | }, |
1108 | "type": "library", | 841 | "type": "library", |
1109 | "autoload": { | 842 | "autoload": { |
1110 | "psr-4": { | 843 | "psr-4": { |
1111 | "Dompdf\\": "src/" | 844 | "Dompdf\\": "src/" |
1112 | }, | 845 | }, |
1113 | "classmap": [ | 846 | "classmap": [ |
1114 | "lib/" | 847 | "lib/" |
1115 | ] | 848 | ] |
1116 | }, | 849 | }, |
1117 | "notification-url": "https://packagist.org/downloads/", | 850 | "notification-url": "https://packagist.org/downloads/", |
1118 | "license": [ | 851 | "license": [ |
1119 | "LGPL-2.1" | 852 | "LGPL-2.1" |
1120 | ], | 853 | ], |
1121 | "authors": [ | 854 | "authors": [ |
1122 | { | 855 | { |
1123 | "name": "The Dompdf Community", | 856 | "name": "The Dompdf Community", |
1124 | "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" | 857 | "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" |
1125 | } | 858 | } |
1126 | ], | 859 | ], |
1127 | "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", | 860 | "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", |
1128 | "homepage": "https://github.com/dompdf/dompdf", | 861 | "homepage": "https://github.com/dompdf/dompdf", |
1129 | "support": { | 862 | "support": { |
1130 | "issues": "https://github.com/dompdf/dompdf/issues", | 863 | "issues": "https://github.com/dompdf/dompdf/issues", |
1131 | "source": "https://github.com/dompdf/dompdf/tree/v2.0.4" | 864 | "source": "https://github.com/dompdf/dompdf/tree/v2.0.4" |
1132 | }, | 865 | }, |
1133 | "time": "2023-12-12T20:19:39+00:00" | 866 | "time": "2023-12-12T20:19:39+00:00" |
1134 | }, | 867 | }, |
1135 | { | 868 | { |
1136 | "name": "dragonmantank/cron-expression", | 869 | "name": "dragonmantank/cron-expression", |
1137 | "version": "v3.3.2", | 870 | "version": "v3.3.2", |
1138 | "source": { | 871 | "source": { |
1139 | "type": "git", | 872 | "type": "git", |
1140 | "url": "https://github.com/dragonmantank/cron-expression.git", | 873 | "url": "https://github.com/dragonmantank/cron-expression.git", |
1141 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" | 874 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" |
1142 | }, | 875 | }, |
1143 | "dist": { | 876 | "dist": { |
1144 | "type": "zip", | 877 | "type": "zip", |
1145 | "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", | 878 | "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", |
1146 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", | 879 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", |
1147 | "shasum": "" | 880 | "shasum": "" |
1148 | }, | 881 | }, |
1149 | "require": { | 882 | "require": { |
1150 | "php": "^7.2|^8.0", | 883 | "php": "^7.2|^8.0", |
1151 | "webmozart/assert": "^1.0" | 884 | "webmozart/assert": "^1.0" |
1152 | }, | 885 | }, |
1153 | "replace": { | 886 | "replace": { |
1154 | "mtdowling/cron-expression": "^1.0" | 887 | "mtdowling/cron-expression": "^1.0" |
1155 | }, | 888 | }, |
1156 | "require-dev": { | 889 | "require-dev": { |
1157 | "phpstan/extension-installer": "^1.0", | 890 | "phpstan/extension-installer": "^1.0", |
1158 | "phpstan/phpstan": "^1.0", | 891 | "phpstan/phpstan": "^1.0", |
1159 | "phpstan/phpstan-webmozart-assert": "^1.0", | 892 | "phpstan/phpstan-webmozart-assert": "^1.0", |
1160 | "phpunit/phpunit": "^7.0|^8.0|^9.0" | 893 | "phpunit/phpunit": "^7.0|^8.0|^9.0" |
1161 | }, | 894 | }, |
1162 | "type": "library", | 895 | "type": "library", |
1163 | "autoload": { | 896 | "autoload": { |
1164 | "psr-4": { | 897 | "psr-4": { |
1165 | "Cron\\": "src/Cron/" | 898 | "Cron\\": "src/Cron/" |
1166 | } | 899 | } |
1167 | }, | 900 | }, |
1168 | "notification-url": "https://packagist.org/downloads/", | 901 | "notification-url": "https://packagist.org/downloads/", |
1169 | "license": [ | 902 | "license": [ |
1170 | "MIT" | 903 | "MIT" |
1171 | ], | 904 | ], |
1172 | "authors": [ | 905 | "authors": [ |
1173 | { | 906 | { |
1174 | "name": "Chris Tankersley", | 907 | "name": "Chris Tankersley", |
1175 | "email": "chris@ctankersley.com", | 908 | "email": "chris@ctankersley.com", |
1176 | "homepage": "https://github.com/dragonmantank" | 909 | "homepage": "https://github.com/dragonmantank" |
1177 | } | 910 | } |
1178 | ], | 911 | ], |
1179 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", | 912 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", |
1180 | "keywords": [ | 913 | "keywords": [ |
1181 | "cron", | 914 | "cron", |
1182 | "schedule" | 915 | "schedule" |
1183 | ], | 916 | ], |
1184 | "support": { | 917 | "support": { |
1185 | "issues": "https://github.com/dragonmantank/cron-expression/issues", | 918 | "issues": "https://github.com/dragonmantank/cron-expression/issues", |
1186 | "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" | 919 | "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" |
1187 | }, | 920 | }, |
1188 | "funding": [ | 921 | "funding": [ |
1189 | { | 922 | { |
1190 | "url": "https://github.com/dragonmantank", | 923 | "url": "https://github.com/dragonmantank", |
1191 | "type": "github" | 924 | "type": "github" |
1192 | } | 925 | } |
1193 | ], | 926 | ], |
1194 | "time": "2022-09-10T18:51:20+00:00" | 927 | "time": "2022-09-10T18:51:20+00:00" |
1195 | }, | 928 | }, |
1196 | { | 929 | { |
1197 | "name": "egulias/email-validator", | 930 | "name": "egulias/email-validator", |
1198 | "version": "3.2.5", | 931 | "version": "3.2.5", |
1199 | "source": { | 932 | "source": { |
1200 | "type": "git", | 933 | "type": "git", |
1201 | "url": "https://github.com/egulias/EmailValidator.git", | 934 | "url": "https://github.com/egulias/EmailValidator.git", |
1202 | "reference": "b531a2311709443320c786feb4519cfaf94af796" | 935 | "reference": "b531a2311709443320c786feb4519cfaf94af796" |
1203 | }, | 936 | }, |
1204 | "dist": { | 937 | "dist": { |
1205 | "type": "zip", | 938 | "type": "zip", |
1206 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796", | 939 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796", |
1207 | "reference": "b531a2311709443320c786feb4519cfaf94af796", | 940 | "reference": "b531a2311709443320c786feb4519cfaf94af796", |
1208 | "shasum": "" | 941 | "shasum": "" |
1209 | }, | 942 | }, |
1210 | "require": { | 943 | "require": { |
1211 | "doctrine/lexer": "^1.2|^2", | 944 | "doctrine/lexer": "^1.2|^2", |
1212 | "php": ">=7.2", | 945 | "php": ">=7.2", |
1213 | "symfony/polyfill-intl-idn": "^1.15" | 946 | "symfony/polyfill-intl-idn": "^1.15" |
1214 | }, | 947 | }, |
1215 | "require-dev": { | 948 | "require-dev": { |
1216 | "phpunit/phpunit": "^8.5.8|^9.3.3", | 949 | "phpunit/phpunit": "^8.5.8|^9.3.3", |
1217 | "vimeo/psalm": "^4" | 950 | "vimeo/psalm": "^4" |
1218 | }, | 951 | }, |
1219 | "suggest": { | 952 | "suggest": { |
1220 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" | 953 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" |
1221 | }, | 954 | }, |
1222 | "type": "library", | 955 | "type": "library", |
1223 | "extra": { | 956 | "extra": { |
1224 | "branch-alias": { | 957 | "branch-alias": { |
1225 | "dev-master": "3.0.x-dev" | 958 | "dev-master": "3.0.x-dev" |
1226 | } | 959 | } |
1227 | }, | 960 | }, |
1228 | "autoload": { | 961 | "autoload": { |
1229 | "psr-4": { | 962 | "psr-4": { |
1230 | "Egulias\\EmailValidator\\": "src" | 963 | "Egulias\\EmailValidator\\": "src" |
1231 | } | 964 | } |
1232 | }, | 965 | }, |
1233 | "notification-url": "https://packagist.org/downloads/", | 966 | "notification-url": "https://packagist.org/downloads/", |
1234 | "license": [ | 967 | "license": [ |
1235 | "MIT" | 968 | "MIT" |
1236 | ], | 969 | ], |
1237 | "authors": [ | 970 | "authors": [ |
1238 | { | 971 | { |
1239 | "name": "Eduardo Gulias Davis" | 972 | "name": "Eduardo Gulias Davis" |
1240 | } | 973 | } |
1241 | ], | 974 | ], |
1242 | "description": "A library for validating emails against several RFCs", | 975 | "description": "A library for validating emails against several RFCs", |
1243 | "homepage": "https://github.com/egulias/EmailValidator", | 976 | "homepage": "https://github.com/egulias/EmailValidator", |
1244 | "keywords": [ | 977 | "keywords": [ |
1245 | "email", | 978 | "email", |
1246 | "emailvalidation", | 979 | "emailvalidation", |
1247 | "emailvalidator", | 980 | "emailvalidator", |
1248 | "validation", | 981 | "validation", |
1249 | "validator" | 982 | "validator" |
1250 | ], | 983 | ], |
1251 | "support": { | 984 | "support": { |
1252 | "issues": "https://github.com/egulias/EmailValidator/issues", | 985 | "issues": "https://github.com/egulias/EmailValidator/issues", |
1253 | "source": "https://github.com/egulias/EmailValidator/tree/3.2.5" | 986 | "source": "https://github.com/egulias/EmailValidator/tree/3.2.5" |
1254 | }, | 987 | }, |
1255 | "funding": [ | 988 | "funding": [ |
1256 | { | 989 | { |
1257 | "url": "https://github.com/egulias", | 990 | "url": "https://github.com/egulias", |
1258 | "type": "github" | 991 | "type": "github" |
1259 | } | 992 | } |
1260 | ], | 993 | ], |
1261 | "time": "2023-01-02T17:26:14+00:00" | 994 | "time": "2023-01-02T17:26:14+00:00" |
1262 | }, | 995 | }, |
1263 | { | 996 | { |
1264 | "name": "ezyang/htmlpurifier", | 997 | "name": "ezyang/htmlpurifier", |
1265 | "version": "v4.16.0", | 998 | "version": "v4.16.0", |
1266 | "source": { | 999 | "source": { |
1267 | "type": "git", | 1000 | "type": "git", |
1268 | "url": "https://github.com/ezyang/htmlpurifier.git", | 1001 | "url": "https://github.com/ezyang/htmlpurifier.git", |
1269 | "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8" | 1002 | "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8" |
1270 | }, | 1003 | }, |
1271 | "dist": { | 1004 | "dist": { |
1272 | "type": "zip", | 1005 | "type": "zip", |
1273 | "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8", | 1006 | "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8", |
1274 | "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8", | 1007 | "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8", |
1275 | "shasum": "" | 1008 | "shasum": "" |
1276 | }, | 1009 | }, |
1277 | "require": { | 1010 | "require": { |
1278 | "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" | 1011 | "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" |
1279 | }, | 1012 | }, |
1280 | "require-dev": { | 1013 | "require-dev": { |
1281 | "cerdic/css-tidy": "^1.7 || ^2.0", | 1014 | "cerdic/css-tidy": "^1.7 || ^2.0", |
1282 | "simpletest/simpletest": "dev-master" | 1015 | "simpletest/simpletest": "dev-master" |
1283 | }, | 1016 | }, |
1284 | "suggest": { | 1017 | "suggest": { |
1285 | "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", | 1018 | "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", |
1286 | "ext-bcmath": "Used for unit conversion and imagecrash protection", | 1019 | "ext-bcmath": "Used for unit conversion and imagecrash protection", |
1287 | "ext-iconv": "Converts text to and from non-UTF-8 encodings", | 1020 | "ext-iconv": "Converts text to and from non-UTF-8 encodings", |
1288 | "ext-tidy": "Used for pretty-printing HTML" | 1021 | "ext-tidy": "Used for pretty-printing HTML" |
1289 | }, | 1022 | }, |
1290 | "type": "library", | 1023 | "type": "library", |
1291 | "autoload": { | 1024 | "autoload": { |
1292 | "files": [ | 1025 | "files": [ |
1293 | "library/HTMLPurifier.composer.php" | 1026 | "library/HTMLPurifier.composer.php" |
1294 | ], | 1027 | ], |
1295 | "psr-0": { | 1028 | "psr-0": { |
1296 | "HTMLPurifier": "library/" | 1029 | "HTMLPurifier": "library/" |
1297 | }, | 1030 | }, |
1298 | "exclude-from-classmap": [ | 1031 | "exclude-from-classmap": [ |
1299 | "/library/HTMLPurifier/Language/" | 1032 | "/library/HTMLPurifier/Language/" |
1300 | ] | 1033 | ] |
1301 | }, | 1034 | }, |
1302 | "notification-url": "https://packagist.org/downloads/", | 1035 | "notification-url": "https://packagist.org/downloads/", |
1303 | "license": [ | 1036 | "license": [ |
1304 | "LGPL-2.1-or-later" | 1037 | "LGPL-2.1-or-later" |
1305 | ], | 1038 | ], |
1306 | "authors": [ | 1039 | "authors": [ |
1307 | { | 1040 | { |
1308 | "name": "Edward Z. Yang", | 1041 | "name": "Edward Z. Yang", |
1309 | "email": "admin@htmlpurifier.org", | 1042 | "email": "admin@htmlpurifier.org", |
1310 | "homepage": "http://ezyang.com" | 1043 | "homepage": "http://ezyang.com" |
1311 | } | 1044 | } |
1312 | ], | 1045 | ], |
1313 | "description": "Standards compliant HTML filter written in PHP", | 1046 | "description": "Standards compliant HTML filter written in PHP", |
1314 | "homepage": "http://htmlpurifier.org/", | 1047 | "homepage": "http://htmlpurifier.org/", |
1315 | "keywords": [ | 1048 | "keywords": [ |
1316 | "html" | 1049 | "html" |
1317 | ], | 1050 | ], |
1318 | "support": { | 1051 | "support": { |
1319 | "issues": "https://github.com/ezyang/htmlpurifier/issues", | 1052 | "issues": "https://github.com/ezyang/htmlpurifier/issues", |
1320 | "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0" | 1053 | "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0" |
1321 | }, | 1054 | }, |
1322 | "time": "2022-09-18T07:06:19+00:00" | 1055 | "time": "2022-09-18T07:06:19+00:00" |
1323 | }, | 1056 | }, |
1324 | { | 1057 | { |
1325 | "name": "filament/forms", | 1058 | "name": "filament/forms", |
1326 | "version": "v2.17.40", | 1059 | "version": "v2.17.40", |
1327 | "source": { | 1060 | "source": { |
1328 | "type": "git", | 1061 | "type": "git", |
1329 | "url": "https://github.com/filamentphp/forms.git", | 1062 | "url": "https://github.com/filamentphp/forms.git", |
1330 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81" | 1063 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81" |
1331 | }, | 1064 | }, |
1332 | "dist": { | 1065 | "dist": { |
1333 | "type": "zip", | 1066 | "type": "zip", |
1334 | "url": "https://api.github.com/repos/filamentphp/forms/zipball/bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", | 1067 | "url": "https://api.github.com/repos/filamentphp/forms/zipball/bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", |
1335 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", | 1068 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", |
1336 | "shasum": "" | 1069 | "shasum": "" |
1337 | }, | 1070 | }, |
1338 | "require": { | 1071 | "require": { |
1339 | "blade-ui-kit/blade-heroicons": "^1.2", | 1072 | "blade-ui-kit/blade-heroicons": "^1.2", |
1340 | "danharrin/date-format-converter": "^0.3", | 1073 | "danharrin/date-format-converter": "^0.3", |
1341 | "filament/notifications": "self.version", | 1074 | "filament/notifications": "self.version", |
1342 | "filament/support": "self.version", | 1075 | "filament/support": "self.version", |
1343 | "illuminate/console": "^8.6|^9.0|^10.0", | 1076 | "illuminate/console": "^8.6|^9.0|^10.0", |
1344 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 1077 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
1345 | "illuminate/database": "^8.6|^9.0|^10.0", | 1078 | "illuminate/database": "^8.6|^9.0|^10.0", |
1346 | "illuminate/filesystem": "^8.6|^9.0|^10.0", | 1079 | "illuminate/filesystem": "^8.6|^9.0|^10.0", |
1347 | "illuminate/support": "^8.6|^9.0|^10.0", | 1080 | "illuminate/support": "^8.6|^9.0|^10.0", |
1348 | "illuminate/validation": "^8.6|^9.0|^10.0", | 1081 | "illuminate/validation": "^8.6|^9.0|^10.0", |
1349 | "illuminate/view": "^8.6|^9.0|^10.0", | 1082 | "illuminate/view": "^8.6|^9.0|^10.0", |
1350 | "livewire/livewire": "^2.10.7", | 1083 | "livewire/livewire": "^2.10.7", |
1351 | "php": "^8.0", | 1084 | "php": "^8.0", |
1352 | "spatie/laravel-package-tools": "^1.9" | 1085 | "spatie/laravel-package-tools": "^1.9" |
1353 | }, | 1086 | }, |
1354 | "type": "library", | 1087 | "type": "library", |
1355 | "extra": { | 1088 | "extra": { |
1356 | "laravel": { | 1089 | "laravel": { |
1357 | "providers": [ | 1090 | "providers": [ |
1358 | "Filament\\Forms\\FormsServiceProvider" | 1091 | "Filament\\Forms\\FormsServiceProvider" |
1359 | ] | 1092 | ] |
1360 | } | 1093 | } |
1361 | }, | 1094 | }, |
1362 | "autoload": { | 1095 | "autoload": { |
1363 | "files": [ | 1096 | "files": [ |
1364 | "src/helpers.php" | 1097 | "src/helpers.php" |
1365 | ], | 1098 | ], |
1366 | "psr-4": { | 1099 | "psr-4": { |
1367 | "Filament\\Forms\\": "src" | 1100 | "Filament\\Forms\\": "src" |
1368 | } | 1101 | } |
1369 | }, | 1102 | }, |
1370 | "notification-url": "https://packagist.org/downloads/", | 1103 | "notification-url": "https://packagist.org/downloads/", |
1371 | "license": [ | 1104 | "license": [ |
1372 | "MIT" | 1105 | "MIT" |
1373 | ], | 1106 | ], |
1374 | "description": "Effortlessly build TALL-powered forms.", | 1107 | "description": "Effortlessly build TALL-powered forms.", |
1375 | "homepage": "https://github.com/filamentphp/filament", | 1108 | "homepage": "https://github.com/filamentphp/filament", |
1376 | "support": { | 1109 | "support": { |
1377 | "issues": "https://github.com/filamentphp/filament/issues", | 1110 | "issues": "https://github.com/filamentphp/filament/issues", |
1378 | "source": "https://github.com/filamentphp/filament" | 1111 | "source": "https://github.com/filamentphp/filament" |
1379 | }, | 1112 | }, |
1380 | "time": "2023-05-13T18:44:56+00:00" | 1113 | "time": "2023-05-13T18:44:56+00:00" |
1381 | }, | 1114 | }, |
1382 | { | 1115 | { |
1383 | "name": "filament/notifications", | 1116 | "name": "filament/notifications", |
1384 | "version": "v2.17.40", | 1117 | "version": "v2.17.40", |
1385 | "source": { | 1118 | "source": { |
1386 | "type": "git", | 1119 | "type": "git", |
1387 | "url": "https://github.com/filamentphp/notifications.git", | 1120 | "url": "https://github.com/filamentphp/notifications.git", |
1388 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252" | 1121 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252" |
1389 | }, | 1122 | }, |
1390 | "dist": { | 1123 | "dist": { |
1391 | "type": "zip", | 1124 | "type": "zip", |
1392 | "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", | 1125 | "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", |
1393 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", | 1126 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", |
1394 | "shasum": "" | 1127 | "shasum": "" |
1395 | }, | 1128 | }, |
1396 | "require": { | 1129 | "require": { |
1397 | "blade-ui-kit/blade-heroicons": "^1.2", | 1130 | "blade-ui-kit/blade-heroicons": "^1.2", |
1398 | "filament/support": "self.version", | 1131 | "filament/support": "self.version", |
1399 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 1132 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
1400 | "illuminate/filesystem": "^8.6|^9.0|^10.0", | 1133 | "illuminate/filesystem": "^8.6|^9.0|^10.0", |
1401 | "illuminate/notifications": "^8.6|^9.0|^10.0", | 1134 | "illuminate/notifications": "^8.6|^9.0|^10.0", |
1402 | "illuminate/support": "^8.6|^9.0|^10.0", | 1135 | "illuminate/support": "^8.6|^9.0|^10.0", |
1403 | "livewire/livewire": "^2.10.7", | 1136 | "livewire/livewire": "^2.10.7", |
1404 | "php": "^8.0", | 1137 | "php": "^8.0", |
1405 | "spatie/laravel-package-tools": "^1.9" | 1138 | "spatie/laravel-package-tools": "^1.9" |
1406 | }, | 1139 | }, |
1407 | "type": "library", | 1140 | "type": "library", |
1408 | "extra": { | 1141 | "extra": { |
1409 | "laravel": { | 1142 | "laravel": { |
1410 | "providers": [ | 1143 | "providers": [ |
1411 | "Filament\\Notifications\\NotificationsServiceProvider" | 1144 | "Filament\\Notifications\\NotificationsServiceProvider" |
1412 | ] | 1145 | ] |
1413 | } | 1146 | } |
1414 | }, | 1147 | }, |
1415 | "autoload": { | 1148 | "autoload": { |
1416 | "files": [ | 1149 | "files": [ |
1417 | "src/Testing/Autoload.php" | 1150 | "src/Testing/Autoload.php" |
1418 | ], | 1151 | ], |
1419 | "psr-4": { | 1152 | "psr-4": { |
1420 | "Filament\\Notifications\\": "src" | 1153 | "Filament\\Notifications\\": "src" |
1421 | } | 1154 | } |
1422 | }, | 1155 | }, |
1423 | "notification-url": "https://packagist.org/downloads/", | 1156 | "notification-url": "https://packagist.org/downloads/", |
1424 | "license": [ | 1157 | "license": [ |
1425 | "MIT" | 1158 | "MIT" |
1426 | ], | 1159 | ], |
1427 | "description": "Effortlessly build TALL-powered notifications.", | 1160 | "description": "Effortlessly build TALL-powered notifications.", |
1428 | "homepage": "https://github.com/filamentphp/filament", | 1161 | "homepage": "https://github.com/filamentphp/filament", |
1429 | "support": { | 1162 | "support": { |
1430 | "issues": "https://github.com/filamentphp/filament/issues", | 1163 | "issues": "https://github.com/filamentphp/filament/issues", |
1431 | "source": "https://github.com/filamentphp/filament" | 1164 | "source": "https://github.com/filamentphp/filament" |
1432 | }, | 1165 | }, |
1433 | "time": "2023-05-04T23:08:09+00:00" | 1166 | "time": "2023-05-04T23:08:09+00:00" |
1434 | }, | 1167 | }, |
1435 | { | 1168 | { |
1436 | "name": "filament/support", | 1169 | "name": "filament/support", |
1437 | "version": "v2.17.40", | 1170 | "version": "v2.17.40", |
1438 | "source": { | 1171 | "source": { |
1439 | "type": "git", | 1172 | "type": "git", |
1440 | "url": "https://github.com/filamentphp/support.git", | 1173 | "url": "https://github.com/filamentphp/support.git", |
1441 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308" | 1174 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308" |
1442 | }, | 1175 | }, |
1443 | "dist": { | 1176 | "dist": { |
1444 | "type": "zip", | 1177 | "type": "zip", |
1445 | "url": "https://api.github.com/repos/filamentphp/support/zipball/e75e02a76edd959304cdbea7815586b720f8d308", | 1178 | "url": "https://api.github.com/repos/filamentphp/support/zipball/e75e02a76edd959304cdbea7815586b720f8d308", |
1446 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308", | 1179 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308", |
1447 | "shasum": "" | 1180 | "shasum": "" |
1448 | }, | 1181 | }, |
1449 | "require": { | 1182 | "require": { |
1450 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 1183 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
1451 | "illuminate/support": "^8.6|^9.0|^10.0", | 1184 | "illuminate/support": "^8.6|^9.0|^10.0", |
1452 | "illuminate/view": "^8.6|^9.0|^10.0", | 1185 | "illuminate/view": "^8.6|^9.0|^10.0", |
1453 | "php": "^8.0", | 1186 | "php": "^8.0", |
1454 | "spatie/laravel-package-tools": "^1.9", | 1187 | "spatie/laravel-package-tools": "^1.9", |
1455 | "tgalopin/html-sanitizer": "^1.5" | 1188 | "tgalopin/html-sanitizer": "^1.5" |
1456 | }, | 1189 | }, |
1457 | "type": "library", | 1190 | "type": "library", |
1458 | "extra": { | 1191 | "extra": { |
1459 | "laravel": { | 1192 | "laravel": { |
1460 | "providers": [ | 1193 | "providers": [ |
1461 | "Filament\\Support\\SupportServiceProvider" | 1194 | "Filament\\Support\\SupportServiceProvider" |
1462 | ] | 1195 | ] |
1463 | } | 1196 | } |
1464 | }, | 1197 | }, |
1465 | "autoload": { | 1198 | "autoload": { |
1466 | "files": [ | 1199 | "files": [ |
1467 | "src/helpers.php" | 1200 | "src/helpers.php" |
1468 | ], | 1201 | ], |
1469 | "psr-4": { | 1202 | "psr-4": { |
1470 | "Filament\\Support\\": "src" | 1203 | "Filament\\Support\\": "src" |
1471 | } | 1204 | } |
1472 | }, | 1205 | }, |
1473 | "notification-url": "https://packagist.org/downloads/", | 1206 | "notification-url": "https://packagist.org/downloads/", |
1474 | "license": [ | 1207 | "license": [ |
1475 | "MIT" | 1208 | "MIT" |
1476 | ], | 1209 | ], |
1477 | "description": "Associated helper methods and foundation code for Filament packages.", | 1210 | "description": "Associated helper methods and foundation code for Filament packages.", |
1478 | "homepage": "https://github.com/filamentphp/filament", | 1211 | "homepage": "https://github.com/filamentphp/filament", |
1479 | "support": { | 1212 | "support": { |
1480 | "issues": "https://github.com/filamentphp/filament/issues", | 1213 | "issues": "https://github.com/filamentphp/filament/issues", |
1481 | "source": "https://github.com/filamentphp/filament" | 1214 | "source": "https://github.com/filamentphp/filament" |
1482 | }, | 1215 | }, |
1483 | "time": "2023-05-13T07:21:02+00:00" | 1216 | "time": "2023-05-13T07:21:02+00:00" |
1484 | }, | 1217 | }, |
1485 | { | 1218 | { |
1486 | "name": "filament/tables", | 1219 | "name": "filament/tables", |
1487 | "version": "v2.17.40", | 1220 | "version": "v2.17.40", |
1488 | "source": { | 1221 | "source": { |
1489 | "type": "git", | 1222 | "type": "git", |
1490 | "url": "https://github.com/filamentphp/tables.git", | 1223 | "url": "https://github.com/filamentphp/tables.git", |
1491 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6" | 1224 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6" |
1492 | }, | 1225 | }, |
1493 | "dist": { | 1226 | "dist": { |
1494 | "type": "zip", | 1227 | "type": "zip", |
1495 | "url": "https://api.github.com/repos/filamentphp/tables/zipball/7389f819d057262642295a22fb7d26e92e0b2ab6", | 1228 | "url": "https://api.github.com/repos/filamentphp/tables/zipball/7389f819d057262642295a22fb7d26e92e0b2ab6", |
1496 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6", | 1229 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6", |
1497 | "shasum": "" | 1230 | "shasum": "" |
1498 | }, | 1231 | }, |
1499 | "require": { | 1232 | "require": { |
1500 | "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0", | 1233 | "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0", |
1501 | "blade-ui-kit/blade-heroicons": "^1.2", | 1234 | "blade-ui-kit/blade-heroicons": "^1.2", |
1502 | "filament/forms": "self.version", | 1235 | "filament/forms": "self.version", |
1503 | "filament/notifications": "self.version", | 1236 | "filament/notifications": "self.version", |
1504 | "filament/support": "self.version", | 1237 | "filament/support": "self.version", |
1505 | "illuminate/console": "^8.6|^9.0|^10.0", | 1238 | "illuminate/console": "^8.6|^9.0|^10.0", |
1506 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 1239 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
1507 | "illuminate/database": "^8.6|^9.0|^10.0", | 1240 | "illuminate/database": "^8.6|^9.0|^10.0", |
1508 | "illuminate/filesystem": "^8.6|^9.0|^10.0", | 1241 | "illuminate/filesystem": "^8.6|^9.0|^10.0", |
1509 | "illuminate/support": "^8.6|^9.0|^10.0", | 1242 | "illuminate/support": "^8.6|^9.0|^10.0", |
1510 | "illuminate/view": "^8.6|^9.0|^10.0", | 1243 | "illuminate/view": "^8.6|^9.0|^10.0", |
1511 | "livewire/livewire": "^2.10.7", | 1244 | "livewire/livewire": "^2.10.7", |
1512 | "php": "^8.0", | 1245 | "php": "^8.0", |
1513 | "spatie/invade": "^1.0", | 1246 | "spatie/invade": "^1.0", |
1514 | "spatie/laravel-package-tools": "^1.9" | 1247 | "spatie/laravel-package-tools": "^1.9" |
1515 | }, | 1248 | }, |
1516 | "type": "library", | 1249 | "type": "library", |
1517 | "extra": { | 1250 | "extra": { |
1518 | "laravel": { | 1251 | "laravel": { |
1519 | "providers": [ | 1252 | "providers": [ |
1520 | "Filament\\Tables\\TablesServiceProvider" | 1253 | "Filament\\Tables\\TablesServiceProvider" |
1521 | ] | 1254 | ] |
1522 | } | 1255 | } |
1523 | }, | 1256 | }, |
1524 | "autoload": { | 1257 | "autoload": { |
1525 | "psr-4": { | 1258 | "psr-4": { |
1526 | "Filament\\Tables\\": "src" | 1259 | "Filament\\Tables\\": "src" |
1527 | } | 1260 | } |
1528 | }, | 1261 | }, |
1529 | "notification-url": "https://packagist.org/downloads/", | 1262 | "notification-url": "https://packagist.org/downloads/", |
1530 | "license": [ | 1263 | "license": [ |
1531 | "MIT" | 1264 | "MIT" |
1532 | ], | 1265 | ], |
1533 | "description": "Effortlessly build TALL-powered tables.", | 1266 | "description": "Effortlessly build TALL-powered tables.", |
1534 | "homepage": "https://github.com/filamentphp/filament", | 1267 | "homepage": "https://github.com/filamentphp/filament", |
1535 | "support": { | 1268 | "support": { |
1536 | "issues": "https://github.com/filamentphp/filament/issues", | 1269 | "issues": "https://github.com/filamentphp/filament/issues", |
1537 | "source": "https://github.com/filamentphp/filament" | 1270 | "source": "https://github.com/filamentphp/filament" |
1538 | }, | 1271 | }, |
1539 | "time": "2023-05-13T07:21:08+00:00" | 1272 | "time": "2023-05-13T07:21:08+00:00" |
1540 | }, | 1273 | }, |
1541 | { | 1274 | { |
1542 | "name": "fruitcake/php-cors", | 1275 | "name": "fruitcake/php-cors", |
1543 | "version": "v1.2.0", | 1276 | "version": "v1.2.0", |
1544 | "source": { | 1277 | "source": { |
1545 | "type": "git", | 1278 | "type": "git", |
1546 | "url": "https://github.com/fruitcake/php-cors.git", | 1279 | "url": "https://github.com/fruitcake/php-cors.git", |
1547 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" | 1280 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" |
1548 | }, | 1281 | }, |
1549 | "dist": { | 1282 | "dist": { |
1550 | "type": "zip", | 1283 | "type": "zip", |
1551 | "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", | 1284 | "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", |
1552 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", | 1285 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", |
1553 | "shasum": "" | 1286 | "shasum": "" |
1554 | }, | 1287 | }, |
1555 | "require": { | 1288 | "require": { |
1556 | "php": "^7.4|^8.0", | 1289 | "php": "^7.4|^8.0", |
1557 | "symfony/http-foundation": "^4.4|^5.4|^6" | 1290 | "symfony/http-foundation": "^4.4|^5.4|^6" |
1558 | }, | 1291 | }, |
1559 | "require-dev": { | 1292 | "require-dev": { |
1560 | "phpstan/phpstan": "^1.4", | 1293 | "phpstan/phpstan": "^1.4", |
1561 | "phpunit/phpunit": "^9", | 1294 | "phpunit/phpunit": "^9", |
1562 | "squizlabs/php_codesniffer": "^3.5" | 1295 | "squizlabs/php_codesniffer": "^3.5" |
1563 | }, | 1296 | }, |
1564 | "type": "library", | 1297 | "type": "library", |
1565 | "extra": { | 1298 | "extra": { |
1566 | "branch-alias": { | 1299 | "branch-alias": { |
1567 | "dev-main": "1.1-dev" | 1300 | "dev-main": "1.1-dev" |
1568 | } | 1301 | } |
1569 | }, | 1302 | }, |
1570 | "autoload": { | 1303 | "autoload": { |
1571 | "psr-4": { | 1304 | "psr-4": { |
1572 | "Fruitcake\\Cors\\": "src/" | 1305 | "Fruitcake\\Cors\\": "src/" |
1573 | } | 1306 | } |
1574 | }, | 1307 | }, |
1575 | "notification-url": "https://packagist.org/downloads/", | 1308 | "notification-url": "https://packagist.org/downloads/", |
1576 | "license": [ | 1309 | "license": [ |
1577 | "MIT" | 1310 | "MIT" |
1578 | ], | 1311 | ], |
1579 | "authors": [ | 1312 | "authors": [ |
1580 | { | 1313 | { |
1581 | "name": "Fruitcake", | 1314 | "name": "Fruitcake", |
1582 | "homepage": "https://fruitcake.nl" | 1315 | "homepage": "https://fruitcake.nl" |
1583 | }, | 1316 | }, |
1584 | { | 1317 | { |
1585 | "name": "Barryvdh", | 1318 | "name": "Barryvdh", |
1586 | "email": "barryvdh@gmail.com" | 1319 | "email": "barryvdh@gmail.com" |
1587 | } | 1320 | } |
1588 | ], | 1321 | ], |
1589 | "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", | 1322 | "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", |
1590 | "homepage": "https://github.com/fruitcake/php-cors", | 1323 | "homepage": "https://github.com/fruitcake/php-cors", |
1591 | "keywords": [ | 1324 | "keywords": [ |
1592 | "cors", | 1325 | "cors", |
1593 | "laravel", | 1326 | "laravel", |
1594 | "symfony" | 1327 | "symfony" |
1595 | ], | 1328 | ], |
1596 | "support": { | 1329 | "support": { |
1597 | "issues": "https://github.com/fruitcake/php-cors/issues", | 1330 | "issues": "https://github.com/fruitcake/php-cors/issues", |
1598 | "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" | 1331 | "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" |
1599 | }, | 1332 | }, |
1600 | "funding": [ | 1333 | "funding": [ |
1601 | { | 1334 | { |
1602 | "url": "https://fruitcake.nl", | 1335 | "url": "https://fruitcake.nl", |
1603 | "type": "custom" | 1336 | "type": "custom" |
1604 | }, | 1337 | }, |
1605 | { | 1338 | { |
1606 | "url": "https://github.com/barryvdh", | 1339 | "url": "https://github.com/barryvdh", |
1607 | "type": "github" | 1340 | "type": "github" |
1608 | } | 1341 | } |
1609 | ], | 1342 | ], |
1610 | "time": "2022-02-20T15:07:15+00:00" | 1343 | "time": "2022-02-20T15:07:15+00:00" |
1611 | }, | 1344 | }, |
1612 | { | 1345 | { |
1613 | "name": "graham-campbell/result-type", | 1346 | "name": "graham-campbell/result-type", |
1614 | "version": "v1.1.1", | 1347 | "version": "v1.1.1", |
1615 | "source": { | 1348 | "source": { |
1616 | "type": "git", | 1349 | "type": "git", |
1617 | "url": "https://github.com/GrahamCampbell/Result-Type.git", | 1350 | "url": "https://github.com/GrahamCampbell/Result-Type.git", |
1618 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" | 1351 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" |
1619 | }, | 1352 | }, |
1620 | "dist": { | 1353 | "dist": { |
1621 | "type": "zip", | 1354 | "type": "zip", |
1622 | "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", | 1355 | "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", |
1623 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", | 1356 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", |
1624 | "shasum": "" | 1357 | "shasum": "" |
1625 | }, | 1358 | }, |
1626 | "require": { | 1359 | "require": { |
1627 | "php": "^7.2.5 || ^8.0", | 1360 | "php": "^7.2.5 || ^8.0", |
1628 | "phpoption/phpoption": "^1.9.1" | 1361 | "phpoption/phpoption": "^1.9.1" |
1629 | }, | 1362 | }, |
1630 | "require-dev": { | 1363 | "require-dev": { |
1631 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" | 1364 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" |
1632 | }, | 1365 | }, |
1633 | "type": "library", | 1366 | "type": "library", |
1634 | "autoload": { | 1367 | "autoload": { |
1635 | "psr-4": { | 1368 | "psr-4": { |
1636 | "GrahamCampbell\\ResultType\\": "src/" | 1369 | "GrahamCampbell\\ResultType\\": "src/" |
1637 | } | 1370 | } |
1638 | }, | 1371 | }, |
1639 | "notification-url": "https://packagist.org/downloads/", | 1372 | "notification-url": "https://packagist.org/downloads/", |
1640 | "license": [ | 1373 | "license": [ |
1641 | "MIT" | 1374 | "MIT" |
1642 | ], | 1375 | ], |
1643 | "authors": [ | 1376 | "authors": [ |
1644 | { | 1377 | { |
1645 | "name": "Graham Campbell", | 1378 | "name": "Graham Campbell", |
1646 | "email": "hello@gjcampbell.co.uk", | 1379 | "email": "hello@gjcampbell.co.uk", |
1647 | "homepage": "https://github.com/GrahamCampbell" | 1380 | "homepage": "https://github.com/GrahamCampbell" |
1648 | } | 1381 | } |
1649 | ], | 1382 | ], |
1650 | "description": "An Implementation Of The Result Type", | 1383 | "description": "An Implementation Of The Result Type", |
1651 | "keywords": [ | 1384 | "keywords": [ |
1652 | "Graham Campbell", | 1385 | "Graham Campbell", |
1653 | "GrahamCampbell", | 1386 | "GrahamCampbell", |
1654 | "Result Type", | 1387 | "Result Type", |
1655 | "Result-Type", | 1388 | "Result-Type", |
1656 | "result" | 1389 | "result" |
1657 | ], | 1390 | ], |
1658 | "support": { | 1391 | "support": { |
1659 | "issues": "https://github.com/GrahamCampbell/Result-Type/issues", | 1392 | "issues": "https://github.com/GrahamCampbell/Result-Type/issues", |
1660 | "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" | 1393 | "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" |
1661 | }, | 1394 | }, |
1662 | "funding": [ | 1395 | "funding": [ |
1663 | { | 1396 | { |
1664 | "url": "https://github.com/GrahamCampbell", | 1397 | "url": "https://github.com/GrahamCampbell", |
1665 | "type": "github" | 1398 | "type": "github" |
1666 | }, | 1399 | }, |
1667 | { | 1400 | { |
1668 | "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", | 1401 | "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", |
1669 | "type": "tidelift" | 1402 | "type": "tidelift" |
1670 | } | 1403 | } |
1671 | ], | 1404 | ], |
1672 | "time": "2023-02-25T20:23:15+00:00" | 1405 | "time": "2023-02-25T20:23:15+00:00" |
1673 | }, | 1406 | }, |
1674 | { | 1407 | { |
1675 | "name": "guzzlehttp/guzzle", | 1408 | "name": "guzzlehttp/guzzle", |
1676 | "version": "7.6.0", | 1409 | "version": "7.6.0", |
1677 | "source": { | 1410 | "source": { |
1678 | "type": "git", | 1411 | "type": "git", |
1679 | "url": "https://github.com/guzzle/guzzle.git", | 1412 | "url": "https://github.com/guzzle/guzzle.git", |
1680 | "reference": "733dd89533dd371a0987172727df15f500dab0ef" | 1413 | "reference": "733dd89533dd371a0987172727df15f500dab0ef" |
1681 | }, | 1414 | }, |
1682 | "dist": { | 1415 | "dist": { |
1683 | "type": "zip", | 1416 | "type": "zip", |
1684 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/733dd89533dd371a0987172727df15f500dab0ef", | 1417 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/733dd89533dd371a0987172727df15f500dab0ef", |
1685 | "reference": "733dd89533dd371a0987172727df15f500dab0ef", | 1418 | "reference": "733dd89533dd371a0987172727df15f500dab0ef", |
1686 | "shasum": "" | 1419 | "shasum": "" |
1687 | }, | 1420 | }, |
1688 | "require": { | 1421 | "require": { |
1689 | "ext-json": "*", | 1422 | "ext-json": "*", |
1690 | "guzzlehttp/promises": "^1.5", | 1423 | "guzzlehttp/promises": "^1.5", |
1691 | "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", | 1424 | "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", |
1692 | "php": "^7.2.5 || ^8.0", | 1425 | "php": "^7.2.5 || ^8.0", |
1693 | "psr/http-client": "^1.0", | 1426 | "psr/http-client": "^1.0", |
1694 | "symfony/deprecation-contracts": "^2.2 || ^3.0" | 1427 | "symfony/deprecation-contracts": "^2.2 || ^3.0" |
1695 | }, | 1428 | }, |
1696 | "provide": { | 1429 | "provide": { |
1697 | "psr/http-client-implementation": "1.0" | 1430 | "psr/http-client-implementation": "1.0" |
1698 | }, | 1431 | }, |
1699 | "require-dev": { | 1432 | "require-dev": { |
1700 | "bamarni/composer-bin-plugin": "^1.8.1", | 1433 | "bamarni/composer-bin-plugin": "^1.8.1", |
1701 | "ext-curl": "*", | 1434 | "ext-curl": "*", |
1702 | "php-http/client-integration-tests": "^3.0", | 1435 | "php-http/client-integration-tests": "^3.0", |
1703 | "phpunit/phpunit": "^8.5.29 || ^9.5.23", | 1436 | "phpunit/phpunit": "^8.5.29 || ^9.5.23", |
1704 | "psr/log": "^1.1 || ^2.0 || ^3.0" | 1437 | "psr/log": "^1.1 || ^2.0 || ^3.0" |
1705 | }, | 1438 | }, |
1706 | "suggest": { | 1439 | "suggest": { |
1707 | "ext-curl": "Required for CURL handler support", | 1440 | "ext-curl": "Required for CURL handler support", |
1708 | "ext-intl": "Required for Internationalized Domain Name (IDN) support", | 1441 | "ext-intl": "Required for Internationalized Domain Name (IDN) support", |
1709 | "psr/log": "Required for using the Log middleware" | 1442 | "psr/log": "Required for using the Log middleware" |
1710 | }, | 1443 | }, |
1711 | "type": "library", | 1444 | "type": "library", |
1712 | "extra": { | 1445 | "extra": { |
1713 | "bamarni-bin": { | 1446 | "bamarni-bin": { |
1714 | "bin-links": true, | 1447 | "bin-links": true, |
1715 | "forward-command": false | 1448 | "forward-command": false |
1716 | } | 1449 | } |
1717 | }, | 1450 | }, |
1718 | "autoload": { | 1451 | "autoload": { |
1719 | "files": [ | 1452 | "files": [ |
1720 | "src/functions_include.php" | 1453 | "src/functions_include.php" |
1721 | ], | 1454 | ], |
1722 | "psr-4": { | 1455 | "psr-4": { |
1723 | "GuzzleHttp\\": "src/" | 1456 | "GuzzleHttp\\": "src/" |
1724 | } | 1457 | } |
1725 | }, | 1458 | }, |
1726 | "notification-url": "https://packagist.org/downloads/", | 1459 | "notification-url": "https://packagist.org/downloads/", |
1727 | "license": [ | 1460 | "license": [ |
1728 | "MIT" | 1461 | "MIT" |
1729 | ], | 1462 | ], |
1730 | "authors": [ | 1463 | "authors": [ |
1731 | { | 1464 | { |
1732 | "name": "Graham Campbell", | 1465 | "name": "Graham Campbell", |
1733 | "email": "hello@gjcampbell.co.uk", | 1466 | "email": "hello@gjcampbell.co.uk", |
1734 | "homepage": "https://github.com/GrahamCampbell" | 1467 | "homepage": "https://github.com/GrahamCampbell" |
1735 | }, | 1468 | }, |
1736 | { | 1469 | { |
1737 | "name": "Michael Dowling", | 1470 | "name": "Michael Dowling", |
1738 | "email": "mtdowling@gmail.com", | 1471 | "email": "mtdowling@gmail.com", |
1739 | "homepage": "https://github.com/mtdowling" | 1472 | "homepage": "https://github.com/mtdowling" |
1740 | }, | 1473 | }, |
1741 | { | 1474 | { |
1742 | "name": "Jeremy Lindblom", | 1475 | "name": "Jeremy Lindblom", |
1743 | "email": "jeremeamia@gmail.com", | 1476 | "email": "jeremeamia@gmail.com", |
1744 | "homepage": "https://github.com/jeremeamia" | 1477 | "homepage": "https://github.com/jeremeamia" |
1745 | }, | 1478 | }, |
1746 | { | 1479 | { |
1747 | "name": "George Mponos", | 1480 | "name": "George Mponos", |
1748 | "email": "gmponos@gmail.com", | 1481 | "email": "gmponos@gmail.com", |
1749 | "homepage": "https://github.com/gmponos" | 1482 | "homepage": "https://github.com/gmponos" |
1750 | }, | 1483 | }, |
1751 | { | 1484 | { |
1752 | "name": "Tobias Nyholm", | 1485 | "name": "Tobias Nyholm", |
1753 | "email": "tobias.nyholm@gmail.com", | 1486 | "email": "tobias.nyholm@gmail.com", |
1754 | "homepage": "https://github.com/Nyholm" | 1487 | "homepage": "https://github.com/Nyholm" |
1755 | }, | 1488 | }, |
1756 | { | 1489 | { |
1757 | "name": "Márk Sági-Kazár", | 1490 | "name": "Márk Sági-Kazár", |
1758 | "email": "mark.sagikazar@gmail.com", | 1491 | "email": "mark.sagikazar@gmail.com", |
1759 | "homepage": "https://github.com/sagikazarmark" | 1492 | "homepage": "https://github.com/sagikazarmark" |
1760 | }, | 1493 | }, |
1761 | { | 1494 | { |
1762 | "name": "Tobias Schultze", | 1495 | "name": "Tobias Schultze", |
1763 | "email": "webmaster@tubo-world.de", | 1496 | "email": "webmaster@tubo-world.de", |
1764 | "homepage": "https://github.com/Tobion" | 1497 | "homepage": "https://github.com/Tobion" |
1765 | } | 1498 | } |
1766 | ], | 1499 | ], |
1767 | "description": "Guzzle is a PHP HTTP client library", | 1500 | "description": "Guzzle is a PHP HTTP client library", |
1768 | "keywords": [ | 1501 | "keywords": [ |
1769 | "client", | 1502 | "client", |
1770 | "curl", | 1503 | "curl", |
1771 | "framework", | 1504 | "framework", |
1772 | "http", | 1505 | "http", |
1773 | "http client", | 1506 | "http client", |
1774 | "psr-18", | 1507 | "psr-18", |
1775 | "psr-7", | 1508 | "psr-7", |
1776 | "rest", | 1509 | "rest", |
1777 | "web service" | 1510 | "web service" |
1778 | ], | 1511 | ], |
1779 | "support": { | 1512 | "support": { |
1780 | "issues": "https://github.com/guzzle/guzzle/issues", | 1513 | "issues": "https://github.com/guzzle/guzzle/issues", |
1781 | "source": "https://github.com/guzzle/guzzle/tree/7.6.0" | 1514 | "source": "https://github.com/guzzle/guzzle/tree/7.6.0" |
1782 | }, | 1515 | }, |
1783 | "funding": [ | 1516 | "funding": [ |
1784 | { | 1517 | { |
1785 | "url": "https://github.com/GrahamCampbell", | 1518 | "url": "https://github.com/GrahamCampbell", |
1786 | "type": "github" | 1519 | "type": "github" |
1787 | }, | 1520 | }, |
1788 | { | 1521 | { |
1789 | "url": "https://github.com/Nyholm", | 1522 | "url": "https://github.com/Nyholm", |
1790 | "type": "github" | 1523 | "type": "github" |
1791 | }, | 1524 | }, |
1792 | { | 1525 | { |
1793 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", | 1526 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", |
1794 | "type": "tidelift" | 1527 | "type": "tidelift" |
1795 | } | 1528 | } |
1796 | ], | 1529 | ], |
1797 | "time": "2023-05-14T11:23:39+00:00" | 1530 | "time": "2023-05-14T11:23:39+00:00" |
1798 | }, | 1531 | }, |
1799 | { | 1532 | { |
1800 | "name": "guzzlehttp/promises", | 1533 | "name": "guzzlehttp/promises", |
1801 | "version": "1.5.2", | 1534 | "version": "1.5.2", |
1802 | "source": { | 1535 | "source": { |
1803 | "type": "git", | 1536 | "type": "git", |
1804 | "url": "https://github.com/guzzle/promises.git", | 1537 | "url": "https://github.com/guzzle/promises.git", |
1805 | "reference": "b94b2807d85443f9719887892882d0329d1e2598" | 1538 | "reference": "b94b2807d85443f9719887892882d0329d1e2598" |
1806 | }, | 1539 | }, |
1807 | "dist": { | 1540 | "dist": { |
1808 | "type": "zip", | 1541 | "type": "zip", |
1809 | "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", | 1542 | "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", |
1810 | "reference": "b94b2807d85443f9719887892882d0329d1e2598", | 1543 | "reference": "b94b2807d85443f9719887892882d0329d1e2598", |
1811 | "shasum": "" | 1544 | "shasum": "" |
1812 | }, | 1545 | }, |
1813 | "require": { | 1546 | "require": { |
1814 | "php": ">=5.5" | 1547 | "php": ">=5.5" |
1815 | }, | 1548 | }, |
1816 | "require-dev": { | 1549 | "require-dev": { |
1817 | "symfony/phpunit-bridge": "^4.4 || ^5.1" | 1550 | "symfony/phpunit-bridge": "^4.4 || ^5.1" |
1818 | }, | 1551 | }, |
1819 | "type": "library", | 1552 | "type": "library", |
1820 | "extra": { | 1553 | "extra": { |
1821 | "branch-alias": { | 1554 | "branch-alias": { |
1822 | "dev-master": "1.5-dev" | 1555 | "dev-master": "1.5-dev" |
1823 | } | 1556 | } |
1824 | }, | 1557 | }, |
1825 | "autoload": { | 1558 | "autoload": { |
1826 | "files": [ | 1559 | "files": [ |
1827 | "src/functions_include.php" | 1560 | "src/functions_include.php" |
1828 | ], | 1561 | ], |
1829 | "psr-4": { | 1562 | "psr-4": { |
1830 | "GuzzleHttp\\Promise\\": "src/" | 1563 | "GuzzleHttp\\Promise\\": "src/" |
1831 | } | 1564 | } |
1832 | }, | 1565 | }, |
1833 | "notification-url": "https://packagist.org/downloads/", | 1566 | "notification-url": "https://packagist.org/downloads/", |
1834 | "license": [ | 1567 | "license": [ |
1835 | "MIT" | 1568 | "MIT" |
1836 | ], | 1569 | ], |
1837 | "authors": [ | 1570 | "authors": [ |
1838 | { | 1571 | { |
1839 | "name": "Graham Campbell", | 1572 | "name": "Graham Campbell", |
1840 | "email": "hello@gjcampbell.co.uk", | 1573 | "email": "hello@gjcampbell.co.uk", |
1841 | "homepage": "https://github.com/GrahamCampbell" | 1574 | "homepage": "https://github.com/GrahamCampbell" |
1842 | }, | 1575 | }, |
1843 | { | 1576 | { |
1844 | "name": "Michael Dowling", | 1577 | "name": "Michael Dowling", |
1845 | "email": "mtdowling@gmail.com", | 1578 | "email": "mtdowling@gmail.com", |
1846 | "homepage": "https://github.com/mtdowling" | 1579 | "homepage": "https://github.com/mtdowling" |
1847 | }, | 1580 | }, |
1848 | { | 1581 | { |
1849 | "name": "Tobias Nyholm", | 1582 | "name": "Tobias Nyholm", |
1850 | "email": "tobias.nyholm@gmail.com", | 1583 | "email": "tobias.nyholm@gmail.com", |
1851 | "homepage": "https://github.com/Nyholm" | 1584 | "homepage": "https://github.com/Nyholm" |
1852 | }, | 1585 | }, |
1853 | { | 1586 | { |
1854 | "name": "Tobias Schultze", | 1587 | "name": "Tobias Schultze", |
1855 | "email": "webmaster@tubo-world.de", | 1588 | "email": "webmaster@tubo-world.de", |
1856 | "homepage": "https://github.com/Tobion" | 1589 | "homepage": "https://github.com/Tobion" |
1857 | } | 1590 | } |
1858 | ], | 1591 | ], |
1859 | "description": "Guzzle promises library", | 1592 | "description": "Guzzle promises library", |
1860 | "keywords": [ | 1593 | "keywords": [ |
1861 | "promise" | 1594 | "promise" |
1862 | ], | 1595 | ], |
1863 | "support": { | 1596 | "support": { |
1864 | "issues": "https://github.com/guzzle/promises/issues", | 1597 | "issues": "https://github.com/guzzle/promises/issues", |
1865 | "source": "https://github.com/guzzle/promises/tree/1.5.2" | 1598 | "source": "https://github.com/guzzle/promises/tree/1.5.2" |
1866 | }, | 1599 | }, |
1867 | "funding": [ | 1600 | "funding": [ |
1868 | { | 1601 | { |
1869 | "url": "https://github.com/GrahamCampbell", | 1602 | "url": "https://github.com/GrahamCampbell", |
1870 | "type": "github" | 1603 | "type": "github" |
1871 | }, | 1604 | }, |
1872 | { | 1605 | { |
1873 | "url": "https://github.com/Nyholm", | 1606 | "url": "https://github.com/Nyholm", |
1874 | "type": "github" | 1607 | "type": "github" |
1875 | }, | 1608 | }, |
1876 | { | 1609 | { |
1877 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", | 1610 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", |
1878 | "type": "tidelift" | 1611 | "type": "tidelift" |
1879 | } | 1612 | } |
1880 | ], | 1613 | ], |
1881 | "time": "2022-08-28T14:55:35+00:00" | 1614 | "time": "2022-08-28T14:55:35+00:00" |
1882 | }, | 1615 | }, |
1883 | { | 1616 | { |
1884 | "name": "guzzlehttp/psr7", | 1617 | "name": "guzzlehttp/psr7", |
1885 | "version": "2.5.0", | 1618 | "version": "2.5.0", |
1886 | "source": { | 1619 | "source": { |
1887 | "type": "git", | 1620 | "type": "git", |
1888 | "url": "https://github.com/guzzle/psr7.git", | 1621 | "url": "https://github.com/guzzle/psr7.git", |
1889 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6" | 1622 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6" |
1890 | }, | 1623 | }, |
1891 | "dist": { | 1624 | "dist": { |
1892 | "type": "zip", | 1625 | "type": "zip", |
1893 | "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6", | 1626 | "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6", |
1894 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6", | 1627 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6", |
1895 | "shasum": "" | 1628 | "shasum": "" |
1896 | }, | 1629 | }, |
1897 | "require": { | 1630 | "require": { |
1898 | "php": "^7.2.5 || ^8.0", | 1631 | "php": "^7.2.5 || ^8.0", |
1899 | "psr/http-factory": "^1.0", | 1632 | "psr/http-factory": "^1.0", |
1900 | "psr/http-message": "^1.1 || ^2.0", | 1633 | "psr/http-message": "^1.1 || ^2.0", |
1901 | "ralouphie/getallheaders": "^3.0" | 1634 | "ralouphie/getallheaders": "^3.0" |
1902 | }, | 1635 | }, |
1903 | "provide": { | 1636 | "provide": { |
1904 | "psr/http-factory-implementation": "1.0", | 1637 | "psr/http-factory-implementation": "1.0", |
1905 | "psr/http-message-implementation": "1.0" | 1638 | "psr/http-message-implementation": "1.0" |
1906 | }, | 1639 | }, |
1907 | "require-dev": { | 1640 | "require-dev": { |
1908 | "bamarni/composer-bin-plugin": "^1.8.1", | 1641 | "bamarni/composer-bin-plugin": "^1.8.1", |
1909 | "http-interop/http-factory-tests": "^0.9", | 1642 | "http-interop/http-factory-tests": "^0.9", |
1910 | "phpunit/phpunit": "^8.5.29 || ^9.5.23" | 1643 | "phpunit/phpunit": "^8.5.29 || ^9.5.23" |
1911 | }, | 1644 | }, |
1912 | "suggest": { | 1645 | "suggest": { |
1913 | "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" | 1646 | "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" |
1914 | }, | 1647 | }, |
1915 | "type": "library", | 1648 | "type": "library", |
1916 | "extra": { | 1649 | "extra": { |
1917 | "bamarni-bin": { | 1650 | "bamarni-bin": { |
1918 | "bin-links": true, | 1651 | "bin-links": true, |
1919 | "forward-command": false | 1652 | "forward-command": false |
1920 | } | 1653 | } |
1921 | }, | 1654 | }, |
1922 | "autoload": { | 1655 | "autoload": { |
1923 | "psr-4": { | 1656 | "psr-4": { |
1924 | "GuzzleHttp\\Psr7\\": "src/" | 1657 | "GuzzleHttp\\Psr7\\": "src/" |
1925 | } | 1658 | } |
1926 | }, | 1659 | }, |
1927 | "notification-url": "https://packagist.org/downloads/", | 1660 | "notification-url": "https://packagist.org/downloads/", |
1928 | "license": [ | 1661 | "license": [ |
1929 | "MIT" | 1662 | "MIT" |
1930 | ], | 1663 | ], |
1931 | "authors": [ | 1664 | "authors": [ |
1932 | { | 1665 | { |
1933 | "name": "Graham Campbell", | 1666 | "name": "Graham Campbell", |
1934 | "email": "hello@gjcampbell.co.uk", | 1667 | "email": "hello@gjcampbell.co.uk", |
1935 | "homepage": "https://github.com/GrahamCampbell" | 1668 | "homepage": "https://github.com/GrahamCampbell" |
1936 | }, | 1669 | }, |
1937 | { | 1670 | { |
1938 | "name": "Michael Dowling", | 1671 | "name": "Michael Dowling", |
1939 | "email": "mtdowling@gmail.com", | 1672 | "email": "mtdowling@gmail.com", |
1940 | "homepage": "https://github.com/mtdowling" | 1673 | "homepage": "https://github.com/mtdowling" |
1941 | }, | 1674 | }, |
1942 | { | 1675 | { |
1943 | "name": "George Mponos", | 1676 | "name": "George Mponos", |
1944 | "email": "gmponos@gmail.com", | 1677 | "email": "gmponos@gmail.com", |
1945 | "homepage": "https://github.com/gmponos" | 1678 | "homepage": "https://github.com/gmponos" |
1946 | }, | 1679 | }, |
1947 | { | 1680 | { |
1948 | "name": "Tobias Nyholm", | 1681 | "name": "Tobias Nyholm", |
1949 | "email": "tobias.nyholm@gmail.com", | 1682 | "email": "tobias.nyholm@gmail.com", |
1950 | "homepage": "https://github.com/Nyholm" | 1683 | "homepage": "https://github.com/Nyholm" |
1951 | }, | 1684 | }, |
1952 | { | 1685 | { |
1953 | "name": "Márk Sági-Kazár", | 1686 | "name": "Márk Sági-Kazár", |
1954 | "email": "mark.sagikazar@gmail.com", | 1687 | "email": "mark.sagikazar@gmail.com", |
1955 | "homepage": "https://github.com/sagikazarmark" | 1688 | "homepage": "https://github.com/sagikazarmark" |
1956 | }, | 1689 | }, |
1957 | { | 1690 | { |
1958 | "name": "Tobias Schultze", | 1691 | "name": "Tobias Schultze", |
1959 | "email": "webmaster@tubo-world.de", | 1692 | "email": "webmaster@tubo-world.de", |
1960 | "homepage": "https://github.com/Tobion" | 1693 | "homepage": "https://github.com/Tobion" |
1961 | }, | 1694 | }, |
1962 | { | 1695 | { |
1963 | "name": "Márk Sági-Kazár", | 1696 | "name": "Márk Sági-Kazár", |
1964 | "email": "mark.sagikazar@gmail.com", | 1697 | "email": "mark.sagikazar@gmail.com", |
1965 | "homepage": "https://sagikazarmark.hu" | 1698 | "homepage": "https://sagikazarmark.hu" |
1966 | } | 1699 | } |
1967 | ], | 1700 | ], |
1968 | "description": "PSR-7 message implementation that also provides common utility methods", | 1701 | "description": "PSR-7 message implementation that also provides common utility methods", |
1969 | "keywords": [ | 1702 | "keywords": [ |
1970 | "http", | 1703 | "http", |
1971 | "message", | 1704 | "message", |
1972 | "psr-7", | 1705 | "psr-7", |
1973 | "request", | 1706 | "request", |
1974 | "response", | 1707 | "response", |
1975 | "stream", | 1708 | "stream", |
1976 | "uri", | 1709 | "uri", |
1977 | "url" | 1710 | "url" |
1978 | ], | 1711 | ], |
1979 | "support": { | 1712 | "support": { |
1980 | "issues": "https://github.com/guzzle/psr7/issues", | 1713 | "issues": "https://github.com/guzzle/psr7/issues", |
1981 | "source": "https://github.com/guzzle/psr7/tree/2.5.0" | 1714 | "source": "https://github.com/guzzle/psr7/tree/2.5.0" |
1982 | }, | 1715 | }, |
1983 | "funding": [ | 1716 | "funding": [ |
1984 | { | 1717 | { |
1985 | "url": "https://github.com/GrahamCampbell", | 1718 | "url": "https://github.com/GrahamCampbell", |
1986 | "type": "github" | 1719 | "type": "github" |
1987 | }, | 1720 | }, |
1988 | { | 1721 | { |
1989 | "url": "https://github.com/Nyholm", | 1722 | "url": "https://github.com/Nyholm", |
1990 | "type": "github" | 1723 | "type": "github" |
1991 | }, | 1724 | }, |
1992 | { | 1725 | { |
1993 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", | 1726 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", |
1994 | "type": "tidelift" | 1727 | "type": "tidelift" |
1995 | } | 1728 | } |
1996 | ], | 1729 | ], |
1997 | "time": "2023-04-17T16:11:26+00:00" | 1730 | "time": "2023-04-17T16:11:26+00:00" |
1998 | }, | 1731 | }, |
1999 | { | 1732 | { |
2000 | "name": "guzzlehttp/uri-template", | 1733 | "name": "guzzlehttp/uri-template", |
2001 | "version": "v1.0.1", | 1734 | "version": "v1.0.1", |
2002 | "source": { | 1735 | "source": { |
2003 | "type": "git", | 1736 | "type": "git", |
2004 | "url": "https://github.com/guzzle/uri-template.git", | 1737 | "url": "https://github.com/guzzle/uri-template.git", |
2005 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" | 1738 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" |
2006 | }, | 1739 | }, |
2007 | "dist": { | 1740 | "dist": { |
2008 | "type": "zip", | 1741 | "type": "zip", |
2009 | "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", | 1742 | "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", |
2010 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", | 1743 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", |
2011 | "shasum": "" | 1744 | "shasum": "" |
2012 | }, | 1745 | }, |
2013 | "require": { | 1746 | "require": { |
2014 | "php": "^7.2.5 || ^8.0", | 1747 | "php": "^7.2.5 || ^8.0", |
2015 | "symfony/polyfill-php80": "^1.17" | 1748 | "symfony/polyfill-php80": "^1.17" |
2016 | }, | 1749 | }, |
2017 | "require-dev": { | 1750 | "require-dev": { |
2018 | "phpunit/phpunit": "^8.5.19 || ^9.5.8", | 1751 | "phpunit/phpunit": "^8.5.19 || ^9.5.8", |
2019 | "uri-template/tests": "1.0.0" | 1752 | "uri-template/tests": "1.0.0" |
2020 | }, | 1753 | }, |
2021 | "type": "library", | 1754 | "type": "library", |
2022 | "extra": { | 1755 | "extra": { |
2023 | "branch-alias": { | 1756 | "branch-alias": { |
2024 | "dev-master": "1.0-dev" | 1757 | "dev-master": "1.0-dev" |
2025 | } | 1758 | } |
2026 | }, | 1759 | }, |
2027 | "autoload": { | 1760 | "autoload": { |
2028 | "psr-4": { | 1761 | "psr-4": { |
2029 | "GuzzleHttp\\UriTemplate\\": "src" | 1762 | "GuzzleHttp\\UriTemplate\\": "src" |
2030 | } | 1763 | } |
2031 | }, | 1764 | }, |
2032 | "notification-url": "https://packagist.org/downloads/", | 1765 | "notification-url": "https://packagist.org/downloads/", |
2033 | "license": [ | 1766 | "license": [ |
2034 | "MIT" | 1767 | "MIT" |
2035 | ], | 1768 | ], |
2036 | "authors": [ | 1769 | "authors": [ |
2037 | { | 1770 | { |
2038 | "name": "Graham Campbell", | 1771 | "name": "Graham Campbell", |
2039 | "email": "hello@gjcampbell.co.uk", | 1772 | "email": "hello@gjcampbell.co.uk", |
2040 | "homepage": "https://github.com/GrahamCampbell" | 1773 | "homepage": "https://github.com/GrahamCampbell" |
2041 | }, | 1774 | }, |
2042 | { | 1775 | { |
2043 | "name": "Michael Dowling", | 1776 | "name": "Michael Dowling", |
2044 | "email": "mtdowling@gmail.com", | 1777 | "email": "mtdowling@gmail.com", |
2045 | "homepage": "https://github.com/mtdowling" | 1778 | "homepage": "https://github.com/mtdowling" |
2046 | }, | 1779 | }, |
2047 | { | 1780 | { |
2048 | "name": "George Mponos", | 1781 | "name": "George Mponos", |
2049 | "email": "gmponos@gmail.com", | 1782 | "email": "gmponos@gmail.com", |
2050 | "homepage": "https://github.com/gmponos" | 1783 | "homepage": "https://github.com/gmponos" |
2051 | }, | 1784 | }, |
2052 | { | 1785 | { |
2053 | "name": "Tobias Nyholm", | 1786 | "name": "Tobias Nyholm", |
2054 | "email": "tobias.nyholm@gmail.com", | 1787 | "email": "tobias.nyholm@gmail.com", |
2055 | "homepage": "https://github.com/Nyholm" | 1788 | "homepage": "https://github.com/Nyholm" |
2056 | } | 1789 | } |
2057 | ], | 1790 | ], |
2058 | "description": "A polyfill class for uri_template of PHP", | 1791 | "description": "A polyfill class for uri_template of PHP", |
2059 | "keywords": [ | 1792 | "keywords": [ |
2060 | "guzzlehttp", | 1793 | "guzzlehttp", |
2061 | "uri-template" | 1794 | "uri-template" |
2062 | ], | 1795 | ], |
2063 | "support": { | 1796 | "support": { |
2064 | "issues": "https://github.com/guzzle/uri-template/issues", | 1797 | "issues": "https://github.com/guzzle/uri-template/issues", |
2065 | "source": "https://github.com/guzzle/uri-template/tree/v1.0.1" | 1798 | "source": "https://github.com/guzzle/uri-template/tree/v1.0.1" |
2066 | }, | 1799 | }, |
2067 | "funding": [ | 1800 | "funding": [ |
2068 | { | 1801 | { |
2069 | "url": "https://github.com/GrahamCampbell", | 1802 | "url": "https://github.com/GrahamCampbell", |
2070 | "type": "github" | 1803 | "type": "github" |
2071 | }, | 1804 | }, |
2072 | { | 1805 | { |
2073 | "url": "https://github.com/Nyholm", | 1806 | "url": "https://github.com/Nyholm", |
2074 | "type": "github" | 1807 | "type": "github" |
2075 | }, | 1808 | }, |
2076 | { | 1809 | { |
2077 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", | 1810 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", |
2078 | "type": "tidelift" | 1811 | "type": "tidelift" |
2079 | } | 1812 | } |
2080 | ], | 1813 | ], |
2081 | "time": "2021-10-07T12:57:01+00:00" | 1814 | "time": "2021-10-07T12:57:01+00:00" |
2082 | }, | 1815 | }, |
2083 | { | 1816 | { |
2084 | "name": "irazasyed/telegram-bot-sdk", | 1817 | "name": "irazasyed/telegram-bot-sdk", |
2085 | "version": "v3.14.0", | 1818 | "version": "v3.14.0", |
2086 | "source": { | 1819 | "source": { |
2087 | "type": "git", | 1820 | "type": "git", |
2088 | "url": "https://github.com/irazasyed/telegram-bot-sdk.git", | 1821 | "url": "https://github.com/irazasyed/telegram-bot-sdk.git", |
2089 | "reference": "c72ef585556578105c4d5cc56324575ef3677fd2" | 1822 | "reference": "c72ef585556578105c4d5cc56324575ef3677fd2" |
2090 | }, | 1823 | }, |
2091 | "dist": { | 1824 | "dist": { |
2092 | "type": "zip", | 1825 | "type": "zip", |
2093 | "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/c72ef585556578105c4d5cc56324575ef3677fd2", | 1826 | "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/c72ef585556578105c4d5cc56324575ef3677fd2", |
2094 | "reference": "c72ef585556578105c4d5cc56324575ef3677fd2", | 1827 | "reference": "c72ef585556578105c4d5cc56324575ef3677fd2", |
2095 | "shasum": "" | 1828 | "shasum": "" |
2096 | }, | 1829 | }, |
2097 | "require": { | 1830 | "require": { |
2098 | "ext-json": "*", | 1831 | "ext-json": "*", |
2099 | "guzzlehttp/guzzle": "^7.5.1", | 1832 | "guzzlehttp/guzzle": "^7.5.1", |
2100 | "guzzlehttp/psr7": "^2.5", | 1833 | "guzzlehttp/psr7": "^2.5", |
2101 | "illuminate/support": "9 - 11", | 1834 | "illuminate/support": "9 - 11", |
2102 | "league/event": "^2.2 || ^3.0", | 1835 | "league/event": "^2.2 || ^3.0", |
2103 | "php": ">=8.0", | 1836 | "php": ">=8.0", |
2104 | "psr/container": "^1.1 || ^2.0", | 1837 | "psr/container": "^1.1 || ^2.0", |
2105 | "psr/event-dispatcher": "^1.0" | 1838 | "psr/event-dispatcher": "^1.0" |
2106 | }, | 1839 | }, |
2107 | "require-dev": { | 1840 | "require-dev": { |
2108 | "irazasyed/docgen": "^0.2", | 1841 | "irazasyed/docgen": "^0.2", |
2109 | "pestphp/pest": "^1.22 || ^2.0", | 1842 | "pestphp/pest": "^1.22 || ^2.0", |
2110 | "php-parallel-lint/php-parallel-lint": "^1.3", | 1843 | "php-parallel-lint/php-parallel-lint": "^1.3", |
2111 | "phpspec/prophecy": "^1.17", | 1844 | "phpspec/prophecy": "^1.17", |
2112 | "phpspec/prophecy-phpunit": "^2.0", | 1845 | "phpspec/prophecy-phpunit": "^2.0", |
2113 | "rector/rector": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^1.0.0" | 1846 | "rector/rector": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^1.0.0" |
2114 | }, | 1847 | }, |
2115 | "suggest": { | 1848 | "suggest": { |
2116 | "illuminate/container": "Hold dependencies to be injected in commands constructors", | 1849 | "illuminate/container": "Hold dependencies to be injected in commands constructors", |
2117 | "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!" | 1850 | "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!" |
2118 | }, | 1851 | }, |
2119 | "type": "library", | 1852 | "type": "library", |
2120 | "extra": { | 1853 | "extra": { |
2121 | "branch-alias": { | 1854 | "branch-alias": { |
2122 | "dev-master": "3.0-dev" | 1855 | "dev-master": "3.0-dev" |
2123 | }, | 1856 | }, |
2124 | "laravel": { | 1857 | "laravel": { |
2125 | "aliases": { | 1858 | "aliases": { |
2126 | "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram" | 1859 | "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram" |
2127 | }, | 1860 | }, |
2128 | "providers": [ | 1861 | "providers": [ |
2129 | "Telegram\\Bot\\Laravel\\TelegramServiceProvider" | 1862 | "Telegram\\Bot\\Laravel\\TelegramServiceProvider" |
2130 | ] | 1863 | ] |
2131 | } | 1864 | } |
2132 | }, | 1865 | }, |
2133 | "autoload": { | 1866 | "autoload": { |
2134 | "psr-4": { | 1867 | "psr-4": { |
2135 | "Telegram\\Bot\\": "src/" | 1868 | "Telegram\\Bot\\": "src/" |
2136 | } | 1869 | } |
2137 | }, | 1870 | }, |
2138 | "notification-url": "https://packagist.org/downloads/", | 1871 | "notification-url": "https://packagist.org/downloads/", |
2139 | "license": [ | 1872 | "license": [ |
2140 | "BSD-3-Clause" | 1873 | "BSD-3-Clause" |
2141 | ], | 1874 | ], |
2142 | "authors": [ | 1875 | "authors": [ |
2143 | { | 1876 | { |
2144 | "name": "Irfaq Syed", | 1877 | "name": "Irfaq Syed", |
2145 | "email": "github@lukonet.net", | 1878 | "email": "github@lukonet.net", |
2146 | "homepage": "https://github.com/irazasyed" | 1879 | "homepage": "https://github.com/irazasyed" |
2147 | } | 1880 | } |
2148 | ], | 1881 | ], |
2149 | "description": "The Unofficial Telegram Bot API PHP SDK", | 1882 | "description": "The Unofficial Telegram Bot API PHP SDK", |
2150 | "homepage": "https://github.com/irazasyed/telegram-bot-sdk", | 1883 | "homepage": "https://github.com/irazasyed/telegram-bot-sdk", |
2151 | "keywords": [ | 1884 | "keywords": [ |
2152 | "laravel", | 1885 | "laravel", |
2153 | "laravel telegram", | 1886 | "laravel telegram", |
2154 | "telegram", | 1887 | "telegram", |
2155 | "telegram bot", | 1888 | "telegram bot", |
2156 | "telegram bot api", | 1889 | "telegram bot api", |
2157 | "telegram php", | 1890 | "telegram php", |
2158 | "telegram sdk" | 1891 | "telegram sdk" |
2159 | ], | 1892 | ], |
2160 | "support": { | 1893 | "support": { |
2161 | "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues", | 1894 | "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues", |
2162 | "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.14.0" | 1895 | "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.14.0" |
2163 | }, | 1896 | }, |
2164 | "time": "2024-03-11T03:11:26+00:00" | 1897 | "time": "2024-03-11T03:11:26+00:00" |
2165 | }, | 1898 | }, |
2166 | { | 1899 | { |
2167 | "name": "laravel-lang/lang", | 1900 | "name": "laravel-lang/lang", |
2168 | "version": "12.17.1", | 1901 | "version": "12.17.1", |
2169 | "source": { | 1902 | "source": { |
2170 | "type": "git", | 1903 | "type": "git", |
2171 | "url": "https://github.com/Laravel-Lang/lang.git", | 1904 | "url": "https://github.com/Laravel-Lang/lang.git", |
2172 | "reference": "b07184103fb64131d514667b8fd1d74c71105409" | 1905 | "reference": "b07184103fb64131d514667b8fd1d74c71105409" |
2173 | }, | 1906 | }, |
2174 | "dist": { | 1907 | "dist": { |
2175 | "type": "zip", | 1908 | "type": "zip", |
2176 | "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/b07184103fb64131d514667b8fd1d74c71105409", | 1909 | "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/b07184103fb64131d514667b8fd1d74c71105409", |
2177 | "reference": "b07184103fb64131d514667b8fd1d74c71105409", | 1910 | "reference": "b07184103fb64131d514667b8fd1d74c71105409", |
2178 | "shasum": "" | 1911 | "shasum": "" |
2179 | }, | 1912 | }, |
2180 | "require": { | 1913 | "require": { |
2181 | "ext-json": "*" | 1914 | "ext-json": "*" |
2182 | }, | 1915 | }, |
2183 | "conflict": { | 1916 | "conflict": { |
2184 | "laravel-lang/publisher": "<14.0" | 1917 | "laravel-lang/publisher": "<14.0" |
2185 | }, | 1918 | }, |
2186 | "require-dev": { | 1919 | "require-dev": { |
2187 | "laravel-lang/publisher": "^14.0", | 1920 | "laravel-lang/publisher": "^14.0", |
2188 | "laravel-lang/status-generator": "^1.13", | 1921 | "laravel-lang/status-generator": "^1.13", |
2189 | "php": "^8.1", | 1922 | "php": "^8.1", |
2190 | "phpunit/phpunit": "^9.6", | 1923 | "phpunit/phpunit": "^9.6", |
2191 | "symfony/var-dumper": "^5.0 || ^6.0" | 1924 | "symfony/var-dumper": "^5.0 || ^6.0" |
2192 | }, | 1925 | }, |
2193 | "suggest": { | 1926 | "suggest": { |
2194 | "arcanedev/laravel-lang": "Translations manager and checker for Laravel", | 1927 | "arcanedev/laravel-lang": "Translations manager and checker for Laravel", |
2195 | "laravel-lang/attributes": "Translations for field names of the forms", | 1928 | "laravel-lang/attributes": "Translations for field names of the forms", |
2196 | "laravel-lang/http-statuses": "Translations for HTTP statuses", | 1929 | "laravel-lang/http-statuses": "Translations for HTTP statuses", |
2197 | "laravel-lang/publisher": "Easy installation and update of translation files for your project" | 1930 | "laravel-lang/publisher": "Easy installation and update of translation files for your project" |
2198 | }, | 1931 | }, |
2199 | "type": "library", | 1932 | "type": "library", |
2200 | "extra": { | 1933 | "extra": { |
2201 | "laravel": { | 1934 | "laravel": { |
2202 | "providers": [ | 1935 | "providers": [ |
2203 | "LaravelLang\\Lang\\ServiceProvider" | 1936 | "LaravelLang\\Lang\\ServiceProvider" |
2204 | ] | 1937 | ] |
2205 | } | 1938 | } |
2206 | }, | 1939 | }, |
2207 | "autoload": { | 1940 | "autoload": { |
2208 | "psr-4": { | 1941 | "psr-4": { |
2209 | "LaravelLang\\Lang\\": "src" | 1942 | "LaravelLang\\Lang\\": "src" |
2210 | } | 1943 | } |
2211 | }, | 1944 | }, |
2212 | "notification-url": "https://packagist.org/downloads/", | 1945 | "notification-url": "https://packagist.org/downloads/", |
2213 | "license": [ | 1946 | "license": [ |
2214 | "MIT" | 1947 | "MIT" |
2215 | ], | 1948 | ], |
2216 | "authors": [ | 1949 | "authors": [ |
2217 | { | 1950 | { |
2218 | "name": "Laravel-Lang Team", | 1951 | "name": "Laravel-Lang Team", |
2219 | "homepage": "https://github.com/Laravel-Lang" | 1952 | "homepage": "https://github.com/Laravel-Lang" |
2220 | } | 1953 | } |
2221 | ], | 1954 | ], |
2222 | "description": "Languages for Laravel", | 1955 | "description": "Languages for Laravel", |
2223 | "keywords": [ | 1956 | "keywords": [ |
2224 | "lang", | 1957 | "lang", |
2225 | "languages", | 1958 | "languages", |
2226 | "laravel", | 1959 | "laravel", |
2227 | "lpm" | 1960 | "lpm" |
2228 | ], | 1961 | ], |
2229 | "support": { | 1962 | "support": { |
2230 | "issues": "https://github.com/Laravel-Lang/lang/issues", | 1963 | "issues": "https://github.com/Laravel-Lang/lang/issues", |
2231 | "source": "https://github.com/Laravel-Lang/lang" | 1964 | "source": "https://github.com/Laravel-Lang/lang" |
2232 | }, | 1965 | }, |
2233 | "funding": [ | 1966 | "funding": [ |
2234 | { | 1967 | { |
2235 | "url": "https://opencollective.com/laravel-lang", | 1968 | "url": "https://opencollective.com/laravel-lang", |
2236 | "type": "open_collective" | 1969 | "type": "open_collective" |
2237 | } | 1970 | } |
2238 | ], | 1971 | ], |
2239 | "time": "2023-02-19T13:40:37+00:00" | 1972 | "time": "2023-02-19T13:40:37+00:00" |
2240 | }, | 1973 | }, |
2241 | { | 1974 | { |
2242 | "name": "laravel/framework", | 1975 | "name": "laravel/framework", |
2243 | "version": "v9.52.7", | 1976 | "version": "v9.52.7", |
2244 | "source": { | 1977 | "source": { |
2245 | "type": "git", | 1978 | "type": "git", |
2246 | "url": "https://github.com/laravel/framework.git", | 1979 | "url": "https://github.com/laravel/framework.git", |
2247 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677" | 1980 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677" |
2248 | }, | 1981 | }, |
2249 | "dist": { | 1982 | "dist": { |
2250 | "type": "zip", | 1983 | "type": "zip", |
2251 | "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677", | 1984 | "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677", |
2252 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677", | 1985 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677", |
2253 | "shasum": "" | 1986 | "shasum": "" |
2254 | }, | 1987 | }, |
2255 | "require": { | 1988 | "require": { |
2256 | "brick/math": "^0.9.3|^0.10.2|^0.11", | 1989 | "brick/math": "^0.9.3|^0.10.2|^0.11", |
2257 | "doctrine/inflector": "^2.0.5", | 1990 | "doctrine/inflector": "^2.0.5", |
2258 | "dragonmantank/cron-expression": "^3.3.2", | 1991 | "dragonmantank/cron-expression": "^3.3.2", |
2259 | "egulias/email-validator": "^3.2.1|^4.0", | 1992 | "egulias/email-validator": "^3.2.1|^4.0", |
2260 | "ext-ctype": "*", | 1993 | "ext-ctype": "*", |
2261 | "ext-filter": "*", | 1994 | "ext-filter": "*", |
2262 | "ext-hash": "*", | 1995 | "ext-hash": "*", |
2263 | "ext-mbstring": "*", | 1996 | "ext-mbstring": "*", |
2264 | "ext-openssl": "*", | 1997 | "ext-openssl": "*", |
2265 | "ext-session": "*", | 1998 | "ext-session": "*", |
2266 | "ext-tokenizer": "*", | 1999 | "ext-tokenizer": "*", |
2267 | "fruitcake/php-cors": "^1.2", | 2000 | "fruitcake/php-cors": "^1.2", |
2268 | "guzzlehttp/uri-template": "^1.0", | 2001 | "guzzlehttp/uri-template": "^1.0", |
2269 | "laravel/serializable-closure": "^1.2.2", | 2002 | "laravel/serializable-closure": "^1.2.2", |
2270 | "league/commonmark": "^2.2.1", | 2003 | "league/commonmark": "^2.2.1", |
2271 | "league/flysystem": "^3.8.0", | 2004 | "league/flysystem": "^3.8.0", |
2272 | "monolog/monolog": "^2.0", | 2005 | "monolog/monolog": "^2.0", |
2273 | "nesbot/carbon": "^2.62.1", | 2006 | "nesbot/carbon": "^2.62.1", |
2274 | "nunomaduro/termwind": "^1.13", | 2007 | "nunomaduro/termwind": "^1.13", |
2275 | "php": "^8.0.2", | 2008 | "php": "^8.0.2", |
2276 | "psr/container": "^1.1.1|^2.0.1", | 2009 | "psr/container": "^1.1.1|^2.0.1", |
2277 | "psr/log": "^1.0|^2.0|^3.0", | 2010 | "psr/log": "^1.0|^2.0|^3.0", |
2278 | "psr/simple-cache": "^1.0|^2.0|^3.0", | 2011 | "psr/simple-cache": "^1.0|^2.0|^3.0", |
2279 | "ramsey/uuid": "^4.7", | 2012 | "ramsey/uuid": "^4.7", |
2280 | "symfony/console": "^6.0.9", | 2013 | "symfony/console": "^6.0.9", |
2281 | "symfony/error-handler": "^6.0", | 2014 | "symfony/error-handler": "^6.0", |
2282 | "symfony/finder": "^6.0", | 2015 | "symfony/finder": "^6.0", |
2283 | "symfony/http-foundation": "^6.0", | 2016 | "symfony/http-foundation": "^6.0", |
2284 | "symfony/http-kernel": "^6.0", | 2017 | "symfony/http-kernel": "^6.0", |
2285 | "symfony/mailer": "^6.0", | 2018 | "symfony/mailer": "^6.0", |
2286 | "symfony/mime": "^6.0", | 2019 | "symfony/mime": "^6.0", |
2287 | "symfony/process": "^6.0", | 2020 | "symfony/process": "^6.0", |
2288 | "symfony/routing": "^6.0", | 2021 | "symfony/routing": "^6.0", |
2289 | "symfony/uid": "^6.0", | 2022 | "symfony/uid": "^6.0", |
2290 | "symfony/var-dumper": "^6.0", | 2023 | "symfony/var-dumper": "^6.0", |
2291 | "tijsverkoyen/css-to-inline-styles": "^2.2.5", | 2024 | "tijsverkoyen/css-to-inline-styles": "^2.2.5", |
2292 | "vlucas/phpdotenv": "^5.4.1", | 2025 | "vlucas/phpdotenv": "^5.4.1", |
2293 | "voku/portable-ascii": "^2.0" | 2026 | "voku/portable-ascii": "^2.0" |
2294 | }, | 2027 | }, |
2295 | "conflict": { | 2028 | "conflict": { |
2296 | "tightenco/collect": "<5.5.33" | 2029 | "tightenco/collect": "<5.5.33" |
2297 | }, | 2030 | }, |
2298 | "provide": { | 2031 | "provide": { |
2299 | "psr/container-implementation": "1.1|2.0", | 2032 | "psr/container-implementation": "1.1|2.0", |
2300 | "psr/simple-cache-implementation": "1.0|2.0|3.0" | 2033 | "psr/simple-cache-implementation": "1.0|2.0|3.0" |
2301 | }, | 2034 | }, |
2302 | "replace": { | 2035 | "replace": { |
2303 | "illuminate/auth": "self.version", | 2036 | "illuminate/auth": "self.version", |
2304 | "illuminate/broadcasting": "self.version", | 2037 | "illuminate/broadcasting": "self.version", |
2305 | "illuminate/bus": "self.version", | 2038 | "illuminate/bus": "self.version", |
2306 | "illuminate/cache": "self.version", | 2039 | "illuminate/cache": "self.version", |
2307 | "illuminate/collections": "self.version", | 2040 | "illuminate/collections": "self.version", |
2308 | "illuminate/conditionable": "self.version", | 2041 | "illuminate/conditionable": "self.version", |
2309 | "illuminate/config": "self.version", | 2042 | "illuminate/config": "self.version", |
2310 | "illuminate/console": "self.version", | 2043 | "illuminate/console": "self.version", |
2311 | "illuminate/container": "self.version", | 2044 | "illuminate/container": "self.version", |
2312 | "illuminate/contracts": "self.version", | 2045 | "illuminate/contracts": "self.version", |
2313 | "illuminate/cookie": "self.version", | 2046 | "illuminate/cookie": "self.version", |
2314 | "illuminate/database": "self.version", | 2047 | "illuminate/database": "self.version", |
2315 | "illuminate/encryption": "self.version", | 2048 | "illuminate/encryption": "self.version", |
2316 | "illuminate/events": "self.version", | 2049 | "illuminate/events": "self.version", |
2317 | "illuminate/filesystem": "self.version", | 2050 | "illuminate/filesystem": "self.version", |
2318 | "illuminate/hashing": "self.version", | 2051 | "illuminate/hashing": "self.version", |
2319 | "illuminate/http": "self.version", | 2052 | "illuminate/http": "self.version", |
2320 | "illuminate/log": "self.version", | 2053 | "illuminate/log": "self.version", |
2321 | "illuminate/macroable": "self.version", | 2054 | "illuminate/macroable": "self.version", |
2322 | "illuminate/mail": "self.version", | 2055 | "illuminate/mail": "self.version", |
2323 | "illuminate/notifications": "self.version", | 2056 | "illuminate/notifications": "self.version", |
2324 | "illuminate/pagination": "self.version", | 2057 | "illuminate/pagination": "self.version", |
2325 | "illuminate/pipeline": "self.version", | 2058 | "illuminate/pipeline": "self.version", |
2326 | "illuminate/queue": "self.version", | 2059 | "illuminate/queue": "self.version", |
2327 | "illuminate/redis": "self.version", | 2060 | "illuminate/redis": "self.version", |
2328 | "illuminate/routing": "self.version", | 2061 | "illuminate/routing": "self.version", |
2329 | "illuminate/session": "self.version", | 2062 | "illuminate/session": "self.version", |
2330 | "illuminate/support": "self.version", | 2063 | "illuminate/support": "self.version", |
2331 | "illuminate/testing": "self.version", | 2064 | "illuminate/testing": "self.version", |
2332 | "illuminate/translation": "self.version", | 2065 | "illuminate/translation": "self.version", |
2333 | "illuminate/validation": "self.version", | 2066 | "illuminate/validation": "self.version", |
2334 | "illuminate/view": "self.version" | 2067 | "illuminate/view": "self.version" |
2335 | }, | 2068 | }, |
2336 | "require-dev": { | 2069 | "require-dev": { |
2337 | "ably/ably-php": "^1.0", | 2070 | "ably/ably-php": "^1.0", |
2338 | "aws/aws-sdk-php": "^3.235.5", | 2071 | "aws/aws-sdk-php": "^3.235.5", |
2339 | "doctrine/dbal": "^2.13.3|^3.1.4", | 2072 | "doctrine/dbal": "^2.13.3|^3.1.4", |
2340 | "ext-gmp": "*", | 2073 | "ext-gmp": "*", |
2341 | "fakerphp/faker": "^1.21", | 2074 | "fakerphp/faker": "^1.21", |
2342 | "guzzlehttp/guzzle": "^7.5", | 2075 | "guzzlehttp/guzzle": "^7.5", |
2343 | "league/flysystem-aws-s3-v3": "^3.0", | 2076 | "league/flysystem-aws-s3-v3": "^3.0", |
2344 | "league/flysystem-ftp": "^3.0", | 2077 | "league/flysystem-ftp": "^3.0", |
2345 | "league/flysystem-path-prefixing": "^3.3", | 2078 | "league/flysystem-path-prefixing": "^3.3", |
2346 | "league/flysystem-read-only": "^3.3", | 2079 | "league/flysystem-read-only": "^3.3", |
2347 | "league/flysystem-sftp-v3": "^3.0", | 2080 | "league/flysystem-sftp-v3": "^3.0", |
2348 | "mockery/mockery": "^1.5.1", | 2081 | "mockery/mockery": "^1.5.1", |
2349 | "orchestra/testbench-core": "^7.24", | 2082 | "orchestra/testbench-core": "^7.24", |
2350 | "pda/pheanstalk": "^4.0", | 2083 | "pda/pheanstalk": "^4.0", |
2351 | "phpstan/phpdoc-parser": "^1.15", | 2084 | "phpstan/phpdoc-parser": "^1.15", |
2352 | "phpstan/phpstan": "^1.4.7", | 2085 | "phpstan/phpstan": "^1.4.7", |
2353 | "phpunit/phpunit": "^9.5.8", | 2086 | "phpunit/phpunit": "^9.5.8", |
2354 | "predis/predis": "^1.1.9|^2.0.2", | 2087 | "predis/predis": "^1.1.9|^2.0.2", |
2355 | "symfony/cache": "^6.0", | 2088 | "symfony/cache": "^6.0", |
2356 | "symfony/http-client": "^6.0" | 2089 | "symfony/http-client": "^6.0" |
2357 | }, | 2090 | }, |
2358 | "suggest": { | 2091 | "suggest": { |
2359 | "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", | 2092 | "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", |
2360 | "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", | 2093 | "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", |
2361 | "brianium/paratest": "Required to run tests in parallel (^6.0).", | 2094 | "brianium/paratest": "Required to run tests in parallel (^6.0).", |
2362 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", | 2095 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", |
2363 | "ext-apcu": "Required to use the APC cache driver.", | 2096 | "ext-apcu": "Required to use the APC cache driver.", |
2364 | "ext-fileinfo": "Required to use the Filesystem class.", | 2097 | "ext-fileinfo": "Required to use the Filesystem class.", |
2365 | "ext-ftp": "Required to use the Flysystem FTP driver.", | 2098 | "ext-ftp": "Required to use the Flysystem FTP driver.", |
2366 | "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", | 2099 | "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", |
2367 | "ext-memcached": "Required to use the memcache cache driver.", | 2100 | "ext-memcached": "Required to use the memcache cache driver.", |
2368 | "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", | 2101 | "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", |
2369 | "ext-pdo": "Required to use all database features.", | 2102 | "ext-pdo": "Required to use all database features.", |
2370 | "ext-posix": "Required to use all features of the queue worker.", | 2103 | "ext-posix": "Required to use all features of the queue worker.", |
2371 | "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", | 2104 | "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", |
2372 | "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", | 2105 | "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", |
2373 | "filp/whoops": "Required for friendly error pages in development (^2.14.3).", | 2106 | "filp/whoops": "Required for friendly error pages in development (^2.14.3).", |
2374 | "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", | 2107 | "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", |
2375 | "laravel/tinker": "Required to use the tinker console command (^2.0).", | 2108 | "laravel/tinker": "Required to use the tinker console command (^2.0).", |
2376 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", | 2109 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", |
2377 | "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", | 2110 | "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", |
2378 | "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", | 2111 | "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", |
2379 | "league/flysystem-read-only": "Required to use read-only disks (^3.3)", | 2112 | "league/flysystem-read-only": "Required to use read-only disks (^3.3)", |
2380 | "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", | 2113 | "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", |
2381 | "mockery/mockery": "Required to use mocking (^1.5.1).", | 2114 | "mockery/mockery": "Required to use mocking (^1.5.1).", |
2382 | "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", | 2115 | "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", |
2383 | "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", | 2116 | "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", |
2384 | "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).", | 2117 | "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).", |
2385 | "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).", | 2118 | "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).", |
2386 | "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", | 2119 | "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", |
2387 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", | 2120 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", |
2388 | "symfony/cache": "Required to PSR-6 cache bridge (^6.0).", | 2121 | "symfony/cache": "Required to PSR-6 cache bridge (^6.0).", |
2389 | "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).", | 2122 | "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).", |
2390 | "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).", | 2123 | "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).", |
2391 | "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).", | 2124 | "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).", |
2392 | "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).", | 2125 | "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).", |
2393 | "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." | 2126 | "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." |
2394 | }, | 2127 | }, |
2395 | "type": "library", | 2128 | "type": "library", |
2396 | "extra": { | 2129 | "extra": { |
2397 | "branch-alias": { | 2130 | "branch-alias": { |
2398 | "dev-master": "9.x-dev" | 2131 | "dev-master": "9.x-dev" |
2399 | } | 2132 | } |
2400 | }, | 2133 | }, |
2401 | "autoload": { | 2134 | "autoload": { |
2402 | "files": [ | 2135 | "files": [ |
2403 | "src/Illuminate/Collections/helpers.php", | 2136 | "src/Illuminate/Collections/helpers.php", |
2404 | "src/Illuminate/Events/functions.php", | 2137 | "src/Illuminate/Events/functions.php", |
2405 | "src/Illuminate/Foundation/helpers.php", | 2138 | "src/Illuminate/Foundation/helpers.php", |
2406 | "src/Illuminate/Support/helpers.php" | 2139 | "src/Illuminate/Support/helpers.php" |
2407 | ], | 2140 | ], |
2408 | "psr-4": { | 2141 | "psr-4": { |
2409 | "Illuminate\\": "src/Illuminate/", | 2142 | "Illuminate\\": "src/Illuminate/", |
2410 | "Illuminate\\Support\\": [ | 2143 | "Illuminate\\Support\\": [ |
2411 | "src/Illuminate/Macroable/", | 2144 | "src/Illuminate/Macroable/", |
2412 | "src/Illuminate/Collections/", | 2145 | "src/Illuminate/Collections/", |
2413 | "src/Illuminate/Conditionable/" | 2146 | "src/Illuminate/Conditionable/" |
2414 | ] | 2147 | ] |
2415 | } | 2148 | } |
2416 | }, | 2149 | }, |
2417 | "notification-url": "https://packagist.org/downloads/", | 2150 | "notification-url": "https://packagist.org/downloads/", |
2418 | "license": [ | 2151 | "license": [ |
2419 | "MIT" | 2152 | "MIT" |
2420 | ], | 2153 | ], |
2421 | "authors": [ | 2154 | "authors": [ |
2422 | { | 2155 | { |
2423 | "name": "Taylor Otwell", | 2156 | "name": "Taylor Otwell", |
2424 | "email": "taylor@laravel.com" | 2157 | "email": "taylor@laravel.com" |
2425 | } | 2158 | } |
2426 | ], | 2159 | ], |
2427 | "description": "The Laravel Framework.", | 2160 | "description": "The Laravel Framework.", |
2428 | "homepage": "https://laravel.com", | 2161 | "homepage": "https://laravel.com", |
2429 | "keywords": [ | 2162 | "keywords": [ |
2430 | "framework", | 2163 | "framework", |
2431 | "laravel" | 2164 | "laravel" |
2432 | ], | 2165 | ], |
2433 | "support": { | 2166 | "support": { |
2434 | "issues": "https://github.com/laravel/framework/issues", | 2167 | "issues": "https://github.com/laravel/framework/issues", |
2435 | "source": "https://github.com/laravel/framework" | 2168 | "source": "https://github.com/laravel/framework" |
2436 | }, | 2169 | }, |
2437 | "time": "2023-04-25T13:44:05+00:00" | 2170 | "time": "2023-04-25T13:44:05+00:00" |
2438 | }, | 2171 | }, |
2439 | { | 2172 | { |
2440 | "name": "laravel/sanctum", | 2173 | "name": "laravel/sanctum", |
2441 | "version": "v3.2.5", | 2174 | "version": "v3.2.5", |
2442 | "source": { | 2175 | "source": { |
2443 | "type": "git", | 2176 | "type": "git", |
2444 | "url": "https://github.com/laravel/sanctum.git", | 2177 | "url": "https://github.com/laravel/sanctum.git", |
2445 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876" | 2178 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876" |
2446 | }, | 2179 | }, |
2447 | "dist": { | 2180 | "dist": { |
2448 | "type": "zip", | 2181 | "type": "zip", |
2449 | "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876", | 2182 | "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876", |
2450 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876", | 2183 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876", |
2451 | "shasum": "" | 2184 | "shasum": "" |
2452 | }, | 2185 | }, |
2453 | "require": { | 2186 | "require": { |
2454 | "ext-json": "*", | 2187 | "ext-json": "*", |
2455 | "illuminate/console": "^9.21|^10.0", | 2188 | "illuminate/console": "^9.21|^10.0", |
2456 | "illuminate/contracts": "^9.21|^10.0", | 2189 | "illuminate/contracts": "^9.21|^10.0", |
2457 | "illuminate/database": "^9.21|^10.0", | 2190 | "illuminate/database": "^9.21|^10.0", |
2458 | "illuminate/support": "^9.21|^10.0", | 2191 | "illuminate/support": "^9.21|^10.0", |
2459 | "php": "^8.0.2" | 2192 | "php": "^8.0.2" |
2460 | }, | 2193 | }, |
2461 | "require-dev": { | 2194 | "require-dev": { |
2462 | "mockery/mockery": "^1.0", | 2195 | "mockery/mockery": "^1.0", |
2463 | "orchestra/testbench": "^7.0|^8.0", | 2196 | "orchestra/testbench": "^7.0|^8.0", |
2464 | "phpstan/phpstan": "^1.10", | 2197 | "phpstan/phpstan": "^1.10", |
2465 | "phpunit/phpunit": "^9.3" | 2198 | "phpunit/phpunit": "^9.3" |
2466 | }, | 2199 | }, |
2467 | "type": "library", | 2200 | "type": "library", |
2468 | "extra": { | 2201 | "extra": { |
2469 | "branch-alias": { | 2202 | "branch-alias": { |
2470 | "dev-master": "3.x-dev" | 2203 | "dev-master": "3.x-dev" |
2471 | }, | 2204 | }, |
2472 | "laravel": { | 2205 | "laravel": { |
2473 | "providers": [ | 2206 | "providers": [ |
2474 | "Laravel\\Sanctum\\SanctumServiceProvider" | 2207 | "Laravel\\Sanctum\\SanctumServiceProvider" |
2475 | ] | 2208 | ] |
2476 | } | 2209 | } |
2477 | }, | 2210 | }, |
2478 | "autoload": { | 2211 | "autoload": { |
2479 | "psr-4": { | 2212 | "psr-4": { |
2480 | "Laravel\\Sanctum\\": "src/" | 2213 | "Laravel\\Sanctum\\": "src/" |
2481 | } | 2214 | } |
2482 | }, | 2215 | }, |
2483 | "notification-url": "https://packagist.org/downloads/", | 2216 | "notification-url": "https://packagist.org/downloads/", |
2484 | "license": [ | 2217 | "license": [ |
2485 | "MIT" | 2218 | "MIT" |
2486 | ], | 2219 | ], |
2487 | "authors": [ | 2220 | "authors": [ |
2488 | { | 2221 | { |
2489 | "name": "Taylor Otwell", | 2222 | "name": "Taylor Otwell", |
2490 | "email": "taylor@laravel.com" | 2223 | "email": "taylor@laravel.com" |
2491 | } | 2224 | } |
2492 | ], | 2225 | ], |
2493 | "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", | 2226 | "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", |
2494 | "keywords": [ | 2227 | "keywords": [ |
2495 | "auth", | 2228 | "auth", |
2496 | "laravel", | 2229 | "laravel", |
2497 | "sanctum" | 2230 | "sanctum" |
2498 | ], | 2231 | ], |
2499 | "support": { | 2232 | "support": { |
2500 | "issues": "https://github.com/laravel/sanctum/issues", | 2233 | "issues": "https://github.com/laravel/sanctum/issues", |
2501 | "source": "https://github.com/laravel/sanctum" | 2234 | "source": "https://github.com/laravel/sanctum" |
2502 | }, | 2235 | }, |
2503 | "time": "2023-05-01T19:39:51+00:00" | 2236 | "time": "2023-05-01T19:39:51+00:00" |
2504 | }, | 2237 | }, |
2505 | { | 2238 | { |
2506 | "name": "laravel/serializable-closure", | 2239 | "name": "laravel/serializable-closure", |
2507 | "version": "v1.3.0", | 2240 | "version": "v1.3.0", |
2508 | "source": { | 2241 | "source": { |
2509 | "type": "git", | 2242 | "type": "git", |
2510 | "url": "https://github.com/laravel/serializable-closure.git", | 2243 | "url": "https://github.com/laravel/serializable-closure.git", |
2511 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37" | 2244 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37" |
2512 | }, | 2245 | }, |
2513 | "dist": { | 2246 | "dist": { |
2514 | "type": "zip", | 2247 | "type": "zip", |
2515 | "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", | 2248 | "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", |
2516 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", | 2249 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", |
2517 | "shasum": "" | 2250 | "shasum": "" |
2518 | }, | 2251 | }, |
2519 | "require": { | 2252 | "require": { |
2520 | "php": "^7.3|^8.0" | 2253 | "php": "^7.3|^8.0" |
2521 | }, | 2254 | }, |
2522 | "require-dev": { | 2255 | "require-dev": { |
2523 | "nesbot/carbon": "^2.61", | 2256 | "nesbot/carbon": "^2.61", |
2524 | "pestphp/pest": "^1.21.3", | 2257 | "pestphp/pest": "^1.21.3", |
2525 | "phpstan/phpstan": "^1.8.2", | 2258 | "phpstan/phpstan": "^1.8.2", |
2526 | "symfony/var-dumper": "^5.4.11" | 2259 | "symfony/var-dumper": "^5.4.11" |
2527 | }, | 2260 | }, |
2528 | "type": "library", | 2261 | "type": "library", |
2529 | "extra": { | 2262 | "extra": { |
2530 | "branch-alias": { | 2263 | "branch-alias": { |
2531 | "dev-master": "1.x-dev" | 2264 | "dev-master": "1.x-dev" |
2532 | } | 2265 | } |
2533 | }, | 2266 | }, |
2534 | "autoload": { | 2267 | "autoload": { |
2535 | "psr-4": { | 2268 | "psr-4": { |
2536 | "Laravel\\SerializableClosure\\": "src/" | 2269 | "Laravel\\SerializableClosure\\": "src/" |
2537 | } | 2270 | } |
2538 | }, | 2271 | }, |
2539 | "notification-url": "https://packagist.org/downloads/", | 2272 | "notification-url": "https://packagist.org/downloads/", |
2540 | "license": [ | 2273 | "license": [ |
2541 | "MIT" | 2274 | "MIT" |
2542 | ], | 2275 | ], |
2543 | "authors": [ | 2276 | "authors": [ |
2544 | { | 2277 | { |
2545 | "name": "Taylor Otwell", | 2278 | "name": "Taylor Otwell", |
2546 | "email": "taylor@laravel.com" | 2279 | "email": "taylor@laravel.com" |
2547 | }, | 2280 | }, |
2548 | { | 2281 | { |
2549 | "name": "Nuno Maduro", | 2282 | "name": "Nuno Maduro", |
2550 | "email": "nuno@laravel.com" | 2283 | "email": "nuno@laravel.com" |
2551 | } | 2284 | } |
2552 | ], | 2285 | ], |
2553 | "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", | 2286 | "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", |
2554 | "keywords": [ | 2287 | "keywords": [ |
2555 | "closure", | 2288 | "closure", |
2556 | "laravel", | 2289 | "laravel", |
2557 | "serializable" | 2290 | "serializable" |
2558 | ], | 2291 | ], |
2559 | "support": { | 2292 | "support": { |
2560 | "issues": "https://github.com/laravel/serializable-closure/issues", | 2293 | "issues": "https://github.com/laravel/serializable-closure/issues", |
2561 | "source": "https://github.com/laravel/serializable-closure" | 2294 | "source": "https://github.com/laravel/serializable-closure" |
2562 | }, | 2295 | }, |
2563 | "time": "2023-01-30T18:31:20+00:00" | 2296 | "time": "2023-01-30T18:31:20+00:00" |
2564 | }, | 2297 | }, |
2565 | { | 2298 | { |
2566 | "name": "laravel/tinker", | 2299 | "name": "laravel/tinker", |
2567 | "version": "v2.8.1", | 2300 | "version": "v2.8.1", |
2568 | "source": { | 2301 | "source": { |
2569 | "type": "git", | 2302 | "type": "git", |
2570 | "url": "https://github.com/laravel/tinker.git", | 2303 | "url": "https://github.com/laravel/tinker.git", |
2571 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" | 2304 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" |
2572 | }, | 2305 | }, |
2573 | "dist": { | 2306 | "dist": { |
2574 | "type": "zip", | 2307 | "type": "zip", |
2575 | "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", | 2308 | "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", |
2576 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", | 2309 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", |
2577 | "shasum": "" | 2310 | "shasum": "" |
2578 | }, | 2311 | }, |
2579 | "require": { | 2312 | "require": { |
2580 | "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", | 2313 | "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", |
2581 | "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", | 2314 | "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", |
2582 | "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", | 2315 | "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", |
2583 | "php": "^7.2.5|^8.0", | 2316 | "php": "^7.2.5|^8.0", |
2584 | "psy/psysh": "^0.10.4|^0.11.1", | 2317 | "psy/psysh": "^0.10.4|^0.11.1", |
2585 | "symfony/var-dumper": "^4.3.4|^5.0|^6.0" | 2318 | "symfony/var-dumper": "^4.3.4|^5.0|^6.0" |
2586 | }, | 2319 | }, |
2587 | "require-dev": { | 2320 | "require-dev": { |
2588 | "mockery/mockery": "~1.3.3|^1.4.2", | 2321 | "mockery/mockery": "~1.3.3|^1.4.2", |
2589 | "phpunit/phpunit": "^8.5.8|^9.3.3" | 2322 | "phpunit/phpunit": "^8.5.8|^9.3.3" |
2590 | }, | 2323 | }, |
2591 | "suggest": { | 2324 | "suggest": { |
2592 | "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." | 2325 | "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." |
2593 | }, | 2326 | }, |
2594 | "type": "library", | 2327 | "type": "library", |
2595 | "extra": { | 2328 | "extra": { |
2596 | "branch-alias": { | 2329 | "branch-alias": { |
2597 | "dev-master": "2.x-dev" | 2330 | "dev-master": "2.x-dev" |
2598 | }, | 2331 | }, |
2599 | "laravel": { | 2332 | "laravel": { |
2600 | "providers": [ | 2333 | "providers": [ |
2601 | "Laravel\\Tinker\\TinkerServiceProvider" | 2334 | "Laravel\\Tinker\\TinkerServiceProvider" |
2602 | ] | 2335 | ] |
2603 | } | 2336 | } |
2604 | }, | 2337 | }, |
2605 | "autoload": { | 2338 | "autoload": { |
2606 | "psr-4": { | 2339 | "psr-4": { |
2607 | "Laravel\\Tinker\\": "src/" | 2340 | "Laravel\\Tinker\\": "src/" |
2608 | } | 2341 | } |
2609 | }, | 2342 | }, |
2610 | "notification-url": "https://packagist.org/downloads/", | 2343 | "notification-url": "https://packagist.org/downloads/", |
2611 | "license": [ | 2344 | "license": [ |
2612 | "MIT" | 2345 | "MIT" |
2613 | ], | 2346 | ], |
2614 | "authors": [ | 2347 | "authors": [ |
2615 | { | 2348 | { |
2616 | "name": "Taylor Otwell", | 2349 | "name": "Taylor Otwell", |
2617 | "email": "taylor@laravel.com" | 2350 | "email": "taylor@laravel.com" |
2618 | } | 2351 | } |
2619 | ], | 2352 | ], |
2620 | "description": "Powerful REPL for the Laravel framework.", | 2353 | "description": "Powerful REPL for the Laravel framework.", |
2621 | "keywords": [ | 2354 | "keywords": [ |
2622 | "REPL", | 2355 | "REPL", |
2623 | "Tinker", | 2356 | "Tinker", |
2624 | "laravel", | 2357 | "laravel", |
2625 | "psysh" | 2358 | "psysh" |
2626 | ], | 2359 | ], |
2627 | "support": { | 2360 | "support": { |
2628 | "issues": "https://github.com/laravel/tinker/issues", | 2361 | "issues": "https://github.com/laravel/tinker/issues", |
2629 | "source": "https://github.com/laravel/tinker/tree/v2.8.1" | 2362 | "source": "https://github.com/laravel/tinker/tree/v2.8.1" |
2630 | }, | 2363 | }, |
2631 | "time": "2023-02-15T16:40:09+00:00" | 2364 | "time": "2023-02-15T16:40:09+00:00" |
2632 | }, | 2365 | }, |
2633 | { | 2366 | { |
2634 | "name": "laravel/ui", | 2367 | "name": "laravel/ui", |
2635 | "version": "v4.2.1", | 2368 | "version": "v4.2.1", |
2636 | "source": { | 2369 | "source": { |
2637 | "type": "git", | 2370 | "type": "git", |
2638 | "url": "https://github.com/laravel/ui.git", | 2371 | "url": "https://github.com/laravel/ui.git", |
2639 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907" | 2372 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907" |
2640 | }, | 2373 | }, |
2641 | "dist": { | 2374 | "dist": { |
2642 | "type": "zip", | 2375 | "type": "zip", |
2643 | "url": "https://api.github.com/repos/laravel/ui/zipball/05ff7ac1eb55e2dfd10edcfb18c953684d693907", | 2376 | "url": "https://api.github.com/repos/laravel/ui/zipball/05ff7ac1eb55e2dfd10edcfb18c953684d693907", |
2644 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907", | 2377 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907", |
2645 | "shasum": "" | 2378 | "shasum": "" |
2646 | }, | 2379 | }, |
2647 | "require": { | 2380 | "require": { |
2648 | "illuminate/console": "^9.21|^10.0", | 2381 | "illuminate/console": "^9.21|^10.0", |
2649 | "illuminate/filesystem": "^9.21|^10.0", | 2382 | "illuminate/filesystem": "^9.21|^10.0", |
2650 | "illuminate/support": "^9.21|^10.0", | 2383 | "illuminate/support": "^9.21|^10.0", |
2651 | "illuminate/validation": "^9.21|^10.0", | 2384 | "illuminate/validation": "^9.21|^10.0", |
2652 | "php": "^8.0" | 2385 | "php": "^8.0" |
2653 | }, | 2386 | }, |
2654 | "require-dev": { | 2387 | "require-dev": { |
2655 | "orchestra/testbench": "^7.0|^8.0", | 2388 | "orchestra/testbench": "^7.0|^8.0", |
2656 | "phpunit/phpunit": "^9.3" | 2389 | "phpunit/phpunit": "^9.3" |
2657 | }, | 2390 | }, |
2658 | "type": "library", | 2391 | "type": "library", |
2659 | "extra": { | 2392 | "extra": { |
2660 | "branch-alias": { | 2393 | "branch-alias": { |
2661 | "dev-master": "4.x-dev" | 2394 | "dev-master": "4.x-dev" |
2662 | }, | 2395 | }, |
2663 | "laravel": { | 2396 | "laravel": { |
2664 | "providers": [ | 2397 | "providers": [ |
2665 | "Laravel\\Ui\\UiServiceProvider" | 2398 | "Laravel\\Ui\\UiServiceProvider" |
2666 | ] | 2399 | ] |
2667 | } | 2400 | } |
2668 | }, | 2401 | }, |
2669 | "autoload": { | 2402 | "autoload": { |
2670 | "psr-4": { | 2403 | "psr-4": { |
2671 | "Laravel\\Ui\\": "src/", | 2404 | "Laravel\\Ui\\": "src/", |
2672 | "Illuminate\\Foundation\\Auth\\": "auth-backend/" | 2405 | "Illuminate\\Foundation\\Auth\\": "auth-backend/" |
2673 | } | 2406 | } |
2674 | }, | 2407 | }, |
2675 | "notification-url": "https://packagist.org/downloads/", | 2408 | "notification-url": "https://packagist.org/downloads/", |
2676 | "license": [ | 2409 | "license": [ |
2677 | "MIT" | 2410 | "MIT" |
2678 | ], | 2411 | ], |
2679 | "authors": [ | 2412 | "authors": [ |
2680 | { | 2413 | { |
2681 | "name": "Taylor Otwell", | 2414 | "name": "Taylor Otwell", |
2682 | "email": "taylor@laravel.com" | 2415 | "email": "taylor@laravel.com" |
2683 | } | 2416 | } |
2684 | ], | 2417 | ], |
2685 | "description": "Laravel UI utilities and presets.", | 2418 | "description": "Laravel UI utilities and presets.", |
2686 | "keywords": [ | 2419 | "keywords": [ |
2687 | "laravel", | 2420 | "laravel", |
2688 | "ui" | 2421 | "ui" |
2689 | ], | 2422 | ], |
2690 | "support": { | 2423 | "support": { |
2691 | "source": "https://github.com/laravel/ui/tree/v4.2.1" | 2424 | "source": "https://github.com/laravel/ui/tree/v4.2.1" |
2692 | }, | 2425 | }, |
2693 | "time": "2023-02-17T09:17:24+00:00" | 2426 | "time": "2023-02-17T09:17:24+00:00" |
2694 | }, | 2427 | }, |
2695 | { | 2428 | { |
2696 | "name": "league/commonmark", | 2429 | "name": "league/commonmark", |
2697 | "version": "2.4.0", | 2430 | "version": "2.4.0", |
2698 | "source": { | 2431 | "source": { |
2699 | "type": "git", | 2432 | "type": "git", |
2700 | "url": "https://github.com/thephpleague/commonmark.git", | 2433 | "url": "https://github.com/thephpleague/commonmark.git", |
2701 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" | 2434 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" |
2702 | }, | 2435 | }, |
2703 | "dist": { | 2436 | "dist": { |
2704 | "type": "zip", | 2437 | "type": "zip", |
2705 | "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", | 2438 | "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", |
2706 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", | 2439 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", |
2707 | "shasum": "" | 2440 | "shasum": "" |
2708 | }, | 2441 | }, |
2709 | "require": { | 2442 | "require": { |
2710 | "ext-mbstring": "*", | 2443 | "ext-mbstring": "*", |
2711 | "league/config": "^1.1.1", | 2444 | "league/config": "^1.1.1", |
2712 | "php": "^7.4 || ^8.0", | 2445 | "php": "^7.4 || ^8.0", |
2713 | "psr/event-dispatcher": "^1.0", | 2446 | "psr/event-dispatcher": "^1.0", |
2714 | "symfony/deprecation-contracts": "^2.1 || ^3.0", | 2447 | "symfony/deprecation-contracts": "^2.1 || ^3.0", |
2715 | "symfony/polyfill-php80": "^1.16" | 2448 | "symfony/polyfill-php80": "^1.16" |
2716 | }, | 2449 | }, |
2717 | "require-dev": { | 2450 | "require-dev": { |
2718 | "cebe/markdown": "^1.0", | 2451 | "cebe/markdown": "^1.0", |
2719 | "commonmark/cmark": "0.30.0", | 2452 | "commonmark/cmark": "0.30.0", |
2720 | "commonmark/commonmark.js": "0.30.0", | 2453 | "commonmark/commonmark.js": "0.30.0", |
2721 | "composer/package-versions-deprecated": "^1.8", | 2454 | "composer/package-versions-deprecated": "^1.8", |
2722 | "embed/embed": "^4.4", | 2455 | "embed/embed": "^4.4", |
2723 | "erusev/parsedown": "^1.0", | 2456 | "erusev/parsedown": "^1.0", |
2724 | "ext-json": "*", | 2457 | "ext-json": "*", |
2725 | "github/gfm": "0.29.0", | 2458 | "github/gfm": "0.29.0", |
2726 | "michelf/php-markdown": "^1.4 || ^2.0", | 2459 | "michelf/php-markdown": "^1.4 || ^2.0", |
2727 | "nyholm/psr7": "^1.5", | 2460 | "nyholm/psr7": "^1.5", |
2728 | "phpstan/phpstan": "^1.8.2", | 2461 | "phpstan/phpstan": "^1.8.2", |
2729 | "phpunit/phpunit": "^9.5.21", | 2462 | "phpunit/phpunit": "^9.5.21", |
2730 | "scrutinizer/ocular": "^1.8.1", | 2463 | "scrutinizer/ocular": "^1.8.1", |
2731 | "symfony/finder": "^5.3 | ^6.0", | 2464 | "symfony/finder": "^5.3 | ^6.0", |
2732 | "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", | 2465 | "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", |
2733 | "unleashedtech/php-coding-standard": "^3.1.1", | 2466 | "unleashedtech/php-coding-standard": "^3.1.1", |
2734 | "vimeo/psalm": "^4.24.0 || ^5.0.0" | 2467 | "vimeo/psalm": "^4.24.0 || ^5.0.0" |
2735 | }, | 2468 | }, |
2736 | "suggest": { | 2469 | "suggest": { |
2737 | "symfony/yaml": "v2.3+ required if using the Front Matter extension" | 2470 | "symfony/yaml": "v2.3+ required if using the Front Matter extension" |
2738 | }, | 2471 | }, |
2739 | "type": "library", | 2472 | "type": "library", |
2740 | "extra": { | 2473 | "extra": { |
2741 | "branch-alias": { | 2474 | "branch-alias": { |
2742 | "dev-main": "2.5-dev" | 2475 | "dev-main": "2.5-dev" |
2743 | } | 2476 | } |
2744 | }, | 2477 | }, |
2745 | "autoload": { | 2478 | "autoload": { |
2746 | "psr-4": { | 2479 | "psr-4": { |
2747 | "League\\CommonMark\\": "src" | 2480 | "League\\CommonMark\\": "src" |
2748 | } | 2481 | } |
2749 | }, | 2482 | }, |
2750 | "notification-url": "https://packagist.org/downloads/", | 2483 | "notification-url": "https://packagist.org/downloads/", |
2751 | "license": [ | 2484 | "license": [ |
2752 | "BSD-3-Clause" | 2485 | "BSD-3-Clause" |
2753 | ], | 2486 | ], |
2754 | "authors": [ | 2487 | "authors": [ |
2755 | { | 2488 | { |
2756 | "name": "Colin O'Dell", | 2489 | "name": "Colin O'Dell", |
2757 | "email": "colinodell@gmail.com", | 2490 | "email": "colinodell@gmail.com", |
2758 | "homepage": "https://www.colinodell.com", | 2491 | "homepage": "https://www.colinodell.com", |
2759 | "role": "Lead Developer" | 2492 | "role": "Lead Developer" |
2760 | } | 2493 | } |
2761 | ], | 2494 | ], |
2762 | "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", | 2495 | "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", |
2763 | "homepage": "https://commonmark.thephpleague.com", | 2496 | "homepage": "https://commonmark.thephpleague.com", |
2764 | "keywords": [ | 2497 | "keywords": [ |
2765 | "commonmark", | 2498 | "commonmark", |
2766 | "flavored", | 2499 | "flavored", |
2767 | "gfm", | 2500 | "gfm", |
2768 | "github", | 2501 | "github", |
2769 | "github-flavored", | 2502 | "github-flavored", |
2770 | "markdown", | 2503 | "markdown", |
2771 | "md", | 2504 | "md", |
2772 | "parser" | 2505 | "parser" |
2773 | ], | 2506 | ], |
2774 | "support": { | 2507 | "support": { |
2775 | "docs": "https://commonmark.thephpleague.com/", | 2508 | "docs": "https://commonmark.thephpleague.com/", |
2776 | "forum": "https://github.com/thephpleague/commonmark/discussions", | 2509 | "forum": "https://github.com/thephpleague/commonmark/discussions", |
2777 | "issues": "https://github.com/thephpleague/commonmark/issues", | 2510 | "issues": "https://github.com/thephpleague/commonmark/issues", |
2778 | "rss": "https://github.com/thephpleague/commonmark/releases.atom", | 2511 | "rss": "https://github.com/thephpleague/commonmark/releases.atom", |
2779 | "source": "https://github.com/thephpleague/commonmark" | 2512 | "source": "https://github.com/thephpleague/commonmark" |
2780 | }, | 2513 | }, |
2781 | "funding": [ | 2514 | "funding": [ |
2782 | { | 2515 | { |
2783 | "url": "https://www.colinodell.com/sponsor", | 2516 | "url": "https://www.colinodell.com/sponsor", |
2784 | "type": "custom" | 2517 | "type": "custom" |
2785 | }, | 2518 | }, |
2786 | { | 2519 | { |
2787 | "url": "https://www.paypal.me/colinpodell/10.00", | 2520 | "url": "https://www.paypal.me/colinpodell/10.00", |
2788 | "type": "custom" | 2521 | "type": "custom" |
2789 | }, | 2522 | }, |
2790 | { | 2523 | { |
2791 | "url": "https://github.com/colinodell", | 2524 | "url": "https://github.com/colinodell", |
2792 | "type": "github" | 2525 | "type": "github" |
2793 | }, | 2526 | }, |
2794 | { | 2527 | { |
2795 | "url": "https://tidelift.com/funding/github/packagist/league/commonmark", | 2528 | "url": "https://tidelift.com/funding/github/packagist/league/commonmark", |
2796 | "type": "tidelift" | 2529 | "type": "tidelift" |
2797 | } | 2530 | } |
2798 | ], | 2531 | ], |
2799 | "time": "2023-03-24T15:16:10+00:00" | 2532 | "time": "2023-03-24T15:16:10+00:00" |
2800 | }, | 2533 | }, |
2801 | { | 2534 | { |
2802 | "name": "league/config", | 2535 | "name": "league/config", |
2803 | "version": "v1.2.0", | 2536 | "version": "v1.2.0", |
2804 | "source": { | 2537 | "source": { |
2805 | "type": "git", | 2538 | "type": "git", |
2806 | "url": "https://github.com/thephpleague/config.git", | 2539 | "url": "https://github.com/thephpleague/config.git", |
2807 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" | 2540 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" |
2808 | }, | 2541 | }, |
2809 | "dist": { | 2542 | "dist": { |
2810 | "type": "zip", | 2543 | "type": "zip", |
2811 | "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", | 2544 | "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", |
2812 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", | 2545 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", |
2813 | "shasum": "" | 2546 | "shasum": "" |
2814 | }, | 2547 | }, |
2815 | "require": { | 2548 | "require": { |
2816 | "dflydev/dot-access-data": "^3.0.1", | 2549 | "dflydev/dot-access-data": "^3.0.1", |
2817 | "nette/schema": "^1.2", | 2550 | "nette/schema": "^1.2", |
2818 | "php": "^7.4 || ^8.0" | 2551 | "php": "^7.4 || ^8.0" |
2819 | }, | 2552 | }, |
2820 | "require-dev": { | 2553 | "require-dev": { |
2821 | "phpstan/phpstan": "^1.8.2", | 2554 | "phpstan/phpstan": "^1.8.2", |
2822 | "phpunit/phpunit": "^9.5.5", | 2555 | "phpunit/phpunit": "^9.5.5", |
2823 | "scrutinizer/ocular": "^1.8.1", | 2556 | "scrutinizer/ocular": "^1.8.1", |
2824 | "unleashedtech/php-coding-standard": "^3.1", | 2557 | "unleashedtech/php-coding-standard": "^3.1", |
2825 | "vimeo/psalm": "^4.7.3" | 2558 | "vimeo/psalm": "^4.7.3" |
2826 | }, | 2559 | }, |
2827 | "type": "library", | 2560 | "type": "library", |
2828 | "extra": { | 2561 | "extra": { |
2829 | "branch-alias": { | 2562 | "branch-alias": { |
2830 | "dev-main": "1.2-dev" | 2563 | "dev-main": "1.2-dev" |
2831 | } | 2564 | } |
2832 | }, | 2565 | }, |
2833 | "autoload": { | 2566 | "autoload": { |
2834 | "psr-4": { | 2567 | "psr-4": { |
2835 | "League\\Config\\": "src" | 2568 | "League\\Config\\": "src" |
2836 | } | 2569 | } |
2837 | }, | 2570 | }, |
2838 | "notification-url": "https://packagist.org/downloads/", | 2571 | "notification-url": "https://packagist.org/downloads/", |
2839 | "license": [ | 2572 | "license": [ |
2840 | "BSD-3-Clause" | 2573 | "BSD-3-Clause" |
2841 | ], | 2574 | ], |
2842 | "authors": [ | 2575 | "authors": [ |
2843 | { | 2576 | { |
2844 | "name": "Colin O'Dell", | 2577 | "name": "Colin O'Dell", |
2845 | "email": "colinodell@gmail.com", | 2578 | "email": "colinodell@gmail.com", |
2846 | "homepage": "https://www.colinodell.com", | 2579 | "homepage": "https://www.colinodell.com", |
2847 | "role": "Lead Developer" | 2580 | "role": "Lead Developer" |
2848 | } | 2581 | } |
2849 | ], | 2582 | ], |
2850 | "description": "Define configuration arrays with strict schemas and access values with dot notation", | 2583 | "description": "Define configuration arrays with strict schemas and access values with dot notation", |
2851 | "homepage": "https://config.thephpleague.com", | 2584 | "homepage": "https://config.thephpleague.com", |
2852 | "keywords": [ | 2585 | "keywords": [ |
2853 | "array", | 2586 | "array", |
2854 | "config", | 2587 | "config", |
2855 | "configuration", | 2588 | "configuration", |
2856 | "dot", | 2589 | "dot", |
2857 | "dot-access", | 2590 | "dot-access", |
2858 | "nested", | 2591 | "nested", |
2859 | "schema" | 2592 | "schema" |
2860 | ], | 2593 | ], |
2861 | "support": { | 2594 | "support": { |
2862 | "docs": "https://config.thephpleague.com/", | 2595 | "docs": "https://config.thephpleague.com/", |
2863 | "issues": "https://github.com/thephpleague/config/issues", | 2596 | "issues": "https://github.com/thephpleague/config/issues", |
2864 | "rss": "https://github.com/thephpleague/config/releases.atom", | 2597 | "rss": "https://github.com/thephpleague/config/releases.atom", |
2865 | "source": "https://github.com/thephpleague/config" | 2598 | "source": "https://github.com/thephpleague/config" |
2866 | }, | 2599 | }, |
2867 | "funding": [ | 2600 | "funding": [ |
2868 | { | 2601 | { |
2869 | "url": "https://www.colinodell.com/sponsor", | 2602 | "url": "https://www.colinodell.com/sponsor", |
2870 | "type": "custom" | 2603 | "type": "custom" |
2871 | }, | 2604 | }, |
2872 | { | 2605 | { |
2873 | "url": "https://www.paypal.me/colinpodell/10.00", | 2606 | "url": "https://www.paypal.me/colinpodell/10.00", |
2874 | "type": "custom" | 2607 | "type": "custom" |
2875 | }, | 2608 | }, |
2876 | { | 2609 | { |
2877 | "url": "https://github.com/colinodell", | 2610 | "url": "https://github.com/colinodell", |
2878 | "type": "github" | 2611 | "type": "github" |
2879 | } | 2612 | } |
2880 | ], | 2613 | ], |
2881 | "time": "2022-12-11T20:36:23+00:00" | 2614 | "time": "2022-12-11T20:36:23+00:00" |
2882 | }, | 2615 | }, |
2883 | { | 2616 | { |
2884 | "name": "league/event", | 2617 | "name": "league/event", |
2885 | "version": "3.0.3", | 2618 | "version": "3.0.3", |
2886 | "source": { | 2619 | "source": { |
2887 | "type": "git", | 2620 | "type": "git", |
2888 | "url": "https://github.com/thephpleague/event.git", | 2621 | "url": "https://github.com/thephpleague/event.git", |
2889 | "reference": "ec38ff7ea10cad7d99a79ac937fbcffb9334c210" | 2622 | "reference": "ec38ff7ea10cad7d99a79ac937fbcffb9334c210" |
2890 | }, | 2623 | }, |
2891 | "dist": { | 2624 | "dist": { |
2892 | "type": "zip", | 2625 | "type": "zip", |
2893 | "url": "https://api.github.com/repos/thephpleague/event/zipball/ec38ff7ea10cad7d99a79ac937fbcffb9334c210", | 2626 | "url": "https://api.github.com/repos/thephpleague/event/zipball/ec38ff7ea10cad7d99a79ac937fbcffb9334c210", |
2894 | "reference": "ec38ff7ea10cad7d99a79ac937fbcffb9334c210", | 2627 | "reference": "ec38ff7ea10cad7d99a79ac937fbcffb9334c210", |
2895 | "shasum": "" | 2628 | "shasum": "" |
2896 | }, | 2629 | }, |
2897 | "require": { | 2630 | "require": { |
2898 | "php": ">=7.2.0", | 2631 | "php": ">=7.2.0", |
2899 | "psr/event-dispatcher": "^1.0" | 2632 | "psr/event-dispatcher": "^1.0" |
2900 | }, | 2633 | }, |
2901 | "provide": { | 2634 | "provide": { |
2902 | "psr/event-dispatcher-implementation": "1.0" | 2635 | "psr/event-dispatcher-implementation": "1.0" |
2903 | }, | 2636 | }, |
2904 | "require-dev": { | 2637 | "require-dev": { |
2905 | "friendsofphp/php-cs-fixer": "^2.16", | 2638 | "friendsofphp/php-cs-fixer": "^2.16", |
2906 | "phpstan/phpstan": "^0.12.45", | 2639 | "phpstan/phpstan": "^0.12.45", |
2907 | "phpunit/phpunit": "^8.5" | 2640 | "phpunit/phpunit": "^8.5" |
2908 | }, | 2641 | }, |
2909 | "type": "library", | 2642 | "type": "library", |
2910 | "extra": { | 2643 | "extra": { |
2911 | "branch-alias": { | 2644 | "branch-alias": { |
2912 | "dev-master": "3.0-dev" | 2645 | "dev-master": "3.0-dev" |
2913 | } | 2646 | } |
2914 | }, | 2647 | }, |
2915 | "autoload": { | 2648 | "autoload": { |
2916 | "psr-4": { | 2649 | "psr-4": { |
2917 | "League\\Event\\": "src/" | 2650 | "League\\Event\\": "src/" |
2918 | } | 2651 | } |
2919 | }, | 2652 | }, |
2920 | "notification-url": "https://packagist.org/downloads/", | 2653 | "notification-url": "https://packagist.org/downloads/", |
2921 | "license": [ | 2654 | "license": [ |
2922 | "MIT" | 2655 | "MIT" |
2923 | ], | 2656 | ], |
2924 | "authors": [ | 2657 | "authors": [ |
2925 | { | 2658 | { |
2926 | "name": "Frank de Jonge", | 2659 | "name": "Frank de Jonge", |
2927 | "email": "info@frenky.net" | 2660 | "email": "info@frenky.net" |
2928 | } | 2661 | } |
2929 | ], | 2662 | ], |
2930 | "description": "Event package", | 2663 | "description": "Event package", |
2931 | "keywords": [ | 2664 | "keywords": [ |
2932 | "emitter", | 2665 | "emitter", |
2933 | "event", | 2666 | "event", |
2934 | "listener" | 2667 | "listener" |
2935 | ], | 2668 | ], |
2936 | "support": { | 2669 | "support": { |
2937 | "issues": "https://github.com/thephpleague/event/issues", | 2670 | "issues": "https://github.com/thephpleague/event/issues", |
2938 | "source": "https://github.com/thephpleague/event/tree/3.0.3" | 2671 | "source": "https://github.com/thephpleague/event/tree/3.0.3" |
2939 | }, | 2672 | }, |
2940 | "time": "2024-09-04T16:06:53+00:00" | 2673 | "time": "2024-09-04T16:06:53+00:00" |
2941 | }, | 2674 | }, |
2942 | { | 2675 | { |
2943 | "name": "league/flysystem", | 2676 | "name": "league/flysystem", |
2944 | "version": "3.15.1", | 2677 | "version": "3.15.1", |
2945 | "source": { | 2678 | "source": { |
2946 | "type": "git", | 2679 | "type": "git", |
2947 | "url": "https://github.com/thephpleague/flysystem.git", | 2680 | "url": "https://github.com/thephpleague/flysystem.git", |
2948 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed" | 2681 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed" |
2949 | }, | 2682 | }, |
2950 | "dist": { | 2683 | "dist": { |
2951 | "type": "zip", | 2684 | "type": "zip", |
2952 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed", | 2685 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed", |
2953 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed", | 2686 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed", |
2954 | "shasum": "" | 2687 | "shasum": "" |
2955 | }, | 2688 | }, |
2956 | "require": { | 2689 | "require": { |
2957 | "league/flysystem-local": "^3.0.0", | 2690 | "league/flysystem-local": "^3.0.0", |
2958 | "league/mime-type-detection": "^1.0.0", | 2691 | "league/mime-type-detection": "^1.0.0", |
2959 | "php": "^8.0.2" | 2692 | "php": "^8.0.2" |
2960 | }, | 2693 | }, |
2961 | "conflict": { | 2694 | "conflict": { |
2962 | "aws/aws-sdk-php": "3.209.31 || 3.210.0", | 2695 | "aws/aws-sdk-php": "3.209.31 || 3.210.0", |
2963 | "guzzlehttp/guzzle": "<7.0", | 2696 | "guzzlehttp/guzzle": "<7.0", |
2964 | "guzzlehttp/ringphp": "<1.1.1", | 2697 | "guzzlehttp/ringphp": "<1.1.1", |
2965 | "phpseclib/phpseclib": "3.0.15", | 2698 | "phpseclib/phpseclib": "3.0.15", |
2966 | "symfony/http-client": "<5.2" | 2699 | "symfony/http-client": "<5.2" |
2967 | }, | 2700 | }, |
2968 | "require-dev": { | 2701 | "require-dev": { |
2969 | "async-aws/s3": "^1.5", | 2702 | "async-aws/s3": "^1.5", |
2970 | "async-aws/simple-s3": "^1.1", | 2703 | "async-aws/simple-s3": "^1.1", |
2971 | "aws/aws-sdk-php": "^3.220.0", | 2704 | "aws/aws-sdk-php": "^3.220.0", |
2972 | "composer/semver": "^3.0", | 2705 | "composer/semver": "^3.0", |
2973 | "ext-fileinfo": "*", | 2706 | "ext-fileinfo": "*", |
2974 | "ext-ftp": "*", | 2707 | "ext-ftp": "*", |
2975 | "ext-zip": "*", | 2708 | "ext-zip": "*", |
2976 | "friendsofphp/php-cs-fixer": "^3.5", | 2709 | "friendsofphp/php-cs-fixer": "^3.5", |
2977 | "google/cloud-storage": "^1.23", | 2710 | "google/cloud-storage": "^1.23", |
2978 | "microsoft/azure-storage-blob": "^1.1", | 2711 | "microsoft/azure-storage-blob": "^1.1", |
2979 | "phpseclib/phpseclib": "^3.0.14", | 2712 | "phpseclib/phpseclib": "^3.0.14", |
2980 | "phpstan/phpstan": "^0.12.26", | 2713 | "phpstan/phpstan": "^0.12.26", |
2981 | "phpunit/phpunit": "^9.5.11", | 2714 | "phpunit/phpunit": "^9.5.11", |
2982 | "sabre/dav": "^4.3.1" | 2715 | "sabre/dav": "^4.3.1" |
2983 | }, | 2716 | }, |
2984 | "type": "library", | 2717 | "type": "library", |
2985 | "autoload": { | 2718 | "autoload": { |
2986 | "psr-4": { | 2719 | "psr-4": { |
2987 | "League\\Flysystem\\": "src" | 2720 | "League\\Flysystem\\": "src" |
2988 | } | 2721 | } |
2989 | }, | 2722 | }, |
2990 | "notification-url": "https://packagist.org/downloads/", | 2723 | "notification-url": "https://packagist.org/downloads/", |
2991 | "license": [ | 2724 | "license": [ |
2992 | "MIT" | 2725 | "MIT" |
2993 | ], | 2726 | ], |
2994 | "authors": [ | 2727 | "authors": [ |
2995 | { | 2728 | { |
2996 | "name": "Frank de Jonge", | 2729 | "name": "Frank de Jonge", |
2997 | "email": "info@frankdejonge.nl" | 2730 | "email": "info@frankdejonge.nl" |
2998 | } | 2731 | } |
2999 | ], | 2732 | ], |
3000 | "description": "File storage abstraction for PHP", | 2733 | "description": "File storage abstraction for PHP", |
3001 | "keywords": [ | 2734 | "keywords": [ |
3002 | "WebDAV", | 2735 | "WebDAV", |
3003 | "aws", | 2736 | "aws", |
3004 | "cloud", | 2737 | "cloud", |
3005 | "file", | 2738 | "file", |
3006 | "files", | 2739 | "files", |
3007 | "filesystem", | 2740 | "filesystem", |
3008 | "filesystems", | 2741 | "filesystems", |
3009 | "ftp", | 2742 | "ftp", |
3010 | "s3", | 2743 | "s3", |
3011 | "sftp", | 2744 | "sftp", |
3012 | "storage" | 2745 | "storage" |
3013 | ], | 2746 | ], |
3014 | "support": { | 2747 | "support": { |
3015 | "issues": "https://github.com/thephpleague/flysystem/issues", | 2748 | "issues": "https://github.com/thephpleague/flysystem/issues", |
3016 | "source": "https://github.com/thephpleague/flysystem/tree/3.15.1" | 2749 | "source": "https://github.com/thephpleague/flysystem/tree/3.15.1" |
3017 | }, | 2750 | }, |
3018 | "funding": [ | 2751 | "funding": [ |
3019 | { | 2752 | { |
3020 | "url": "https://ecologi.com/frankdejonge", | 2753 | "url": "https://ecologi.com/frankdejonge", |
3021 | "type": "custom" | 2754 | "type": "custom" |
3022 | }, | 2755 | }, |
3023 | { | 2756 | { |
3024 | "url": "https://github.com/frankdejonge", | 2757 | "url": "https://github.com/frankdejonge", |
3025 | "type": "github" | 2758 | "type": "github" |
3026 | } | 2759 | } |
3027 | ], | 2760 | ], |
3028 | "time": "2023-05-04T09:04:26+00:00" | 2761 | "time": "2023-05-04T09:04:26+00:00" |
3029 | }, | 2762 | }, |
3030 | { | 2763 | { |
3031 | "name": "league/flysystem-local", | 2764 | "name": "league/flysystem-local", |
3032 | "version": "3.15.0", | 2765 | "version": "3.15.0", |
3033 | "source": { | 2766 | "source": { |
3034 | "type": "git", | 2767 | "type": "git", |
3035 | "url": "https://github.com/thephpleague/flysystem-local.git", | 2768 | "url": "https://github.com/thephpleague/flysystem-local.git", |
3036 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3" | 2769 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3" |
3037 | }, | 2770 | }, |
3038 | "dist": { | 2771 | "dist": { |
3039 | "type": "zip", | 2772 | "type": "zip", |
3040 | "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3", | 2773 | "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3", |
3041 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3", | 2774 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3", |
3042 | "shasum": "" | 2775 | "shasum": "" |
3043 | }, | 2776 | }, |
3044 | "require": { | 2777 | "require": { |
3045 | "ext-fileinfo": "*", | 2778 | "ext-fileinfo": "*", |
3046 | "league/flysystem": "^3.0.0", | 2779 | "league/flysystem": "^3.0.0", |
3047 | "league/mime-type-detection": "^1.0.0", | 2780 | "league/mime-type-detection": "^1.0.0", |
3048 | "php": "^8.0.2" | 2781 | "php": "^8.0.2" |
3049 | }, | 2782 | }, |
3050 | "type": "library", | 2783 | "type": "library", |
3051 | "autoload": { | 2784 | "autoload": { |
3052 | "psr-4": { | 2785 | "psr-4": { |
3053 | "League\\Flysystem\\Local\\": "" | 2786 | "League\\Flysystem\\Local\\": "" |
3054 | } | 2787 | } |
3055 | }, | 2788 | }, |
3056 | "notification-url": "https://packagist.org/downloads/", | 2789 | "notification-url": "https://packagist.org/downloads/", |
3057 | "license": [ | 2790 | "license": [ |
3058 | "MIT" | 2791 | "MIT" |
3059 | ], | 2792 | ], |
3060 | "authors": [ | 2793 | "authors": [ |
3061 | { | 2794 | { |
3062 | "name": "Frank de Jonge", | 2795 | "name": "Frank de Jonge", |
3063 | "email": "info@frankdejonge.nl" | 2796 | "email": "info@frankdejonge.nl" |
3064 | } | 2797 | } |
3065 | ], | 2798 | ], |
3066 | "description": "Local filesystem adapter for Flysystem.", | 2799 | "description": "Local filesystem adapter for Flysystem.", |
3067 | "keywords": [ | 2800 | "keywords": [ |
3068 | "Flysystem", | 2801 | "Flysystem", |
3069 | "file", | 2802 | "file", |
3070 | "files", | 2803 | "files", |
3071 | "filesystem", | 2804 | "filesystem", |
3072 | "local" | 2805 | "local" |
3073 | ], | 2806 | ], |
3074 | "support": { | 2807 | "support": { |
3075 | "issues": "https://github.com/thephpleague/flysystem-local/issues", | 2808 | "issues": "https://github.com/thephpleague/flysystem-local/issues", |
3076 | "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0" | 2809 | "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0" |
3077 | }, | 2810 | }, |
3078 | "funding": [ | 2811 | "funding": [ |
3079 | { | 2812 | { |
3080 | "url": "https://ecologi.com/frankdejonge", | 2813 | "url": "https://ecologi.com/frankdejonge", |
3081 | "type": "custom" | 2814 | "type": "custom" |
3082 | }, | 2815 | }, |
3083 | { | 2816 | { |
3084 | "url": "https://github.com/frankdejonge", | 2817 | "url": "https://github.com/frankdejonge", |
3085 | "type": "github" | 2818 | "type": "github" |
3086 | } | 2819 | } |
3087 | ], | 2820 | ], |
3088 | "time": "2023-05-02T20:02:14+00:00" | 2821 | "time": "2023-05-02T20:02:14+00:00" |
3089 | }, | 2822 | }, |
3090 | { | 2823 | { |
3091 | "name": "league/mime-type-detection", | 2824 | "name": "league/mime-type-detection", |
3092 | "version": "1.11.0", | 2825 | "version": "1.11.0", |
3093 | "source": { | 2826 | "source": { |
3094 | "type": "git", | 2827 | "type": "git", |
3095 | "url": "https://github.com/thephpleague/mime-type-detection.git", | 2828 | "url": "https://github.com/thephpleague/mime-type-detection.git", |
3096 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" | 2829 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" |
3097 | }, | 2830 | }, |
3098 | "dist": { | 2831 | "dist": { |
3099 | "type": "zip", | 2832 | "type": "zip", |
3100 | "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", | 2833 | "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", |
3101 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", | 2834 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", |
3102 | "shasum": "" | 2835 | "shasum": "" |
3103 | }, | 2836 | }, |
3104 | "require": { | 2837 | "require": { |
3105 | "ext-fileinfo": "*", | 2838 | "ext-fileinfo": "*", |
3106 | "php": "^7.2 || ^8.0" | 2839 | "php": "^7.2 || ^8.0" |
3107 | }, | 2840 | }, |
3108 | "require-dev": { | 2841 | "require-dev": { |
3109 | "friendsofphp/php-cs-fixer": "^3.2", | 2842 | "friendsofphp/php-cs-fixer": "^3.2", |
3110 | "phpstan/phpstan": "^0.12.68", | 2843 | "phpstan/phpstan": "^0.12.68", |
3111 | "phpunit/phpunit": "^8.5.8 || ^9.3" | 2844 | "phpunit/phpunit": "^8.5.8 || ^9.3" |
3112 | }, | 2845 | }, |
3113 | "type": "library", | 2846 | "type": "library", |
3114 | "autoload": { | 2847 | "autoload": { |
3115 | "psr-4": { | 2848 | "psr-4": { |
3116 | "League\\MimeTypeDetection\\": "src" | 2849 | "League\\MimeTypeDetection\\": "src" |
3117 | } | 2850 | } |
3118 | }, | 2851 | }, |
3119 | "notification-url": "https://packagist.org/downloads/", | 2852 | "notification-url": "https://packagist.org/downloads/", |
3120 | "license": [ | 2853 | "license": [ |
3121 | "MIT" | 2854 | "MIT" |
3122 | ], | 2855 | ], |
3123 | "authors": [ | 2856 | "authors": [ |
3124 | { | 2857 | { |
3125 | "name": "Frank de Jonge", | 2858 | "name": "Frank de Jonge", |
3126 | "email": "info@frankdejonge.nl" | 2859 | "email": "info@frankdejonge.nl" |
3127 | } | 2860 | } |
3128 | ], | 2861 | ], |
3129 | "description": "Mime-type detection for Flysystem", | 2862 | "description": "Mime-type detection for Flysystem", |
3130 | "support": { | 2863 | "support": { |
3131 | "issues": "https://github.com/thephpleague/mime-type-detection/issues", | 2864 | "issues": "https://github.com/thephpleague/mime-type-detection/issues", |
3132 | "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" | 2865 | "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" |
3133 | }, | 2866 | }, |
3134 | "funding": [ | 2867 | "funding": [ |
3135 | { | 2868 | { |
3136 | "url": "https://github.com/frankdejonge", | 2869 | "url": "https://github.com/frankdejonge", |
3137 | "type": "github" | 2870 | "type": "github" |
3138 | }, | 2871 | }, |
3139 | { | 2872 | { |
3140 | "url": "https://tidelift.com/funding/github/packagist/league/flysystem", | 2873 | "url": "https://tidelift.com/funding/github/packagist/league/flysystem", |
3141 | "type": "tidelift" | 2874 | "type": "tidelift" |
3142 | } | 2875 | } |
3143 | ], | 2876 | ], |
3144 | "time": "2022-04-17T13:12:02+00:00" | 2877 | "time": "2022-04-17T13:12:02+00:00" |
3145 | }, | 2878 | }, |
3146 | { | 2879 | { |
3147 | "name": "league/uri-parser", | 2880 | "name": "league/uri-parser", |
3148 | "version": "1.4.1", | 2881 | "version": "1.4.1", |
3149 | "source": { | 2882 | "source": { |
3150 | "type": "git", | 2883 | "type": "git", |
3151 | "url": "https://github.com/thephpleague/uri-parser.git", | 2884 | "url": "https://github.com/thephpleague/uri-parser.git", |
3152 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00" | 2885 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00" |
3153 | }, | 2886 | }, |
3154 | "dist": { | 2887 | "dist": { |
3155 | "type": "zip", | 2888 | "type": "zip", |
3156 | "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00", | 2889 | "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00", |
3157 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00", | 2890 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00", |
3158 | "shasum": "" | 2891 | "shasum": "" |
3159 | }, | 2892 | }, |
3160 | "require": { | 2893 | "require": { |
3161 | "php": ">=7.0.0" | 2894 | "php": ">=7.0.0" |
3162 | }, | 2895 | }, |
3163 | "require-dev": { | 2896 | "require-dev": { |
3164 | "friendsofphp/php-cs-fixer": "^2.0", | 2897 | "friendsofphp/php-cs-fixer": "^2.0", |
3165 | "phpstan/phpstan": "^0.9.2", | 2898 | "phpstan/phpstan": "^0.9.2", |
3166 | "phpstan/phpstan-phpunit": "^0.9.4", | 2899 | "phpstan/phpstan-phpunit": "^0.9.4", |
3167 | "phpstan/phpstan-strict-rules": "^0.9.0", | 2900 | "phpstan/phpstan-strict-rules": "^0.9.0", |
3168 | "phpunit/phpunit": "^6.0" | 2901 | "phpunit/phpunit": "^6.0" |
3169 | }, | 2902 | }, |
3170 | "suggest": { | 2903 | "suggest": { |
3171 | "ext-intl": "Allow parsing RFC3987 compliant hosts", | 2904 | "ext-intl": "Allow parsing RFC3987 compliant hosts", |
3172 | "league/uri-schemes": "Allow validating and normalizing URI parsing results" | 2905 | "league/uri-schemes": "Allow validating and normalizing URI parsing results" |
3173 | }, | 2906 | }, |
3174 | "type": "library", | 2907 | "type": "library", |
3175 | "extra": { | 2908 | "extra": { |
3176 | "branch-alias": { | 2909 | "branch-alias": { |
3177 | "dev-master": "1.x-dev" | 2910 | "dev-master": "1.x-dev" |
3178 | } | 2911 | } |
3179 | }, | 2912 | }, |
3180 | "autoload": { | 2913 | "autoload": { |
3181 | "files": [ | 2914 | "files": [ |
3182 | "src/functions_include.php" | 2915 | "src/functions_include.php" |
3183 | ], | 2916 | ], |
3184 | "psr-4": { | 2917 | "psr-4": { |
3185 | "League\\Uri\\": "src" | 2918 | "League\\Uri\\": "src" |
3186 | } | 2919 | } |
3187 | }, | 2920 | }, |
3188 | "notification-url": "https://packagist.org/downloads/", | 2921 | "notification-url": "https://packagist.org/downloads/", |
3189 | "license": [ | 2922 | "license": [ |
3190 | "MIT" | 2923 | "MIT" |
3191 | ], | 2924 | ], |
3192 | "authors": [ | 2925 | "authors": [ |
3193 | { | 2926 | { |
3194 | "name": "Ignace Nyamagana Butera", | 2927 | "name": "Ignace Nyamagana Butera", |
3195 | "email": "nyamsprod@gmail.com", | 2928 | "email": "nyamsprod@gmail.com", |
3196 | "homepage": "https://nyamsprod.com" | 2929 | "homepage": "https://nyamsprod.com" |
3197 | } | 2930 | } |
3198 | ], | 2931 | ], |
3199 | "description": "userland URI parser RFC 3986 compliant", | 2932 | "description": "userland URI parser RFC 3986 compliant", |
3200 | "homepage": "https://github.com/thephpleague/uri-parser", | 2933 | "homepage": "https://github.com/thephpleague/uri-parser", |
3201 | "keywords": [ | 2934 | "keywords": [ |
3202 | "parse_url", | 2935 | "parse_url", |
3203 | "parser", | 2936 | "parser", |
3204 | "rfc3986", | 2937 | "rfc3986", |
3205 | "rfc3987", | 2938 | "rfc3987", |
3206 | "uri", | 2939 | "uri", |
3207 | "url" | 2940 | "url" |
3208 | ], | 2941 | ], |
3209 | "support": { | 2942 | "support": { |
3210 | "issues": "https://github.com/thephpleague/uri-parser/issues", | 2943 | "issues": "https://github.com/thephpleague/uri-parser/issues", |
3211 | "source": "https://github.com/thephpleague/uri-parser/tree/master" | 2944 | "source": "https://github.com/thephpleague/uri-parser/tree/master" |
3212 | }, | 2945 | }, |
3213 | "abandoned": true, | 2946 | "abandoned": true, |
3214 | "time": "2018-11-22T07:55:51+00:00" | 2947 | "time": "2018-11-22T07:55:51+00:00" |
3215 | }, | 2948 | }, |
3216 | { | 2949 | { |
3217 | "name": "livewire/livewire", | 2950 | "name": "livewire/livewire", |
3218 | "version": "v2.12.3", | 2951 | "version": "v2.12.3", |
3219 | "source": { | 2952 | "source": { |
3220 | "type": "git", | 2953 | "type": "git", |
3221 | "url": "https://github.com/livewire/livewire.git", | 2954 | "url": "https://github.com/livewire/livewire.git", |
3222 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74" | 2955 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74" |
3223 | }, | 2956 | }, |
3224 | "dist": { | 2957 | "dist": { |
3225 | "type": "zip", | 2958 | "type": "zip", |
3226 | "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", | 2959 | "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", |
3227 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", | 2960 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", |
3228 | "shasum": "" | 2961 | "shasum": "" |
3229 | }, | 2962 | }, |
3230 | "require": { | 2963 | "require": { |
3231 | "illuminate/database": "^7.0|^8.0|^9.0|^10.0", | 2964 | "illuminate/database": "^7.0|^8.0|^9.0|^10.0", |
3232 | "illuminate/support": "^7.0|^8.0|^9.0|^10.0", | 2965 | "illuminate/support": "^7.0|^8.0|^9.0|^10.0", |
3233 | "illuminate/validation": "^7.0|^8.0|^9.0|^10.0", | 2966 | "illuminate/validation": "^7.0|^8.0|^9.0|^10.0", |
3234 | "league/mime-type-detection": "^1.9", | 2967 | "league/mime-type-detection": "^1.9", |
3235 | "php": "^7.2.5|^8.0", | 2968 | "php": "^7.2.5|^8.0", |
3236 | "symfony/http-kernel": "^5.0|^6.0" | 2969 | "symfony/http-kernel": "^5.0|^6.0" |
3237 | }, | 2970 | }, |
3238 | "require-dev": { | 2971 | "require-dev": { |
3239 | "calebporzio/sushi": "^2.1", | 2972 | "calebporzio/sushi": "^2.1", |
3240 | "laravel/framework": "^7.0|^8.0|^9.0|^10.0", | 2973 | "laravel/framework": "^7.0|^8.0|^9.0|^10.0", |
3241 | "mockery/mockery": "^1.3.1", | 2974 | "mockery/mockery": "^1.3.1", |
3242 | "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", | 2975 | "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", |
3243 | "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0", | 2976 | "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0", |
3244 | "phpunit/phpunit": "^8.4|^9.0", | 2977 | "phpunit/phpunit": "^8.4|^9.0", |
3245 | "psy/psysh": "@stable" | 2978 | "psy/psysh": "@stable" |
3246 | }, | 2979 | }, |
3247 | "type": "library", | 2980 | "type": "library", |
3248 | "extra": { | 2981 | "extra": { |
3249 | "laravel": { | 2982 | "laravel": { |
3250 | "providers": [ | 2983 | "providers": [ |
3251 | "Livewire\\LivewireServiceProvider" | 2984 | "Livewire\\LivewireServiceProvider" |
3252 | ], | 2985 | ], |
3253 | "aliases": { | 2986 | "aliases": { |
3254 | "Livewire": "Livewire\\Livewire" | 2987 | "Livewire": "Livewire\\Livewire" |
3255 | } | 2988 | } |
3256 | } | 2989 | } |
3257 | }, | 2990 | }, |
3258 | "autoload": { | 2991 | "autoload": { |
3259 | "files": [ | 2992 | "files": [ |
3260 | "src/helpers.php" | 2993 | "src/helpers.php" |
3261 | ], | 2994 | ], |
3262 | "psr-4": { | 2995 | "psr-4": { |
3263 | "Livewire\\": "src/" | 2996 | "Livewire\\": "src/" |
3264 | } | 2997 | } |
3265 | }, | 2998 | }, |
3266 | "notification-url": "https://packagist.org/downloads/", | 2999 | "notification-url": "https://packagist.org/downloads/", |
3267 | "license": [ | 3000 | "license": [ |
3268 | "MIT" | 3001 | "MIT" |
3269 | ], | 3002 | ], |
3270 | "authors": [ | 3003 | "authors": [ |
3271 | { | 3004 | { |
3272 | "name": "Caleb Porzio", | 3005 | "name": "Caleb Porzio", |
3273 | "email": "calebporzio@gmail.com" | 3006 | "email": "calebporzio@gmail.com" |
3274 | } | 3007 | } |
3275 | ], | 3008 | ], |
3276 | "description": "A front-end framework for Laravel.", | 3009 | "description": "A front-end framework for Laravel.", |
3277 | "support": { | 3010 | "support": { |
3278 | "issues": "https://github.com/livewire/livewire/issues", | 3011 | "issues": "https://github.com/livewire/livewire/issues", |
3279 | "source": "https://github.com/livewire/livewire/tree/v2.12.3" | 3012 | "source": "https://github.com/livewire/livewire/tree/v2.12.3" |
3280 | }, | 3013 | }, |
3281 | "funding": [ | 3014 | "funding": [ |
3282 | { | 3015 | { |
3283 | "url": "https://github.com/livewire", | 3016 | "url": "https://github.com/livewire", |
3284 | "type": "github" | 3017 | "type": "github" |
3285 | } | 3018 | } |
3286 | ], | 3019 | ], |
3287 | "time": "2023-03-03T20:12:38+00:00" | 3020 | "time": "2023-03-03T20:12:38+00:00" |
3288 | }, | 3021 | }, |
3289 | { | 3022 | { |
3290 | "name": "maennchen/zipstream-php", | 3023 | "name": "maennchen/zipstream-php", |
3291 | "version": "3.1.0", | 3024 | "version": "3.1.0", |
3292 | "source": { | 3025 | "source": { |
3293 | "type": "git", | 3026 | "type": "git", |
3294 | "url": "https://github.com/maennchen/ZipStream-PHP.git", | 3027 | "url": "https://github.com/maennchen/ZipStream-PHP.git", |
3295 | "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1" | 3028 | "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1" |
3296 | }, | 3029 | }, |
3297 | "dist": { | 3030 | "dist": { |
3298 | "type": "zip", | 3031 | "type": "zip", |
3299 | "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1", | 3032 | "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1", |
3300 | "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1", | 3033 | "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1", |
3301 | "shasum": "" | 3034 | "shasum": "" |
3302 | }, | 3035 | }, |
3303 | "require": { | 3036 | "require": { |
3304 | "ext-mbstring": "*", | 3037 | "ext-mbstring": "*", |
3305 | "ext-zlib": "*", | 3038 | "ext-zlib": "*", |
3306 | "php-64bit": "^8.1" | 3039 | "php-64bit": "^8.1" |
3307 | }, | 3040 | }, |
3308 | "require-dev": { | 3041 | "require-dev": { |
3309 | "ext-zip": "*", | 3042 | "ext-zip": "*", |
3310 | "friendsofphp/php-cs-fixer": "^3.16", | 3043 | "friendsofphp/php-cs-fixer": "^3.16", |
3311 | "guzzlehttp/guzzle": "^7.5", | 3044 | "guzzlehttp/guzzle": "^7.5", |
3312 | "mikey179/vfsstream": "^1.6", | 3045 | "mikey179/vfsstream": "^1.6", |
3313 | "php-coveralls/php-coveralls": "^2.5", | 3046 | "php-coveralls/php-coveralls": "^2.5", |
3314 | "phpunit/phpunit": "^10.0", | 3047 | "phpunit/phpunit": "^10.0", |
3315 | "vimeo/psalm": "^5.0" | 3048 | "vimeo/psalm": "^5.0" |
3316 | }, | 3049 | }, |
3317 | "suggest": { | 3050 | "suggest": { |
3318 | "guzzlehttp/psr7": "^2.4", | 3051 | "guzzlehttp/psr7": "^2.4", |
3319 | "psr/http-message": "^2.0" | 3052 | "psr/http-message": "^2.0" |
3320 | }, | 3053 | }, |
3321 | "type": "library", | 3054 | "type": "library", |
3322 | "autoload": { | 3055 | "autoload": { |
3323 | "psr-4": { | 3056 | "psr-4": { |
3324 | "ZipStream\\": "src/" | 3057 | "ZipStream\\": "src/" |
3325 | } | 3058 | } |
3326 | }, | 3059 | }, |
3327 | "notification-url": "https://packagist.org/downloads/", | 3060 | "notification-url": "https://packagist.org/downloads/", |
3328 | "license": [ | 3061 | "license": [ |
3329 | "MIT" | 3062 | "MIT" |
3330 | ], | 3063 | ], |
3331 | "authors": [ | 3064 | "authors": [ |
3332 | { | 3065 | { |
3333 | "name": "Paul Duncan", | 3066 | "name": "Paul Duncan", |
3334 | "email": "pabs@pablotron.org" | 3067 | "email": "pabs@pablotron.org" |
3335 | }, | 3068 | }, |
3336 | { | 3069 | { |
3337 | "name": "Jonatan Männchen", | 3070 | "name": "Jonatan Männchen", |
3338 | "email": "jonatan@maennchen.ch" | 3071 | "email": "jonatan@maennchen.ch" |
3339 | }, | 3072 | }, |
3340 | { | 3073 | { |
3341 | "name": "Jesse Donat", | 3074 | "name": "Jesse Donat", |
3342 | "email": "donatj@gmail.com" | 3075 | "email": "donatj@gmail.com" |
3343 | }, | 3076 | }, |
3344 | { | 3077 | { |
3345 | "name": "András Kolesár", | 3078 | "name": "András Kolesár", |
3346 | "email": "kolesar@kolesar.hu" | 3079 | "email": "kolesar@kolesar.hu" |
3347 | } | 3080 | } |
3348 | ], | 3081 | ], |
3349 | "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", | 3082 | "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", |
3350 | "keywords": [ | 3083 | "keywords": [ |
3351 | "stream", | 3084 | "stream", |
3352 | "zip" | 3085 | "zip" |
3353 | ], | 3086 | ], |
3354 | "support": { | 3087 | "support": { |
3355 | "issues": "https://github.com/maennchen/ZipStream-PHP/issues", | 3088 | "issues": "https://github.com/maennchen/ZipStream-PHP/issues", |
3356 | "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0" | 3089 | "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0" |
3357 | }, | 3090 | }, |
3358 | "funding": [ | 3091 | "funding": [ |
3359 | { | 3092 | { |
3360 | "url": "https://github.com/maennchen", | 3093 | "url": "https://github.com/maennchen", |
3361 | "type": "github" | 3094 | "type": "github" |
3362 | }, | 3095 | }, |
3363 | { | 3096 | { |
3364 | "url": "https://opencollective.com/zipstream", | 3097 | "url": "https://opencollective.com/zipstream", |
3365 | "type": "open_collective" | 3098 | "type": "open_collective" |
3366 | } | 3099 | } |
3367 | ], | 3100 | ], |
3368 | "time": "2023-06-21T14:59:35+00:00" | 3101 | "time": "2023-06-21T14:59:35+00:00" |
3369 | }, | 3102 | }, |
3370 | { | 3103 | { |
3371 | "name": "markbaker/complex", | 3104 | "name": "markbaker/complex", |
3372 | "version": "3.0.2", | 3105 | "version": "3.0.2", |
3373 | "source": { | 3106 | "source": { |
3374 | "type": "git", | 3107 | "type": "git", |
3375 | "url": "https://github.com/MarkBaker/PHPComplex.git", | 3108 | "url": "https://github.com/MarkBaker/PHPComplex.git", |
3376 | "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9" | 3109 | "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9" |
3377 | }, | 3110 | }, |
3378 | "dist": { | 3111 | "dist": { |
3379 | "type": "zip", | 3112 | "type": "zip", |
3380 | "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9", | 3113 | "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9", |
3381 | "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", | 3114 | "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", |
3382 | "shasum": "" | 3115 | "shasum": "" |
3383 | }, | 3116 | }, |
3384 | "require": { | 3117 | "require": { |
3385 | "php": "^7.2 || ^8.0" | 3118 | "php": "^7.2 || ^8.0" |
3386 | }, | 3119 | }, |
3387 | "require-dev": { | 3120 | "require-dev": { |
3388 | "dealerdirect/phpcodesniffer-composer-installer": "dev-master", | 3121 | "dealerdirect/phpcodesniffer-composer-installer": "dev-master", |
3389 | "phpcompatibility/php-compatibility": "^9.3", | 3122 | "phpcompatibility/php-compatibility": "^9.3", |
3390 | "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", | 3123 | "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", |
3391 | "squizlabs/php_codesniffer": "^3.7" | 3124 | "squizlabs/php_codesniffer": "^3.7" |
3392 | }, | 3125 | }, |
3393 | "type": "library", | 3126 | "type": "library", |
3394 | "autoload": { | 3127 | "autoload": { |
3395 | "psr-4": { | 3128 | "psr-4": { |
3396 | "Complex\\": "classes/src/" | 3129 | "Complex\\": "classes/src/" |
3397 | } | 3130 | } |
3398 | }, | 3131 | }, |
3399 | "notification-url": "https://packagist.org/downloads/", | 3132 | "notification-url": "https://packagist.org/downloads/", |
3400 | "license": [ | 3133 | "license": [ |
3401 | "MIT" | 3134 | "MIT" |
3402 | ], | 3135 | ], |
3403 | "authors": [ | 3136 | "authors": [ |
3404 | { | 3137 | { |
3405 | "name": "Mark Baker", | 3138 | "name": "Mark Baker", |
3406 | "email": "mark@lange.demon.co.uk" | 3139 | "email": "mark@lange.demon.co.uk" |
3407 | } | 3140 | } |
3408 | ], | 3141 | ], |
3409 | "description": "PHP Class for working with complex numbers", | 3142 | "description": "PHP Class for working with complex numbers", |
3410 | "homepage": "https://github.com/MarkBaker/PHPComplex", | 3143 | "homepage": "https://github.com/MarkBaker/PHPComplex", |
3411 | "keywords": [ | 3144 | "keywords": [ |
3412 | "complex", | 3145 | "complex", |
3413 | "mathematics" | 3146 | "mathematics" |
3414 | ], | 3147 | ], |
3415 | "support": { | 3148 | "support": { |
3416 | "issues": "https://github.com/MarkBaker/PHPComplex/issues", | 3149 | "issues": "https://github.com/MarkBaker/PHPComplex/issues", |
3417 | "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" | 3150 | "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" |
3418 | }, | 3151 | }, |
3419 | "time": "2022-12-06T16:21:08+00:00" | 3152 | "time": "2022-12-06T16:21:08+00:00" |
3420 | }, | 3153 | }, |
3421 | { | 3154 | { |
3422 | "name": "markbaker/matrix", | 3155 | "name": "markbaker/matrix", |
3423 | "version": "3.0.1", | 3156 | "version": "3.0.1", |
3424 | "source": { | 3157 | "source": { |
3425 | "type": "git", | 3158 | "type": "git", |
3426 | "url": "https://github.com/MarkBaker/PHPMatrix.git", | 3159 | "url": "https://github.com/MarkBaker/PHPMatrix.git", |
3427 | "reference": "728434227fe21be27ff6d86621a1b13107a2562c" | 3160 | "reference": "728434227fe21be27ff6d86621a1b13107a2562c" |
3428 | }, | 3161 | }, |
3429 | "dist": { | 3162 | "dist": { |
3430 | "type": "zip", | 3163 | "type": "zip", |
3431 | "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c", | 3164 | "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c", |
3432 | "reference": "728434227fe21be27ff6d86621a1b13107a2562c", | 3165 | "reference": "728434227fe21be27ff6d86621a1b13107a2562c", |
3433 | "shasum": "" | 3166 | "shasum": "" |
3434 | }, | 3167 | }, |
3435 | "require": { | 3168 | "require": { |
3436 | "php": "^7.1 || ^8.0" | 3169 | "php": "^7.1 || ^8.0" |
3437 | }, | 3170 | }, |
3438 | "require-dev": { | 3171 | "require-dev": { |
3439 | "dealerdirect/phpcodesniffer-composer-installer": "dev-master", | 3172 | "dealerdirect/phpcodesniffer-composer-installer": "dev-master", |
3440 | "phpcompatibility/php-compatibility": "^9.3", | 3173 | "phpcompatibility/php-compatibility": "^9.3", |
3441 | "phpdocumentor/phpdocumentor": "2.*", | 3174 | "phpdocumentor/phpdocumentor": "2.*", |
3442 | "phploc/phploc": "^4.0", | 3175 | "phploc/phploc": "^4.0", |
3443 | "phpmd/phpmd": "2.*", | 3176 | "phpmd/phpmd": "2.*", |
3444 | "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", | 3177 | "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", |
3445 | "sebastian/phpcpd": "^4.0", | 3178 | "sebastian/phpcpd": "^4.0", |
3446 | "squizlabs/php_codesniffer": "^3.7" | 3179 | "squizlabs/php_codesniffer": "^3.7" |
3447 | }, | 3180 | }, |
3448 | "type": "library", | 3181 | "type": "library", |
3449 | "autoload": { | 3182 | "autoload": { |
3450 | "psr-4": { | 3183 | "psr-4": { |
3451 | "Matrix\\": "classes/src/" | 3184 | "Matrix\\": "classes/src/" |
3452 | } | 3185 | } |
3453 | }, | 3186 | }, |
3454 | "notification-url": "https://packagist.org/downloads/", | 3187 | "notification-url": "https://packagist.org/downloads/", |
3455 | "license": [ | 3188 | "license": [ |
3456 | "MIT" | 3189 | "MIT" |
3457 | ], | 3190 | ], |
3458 | "authors": [ | 3191 | "authors": [ |
3459 | { | 3192 | { |
3460 | "name": "Mark Baker", | 3193 | "name": "Mark Baker", |
3461 | "email": "mark@demon-angel.eu" | 3194 | "email": "mark@demon-angel.eu" |
3462 | } | 3195 | } |
3463 | ], | 3196 | ], |
3464 | "description": "PHP Class for working with matrices", | 3197 | "description": "PHP Class for working with matrices", |
3465 | "homepage": "https://github.com/MarkBaker/PHPMatrix", | 3198 | "homepage": "https://github.com/MarkBaker/PHPMatrix", |
3466 | "keywords": [ | 3199 | "keywords": [ |
3467 | "mathematics", | 3200 | "mathematics", |
3468 | "matrix", | 3201 | "matrix", |
3469 | "vector" | 3202 | "vector" |
3470 | ], | 3203 | ], |
3471 | "support": { | 3204 | "support": { |
3472 | "issues": "https://github.com/MarkBaker/PHPMatrix/issues", | 3205 | "issues": "https://github.com/MarkBaker/PHPMatrix/issues", |
3473 | "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" | 3206 | "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" |
3474 | }, | 3207 | }, |
3475 | "time": "2022-12-02T22:17:43+00:00" | 3208 | "time": "2022-12-02T22:17:43+00:00" |
3476 | }, | 3209 | }, |
3477 | { | 3210 | { |
3478 | "name": "masterminds/html5", | 3211 | "name": "masterminds/html5", |
3479 | "version": "2.8.0", | 3212 | "version": "2.8.0", |
3480 | "source": { | 3213 | "source": { |
3481 | "type": "git", | 3214 | "type": "git", |
3482 | "url": "https://github.com/Masterminds/html5-php.git", | 3215 | "url": "https://github.com/Masterminds/html5-php.git", |
3483 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3" | 3216 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3" |
3484 | }, | 3217 | }, |
3485 | "dist": { | 3218 | "dist": { |
3486 | "type": "zip", | 3219 | "type": "zip", |
3487 | "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", | 3220 | "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", |
3488 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", | 3221 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", |
3489 | "shasum": "" | 3222 | "shasum": "" |
3490 | }, | 3223 | }, |
3491 | "require": { | 3224 | "require": { |
3492 | "ext-dom": "*", | 3225 | "ext-dom": "*", |
3493 | "php": ">=5.3.0" | 3226 | "php": ">=5.3.0" |
3494 | }, | 3227 | }, |
3495 | "require-dev": { | 3228 | "require-dev": { |
3496 | "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" | 3229 | "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" |
3497 | }, | 3230 | }, |
3498 | "type": "library", | 3231 | "type": "library", |
3499 | "extra": { | 3232 | "extra": { |
3500 | "branch-alias": { | 3233 | "branch-alias": { |
3501 | "dev-master": "2.7-dev" | 3234 | "dev-master": "2.7-dev" |
3502 | } | 3235 | } |
3503 | }, | 3236 | }, |
3504 | "autoload": { | 3237 | "autoload": { |
3505 | "psr-4": { | 3238 | "psr-4": { |
3506 | "Masterminds\\": "src" | 3239 | "Masterminds\\": "src" |
3507 | } | 3240 | } |
3508 | }, | 3241 | }, |
3509 | "notification-url": "https://packagist.org/downloads/", | 3242 | "notification-url": "https://packagist.org/downloads/", |
3510 | "license": [ | 3243 | "license": [ |
3511 | "MIT" | 3244 | "MIT" |
3512 | ], | 3245 | ], |
3513 | "authors": [ | 3246 | "authors": [ |
3514 | { | 3247 | { |
3515 | "name": "Matt Butcher", | 3248 | "name": "Matt Butcher", |
3516 | "email": "technosophos@gmail.com" | 3249 | "email": "technosophos@gmail.com" |
3517 | }, | 3250 | }, |
3518 | { | 3251 | { |
3519 | "name": "Matt Farina", | 3252 | "name": "Matt Farina", |
3520 | "email": "matt@mattfarina.com" | 3253 | "email": "matt@mattfarina.com" |
3521 | }, | 3254 | }, |
3522 | { | 3255 | { |
3523 | "name": "Asmir Mustafic", | 3256 | "name": "Asmir Mustafic", |
3524 | "email": "goetas@gmail.com" | 3257 | "email": "goetas@gmail.com" |
3525 | } | 3258 | } |
3526 | ], | 3259 | ], |
3527 | "description": "An HTML5 parser and serializer.", | 3260 | "description": "An HTML5 parser and serializer.", |
3528 | "homepage": "http://masterminds.github.io/html5-php", | 3261 | "homepage": "http://masterminds.github.io/html5-php", |
3529 | "keywords": [ | 3262 | "keywords": [ |
3530 | "HTML5", | 3263 | "HTML5", |
3531 | "dom", | 3264 | "dom", |
3532 | "html", | 3265 | "html", |
3533 | "parser", | 3266 | "parser", |
3534 | "querypath", | 3267 | "querypath", |
3535 | "serializer", | 3268 | "serializer", |
3536 | "xml" | 3269 | "xml" |
3537 | ], | 3270 | ], |
3538 | "support": { | 3271 | "support": { |
3539 | "issues": "https://github.com/Masterminds/html5-php/issues", | 3272 | "issues": "https://github.com/Masterminds/html5-php/issues", |
3540 | "source": "https://github.com/Masterminds/html5-php/tree/2.8.0" | 3273 | "source": "https://github.com/Masterminds/html5-php/tree/2.8.0" |
3541 | }, | 3274 | }, |
3542 | "time": "2023-04-26T07:27:39+00:00" | 3275 | "time": "2023-04-26T07:27:39+00:00" |
3543 | }, | 3276 | }, |
3544 | { | 3277 | { |
3545 | "name": "monolog/monolog", | 3278 | "name": "monolog/monolog", |
3546 | "version": "2.9.1", | 3279 | "version": "2.9.1", |
3547 | "source": { | 3280 | "source": { |
3548 | "type": "git", | 3281 | "type": "git", |
3549 | "url": "https://github.com/Seldaek/monolog.git", | 3282 | "url": "https://github.com/Seldaek/monolog.git", |
3550 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" | 3283 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" |
3551 | }, | 3284 | }, |
3552 | "dist": { | 3285 | "dist": { |
3553 | "type": "zip", | 3286 | "type": "zip", |
3554 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", | 3287 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", |
3555 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", | 3288 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", |
3556 | "shasum": "" | 3289 | "shasum": "" |
3557 | }, | 3290 | }, |
3558 | "require": { | 3291 | "require": { |
3559 | "php": ">=7.2", | 3292 | "php": ">=7.2", |
3560 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" | 3293 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" |
3561 | }, | 3294 | }, |
3562 | "provide": { | 3295 | "provide": { |
3563 | "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" | 3296 | "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" |
3564 | }, | 3297 | }, |
3565 | "require-dev": { | 3298 | "require-dev": { |
3566 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", | 3299 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", |
3567 | "doctrine/couchdb": "~1.0@dev", | 3300 | "doctrine/couchdb": "~1.0@dev", |
3568 | "elasticsearch/elasticsearch": "^7 || ^8", | 3301 | "elasticsearch/elasticsearch": "^7 || ^8", |
3569 | "ext-json": "*", | 3302 | "ext-json": "*", |
3570 | "graylog2/gelf-php": "^1.4.2 || ^2@dev", | 3303 | "graylog2/gelf-php": "^1.4.2 || ^2@dev", |
3571 | "guzzlehttp/guzzle": "^7.4", | 3304 | "guzzlehttp/guzzle": "^7.4", |
3572 | "guzzlehttp/psr7": "^2.2", | 3305 | "guzzlehttp/psr7": "^2.2", |
3573 | "mongodb/mongodb": "^1.8", | 3306 | "mongodb/mongodb": "^1.8", |
3574 | "php-amqplib/php-amqplib": "~2.4 || ^3", | 3307 | "php-amqplib/php-amqplib": "~2.4 || ^3", |
3575 | "phpspec/prophecy": "^1.15", | 3308 | "phpspec/prophecy": "^1.15", |
3576 | "phpstan/phpstan": "^0.12.91", | 3309 | "phpstan/phpstan": "^0.12.91", |
3577 | "phpunit/phpunit": "^8.5.14", | 3310 | "phpunit/phpunit": "^8.5.14", |
3578 | "predis/predis": "^1.1 || ^2.0", | 3311 | "predis/predis": "^1.1 || ^2.0", |
3579 | "rollbar/rollbar": "^1.3 || ^2 || ^3", | 3312 | "rollbar/rollbar": "^1.3 || ^2 || ^3", |
3580 | "ruflin/elastica": "^7", | 3313 | "ruflin/elastica": "^7", |
3581 | "swiftmailer/swiftmailer": "^5.3|^6.0", | 3314 | "swiftmailer/swiftmailer": "^5.3|^6.0", |
3582 | "symfony/mailer": "^5.4 || ^6", | 3315 | "symfony/mailer": "^5.4 || ^6", |
3583 | "symfony/mime": "^5.4 || ^6" | 3316 | "symfony/mime": "^5.4 || ^6" |
3584 | }, | 3317 | }, |
3585 | "suggest": { | 3318 | "suggest": { |
3586 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", | 3319 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", |
3587 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", | 3320 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", |
3588 | "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", | 3321 | "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", |
3589 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", | 3322 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", |
3590 | "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", | 3323 | "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", |
3591 | "ext-mbstring": "Allow to work properly with unicode symbols", | 3324 | "ext-mbstring": "Allow to work properly with unicode symbols", |
3592 | "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", | 3325 | "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", |
3593 | "ext-openssl": "Required to send log messages using SSL", | 3326 | "ext-openssl": "Required to send log messages using SSL", |
3594 | "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", | 3327 | "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", |
3595 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", | 3328 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", |
3596 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", | 3329 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", |
3597 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", | 3330 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", |
3598 | "rollbar/rollbar": "Allow sending log messages to Rollbar", | 3331 | "rollbar/rollbar": "Allow sending log messages to Rollbar", |
3599 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server" | 3332 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server" |
3600 | }, | 3333 | }, |
3601 | "type": "library", | 3334 | "type": "library", |
3602 | "extra": { | 3335 | "extra": { |
3603 | "branch-alias": { | 3336 | "branch-alias": { |
3604 | "dev-main": "2.x-dev" | 3337 | "dev-main": "2.x-dev" |
3605 | } | 3338 | } |
3606 | }, | 3339 | }, |
3607 | "autoload": { | 3340 | "autoload": { |
3608 | "psr-4": { | 3341 | "psr-4": { |
3609 | "Monolog\\": "src/Monolog" | 3342 | "Monolog\\": "src/Monolog" |
3610 | } | 3343 | } |
3611 | }, | 3344 | }, |
3612 | "notification-url": "https://packagist.org/downloads/", | 3345 | "notification-url": "https://packagist.org/downloads/", |
3613 | "license": [ | 3346 | "license": [ |
3614 | "MIT" | 3347 | "MIT" |
3615 | ], | 3348 | ], |
3616 | "authors": [ | 3349 | "authors": [ |
3617 | { | 3350 | { |
3618 | "name": "Jordi Boggiano", | 3351 | "name": "Jordi Boggiano", |
3619 | "email": "j.boggiano@seld.be", | 3352 | "email": "j.boggiano@seld.be", |
3620 | "homepage": "https://seld.be" | 3353 | "homepage": "https://seld.be" |
3621 | } | 3354 | } |
3622 | ], | 3355 | ], |
3623 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", | 3356 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", |
3624 | "homepage": "https://github.com/Seldaek/monolog", | 3357 | "homepage": "https://github.com/Seldaek/monolog", |
3625 | "keywords": [ | 3358 | "keywords": [ |
3626 | "log", | 3359 | "log", |
3627 | "logging", | 3360 | "logging", |
3628 | "psr-3" | 3361 | "psr-3" |
3629 | ], | 3362 | ], |
3630 | "support": { | 3363 | "support": { |
3631 | "issues": "https://github.com/Seldaek/monolog/issues", | 3364 | "issues": "https://github.com/Seldaek/monolog/issues", |
3632 | "source": "https://github.com/Seldaek/monolog/tree/2.9.1" | 3365 | "source": "https://github.com/Seldaek/monolog/tree/2.9.1" |
3633 | }, | 3366 | }, |
3634 | "funding": [ | 3367 | "funding": [ |
3635 | { | 3368 | { |
3636 | "url": "https://github.com/Seldaek", | 3369 | "url": "https://github.com/Seldaek", |
3637 | "type": "github" | 3370 | "type": "github" |
3638 | }, | 3371 | }, |
3639 | { | 3372 | { |
3640 | "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", | 3373 | "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", |
3641 | "type": "tidelift" | 3374 | "type": "tidelift" |
3642 | } | 3375 | } |
3643 | ], | 3376 | ], |
3644 | "time": "2023-02-06T13:44:46+00:00" | 3377 | "time": "2023-02-06T13:44:46+00:00" |
3645 | }, | 3378 | }, |
3646 | { | 3379 | { |
3647 | "name": "nesbot/carbon", | 3380 | "name": "nesbot/carbon", |
3648 | "version": "2.66.0", | 3381 | "version": "2.66.0", |
3649 | "source": { | 3382 | "source": { |
3650 | "type": "git", | 3383 | "type": "git", |
3651 | "url": "https://github.com/briannesbitt/Carbon.git", | 3384 | "url": "https://github.com/briannesbitt/Carbon.git", |
3652 | "reference": "496712849902241f04902033b0441b269effe001" | 3385 | "reference": "496712849902241f04902033b0441b269effe001" |
3653 | }, | 3386 | }, |
3654 | "dist": { | 3387 | "dist": { |
3655 | "type": "zip", | 3388 | "type": "zip", |
3656 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001", | 3389 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001", |
3657 | "reference": "496712849902241f04902033b0441b269effe001", | 3390 | "reference": "496712849902241f04902033b0441b269effe001", |
3658 | "shasum": "" | 3391 | "shasum": "" |
3659 | }, | 3392 | }, |
3660 | "require": { | 3393 | "require": { |
3661 | "ext-json": "*", | 3394 | "ext-json": "*", |
3662 | "php": "^7.1.8 || ^8.0", | 3395 | "php": "^7.1.8 || ^8.0", |
3663 | "symfony/polyfill-mbstring": "^1.0", | 3396 | "symfony/polyfill-mbstring": "^1.0", |
3664 | "symfony/polyfill-php80": "^1.16", | 3397 | "symfony/polyfill-php80": "^1.16", |
3665 | "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" | 3398 | "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" |
3666 | }, | 3399 | }, |
3667 | "require-dev": { | 3400 | "require-dev": { |
3668 | "doctrine/dbal": "^2.0 || ^3.1.4", | 3401 | "doctrine/dbal": "^2.0 || ^3.1.4", |
3669 | "doctrine/orm": "^2.7", | 3402 | "doctrine/orm": "^2.7", |
3670 | "friendsofphp/php-cs-fixer": "^3.0", | 3403 | "friendsofphp/php-cs-fixer": "^3.0", |
3671 | "kylekatarnls/multi-tester": "^2.0", | 3404 | "kylekatarnls/multi-tester": "^2.0", |
3672 | "ondrejmirtes/better-reflection": "*", | 3405 | "ondrejmirtes/better-reflection": "*", |
3673 | "phpmd/phpmd": "^2.9", | 3406 | "phpmd/phpmd": "^2.9", |
3674 | "phpstan/extension-installer": "^1.0", | 3407 | "phpstan/extension-installer": "^1.0", |
3675 | "phpstan/phpstan": "^0.12.99 || ^1.7.14", | 3408 | "phpstan/phpstan": "^0.12.99 || ^1.7.14", |
3676 | "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", | 3409 | "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", |
3677 | "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", | 3410 | "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", |
3678 | "squizlabs/php_codesniffer": "^3.4" | 3411 | "squizlabs/php_codesniffer": "^3.4" |
3679 | }, | 3412 | }, |
3680 | "bin": [ | 3413 | "bin": [ |
3681 | "bin/carbon" | 3414 | "bin/carbon" |
3682 | ], | 3415 | ], |
3683 | "type": "library", | 3416 | "type": "library", |
3684 | "extra": { | 3417 | "extra": { |
3685 | "branch-alias": { | 3418 | "branch-alias": { |
3686 | "dev-3.x": "3.x-dev", | 3419 | "dev-3.x": "3.x-dev", |
3687 | "dev-master": "2.x-dev" | 3420 | "dev-master": "2.x-dev" |
3688 | }, | 3421 | }, |
3689 | "laravel": { | 3422 | "laravel": { |
3690 | "providers": [ | 3423 | "providers": [ |
3691 | "Carbon\\Laravel\\ServiceProvider" | 3424 | "Carbon\\Laravel\\ServiceProvider" |
3692 | ] | 3425 | ] |
3693 | }, | 3426 | }, |
3694 | "phpstan": { | 3427 | "phpstan": { |
3695 | "includes": [ | 3428 | "includes": [ |
3696 | "extension.neon" | 3429 | "extension.neon" |
3697 | ] | 3430 | ] |
3698 | } | 3431 | } |
3699 | }, | 3432 | }, |
3700 | "autoload": { | 3433 | "autoload": { |
3701 | "psr-4": { | 3434 | "psr-4": { |
3702 | "Carbon\\": "src/Carbon/" | 3435 | "Carbon\\": "src/Carbon/" |
3703 | } | 3436 | } |
3704 | }, | 3437 | }, |
3705 | "notification-url": "https://packagist.org/downloads/", | 3438 | "notification-url": "https://packagist.org/downloads/", |
3706 | "license": [ | 3439 | "license": [ |
3707 | "MIT" | 3440 | "MIT" |
3708 | ], | 3441 | ], |
3709 | "authors": [ | 3442 | "authors": [ |
3710 | { | 3443 | { |
3711 | "name": "Brian Nesbitt", | 3444 | "name": "Brian Nesbitt", |
3712 | "email": "brian@nesbot.com", | 3445 | "email": "brian@nesbot.com", |
3713 | "homepage": "https://markido.com" | 3446 | "homepage": "https://markido.com" |
3714 | }, | 3447 | }, |
3715 | { | 3448 | { |
3716 | "name": "kylekatarnls", | 3449 | "name": "kylekatarnls", |
3717 | "homepage": "https://github.com/kylekatarnls" | 3450 | "homepage": "https://github.com/kylekatarnls" |
3718 | } | 3451 | } |
3719 | ], | 3452 | ], |
3720 | "description": "An API extension for DateTime that supports 281 different languages.", | 3453 | "description": "An API extension for DateTime that supports 281 different languages.", |
3721 | "homepage": "https://carbon.nesbot.com", | 3454 | "homepage": "https://carbon.nesbot.com", |
3722 | "keywords": [ | 3455 | "keywords": [ |
3723 | "date", | 3456 | "date", |
3724 | "datetime", | 3457 | "datetime", |
3725 | "time" | 3458 | "time" |
3726 | ], | 3459 | ], |
3727 | "support": { | 3460 | "support": { |
3728 | "docs": "https://carbon.nesbot.com/docs", | 3461 | "docs": "https://carbon.nesbot.com/docs", |
3729 | "issues": "https://github.com/briannesbitt/Carbon/issues", | 3462 | "issues": "https://github.com/briannesbitt/Carbon/issues", |
3730 | "source": "https://github.com/briannesbitt/Carbon" | 3463 | "source": "https://github.com/briannesbitt/Carbon" |
3731 | }, | 3464 | }, |
3732 | "funding": [ | 3465 | "funding": [ |
3733 | { | 3466 | { |
3734 | "url": "https://github.com/sponsors/kylekatarnls", | 3467 | "url": "https://github.com/sponsors/kylekatarnls", |
3735 | "type": "github" | 3468 | "type": "github" |
3736 | }, | 3469 | }, |
3737 | { | 3470 | { |
3738 | "url": "https://opencollective.com/Carbon#sponsor", | 3471 | "url": "https://opencollective.com/Carbon#sponsor", |
3739 | "type": "opencollective" | 3472 | "type": "opencollective" |
3740 | }, | 3473 | }, |
3741 | { | 3474 | { |
3742 | "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", | 3475 | "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", |
3743 | "type": "tidelift" | 3476 | "type": "tidelift" |
3744 | } | 3477 | } |
3745 | ], | 3478 | ], |
3746 | "time": "2023-01-29T18:53:47+00:00" | 3479 | "time": "2023-01-29T18:53:47+00:00" |
3747 | }, | 3480 | }, |
3748 | { | 3481 | { |
3749 | "name": "nette/schema", | 3482 | "name": "nette/schema", |
3750 | "version": "v1.2.3", | 3483 | "version": "v1.2.3", |
3751 | "source": { | 3484 | "source": { |
3752 | "type": "git", | 3485 | "type": "git", |
3753 | "url": "https://github.com/nette/schema.git", | 3486 | "url": "https://github.com/nette/schema.git", |
3754 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" | 3487 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" |
3755 | }, | 3488 | }, |
3756 | "dist": { | 3489 | "dist": { |
3757 | "type": "zip", | 3490 | "type": "zip", |
3758 | "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", | 3491 | "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", |
3759 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", | 3492 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", |
3760 | "shasum": "" | 3493 | "shasum": "" |
3761 | }, | 3494 | }, |
3762 | "require": { | 3495 | "require": { |
3763 | "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", | 3496 | "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", |
3764 | "php": ">=7.1 <8.3" | 3497 | "php": ">=7.1 <8.3" |
3765 | }, | 3498 | }, |
3766 | "require-dev": { | 3499 | "require-dev": { |
3767 | "nette/tester": "^2.3 || ^2.4", | 3500 | "nette/tester": "^2.3 || ^2.4", |
3768 | "phpstan/phpstan-nette": "^1.0", | 3501 | "phpstan/phpstan-nette": "^1.0", |
3769 | "tracy/tracy": "^2.7" | 3502 | "tracy/tracy": "^2.7" |
3770 | }, | 3503 | }, |
3771 | "type": "library", | 3504 | "type": "library", |
3772 | "extra": { | 3505 | "extra": { |
3773 | "branch-alias": { | 3506 | "branch-alias": { |
3774 | "dev-master": "1.2-dev" | 3507 | "dev-master": "1.2-dev" |
3775 | } | 3508 | } |
3776 | }, | 3509 | }, |
3777 | "autoload": { | 3510 | "autoload": { |
3778 | "classmap": [ | 3511 | "classmap": [ |
3779 | "src/" | 3512 | "src/" |
3780 | ] | 3513 | ] |
3781 | }, | 3514 | }, |
3782 | "notification-url": "https://packagist.org/downloads/", | 3515 | "notification-url": "https://packagist.org/downloads/", |
3783 | "license": [ | 3516 | "license": [ |
3784 | "BSD-3-Clause", | 3517 | "BSD-3-Clause", |
3785 | "GPL-2.0-only", | 3518 | "GPL-2.0-only", |
3786 | "GPL-3.0-only" | 3519 | "GPL-3.0-only" |
3787 | ], | 3520 | ], |
3788 | "authors": [ | 3521 | "authors": [ |
3789 | { | 3522 | { |
3790 | "name": "David Grudl", | 3523 | "name": "David Grudl", |
3791 | "homepage": "https://davidgrudl.com" | 3524 | "homepage": "https://davidgrudl.com" |
3792 | }, | 3525 | }, |
3793 | { | 3526 | { |
3794 | "name": "Nette Community", | 3527 | "name": "Nette Community", |
3795 | "homepage": "https://nette.org/contributors" | 3528 | "homepage": "https://nette.org/contributors" |
3796 | } | 3529 | } |
3797 | ], | 3530 | ], |
3798 | "description": "📐 Nette Schema: validating data structures against a given Schema.", | 3531 | "description": "📐 Nette Schema: validating data structures against a given Schema.", |
3799 | "homepage": "https://nette.org", | 3532 | "homepage": "https://nette.org", |
3800 | "keywords": [ | 3533 | "keywords": [ |
3801 | "config", | 3534 | "config", |
3802 | "nette" | 3535 | "nette" |
3803 | ], | 3536 | ], |
3804 | "support": { | 3537 | "support": { |
3805 | "issues": "https://github.com/nette/schema/issues", | 3538 | "issues": "https://github.com/nette/schema/issues", |
3806 | "source": "https://github.com/nette/schema/tree/v1.2.3" | 3539 | "source": "https://github.com/nette/schema/tree/v1.2.3" |
3807 | }, | 3540 | }, |
3808 | "time": "2022-10-13T01:24:26+00:00" | 3541 | "time": "2022-10-13T01:24:26+00:00" |
3809 | }, | 3542 | }, |
3810 | { | 3543 | { |
3811 | "name": "nette/utils", | 3544 | "name": "nette/utils", |
3812 | "version": "v4.0.0", | 3545 | "version": "v4.0.0", |
3813 | "source": { | 3546 | "source": { |
3814 | "type": "git", | 3547 | "type": "git", |
3815 | "url": "https://github.com/nette/utils.git", | 3548 | "url": "https://github.com/nette/utils.git", |
3816 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e" | 3549 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e" |
3817 | }, | 3550 | }, |
3818 | "dist": { | 3551 | "dist": { |
3819 | "type": "zip", | 3552 | "type": "zip", |
3820 | "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e", | 3553 | "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e", |
3821 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e", | 3554 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e", |
3822 | "shasum": "" | 3555 | "shasum": "" |
3823 | }, | 3556 | }, |
3824 | "require": { | 3557 | "require": { |
3825 | "php": ">=8.0 <8.3" | 3558 | "php": ">=8.0 <8.3" |
3826 | }, | 3559 | }, |
3827 | "conflict": { | 3560 | "conflict": { |
3828 | "nette/finder": "<3", | 3561 | "nette/finder": "<3", |
3829 | "nette/schema": "<1.2.2" | 3562 | "nette/schema": "<1.2.2" |
3830 | }, | 3563 | }, |
3831 | "require-dev": { | 3564 | "require-dev": { |
3832 | "jetbrains/phpstorm-attributes": "dev-master", | 3565 | "jetbrains/phpstorm-attributes": "dev-master", |
3833 | "nette/tester": "^2.4", | 3566 | "nette/tester": "^2.4", |
3834 | "phpstan/phpstan": "^1.0", | 3567 | "phpstan/phpstan": "^1.0", |
3835 | "tracy/tracy": "^2.9" | 3568 | "tracy/tracy": "^2.9" |
3836 | }, | 3569 | }, |
3837 | "suggest": { | 3570 | "suggest": { |
3838 | "ext-gd": "to use Image", | 3571 | "ext-gd": "to use Image", |
3839 | "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", | 3572 | "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", |
3840 | "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", | 3573 | "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", |
3841 | "ext-json": "to use Nette\\Utils\\Json", | 3574 | "ext-json": "to use Nette\\Utils\\Json", |
3842 | "ext-mbstring": "to use Strings::lower() etc...", | 3575 | "ext-mbstring": "to use Strings::lower() etc...", |
3843 | "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", | 3576 | "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", |
3844 | "ext-xml": "to use Strings::length() etc. when mbstring is not available" | 3577 | "ext-xml": "to use Strings::length() etc. when mbstring is not available" |
3845 | }, | 3578 | }, |
3846 | "type": "library", | 3579 | "type": "library", |
3847 | "extra": { | 3580 | "extra": { |
3848 | "branch-alias": { | 3581 | "branch-alias": { |
3849 | "dev-master": "4.0-dev" | 3582 | "dev-master": "4.0-dev" |
3850 | } | 3583 | } |
3851 | }, | 3584 | }, |
3852 | "autoload": { | 3585 | "autoload": { |
3853 | "classmap": [ | 3586 | "classmap": [ |
3854 | "src/" | 3587 | "src/" |
3855 | ] | 3588 | ] |
3856 | }, | 3589 | }, |
3857 | "notification-url": "https://packagist.org/downloads/", | 3590 | "notification-url": "https://packagist.org/downloads/", |
3858 | "license": [ | 3591 | "license": [ |
3859 | "BSD-3-Clause", | 3592 | "BSD-3-Clause", |
3860 | "GPL-2.0-only", | 3593 | "GPL-2.0-only", |
3861 | "GPL-3.0-only" | 3594 | "GPL-3.0-only" |
3862 | ], | 3595 | ], |
3863 | "authors": [ | 3596 | "authors": [ |
3864 | { | 3597 | { |
3865 | "name": "David Grudl", | 3598 | "name": "David Grudl", |
3866 | "homepage": "https://davidgrudl.com" | 3599 | "homepage": "https://davidgrudl.com" |
3867 | }, | 3600 | }, |
3868 | { | 3601 | { |
3869 | "name": "Nette Community", | 3602 | "name": "Nette Community", |
3870 | "homepage": "https://nette.org/contributors" | 3603 | "homepage": "https://nette.org/contributors" |
3871 | } | 3604 | } |
3872 | ], | 3605 | ], |
3873 | "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", | 3606 | "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", |
3874 | "homepage": "https://nette.org", | 3607 | "homepage": "https://nette.org", |
3875 | "keywords": [ | 3608 | "keywords": [ |
3876 | "array", | 3609 | "array", |
3877 | "core", | 3610 | "core", |
3878 | "datetime", | 3611 | "datetime", |
3879 | "images", | 3612 | "images", |
3880 | "json", | 3613 | "json", |
3881 | "nette", | 3614 | "nette", |
3882 | "paginator", | 3615 | "paginator", |
3883 | "password", | 3616 | "password", |
3884 | "slugify", | 3617 | "slugify", |
3885 | "string", | 3618 | "string", |
3886 | "unicode", | 3619 | "unicode", |
3887 | "utf-8", | 3620 | "utf-8", |
3888 | "utility", | 3621 | "utility", |
3889 | "validation" | 3622 | "validation" |
3890 | ], | 3623 | ], |
3891 | "support": { | 3624 | "support": { |
3892 | "issues": "https://github.com/nette/utils/issues", | 3625 | "issues": "https://github.com/nette/utils/issues", |
3893 | "source": "https://github.com/nette/utils/tree/v4.0.0" | 3626 | "source": "https://github.com/nette/utils/tree/v4.0.0" |
3894 | }, | 3627 | }, |
3895 | "time": "2023-02-02T10:41:53+00:00" | 3628 | "time": "2023-02-02T10:41:53+00:00" |
3896 | }, | 3629 | }, |
3897 | { | 3630 | { |
3898 | "name": "nikic/php-parser", | 3631 | "name": "nikic/php-parser", |
3899 | "version": "v4.15.4", | 3632 | "version": "v4.15.4", |
3900 | "source": { | 3633 | "source": { |
3901 | "type": "git", | 3634 | "type": "git", |
3902 | "url": "https://github.com/nikic/PHP-Parser.git", | 3635 | "url": "https://github.com/nikic/PHP-Parser.git", |
3903 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" | 3636 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" |
3904 | }, | 3637 | }, |
3905 | "dist": { | 3638 | "dist": { |
3906 | "type": "zip", | 3639 | "type": "zip", |
3907 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", | 3640 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", |
3908 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", | 3641 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", |
3909 | "shasum": "" | 3642 | "shasum": "" |
3910 | }, | 3643 | }, |
3911 | "require": { | 3644 | "require": { |
3912 | "ext-tokenizer": "*", | 3645 | "ext-tokenizer": "*", |
3913 | "php": ">=7.0" | 3646 | "php": ">=7.0" |
3914 | }, | 3647 | }, |
3915 | "require-dev": { | 3648 | "require-dev": { |
3916 | "ircmaxell/php-yacc": "^0.0.7", | 3649 | "ircmaxell/php-yacc": "^0.0.7", |
3917 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" | 3650 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" |
3918 | }, | 3651 | }, |
3919 | "bin": [ | 3652 | "bin": [ |
3920 | "bin/php-parse" | 3653 | "bin/php-parse" |
3921 | ], | 3654 | ], |
3922 | "type": "library", | 3655 | "type": "library", |
3923 | "extra": { | 3656 | "extra": { |
3924 | "branch-alias": { | 3657 | "branch-alias": { |
3925 | "dev-master": "4.9-dev" | 3658 | "dev-master": "4.9-dev" |
3926 | } | 3659 | } |
3927 | }, | 3660 | }, |
3928 | "autoload": { | 3661 | "autoload": { |
3929 | "psr-4": { | 3662 | "psr-4": { |
3930 | "PhpParser\\": "lib/PhpParser" | 3663 | "PhpParser\\": "lib/PhpParser" |
3931 | } | 3664 | } |
3932 | }, | 3665 | }, |
3933 | "notification-url": "https://packagist.org/downloads/", | 3666 | "notification-url": "https://packagist.org/downloads/", |
3934 | "license": [ | 3667 | "license": [ |
3935 | "BSD-3-Clause" | 3668 | "BSD-3-Clause" |
3936 | ], | 3669 | ], |
3937 | "authors": [ | 3670 | "authors": [ |
3938 | { | 3671 | { |
3939 | "name": "Nikita Popov" | 3672 | "name": "Nikita Popov" |
3940 | } | 3673 | } |
3941 | ], | 3674 | ], |
3942 | "description": "A PHP parser written in PHP", | 3675 | "description": "A PHP parser written in PHP", |
3943 | "keywords": [ | 3676 | "keywords": [ |
3944 | "parser", | 3677 | "parser", |
3945 | "php" | 3678 | "php" |
3946 | ], | 3679 | ], |
3947 | "support": { | 3680 | "support": { |
3948 | "issues": "https://github.com/nikic/PHP-Parser/issues", | 3681 | "issues": "https://github.com/nikic/PHP-Parser/issues", |
3949 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4" | 3682 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4" |
3950 | }, | 3683 | }, |
3951 | "time": "2023-03-05T19:49:14+00:00" | 3684 | "time": "2023-03-05T19:49:14+00:00" |
3952 | }, | 3685 | }, |
3953 | { | 3686 | { |
3954 | "name": "nunomaduro/termwind", | 3687 | "name": "nunomaduro/termwind", |
3955 | "version": "v1.15.1", | 3688 | "version": "v1.15.1", |
3956 | "source": { | 3689 | "source": { |
3957 | "type": "git", | 3690 | "type": "git", |
3958 | "url": "https://github.com/nunomaduro/termwind.git", | 3691 | "url": "https://github.com/nunomaduro/termwind.git", |
3959 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" | 3692 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" |
3960 | }, | 3693 | }, |
3961 | "dist": { | 3694 | "dist": { |
3962 | "type": "zip", | 3695 | "type": "zip", |
3963 | "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", | 3696 | "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", |
3964 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", | 3697 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", |
3965 | "shasum": "" | 3698 | "shasum": "" |
3966 | }, | 3699 | }, |
3967 | "require": { | 3700 | "require": { |
3968 | "ext-mbstring": "*", | 3701 | "ext-mbstring": "*", |
3969 | "php": "^8.0", | 3702 | "php": "^8.0", |
3970 | "symfony/console": "^5.3.0|^6.0.0" | 3703 | "symfony/console": "^5.3.0|^6.0.0" |
3971 | }, | 3704 | }, |
3972 | "require-dev": { | 3705 | "require-dev": { |
3973 | "ergebnis/phpstan-rules": "^1.0.", | 3706 | "ergebnis/phpstan-rules": "^1.0.", |
3974 | "illuminate/console": "^8.0|^9.0", | 3707 | "illuminate/console": "^8.0|^9.0", |
3975 | "illuminate/support": "^8.0|^9.0", | 3708 | "illuminate/support": "^8.0|^9.0", |
3976 | "laravel/pint": "^1.0.0", | 3709 | "laravel/pint": "^1.0.0", |
3977 | "pestphp/pest": "^1.21.0", | 3710 | "pestphp/pest": "^1.21.0", |
3978 | "pestphp/pest-plugin-mock": "^1.0", | 3711 | "pestphp/pest-plugin-mock": "^1.0", |
3979 | "phpstan/phpstan": "^1.4.6", | 3712 | "phpstan/phpstan": "^1.4.6", |
3980 | "phpstan/phpstan-strict-rules": "^1.1.0", | 3713 | "phpstan/phpstan-strict-rules": "^1.1.0", |
3981 | "symfony/var-dumper": "^5.2.7|^6.0.0", | 3714 | "symfony/var-dumper": "^5.2.7|^6.0.0", |
3982 | "thecodingmachine/phpstan-strict-rules": "^1.0.0" | 3715 | "thecodingmachine/phpstan-strict-rules": "^1.0.0" |
3983 | }, | 3716 | }, |
3984 | "type": "library", | 3717 | "type": "library", |
3985 | "extra": { | 3718 | "extra": { |
3986 | "laravel": { | 3719 | "laravel": { |
3987 | "providers": [ | 3720 | "providers": [ |
3988 | "Termwind\\Laravel\\TermwindServiceProvider" | 3721 | "Termwind\\Laravel\\TermwindServiceProvider" |
3989 | ] | 3722 | ] |
3990 | } | 3723 | } |
3991 | }, | 3724 | }, |
3992 | "autoload": { | 3725 | "autoload": { |
3993 | "files": [ | 3726 | "files": [ |
3994 | "src/Functions.php" | 3727 | "src/Functions.php" |
3995 | ], | 3728 | ], |
3996 | "psr-4": { | 3729 | "psr-4": { |
3997 | "Termwind\\": "src/" | 3730 | "Termwind\\": "src/" |
3998 | } | 3731 | } |
3999 | }, | 3732 | }, |
4000 | "notification-url": "https://packagist.org/downloads/", | 3733 | "notification-url": "https://packagist.org/downloads/", |
4001 | "license": [ | 3734 | "license": [ |
4002 | "MIT" | 3735 | "MIT" |
4003 | ], | 3736 | ], |
4004 | "authors": [ | 3737 | "authors": [ |
4005 | { | 3738 | { |
4006 | "name": "Nuno Maduro", | 3739 | "name": "Nuno Maduro", |
4007 | "email": "enunomaduro@gmail.com" | 3740 | "email": "enunomaduro@gmail.com" |
4008 | } | 3741 | } |
4009 | ], | 3742 | ], |
4010 | "description": "Its like Tailwind CSS, but for the console.", | 3743 | "description": "Its like Tailwind CSS, but for the console.", |
4011 | "keywords": [ | 3744 | "keywords": [ |
4012 | "cli", | 3745 | "cli", |
4013 | "console", | 3746 | "console", |
4014 | "css", | 3747 | "css", |
4015 | "package", | 3748 | "package", |
4016 | "php", | 3749 | "php", |
4017 | "style" | 3750 | "style" |
4018 | ], | 3751 | ], |
4019 | "support": { | 3752 | "support": { |
4020 | "issues": "https://github.com/nunomaduro/termwind/issues", | 3753 | "issues": "https://github.com/nunomaduro/termwind/issues", |
4021 | "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" | 3754 | "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" |
4022 | }, | 3755 | }, |
4023 | "funding": [ | 3756 | "funding": [ |
4024 | { | 3757 | { |
4025 | "url": "https://www.paypal.com/paypalme/enunomaduro", | 3758 | "url": "https://www.paypal.com/paypalme/enunomaduro", |
4026 | "type": "custom" | 3759 | "type": "custom" |
4027 | }, | 3760 | }, |
4028 | { | 3761 | { |
4029 | "url": "https://github.com/nunomaduro", | 3762 | "url": "https://github.com/nunomaduro", |
4030 | "type": "github" | 3763 | "type": "github" |
4031 | }, | 3764 | }, |
4032 | { | 3765 | { |
4033 | "url": "https://github.com/xiCO2k", | 3766 | "url": "https://github.com/xiCO2k", |
4034 | "type": "github" | 3767 | "type": "github" |
4035 | } | 3768 | } |
4036 | ], | 3769 | ], |
4037 | "time": "2023-02-08T01:06:31+00:00" | 3770 | "time": "2023-02-08T01:06:31+00:00" |
4038 | }, | 3771 | }, |
4039 | { | 3772 | { |
4040 | "name": "phenx/php-font-lib", | 3773 | "name": "phenx/php-font-lib", |
4041 | "version": "0.5.6", | 3774 | "version": "0.5.6", |
4042 | "source": { | 3775 | "source": { |
4043 | "type": "git", | 3776 | "type": "git", |
4044 | "url": "https://github.com/dompdf/php-font-lib.git", | 3777 | "url": "https://github.com/dompdf/php-font-lib.git", |
4045 | "reference": "a1681e9793040740a405ac5b189275059e2a9863" | 3778 | "reference": "a1681e9793040740a405ac5b189275059e2a9863" |
4046 | }, | 3779 | }, |
4047 | "dist": { | 3780 | "dist": { |
4048 | "type": "zip", | 3781 | "type": "zip", |
4049 | "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863", | 3782 | "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863", |
4050 | "reference": "a1681e9793040740a405ac5b189275059e2a9863", | 3783 | "reference": "a1681e9793040740a405ac5b189275059e2a9863", |
4051 | "shasum": "" | 3784 | "shasum": "" |
4052 | }, | 3785 | }, |
4053 | "require": { | 3786 | "require": { |
4054 | "ext-mbstring": "*" | 3787 | "ext-mbstring": "*" |
4055 | }, | 3788 | }, |
4056 | "require-dev": { | 3789 | "require-dev": { |
4057 | "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" | 3790 | "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" |
4058 | }, | 3791 | }, |
4059 | "type": "library", | 3792 | "type": "library", |
4060 | "autoload": { | 3793 | "autoload": { |
4061 | "psr-4": { | 3794 | "psr-4": { |
4062 | "FontLib\\": "src/FontLib" | 3795 | "FontLib\\": "src/FontLib" |
4063 | } | 3796 | } |
4064 | }, | 3797 | }, |
4065 | "notification-url": "https://packagist.org/downloads/", | 3798 | "notification-url": "https://packagist.org/downloads/", |
4066 | "license": [ | 3799 | "license": [ |
4067 | "LGPL-2.1-or-later" | 3800 | "LGPL-2.1-or-later" |
4068 | ], | 3801 | ], |
4069 | "authors": [ | 3802 | "authors": [ |
4070 | { | 3803 | { |
4071 | "name": "Fabien Ménager", | 3804 | "name": "Fabien Ménager", |
4072 | "email": "fabien.menager@gmail.com" | 3805 | "email": "fabien.menager@gmail.com" |
4073 | } | 3806 | } |
4074 | ], | 3807 | ], |
4075 | "description": "A library to read, parse, export and make subsets of different types of font files.", | 3808 | "description": "A library to read, parse, export and make subsets of different types of font files.", |
4076 | "homepage": "https://github.com/PhenX/php-font-lib", | 3809 | "homepage": "https://github.com/PhenX/php-font-lib", |
4077 | "support": { | 3810 | "support": { |
4078 | "issues": "https://github.com/dompdf/php-font-lib/issues", | 3811 | "issues": "https://github.com/dompdf/php-font-lib/issues", |
4079 | "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6" | 3812 | "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6" |
4080 | }, | 3813 | }, |
4081 | "time": "2024-01-29T14:45:26+00:00" | 3814 | "time": "2024-01-29T14:45:26+00:00" |
4082 | }, | 3815 | }, |
4083 | { | 3816 | { |
4084 | "name": "phenx/php-svg-lib", | 3817 | "name": "phenx/php-svg-lib", |
4085 | "version": "0.5.2", | 3818 | "version": "0.5.2", |
4086 | "source": { | 3819 | "source": { |
4087 | "type": "git", | 3820 | "type": "git", |
4088 | "url": "https://github.com/dompdf/php-svg-lib.git", | 3821 | "url": "https://github.com/dompdf/php-svg-lib.git", |
4089 | "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa" | 3822 | "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa" |
4090 | }, | 3823 | }, |
4091 | "dist": { | 3824 | "dist": { |
4092 | "type": "zip", | 3825 | "type": "zip", |
4093 | "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/732faa9fb4309221e2bd9b2fda5de44f947133aa", | 3826 | "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/732faa9fb4309221e2bd9b2fda5de44f947133aa", |
4094 | "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa", | 3827 | "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa", |
4095 | "shasum": "" | 3828 | "shasum": "" |
4096 | }, | 3829 | }, |
4097 | "require": { | 3830 | "require": { |
4098 | "ext-mbstring": "*", | 3831 | "ext-mbstring": "*", |
4099 | "php": "^7.1 || ^8.0", | 3832 | "php": "^7.1 || ^8.0", |
4100 | "sabberworm/php-css-parser": "^8.4" | 3833 | "sabberworm/php-css-parser": "^8.4" |
4101 | }, | 3834 | }, |
4102 | "require-dev": { | 3835 | "require-dev": { |
4103 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" | 3836 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" |
4104 | }, | 3837 | }, |
4105 | "type": "library", | 3838 | "type": "library", |
4106 | "autoload": { | 3839 | "autoload": { |
4107 | "psr-4": { | 3840 | "psr-4": { |
4108 | "Svg\\": "src/Svg" | 3841 | "Svg\\": "src/Svg" |
4109 | } | 3842 | } |
4110 | }, | 3843 | }, |
4111 | "notification-url": "https://packagist.org/downloads/", | 3844 | "notification-url": "https://packagist.org/downloads/", |
4112 | "license": [ | 3845 | "license": [ |
4113 | "LGPL-3.0" | 3846 | "LGPL-3.0" |
4114 | ], | 3847 | ], |
4115 | "authors": [ | 3848 | "authors": [ |
4116 | { | 3849 | { |
4117 | "name": "Fabien Ménager", | 3850 | "name": "Fabien Ménager", |
4118 | "email": "fabien.menager@gmail.com" | 3851 | "email": "fabien.menager@gmail.com" |
4119 | } | 3852 | } |
4120 | ], | 3853 | ], |
4121 | "description": "A library to read, parse and export to PDF SVG files.", | 3854 | "description": "A library to read, parse and export to PDF SVG files.", |
4122 | "homepage": "https://github.com/PhenX/php-svg-lib", | 3855 | "homepage": "https://github.com/PhenX/php-svg-lib", |
4123 | "support": { | 3856 | "support": { |
4124 | "issues": "https://github.com/dompdf/php-svg-lib/issues", | 3857 | "issues": "https://github.com/dompdf/php-svg-lib/issues", |
4125 | "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.2" | 3858 | "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.2" |
4126 | }, | 3859 | }, |
4127 | "time": "2024-02-07T12:49:40+00:00" | 3860 | "time": "2024-02-07T12:49:40+00:00" |
4128 | }, | 3861 | }, |
4129 | { | 3862 | { |
4130 | "name": "phpoffice/phpspreadsheet", | 3863 | "name": "phpoffice/phpspreadsheet", |
4131 | "version": "1.29.0", | 3864 | "version": "1.29.0", |
4132 | "source": { | 3865 | "source": { |
4133 | "type": "git", | 3866 | "type": "git", |
4134 | "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", | 3867 | "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", |
4135 | "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0" | 3868 | "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0" |
4136 | }, | 3869 | }, |
4137 | "dist": { | 3870 | "dist": { |
4138 | "type": "zip", | 3871 | "type": "zip", |
4139 | "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0", | 3872 | "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0", |
4140 | "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0", | 3873 | "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0", |
4141 | "shasum": "" | 3874 | "shasum": "" |
4142 | }, | 3875 | }, |
4143 | "require": { | 3876 | "require": { |
4144 | "ext-ctype": "*", | 3877 | "ext-ctype": "*", |
4145 | "ext-dom": "*", | 3878 | "ext-dom": "*", |
4146 | "ext-fileinfo": "*", | 3879 | "ext-fileinfo": "*", |
4147 | "ext-gd": "*", | 3880 | "ext-gd": "*", |
4148 | "ext-iconv": "*", | 3881 | "ext-iconv": "*", |
4149 | "ext-libxml": "*", | 3882 | "ext-libxml": "*", |
4150 | "ext-mbstring": "*", | 3883 | "ext-mbstring": "*", |
4151 | "ext-simplexml": "*", | 3884 | "ext-simplexml": "*", |
4152 | "ext-xml": "*", | 3885 | "ext-xml": "*", |
4153 | "ext-xmlreader": "*", | 3886 | "ext-xmlreader": "*", |
4154 | "ext-xmlwriter": "*", | 3887 | "ext-xmlwriter": "*", |
4155 | "ext-zip": "*", | 3888 | "ext-zip": "*", |
4156 | "ext-zlib": "*", | 3889 | "ext-zlib": "*", |
4157 | "ezyang/htmlpurifier": "^4.15", | 3890 | "ezyang/htmlpurifier": "^4.15", |
4158 | "maennchen/zipstream-php": "^2.1 || ^3.0", | 3891 | "maennchen/zipstream-php": "^2.1 || ^3.0", |
4159 | "markbaker/complex": "^3.0", | 3892 | "markbaker/complex": "^3.0", |
4160 | "markbaker/matrix": "^3.0", | 3893 | "markbaker/matrix": "^3.0", |
4161 | "php": "^7.4 || ^8.0", | 3894 | "php": "^7.4 || ^8.0", |
4162 | "psr/http-client": "^1.0", | 3895 | "psr/http-client": "^1.0", |
4163 | "psr/http-factory": "^1.0", | 3896 | "psr/http-factory": "^1.0", |
4164 | "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" | 3897 | "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" |
4165 | }, | 3898 | }, |
4166 | "require-dev": { | 3899 | "require-dev": { |
4167 | "dealerdirect/phpcodesniffer-composer-installer": "dev-main", | 3900 | "dealerdirect/phpcodesniffer-composer-installer": "dev-main", |
4168 | "dompdf/dompdf": "^1.0 || ^2.0", | 3901 | "dompdf/dompdf": "^1.0 || ^2.0", |
4169 | "friendsofphp/php-cs-fixer": "^3.2", | 3902 | "friendsofphp/php-cs-fixer": "^3.2", |
4170 | "mitoteam/jpgraph": "^10.3", | 3903 | "mitoteam/jpgraph": "^10.3", |
4171 | "mpdf/mpdf": "^8.1.1", | 3904 | "mpdf/mpdf": "^8.1.1", |
4172 | "phpcompatibility/php-compatibility": "^9.3", | 3905 | "phpcompatibility/php-compatibility": "^9.3", |
4173 | "phpstan/phpstan": "^1.1", | 3906 | "phpstan/phpstan": "^1.1", |
4174 | "phpstan/phpstan-phpunit": "^1.0", | 3907 | "phpstan/phpstan-phpunit": "^1.0", |
4175 | "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0", | 3908 | "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0", |
4176 | "squizlabs/php_codesniffer": "^3.7", | 3909 | "squizlabs/php_codesniffer": "^3.7", |
4177 | "tecnickcom/tcpdf": "^6.5" | 3910 | "tecnickcom/tcpdf": "^6.5" |
4178 | }, | 3911 | }, |
4179 | "suggest": { | 3912 | "suggest": { |
4180 | "dompdf/dompdf": "Option for rendering PDF with PDF Writer", | 3913 | "dompdf/dompdf": "Option for rendering PDF with PDF Writer", |
4181 | "ext-intl": "PHP Internationalization Functions", | 3914 | "ext-intl": "PHP Internationalization Functions", |
4182 | "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", | 3915 | "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", |
4183 | "mpdf/mpdf": "Option for rendering PDF with PDF Writer", | 3916 | "mpdf/mpdf": "Option for rendering PDF with PDF Writer", |
4184 | "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" | 3917 | "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" |
4185 | }, | 3918 | }, |
4186 | "type": "library", | 3919 | "type": "library", |
4187 | "autoload": { | 3920 | "autoload": { |
4188 | "psr-4": { | 3921 | "psr-4": { |
4189 | "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" | 3922 | "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" |
4190 | } | 3923 | } |
4191 | }, | 3924 | }, |
4192 | "notification-url": "https://packagist.org/downloads/", | 3925 | "notification-url": "https://packagist.org/downloads/", |
4193 | "license": [ | 3926 | "license": [ |
4194 | "MIT" | 3927 | "MIT" |
4195 | ], | 3928 | ], |
4196 | "authors": [ | 3929 | "authors": [ |
4197 | { | 3930 | { |
4198 | "name": "Maarten Balliauw", | 3931 | "name": "Maarten Balliauw", |
4199 | "homepage": "https://blog.maartenballiauw.be" | 3932 | "homepage": "https://blog.maartenballiauw.be" |
4200 | }, | 3933 | }, |
4201 | { | 3934 | { |
4202 | "name": "Mark Baker", | 3935 | "name": "Mark Baker", |
4203 | "homepage": "https://markbakeruk.net" | 3936 | "homepage": "https://markbakeruk.net" |
4204 | }, | 3937 | }, |
4205 | { | 3938 | { |
4206 | "name": "Franck Lefevre", | 3939 | "name": "Franck Lefevre", |
4207 | "homepage": "https://rootslabs.net" | 3940 | "homepage": "https://rootslabs.net" |
4208 | }, | 3941 | }, |
4209 | { | 3942 | { |
4210 | "name": "Erik Tilt" | 3943 | "name": "Erik Tilt" |
4211 | }, | 3944 | }, |
4212 | { | 3945 | { |
4213 | "name": "Adrien Crivelli" | 3946 | "name": "Adrien Crivelli" |
4214 | } | 3947 | } |
4215 | ], | 3948 | ], |
4216 | "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", | 3949 | "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", |
4217 | "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", | 3950 | "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", |
4218 | "keywords": [ | 3951 | "keywords": [ |
4219 | "OpenXML", | 3952 | "OpenXML", |
4220 | "excel", | 3953 | "excel", |
4221 | "gnumeric", | 3954 | "gnumeric", |
4222 | "ods", | 3955 | "ods", |
4223 | "php", | 3956 | "php", |
4224 | "spreadsheet", | 3957 | "spreadsheet", |
4225 | "xls", | 3958 | "xls", |
4226 | "xlsx" | 3959 | "xlsx" |
4227 | ], | 3960 | ], |
4228 | "support": { | 3961 | "support": { |
4229 | "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", | 3962 | "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", |
4230 | "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0" | 3963 | "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0" |
4231 | }, | 3964 | }, |
4232 | "time": "2023-06-14T22:48:31+00:00" | 3965 | "time": "2023-06-14T22:48:31+00:00" |
4233 | }, | 3966 | }, |
4234 | { | 3967 | { |
4235 | "name": "phpoption/phpoption", | 3968 | "name": "phpoption/phpoption", |
4236 | "version": "1.9.1", | 3969 | "version": "1.9.1", |
4237 | "source": { | 3970 | "source": { |
4238 | "type": "git", | 3971 | "type": "git", |
4239 | "url": "https://github.com/schmittjoh/php-option.git", | 3972 | "url": "https://github.com/schmittjoh/php-option.git", |
4240 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" | 3973 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" |
4241 | }, | 3974 | }, |
4242 | "dist": { | 3975 | "dist": { |
4243 | "type": "zip", | 3976 | "type": "zip", |
4244 | "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", | 3977 | "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", |
4245 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", | 3978 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", |
4246 | "shasum": "" | 3979 | "shasum": "" |
4247 | }, | 3980 | }, |
4248 | "require": { | 3981 | "require": { |
4249 | "php": "^7.2.5 || ^8.0" | 3982 | "php": "^7.2.5 || ^8.0" |
4250 | }, | 3983 | }, |
4251 | "require-dev": { | 3984 | "require-dev": { |
4252 | "bamarni/composer-bin-plugin": "^1.8.2", | 3985 | "bamarni/composer-bin-plugin": "^1.8.2", |
4253 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" | 3986 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" |
4254 | }, | 3987 | }, |
4255 | "type": "library", | 3988 | "type": "library", |
4256 | "extra": { | 3989 | "extra": { |
4257 | "bamarni-bin": { | 3990 | "bamarni-bin": { |
4258 | "bin-links": true, | 3991 | "bin-links": true, |
4259 | "forward-command": true | 3992 | "forward-command": true |
4260 | }, | 3993 | }, |
4261 | "branch-alias": { | 3994 | "branch-alias": { |
4262 | "dev-master": "1.9-dev" | 3995 | "dev-master": "1.9-dev" |
4263 | } | 3996 | } |
4264 | }, | 3997 | }, |
4265 | "autoload": { | 3998 | "autoload": { |
4266 | "psr-4": { | 3999 | "psr-4": { |
4267 | "PhpOption\\": "src/PhpOption/" | 4000 | "PhpOption\\": "src/PhpOption/" |
4268 | } | 4001 | } |
4269 | }, | 4002 | }, |
4270 | "notification-url": "https://packagist.org/downloads/", | 4003 | "notification-url": "https://packagist.org/downloads/", |
4271 | "license": [ | 4004 | "license": [ |
4272 | "Apache-2.0" | 4005 | "Apache-2.0" |
4273 | ], | 4006 | ], |
4274 | "authors": [ | 4007 | "authors": [ |
4275 | { | 4008 | { |
4276 | "name": "Johannes M. Schmitt", | 4009 | "name": "Johannes M. Schmitt", |
4277 | "email": "schmittjoh@gmail.com", | 4010 | "email": "schmittjoh@gmail.com", |
4278 | "homepage": "https://github.com/schmittjoh" | 4011 | "homepage": "https://github.com/schmittjoh" |
4279 | }, | 4012 | }, |
4280 | { | 4013 | { |
4281 | "name": "Graham Campbell", | 4014 | "name": "Graham Campbell", |
4282 | "email": "hello@gjcampbell.co.uk", | 4015 | "email": "hello@gjcampbell.co.uk", |
4283 | "homepage": "https://github.com/GrahamCampbell" | 4016 | "homepage": "https://github.com/GrahamCampbell" |
4284 | } | 4017 | } |
4285 | ], | 4018 | ], |
4286 | "description": "Option Type for PHP", | 4019 | "description": "Option Type for PHP", |
4287 | "keywords": [ | 4020 | "keywords": [ |
4288 | "language", | 4021 | "language", |
4289 | "option", | 4022 | "option", |
4290 | "php", | 4023 | "php", |
4291 | "type" | 4024 | "type" |
4292 | ], | 4025 | ], |
4293 | "support": { | 4026 | "support": { |
4294 | "issues": "https://github.com/schmittjoh/php-option/issues", | 4027 | "issues": "https://github.com/schmittjoh/php-option/issues", |
4295 | "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" | 4028 | "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" |
4296 | }, | 4029 | }, |
4297 | "funding": [ | 4030 | "funding": [ |
4298 | { | 4031 | { |
4299 | "url": "https://github.com/GrahamCampbell", | 4032 | "url": "https://github.com/GrahamCampbell", |
4300 | "type": "github" | 4033 | "type": "github" |
4301 | }, | 4034 | }, |
4302 | { | 4035 | { |
4303 | "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", | 4036 | "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", |
4304 | "type": "tidelift" | 4037 | "type": "tidelift" |
4305 | } | 4038 | } |
4306 | ], | 4039 | ], |
4307 | "time": "2023-02-25T19:38:58+00:00" | 4040 | "time": "2023-02-25T19:38:58+00:00" |
4308 | }, | 4041 | }, |
4309 | { | 4042 | { |
4043 | "name": "psr/cache", | ||
4044 | "version": "3.0.0", | ||
4045 | "source": { | ||
4046 | "type": "git", | ||
4047 | "url": "https://github.com/php-fig/cache.git", | ||
4048 | "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" | ||
4049 | }, | ||
4050 | "dist": { | ||
4051 | "type": "zip", | ||
4052 | "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", | ||
4053 | "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", | ||
4054 | "shasum": "" | ||
4055 | }, | ||
4056 | "require": { | ||
4057 | "php": ">=8.0.0" | ||
4058 | }, | ||
4059 | "type": "library", | ||
4060 | "extra": { | ||
4061 | "branch-alias": { | ||
4062 | "dev-master": "1.0.x-dev" | ||
4063 | } | ||
4064 | }, | ||
4065 | "autoload": { | ||
4066 | "psr-4": { | ||
4067 | "Psr\\Cache\\": "src/" | ||
4068 | } | ||
4069 | }, | ||
4070 | "notification-url": "https://packagist.org/downloads/", | ||
4071 | "license": [ | ||
4072 | "MIT" | ||
4073 | ], | ||
4074 | "authors": [ | ||
4075 | { | ||
4076 | "name": "PHP-FIG", | ||
4077 | "homepage": "https://www.php-fig.org/" | ||
4078 | } | ||
4079 | ], | ||
4080 | "description": "Common interface for caching libraries", | ||
4081 | "keywords": [ | ||
4082 | "cache", | ||
4083 | "psr", | ||
4084 | "psr-6" | ||
4085 | ], | ||
4086 | "support": { | ||
4087 | "source": "https://github.com/php-fig/cache/tree/3.0.0" | ||
4088 | }, | ||
4089 | "time": "2021-02-03T23:26:27+00:00" | ||
4090 | }, | ||
4091 | { | ||
4310 | "name": "psr/container", | 4092 | "name": "psr/container", |
4311 | "version": "2.0.2", | 4093 | "version": "2.0.2", |
4312 | "source": { | 4094 | "source": { |
4313 | "type": "git", | 4095 | "type": "git", |
4314 | "url": "https://github.com/php-fig/container.git", | 4096 | "url": "https://github.com/php-fig/container.git", |
4315 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" | 4097 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" |
4316 | }, | 4098 | }, |
4317 | "dist": { | 4099 | "dist": { |
4318 | "type": "zip", | 4100 | "type": "zip", |
4319 | "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", | 4101 | "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", |
4320 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", | 4102 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", |
4321 | "shasum": "" | 4103 | "shasum": "" |
4322 | }, | 4104 | }, |
4323 | "require": { | 4105 | "require": { |
4324 | "php": ">=7.4.0" | 4106 | "php": ">=7.4.0" |
4325 | }, | 4107 | }, |
4326 | "type": "library", | 4108 | "type": "library", |
4327 | "extra": { | 4109 | "extra": { |
4328 | "branch-alias": { | 4110 | "branch-alias": { |
4329 | "dev-master": "2.0.x-dev" | 4111 | "dev-master": "2.0.x-dev" |
4330 | } | 4112 | } |
4331 | }, | 4113 | }, |
4332 | "autoload": { | 4114 | "autoload": { |
4333 | "psr-4": { | 4115 | "psr-4": { |
4334 | "Psr\\Container\\": "src/" | 4116 | "Psr\\Container\\": "src/" |
4335 | } | 4117 | } |
4336 | }, | 4118 | }, |
4337 | "notification-url": "https://packagist.org/downloads/", | 4119 | "notification-url": "https://packagist.org/downloads/", |
4338 | "license": [ | 4120 | "license": [ |
4339 | "MIT" | 4121 | "MIT" |
4340 | ], | 4122 | ], |
4341 | "authors": [ | 4123 | "authors": [ |
4342 | { | 4124 | { |
4343 | "name": "PHP-FIG", | 4125 | "name": "PHP-FIG", |
4344 | "homepage": "https://www.php-fig.org/" | 4126 | "homepage": "https://www.php-fig.org/" |
4345 | } | 4127 | } |
4346 | ], | 4128 | ], |
4347 | "description": "Common Container Interface (PHP FIG PSR-11)", | 4129 | "description": "Common Container Interface (PHP FIG PSR-11)", |
4348 | "homepage": "https://github.com/php-fig/container", | 4130 | "homepage": "https://github.com/php-fig/container", |
4349 | "keywords": [ | 4131 | "keywords": [ |
4350 | "PSR-11", | 4132 | "PSR-11", |
4351 | "container", | 4133 | "container", |
4352 | "container-interface", | 4134 | "container-interface", |
4353 | "container-interop", | 4135 | "container-interop", |
4354 | "psr" | 4136 | "psr" |
4355 | ], | 4137 | ], |
4356 | "support": { | 4138 | "support": { |
4357 | "issues": "https://github.com/php-fig/container/issues", | 4139 | "issues": "https://github.com/php-fig/container/issues", |
4358 | "source": "https://github.com/php-fig/container/tree/2.0.2" | 4140 | "source": "https://github.com/php-fig/container/tree/2.0.2" |
4359 | }, | 4141 | }, |
4360 | "time": "2021-11-05T16:47:00+00:00" | 4142 | "time": "2021-11-05T16:47:00+00:00" |
4361 | }, | 4143 | }, |
4362 | { | 4144 | { |
4363 | "name": "psr/event-dispatcher", | 4145 | "name": "psr/event-dispatcher", |
4364 | "version": "1.0.0", | 4146 | "version": "1.0.0", |
4365 | "source": { | 4147 | "source": { |
4366 | "type": "git", | 4148 | "type": "git", |
4367 | "url": "https://github.com/php-fig/event-dispatcher.git", | 4149 | "url": "https://github.com/php-fig/event-dispatcher.git", |
4368 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" | 4150 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" |
4369 | }, | 4151 | }, |
4370 | "dist": { | 4152 | "dist": { |
4371 | "type": "zip", | 4153 | "type": "zip", |
4372 | "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", | 4154 | "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", |
4373 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", | 4155 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", |
4374 | "shasum": "" | 4156 | "shasum": "" |
4375 | }, | 4157 | }, |
4376 | "require": { | 4158 | "require": { |
4377 | "php": ">=7.2.0" | 4159 | "php": ">=7.2.0" |
4378 | }, | 4160 | }, |
4379 | "type": "library", | 4161 | "type": "library", |
4380 | "extra": { | 4162 | "extra": { |
4381 | "branch-alias": { | 4163 | "branch-alias": { |
4382 | "dev-master": "1.0.x-dev" | 4164 | "dev-master": "1.0.x-dev" |
4383 | } | 4165 | } |
4384 | }, | 4166 | }, |
4385 | "autoload": { | 4167 | "autoload": { |
4386 | "psr-4": { | 4168 | "psr-4": { |
4387 | "Psr\\EventDispatcher\\": "src/" | 4169 | "Psr\\EventDispatcher\\": "src/" |
4388 | } | 4170 | } |
4389 | }, | 4171 | }, |
4390 | "notification-url": "https://packagist.org/downloads/", | 4172 | "notification-url": "https://packagist.org/downloads/", |
4391 | "license": [ | 4173 | "license": [ |
4392 | "MIT" | 4174 | "MIT" |
4393 | ], | 4175 | ], |
4394 | "authors": [ | 4176 | "authors": [ |
4395 | { | 4177 | { |
4396 | "name": "PHP-FIG", | 4178 | "name": "PHP-FIG", |
4397 | "homepage": "http://www.php-fig.org/" | 4179 | "homepage": "http://www.php-fig.org/" |
4398 | } | 4180 | } |
4399 | ], | 4181 | ], |
4400 | "description": "Standard interfaces for event handling.", | 4182 | "description": "Standard interfaces for event handling.", |
4401 | "keywords": [ | 4183 | "keywords": [ |
4402 | "events", | 4184 | "events", |
4403 | "psr", | 4185 | "psr", |
4404 | "psr-14" | 4186 | "psr-14" |
4405 | ], | 4187 | ], |
4406 | "support": { | 4188 | "support": { |
4407 | "issues": "https://github.com/php-fig/event-dispatcher/issues", | 4189 | "issues": "https://github.com/php-fig/event-dispatcher/issues", |
4408 | "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" | 4190 | "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" |
4409 | }, | 4191 | }, |
4410 | "time": "2019-01-08T18:20:26+00:00" | 4192 | "time": "2019-01-08T18:20:26+00:00" |
4411 | }, | 4193 | }, |
4412 | { | 4194 | { |
4413 | "name": "psr/http-client", | 4195 | "name": "psr/http-client", |
4414 | "version": "1.0.2", | 4196 | "version": "1.0.2", |
4415 | "source": { | 4197 | "source": { |
4416 | "type": "git", | 4198 | "type": "git", |
4417 | "url": "https://github.com/php-fig/http-client.git", | 4199 | "url": "https://github.com/php-fig/http-client.git", |
4418 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" | 4200 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" |
4419 | }, | 4201 | }, |
4420 | "dist": { | 4202 | "dist": { |
4421 | "type": "zip", | 4203 | "type": "zip", |
4422 | "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", | 4204 | "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", |
4423 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", | 4205 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", |
4424 | "shasum": "" | 4206 | "shasum": "" |
4425 | }, | 4207 | }, |
4426 | "require": { | 4208 | "require": { |
4427 | "php": "^7.0 || ^8.0", | 4209 | "php": "^7.0 || ^8.0", |
4428 | "psr/http-message": "^1.0 || ^2.0" | 4210 | "psr/http-message": "^1.0 || ^2.0" |
4429 | }, | 4211 | }, |
4430 | "type": "library", | 4212 | "type": "library", |
4431 | "extra": { | 4213 | "extra": { |
4432 | "branch-alias": { | 4214 | "branch-alias": { |
4433 | "dev-master": "1.0.x-dev" | 4215 | "dev-master": "1.0.x-dev" |
4434 | } | 4216 | } |
4435 | }, | 4217 | }, |
4436 | "autoload": { | 4218 | "autoload": { |
4437 | "psr-4": { | 4219 | "psr-4": { |
4438 | "Psr\\Http\\Client\\": "src/" | 4220 | "Psr\\Http\\Client\\": "src/" |
4439 | } | 4221 | } |
4440 | }, | 4222 | }, |
4441 | "notification-url": "https://packagist.org/downloads/", | 4223 | "notification-url": "https://packagist.org/downloads/", |
4442 | "license": [ | 4224 | "license": [ |
4443 | "MIT" | 4225 | "MIT" |
4444 | ], | 4226 | ], |
4445 | "authors": [ | 4227 | "authors": [ |
4446 | { | 4228 | { |
4447 | "name": "PHP-FIG", | 4229 | "name": "PHP-FIG", |
4448 | "homepage": "https://www.php-fig.org/" | 4230 | "homepage": "https://www.php-fig.org/" |
4449 | } | 4231 | } |
4450 | ], | 4232 | ], |
4451 | "description": "Common interface for HTTP clients", | 4233 | "description": "Common interface for HTTP clients", |
4452 | "homepage": "https://github.com/php-fig/http-client", | 4234 | "homepage": "https://github.com/php-fig/http-client", |
4453 | "keywords": [ | 4235 | "keywords": [ |
4454 | "http", | 4236 | "http", |
4455 | "http-client", | 4237 | "http-client", |
4456 | "psr", | 4238 | "psr", |
4457 | "psr-18" | 4239 | "psr-18" |
4458 | ], | 4240 | ], |
4459 | "support": { | 4241 | "support": { |
4460 | "source": "https://github.com/php-fig/http-client/tree/1.0.2" | 4242 | "source": "https://github.com/php-fig/http-client/tree/1.0.2" |
4461 | }, | 4243 | }, |
4462 | "time": "2023-04-10T20:12:12+00:00" | 4244 | "time": "2023-04-10T20:12:12+00:00" |
4463 | }, | 4245 | }, |
4464 | { | 4246 | { |
4465 | "name": "psr/http-factory", | 4247 | "name": "psr/http-factory", |
4466 | "version": "1.0.2", | 4248 | "version": "1.0.2", |
4467 | "source": { | 4249 | "source": { |
4468 | "type": "git", | 4250 | "type": "git", |
4469 | "url": "https://github.com/php-fig/http-factory.git", | 4251 | "url": "https://github.com/php-fig/http-factory.git", |
4470 | "reference": "e616d01114759c4c489f93b099585439f795fe35" | 4252 | "reference": "e616d01114759c4c489f93b099585439f795fe35" |
4471 | }, | 4253 | }, |
4472 | "dist": { | 4254 | "dist": { |
4473 | "type": "zip", | 4255 | "type": "zip", |
4474 | "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", | 4256 | "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", |
4475 | "reference": "e616d01114759c4c489f93b099585439f795fe35", | 4257 | "reference": "e616d01114759c4c489f93b099585439f795fe35", |
4476 | "shasum": "" | 4258 | "shasum": "" |
4477 | }, | 4259 | }, |
4478 | "require": { | 4260 | "require": { |
4479 | "php": ">=7.0.0", | 4261 | "php": ">=7.0.0", |
4480 | "psr/http-message": "^1.0 || ^2.0" | 4262 | "psr/http-message": "^1.0 || ^2.0" |
4481 | }, | 4263 | }, |
4482 | "type": "library", | 4264 | "type": "library", |
4483 | "extra": { | 4265 | "extra": { |
4484 | "branch-alias": { | 4266 | "branch-alias": { |
4485 | "dev-master": "1.0.x-dev" | 4267 | "dev-master": "1.0.x-dev" |
4486 | } | 4268 | } |
4487 | }, | 4269 | }, |
4488 | "autoload": { | 4270 | "autoload": { |
4489 | "psr-4": { | 4271 | "psr-4": { |
4490 | "Psr\\Http\\Message\\": "src/" | 4272 | "Psr\\Http\\Message\\": "src/" |
4491 | } | 4273 | } |
4492 | }, | 4274 | }, |
4493 | "notification-url": "https://packagist.org/downloads/", | 4275 | "notification-url": "https://packagist.org/downloads/", |
4494 | "license": [ | 4276 | "license": [ |
4495 | "MIT" | 4277 | "MIT" |
4496 | ], | 4278 | ], |
4497 | "authors": [ | 4279 | "authors": [ |
4498 | { | 4280 | { |
4499 | "name": "PHP-FIG", | 4281 | "name": "PHP-FIG", |
4500 | "homepage": "https://www.php-fig.org/" | 4282 | "homepage": "https://www.php-fig.org/" |
4501 | } | 4283 | } |
4502 | ], | 4284 | ], |
4503 | "description": "Common interfaces for PSR-7 HTTP message factories", | 4285 | "description": "Common interfaces for PSR-7 HTTP message factories", |
4504 | "keywords": [ | 4286 | "keywords": [ |
4505 | "factory", | 4287 | "factory", |
4506 | "http", | 4288 | "http", |
4507 | "message", | 4289 | "message", |
4508 | "psr", | 4290 | "psr", |
4509 | "psr-17", | 4291 | "psr-17", |
4510 | "psr-7", | 4292 | "psr-7", |
4511 | "request", | 4293 | "request", |
4512 | "response" | 4294 | "response" |
4513 | ], | 4295 | ], |
4514 | "support": { | 4296 | "support": { |
4515 | "source": "https://github.com/php-fig/http-factory/tree/1.0.2" | 4297 | "source": "https://github.com/php-fig/http-factory/tree/1.0.2" |
4516 | }, | 4298 | }, |
4517 | "time": "2023-04-10T20:10:41+00:00" | 4299 | "time": "2023-04-10T20:10:41+00:00" |
4518 | }, | 4300 | }, |
4519 | { | 4301 | { |
4520 | "name": "psr/http-message", | 4302 | "name": "psr/http-message", |
4521 | "version": "2.0", | 4303 | "version": "2.0", |
4522 | "source": { | 4304 | "source": { |
4523 | "type": "git", | 4305 | "type": "git", |
4524 | "url": "https://github.com/php-fig/http-message.git", | 4306 | "url": "https://github.com/php-fig/http-message.git", |
4525 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" | 4307 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" |
4526 | }, | 4308 | }, |
4527 | "dist": { | 4309 | "dist": { |
4528 | "type": "zip", | 4310 | "type": "zip", |
4529 | "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", | 4311 | "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", |
4530 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", | 4312 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", |
4531 | "shasum": "" | 4313 | "shasum": "" |
4532 | }, | 4314 | }, |
4533 | "require": { | 4315 | "require": { |
4534 | "php": "^7.2 || ^8.0" | 4316 | "php": "^7.2 || ^8.0" |
4535 | }, | 4317 | }, |
4536 | "type": "library", | 4318 | "type": "library", |
4537 | "extra": { | 4319 | "extra": { |
4538 | "branch-alias": { | 4320 | "branch-alias": { |
4539 | "dev-master": "2.0.x-dev" | 4321 | "dev-master": "2.0.x-dev" |
4540 | } | 4322 | } |
4541 | }, | 4323 | }, |
4542 | "autoload": { | 4324 | "autoload": { |
4543 | "psr-4": { | 4325 | "psr-4": { |
4544 | "Psr\\Http\\Message\\": "src/" | 4326 | "Psr\\Http\\Message\\": "src/" |
4545 | } | 4327 | } |
4546 | }, | 4328 | }, |
4547 | "notification-url": "https://packagist.org/downloads/", | 4329 | "notification-url": "https://packagist.org/downloads/", |
4548 | "license": [ | 4330 | "license": [ |
4549 | "MIT" | 4331 | "MIT" |
4550 | ], | 4332 | ], |
4551 | "authors": [ | 4333 | "authors": [ |
4552 | { | 4334 | { |
4553 | "name": "PHP-FIG", | 4335 | "name": "PHP-FIG", |
4554 | "homepage": "https://www.php-fig.org/" | 4336 | "homepage": "https://www.php-fig.org/" |
4555 | } | 4337 | } |
4556 | ], | 4338 | ], |
4557 | "description": "Common interface for HTTP messages", | 4339 | "description": "Common interface for HTTP messages", |
4558 | "homepage": "https://github.com/php-fig/http-message", | 4340 | "homepage": "https://github.com/php-fig/http-message", |
4559 | "keywords": [ | 4341 | "keywords": [ |
4560 | "http", | 4342 | "http", |
4561 | "http-message", | 4343 | "http-message", |
4562 | "psr", | 4344 | "psr", |
4563 | "psr-7", | 4345 | "psr-7", |
4564 | "request", | 4346 | "request", |
4565 | "response" | 4347 | "response" |
4566 | ], | 4348 | ], |
4567 | "support": { | 4349 | "support": { |
4568 | "source": "https://github.com/php-fig/http-message/tree/2.0" | 4350 | "source": "https://github.com/php-fig/http-message/tree/2.0" |
4569 | }, | 4351 | }, |
4570 | "time": "2023-04-04T09:54:51+00:00" | 4352 | "time": "2023-04-04T09:54:51+00:00" |
4571 | }, | 4353 | }, |
4572 | { | 4354 | { |
4573 | "name": "psr/log", | 4355 | "name": "psr/log", |
4574 | "version": "3.0.0", | 4356 | "version": "3.0.0", |
4575 | "source": { | 4357 | "source": { |
4576 | "type": "git", | 4358 | "type": "git", |
4577 | "url": "https://github.com/php-fig/log.git", | 4359 | "url": "https://github.com/php-fig/log.git", |
4578 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" | 4360 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" |
4579 | }, | 4361 | }, |
4580 | "dist": { | 4362 | "dist": { |
4581 | "type": "zip", | 4363 | "type": "zip", |
4582 | "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", | 4364 | "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", |
4583 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", | 4365 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", |
4584 | "shasum": "" | 4366 | "shasum": "" |
4585 | }, | 4367 | }, |
4586 | "require": { | 4368 | "require": { |
4587 | "php": ">=8.0.0" | 4369 | "php": ">=8.0.0" |
4588 | }, | 4370 | }, |
4589 | "type": "library", | 4371 | "type": "library", |
4590 | "extra": { | 4372 | "extra": { |
4591 | "branch-alias": { | 4373 | "branch-alias": { |
4592 | "dev-master": "3.x-dev" | 4374 | "dev-master": "3.x-dev" |
4593 | } | 4375 | } |
4594 | }, | 4376 | }, |
4595 | "autoload": { | 4377 | "autoload": { |
4596 | "psr-4": { | 4378 | "psr-4": { |
4597 | "Psr\\Log\\": "src" | 4379 | "Psr\\Log\\": "src" |
4598 | } | 4380 | } |
4599 | }, | 4381 | }, |
4600 | "notification-url": "https://packagist.org/downloads/", | 4382 | "notification-url": "https://packagist.org/downloads/", |
4601 | "license": [ | 4383 | "license": [ |
4602 | "MIT" | 4384 | "MIT" |
4603 | ], | 4385 | ], |
4604 | "authors": [ | 4386 | "authors": [ |
4605 | { | 4387 | { |
4606 | "name": "PHP-FIG", | 4388 | "name": "PHP-FIG", |
4607 | "homepage": "https://www.php-fig.org/" | 4389 | "homepage": "https://www.php-fig.org/" |
4608 | } | 4390 | } |
4609 | ], | 4391 | ], |
4610 | "description": "Common interface for logging libraries", | 4392 | "description": "Common interface for logging libraries", |
4611 | "homepage": "https://github.com/php-fig/log", | 4393 | "homepage": "https://github.com/php-fig/log", |
4612 | "keywords": [ | 4394 | "keywords": [ |
4613 | "log", | 4395 | "log", |
4614 | "psr", | 4396 | "psr", |
4615 | "psr-3" | 4397 | "psr-3" |
4616 | ], | 4398 | ], |
4617 | "support": { | 4399 | "support": { |
4618 | "source": "https://github.com/php-fig/log/tree/3.0.0" | 4400 | "source": "https://github.com/php-fig/log/tree/3.0.0" |
4619 | }, | 4401 | }, |
4620 | "time": "2021-07-14T16:46:02+00:00" | 4402 | "time": "2021-07-14T16:46:02+00:00" |
4621 | }, | 4403 | }, |
4622 | { | 4404 | { |
4623 | "name": "psr/simple-cache", | 4405 | "name": "psr/simple-cache", |
4624 | "version": "3.0.0", | 4406 | "version": "3.0.0", |
4625 | "source": { | 4407 | "source": { |
4626 | "type": "git", | 4408 | "type": "git", |
4627 | "url": "https://github.com/php-fig/simple-cache.git", | 4409 | "url": "https://github.com/php-fig/simple-cache.git", |
4628 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" | 4410 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" |
4629 | }, | 4411 | }, |
4630 | "dist": { | 4412 | "dist": { |
4631 | "type": "zip", | 4413 | "type": "zip", |
4632 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", | 4414 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", |
4633 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", | 4415 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", |
4634 | "shasum": "" | 4416 | "shasum": "" |
4635 | }, | 4417 | }, |
4636 | "require": { | 4418 | "require": { |
4637 | "php": ">=8.0.0" | 4419 | "php": ">=8.0.0" |
4638 | }, | 4420 | }, |
4639 | "type": "library", | 4421 | "type": "library", |
4640 | "extra": { | 4422 | "extra": { |
4641 | "branch-alias": { | 4423 | "branch-alias": { |
4642 | "dev-master": "3.0.x-dev" | 4424 | "dev-master": "3.0.x-dev" |
4643 | } | 4425 | } |
4644 | }, | 4426 | }, |
4645 | "autoload": { | 4427 | "autoload": { |
4646 | "psr-4": { | 4428 | "psr-4": { |
4647 | "Psr\\SimpleCache\\": "src/" | 4429 | "Psr\\SimpleCache\\": "src/" |
4648 | } | 4430 | } |
4649 | }, | 4431 | }, |
4650 | "notification-url": "https://packagist.org/downloads/", | 4432 | "notification-url": "https://packagist.org/downloads/", |
4651 | "license": [ | 4433 | "license": [ |
4652 | "MIT" | 4434 | "MIT" |
4653 | ], | 4435 | ], |
4654 | "authors": [ | 4436 | "authors": [ |
4655 | { | 4437 | { |
4656 | "name": "PHP-FIG", | 4438 | "name": "PHP-FIG", |
4657 | "homepage": "https://www.php-fig.org/" | 4439 | "homepage": "https://www.php-fig.org/" |
4658 | } | 4440 | } |
4659 | ], | 4441 | ], |
4660 | "description": "Common interfaces for simple caching", | 4442 | "description": "Common interfaces for simple caching", |
4661 | "keywords": [ | 4443 | "keywords": [ |
4662 | "cache", | 4444 | "cache", |
4663 | "caching", | 4445 | "caching", |
4664 | "psr", | 4446 | "psr", |
4665 | "psr-16", | 4447 | "psr-16", |
4666 | "simple-cache" | 4448 | "simple-cache" |
4667 | ], | 4449 | ], |
4668 | "support": { | 4450 | "support": { |
4669 | "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" | 4451 | "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" |
4670 | }, | 4452 | }, |
4671 | "time": "2021-10-29T13:26:27+00:00" | 4453 | "time": "2021-10-29T13:26:27+00:00" |
4672 | }, | 4454 | }, |
4673 | { | 4455 | { |
4674 | "name": "psy/psysh", | 4456 | "name": "psy/psysh", |
4675 | "version": "v0.11.17", | 4457 | "version": "v0.11.17", |
4676 | "source": { | 4458 | "source": { |
4677 | "type": "git", | 4459 | "type": "git", |
4678 | "url": "https://github.com/bobthecow/psysh.git", | 4460 | "url": "https://github.com/bobthecow/psysh.git", |
4679 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a" | 4461 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a" |
4680 | }, | 4462 | }, |
4681 | "dist": { | 4463 | "dist": { |
4682 | "type": "zip", | 4464 | "type": "zip", |
4683 | "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", | 4465 | "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", |
4684 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", | 4466 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", |
4685 | "shasum": "" | 4467 | "shasum": "" |
4686 | }, | 4468 | }, |
4687 | "require": { | 4469 | "require": { |
4688 | "ext-json": "*", | 4470 | "ext-json": "*", |
4689 | "ext-tokenizer": "*", | 4471 | "ext-tokenizer": "*", |
4690 | "nikic/php-parser": "^4.0 || ^3.1", | 4472 | "nikic/php-parser": "^4.0 || ^3.1", |
4691 | "php": "^8.0 || ^7.0.8", | 4473 | "php": "^8.0 || ^7.0.8", |
4692 | "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", | 4474 | "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", |
4693 | "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" | 4475 | "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" |
4694 | }, | 4476 | }, |
4695 | "conflict": { | 4477 | "conflict": { |
4696 | "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" | 4478 | "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" |
4697 | }, | 4479 | }, |
4698 | "require-dev": { | 4480 | "require-dev": { |
4699 | "bamarni/composer-bin-plugin": "^1.2" | 4481 | "bamarni/composer-bin-plugin": "^1.2" |
4700 | }, | 4482 | }, |
4701 | "suggest": { | 4483 | "suggest": { |
4702 | "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", | 4484 | "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", |
4703 | "ext-pdo-sqlite": "The doc command requires SQLite to work.", | 4485 | "ext-pdo-sqlite": "The doc command requires SQLite to work.", |
4704 | "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", | 4486 | "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", |
4705 | "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." | 4487 | "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." |
4706 | }, | 4488 | }, |
4707 | "bin": [ | 4489 | "bin": [ |
4708 | "bin/psysh" | 4490 | "bin/psysh" |
4709 | ], | 4491 | ], |
4710 | "type": "library", | 4492 | "type": "library", |
4711 | "extra": { | 4493 | "extra": { |
4712 | "branch-alias": { | 4494 | "branch-alias": { |
4713 | "dev-main": "0.11.x-dev" | 4495 | "dev-main": "0.11.x-dev" |
4714 | } | 4496 | } |
4715 | }, | 4497 | }, |
4716 | "autoload": { | 4498 | "autoload": { |
4717 | "files": [ | 4499 | "files": [ |
4718 | "src/functions.php" | 4500 | "src/functions.php" |
4719 | ], | 4501 | ], |
4720 | "psr-4": { | 4502 | "psr-4": { |
4721 | "Psy\\": "src/" | 4503 | "Psy\\": "src/" |
4722 | } | 4504 | } |
4723 | }, | 4505 | }, |
4724 | "notification-url": "https://packagist.org/downloads/", | 4506 | "notification-url": "https://packagist.org/downloads/", |
4725 | "license": [ | 4507 | "license": [ |
4726 | "MIT" | 4508 | "MIT" |
4727 | ], | 4509 | ], |
4728 | "authors": [ | 4510 | "authors": [ |
4729 | { | 4511 | { |
4730 | "name": "Justin Hileman", | 4512 | "name": "Justin Hileman", |
4731 | "email": "justin@justinhileman.info", | 4513 | "email": "justin@justinhileman.info", |
4732 | "homepage": "http://justinhileman.com" | 4514 | "homepage": "http://justinhileman.com" |
4733 | } | 4515 | } |
4734 | ], | 4516 | ], |
4735 | "description": "An interactive shell for modern PHP.", | 4517 | "description": "An interactive shell for modern PHP.", |
4736 | "homepage": "http://psysh.org", | 4518 | "homepage": "http://psysh.org", |
4737 | "keywords": [ | 4519 | "keywords": [ |
4738 | "REPL", | 4520 | "REPL", |
4739 | "console", | 4521 | "console", |
4740 | "interactive", | 4522 | "interactive", |
4741 | "shell" | 4523 | "shell" |
4742 | ], | 4524 | ], |
4743 | "support": { | 4525 | "support": { |
4744 | "issues": "https://github.com/bobthecow/psysh/issues", | 4526 | "issues": "https://github.com/bobthecow/psysh/issues", |
4745 | "source": "https://github.com/bobthecow/psysh/tree/v0.11.17" | 4527 | "source": "https://github.com/bobthecow/psysh/tree/v0.11.17" |
4746 | }, | 4528 | }, |
4747 | "time": "2023-05-05T20:02:42+00:00" | 4529 | "time": "2023-05-05T20:02:42+00:00" |
4748 | }, | 4530 | }, |
4749 | { | 4531 | { |
4750 | "name": "ralouphie/getallheaders", | 4532 | "name": "ralouphie/getallheaders", |
4751 | "version": "3.0.3", | 4533 | "version": "3.0.3", |
4752 | "source": { | 4534 | "source": { |
4753 | "type": "git", | 4535 | "type": "git", |
4754 | "url": "https://github.com/ralouphie/getallheaders.git", | 4536 | "url": "https://github.com/ralouphie/getallheaders.git", |
4755 | "reference": "120b605dfeb996808c31b6477290a714d356e822" | 4537 | "reference": "120b605dfeb996808c31b6477290a714d356e822" |
4756 | }, | 4538 | }, |
4757 | "dist": { | 4539 | "dist": { |
4758 | "type": "zip", | 4540 | "type": "zip", |
4759 | "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", | 4541 | "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", |
4760 | "reference": "120b605dfeb996808c31b6477290a714d356e822", | 4542 | "reference": "120b605dfeb996808c31b6477290a714d356e822", |
4761 | "shasum": "" | 4543 | "shasum": "" |
4762 | }, | 4544 | }, |
4763 | "require": { | 4545 | "require": { |
4764 | "php": ">=5.6" | 4546 | "php": ">=5.6" |
4765 | }, | 4547 | }, |
4766 | "require-dev": { | 4548 | "require-dev": { |
4767 | "php-coveralls/php-coveralls": "^2.1", | 4549 | "php-coveralls/php-coveralls": "^2.1", |
4768 | "phpunit/phpunit": "^5 || ^6.5" | 4550 | "phpunit/phpunit": "^5 || ^6.5" |
4769 | }, | 4551 | }, |
4770 | "type": "library", | 4552 | "type": "library", |
4771 | "autoload": { | 4553 | "autoload": { |
4772 | "files": [ | 4554 | "files": [ |
4773 | "src/getallheaders.php" | 4555 | "src/getallheaders.php" |
4774 | ] | 4556 | ] |
4775 | }, | 4557 | }, |
4776 | "notification-url": "https://packagist.org/downloads/", | 4558 | "notification-url": "https://packagist.org/downloads/", |
4777 | "license": [ | 4559 | "license": [ |
4778 | "MIT" | 4560 | "MIT" |
4779 | ], | 4561 | ], |
4780 | "authors": [ | 4562 | "authors": [ |
4781 | { | 4563 | { |
4782 | "name": "Ralph Khattar", | 4564 | "name": "Ralph Khattar", |
4783 | "email": "ralph.khattar@gmail.com" | 4565 | "email": "ralph.khattar@gmail.com" |
4784 | } | 4566 | } |
4785 | ], | 4567 | ], |
4786 | "description": "A polyfill for getallheaders.", | 4568 | "description": "A polyfill for getallheaders.", |
4787 | "support": { | 4569 | "support": { |
4788 | "issues": "https://github.com/ralouphie/getallheaders/issues", | 4570 | "issues": "https://github.com/ralouphie/getallheaders/issues", |
4789 | "source": "https://github.com/ralouphie/getallheaders/tree/develop" | 4571 | "source": "https://github.com/ralouphie/getallheaders/tree/develop" |
4790 | }, | 4572 | }, |
4791 | "time": "2019-03-08T08:55:37+00:00" | 4573 | "time": "2019-03-08T08:55:37+00:00" |
4792 | }, | 4574 | }, |
4793 | { | 4575 | { |
4794 | "name": "ramsey/collection", | 4576 | "name": "ramsey/collection", |
4795 | "version": "1.3.0", | 4577 | "version": "1.3.0", |
4796 | "source": { | 4578 | "source": { |
4797 | "type": "git", | 4579 | "type": "git", |
4798 | "url": "https://github.com/ramsey/collection.git", | 4580 | "url": "https://github.com/ramsey/collection.git", |
4799 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4" | 4581 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4" |
4800 | }, | 4582 | }, |
4801 | "dist": { | 4583 | "dist": { |
4802 | "type": "zip", | 4584 | "type": "zip", |
4803 | "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4", | 4585 | "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4", |
4804 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4", | 4586 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4", |
4805 | "shasum": "" | 4587 | "shasum": "" |
4806 | }, | 4588 | }, |
4807 | "require": { | 4589 | "require": { |
4808 | "php": "^7.4 || ^8.0", | 4590 | "php": "^7.4 || ^8.0", |
4809 | "symfony/polyfill-php81": "^1.23" | 4591 | "symfony/polyfill-php81": "^1.23" |
4810 | }, | 4592 | }, |
4811 | "require-dev": { | 4593 | "require-dev": { |
4812 | "captainhook/plugin-composer": "^5.3", | 4594 | "captainhook/plugin-composer": "^5.3", |
4813 | "ergebnis/composer-normalize": "^2.28.3", | 4595 | "ergebnis/composer-normalize": "^2.28.3", |
4814 | "fakerphp/faker": "^1.21", | 4596 | "fakerphp/faker": "^1.21", |
4815 | "hamcrest/hamcrest-php": "^2.0", | 4597 | "hamcrest/hamcrest-php": "^2.0", |
4816 | "jangregor/phpstan-prophecy": "^1.0", | 4598 | "jangregor/phpstan-prophecy": "^1.0", |
4817 | "mockery/mockery": "^1.5", | 4599 | "mockery/mockery": "^1.5", |
4818 | "php-parallel-lint/php-console-highlighter": "^1.0", | 4600 | "php-parallel-lint/php-console-highlighter": "^1.0", |
4819 | "php-parallel-lint/php-parallel-lint": "^1.3", | 4601 | "php-parallel-lint/php-parallel-lint": "^1.3", |
4820 | "phpcsstandards/phpcsutils": "^1.0.0-rc1", | 4602 | "phpcsstandards/phpcsutils": "^1.0.0-rc1", |
4821 | "phpspec/prophecy-phpunit": "^2.0", | 4603 | "phpspec/prophecy-phpunit": "^2.0", |
4822 | "phpstan/extension-installer": "^1.2", | 4604 | "phpstan/extension-installer": "^1.2", |
4823 | "phpstan/phpstan": "^1.9", | 4605 | "phpstan/phpstan": "^1.9", |
4824 | "phpstan/phpstan-mockery": "^1.1", | 4606 | "phpstan/phpstan-mockery": "^1.1", |
4825 | "phpstan/phpstan-phpunit": "^1.3", | 4607 | "phpstan/phpstan-phpunit": "^1.3", |
4826 | "phpunit/phpunit": "^9.5", | 4608 | "phpunit/phpunit": "^9.5", |
4827 | "psalm/plugin-mockery": "^1.1", | 4609 | "psalm/plugin-mockery": "^1.1", |
4828 | "psalm/plugin-phpunit": "^0.18.4", | 4610 | "psalm/plugin-phpunit": "^0.18.4", |
4829 | "ramsey/coding-standard": "^2.0.3", | 4611 | "ramsey/coding-standard": "^2.0.3", |
4830 | "ramsey/conventional-commits": "^1.3", | 4612 | "ramsey/conventional-commits": "^1.3", |
4831 | "vimeo/psalm": "^5.4" | 4613 | "vimeo/psalm": "^5.4" |
4832 | }, | 4614 | }, |
4833 | "type": "library", | 4615 | "type": "library", |
4834 | "extra": { | 4616 | "extra": { |
4835 | "captainhook": { | 4617 | "captainhook": { |
4836 | "force-install": true | 4618 | "force-install": true |
4837 | }, | 4619 | }, |
4838 | "ramsey/conventional-commits": { | 4620 | "ramsey/conventional-commits": { |
4839 | "configFile": "conventional-commits.json" | 4621 | "configFile": "conventional-commits.json" |
4840 | } | 4622 | } |
4841 | }, | 4623 | }, |
4842 | "autoload": { | 4624 | "autoload": { |
4843 | "psr-4": { | 4625 | "psr-4": { |
4844 | "Ramsey\\Collection\\": "src/" | 4626 | "Ramsey\\Collection\\": "src/" |
4845 | } | 4627 | } |
4846 | }, | 4628 | }, |
4847 | "notification-url": "https://packagist.org/downloads/", | 4629 | "notification-url": "https://packagist.org/downloads/", |
4848 | "license": [ | 4630 | "license": [ |
4849 | "MIT" | 4631 | "MIT" |
4850 | ], | 4632 | ], |
4851 | "authors": [ | 4633 | "authors": [ |
4852 | { | 4634 | { |
4853 | "name": "Ben Ramsey", | 4635 | "name": "Ben Ramsey", |
4854 | "email": "ben@benramsey.com", | 4636 | "email": "ben@benramsey.com", |
4855 | "homepage": "https://benramsey.com" | 4637 | "homepage": "https://benramsey.com" |
4856 | } | 4638 | } |
4857 | ], | 4639 | ], |
4858 | "description": "A PHP library for representing and manipulating collections.", | 4640 | "description": "A PHP library for representing and manipulating collections.", |
4859 | "keywords": [ | 4641 | "keywords": [ |
4860 | "array", | 4642 | "array", |
4861 | "collection", | 4643 | "collection", |
4862 | "hash", | 4644 | "hash", |
4863 | "map", | 4645 | "map", |
4864 | "queue", | 4646 | "queue", |
4865 | "set" | 4647 | "set" |
4866 | ], | 4648 | ], |
4867 | "support": { | 4649 | "support": { |
4868 | "issues": "https://github.com/ramsey/collection/issues", | 4650 | "issues": "https://github.com/ramsey/collection/issues", |
4869 | "source": "https://github.com/ramsey/collection/tree/1.3.0" | 4651 | "source": "https://github.com/ramsey/collection/tree/1.3.0" |
4870 | }, | 4652 | }, |
4871 | "funding": [ | 4653 | "funding": [ |
4872 | { | 4654 | { |
4873 | "url": "https://github.com/ramsey", | 4655 | "url": "https://github.com/ramsey", |
4874 | "type": "github" | 4656 | "type": "github" |
4875 | }, | 4657 | }, |
4876 | { | 4658 | { |
4877 | "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", | 4659 | "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", |
4878 | "type": "tidelift" | 4660 | "type": "tidelift" |
4879 | } | 4661 | } |
4880 | ], | 4662 | ], |
4881 | "time": "2022-12-27T19:12:24+00:00" | 4663 | "time": "2022-12-27T19:12:24+00:00" |
4882 | }, | 4664 | }, |
4883 | { | 4665 | { |
4884 | "name": "ramsey/uuid", | 4666 | "name": "ramsey/uuid", |
4885 | "version": "4.7.4", | 4667 | "version": "4.7.4", |
4886 | "source": { | 4668 | "source": { |
4887 | "type": "git", | 4669 | "type": "git", |
4888 | "url": "https://github.com/ramsey/uuid.git", | 4670 | "url": "https://github.com/ramsey/uuid.git", |
4889 | "reference": "60a4c63ab724854332900504274f6150ff26d286" | 4671 | "reference": "60a4c63ab724854332900504274f6150ff26d286" |
4890 | }, | 4672 | }, |
4891 | "dist": { | 4673 | "dist": { |
4892 | "type": "zip", | 4674 | "type": "zip", |
4893 | "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", | 4675 | "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", |
4894 | "reference": "60a4c63ab724854332900504274f6150ff26d286", | 4676 | "reference": "60a4c63ab724854332900504274f6150ff26d286", |
4895 | "shasum": "" | 4677 | "shasum": "" |
4896 | }, | 4678 | }, |
4897 | "require": { | 4679 | "require": { |
4898 | "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", | 4680 | "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", |
4899 | "ext-json": "*", | 4681 | "ext-json": "*", |
4900 | "php": "^8.0", | 4682 | "php": "^8.0", |
4901 | "ramsey/collection": "^1.2 || ^2.0" | 4683 | "ramsey/collection": "^1.2 || ^2.0" |
4902 | }, | 4684 | }, |
4903 | "replace": { | 4685 | "replace": { |
4904 | "rhumsaa/uuid": "self.version" | 4686 | "rhumsaa/uuid": "self.version" |
4905 | }, | 4687 | }, |
4906 | "require-dev": { | 4688 | "require-dev": { |
4907 | "captainhook/captainhook": "^5.10", | 4689 | "captainhook/captainhook": "^5.10", |
4908 | "captainhook/plugin-composer": "^5.3", | 4690 | "captainhook/plugin-composer": "^5.3", |
4909 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", | 4691 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", |
4910 | "doctrine/annotations": "^1.8", | 4692 | "doctrine/annotations": "^1.8", |
4911 | "ergebnis/composer-normalize": "^2.15", | 4693 | "ergebnis/composer-normalize": "^2.15", |
4912 | "mockery/mockery": "^1.3", | 4694 | "mockery/mockery": "^1.3", |
4913 | "paragonie/random-lib": "^2", | 4695 | "paragonie/random-lib": "^2", |
4914 | "php-mock/php-mock": "^2.2", | 4696 | "php-mock/php-mock": "^2.2", |
4915 | "php-mock/php-mock-mockery": "^1.3", | 4697 | "php-mock/php-mock-mockery": "^1.3", |
4916 | "php-parallel-lint/php-parallel-lint": "^1.1", | 4698 | "php-parallel-lint/php-parallel-lint": "^1.1", |
4917 | "phpbench/phpbench": "^1.0", | 4699 | "phpbench/phpbench": "^1.0", |
4918 | "phpstan/extension-installer": "^1.1", | 4700 | "phpstan/extension-installer": "^1.1", |
4919 | "phpstan/phpstan": "^1.8", | 4701 | "phpstan/phpstan": "^1.8", |
4920 | "phpstan/phpstan-mockery": "^1.1", | 4702 | "phpstan/phpstan-mockery": "^1.1", |
4921 | "phpstan/phpstan-phpunit": "^1.1", | 4703 | "phpstan/phpstan-phpunit": "^1.1", |
4922 | "phpunit/phpunit": "^8.5 || ^9", | 4704 | "phpunit/phpunit": "^8.5 || ^9", |
4923 | "ramsey/composer-repl": "^1.4", | 4705 | "ramsey/composer-repl": "^1.4", |
4924 | "slevomat/coding-standard": "^8.4", | 4706 | "slevomat/coding-standard": "^8.4", |
4925 | "squizlabs/php_codesniffer": "^3.5", | 4707 | "squizlabs/php_codesniffer": "^3.5", |
4926 | "vimeo/psalm": "^4.9" | 4708 | "vimeo/psalm": "^4.9" |
4927 | }, | 4709 | }, |
4928 | "suggest": { | 4710 | "suggest": { |
4929 | "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", | 4711 | "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", |
4930 | "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", | 4712 | "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", |
4931 | "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", | 4713 | "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", |
4932 | "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", | 4714 | "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", |
4933 | "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." | 4715 | "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." |
4934 | }, | 4716 | }, |
4935 | "type": "library", | 4717 | "type": "library", |
4936 | "extra": { | 4718 | "extra": { |
4937 | "captainhook": { | 4719 | "captainhook": { |
4938 | "force-install": true | 4720 | "force-install": true |
4939 | } | 4721 | } |
4940 | }, | 4722 | }, |
4941 | "autoload": { | 4723 | "autoload": { |
4942 | "files": [ | 4724 | "files": [ |
4943 | "src/functions.php" | 4725 | "src/functions.php" |
4944 | ], | 4726 | ], |
4945 | "psr-4": { | 4727 | "psr-4": { |
4946 | "Ramsey\\Uuid\\": "src/" | 4728 | "Ramsey\\Uuid\\": "src/" |
4947 | } | 4729 | } |
4948 | }, | 4730 | }, |
4949 | "notification-url": "https://packagist.org/downloads/", | 4731 | "notification-url": "https://packagist.org/downloads/", |
4950 | "license": [ | 4732 | "license": [ |
4951 | "MIT" | 4733 | "MIT" |
4952 | ], | 4734 | ], |
4953 | "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", | 4735 | "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", |
4954 | "keywords": [ | 4736 | "keywords": [ |
4955 | "guid", | 4737 | "guid", |
4956 | "identifier", | 4738 | "identifier", |
4957 | "uuid" | 4739 | "uuid" |
4958 | ], | 4740 | ], |
4959 | "support": { | 4741 | "support": { |
4960 | "issues": "https://github.com/ramsey/uuid/issues", | 4742 | "issues": "https://github.com/ramsey/uuid/issues", |
4961 | "source": "https://github.com/ramsey/uuid/tree/4.7.4" | 4743 | "source": "https://github.com/ramsey/uuid/tree/4.7.4" |
4962 | }, | 4744 | }, |
4963 | "funding": [ | 4745 | "funding": [ |
4964 | { | 4746 | { |
4965 | "url": "https://github.com/ramsey", | 4747 | "url": "https://github.com/ramsey", |
4966 | "type": "github" | 4748 | "type": "github" |
4967 | }, | 4749 | }, |
4968 | { | 4750 | { |
4969 | "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", | 4751 | "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", |
4970 | "type": "tidelift" | 4752 | "type": "tidelift" |
4971 | } | 4753 | } |
4972 | ], | 4754 | ], |
4973 | "time": "2023-04-15T23:01:58+00:00" | 4755 | "time": "2023-04-15T23:01:58+00:00" |
4974 | }, | 4756 | }, |
4975 | { | 4757 | { |
4976 | "name": "sabberworm/php-css-parser", | 4758 | "name": "sabberworm/php-css-parser", |
4977 | "version": "v8.5.1", | 4759 | "version": "v8.5.1", |
4978 | "source": { | 4760 | "source": { |
4979 | "type": "git", | 4761 | "type": "git", |
4980 | "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", | 4762 | "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", |
4981 | "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152" | 4763 | "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152" |
4982 | }, | 4764 | }, |
4983 | "dist": { | 4765 | "dist": { |
4984 | "type": "zip", | 4766 | "type": "zip", |
4985 | "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152", | 4767 | "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152", |
4986 | "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152", | 4768 | "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152", |
4987 | "shasum": "" | 4769 | "shasum": "" |
4988 | }, | 4770 | }, |
4989 | "require": { | 4771 | "require": { |
4990 | "ext-iconv": "*", | 4772 | "ext-iconv": "*", |
4991 | "php": ">=5.6.20" | 4773 | "php": ">=5.6.20" |
4992 | }, | 4774 | }, |
4993 | "require-dev": { | 4775 | "require-dev": { |
4994 | "phpunit/phpunit": "^5.7.27" | 4776 | "phpunit/phpunit": "^5.7.27" |
4995 | }, | 4777 | }, |
4996 | "suggest": { | 4778 | "suggest": { |
4997 | "ext-mbstring": "for parsing UTF-8 CSS" | 4779 | "ext-mbstring": "for parsing UTF-8 CSS" |
4998 | }, | 4780 | }, |
4999 | "type": "library", | 4781 | "type": "library", |
5000 | "extra": { | 4782 | "extra": { |
5001 | "branch-alias": { | 4783 | "branch-alias": { |
5002 | "dev-main": "9.0.x-dev" | 4784 | "dev-main": "9.0.x-dev" |
5003 | } | 4785 | } |
5004 | }, | 4786 | }, |
5005 | "autoload": { | 4787 | "autoload": { |
5006 | "psr-4": { | 4788 | "psr-4": { |
5007 | "Sabberworm\\CSS\\": "src/" | 4789 | "Sabberworm\\CSS\\": "src/" |
5008 | } | 4790 | } |
5009 | }, | 4791 | }, |
5010 | "notification-url": "https://packagist.org/downloads/", | 4792 | "notification-url": "https://packagist.org/downloads/", |
5011 | "license": [ | 4793 | "license": [ |
5012 | "MIT" | 4794 | "MIT" |
5013 | ], | 4795 | ], |
5014 | "authors": [ | 4796 | "authors": [ |
5015 | { | 4797 | { |
5016 | "name": "Raphael Schweikert" | 4798 | "name": "Raphael Schweikert" |
5017 | }, | 4799 | }, |
5018 | { | 4800 | { |
5019 | "name": "Oliver Klee", | 4801 | "name": "Oliver Klee", |
5020 | "email": "github@oliverklee.de" | 4802 | "email": "github@oliverklee.de" |
5021 | }, | 4803 | }, |
5022 | { | 4804 | { |
5023 | "name": "Jake Hotson", | 4805 | "name": "Jake Hotson", |
5024 | "email": "jake.github@qzdesign.co.uk" | 4806 | "email": "jake.github@qzdesign.co.uk" |
5025 | } | 4807 | } |
5026 | ], | 4808 | ], |
5027 | "description": "Parser for CSS Files written in PHP", | 4809 | "description": "Parser for CSS Files written in PHP", |
5028 | "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", | 4810 | "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", |
5029 | "keywords": [ | 4811 | "keywords": [ |
5030 | "css", | 4812 | "css", |
5031 | "parser", | 4813 | "parser", |
5032 | "stylesheet" | 4814 | "stylesheet" |
5033 | ], | 4815 | ], |
5034 | "support": { | 4816 | "support": { |
5035 | "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", | 4817 | "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", |
5036 | "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.5.1" | 4818 | "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.5.1" |
5037 | }, | 4819 | }, |
5038 | "time": "2024-02-15T16:41:13+00:00" | 4820 | "time": "2024-02-15T16:41:13+00:00" |
5039 | }, | 4821 | }, |
5040 | { | 4822 | { |
5041 | "name": "spatie/invade", | 4823 | "name": "spatie/invade", |
5042 | "version": "1.1.1", | 4824 | "version": "1.1.1", |
5043 | "source": { | 4825 | "source": { |
5044 | "type": "git", | 4826 | "type": "git", |
5045 | "url": "https://github.com/spatie/invade.git", | 4827 | "url": "https://github.com/spatie/invade.git", |
5046 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038" | 4828 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038" |
5047 | }, | 4829 | }, |
5048 | "dist": { | 4830 | "dist": { |
5049 | "type": "zip", | 4831 | "type": "zip", |
5050 | "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038", | 4832 | "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038", |
5051 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038", | 4833 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038", |
5052 | "shasum": "" | 4834 | "shasum": "" |
5053 | }, | 4835 | }, |
5054 | "require": { | 4836 | "require": { |
5055 | "php": "^8.0" | 4837 | "php": "^8.0" |
5056 | }, | 4838 | }, |
5057 | "require-dev": { | 4839 | "require-dev": { |
5058 | "pestphp/pest": "^1.20", | 4840 | "pestphp/pest": "^1.20", |
5059 | "phpstan/phpstan": "^1.4", | 4841 | "phpstan/phpstan": "^1.4", |
5060 | "spatie/ray": "^1.28" | 4842 | "spatie/ray": "^1.28" |
5061 | }, | 4843 | }, |
5062 | "type": "library", | 4844 | "type": "library", |
5063 | "extra": { | 4845 | "extra": { |
5064 | "phpstan": { | 4846 | "phpstan": { |
5065 | "includes": [ | 4847 | "includes": [ |
5066 | "phpstan-extension.neon" | 4848 | "phpstan-extension.neon" |
5067 | ] | 4849 | ] |
5068 | } | 4850 | } |
5069 | }, | 4851 | }, |
5070 | "autoload": { | 4852 | "autoload": { |
5071 | "files": [ | 4853 | "files": [ |
5072 | "src/functions.php" | 4854 | "src/functions.php" |
5073 | ], | 4855 | ], |
5074 | "psr-4": { | 4856 | "psr-4": { |
5075 | "Spatie\\Invade\\": "src" | 4857 | "Spatie\\Invade\\": "src" |
5076 | } | 4858 | } |
5077 | }, | 4859 | }, |
5078 | "notification-url": "https://packagist.org/downloads/", | 4860 | "notification-url": "https://packagist.org/downloads/", |
5079 | "license": [ | 4861 | "license": [ |
5080 | "MIT" | 4862 | "MIT" |
5081 | ], | 4863 | ], |
5082 | "authors": [ | 4864 | "authors": [ |
5083 | { | 4865 | { |
5084 | "name": "Freek Van der Herten", | 4866 | "name": "Freek Van der Herten", |
5085 | "email": "freek@spatie.be", | 4867 | "email": "freek@spatie.be", |
5086 | "role": "Developer" | 4868 | "role": "Developer" |
5087 | } | 4869 | } |
5088 | ], | 4870 | ], |
5089 | "description": "A PHP function to work with private properties and methods", | 4871 | "description": "A PHP function to work with private properties and methods", |
5090 | "homepage": "https://github.com/spatie/invade", | 4872 | "homepage": "https://github.com/spatie/invade", |
5091 | "keywords": [ | 4873 | "keywords": [ |
5092 | "invade", | 4874 | "invade", |
5093 | "spatie" | 4875 | "spatie" |
5094 | ], | 4876 | ], |
5095 | "support": { | 4877 | "support": { |
5096 | "source": "https://github.com/spatie/invade/tree/1.1.1" | 4878 | "source": "https://github.com/spatie/invade/tree/1.1.1" |
5097 | }, | 4879 | }, |
5098 | "funding": [ | 4880 | "funding": [ |
5099 | { | 4881 | { |
5100 | "url": "https://github.com/spatie", | 4882 | "url": "https://github.com/spatie", |
5101 | "type": "github" | 4883 | "type": "github" |
5102 | } | 4884 | } |
5103 | ], | 4885 | ], |
5104 | "time": "2022-07-05T09:31:00+00:00" | 4886 | "time": "2022-07-05T09:31:00+00:00" |
5105 | }, | 4887 | }, |
5106 | { | 4888 | { |
5107 | "name": "spatie/laravel-package-tools", | 4889 | "name": "spatie/laravel-package-tools", |
5108 | "version": "1.15.0", | 4890 | "version": "1.15.0", |
5109 | "source": { | 4891 | "source": { |
5110 | "type": "git", | 4892 | "type": "git", |
5111 | "url": "https://github.com/spatie/laravel-package-tools.git", | 4893 | "url": "https://github.com/spatie/laravel-package-tools.git", |
5112 | "reference": "efab1844b8826443135201c4443690f032c3d533" | 4894 | "reference": "efab1844b8826443135201c4443690f032c3d533" |
5113 | }, | 4895 | }, |
5114 | "dist": { | 4896 | "dist": { |
5115 | "type": "zip", | 4897 | "type": "zip", |
5116 | "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533", | 4898 | "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533", |
5117 | "reference": "efab1844b8826443135201c4443690f032c3d533", | 4899 | "reference": "efab1844b8826443135201c4443690f032c3d533", |
5118 | "shasum": "" | 4900 | "shasum": "" |
5119 | }, | 4901 | }, |
5120 | "require": { | 4902 | "require": { |
5121 | "illuminate/contracts": "^9.28|^10.0", | 4903 | "illuminate/contracts": "^9.28|^10.0", |
5122 | "php": "^8.0" | 4904 | "php": "^8.0" |
5123 | }, | 4905 | }, |
5124 | "require-dev": { | 4906 | "require-dev": { |
5125 | "mockery/mockery": "^1.5", | 4907 | "mockery/mockery": "^1.5", |
5126 | "orchestra/testbench": "^7.7|^8.0", | 4908 | "orchestra/testbench": "^7.7|^8.0", |
5127 | "pestphp/pest": "^1.22", | 4909 | "pestphp/pest": "^1.22", |
5128 | "phpunit/phpunit": "^9.5.24", | 4910 | "phpunit/phpunit": "^9.5.24", |
5129 | "spatie/pest-plugin-test-time": "^1.1" | 4911 | "spatie/pest-plugin-test-time": "^1.1" |
5130 | }, | 4912 | }, |
5131 | "type": "library", | 4913 | "type": "library", |
5132 | "autoload": { | 4914 | "autoload": { |
5133 | "psr-4": { | 4915 | "psr-4": { |
5134 | "Spatie\\LaravelPackageTools\\": "src" | 4916 | "Spatie\\LaravelPackageTools\\": "src" |
5135 | } | 4917 | } |
5136 | }, | 4918 | }, |
5137 | "notification-url": "https://packagist.org/downloads/", | 4919 | "notification-url": "https://packagist.org/downloads/", |
5138 | "license": [ | 4920 | "license": [ |
5139 | "MIT" | 4921 | "MIT" |
5140 | ], | 4922 | ], |
5141 | "authors": [ | 4923 | "authors": [ |
5142 | { | 4924 | { |
5143 | "name": "Freek Van der Herten", | 4925 | "name": "Freek Van der Herten", |
5144 | "email": "freek@spatie.be", | 4926 | "email": "freek@spatie.be", |
5145 | "role": "Developer" | 4927 | "role": "Developer" |
5146 | } | 4928 | } |
5147 | ], | 4929 | ], |
5148 | "description": "Tools for creating Laravel packages", | 4930 | "description": "Tools for creating Laravel packages", |
5149 | "homepage": "https://github.com/spatie/laravel-package-tools", | 4931 | "homepage": "https://github.com/spatie/laravel-package-tools", |
5150 | "keywords": [ | 4932 | "keywords": [ |
5151 | "laravel-package-tools", | 4933 | "laravel-package-tools", |
5152 | "spatie" | 4934 | "spatie" |
5153 | ], | 4935 | ], |
5154 | "support": { | 4936 | "support": { |
5155 | "issues": "https://github.com/spatie/laravel-package-tools/issues", | 4937 | "issues": "https://github.com/spatie/laravel-package-tools/issues", |
5156 | "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0" | 4938 | "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0" |
5157 | }, | 4939 | }, |
5158 | "funding": [ | 4940 | "funding": [ |
5159 | { | 4941 | { |
5160 | "url": "https://github.com/spatie", | 4942 | "url": "https://github.com/spatie", |
5161 | "type": "github" | 4943 | "type": "github" |
5162 | } | 4944 | } |
5163 | ], | 4945 | ], |
5164 | "time": "2023-04-27T08:09:01+00:00" | 4946 | "time": "2023-04-27T08:09:01+00:00" |
5165 | }, | 4947 | }, |
5166 | { | 4948 | { |
5167 | "name": "symfony/console", | 4949 | "name": "symfony/console", |
5168 | "version": "v6.0.19", | 4950 | "version": "v6.0.19", |
5169 | "source": { | 4951 | "source": { |
5170 | "type": "git", | 4952 | "type": "git", |
5171 | "url": "https://github.com/symfony/console.git", | 4953 | "url": "https://github.com/symfony/console.git", |
5172 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed" | 4954 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed" |
5173 | }, | 4955 | }, |
5174 | "dist": { | 4956 | "dist": { |
5175 | "type": "zip", | 4957 | "type": "zip", |
5176 | "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed", | 4958 | "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed", |
5177 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed", | 4959 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed", |
5178 | "shasum": "" | 4960 | "shasum": "" |
5179 | }, | 4961 | }, |
5180 | "require": { | 4962 | "require": { |
5181 | "php": ">=8.0.2", | 4963 | "php": ">=8.0.2", |
5182 | "symfony/polyfill-mbstring": "~1.0", | 4964 | "symfony/polyfill-mbstring": "~1.0", |
5183 | "symfony/service-contracts": "^1.1|^2|^3", | 4965 | "symfony/service-contracts": "^1.1|^2|^3", |
5184 | "symfony/string": "^5.4|^6.0" | 4966 | "symfony/string": "^5.4|^6.0" |
5185 | }, | 4967 | }, |
5186 | "conflict": { | 4968 | "conflict": { |
5187 | "symfony/dependency-injection": "<5.4", | 4969 | "symfony/dependency-injection": "<5.4", |
5188 | "symfony/dotenv": "<5.4", | 4970 | "symfony/dotenv": "<5.4", |
5189 | "symfony/event-dispatcher": "<5.4", | 4971 | "symfony/event-dispatcher": "<5.4", |
5190 | "symfony/lock": "<5.4", | 4972 | "symfony/lock": "<5.4", |
5191 | "symfony/process": "<5.4" | 4973 | "symfony/process": "<5.4" |
5192 | }, | 4974 | }, |
5193 | "provide": { | 4975 | "provide": { |
5194 | "psr/log-implementation": "1.0|2.0|3.0" | 4976 | "psr/log-implementation": "1.0|2.0|3.0" |
5195 | }, | 4977 | }, |
5196 | "require-dev": { | 4978 | "require-dev": { |
5197 | "psr/log": "^1|^2|^3", | 4979 | "psr/log": "^1|^2|^3", |
5198 | "symfony/config": "^5.4|^6.0", | 4980 | "symfony/config": "^5.4|^6.0", |
5199 | "symfony/dependency-injection": "^5.4|^6.0", | 4981 | "symfony/dependency-injection": "^5.4|^6.0", |
5200 | "symfony/event-dispatcher": "^5.4|^6.0", | 4982 | "symfony/event-dispatcher": "^5.4|^6.0", |
5201 | "symfony/lock": "^5.4|^6.0", | 4983 | "symfony/lock": "^5.4|^6.0", |
5202 | "symfony/process": "^5.4|^6.0", | 4984 | "symfony/process": "^5.4|^6.0", |
5203 | "symfony/var-dumper": "^5.4|^6.0" | 4985 | "symfony/var-dumper": "^5.4|^6.0" |
5204 | }, | 4986 | }, |
5205 | "suggest": { | 4987 | "suggest": { |
5206 | "psr/log": "For using the console logger", | 4988 | "psr/log": "For using the console logger", |
5207 | "symfony/event-dispatcher": "", | 4989 | "symfony/event-dispatcher": "", |
5208 | "symfony/lock": "", | 4990 | "symfony/lock": "", |
5209 | "symfony/process": "" | 4991 | "symfony/process": "" |
5210 | }, | 4992 | }, |
5211 | "type": "library", | 4993 | "type": "library", |
5212 | "autoload": { | 4994 | "autoload": { |
5213 | "psr-4": { | 4995 | "psr-4": { |
5214 | "Symfony\\Component\\Console\\": "" | 4996 | "Symfony\\Component\\Console\\": "" |
5215 | }, | 4997 | }, |
5216 | "exclude-from-classmap": [ | 4998 | "exclude-from-classmap": [ |
5217 | "/Tests/" | 4999 | "/Tests/" |
5218 | ] | 5000 | ] |
5219 | }, | 5001 | }, |
5220 | "notification-url": "https://packagist.org/downloads/", | 5002 | "notification-url": "https://packagist.org/downloads/", |
5221 | "license": [ | 5003 | "license": [ |
5222 | "MIT" | 5004 | "MIT" |
5223 | ], | 5005 | ], |
5224 | "authors": [ | 5006 | "authors": [ |
5225 | { | 5007 | { |
5226 | "name": "Fabien Potencier", | 5008 | "name": "Fabien Potencier", |
5227 | "email": "fabien@symfony.com" | 5009 | "email": "fabien@symfony.com" |
5228 | }, | 5010 | }, |
5229 | { | 5011 | { |
5230 | "name": "Symfony Community", | 5012 | "name": "Symfony Community", |
5231 | "homepage": "https://symfony.com/contributors" | 5013 | "homepage": "https://symfony.com/contributors" |
5232 | } | 5014 | } |
5233 | ], | 5015 | ], |
5234 | "description": "Eases the creation of beautiful and testable command line interfaces", | 5016 | "description": "Eases the creation of beautiful and testable command line interfaces", |
5235 | "homepage": "https://symfony.com", | 5017 | "homepage": "https://symfony.com", |
5236 | "keywords": [ | 5018 | "keywords": [ |
5237 | "cli", | 5019 | "cli", |
5238 | "command line", | 5020 | "command line", |
5239 | "console", | 5021 | "console", |
5240 | "terminal" | 5022 | "terminal" |
5241 | ], | 5023 | ], |
5242 | "support": { | 5024 | "support": { |
5243 | "source": "https://github.com/symfony/console/tree/v6.0.19" | 5025 | "source": "https://github.com/symfony/console/tree/v6.0.19" |
5244 | }, | 5026 | }, |
5245 | "funding": [ | 5027 | "funding": [ |
5246 | { | 5028 | { |
5247 | "url": "https://symfony.com/sponsor", | 5029 | "url": "https://symfony.com/sponsor", |
5248 | "type": "custom" | 5030 | "type": "custom" |
5249 | }, | 5031 | }, |
5250 | { | 5032 | { |
5251 | "url": "https://github.com/fabpot", | 5033 | "url": "https://github.com/fabpot", |
5252 | "type": "github" | 5034 | "type": "github" |
5253 | }, | 5035 | }, |
5254 | { | 5036 | { |
5255 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5037 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5256 | "type": "tidelift" | 5038 | "type": "tidelift" |
5257 | } | 5039 | } |
5258 | ], | 5040 | ], |
5259 | "time": "2023-01-01T08:36:10+00:00" | 5041 | "time": "2023-01-01T08:36:10+00:00" |
5260 | }, | 5042 | }, |
5261 | { | 5043 | { |
5262 | "name": "symfony/css-selector", | 5044 | "name": "symfony/css-selector", |
5263 | "version": "v6.0.19", | 5045 | "version": "v6.0.19", |
5264 | "source": { | 5046 | "source": { |
5265 | "type": "git", | 5047 | "type": "git", |
5266 | "url": "https://github.com/symfony/css-selector.git", | 5048 | "url": "https://github.com/symfony/css-selector.git", |
5267 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1" | 5049 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1" |
5268 | }, | 5050 | }, |
5269 | "dist": { | 5051 | "dist": { |
5270 | "type": "zip", | 5052 | "type": "zip", |
5271 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1", | 5053 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1", |
5272 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1", | 5054 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1", |
5273 | "shasum": "" | 5055 | "shasum": "" |
5274 | }, | 5056 | }, |
5275 | "require": { | 5057 | "require": { |
5276 | "php": ">=8.0.2" | 5058 | "php": ">=8.0.2" |
5277 | }, | 5059 | }, |
5278 | "type": "library", | 5060 | "type": "library", |
5279 | "autoload": { | 5061 | "autoload": { |
5280 | "psr-4": { | 5062 | "psr-4": { |
5281 | "Symfony\\Component\\CssSelector\\": "" | 5063 | "Symfony\\Component\\CssSelector\\": "" |
5282 | }, | 5064 | }, |
5283 | "exclude-from-classmap": [ | 5065 | "exclude-from-classmap": [ |
5284 | "/Tests/" | 5066 | "/Tests/" |
5285 | ] | 5067 | ] |
5286 | }, | 5068 | }, |
5287 | "notification-url": "https://packagist.org/downloads/", | 5069 | "notification-url": "https://packagist.org/downloads/", |
5288 | "license": [ | 5070 | "license": [ |
5289 | "MIT" | 5071 | "MIT" |
5290 | ], | 5072 | ], |
5291 | "authors": [ | 5073 | "authors": [ |
5292 | { | 5074 | { |
5293 | "name": "Fabien Potencier", | 5075 | "name": "Fabien Potencier", |
5294 | "email": "fabien@symfony.com" | 5076 | "email": "fabien@symfony.com" |
5295 | }, | 5077 | }, |
5296 | { | 5078 | { |
5297 | "name": "Jean-François Simon", | 5079 | "name": "Jean-François Simon", |
5298 | "email": "jeanfrancois.simon@sensiolabs.com" | 5080 | "email": "jeanfrancois.simon@sensiolabs.com" |
5299 | }, | 5081 | }, |
5300 | { | 5082 | { |
5301 | "name": "Symfony Community", | 5083 | "name": "Symfony Community", |
5302 | "homepage": "https://symfony.com/contributors" | 5084 | "homepage": "https://symfony.com/contributors" |
5303 | } | 5085 | } |
5304 | ], | 5086 | ], |
5305 | "description": "Converts CSS selectors to XPath expressions", | 5087 | "description": "Converts CSS selectors to XPath expressions", |
5306 | "homepage": "https://symfony.com", | 5088 | "homepage": "https://symfony.com", |
5307 | "support": { | 5089 | "support": { |
5308 | "source": "https://github.com/symfony/css-selector/tree/v6.0.19" | 5090 | "source": "https://github.com/symfony/css-selector/tree/v6.0.19" |
5309 | }, | 5091 | }, |
5310 | "funding": [ | 5092 | "funding": [ |
5311 | { | 5093 | { |
5312 | "url": "https://symfony.com/sponsor", | 5094 | "url": "https://symfony.com/sponsor", |
5313 | "type": "custom" | 5095 | "type": "custom" |
5314 | }, | 5096 | }, |
5315 | { | 5097 | { |
5316 | "url": "https://github.com/fabpot", | 5098 | "url": "https://github.com/fabpot", |
5317 | "type": "github" | 5099 | "type": "github" |
5318 | }, | 5100 | }, |
5319 | { | 5101 | { |
5320 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5102 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5321 | "type": "tidelift" | 5103 | "type": "tidelift" |
5322 | } | 5104 | } |
5323 | ], | 5105 | ], |
5324 | "time": "2023-01-01T08:36:10+00:00" | 5106 | "time": "2023-01-01T08:36:10+00:00" |
5325 | }, | 5107 | }, |
5326 | { | 5108 | { |
5327 | "name": "symfony/deprecation-contracts", | 5109 | "name": "symfony/deprecation-contracts", |
5328 | "version": "v3.0.2", | 5110 | "version": "v3.0.2", |
5329 | "source": { | 5111 | "source": { |
5330 | "type": "git", | 5112 | "type": "git", |
5331 | "url": "https://github.com/symfony/deprecation-contracts.git", | 5113 | "url": "https://github.com/symfony/deprecation-contracts.git", |
5332 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c" | 5114 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c" |
5333 | }, | 5115 | }, |
5334 | "dist": { | 5116 | "dist": { |
5335 | "type": "zip", | 5117 | "type": "zip", |
5336 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", | 5118 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", |
5337 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", | 5119 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", |
5338 | "shasum": "" | 5120 | "shasum": "" |
5339 | }, | 5121 | }, |
5340 | "require": { | 5122 | "require": { |
5341 | "php": ">=8.0.2" | 5123 | "php": ">=8.0.2" |
5342 | }, | 5124 | }, |
5343 | "type": "library", | 5125 | "type": "library", |
5344 | "extra": { | 5126 | "extra": { |
5345 | "branch-alias": { | 5127 | "branch-alias": { |
5346 | "dev-main": "3.0-dev" | 5128 | "dev-main": "3.0-dev" |
5347 | }, | 5129 | }, |
5348 | "thanks": { | 5130 | "thanks": { |
5349 | "name": "symfony/contracts", | 5131 | "name": "symfony/contracts", |
5350 | "url": "https://github.com/symfony/contracts" | 5132 | "url": "https://github.com/symfony/contracts" |
5351 | } | 5133 | } |
5352 | }, | 5134 | }, |
5353 | "autoload": { | 5135 | "autoload": { |
5354 | "files": [ | 5136 | "files": [ |
5355 | "function.php" | 5137 | "function.php" |
5356 | ] | 5138 | ] |
5357 | }, | 5139 | }, |
5358 | "notification-url": "https://packagist.org/downloads/", | 5140 | "notification-url": "https://packagist.org/downloads/", |
5359 | "license": [ | 5141 | "license": [ |
5360 | "MIT" | 5142 | "MIT" |
5361 | ], | 5143 | ], |
5362 | "authors": [ | 5144 | "authors": [ |
5363 | { | 5145 | { |
5364 | "name": "Nicolas Grekas", | 5146 | "name": "Nicolas Grekas", |
5365 | "email": "p@tchwork.com" | 5147 | "email": "p@tchwork.com" |
5366 | }, | 5148 | }, |
5367 | { | 5149 | { |
5368 | "name": "Symfony Community", | 5150 | "name": "Symfony Community", |
5369 | "homepage": "https://symfony.com/contributors" | 5151 | "homepage": "https://symfony.com/contributors" |
5370 | } | 5152 | } |
5371 | ], | 5153 | ], |
5372 | "description": "A generic function and convention to trigger deprecation notices", | 5154 | "description": "A generic function and convention to trigger deprecation notices", |
5373 | "homepage": "https://symfony.com", | 5155 | "homepage": "https://symfony.com", |
5374 | "support": { | 5156 | "support": { |
5375 | "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2" | 5157 | "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2" |
5376 | }, | 5158 | }, |
5377 | "funding": [ | 5159 | "funding": [ |
5378 | { | 5160 | { |
5379 | "url": "https://symfony.com/sponsor", | 5161 | "url": "https://symfony.com/sponsor", |
5380 | "type": "custom" | 5162 | "type": "custom" |
5381 | }, | 5163 | }, |
5382 | { | 5164 | { |
5383 | "url": "https://github.com/fabpot", | 5165 | "url": "https://github.com/fabpot", |
5384 | "type": "github" | 5166 | "type": "github" |
5385 | }, | 5167 | }, |
5386 | { | 5168 | { |
5387 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5169 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5388 | "type": "tidelift" | 5170 | "type": "tidelift" |
5389 | } | 5171 | } |
5390 | ], | 5172 | ], |
5391 | "time": "2022-01-02T09:55:41+00:00" | 5173 | "time": "2022-01-02T09:55:41+00:00" |
5392 | }, | 5174 | }, |
5393 | { | 5175 | { |
5394 | "name": "symfony/error-handler", | 5176 | "name": "symfony/error-handler", |
5395 | "version": "v6.0.19", | 5177 | "version": "v6.0.19", |
5396 | "source": { | 5178 | "source": { |
5397 | "type": "git", | 5179 | "type": "git", |
5398 | "url": "https://github.com/symfony/error-handler.git", | 5180 | "url": "https://github.com/symfony/error-handler.git", |
5399 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67" | 5181 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67" |
5400 | }, | 5182 | }, |
5401 | "dist": { | 5183 | "dist": { |
5402 | "type": "zip", | 5184 | "type": "zip", |
5403 | "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67", | 5185 | "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67", |
5404 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67", | 5186 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67", |
5405 | "shasum": "" | 5187 | "shasum": "" |
5406 | }, | 5188 | }, |
5407 | "require": { | 5189 | "require": { |
5408 | "php": ">=8.0.2", | 5190 | "php": ">=8.0.2", |
5409 | "psr/log": "^1|^2|^3", | 5191 | "psr/log": "^1|^2|^3", |
5410 | "symfony/var-dumper": "^5.4|^6.0" | 5192 | "symfony/var-dumper": "^5.4|^6.0" |
5411 | }, | 5193 | }, |
5412 | "require-dev": { | 5194 | "require-dev": { |
5413 | "symfony/deprecation-contracts": "^2.1|^3", | 5195 | "symfony/deprecation-contracts": "^2.1|^3", |
5414 | "symfony/http-kernel": "^5.4|^6.0", | 5196 | "symfony/http-kernel": "^5.4|^6.0", |
5415 | "symfony/serializer": "^5.4|^6.0" | 5197 | "symfony/serializer": "^5.4|^6.0" |
5416 | }, | 5198 | }, |
5417 | "bin": [ | 5199 | "bin": [ |
5418 | "Resources/bin/patch-type-declarations" | 5200 | "Resources/bin/patch-type-declarations" |
5419 | ], | 5201 | ], |
5420 | "type": "library", | 5202 | "type": "library", |
5421 | "autoload": { | 5203 | "autoload": { |
5422 | "psr-4": { | 5204 | "psr-4": { |
5423 | "Symfony\\Component\\ErrorHandler\\": "" | 5205 | "Symfony\\Component\\ErrorHandler\\": "" |
5424 | }, | 5206 | }, |
5425 | "exclude-from-classmap": [ | 5207 | "exclude-from-classmap": [ |
5426 | "/Tests/" | 5208 | "/Tests/" |
5427 | ] | 5209 | ] |
5428 | }, | 5210 | }, |
5429 | "notification-url": "https://packagist.org/downloads/", | 5211 | "notification-url": "https://packagist.org/downloads/", |
5430 | "license": [ | 5212 | "license": [ |
5431 | "MIT" | 5213 | "MIT" |
5432 | ], | 5214 | ], |
5433 | "authors": [ | 5215 | "authors": [ |
5434 | { | 5216 | { |
5435 | "name": "Fabien Potencier", | 5217 | "name": "Fabien Potencier", |
5436 | "email": "fabien@symfony.com" | 5218 | "email": "fabien@symfony.com" |
5437 | }, | 5219 | }, |
5438 | { | 5220 | { |
5439 | "name": "Symfony Community", | 5221 | "name": "Symfony Community", |
5440 | "homepage": "https://symfony.com/contributors" | 5222 | "homepage": "https://symfony.com/contributors" |
5441 | } | 5223 | } |
5442 | ], | 5224 | ], |
5443 | "description": "Provides tools to manage errors and ease debugging PHP code", | 5225 | "description": "Provides tools to manage errors and ease debugging PHP code", |
5444 | "homepage": "https://symfony.com", | 5226 | "homepage": "https://symfony.com", |
5445 | "support": { | 5227 | "support": { |
5446 | "source": "https://github.com/symfony/error-handler/tree/v6.0.19" | 5228 | "source": "https://github.com/symfony/error-handler/tree/v6.0.19" |
5447 | }, | 5229 | }, |
5448 | "funding": [ | 5230 | "funding": [ |
5449 | { | 5231 | { |
5450 | "url": "https://symfony.com/sponsor", | 5232 | "url": "https://symfony.com/sponsor", |
5451 | "type": "custom" | 5233 | "type": "custom" |
5452 | }, | 5234 | }, |
5453 | { | 5235 | { |
5454 | "url": "https://github.com/fabpot", | 5236 | "url": "https://github.com/fabpot", |
5455 | "type": "github" | 5237 | "type": "github" |
5456 | }, | 5238 | }, |
5457 | { | 5239 | { |
5458 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5240 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5459 | "type": "tidelift" | 5241 | "type": "tidelift" |
5460 | } | 5242 | } |
5461 | ], | 5243 | ], |
5462 | "time": "2023-01-01T08:36:10+00:00" | 5244 | "time": "2023-01-01T08:36:10+00:00" |
5463 | }, | 5245 | }, |
5464 | { | 5246 | { |
5465 | "name": "symfony/event-dispatcher", | 5247 | "name": "symfony/event-dispatcher", |
5466 | "version": "v6.0.19", | 5248 | "version": "v6.0.19", |
5467 | "source": { | 5249 | "source": { |
5468 | "type": "git", | 5250 | "type": "git", |
5469 | "url": "https://github.com/symfony/event-dispatcher.git", | 5251 | "url": "https://github.com/symfony/event-dispatcher.git", |
5470 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a" | 5252 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a" |
5471 | }, | 5253 | }, |
5472 | "dist": { | 5254 | "dist": { |
5473 | "type": "zip", | 5255 | "type": "zip", |
5474 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", | 5256 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", |
5475 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", | 5257 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", |
5476 | "shasum": "" | 5258 | "shasum": "" |
5477 | }, | 5259 | }, |
5478 | "require": { | 5260 | "require": { |
5479 | "php": ">=8.0.2", | 5261 | "php": ">=8.0.2", |
5480 | "symfony/event-dispatcher-contracts": "^2|^3" | 5262 | "symfony/event-dispatcher-contracts": "^2|^3" |
5481 | }, | 5263 | }, |
5482 | "conflict": { | 5264 | "conflict": { |
5483 | "symfony/dependency-injection": "<5.4" | 5265 | "symfony/dependency-injection": "<5.4" |
5484 | }, | 5266 | }, |
5485 | "provide": { | 5267 | "provide": { |
5486 | "psr/event-dispatcher-implementation": "1.0", | 5268 | "psr/event-dispatcher-implementation": "1.0", |
5487 | "symfony/event-dispatcher-implementation": "2.0|3.0" | 5269 | "symfony/event-dispatcher-implementation": "2.0|3.0" |
5488 | }, | 5270 | }, |
5489 | "require-dev": { | 5271 | "require-dev": { |
5490 | "psr/log": "^1|^2|^3", | 5272 | "psr/log": "^1|^2|^3", |
5491 | "symfony/config": "^5.4|^6.0", | 5273 | "symfony/config": "^5.4|^6.0", |
5492 | "symfony/dependency-injection": "^5.4|^6.0", | 5274 | "symfony/dependency-injection": "^5.4|^6.0", |
5493 | "symfony/error-handler": "^5.4|^6.0", | 5275 | "symfony/error-handler": "^5.4|^6.0", |
5494 | "symfony/expression-language": "^5.4|^6.0", | 5276 | "symfony/expression-language": "^5.4|^6.0", |
5495 | "symfony/http-foundation": "^5.4|^6.0", | 5277 | "symfony/http-foundation": "^5.4|^6.0", |
5496 | "symfony/service-contracts": "^1.1|^2|^3", | 5278 | "symfony/service-contracts": "^1.1|^2|^3", |
5497 | "symfony/stopwatch": "^5.4|^6.0" | 5279 | "symfony/stopwatch": "^5.4|^6.0" |
5498 | }, | 5280 | }, |
5499 | "suggest": { | 5281 | "suggest": { |
5500 | "symfony/dependency-injection": "", | 5282 | "symfony/dependency-injection": "", |
5501 | "symfony/http-kernel": "" | 5283 | "symfony/http-kernel": "" |
5502 | }, | 5284 | }, |
5503 | "type": "library", | 5285 | "type": "library", |
5504 | "autoload": { | 5286 | "autoload": { |
5505 | "psr-4": { | 5287 | "psr-4": { |
5506 | "Symfony\\Component\\EventDispatcher\\": "" | 5288 | "Symfony\\Component\\EventDispatcher\\": "" |
5507 | }, | 5289 | }, |
5508 | "exclude-from-classmap": [ | 5290 | "exclude-from-classmap": [ |
5509 | "/Tests/" | 5291 | "/Tests/" |
5510 | ] | 5292 | ] |
5511 | }, | 5293 | }, |
5512 | "notification-url": "https://packagist.org/downloads/", | 5294 | "notification-url": "https://packagist.org/downloads/", |
5513 | "license": [ | 5295 | "license": [ |
5514 | "MIT" | 5296 | "MIT" |
5515 | ], | 5297 | ], |
5516 | "authors": [ | 5298 | "authors": [ |
5517 | { | 5299 | { |
5518 | "name": "Fabien Potencier", | 5300 | "name": "Fabien Potencier", |
5519 | "email": "fabien@symfony.com" | 5301 | "email": "fabien@symfony.com" |
5520 | }, | 5302 | }, |
5521 | { | 5303 | { |
5522 | "name": "Symfony Community", | 5304 | "name": "Symfony Community", |
5523 | "homepage": "https://symfony.com/contributors" | 5305 | "homepage": "https://symfony.com/contributors" |
5524 | } | 5306 | } |
5525 | ], | 5307 | ], |
5526 | "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", | 5308 | "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", |
5527 | "homepage": "https://symfony.com", | 5309 | "homepage": "https://symfony.com", |
5528 | "support": { | 5310 | "support": { |
5529 | "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19" | 5311 | "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19" |
5530 | }, | 5312 | }, |
5531 | "funding": [ | 5313 | "funding": [ |
5532 | { | 5314 | { |
5533 | "url": "https://symfony.com/sponsor", | 5315 | "url": "https://symfony.com/sponsor", |
5534 | "type": "custom" | 5316 | "type": "custom" |
5535 | }, | 5317 | }, |
5536 | { | 5318 | { |
5537 | "url": "https://github.com/fabpot", | 5319 | "url": "https://github.com/fabpot", |
5538 | "type": "github" | 5320 | "type": "github" |
5539 | }, | 5321 | }, |
5540 | { | 5322 | { |
5541 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5323 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5542 | "type": "tidelift" | 5324 | "type": "tidelift" |
5543 | } | 5325 | } |
5544 | ], | 5326 | ], |
5545 | "time": "2023-01-01T08:36:10+00:00" | 5327 | "time": "2023-01-01T08:36:10+00:00" |
5546 | }, | 5328 | }, |
5547 | { | 5329 | { |
5548 | "name": "symfony/event-dispatcher-contracts", | 5330 | "name": "symfony/event-dispatcher-contracts", |
5549 | "version": "v3.0.2", | 5331 | "version": "v3.0.2", |
5550 | "source": { | 5332 | "source": { |
5551 | "type": "git", | 5333 | "type": "git", |
5552 | "url": "https://github.com/symfony/event-dispatcher-contracts.git", | 5334 | "url": "https://github.com/symfony/event-dispatcher-contracts.git", |
5553 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051" | 5335 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051" |
5554 | }, | 5336 | }, |
5555 | "dist": { | 5337 | "dist": { |
5556 | "type": "zip", | 5338 | "type": "zip", |
5557 | "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051", | 5339 | "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051", |
5558 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051", | 5340 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051", |
5559 | "shasum": "" | 5341 | "shasum": "" |
5560 | }, | 5342 | }, |
5561 | "require": { | 5343 | "require": { |
5562 | "php": ">=8.0.2", | 5344 | "php": ">=8.0.2", |
5563 | "psr/event-dispatcher": "^1" | 5345 | "psr/event-dispatcher": "^1" |
5564 | }, | 5346 | }, |
5565 | "suggest": { | 5347 | "suggest": { |
5566 | "symfony/event-dispatcher-implementation": "" | 5348 | "symfony/event-dispatcher-implementation": "" |
5567 | }, | 5349 | }, |
5568 | "type": "library", | 5350 | "type": "library", |
5569 | "extra": { | 5351 | "extra": { |
5570 | "branch-alias": { | 5352 | "branch-alias": { |
5571 | "dev-main": "3.0-dev" | 5353 | "dev-main": "3.0-dev" |
5572 | }, | 5354 | }, |
5573 | "thanks": { | 5355 | "thanks": { |
5574 | "name": "symfony/contracts", | 5356 | "name": "symfony/contracts", |
5575 | "url": "https://github.com/symfony/contracts" | 5357 | "url": "https://github.com/symfony/contracts" |
5576 | } | 5358 | } |
5577 | }, | 5359 | }, |
5578 | "autoload": { | 5360 | "autoload": { |
5579 | "psr-4": { | 5361 | "psr-4": { |
5580 | "Symfony\\Contracts\\EventDispatcher\\": "" | 5362 | "Symfony\\Contracts\\EventDispatcher\\": "" |
5581 | } | 5363 | } |
5582 | }, | 5364 | }, |
5583 | "notification-url": "https://packagist.org/downloads/", | 5365 | "notification-url": "https://packagist.org/downloads/", |
5584 | "license": [ | 5366 | "license": [ |
5585 | "MIT" | 5367 | "MIT" |
5586 | ], | 5368 | ], |
5587 | "authors": [ | 5369 | "authors": [ |
5588 | { | 5370 | { |
5589 | "name": "Nicolas Grekas", | 5371 | "name": "Nicolas Grekas", |
5590 | "email": "p@tchwork.com" | 5372 | "email": "p@tchwork.com" |
5591 | }, | 5373 | }, |
5592 | { | 5374 | { |
5593 | "name": "Symfony Community", | 5375 | "name": "Symfony Community", |
5594 | "homepage": "https://symfony.com/contributors" | 5376 | "homepage": "https://symfony.com/contributors" |
5595 | } | 5377 | } |
5596 | ], | 5378 | ], |
5597 | "description": "Generic abstractions related to dispatching event", | 5379 | "description": "Generic abstractions related to dispatching event", |
5598 | "homepage": "https://symfony.com", | 5380 | "homepage": "https://symfony.com", |
5599 | "keywords": [ | 5381 | "keywords": [ |
5600 | "abstractions", | 5382 | "abstractions", |
5601 | "contracts", | 5383 | "contracts", |
5602 | "decoupling", | 5384 | "decoupling", |
5603 | "interfaces", | 5385 | "interfaces", |
5604 | "interoperability", | 5386 | "interoperability", |
5605 | "standards" | 5387 | "standards" |
5606 | ], | 5388 | ], |
5607 | "support": { | 5389 | "support": { |
5608 | "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2" | 5390 | "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2" |
5609 | }, | 5391 | }, |
5610 | "funding": [ | 5392 | "funding": [ |
5611 | { | 5393 | { |
5612 | "url": "https://symfony.com/sponsor", | 5394 | "url": "https://symfony.com/sponsor", |
5613 | "type": "custom" | 5395 | "type": "custom" |
5614 | }, | 5396 | }, |
5615 | { | 5397 | { |
5616 | "url": "https://github.com/fabpot", | 5398 | "url": "https://github.com/fabpot", |
5617 | "type": "github" | 5399 | "type": "github" |
5618 | }, | 5400 | }, |
5619 | { | 5401 | { |
5620 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5402 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5621 | "type": "tidelift" | 5403 | "type": "tidelift" |
5622 | } | 5404 | } |
5623 | ], | 5405 | ], |
5624 | "time": "2022-01-02T09:55:41+00:00" | 5406 | "time": "2022-01-02T09:55:41+00:00" |
5625 | }, | 5407 | }, |
5626 | { | 5408 | { |
5627 | "name": "symfony/finder", | 5409 | "name": "symfony/finder", |
5628 | "version": "v6.0.19", | 5410 | "version": "v6.0.19", |
5629 | "source": { | 5411 | "source": { |
5630 | "type": "git", | 5412 | "type": "git", |
5631 | "url": "https://github.com/symfony/finder.git", | 5413 | "url": "https://github.com/symfony/finder.git", |
5632 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11" | 5414 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11" |
5633 | }, | 5415 | }, |
5634 | "dist": { | 5416 | "dist": { |
5635 | "type": "zip", | 5417 | "type": "zip", |
5636 | "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11", | 5418 | "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11", |
5637 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11", | 5419 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11", |
5638 | "shasum": "" | 5420 | "shasum": "" |
5639 | }, | 5421 | }, |
5640 | "require": { | 5422 | "require": { |
5641 | "php": ">=8.0.2" | 5423 | "php": ">=8.0.2" |
5642 | }, | 5424 | }, |
5643 | "type": "library", | 5425 | "type": "library", |
5644 | "autoload": { | 5426 | "autoload": { |
5645 | "psr-4": { | 5427 | "psr-4": { |
5646 | "Symfony\\Component\\Finder\\": "" | 5428 | "Symfony\\Component\\Finder\\": "" |
5647 | }, | 5429 | }, |
5648 | "exclude-from-classmap": [ | 5430 | "exclude-from-classmap": [ |
5649 | "/Tests/" | 5431 | "/Tests/" |
5650 | ] | 5432 | ] |
5651 | }, | 5433 | }, |
5652 | "notification-url": "https://packagist.org/downloads/", | 5434 | "notification-url": "https://packagist.org/downloads/", |
5653 | "license": [ | 5435 | "license": [ |
5654 | "MIT" | 5436 | "MIT" |
5655 | ], | 5437 | ], |
5656 | "authors": [ | 5438 | "authors": [ |
5657 | { | 5439 | { |
5658 | "name": "Fabien Potencier", | 5440 | "name": "Fabien Potencier", |
5659 | "email": "fabien@symfony.com" | 5441 | "email": "fabien@symfony.com" |
5660 | }, | 5442 | }, |
5661 | { | 5443 | { |
5662 | "name": "Symfony Community", | 5444 | "name": "Symfony Community", |
5663 | "homepage": "https://symfony.com/contributors" | 5445 | "homepage": "https://symfony.com/contributors" |
5664 | } | 5446 | } |
5665 | ], | 5447 | ], |
5666 | "description": "Finds files and directories via an intuitive fluent interface", | 5448 | "description": "Finds files and directories via an intuitive fluent interface", |
5667 | "homepage": "https://symfony.com", | 5449 | "homepage": "https://symfony.com", |
5668 | "support": { | 5450 | "support": { |
5669 | "source": "https://github.com/symfony/finder/tree/v6.0.19" | 5451 | "source": "https://github.com/symfony/finder/tree/v6.0.19" |
5670 | }, | 5452 | }, |
5671 | "funding": [ | 5453 | "funding": [ |
5672 | { | 5454 | { |
5673 | "url": "https://symfony.com/sponsor", | 5455 | "url": "https://symfony.com/sponsor", |
5674 | "type": "custom" | 5456 | "type": "custom" |
5675 | }, | 5457 | }, |
5676 | { | 5458 | { |
5677 | "url": "https://github.com/fabpot", | 5459 | "url": "https://github.com/fabpot", |
5678 | "type": "github" | 5460 | "type": "github" |
5679 | }, | 5461 | }, |
5680 | { | 5462 | { |
5681 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5463 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5682 | "type": "tidelift" | 5464 | "type": "tidelift" |
5683 | } | 5465 | } |
5684 | ], | 5466 | ], |
5685 | "time": "2023-01-20T17:44:14+00:00" | 5467 | "time": "2023-01-20T17:44:14+00:00" |
5686 | }, | 5468 | }, |
5687 | { | 5469 | { |
5688 | "name": "symfony/http-foundation", | 5470 | "name": "symfony/http-foundation", |
5689 | "version": "v6.0.20", | 5471 | "version": "v6.0.20", |
5690 | "source": { | 5472 | "source": { |
5691 | "type": "git", | 5473 | "type": "git", |
5692 | "url": "https://github.com/symfony/http-foundation.git", | 5474 | "url": "https://github.com/symfony/http-foundation.git", |
5693 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6" | 5475 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6" |
5694 | }, | 5476 | }, |
5695 | "dist": { | 5477 | "dist": { |
5696 | "type": "zip", | 5478 | "type": "zip", |
5697 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6", | 5479 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6", |
5698 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6", | 5480 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6", |
5699 | "shasum": "" | 5481 | "shasum": "" |
5700 | }, | 5482 | }, |
5701 | "require": { | 5483 | "require": { |
5702 | "php": ">=8.0.2", | 5484 | "php": ">=8.0.2", |
5703 | "symfony/deprecation-contracts": "^2.1|^3", | 5485 | "symfony/deprecation-contracts": "^2.1|^3", |
5704 | "symfony/polyfill-mbstring": "~1.1" | 5486 | "symfony/polyfill-mbstring": "~1.1" |
5705 | }, | 5487 | }, |
5706 | "require-dev": { | 5488 | "require-dev": { |
5707 | "predis/predis": "~1.0", | 5489 | "predis/predis": "~1.0", |
5708 | "symfony/cache": "^5.4|^6.0", | 5490 | "symfony/cache": "^5.4|^6.0", |
5709 | "symfony/dependency-injection": "^5.4|^6.0", | 5491 | "symfony/dependency-injection": "^5.4|^6.0", |
5710 | "symfony/expression-language": "^5.4|^6.0", | 5492 | "symfony/expression-language": "^5.4|^6.0", |
5711 | "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", | 5493 | "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", |
5712 | "symfony/mime": "^5.4|^6.0", | 5494 | "symfony/mime": "^5.4|^6.0", |
5713 | "symfony/rate-limiter": "^5.2|^6.0" | 5495 | "symfony/rate-limiter": "^5.2|^6.0" |
5714 | }, | 5496 | }, |
5715 | "suggest": { | 5497 | "suggest": { |
5716 | "symfony/mime": "To use the file extension guesser" | 5498 | "symfony/mime": "To use the file extension guesser" |
5717 | }, | 5499 | }, |
5718 | "type": "library", | 5500 | "type": "library", |
5719 | "autoload": { | 5501 | "autoload": { |
5720 | "psr-4": { | 5502 | "psr-4": { |
5721 | "Symfony\\Component\\HttpFoundation\\": "" | 5503 | "Symfony\\Component\\HttpFoundation\\": "" |
5722 | }, | 5504 | }, |
5723 | "exclude-from-classmap": [ | 5505 | "exclude-from-classmap": [ |
5724 | "/Tests/" | 5506 | "/Tests/" |
5725 | ] | 5507 | ] |
5726 | }, | 5508 | }, |
5727 | "notification-url": "https://packagist.org/downloads/", | 5509 | "notification-url": "https://packagist.org/downloads/", |
5728 | "license": [ | 5510 | "license": [ |
5729 | "MIT" | 5511 | "MIT" |
5730 | ], | 5512 | ], |
5731 | "authors": [ | 5513 | "authors": [ |
5732 | { | 5514 | { |
5733 | "name": "Fabien Potencier", | 5515 | "name": "Fabien Potencier", |
5734 | "email": "fabien@symfony.com" | 5516 | "email": "fabien@symfony.com" |
5735 | }, | 5517 | }, |
5736 | { | 5518 | { |
5737 | "name": "Symfony Community", | 5519 | "name": "Symfony Community", |
5738 | "homepage": "https://symfony.com/contributors" | 5520 | "homepage": "https://symfony.com/contributors" |
5739 | } | 5521 | } |
5740 | ], | 5522 | ], |
5741 | "description": "Defines an object-oriented layer for the HTTP specification", | 5523 | "description": "Defines an object-oriented layer for the HTTP specification", |
5742 | "homepage": "https://symfony.com", | 5524 | "homepage": "https://symfony.com", |
5743 | "support": { | 5525 | "support": { |
5744 | "source": "https://github.com/symfony/http-foundation/tree/v6.0.20" | 5526 | "source": "https://github.com/symfony/http-foundation/tree/v6.0.20" |
5745 | }, | 5527 | }, |
5746 | "funding": [ | 5528 | "funding": [ |
5747 | { | 5529 | { |
5748 | "url": "https://symfony.com/sponsor", | 5530 | "url": "https://symfony.com/sponsor", |
5749 | "type": "custom" | 5531 | "type": "custom" |
5750 | }, | 5532 | }, |
5751 | { | 5533 | { |
5752 | "url": "https://github.com/fabpot", | 5534 | "url": "https://github.com/fabpot", |
5753 | "type": "github" | 5535 | "type": "github" |
5754 | }, | 5536 | }, |
5755 | { | 5537 | { |
5756 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5538 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5757 | "type": "tidelift" | 5539 | "type": "tidelift" |
5758 | } | 5540 | } |
5759 | ], | 5541 | ], |
5760 | "time": "2023-01-30T15:41:07+00:00" | 5542 | "time": "2023-01-30T15:41:07+00:00" |
5761 | }, | 5543 | }, |
5762 | { | 5544 | { |
5763 | "name": "symfony/http-kernel", | 5545 | "name": "symfony/http-kernel", |
5764 | "version": "v6.0.20", | 5546 | "version": "v6.0.20", |
5765 | "source": { | 5547 | "source": { |
5766 | "type": "git", | 5548 | "type": "git", |
5767 | "url": "https://github.com/symfony/http-kernel.git", | 5549 | "url": "https://github.com/symfony/http-kernel.git", |
5768 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349" | 5550 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349" |
5769 | }, | 5551 | }, |
5770 | "dist": { | 5552 | "dist": { |
5771 | "type": "zip", | 5553 | "type": "zip", |
5772 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349", | 5554 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349", |
5773 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349", | 5555 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349", |
5774 | "shasum": "" | 5556 | "shasum": "" |
5775 | }, | 5557 | }, |
5776 | "require": { | 5558 | "require": { |
5777 | "php": ">=8.0.2", | 5559 | "php": ">=8.0.2", |
5778 | "psr/log": "^1|^2|^3", | 5560 | "psr/log": "^1|^2|^3", |
5779 | "symfony/error-handler": "^5.4|^6.0", | 5561 | "symfony/error-handler": "^5.4|^6.0", |
5780 | "symfony/event-dispatcher": "^5.4|^6.0", | 5562 | "symfony/event-dispatcher": "^5.4|^6.0", |
5781 | "symfony/http-foundation": "^5.4|^6.0", | 5563 | "symfony/http-foundation": "^5.4|^6.0", |
5782 | "symfony/polyfill-ctype": "^1.8" | 5564 | "symfony/polyfill-ctype": "^1.8" |
5783 | }, | 5565 | }, |
5784 | "conflict": { | 5566 | "conflict": { |
5785 | "symfony/browser-kit": "<5.4", | 5567 | "symfony/browser-kit": "<5.4", |
5786 | "symfony/cache": "<5.4", | 5568 | "symfony/cache": "<5.4", |
5787 | "symfony/config": "<5.4", | 5569 | "symfony/config": "<5.4", |
5788 | "symfony/console": "<5.4", | 5570 | "symfony/console": "<5.4", |
5789 | "symfony/dependency-injection": "<5.4", | 5571 | "symfony/dependency-injection": "<5.4", |
5790 | "symfony/doctrine-bridge": "<5.4", | 5572 | "symfony/doctrine-bridge": "<5.4", |
5791 | "symfony/form": "<5.4", | 5573 | "symfony/form": "<5.4", |
5792 | "symfony/http-client": "<5.4", | 5574 | "symfony/http-client": "<5.4", |
5793 | "symfony/mailer": "<5.4", | 5575 | "symfony/mailer": "<5.4", |
5794 | "symfony/messenger": "<5.4", | 5576 | "symfony/messenger": "<5.4", |
5795 | "symfony/translation": "<5.4", | 5577 | "symfony/translation": "<5.4", |
5796 | "symfony/twig-bridge": "<5.4", | 5578 | "symfony/twig-bridge": "<5.4", |
5797 | "symfony/validator": "<5.4", | 5579 | "symfony/validator": "<5.4", |
5798 | "twig/twig": "<2.13" | 5580 | "twig/twig": "<2.13" |
5799 | }, | 5581 | }, |
5800 | "provide": { | 5582 | "provide": { |
5801 | "psr/log-implementation": "1.0|2.0|3.0" | 5583 | "psr/log-implementation": "1.0|2.0|3.0" |
5802 | }, | 5584 | }, |
5803 | "require-dev": { | 5585 | "require-dev": { |
5804 | "psr/cache": "^1.0|^2.0|^3.0", | 5586 | "psr/cache": "^1.0|^2.0|^3.0", |
5805 | "symfony/browser-kit": "^5.4|^6.0", | 5587 | "symfony/browser-kit": "^5.4|^6.0", |
5806 | "symfony/config": "^5.4|^6.0", | 5588 | "symfony/config": "^5.4|^6.0", |
5807 | "symfony/console": "^5.4|^6.0", | 5589 | "symfony/console": "^5.4|^6.0", |
5808 | "symfony/css-selector": "^5.4|^6.0", | 5590 | "symfony/css-selector": "^5.4|^6.0", |
5809 | "symfony/dependency-injection": "^5.4|^6.0", | 5591 | "symfony/dependency-injection": "^5.4|^6.0", |
5810 | "symfony/dom-crawler": "^5.4|^6.0", | 5592 | "symfony/dom-crawler": "^5.4|^6.0", |
5811 | "symfony/expression-language": "^5.4|^6.0", | 5593 | "symfony/expression-language": "^5.4|^6.0", |
5812 | "symfony/finder": "^5.4|^6.0", | 5594 | "symfony/finder": "^5.4|^6.0", |
5813 | "symfony/http-client-contracts": "^1.1|^2|^3", | 5595 | "symfony/http-client-contracts": "^1.1|^2|^3", |
5814 | "symfony/process": "^5.4|^6.0", | 5596 | "symfony/process": "^5.4|^6.0", |
5815 | "symfony/routing": "^5.4|^6.0", | 5597 | "symfony/routing": "^5.4|^6.0", |
5816 | "symfony/stopwatch": "^5.4|^6.0", | 5598 | "symfony/stopwatch": "^5.4|^6.0", |
5817 | "symfony/translation": "^5.4|^6.0", | 5599 | "symfony/translation": "^5.4|^6.0", |
5818 | "symfony/translation-contracts": "^1.1|^2|^3", | 5600 | "symfony/translation-contracts": "^1.1|^2|^3", |
5819 | "twig/twig": "^2.13|^3.0.4" | 5601 | "twig/twig": "^2.13|^3.0.4" |
5820 | }, | 5602 | }, |
5821 | "suggest": { | 5603 | "suggest": { |
5822 | "symfony/browser-kit": "", | 5604 | "symfony/browser-kit": "", |
5823 | "symfony/config": "", | 5605 | "symfony/config": "", |
5824 | "symfony/console": "", | 5606 | "symfony/console": "", |
5825 | "symfony/dependency-injection": "" | 5607 | "symfony/dependency-injection": "" |
5826 | }, | 5608 | }, |
5827 | "type": "library", | 5609 | "type": "library", |
5828 | "autoload": { | 5610 | "autoload": { |
5829 | "psr-4": { | 5611 | "psr-4": { |
5830 | "Symfony\\Component\\HttpKernel\\": "" | 5612 | "Symfony\\Component\\HttpKernel\\": "" |
5831 | }, | 5613 | }, |
5832 | "exclude-from-classmap": [ | 5614 | "exclude-from-classmap": [ |
5833 | "/Tests/" | 5615 | "/Tests/" |
5834 | ] | 5616 | ] |
5835 | }, | 5617 | }, |
5836 | "notification-url": "https://packagist.org/downloads/", | 5618 | "notification-url": "https://packagist.org/downloads/", |
5837 | "license": [ | 5619 | "license": [ |
5838 | "MIT" | 5620 | "MIT" |
5839 | ], | 5621 | ], |
5840 | "authors": [ | 5622 | "authors": [ |
5841 | { | 5623 | { |
5842 | "name": "Fabien Potencier", | 5624 | "name": "Fabien Potencier", |
5843 | "email": "fabien@symfony.com" | 5625 | "email": "fabien@symfony.com" |
5844 | }, | 5626 | }, |
5845 | { | 5627 | { |
5846 | "name": "Symfony Community", | 5628 | "name": "Symfony Community", |
5847 | "homepage": "https://symfony.com/contributors" | 5629 | "homepage": "https://symfony.com/contributors" |
5848 | } | 5630 | } |
5849 | ], | 5631 | ], |
5850 | "description": "Provides a structured process for converting a Request into a Response", | 5632 | "description": "Provides a structured process for converting a Request into a Response", |
5851 | "homepage": "https://symfony.com", | 5633 | "homepage": "https://symfony.com", |
5852 | "support": { | 5634 | "support": { |
5853 | "source": "https://github.com/symfony/http-kernel/tree/v6.0.20" | 5635 | "source": "https://github.com/symfony/http-kernel/tree/v6.0.20" |
5854 | }, | 5636 | }, |
5855 | "funding": [ | 5637 | "funding": [ |
5856 | { | 5638 | { |
5857 | "url": "https://symfony.com/sponsor", | 5639 | "url": "https://symfony.com/sponsor", |
5858 | "type": "custom" | 5640 | "type": "custom" |
5859 | }, | 5641 | }, |
5860 | { | 5642 | { |
5861 | "url": "https://github.com/fabpot", | 5643 | "url": "https://github.com/fabpot", |
5862 | "type": "github" | 5644 | "type": "github" |
5863 | }, | 5645 | }, |
5864 | { | 5646 | { |
5865 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5647 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5866 | "type": "tidelift" | 5648 | "type": "tidelift" |
5867 | } | 5649 | } |
5868 | ], | 5650 | ], |
5869 | "time": "2023-02-01T08:22:55+00:00" | 5651 | "time": "2023-02-01T08:22:55+00:00" |
5870 | }, | 5652 | }, |
5871 | { | 5653 | { |
5872 | "name": "symfony/mailer", | 5654 | "name": "symfony/mailer", |
5873 | "version": "v6.0.19", | 5655 | "version": "v6.0.19", |
5874 | "source": { | 5656 | "source": { |
5875 | "type": "git", | 5657 | "type": "git", |
5876 | "url": "https://github.com/symfony/mailer.git", | 5658 | "url": "https://github.com/symfony/mailer.git", |
5877 | "reference": "cd60799210c488f545ddde2444dc1aa548322872" | 5659 | "reference": "cd60799210c488f545ddde2444dc1aa548322872" |
5878 | }, | 5660 | }, |
5879 | "dist": { | 5661 | "dist": { |
5880 | "type": "zip", | 5662 | "type": "zip", |
5881 | "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872", | 5663 | "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872", |
5882 | "reference": "cd60799210c488f545ddde2444dc1aa548322872", | 5664 | "reference": "cd60799210c488f545ddde2444dc1aa548322872", |
5883 | "shasum": "" | 5665 | "shasum": "" |
5884 | }, | 5666 | }, |
5885 | "require": { | 5667 | "require": { |
5886 | "egulias/email-validator": "^2.1.10|^3|^4", | 5668 | "egulias/email-validator": "^2.1.10|^3|^4", |
5887 | "php": ">=8.0.2", | 5669 | "php": ">=8.0.2", |
5888 | "psr/event-dispatcher": "^1", | 5670 | "psr/event-dispatcher": "^1", |
5889 | "psr/log": "^1|^2|^3", | 5671 | "psr/log": "^1|^2|^3", |
5890 | "symfony/event-dispatcher": "^5.4|^6.0", | 5672 | "symfony/event-dispatcher": "^5.4|^6.0", |
5891 | "symfony/mime": "^5.4|^6.0", | 5673 | "symfony/mime": "^5.4|^6.0", |
5892 | "symfony/service-contracts": "^1.1|^2|^3" | 5674 | "symfony/service-contracts": "^1.1|^2|^3" |
5893 | }, | 5675 | }, |
5894 | "conflict": { | 5676 | "conflict": { |
5895 | "symfony/http-kernel": "<5.4" | 5677 | "symfony/http-kernel": "<5.4" |
5896 | }, | 5678 | }, |
5897 | "require-dev": { | 5679 | "require-dev": { |
5898 | "symfony/http-client-contracts": "^1.1|^2|^3", | 5680 | "symfony/http-client-contracts": "^1.1|^2|^3", |
5899 | "symfony/messenger": "^5.4|^6.0" | 5681 | "symfony/messenger": "^5.4|^6.0" |
5900 | }, | 5682 | }, |
5901 | "type": "library", | 5683 | "type": "library", |
5902 | "autoload": { | 5684 | "autoload": { |
5903 | "psr-4": { | 5685 | "psr-4": { |
5904 | "Symfony\\Component\\Mailer\\": "" | 5686 | "Symfony\\Component\\Mailer\\": "" |
5905 | }, | 5687 | }, |
5906 | "exclude-from-classmap": [ | 5688 | "exclude-from-classmap": [ |
5907 | "/Tests/" | 5689 | "/Tests/" |
5908 | ] | 5690 | ] |
5909 | }, | 5691 | }, |
5910 | "notification-url": "https://packagist.org/downloads/", | 5692 | "notification-url": "https://packagist.org/downloads/", |
5911 | "license": [ | 5693 | "license": [ |
5912 | "MIT" | 5694 | "MIT" |
5913 | ], | 5695 | ], |
5914 | "authors": [ | 5696 | "authors": [ |
5915 | { | 5697 | { |
5916 | "name": "Fabien Potencier", | 5698 | "name": "Fabien Potencier", |
5917 | "email": "fabien@symfony.com" | 5699 | "email": "fabien@symfony.com" |
5918 | }, | 5700 | }, |
5919 | { | 5701 | { |
5920 | "name": "Symfony Community", | 5702 | "name": "Symfony Community", |
5921 | "homepage": "https://symfony.com/contributors" | 5703 | "homepage": "https://symfony.com/contributors" |
5922 | } | 5704 | } |
5923 | ], | 5705 | ], |
5924 | "description": "Helps sending emails", | 5706 | "description": "Helps sending emails", |
5925 | "homepage": "https://symfony.com", | 5707 | "homepage": "https://symfony.com", |
5926 | "support": { | 5708 | "support": { |
5927 | "source": "https://github.com/symfony/mailer/tree/v6.0.19" | 5709 | "source": "https://github.com/symfony/mailer/tree/v6.0.19" |
5928 | }, | 5710 | }, |
5929 | "funding": [ | 5711 | "funding": [ |
5930 | { | 5712 | { |
5931 | "url": "https://symfony.com/sponsor", | 5713 | "url": "https://symfony.com/sponsor", |
5932 | "type": "custom" | 5714 | "type": "custom" |
5933 | }, | 5715 | }, |
5934 | { | 5716 | { |
5935 | "url": "https://github.com/fabpot", | 5717 | "url": "https://github.com/fabpot", |
5936 | "type": "github" | 5718 | "type": "github" |
5937 | }, | 5719 | }, |
5938 | { | 5720 | { |
5939 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5721 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5940 | "type": "tidelift" | 5722 | "type": "tidelift" |
5941 | } | 5723 | } |
5942 | ], | 5724 | ], |
5943 | "time": "2023-01-11T11:50:03+00:00" | 5725 | "time": "2023-01-11T11:50:03+00:00" |
5944 | }, | 5726 | }, |
5945 | { | 5727 | { |
5946 | "name": "symfony/mime", | 5728 | "name": "symfony/mime", |
5947 | "version": "v6.0.19", | 5729 | "version": "v6.0.19", |
5948 | "source": { | 5730 | "source": { |
5949 | "type": "git", | 5731 | "type": "git", |
5950 | "url": "https://github.com/symfony/mime.git", | 5732 | "url": "https://github.com/symfony/mime.git", |
5951 | "reference": "d7052547a0070cbeadd474e172b527a00d657301" | 5733 | "reference": "d7052547a0070cbeadd474e172b527a00d657301" |
5952 | }, | 5734 | }, |
5953 | "dist": { | 5735 | "dist": { |
5954 | "type": "zip", | 5736 | "type": "zip", |
5955 | "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301", | 5737 | "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301", |
5956 | "reference": "d7052547a0070cbeadd474e172b527a00d657301", | 5738 | "reference": "d7052547a0070cbeadd474e172b527a00d657301", |
5957 | "shasum": "" | 5739 | "shasum": "" |
5958 | }, | 5740 | }, |
5959 | "require": { | 5741 | "require": { |
5960 | "php": ">=8.0.2", | 5742 | "php": ">=8.0.2", |
5961 | "symfony/polyfill-intl-idn": "^1.10", | 5743 | "symfony/polyfill-intl-idn": "^1.10", |
5962 | "symfony/polyfill-mbstring": "^1.0" | 5744 | "symfony/polyfill-mbstring": "^1.0" |
5963 | }, | 5745 | }, |
5964 | "conflict": { | 5746 | "conflict": { |
5965 | "egulias/email-validator": "~3.0.0", | 5747 | "egulias/email-validator": "~3.0.0", |
5966 | "phpdocumentor/reflection-docblock": "<3.2.2", | 5748 | "phpdocumentor/reflection-docblock": "<3.2.2", |
5967 | "phpdocumentor/type-resolver": "<1.4.0", | 5749 | "phpdocumentor/type-resolver": "<1.4.0", |
5968 | "symfony/mailer": "<5.4", | 5750 | "symfony/mailer": "<5.4", |
5969 | "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" | 5751 | "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" |
5970 | }, | 5752 | }, |
5971 | "require-dev": { | 5753 | "require-dev": { |
5972 | "egulias/email-validator": "^2.1.10|^3.1|^4", | 5754 | "egulias/email-validator": "^2.1.10|^3.1|^4", |
5973 | "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", | 5755 | "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", |
5974 | "symfony/dependency-injection": "^5.4|^6.0", | 5756 | "symfony/dependency-injection": "^5.4|^6.0", |
5975 | "symfony/property-access": "^5.4|^6.0", | 5757 | "symfony/property-access": "^5.4|^6.0", |
5976 | "symfony/property-info": "^5.4|^6.0", | 5758 | "symfony/property-info": "^5.4|^6.0", |
5977 | "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6" | 5759 | "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6" |
5978 | }, | 5760 | }, |
5979 | "type": "library", | 5761 | "type": "library", |
5980 | "autoload": { | 5762 | "autoload": { |
5981 | "psr-4": { | 5763 | "psr-4": { |
5982 | "Symfony\\Component\\Mime\\": "" | 5764 | "Symfony\\Component\\Mime\\": "" |
5983 | }, | 5765 | }, |
5984 | "exclude-from-classmap": [ | 5766 | "exclude-from-classmap": [ |
5985 | "/Tests/" | 5767 | "/Tests/" |
5986 | ] | 5768 | ] |
5987 | }, | 5769 | }, |
5988 | "notification-url": "https://packagist.org/downloads/", | 5770 | "notification-url": "https://packagist.org/downloads/", |
5989 | "license": [ | 5771 | "license": [ |
5990 | "MIT" | 5772 | "MIT" |
5991 | ], | 5773 | ], |
5992 | "authors": [ | 5774 | "authors": [ |
5993 | { | 5775 | { |
5994 | "name": "Fabien Potencier", | 5776 | "name": "Fabien Potencier", |
5995 | "email": "fabien@symfony.com" | 5777 | "email": "fabien@symfony.com" |
5996 | }, | 5778 | }, |
5997 | { | 5779 | { |
5998 | "name": "Symfony Community", | 5780 | "name": "Symfony Community", |
5999 | "homepage": "https://symfony.com/contributors" | 5781 | "homepage": "https://symfony.com/contributors" |
6000 | } | 5782 | } |
6001 | ], | 5783 | ], |
6002 | "description": "Allows manipulating MIME messages", | 5784 | "description": "Allows manipulating MIME messages", |
6003 | "homepage": "https://symfony.com", | 5785 | "homepage": "https://symfony.com", |
6004 | "keywords": [ | 5786 | "keywords": [ |
6005 | "mime", | 5787 | "mime", |
6006 | "mime-type" | 5788 | "mime-type" |
6007 | ], | 5789 | ], |
6008 | "support": { | 5790 | "support": { |
6009 | "source": "https://github.com/symfony/mime/tree/v6.0.19" | 5791 | "source": "https://github.com/symfony/mime/tree/v6.0.19" |
6010 | }, | 5792 | }, |
6011 | "funding": [ | 5793 | "funding": [ |
6012 | { | 5794 | { |
6013 | "url": "https://symfony.com/sponsor", | 5795 | "url": "https://symfony.com/sponsor", |
6014 | "type": "custom" | 5796 | "type": "custom" |
6015 | }, | 5797 | }, |
6016 | { | 5798 | { |
6017 | "url": "https://github.com/fabpot", | 5799 | "url": "https://github.com/fabpot", |
6018 | "type": "github" | 5800 | "type": "github" |
6019 | }, | 5801 | }, |
6020 | { | 5802 | { |
6021 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5803 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6022 | "type": "tidelift" | 5804 | "type": "tidelift" |
6023 | } | 5805 | } |
6024 | ], | 5806 | ], |
6025 | "time": "2023-01-11T11:50:03+00:00" | 5807 | "time": "2023-01-11T11:50:03+00:00" |
6026 | }, | 5808 | }, |
6027 | { | 5809 | { |
6028 | "name": "symfony/polyfill-ctype", | 5810 | "name": "symfony/polyfill-ctype", |
6029 | "version": "v1.27.0", | 5811 | "version": "v1.27.0", |
6030 | "source": { | 5812 | "source": { |
6031 | "type": "git", | 5813 | "type": "git", |
6032 | "url": "https://github.com/symfony/polyfill-ctype.git", | 5814 | "url": "https://github.com/symfony/polyfill-ctype.git", |
6033 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" | 5815 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" |
6034 | }, | 5816 | }, |
6035 | "dist": { | 5817 | "dist": { |
6036 | "type": "zip", | 5818 | "type": "zip", |
6037 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", | 5819 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", |
6038 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", | 5820 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", |
6039 | "shasum": "" | 5821 | "shasum": "" |
6040 | }, | 5822 | }, |
6041 | "require": { | 5823 | "require": { |
6042 | "php": ">=7.1" | 5824 | "php": ">=7.1" |
6043 | }, | 5825 | }, |
6044 | "provide": { | 5826 | "provide": { |
6045 | "ext-ctype": "*" | 5827 | "ext-ctype": "*" |
6046 | }, | 5828 | }, |
6047 | "suggest": { | 5829 | "suggest": { |
6048 | "ext-ctype": "For best performance" | 5830 | "ext-ctype": "For best performance" |
6049 | }, | 5831 | }, |
6050 | "type": "library", | 5832 | "type": "library", |
6051 | "extra": { | 5833 | "extra": { |
6052 | "branch-alias": { | 5834 | "branch-alias": { |
6053 | "dev-main": "1.27-dev" | 5835 | "dev-main": "1.27-dev" |
6054 | }, | 5836 | }, |
6055 | "thanks": { | 5837 | "thanks": { |
6056 | "name": "symfony/polyfill", | 5838 | "name": "symfony/polyfill", |
6057 | "url": "https://github.com/symfony/polyfill" | 5839 | "url": "https://github.com/symfony/polyfill" |
6058 | } | 5840 | } |
6059 | }, | 5841 | }, |
6060 | "autoload": { | 5842 | "autoload": { |
6061 | "files": [ | 5843 | "files": [ |
6062 | "bootstrap.php" | 5844 | "bootstrap.php" |
6063 | ], | 5845 | ], |
6064 | "psr-4": { | 5846 | "psr-4": { |
6065 | "Symfony\\Polyfill\\Ctype\\": "" | 5847 | "Symfony\\Polyfill\\Ctype\\": "" |
6066 | } | 5848 | } |
6067 | }, | 5849 | }, |
6068 | "notification-url": "https://packagist.org/downloads/", | 5850 | "notification-url": "https://packagist.org/downloads/", |
6069 | "license": [ | 5851 | "license": [ |
6070 | "MIT" | 5852 | "MIT" |
6071 | ], | 5853 | ], |
6072 | "authors": [ | 5854 | "authors": [ |
6073 | { | 5855 | { |
6074 | "name": "Gert de Pagter", | 5856 | "name": "Gert de Pagter", |
6075 | "email": "BackEndTea@gmail.com" | 5857 | "email": "BackEndTea@gmail.com" |
6076 | }, | 5858 | }, |
6077 | { | 5859 | { |
6078 | "name": "Symfony Community", | 5860 | "name": "Symfony Community", |
6079 | "homepage": "https://symfony.com/contributors" | 5861 | "homepage": "https://symfony.com/contributors" |
6080 | } | 5862 | } |
6081 | ], | 5863 | ], |
6082 | "description": "Symfony polyfill for ctype functions", | 5864 | "description": "Symfony polyfill for ctype functions", |
6083 | "homepage": "https://symfony.com", | 5865 | "homepage": "https://symfony.com", |
6084 | "keywords": [ | 5866 | "keywords": [ |
6085 | "compatibility", | 5867 | "compatibility", |
6086 | "ctype", | 5868 | "ctype", |
6087 | "polyfill", | 5869 | "polyfill", |
6088 | "portable" | 5870 | "portable" |
6089 | ], | 5871 | ], |
6090 | "support": { | 5872 | "support": { |
6091 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" | 5873 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" |
6092 | }, | 5874 | }, |
6093 | "funding": [ | 5875 | "funding": [ |
6094 | { | 5876 | { |
6095 | "url": "https://symfony.com/sponsor", | 5877 | "url": "https://symfony.com/sponsor", |
6096 | "type": "custom" | 5878 | "type": "custom" |
6097 | }, | 5879 | }, |
6098 | { | 5880 | { |
6099 | "url": "https://github.com/fabpot", | 5881 | "url": "https://github.com/fabpot", |
6100 | "type": "github" | 5882 | "type": "github" |
6101 | }, | 5883 | }, |
6102 | { | 5884 | { |
6103 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5885 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6104 | "type": "tidelift" | 5886 | "type": "tidelift" |
6105 | } | 5887 | } |
6106 | ], | 5888 | ], |
6107 | "time": "2022-11-03T14:55:06+00:00" | 5889 | "time": "2022-11-03T14:55:06+00:00" |
6108 | }, | 5890 | }, |
6109 | { | 5891 | { |
6110 | "name": "symfony/polyfill-intl-grapheme", | 5892 | "name": "symfony/polyfill-intl-grapheme", |
6111 | "version": "v1.27.0", | 5893 | "version": "v1.27.0", |
6112 | "source": { | 5894 | "source": { |
6113 | "type": "git", | 5895 | "type": "git", |
6114 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git", | 5896 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git", |
6115 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354" | 5897 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354" |
6116 | }, | 5898 | }, |
6117 | "dist": { | 5899 | "dist": { |
6118 | "type": "zip", | 5900 | "type": "zip", |
6119 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", | 5901 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", |
6120 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354", | 5902 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354", |
6121 | "shasum": "" | 5903 | "shasum": "" |
6122 | }, | 5904 | }, |
6123 | "require": { | 5905 | "require": { |
6124 | "php": ">=7.1" | 5906 | "php": ">=7.1" |
6125 | }, | 5907 | }, |
6126 | "suggest": { | 5908 | "suggest": { |
6127 | "ext-intl": "For best performance" | 5909 | "ext-intl": "For best performance" |
6128 | }, | 5910 | }, |
6129 | "type": "library", | 5911 | "type": "library", |
6130 | "extra": { | 5912 | "extra": { |
6131 | "branch-alias": { | 5913 | "branch-alias": { |
6132 | "dev-main": "1.27-dev" | 5914 | "dev-main": "1.27-dev" |
6133 | }, | 5915 | }, |
6134 | "thanks": { | 5916 | "thanks": { |
6135 | "name": "symfony/polyfill", | 5917 | "name": "symfony/polyfill", |
6136 | "url": "https://github.com/symfony/polyfill" | 5918 | "url": "https://github.com/symfony/polyfill" |
6137 | } | 5919 | } |
6138 | }, | 5920 | }, |
6139 | "autoload": { | 5921 | "autoload": { |
6140 | "files": [ | 5922 | "files": [ |
6141 | "bootstrap.php" | 5923 | "bootstrap.php" |
6142 | ], | 5924 | ], |
6143 | "psr-4": { | 5925 | "psr-4": { |
6144 | "Symfony\\Polyfill\\Intl\\Grapheme\\": "" | 5926 | "Symfony\\Polyfill\\Intl\\Grapheme\\": "" |
6145 | } | 5927 | } |
6146 | }, | 5928 | }, |
6147 | "notification-url": "https://packagist.org/downloads/", | 5929 | "notification-url": "https://packagist.org/downloads/", |
6148 | "license": [ | 5930 | "license": [ |
6149 | "MIT" | 5931 | "MIT" |
6150 | ], | 5932 | ], |
6151 | "authors": [ | 5933 | "authors": [ |
6152 | { | 5934 | { |
6153 | "name": "Nicolas Grekas", | 5935 | "name": "Nicolas Grekas", |
6154 | "email": "p@tchwork.com" | 5936 | "email": "p@tchwork.com" |
6155 | }, | 5937 | }, |
6156 | { | 5938 | { |
6157 | "name": "Symfony Community", | 5939 | "name": "Symfony Community", |
6158 | "homepage": "https://symfony.com/contributors" | 5940 | "homepage": "https://symfony.com/contributors" |
6159 | } | 5941 | } |
6160 | ], | 5942 | ], |
6161 | "description": "Symfony polyfill for intl's grapheme_* functions", | 5943 | "description": "Symfony polyfill for intl's grapheme_* functions", |
6162 | "homepage": "https://symfony.com", | 5944 | "homepage": "https://symfony.com", |
6163 | "keywords": [ | 5945 | "keywords": [ |
6164 | "compatibility", | 5946 | "compatibility", |
6165 | "grapheme", | 5947 | "grapheme", |
6166 | "intl", | 5948 | "intl", |
6167 | "polyfill", | 5949 | "polyfill", |
6168 | "portable", | 5950 | "portable", |
6169 | "shim" | 5951 | "shim" |
6170 | ], | 5952 | ], |
6171 | "support": { | 5953 | "support": { |
6172 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" | 5954 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" |
6173 | }, | 5955 | }, |
6174 | "funding": [ | 5956 | "funding": [ |
6175 | { | 5957 | { |
6176 | "url": "https://symfony.com/sponsor", | 5958 | "url": "https://symfony.com/sponsor", |
6177 | "type": "custom" | 5959 | "type": "custom" |
6178 | }, | 5960 | }, |
6179 | { | 5961 | { |
6180 | "url": "https://github.com/fabpot", | 5962 | "url": "https://github.com/fabpot", |
6181 | "type": "github" | 5963 | "type": "github" |
6182 | }, | 5964 | }, |
6183 | { | 5965 | { |
6184 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5966 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6185 | "type": "tidelift" | 5967 | "type": "tidelift" |
6186 | } | 5968 | } |
6187 | ], | 5969 | ], |
6188 | "time": "2022-11-03T14:55:06+00:00" | 5970 | "time": "2022-11-03T14:55:06+00:00" |
6189 | }, | 5971 | }, |
6190 | { | 5972 | { |
6191 | "name": "symfony/polyfill-intl-idn", | 5973 | "name": "symfony/polyfill-intl-idn", |
6192 | "version": "v1.27.0", | 5974 | "version": "v1.27.0", |
6193 | "source": { | 5975 | "source": { |
6194 | "type": "git", | 5976 | "type": "git", |
6195 | "url": "https://github.com/symfony/polyfill-intl-idn.git", | 5977 | "url": "https://github.com/symfony/polyfill-intl-idn.git", |
6196 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da" | 5978 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da" |
6197 | }, | 5979 | }, |
6198 | "dist": { | 5980 | "dist": { |
6199 | "type": "zip", | 5981 | "type": "zip", |
6200 | "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", | 5982 | "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", |
6201 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da", | 5983 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da", |
6202 | "shasum": "" | 5984 | "shasum": "" |
6203 | }, | 5985 | }, |
6204 | "require": { | 5986 | "require": { |
6205 | "php": ">=7.1", | 5987 | "php": ">=7.1", |
6206 | "symfony/polyfill-intl-normalizer": "^1.10", | 5988 | "symfony/polyfill-intl-normalizer": "^1.10", |
6207 | "symfony/polyfill-php72": "^1.10" | 5989 | "symfony/polyfill-php72": "^1.10" |
6208 | }, | 5990 | }, |
6209 | "suggest": { | 5991 | "suggest": { |
6210 | "ext-intl": "For best performance" | 5992 | "ext-intl": "For best performance" |
6211 | }, | 5993 | }, |
6212 | "type": "library", | 5994 | "type": "library", |
6213 | "extra": { | 5995 | "extra": { |
6214 | "branch-alias": { | 5996 | "branch-alias": { |
6215 | "dev-main": "1.27-dev" | 5997 | "dev-main": "1.27-dev" |
6216 | }, | 5998 | }, |
6217 | "thanks": { | 5999 | "thanks": { |
6218 | "name": "symfony/polyfill", | 6000 | "name": "symfony/polyfill", |
6219 | "url": "https://github.com/symfony/polyfill" | 6001 | "url": "https://github.com/symfony/polyfill" |
6220 | } | 6002 | } |
6221 | }, | 6003 | }, |
6222 | "autoload": { | 6004 | "autoload": { |
6223 | "files": [ | 6005 | "files": [ |
6224 | "bootstrap.php" | 6006 | "bootstrap.php" |
6225 | ], | 6007 | ], |
6226 | "psr-4": { | 6008 | "psr-4": { |
6227 | "Symfony\\Polyfill\\Intl\\Idn\\": "" | 6009 | "Symfony\\Polyfill\\Intl\\Idn\\": "" |
6228 | } | 6010 | } |
6229 | }, | 6011 | }, |
6230 | "notification-url": "https://packagist.org/downloads/", | 6012 | "notification-url": "https://packagist.org/downloads/", |
6231 | "license": [ | 6013 | "license": [ |
6232 | "MIT" | 6014 | "MIT" |
6233 | ], | 6015 | ], |
6234 | "authors": [ | 6016 | "authors": [ |
6235 | { | 6017 | { |
6236 | "name": "Laurent Bassin", | 6018 | "name": "Laurent Bassin", |
6237 | "email": "laurent@bassin.info" | 6019 | "email": "laurent@bassin.info" |
6238 | }, | 6020 | }, |
6239 | { | 6021 | { |
6240 | "name": "Trevor Rowbotham", | 6022 | "name": "Trevor Rowbotham", |
6241 | "email": "trevor.rowbotham@pm.me" | 6023 | "email": "trevor.rowbotham@pm.me" |
6242 | }, | 6024 | }, |
6243 | { | 6025 | { |
6244 | "name": "Symfony Community", | 6026 | "name": "Symfony Community", |
6245 | "homepage": "https://symfony.com/contributors" | 6027 | "homepage": "https://symfony.com/contributors" |
6246 | } | 6028 | } |
6247 | ], | 6029 | ], |
6248 | "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", | 6030 | "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", |
6249 | "homepage": "https://symfony.com", | 6031 | "homepage": "https://symfony.com", |
6250 | "keywords": [ | 6032 | "keywords": [ |
6251 | "compatibility", | 6033 | "compatibility", |
6252 | "idn", | 6034 | "idn", |
6253 | "intl", | 6035 | "intl", |
6254 | "polyfill", | 6036 | "polyfill", |
6255 | "portable", | 6037 | "portable", |
6256 | "shim" | 6038 | "shim" |
6257 | ], | 6039 | ], |
6258 | "support": { | 6040 | "support": { |
6259 | "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" | 6041 | "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" |
6260 | }, | 6042 | }, |
6261 | "funding": [ | 6043 | "funding": [ |
6262 | { | 6044 | { |
6263 | "url": "https://symfony.com/sponsor", | 6045 | "url": "https://symfony.com/sponsor", |
6264 | "type": "custom" | 6046 | "type": "custom" |
6265 | }, | 6047 | }, |
6266 | { | 6048 | { |
6267 | "url": "https://github.com/fabpot", | 6049 | "url": "https://github.com/fabpot", |
6268 | "type": "github" | 6050 | "type": "github" |
6269 | }, | 6051 | }, |
6270 | { | 6052 | { |
6271 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6053 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6272 | "type": "tidelift" | 6054 | "type": "tidelift" |
6273 | } | 6055 | } |
6274 | ], | 6056 | ], |
6275 | "time": "2022-11-03T14:55:06+00:00" | 6057 | "time": "2022-11-03T14:55:06+00:00" |
6276 | }, | 6058 | }, |
6277 | { | 6059 | { |
6278 | "name": "symfony/polyfill-intl-normalizer", | 6060 | "name": "symfony/polyfill-intl-normalizer", |
6279 | "version": "v1.27.0", | 6061 | "version": "v1.27.0", |
6280 | "source": { | 6062 | "source": { |
6281 | "type": "git", | 6063 | "type": "git", |
6282 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git", | 6064 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git", |
6283 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" | 6065 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" |
6284 | }, | 6066 | }, |
6285 | "dist": { | 6067 | "dist": { |
6286 | "type": "zip", | 6068 | "type": "zip", |
6287 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", | 6069 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", |
6288 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", | 6070 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", |
6289 | "shasum": "" | 6071 | "shasum": "" |
6290 | }, | 6072 | }, |
6291 | "require": { | 6073 | "require": { |
6292 | "php": ">=7.1" | 6074 | "php": ">=7.1" |
6293 | }, | 6075 | }, |
6294 | "suggest": { | 6076 | "suggest": { |
6295 | "ext-intl": "For best performance" | 6077 | "ext-intl": "For best performance" |
6296 | }, | 6078 | }, |
6297 | "type": "library", | 6079 | "type": "library", |
6298 | "extra": { | 6080 | "extra": { |
6299 | "branch-alias": { | 6081 | "branch-alias": { |
6300 | "dev-main": "1.27-dev" | 6082 | "dev-main": "1.27-dev" |
6301 | }, | 6083 | }, |
6302 | "thanks": { | 6084 | "thanks": { |
6303 | "name": "symfony/polyfill", | 6085 | "name": "symfony/polyfill", |
6304 | "url": "https://github.com/symfony/polyfill" | 6086 | "url": "https://github.com/symfony/polyfill" |
6305 | } | 6087 | } |
6306 | }, | 6088 | }, |
6307 | "autoload": { | 6089 | "autoload": { |
6308 | "files": [ | 6090 | "files": [ |
6309 | "bootstrap.php" | 6091 | "bootstrap.php" |
6310 | ], | 6092 | ], |
6311 | "psr-4": { | 6093 | "psr-4": { |
6312 | "Symfony\\Polyfill\\Intl\\Normalizer\\": "" | 6094 | "Symfony\\Polyfill\\Intl\\Normalizer\\": "" |
6313 | }, | 6095 | }, |
6314 | "classmap": [ | 6096 | "classmap": [ |
6315 | "Resources/stubs" | 6097 | "Resources/stubs" |
6316 | ] | 6098 | ] |
6317 | }, | 6099 | }, |
6318 | "notification-url": "https://packagist.org/downloads/", | 6100 | "notification-url": "https://packagist.org/downloads/", |
6319 | "license": [ | 6101 | "license": [ |
6320 | "MIT" | 6102 | "MIT" |
6321 | ], | 6103 | ], |
6322 | "authors": [ | 6104 | "authors": [ |
6323 | { | 6105 | { |
6324 | "name": "Nicolas Grekas", | 6106 | "name": "Nicolas Grekas", |
6325 | "email": "p@tchwork.com" | 6107 | "email": "p@tchwork.com" |
6326 | }, | 6108 | }, |
6327 | { | 6109 | { |
6328 | "name": "Symfony Community", | 6110 | "name": "Symfony Community", |
6329 | "homepage": "https://symfony.com/contributors" | 6111 | "homepage": "https://symfony.com/contributors" |
6330 | } | 6112 | } |
6331 | ], | 6113 | ], |
6332 | "description": "Symfony polyfill for intl's Normalizer class and related functions", | 6114 | "description": "Symfony polyfill for intl's Normalizer class and related functions", |
6333 | "homepage": "https://symfony.com", | 6115 | "homepage": "https://symfony.com", |
6334 | "keywords": [ | 6116 | "keywords": [ |
6335 | "compatibility", | 6117 | "compatibility", |
6336 | "intl", | 6118 | "intl", |
6337 | "normalizer", | 6119 | "normalizer", |
6338 | "polyfill", | 6120 | "polyfill", |
6339 | "portable", | 6121 | "portable", |
6340 | "shim" | 6122 | "shim" |
6341 | ], | 6123 | ], |
6342 | "support": { | 6124 | "support": { |
6343 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" | 6125 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" |
6344 | }, | 6126 | }, |
6345 | "funding": [ | 6127 | "funding": [ |
6346 | { | 6128 | { |
6347 | "url": "https://symfony.com/sponsor", | 6129 | "url": "https://symfony.com/sponsor", |
6348 | "type": "custom" | 6130 | "type": "custom" |
6349 | }, | 6131 | }, |
6350 | { | 6132 | { |
6351 | "url": "https://github.com/fabpot", | 6133 | "url": "https://github.com/fabpot", |
6352 | "type": "github" | 6134 | "type": "github" |
6353 | }, | 6135 | }, |
6354 | { | 6136 | { |
6355 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6137 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6356 | "type": "tidelift" | 6138 | "type": "tidelift" |
6357 | } | 6139 | } |
6358 | ], | 6140 | ], |
6359 | "time": "2022-11-03T14:55:06+00:00" | 6141 | "time": "2022-11-03T14:55:06+00:00" |
6360 | }, | 6142 | }, |
6361 | { | 6143 | { |
6362 | "name": "symfony/polyfill-mbstring", | 6144 | "name": "symfony/polyfill-mbstring", |
6363 | "version": "v1.27.0", | 6145 | "version": "v1.27.0", |
6364 | "source": { | 6146 | "source": { |
6365 | "type": "git", | 6147 | "type": "git", |
6366 | "url": "https://github.com/symfony/polyfill-mbstring.git", | 6148 | "url": "https://github.com/symfony/polyfill-mbstring.git", |
6367 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" | 6149 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" |
6368 | }, | 6150 | }, |
6369 | "dist": { | 6151 | "dist": { |
6370 | "type": "zip", | 6152 | "type": "zip", |
6371 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", | 6153 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", |
6372 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", | 6154 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", |
6373 | "shasum": "" | 6155 | "shasum": "" |
6374 | }, | 6156 | }, |
6375 | "require": { | 6157 | "require": { |
6376 | "php": ">=7.1" | 6158 | "php": ">=7.1" |
6377 | }, | 6159 | }, |
6378 | "provide": { | 6160 | "provide": { |
6379 | "ext-mbstring": "*" | 6161 | "ext-mbstring": "*" |
6380 | }, | 6162 | }, |
6381 | "suggest": { | 6163 | "suggest": { |
6382 | "ext-mbstring": "For best performance" | 6164 | "ext-mbstring": "For best performance" |
6383 | }, | 6165 | }, |
6384 | "type": "library", | 6166 | "type": "library", |
6385 | "extra": { | 6167 | "extra": { |
6386 | "branch-alias": { | 6168 | "branch-alias": { |
6387 | "dev-main": "1.27-dev" | 6169 | "dev-main": "1.27-dev" |
6388 | }, | 6170 | }, |
6389 | "thanks": { | 6171 | "thanks": { |
6390 | "name": "symfony/polyfill", | 6172 | "name": "symfony/polyfill", |
6391 | "url": "https://github.com/symfony/polyfill" | 6173 | "url": "https://github.com/symfony/polyfill" |
6392 | } | 6174 | } |
6393 | }, | 6175 | }, |
6394 | "autoload": { | 6176 | "autoload": { |
6395 | "files": [ | 6177 | "files": [ |
6396 | "bootstrap.php" | 6178 | "bootstrap.php" |
6397 | ], | 6179 | ], |
6398 | "psr-4": { | 6180 | "psr-4": { |
6399 | "Symfony\\Polyfill\\Mbstring\\": "" | 6181 | "Symfony\\Polyfill\\Mbstring\\": "" |
6400 | } | 6182 | } |
6401 | }, | 6183 | }, |
6402 | "notification-url": "https://packagist.org/downloads/", | 6184 | "notification-url": "https://packagist.org/downloads/", |
6403 | "license": [ | 6185 | "license": [ |
6404 | "MIT" | 6186 | "MIT" |
6405 | ], | 6187 | ], |
6406 | "authors": [ | 6188 | "authors": [ |
6407 | { | 6189 | { |
6408 | "name": "Nicolas Grekas", | 6190 | "name": "Nicolas Grekas", |
6409 | "email": "p@tchwork.com" | 6191 | "email": "p@tchwork.com" |
6410 | }, | 6192 | }, |
6411 | { | 6193 | { |
6412 | "name": "Symfony Community", | 6194 | "name": "Symfony Community", |
6413 | "homepage": "https://symfony.com/contributors" | 6195 | "homepage": "https://symfony.com/contributors" |
6414 | } | 6196 | } |
6415 | ], | 6197 | ], |
6416 | "description": "Symfony polyfill for the Mbstring extension", | 6198 | "description": "Symfony polyfill for the Mbstring extension", |
6417 | "homepage": "https://symfony.com", | 6199 | "homepage": "https://symfony.com", |
6418 | "keywords": [ | 6200 | "keywords": [ |
6419 | "compatibility", | 6201 | "compatibility", |
6420 | "mbstring", | 6202 | "mbstring", |
6421 | "polyfill", | 6203 | "polyfill", |
6422 | "portable", | 6204 | "portable", |
6423 | "shim" | 6205 | "shim" |
6424 | ], | 6206 | ], |
6425 | "support": { | 6207 | "support": { |
6426 | "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" | 6208 | "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" |
6427 | }, | 6209 | }, |
6428 | "funding": [ | 6210 | "funding": [ |
6429 | { | 6211 | { |
6430 | "url": "https://symfony.com/sponsor", | 6212 | "url": "https://symfony.com/sponsor", |
6431 | "type": "custom" | 6213 | "type": "custom" |
6432 | }, | 6214 | }, |
6433 | { | 6215 | { |
6434 | "url": "https://github.com/fabpot", | 6216 | "url": "https://github.com/fabpot", |
6435 | "type": "github" | 6217 | "type": "github" |
6436 | }, | 6218 | }, |
6437 | { | 6219 | { |
6438 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6220 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6439 | "type": "tidelift" | 6221 | "type": "tidelift" |
6440 | } | 6222 | } |
6441 | ], | 6223 | ], |
6442 | "time": "2022-11-03T14:55:06+00:00" | 6224 | "time": "2022-11-03T14:55:06+00:00" |
6443 | }, | 6225 | }, |
6444 | { | 6226 | { |
6445 | "name": "symfony/polyfill-php72", | 6227 | "name": "symfony/polyfill-php72", |
6446 | "version": "v1.27.0", | 6228 | "version": "v1.27.0", |
6447 | "source": { | 6229 | "source": { |
6448 | "type": "git", | 6230 | "type": "git", |
6449 | "url": "https://github.com/symfony/polyfill-php72.git", | 6231 | "url": "https://github.com/symfony/polyfill-php72.git", |
6450 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" | 6232 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" |
6451 | }, | 6233 | }, |
6452 | "dist": { | 6234 | "dist": { |
6453 | "type": "zip", | 6235 | "type": "zip", |
6454 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", | 6236 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", |
6455 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", | 6237 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", |
6456 | "shasum": "" | 6238 | "shasum": "" |
6457 | }, | 6239 | }, |
6458 | "require": { | 6240 | "require": { |
6459 | "php": ">=7.1" | 6241 | "php": ">=7.1" |
6460 | }, | 6242 | }, |
6461 | "type": "library", | 6243 | "type": "library", |
6462 | "extra": { | 6244 | "extra": { |
6463 | "branch-alias": { | 6245 | "branch-alias": { |
6464 | "dev-main": "1.27-dev" | 6246 | "dev-main": "1.27-dev" |
6465 | }, | 6247 | }, |
6466 | "thanks": { | 6248 | "thanks": { |
6467 | "name": "symfony/polyfill", | 6249 | "name": "symfony/polyfill", |
6468 | "url": "https://github.com/symfony/polyfill" | 6250 | "url": "https://github.com/symfony/polyfill" |
6469 | } | 6251 | } |
6470 | }, | 6252 | }, |
6471 | "autoload": { | 6253 | "autoload": { |
6472 | "files": [ | 6254 | "files": [ |
6473 | "bootstrap.php" | 6255 | "bootstrap.php" |
6474 | ], | 6256 | ], |
6475 | "psr-4": { | 6257 | "psr-4": { |
6476 | "Symfony\\Polyfill\\Php72\\": "" | 6258 | "Symfony\\Polyfill\\Php72\\": "" |
6477 | } | 6259 | } |
6478 | }, | 6260 | }, |
6479 | "notification-url": "https://packagist.org/downloads/", | 6261 | "notification-url": "https://packagist.org/downloads/", |
6480 | "license": [ | 6262 | "license": [ |
6481 | "MIT" | 6263 | "MIT" |
6482 | ], | 6264 | ], |
6483 | "authors": [ | 6265 | "authors": [ |
6484 | { | 6266 | { |
6485 | "name": "Nicolas Grekas", | 6267 | "name": "Nicolas Grekas", |
6486 | "email": "p@tchwork.com" | 6268 | "email": "p@tchwork.com" |
6487 | }, | 6269 | }, |
6488 | { | 6270 | { |
6489 | "name": "Symfony Community", | 6271 | "name": "Symfony Community", |
6490 | "homepage": "https://symfony.com/contributors" | 6272 | "homepage": "https://symfony.com/contributors" |
6491 | } | 6273 | } |
6492 | ], | 6274 | ], |
6493 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", | 6275 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", |
6494 | "homepage": "https://symfony.com", | 6276 | "homepage": "https://symfony.com", |
6495 | "keywords": [ | 6277 | "keywords": [ |
6496 | "compatibility", | 6278 | "compatibility", |
6497 | "polyfill", | 6279 | "polyfill", |
6498 | "portable", | 6280 | "portable", |
6499 | "shim" | 6281 | "shim" |
6500 | ], | 6282 | ], |
6501 | "support": { | 6283 | "support": { |
6502 | "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" | 6284 | "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" |
6503 | }, | 6285 | }, |
6504 | "funding": [ | 6286 | "funding": [ |
6505 | { | 6287 | { |
6506 | "url": "https://symfony.com/sponsor", | 6288 | "url": "https://symfony.com/sponsor", |
6507 | "type": "custom" | 6289 | "type": "custom" |
6508 | }, | 6290 | }, |
6509 | { | 6291 | { |
6510 | "url": "https://github.com/fabpot", | 6292 | "url": "https://github.com/fabpot", |
6511 | "type": "github" | 6293 | "type": "github" |
6512 | }, | 6294 | }, |
6513 | { | 6295 | { |
6514 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6296 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6515 | "type": "tidelift" | 6297 | "type": "tidelift" |
6516 | } | 6298 | } |
6517 | ], | 6299 | ], |
6518 | "time": "2022-11-03T14:55:06+00:00" | 6300 | "time": "2022-11-03T14:55:06+00:00" |
6519 | }, | 6301 | }, |
6520 | { | 6302 | { |
6521 | "name": "symfony/polyfill-php80", | 6303 | "name": "symfony/polyfill-php80", |
6522 | "version": "v1.27.0", | 6304 | "version": "v1.27.0", |
6523 | "source": { | 6305 | "source": { |
6524 | "type": "git", | 6306 | "type": "git", |
6525 | "url": "https://github.com/symfony/polyfill-php80.git", | 6307 | "url": "https://github.com/symfony/polyfill-php80.git", |
6526 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" | 6308 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" |
6527 | }, | 6309 | }, |
6528 | "dist": { | 6310 | "dist": { |
6529 | "type": "zip", | 6311 | "type": "zip", |
6530 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", | 6312 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", |
6531 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", | 6313 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", |
6532 | "shasum": "" | 6314 | "shasum": "" |
6533 | }, | 6315 | }, |
6534 | "require": { | 6316 | "require": { |
6535 | "php": ">=7.1" | 6317 | "php": ">=7.1" |
6536 | }, | 6318 | }, |
6537 | "type": "library", | 6319 | "type": "library", |
6538 | "extra": { | 6320 | "extra": { |
6539 | "branch-alias": { | 6321 | "branch-alias": { |
6540 | "dev-main": "1.27-dev" | 6322 | "dev-main": "1.27-dev" |
6541 | }, | 6323 | }, |
6542 | "thanks": { | 6324 | "thanks": { |
6543 | "name": "symfony/polyfill", | 6325 | "name": "symfony/polyfill", |
6544 | "url": "https://github.com/symfony/polyfill" | 6326 | "url": "https://github.com/symfony/polyfill" |
6545 | } | 6327 | } |
6546 | }, | 6328 | }, |
6547 | "autoload": { | 6329 | "autoload": { |
6548 | "files": [ | 6330 | "files": [ |
6549 | "bootstrap.php" | 6331 | "bootstrap.php" |
6550 | ], | 6332 | ], |
6551 | "psr-4": { | 6333 | "psr-4": { |
6552 | "Symfony\\Polyfill\\Php80\\": "" | 6334 | "Symfony\\Polyfill\\Php80\\": "" |
6553 | }, | 6335 | }, |
6554 | "classmap": [ | 6336 | "classmap": [ |
6555 | "Resources/stubs" | 6337 | "Resources/stubs" |
6556 | ] | 6338 | ] |
6557 | }, | 6339 | }, |
6558 | "notification-url": "https://packagist.org/downloads/", | 6340 | "notification-url": "https://packagist.org/downloads/", |
6559 | "license": [ | 6341 | "license": [ |
6560 | "MIT" | 6342 | "MIT" |
6561 | ], | 6343 | ], |
6562 | "authors": [ | 6344 | "authors": [ |
6563 | { | 6345 | { |
6564 | "name": "Ion Bazan", | 6346 | "name": "Ion Bazan", |
6565 | "email": "ion.bazan@gmail.com" | 6347 | "email": "ion.bazan@gmail.com" |
6566 | }, | 6348 | }, |
6567 | { | 6349 | { |
6568 | "name": "Nicolas Grekas", | 6350 | "name": "Nicolas Grekas", |
6569 | "email": "p@tchwork.com" | 6351 | "email": "p@tchwork.com" |
6570 | }, | 6352 | }, |
6571 | { | 6353 | { |
6572 | "name": "Symfony Community", | 6354 | "name": "Symfony Community", |
6573 | "homepage": "https://symfony.com/contributors" | 6355 | "homepage": "https://symfony.com/contributors" |
6574 | } | 6356 | } |
6575 | ], | 6357 | ], |
6576 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", | 6358 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", |
6577 | "homepage": "https://symfony.com", | 6359 | "homepage": "https://symfony.com", |
6578 | "keywords": [ | 6360 | "keywords": [ |
6579 | "compatibility", | 6361 | "compatibility", |
6580 | "polyfill", | 6362 | "polyfill", |
6581 | "portable", | 6363 | "portable", |
6582 | "shim" | 6364 | "shim" |
6583 | ], | 6365 | ], |
6584 | "support": { | 6366 | "support": { |
6585 | "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" | 6367 | "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" |
6586 | }, | 6368 | }, |
6587 | "funding": [ | 6369 | "funding": [ |
6588 | { | 6370 | { |
6589 | "url": "https://symfony.com/sponsor", | 6371 | "url": "https://symfony.com/sponsor", |
6590 | "type": "custom" | 6372 | "type": "custom" |
6591 | }, | 6373 | }, |
6592 | { | 6374 | { |
6593 | "url": "https://github.com/fabpot", | 6375 | "url": "https://github.com/fabpot", |
6594 | "type": "github" | 6376 | "type": "github" |
6595 | }, | 6377 | }, |
6596 | { | 6378 | { |
6597 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6379 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6598 | "type": "tidelift" | 6380 | "type": "tidelift" |
6599 | } | 6381 | } |
6600 | ], | 6382 | ], |
6601 | "time": "2022-11-03T14:55:06+00:00" | 6383 | "time": "2022-11-03T14:55:06+00:00" |
6602 | }, | 6384 | }, |
6603 | { | 6385 | { |
6604 | "name": "symfony/polyfill-php81", | 6386 | "name": "symfony/polyfill-php81", |
6605 | "version": "v1.27.0", | 6387 | "version": "v1.27.0", |
6606 | "source": { | 6388 | "source": { |
6607 | "type": "git", | 6389 | "type": "git", |
6608 | "url": "https://github.com/symfony/polyfill-php81.git", | 6390 | "url": "https://github.com/symfony/polyfill-php81.git", |
6609 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" | 6391 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" |
6610 | }, | 6392 | }, |
6611 | "dist": { | 6393 | "dist": { |
6612 | "type": "zip", | 6394 | "type": "zip", |
6613 | "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", | 6395 | "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", |
6614 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", | 6396 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", |
6615 | "shasum": "" | 6397 | "shasum": "" |
6616 | }, | 6398 | }, |
6617 | "require": { | 6399 | "require": { |
6618 | "php": ">=7.1" | 6400 | "php": ">=7.1" |
6619 | }, | 6401 | }, |
6620 | "type": "library", | 6402 | "type": "library", |
6621 | "extra": { | 6403 | "extra": { |
6622 | "branch-alias": { | 6404 | "branch-alias": { |
6623 | "dev-main": "1.27-dev" | 6405 | "dev-main": "1.27-dev" |
6624 | }, | 6406 | }, |
6625 | "thanks": { | 6407 | "thanks": { |
6626 | "name": "symfony/polyfill", | 6408 | "name": "symfony/polyfill", |
6627 | "url": "https://github.com/symfony/polyfill" | 6409 | "url": "https://github.com/symfony/polyfill" |
6628 | } | 6410 | } |
6629 | }, | 6411 | }, |
6630 | "autoload": { | 6412 | "autoload": { |
6631 | "files": [ | 6413 | "files": [ |
6632 | "bootstrap.php" | 6414 | "bootstrap.php" |
6633 | ], | 6415 | ], |
6634 | "psr-4": { | 6416 | "psr-4": { |
6635 | "Symfony\\Polyfill\\Php81\\": "" | 6417 | "Symfony\\Polyfill\\Php81\\": "" |
6636 | }, | 6418 | }, |
6637 | "classmap": [ | 6419 | "classmap": [ |
6638 | "Resources/stubs" | 6420 | "Resources/stubs" |
6639 | ] | 6421 | ] |
6640 | }, | 6422 | }, |
6641 | "notification-url": "https://packagist.org/downloads/", | 6423 | "notification-url": "https://packagist.org/downloads/", |
6642 | "license": [ | 6424 | "license": [ |
6643 | "MIT" | 6425 | "MIT" |
6644 | ], | 6426 | ], |
6645 | "authors": [ | 6427 | "authors": [ |
6646 | { | 6428 | { |
6647 | "name": "Nicolas Grekas", | 6429 | "name": "Nicolas Grekas", |
6648 | "email": "p@tchwork.com" | 6430 | "email": "p@tchwork.com" |
6649 | }, | 6431 | }, |
6650 | { | 6432 | { |
6651 | "name": "Symfony Community", | 6433 | "name": "Symfony Community", |
6652 | "homepage": "https://symfony.com/contributors" | 6434 | "homepage": "https://symfony.com/contributors" |
6653 | } | 6435 | } |
6654 | ], | 6436 | ], |
6655 | "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", | 6437 | "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", |
6656 | "homepage": "https://symfony.com", | 6438 | "homepage": "https://symfony.com", |
6657 | "keywords": [ | 6439 | "keywords": [ |
6658 | "compatibility", | 6440 | "compatibility", |
6659 | "polyfill", | 6441 | "polyfill", |
6660 | "portable", | 6442 | "portable", |
6661 | "shim" | 6443 | "shim" |
6662 | ], | 6444 | ], |
6663 | "support": { | 6445 | "support": { |
6664 | "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" | 6446 | "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" |
6665 | }, | 6447 | }, |
6666 | "funding": [ | 6448 | "funding": [ |
6667 | { | 6449 | { |
6668 | "url": "https://symfony.com/sponsor", | 6450 | "url": "https://symfony.com/sponsor", |
6669 | "type": "custom" | 6451 | "type": "custom" |
6670 | }, | 6452 | }, |
6671 | { | 6453 | { |
6672 | "url": "https://github.com/fabpot", | 6454 | "url": "https://github.com/fabpot", |
6673 | "type": "github" | 6455 | "type": "github" |
6674 | }, | 6456 | }, |
6675 | { | 6457 | { |
6676 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6458 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6677 | "type": "tidelift" | 6459 | "type": "tidelift" |
6678 | } | 6460 | } |
6679 | ], | 6461 | ], |
6680 | "time": "2022-11-03T14:55:06+00:00" | 6462 | "time": "2022-11-03T14:55:06+00:00" |
6681 | }, | 6463 | }, |
6682 | { | 6464 | { |
6683 | "name": "symfony/polyfill-uuid", | 6465 | "name": "symfony/polyfill-uuid", |
6684 | "version": "v1.27.0", | 6466 | "version": "v1.27.0", |
6685 | "source": { | 6467 | "source": { |
6686 | "type": "git", | 6468 | "type": "git", |
6687 | "url": "https://github.com/symfony/polyfill-uuid.git", | 6469 | "url": "https://github.com/symfony/polyfill-uuid.git", |
6688 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166" | 6470 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166" |
6689 | }, | 6471 | }, |
6690 | "dist": { | 6472 | "dist": { |
6691 | "type": "zip", | 6473 | "type": "zip", |
6692 | "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166", | 6474 | "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166", |
6693 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166", | 6475 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166", |
6694 | "shasum": "" | 6476 | "shasum": "" |
6695 | }, | 6477 | }, |
6696 | "require": { | 6478 | "require": { |
6697 | "php": ">=7.1" | 6479 | "php": ">=7.1" |
6698 | }, | 6480 | }, |
6699 | "provide": { | 6481 | "provide": { |
6700 | "ext-uuid": "*" | 6482 | "ext-uuid": "*" |
6701 | }, | 6483 | }, |
6702 | "suggest": { | 6484 | "suggest": { |
6703 | "ext-uuid": "For best performance" | 6485 | "ext-uuid": "For best performance" |
6704 | }, | 6486 | }, |
6705 | "type": "library", | 6487 | "type": "library", |
6706 | "extra": { | 6488 | "extra": { |
6707 | "branch-alias": { | 6489 | "branch-alias": { |
6708 | "dev-main": "1.27-dev" | 6490 | "dev-main": "1.27-dev" |
6709 | }, | 6491 | }, |
6710 | "thanks": { | 6492 | "thanks": { |
6711 | "name": "symfony/polyfill", | 6493 | "name": "symfony/polyfill", |
6712 | "url": "https://github.com/symfony/polyfill" | 6494 | "url": "https://github.com/symfony/polyfill" |
6713 | } | 6495 | } |
6714 | }, | 6496 | }, |
6715 | "autoload": { | 6497 | "autoload": { |
6716 | "files": [ | 6498 | "files": [ |
6717 | "bootstrap.php" | 6499 | "bootstrap.php" |
6718 | ], | 6500 | ], |
6719 | "psr-4": { | 6501 | "psr-4": { |
6720 | "Symfony\\Polyfill\\Uuid\\": "" | 6502 | "Symfony\\Polyfill\\Uuid\\": "" |
6721 | } | 6503 | } |
6722 | }, | 6504 | }, |
6723 | "notification-url": "https://packagist.org/downloads/", | 6505 | "notification-url": "https://packagist.org/downloads/", |
6724 | "license": [ | 6506 | "license": [ |
6725 | "MIT" | 6507 | "MIT" |
6726 | ], | 6508 | ], |
6727 | "authors": [ | 6509 | "authors": [ |
6728 | { | 6510 | { |
6729 | "name": "Grégoire Pineau", | 6511 | "name": "Grégoire Pineau", |
6730 | "email": "lyrixx@lyrixx.info" | 6512 | "email": "lyrixx@lyrixx.info" |
6731 | }, | 6513 | }, |
6732 | { | 6514 | { |
6733 | "name": "Symfony Community", | 6515 | "name": "Symfony Community", |
6734 | "homepage": "https://symfony.com/contributors" | 6516 | "homepage": "https://symfony.com/contributors" |
6735 | } | 6517 | } |
6736 | ], | 6518 | ], |
6737 | "description": "Symfony polyfill for uuid functions", | 6519 | "description": "Symfony polyfill for uuid functions", |
6738 | "homepage": "https://symfony.com", | 6520 | "homepage": "https://symfony.com", |
6739 | "keywords": [ | 6521 | "keywords": [ |
6740 | "compatibility", | 6522 | "compatibility", |
6741 | "polyfill", | 6523 | "polyfill", |
6742 | "portable", | 6524 | "portable", |
6743 | "uuid" | 6525 | "uuid" |
6744 | ], | 6526 | ], |
6745 | "support": { | 6527 | "support": { |
6746 | "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0" | 6528 | "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0" |
6747 | }, | 6529 | }, |
6748 | "funding": [ | 6530 | "funding": [ |
6749 | { | 6531 | { |
6750 | "url": "https://symfony.com/sponsor", | 6532 | "url": "https://symfony.com/sponsor", |
6751 | "type": "custom" | 6533 | "type": "custom" |
6752 | }, | 6534 | }, |
6753 | { | 6535 | { |
6754 | "url": "https://github.com/fabpot", | 6536 | "url": "https://github.com/fabpot", |
6755 | "type": "github" | 6537 | "type": "github" |
6756 | }, | 6538 | }, |
6757 | { | 6539 | { |
6758 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6540 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6759 | "type": "tidelift" | 6541 | "type": "tidelift" |
6760 | } | 6542 | } |
6761 | ], | 6543 | ], |
6762 | "time": "2022-11-03T14:55:06+00:00" | 6544 | "time": "2022-11-03T14:55:06+00:00" |
6763 | }, | 6545 | }, |
6764 | { | 6546 | { |
6765 | "name": "symfony/process", | 6547 | "name": "symfony/process", |
6766 | "version": "v6.0.19", | 6548 | "version": "v6.0.19", |
6767 | "source": { | 6549 | "source": { |
6768 | "type": "git", | 6550 | "type": "git", |
6769 | "url": "https://github.com/symfony/process.git", | 6551 | "url": "https://github.com/symfony/process.git", |
6770 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4" | 6552 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4" |
6771 | }, | 6553 | }, |
6772 | "dist": { | 6554 | "dist": { |
6773 | "type": "zip", | 6555 | "type": "zip", |
6774 | "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4", | 6556 | "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4", |
6775 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4", | 6557 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4", |
6776 | "shasum": "" | 6558 | "shasum": "" |
6777 | }, | 6559 | }, |
6778 | "require": { | 6560 | "require": { |
6779 | "php": ">=8.0.2" | 6561 | "php": ">=8.0.2" |
6780 | }, | 6562 | }, |
6781 | "type": "library", | 6563 | "type": "library", |
6782 | "autoload": { | 6564 | "autoload": { |
6783 | "psr-4": { | 6565 | "psr-4": { |
6784 | "Symfony\\Component\\Process\\": "" | 6566 | "Symfony\\Component\\Process\\": "" |
6785 | }, | 6567 | }, |
6786 | "exclude-from-classmap": [ | 6568 | "exclude-from-classmap": [ |
6787 | "/Tests/" | 6569 | "/Tests/" |
6788 | ] | 6570 | ] |
6789 | }, | 6571 | }, |
6790 | "notification-url": "https://packagist.org/downloads/", | 6572 | "notification-url": "https://packagist.org/downloads/", |
6791 | "license": [ | 6573 | "license": [ |
6792 | "MIT" | 6574 | "MIT" |
6793 | ], | 6575 | ], |
6794 | "authors": [ | 6576 | "authors": [ |
6795 | { | 6577 | { |
6796 | "name": "Fabien Potencier", | 6578 | "name": "Fabien Potencier", |
6797 | "email": "fabien@symfony.com" | 6579 | "email": "fabien@symfony.com" |
6798 | }, | 6580 | }, |
6799 | { | 6581 | { |
6800 | "name": "Symfony Community", | 6582 | "name": "Symfony Community", |
6801 | "homepage": "https://symfony.com/contributors" | 6583 | "homepage": "https://symfony.com/contributors" |
6802 | } | 6584 | } |
6803 | ], | 6585 | ], |
6804 | "description": "Executes commands in sub-processes", | 6586 | "description": "Executes commands in sub-processes", |
6805 | "homepage": "https://symfony.com", | 6587 | "homepage": "https://symfony.com", |
6806 | "support": { | 6588 | "support": { |
6807 | "source": "https://github.com/symfony/process/tree/v6.0.19" | 6589 | "source": "https://github.com/symfony/process/tree/v6.0.19" |
6808 | }, | 6590 | }, |
6809 | "funding": [ | 6591 | "funding": [ |
6810 | { | 6592 | { |
6811 | "url": "https://symfony.com/sponsor", | 6593 | "url": "https://symfony.com/sponsor", |
6812 | "type": "custom" | 6594 | "type": "custom" |
6813 | }, | 6595 | }, |
6814 | { | 6596 | { |
6815 | "url": "https://github.com/fabpot", | 6597 | "url": "https://github.com/fabpot", |
6816 | "type": "github" | 6598 | "type": "github" |
6817 | }, | 6599 | }, |
6818 | { | 6600 | { |
6819 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6601 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6820 | "type": "tidelift" | 6602 | "type": "tidelift" |
6821 | } | 6603 | } |
6822 | ], | 6604 | ], |
6823 | "time": "2023-01-01T08:36:10+00:00" | 6605 | "time": "2023-01-01T08:36:10+00:00" |
6824 | }, | 6606 | }, |
6825 | { | 6607 | { |
6826 | "name": "symfony/routing", | 6608 | "name": "symfony/routing", |
6827 | "version": "v6.0.19", | 6609 | "version": "v6.0.19", |
6828 | "source": { | 6610 | "source": { |
6829 | "type": "git", | 6611 | "type": "git", |
6830 | "url": "https://github.com/symfony/routing.git", | 6612 | "url": "https://github.com/symfony/routing.git", |
6831 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac" | 6613 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac" |
6832 | }, | 6614 | }, |
6833 | "dist": { | 6615 | "dist": { |
6834 | "type": "zip", | 6616 | "type": "zip", |
6835 | "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac", | 6617 | "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac", |
6836 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac", | 6618 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac", |
6837 | "shasum": "" | 6619 | "shasum": "" |
6838 | }, | 6620 | }, |
6839 | "require": { | 6621 | "require": { |
6840 | "php": ">=8.0.2" | 6622 | "php": ">=8.0.2" |
6841 | }, | 6623 | }, |
6842 | "conflict": { | 6624 | "conflict": { |
6843 | "doctrine/annotations": "<1.12", | 6625 | "doctrine/annotations": "<1.12", |
6844 | "symfony/config": "<5.4", | 6626 | "symfony/config": "<5.4", |
6845 | "symfony/dependency-injection": "<5.4", | 6627 | "symfony/dependency-injection": "<5.4", |
6846 | "symfony/yaml": "<5.4" | 6628 | "symfony/yaml": "<5.4" |
6847 | }, | 6629 | }, |
6848 | "require-dev": { | 6630 | "require-dev": { |
6849 | "doctrine/annotations": "^1.12|^2", | 6631 | "doctrine/annotations": "^1.12|^2", |
6850 | "psr/log": "^1|^2|^3", | 6632 | "psr/log": "^1|^2|^3", |
6851 | "symfony/config": "^5.4|^6.0", | 6633 | "symfony/config": "^5.4|^6.0", |
6852 | "symfony/dependency-injection": "^5.4|^6.0", | 6634 | "symfony/dependency-injection": "^5.4|^6.0", |
6853 | "symfony/expression-language": "^5.4|^6.0", | 6635 | "symfony/expression-language": "^5.4|^6.0", |
6854 | "symfony/http-foundation": "^5.4|^6.0", | 6636 | "symfony/http-foundation": "^5.4|^6.0", |
6855 | "symfony/yaml": "^5.4|^6.0" | 6637 | "symfony/yaml": "^5.4|^6.0" |
6856 | }, | 6638 | }, |
6857 | "suggest": { | 6639 | "suggest": { |
6858 | "symfony/config": "For using the all-in-one router or any loader", | 6640 | "symfony/config": "For using the all-in-one router or any loader", |
6859 | "symfony/expression-language": "For using expression matching", | 6641 | "symfony/expression-language": "For using expression matching", |
6860 | "symfony/http-foundation": "For using a Symfony Request object", | 6642 | "symfony/http-foundation": "For using a Symfony Request object", |
6861 | "symfony/yaml": "For using the YAML loader" | 6643 | "symfony/yaml": "For using the YAML loader" |
6862 | }, | 6644 | }, |
6863 | "type": "library", | 6645 | "type": "library", |
6864 | "autoload": { | 6646 | "autoload": { |
6865 | "psr-4": { | 6647 | "psr-4": { |
6866 | "Symfony\\Component\\Routing\\": "" | 6648 | "Symfony\\Component\\Routing\\": "" |
6867 | }, | 6649 | }, |
6868 | "exclude-from-classmap": [ | 6650 | "exclude-from-classmap": [ |
6869 | "/Tests/" | 6651 | "/Tests/" |
6870 | ] | 6652 | ] |
6871 | }, | 6653 | }, |
6872 | "notification-url": "https://packagist.org/downloads/", | 6654 | "notification-url": "https://packagist.org/downloads/", |
6873 | "license": [ | 6655 | "license": [ |
6874 | "MIT" | 6656 | "MIT" |
6875 | ], | 6657 | ], |
6876 | "authors": [ | 6658 | "authors": [ |
6877 | { | 6659 | { |
6878 | "name": "Fabien Potencier", | 6660 | "name": "Fabien Potencier", |
6879 | "email": "fabien@symfony.com" | 6661 | "email": "fabien@symfony.com" |
6880 | }, | 6662 | }, |
6881 | { | 6663 | { |
6882 | "name": "Symfony Community", | 6664 | "name": "Symfony Community", |
6883 | "homepage": "https://symfony.com/contributors" | 6665 | "homepage": "https://symfony.com/contributors" |
6884 | } | 6666 | } |
6885 | ], | 6667 | ], |
6886 | "description": "Maps an HTTP request to a set of configuration variables", | 6668 | "description": "Maps an HTTP request to a set of configuration variables", |
6887 | "homepage": "https://symfony.com", | 6669 | "homepage": "https://symfony.com", |
6888 | "keywords": [ | 6670 | "keywords": [ |
6889 | "router", | 6671 | "router", |
6890 | "routing", | 6672 | "routing", |
6891 | "uri", | 6673 | "uri", |
6892 | "url" | 6674 | "url" |
6893 | ], | 6675 | ], |
6894 | "support": { | 6676 | "support": { |
6895 | "source": "https://github.com/symfony/routing/tree/v6.0.19" | 6677 | "source": "https://github.com/symfony/routing/tree/v6.0.19" |
6896 | }, | 6678 | }, |
6897 | "funding": [ | 6679 | "funding": [ |
6898 | { | 6680 | { |
6899 | "url": "https://symfony.com/sponsor", | 6681 | "url": "https://symfony.com/sponsor", |
6900 | "type": "custom" | 6682 | "type": "custom" |
6901 | }, | 6683 | }, |
6902 | { | 6684 | { |
6903 | "url": "https://github.com/fabpot", | 6685 | "url": "https://github.com/fabpot", |
6904 | "type": "github" | 6686 | "type": "github" |
6905 | }, | 6687 | }, |
6906 | { | 6688 | { |
6907 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6689 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6908 | "type": "tidelift" | 6690 | "type": "tidelift" |
6909 | } | 6691 | } |
6910 | ], | 6692 | ], |
6911 | "time": "2023-01-01T08:36:10+00:00" | 6693 | "time": "2023-01-01T08:36:10+00:00" |
6912 | }, | 6694 | }, |
6913 | { | 6695 | { |
6914 | "name": "symfony/service-contracts", | 6696 | "name": "symfony/service-contracts", |
6915 | "version": "v3.0.2", | 6697 | "version": "v3.0.2", |
6916 | "source": { | 6698 | "source": { |
6917 | "type": "git", | 6699 | "type": "git", |
6918 | "url": "https://github.com/symfony/service-contracts.git", | 6700 | "url": "https://github.com/symfony/service-contracts.git", |
6919 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66" | 6701 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66" |
6920 | }, | 6702 | }, |
6921 | "dist": { | 6703 | "dist": { |
6922 | "type": "zip", | 6704 | "type": "zip", |
6923 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66", | 6705 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66", |
6924 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66", | 6706 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66", |
6925 | "shasum": "" | 6707 | "shasum": "" |
6926 | }, | 6708 | }, |
6927 | "require": { | 6709 | "require": { |
6928 | "php": ">=8.0.2", | 6710 | "php": ">=8.0.2", |
6929 | "psr/container": "^2.0" | 6711 | "psr/container": "^2.0" |
6930 | }, | 6712 | }, |
6931 | "conflict": { | 6713 | "conflict": { |
6932 | "ext-psr": "<1.1|>=2" | 6714 | "ext-psr": "<1.1|>=2" |
6933 | }, | 6715 | }, |
6934 | "suggest": { | 6716 | "suggest": { |
6935 | "symfony/service-implementation": "" | 6717 | "symfony/service-implementation": "" |
6936 | }, | 6718 | }, |
6937 | "type": "library", | 6719 | "type": "library", |
6938 | "extra": { | 6720 | "extra": { |
6939 | "branch-alias": { | 6721 | "branch-alias": { |
6940 | "dev-main": "3.0-dev" | 6722 | "dev-main": "3.0-dev" |
6941 | }, | 6723 | }, |
6942 | "thanks": { | 6724 | "thanks": { |
6943 | "name": "symfony/contracts", | 6725 | "name": "symfony/contracts", |
6944 | "url": "https://github.com/symfony/contracts" | 6726 | "url": "https://github.com/symfony/contracts" |
6945 | } | 6727 | } |
6946 | }, | 6728 | }, |
6947 | "autoload": { | 6729 | "autoload": { |
6948 | "psr-4": { | 6730 | "psr-4": { |
6949 | "Symfony\\Contracts\\Service\\": "" | 6731 | "Symfony\\Contracts\\Service\\": "" |
6950 | } | 6732 | } |
6951 | }, | 6733 | }, |
6952 | "notification-url": "https://packagist.org/downloads/", | 6734 | "notification-url": "https://packagist.org/downloads/", |
6953 | "license": [ | 6735 | "license": [ |
6954 | "MIT" | 6736 | "MIT" |
6955 | ], | 6737 | ], |
6956 | "authors": [ | 6738 | "authors": [ |
6957 | { | 6739 | { |
6958 | "name": "Nicolas Grekas", | 6740 | "name": "Nicolas Grekas", |
6959 | "email": "p@tchwork.com" | 6741 | "email": "p@tchwork.com" |
6960 | }, | 6742 | }, |
6961 | { | 6743 | { |
6962 | "name": "Symfony Community", | 6744 | "name": "Symfony Community", |
6963 | "homepage": "https://symfony.com/contributors" | 6745 | "homepage": "https://symfony.com/contributors" |
6964 | } | 6746 | } |
6965 | ], | 6747 | ], |
6966 | "description": "Generic abstractions related to writing services", | 6748 | "description": "Generic abstractions related to writing services", |
6967 | "homepage": "https://symfony.com", | 6749 | "homepage": "https://symfony.com", |
6968 | "keywords": [ | 6750 | "keywords": [ |
6969 | "abstractions", | 6751 | "abstractions", |
6970 | "contracts", | 6752 | "contracts", |
6971 | "decoupling", | 6753 | "decoupling", |
6972 | "interfaces", | 6754 | "interfaces", |
6973 | "interoperability", | 6755 | "interoperability", |
6974 | "standards" | 6756 | "standards" |
6975 | ], | 6757 | ], |
6976 | "support": { | 6758 | "support": { |
6977 | "source": "https://github.com/symfony/service-contracts/tree/v3.0.2" | 6759 | "source": "https://github.com/symfony/service-contracts/tree/v3.0.2" |
6978 | }, | 6760 | }, |
6979 | "funding": [ | 6761 | "funding": [ |
6980 | { | 6762 | { |
6981 | "url": "https://symfony.com/sponsor", | 6763 | "url": "https://symfony.com/sponsor", |
6982 | "type": "custom" | 6764 | "type": "custom" |
6983 | }, | 6765 | }, |
6984 | { | 6766 | { |
6985 | "url": "https://github.com/fabpot", | 6767 | "url": "https://github.com/fabpot", |
6986 | "type": "github" | 6768 | "type": "github" |
6987 | }, | 6769 | }, |
6988 | { | 6770 | { |
6989 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6771 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6990 | "type": "tidelift" | 6772 | "type": "tidelift" |
6991 | } | 6773 | } |
6992 | ], | 6774 | ], |
6993 | "time": "2022-05-30T19:17:58+00:00" | 6775 | "time": "2022-05-30T19:17:58+00:00" |
6994 | }, | 6776 | }, |
6995 | { | 6777 | { |
6996 | "name": "symfony/string", | 6778 | "name": "symfony/string", |
6997 | "version": "v6.0.19", | 6779 | "version": "v6.0.19", |
6998 | "source": { | 6780 | "source": { |
6999 | "type": "git", | 6781 | "type": "git", |
7000 | "url": "https://github.com/symfony/string.git", | 6782 | "url": "https://github.com/symfony/string.git", |
7001 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a" | 6783 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a" |
7002 | }, | 6784 | }, |
7003 | "dist": { | 6785 | "dist": { |
7004 | "type": "zip", | 6786 | "type": "zip", |
7005 | "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a", | 6787 | "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a", |
7006 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a", | 6788 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a", |
7007 | "shasum": "" | 6789 | "shasum": "" |
7008 | }, | 6790 | }, |
7009 | "require": { | 6791 | "require": { |
7010 | "php": ">=8.0.2", | 6792 | "php": ">=8.0.2", |
7011 | "symfony/polyfill-ctype": "~1.8", | 6793 | "symfony/polyfill-ctype": "~1.8", |
7012 | "symfony/polyfill-intl-grapheme": "~1.0", | 6794 | "symfony/polyfill-intl-grapheme": "~1.0", |
7013 | "symfony/polyfill-intl-normalizer": "~1.0", | 6795 | "symfony/polyfill-intl-normalizer": "~1.0", |
7014 | "symfony/polyfill-mbstring": "~1.0" | 6796 | "symfony/polyfill-mbstring": "~1.0" |
7015 | }, | 6797 | }, |
7016 | "conflict": { | 6798 | "conflict": { |
7017 | "symfony/translation-contracts": "<2.0" | 6799 | "symfony/translation-contracts": "<2.0" |
7018 | }, | 6800 | }, |
7019 | "require-dev": { | 6801 | "require-dev": { |
7020 | "symfony/error-handler": "^5.4|^6.0", | 6802 | "symfony/error-handler": "^5.4|^6.0", |
7021 | "symfony/http-client": "^5.4|^6.0", | 6803 | "symfony/http-client": "^5.4|^6.0", |
7022 | "symfony/translation-contracts": "^2.0|^3.0", | 6804 | "symfony/translation-contracts": "^2.0|^3.0", |
7023 | "symfony/var-exporter": "^5.4|^6.0" | 6805 | "symfony/var-exporter": "^5.4|^6.0" |
7024 | }, | 6806 | }, |
7025 | "type": "library", | 6807 | "type": "library", |
7026 | "autoload": { | 6808 | "autoload": { |
7027 | "files": [ | 6809 | "files": [ |
7028 | "Resources/functions.php" | 6810 | "Resources/functions.php" |
7029 | ], | 6811 | ], |
7030 | "psr-4": { | 6812 | "psr-4": { |
7031 | "Symfony\\Component\\String\\": "" | 6813 | "Symfony\\Component\\String\\": "" |
7032 | }, | 6814 | }, |
7033 | "exclude-from-classmap": [ | 6815 | "exclude-from-classmap": [ |
7034 | "/Tests/" | 6816 | "/Tests/" |
7035 | ] | 6817 | ] |
7036 | }, | 6818 | }, |
7037 | "notification-url": "https://packagist.org/downloads/", | 6819 | "notification-url": "https://packagist.org/downloads/", |
7038 | "license": [ | 6820 | "license": [ |
7039 | "MIT" | 6821 | "MIT" |
7040 | ], | 6822 | ], |
7041 | "authors": [ | 6823 | "authors": [ |
7042 | { | 6824 | { |
7043 | "name": "Nicolas Grekas", | 6825 | "name": "Nicolas Grekas", |
7044 | "email": "p@tchwork.com" | 6826 | "email": "p@tchwork.com" |
7045 | }, | 6827 | }, |
7046 | { | 6828 | { |
7047 | "name": "Symfony Community", | 6829 | "name": "Symfony Community", |
7048 | "homepage": "https://symfony.com/contributors" | 6830 | "homepage": "https://symfony.com/contributors" |
7049 | } | 6831 | } |
7050 | ], | 6832 | ], |
7051 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", | 6833 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", |
7052 | "homepage": "https://symfony.com", | 6834 | "homepage": "https://symfony.com", |
7053 | "keywords": [ | 6835 | "keywords": [ |
7054 | "grapheme", | 6836 | "grapheme", |
7055 | "i18n", | 6837 | "i18n", |
7056 | "string", | 6838 | "string", |
7057 | "unicode", | 6839 | "unicode", |
7058 | "utf-8", | 6840 | "utf-8", |
7059 | "utf8" | 6841 | "utf8" |
7060 | ], | 6842 | ], |
7061 | "support": { | 6843 | "support": { |
7062 | "source": "https://github.com/symfony/string/tree/v6.0.19" | 6844 | "source": "https://github.com/symfony/string/tree/v6.0.19" |
7063 | }, | 6845 | }, |
7064 | "funding": [ | 6846 | "funding": [ |
7065 | { | 6847 | { |
7066 | "url": "https://symfony.com/sponsor", | 6848 | "url": "https://symfony.com/sponsor", |
7067 | "type": "custom" | 6849 | "type": "custom" |
7068 | }, | 6850 | }, |
7069 | { | 6851 | { |
7070 | "url": "https://github.com/fabpot", | 6852 | "url": "https://github.com/fabpot", |
7071 | "type": "github" | 6853 | "type": "github" |
7072 | }, | 6854 | }, |
7073 | { | 6855 | { |
7074 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6856 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
7075 | "type": "tidelift" | 6857 | "type": "tidelift" |
7076 | } | 6858 | } |
7077 | ], | 6859 | ], |
7078 | "time": "2023-01-01T08:36:10+00:00" | 6860 | "time": "2023-01-01T08:36:10+00:00" |
7079 | }, | 6861 | }, |
7080 | { | 6862 | { |
7081 | "name": "symfony/translation", | 6863 | "name": "symfony/translation", |
7082 | "version": "v6.0.19", | 6864 | "version": "v6.0.19", |
7083 | "source": { | 6865 | "source": { |
7084 | "type": "git", | 6866 | "type": "git", |
7085 | "url": "https://github.com/symfony/translation.git", | 6867 | "url": "https://github.com/symfony/translation.git", |
7086 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f" | 6868 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f" |
7087 | }, | 6869 | }, |
7088 | "dist": { | 6870 | "dist": { |
7089 | "type": "zip", | 6871 | "type": "zip", |
7090 | "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", | 6872 | "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", |
7091 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", | 6873 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", |
7092 | "shasum": "" | 6874 | "shasum": "" |
7093 | }, | 6875 | }, |
7094 | "require": { | 6876 | "require": { |
7095 | "php": ">=8.0.2", | 6877 | "php": ">=8.0.2", |
7096 | "symfony/polyfill-mbstring": "~1.0", | 6878 | "symfony/polyfill-mbstring": "~1.0", |
7097 | "symfony/translation-contracts": "^2.3|^3.0" | 6879 | "symfony/translation-contracts": "^2.3|^3.0" |
7098 | }, | 6880 | }, |
7099 | "conflict": { | 6881 | "conflict": { |
7100 | "symfony/config": "<5.4", | 6882 | "symfony/config": "<5.4", |
7101 | "symfony/console": "<5.4", | 6883 | "symfony/console": "<5.4", |
7102 | "symfony/dependency-injection": "<5.4", | 6884 | "symfony/dependency-injection": "<5.4", |
7103 | "symfony/http-kernel": "<5.4", | 6885 | "symfony/http-kernel": "<5.4", |
7104 | "symfony/twig-bundle": "<5.4", | 6886 | "symfony/twig-bundle": "<5.4", |
7105 | "symfony/yaml": "<5.4" | 6887 | "symfony/yaml": "<5.4" |
7106 | }, | 6888 | }, |
7107 | "provide": { | 6889 | "provide": { |
7108 | "symfony/translation-implementation": "2.3|3.0" | 6890 | "symfony/translation-implementation": "2.3|3.0" |
7109 | }, | 6891 | }, |
7110 | "require-dev": { | 6892 | "require-dev": { |
7111 | "psr/log": "^1|^2|^3", | 6893 | "psr/log": "^1|^2|^3", |
7112 | "symfony/config": "^5.4|^6.0", | 6894 | "symfony/config": "^5.4|^6.0", |
7113 | "symfony/console": "^5.4|^6.0", | 6895 | "symfony/console": "^5.4|^6.0", |
7114 | "symfony/dependency-injection": "^5.4|^6.0", | 6896 | "symfony/dependency-injection": "^5.4|^6.0", |
7115 | "symfony/finder": "^5.4|^6.0", | 6897 | "symfony/finder": "^5.4|^6.0", |
7116 | "symfony/http-client-contracts": "^1.1|^2.0|^3.0", | 6898 | "symfony/http-client-contracts": "^1.1|^2.0|^3.0", |
7117 | "symfony/http-kernel": "^5.4|^6.0", | 6899 | "symfony/http-kernel": "^5.4|^6.0", |
7118 | "symfony/intl": "^5.4|^6.0", | 6900 | "symfony/intl": "^5.4|^6.0", |
7119 | "symfony/polyfill-intl-icu": "^1.21", | 6901 | "symfony/polyfill-intl-icu": "^1.21", |
7120 | "symfony/service-contracts": "^1.1.2|^2|^3", | 6902 | "symfony/service-contracts": "^1.1.2|^2|^3", |
7121 | "symfony/yaml": "^5.4|^6.0" | 6903 | "symfony/yaml": "^5.4|^6.0" |
7122 | }, | 6904 | }, |
7123 | "suggest": { | 6905 | "suggest": { |
7124 | "psr/log-implementation": "To use logging capability in translator", | 6906 | "psr/log-implementation": "To use logging capability in translator", |
7125 | "symfony/config": "", | 6907 | "symfony/config": "", |
7126 | "symfony/yaml": "" | 6908 | "symfony/yaml": "" |
7127 | }, | 6909 | }, |
7128 | "type": "library", | 6910 | "type": "library", |
7129 | "autoload": { | 6911 | "autoload": { |
7130 | "files": [ | 6912 | "files": [ |
7131 | "Resources/functions.php" | 6913 | "Resources/functions.php" |
7132 | ], | 6914 | ], |
7133 | "psr-4": { | 6915 | "psr-4": { |
7134 | "Symfony\\Component\\Translation\\": "" | 6916 | "Symfony\\Component\\Translation\\": "" |
7135 | }, | 6917 | }, |
7136 | "exclude-from-classmap": [ | 6918 | "exclude-from-classmap": [ |
7137 | "/Tests/" | 6919 | "/Tests/" |
7138 | ] | 6920 | ] |
7139 | }, | 6921 | }, |
7140 | "notification-url": "https://packagist.org/downloads/", | 6922 | "notification-url": "https://packagist.org/downloads/", |
7141 | "license": [ | 6923 | "license": [ |
7142 | "MIT" | 6924 | "MIT" |
7143 | ], | 6925 | ], |
7144 | "authors": [ | 6926 | "authors": [ |
7145 | { | 6927 | { |
7146 | "name": "Fabien Potencier", | 6928 | "name": "Fabien Potencier", |
7147 | "email": "fabien@symfony.com" | 6929 | "email": "fabien@symfony.com" |
7148 | }, | 6930 | }, |
7149 | { | 6931 | { |
7150 | "name": "Symfony Community", | 6932 | "name": "Symfony Community", |
7151 | "homepage": "https://symfony.com/contributors" | 6933 | "homepage": "https://symfony.com/contributors" |
7152 | } | 6934 | } |
7153 | ], | 6935 | ], |
7154 | "description": "Provides tools to internationalize your application", | 6936 | "description": "Provides tools to internationalize your application", |
7155 | "homepage": "https://symfony.com", | 6937 | "homepage": "https://symfony.com", |
7156 | "support": { | 6938 | "support": { |
7157 | "source": "https://github.com/symfony/translation/tree/v6.0.19" | 6939 | "source": "https://github.com/symfony/translation/tree/v6.0.19" |
7158 | }, | 6940 | }, |
7159 | "funding": [ | 6941 | "funding": [ |
7160 | { | 6942 | { |
7161 | "url": "https://symfony.com/sponsor", | 6943 | "url": "https://symfony.com/sponsor", |
7162 | "type": "custom" | 6944 | "type": "custom" |
7163 | }, | 6945 | }, |
7164 | { | 6946 | { |
7165 | "url": "https://github.com/fabpot", | 6947 | "url": "https://github.com/fabpot", |
7166 | "type": "github" | 6948 | "type": "github" |
7167 | }, | 6949 | }, |
7168 | { | 6950 | { |
7169 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6951 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
7170 | "type": "tidelift" | 6952 | "type": "tidelift" |
7171 | } | 6953 | } |
7172 | ], | 6954 | ], |
7173 | "time": "2023-01-01T08:36:10+00:00" | 6955 | "time": "2023-01-01T08:36:10+00:00" |
7174 | }, | 6956 | }, |
7175 | { | 6957 | { |
7176 | "name": "symfony/translation-contracts", | 6958 | "name": "symfony/translation-contracts", |
7177 | "version": "v3.0.2", | 6959 | "version": "v3.0.2", |
7178 | "source": { | 6960 | "source": { |
7179 | "type": "git", | 6961 | "type": "git", |
7180 | "url": "https://github.com/symfony/translation-contracts.git", | 6962 | "url": "https://github.com/symfony/translation-contracts.git", |
7181 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282" | 6963 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282" |
7182 | }, | 6964 | }, |
7183 | "dist": { | 6965 | "dist": { |
7184 | "type": "zip", | 6966 | "type": "zip", |
7185 | "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282", | 6967 | "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282", |
7186 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282", | 6968 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282", |
7187 | "shasum": "" | 6969 | "shasum": "" |
7188 | }, | 6970 | }, |
7189 | "require": { | 6971 | "require": { |
7190 | "php": ">=8.0.2" | 6972 | "php": ">=8.0.2" |
7191 | }, | 6973 | }, |
7192 | "suggest": { | 6974 | "suggest": { |
7193 | "symfony/translation-implementation": "" | 6975 | "symfony/translation-implementation": "" |
7194 | }, | 6976 | }, |
7195 | "type": "library", | 6977 | "type": "library", |
7196 | "extra": { | 6978 | "extra": { |
7197 | "branch-alias": { | 6979 | "branch-alias": { |
7198 | "dev-main": "3.0-dev" | 6980 | "dev-main": "3.0-dev" |
7199 | }, | 6981 | }, |
7200 | "thanks": { | 6982 | "thanks": { |
7201 | "name": "symfony/contracts", | 6983 | "name": "symfony/contracts", |
7202 | "url": "https://github.com/symfony/contracts" | 6984 | "url": "https://github.com/symfony/contracts" |
7203 | } | 6985 | } |
7204 | }, | 6986 | }, |
7205 | "autoload": { | 6987 | "autoload": { |
7206 | "psr-4": { | 6988 | "psr-4": { |
7207 | "Symfony\\Contracts\\Translation\\": "" | 6989 | "Symfony\\Contracts\\Translation\\": "" |
7208 | } | 6990 | } |
7209 | }, | 6991 | }, |
7210 | "notification-url": "https://packagist.org/downloads/", | 6992 | "notification-url": "https://packagist.org/downloads/", |
7211 | "license": [ | 6993 | "license": [ |
7212 | "MIT" | 6994 | "MIT" |
7213 | ], | 6995 | ], |
7214 | "authors": [ | 6996 | "authors": [ |
7215 | { | 6997 | { |
7216 | "name": "Nicolas Grekas", | 6998 | "name": "Nicolas Grekas", |
7217 | "email": "p@tchwork.com" | 6999 | "email": "p@tchwork.com" |
7218 | }, | 7000 | }, |
7219 | { | 7001 | { |
7220 | "name": "Symfony Community", | 7002 | "name": "Symfony Community", |
7221 | "homepage": "https://symfony.com/contributors" | 7003 | "homepage": "https://symfony.com/contributors" |
7222 | } | 7004 | } |
7223 | ], | 7005 | ], |
7224 | "description": "Generic abstractions related to translation", | 7006 | "description": "Generic abstractions related to translation", |
7225 | "homepage": "https://symfony.com", | 7007 | "homepage": "https://symfony.com", |
7226 | "keywords": [ | 7008 | "keywords": [ |
7227 | "abstractions", | 7009 | "abstractions", |
7228 | "contracts", | 7010 | "contracts", |
7229 | "decoupling", | 7011 | "decoupling", |
7230 | "interfaces", | 7012 | "interfaces", |
7231 | "interoperability", | 7013 | "interoperability", |
7232 | "standards" | 7014 | "standards" |
7233 | ], | 7015 | ], |
7234 | "support": { | 7016 | "support": { |
7235 | "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2" | 7017 | "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2" |
7236 | }, | 7018 | }, |
7237 | "funding": [ | 7019 | "funding": [ |
7238 | { | 7020 | { |
7239 | "url": "https://symfony.com/sponsor", | 7021 | "url": "https://symfony.com/sponsor", |
7240 | "type": "custom" | 7022 | "type": "custom" |
7241 | }, | 7023 | }, |
7242 | { | 7024 | { |
7243 | "url": "https://github.com/fabpot", | 7025 | "url": "https://github.com/fabpot", |
7244 | "type": "github" | 7026 | "type": "github" |
7245 | }, | 7027 | }, |
7246 | { | 7028 | { |
7247 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 7029 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
7248 | "type": "tidelift" | 7030 | "type": "tidelift" |
7249 | } | 7031 | } |
7250 | ], | 7032 | ], |
7251 | "time": "2022-06-27T17:10:44+00:00" | 7033 | "time": "2022-06-27T17:10:44+00:00" |
7252 | }, | 7034 | }, |
7253 | { | 7035 | { |
7254 | "name": "symfony/uid", | 7036 | "name": "symfony/uid", |
7255 | "version": "v6.0.19", | 7037 | "version": "v6.0.19", |
7256 | "source": { | 7038 | "source": { |
7257 | "type": "git", | 7039 | "type": "git", |
7258 | "url": "https://github.com/symfony/uid.git", | 7040 | "url": "https://github.com/symfony/uid.git", |
7259 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d" | 7041 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d" |
7260 | }, | 7042 | }, |
7261 | "dist": { | 7043 | "dist": { |
7262 | "type": "zip", | 7044 | "type": "zip", |
7263 | "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", | 7045 | "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", |
7264 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", | 7046 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", |
7265 | "shasum": "" | 7047 | "shasum": "" |
7266 | }, | 7048 | }, |
7267 | "require": { | 7049 | "require": { |
7268 | "php": ">=8.0.2", | 7050 | "php": ">=8.0.2", |
7269 | "symfony/polyfill-uuid": "^1.15" | 7051 | "symfony/polyfill-uuid": "^1.15" |
7270 | }, | 7052 | }, |
7271 | "require-dev": { | 7053 | "require-dev": { |
7272 | "symfony/console": "^5.4|^6.0" | 7054 | "symfony/console": "^5.4|^6.0" |
7273 | }, | 7055 | }, |
7274 | "type": "library", | 7056 | "type": "library", |
7275 | "autoload": { | 7057 | "autoload": { |
7276 | "psr-4": { | 7058 | "psr-4": { |
7277 | "Symfony\\Component\\Uid\\": "" | 7059 | "Symfony\\Component\\Uid\\": "" |
7278 | }, | 7060 | }, |
7279 | "exclude-from-classmap": [ | 7061 | "exclude-from-classmap": [ |
7280 | "/Tests/" | 7062 | "/Tests/" |
7281 | ] | 7063 | ] |
7282 | }, | 7064 | }, |
7283 | "notification-url": "https://packagist.org/downloads/", | 7065 | "notification-url": "https://packagist.org/downloads/", |
7284 | "license": [ | 7066 | "license": [ |
7285 | "MIT" | 7067 | "MIT" |
7286 | ], | 7068 | ], |
7287 | "authors": [ | 7069 | "authors": [ |
7288 | { | 7070 | { |
7289 | "name": "Grégoire Pineau", | 7071 | "name": "Grégoire Pineau", |
7290 | "email": "lyrixx@lyrixx.info" | 7072 | "email": "lyrixx@lyrixx.info" |
7291 | }, | 7073 | }, |
7292 | { | 7074 | { |
7293 | "name": "Nicolas Grekas", | 7075 | "name": "Nicolas Grekas", |
7294 | "email": "p@tchwork.com" | 7076 | "email": "p@tchwork.com" |
7295 | }, | 7077 | }, |
7296 | { | 7078 | { |
7297 | "name": "Symfony Community", | 7079 | "name": "Symfony Community", |
7298 | "homepage": "https://symfony.com/contributors" | 7080 | "homepage": "https://symfony.com/contributors" |
7299 | } | 7081 | } |
7300 | ], | 7082 | ], |
7301 | "description": "Provides an object-oriented API to generate and represent UIDs", | 7083 | "description": "Provides an object-oriented API to generate and represent UIDs", |
7302 | "homepage": "https://symfony.com", | 7084 | "homepage": "https://symfony.com", |
7303 | "keywords": [ | 7085 | "keywords": [ |
7304 | "UID", | 7086 | "UID", |
7305 | "ulid", | 7087 | "ulid", |
7306 | "uuid" | 7088 | "uuid" |
7307 | ], | 7089 | ], |
7308 | "support": { | 7090 | "support": { |
7309 | "source": "https://github.com/symfony/uid/tree/v6.0.19" | 7091 | "source": "https://github.com/symfony/uid/tree/v6.0.19" |
7310 | }, | 7092 | }, |
7311 | "funding": [ | 7093 | "funding": [ |
7312 | { | 7094 | { |
7313 | "url": "https://symfony.com/sponsor", | 7095 | "url": "https://symfony.com/sponsor", |
7314 | "type": "custom" | 7096 | "type": "custom" |
7315 | }, | 7097 | }, |
7316 | { | 7098 | { |
7317 | "url": "https://github.com/fabpot", | 7099 | "url": "https://github.com/fabpot", |
7318 | "type": "github" | 7100 | "type": "github" |
7319 | }, | 7101 | }, |
7320 | { | 7102 | { |
7321 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 7103 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
7322 | "type": "tidelift" | 7104 | "type": "tidelift" |
7323 | } | 7105 | } |
7324 | ], | 7106 | ], |
7325 | "time": "2023-01-01T08:36:10+00:00" | 7107 | "time": "2023-01-01T08:36:10+00:00" |
7326 | }, | 7108 | }, |
7327 | { | 7109 | { |
7328 | "name": "symfony/var-dumper", | 7110 | "name": "symfony/var-dumper", |
7329 | "version": "v6.0.19", | 7111 | "version": "v6.0.19", |
7330 | "source": { | 7112 | "source": { |
7331 | "type": "git", | 7113 | "type": "git", |
7332 | "url": "https://github.com/symfony/var-dumper.git", | 7114 | "url": "https://github.com/symfony/var-dumper.git", |
7333 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52" | 7115 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52" |
7334 | }, | 7116 | }, |
7335 | "dist": { | 7117 | "dist": { |
7336 | "type": "zip", | 7118 | "type": "zip", |
7337 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52", | 7119 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52", |
7338 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52", | 7120 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52", |
7339 | "shasum": "" | 7121 | "shasum": "" |
7340 | }, | 7122 | }, |
7341 | "require": { | 7123 | "require": { |
7342 | "php": ">=8.0.2", | 7124 | "php": ">=8.0.2", |
7343 | "symfony/polyfill-mbstring": "~1.0" | 7125 | "symfony/polyfill-mbstring": "~1.0" |
7344 | }, | 7126 | }, |
7345 | "conflict": { | 7127 | "conflict": { |
7346 | "phpunit/phpunit": "<5.4.3", | 7128 | "phpunit/phpunit": "<5.4.3", |
7347 | "symfony/console": "<5.4" | 7129 | "symfony/console": "<5.4" |
7348 | }, | 7130 | }, |
7349 | "require-dev": { | 7131 | "require-dev": { |
7350 | "ext-iconv": "*", | 7132 | "ext-iconv": "*", |
7351 | "symfony/console": "^5.4|^6.0", | 7133 | "symfony/console": "^5.4|^6.0", |
7352 | "symfony/process": "^5.4|^6.0", | 7134 | "symfony/process": "^5.4|^6.0", |
7353 | "symfony/uid": "^5.4|^6.0", | 7135 | "symfony/uid": "^5.4|^6.0", |
7354 | "twig/twig": "^2.13|^3.0.4" | 7136 | "twig/twig": "^2.13|^3.0.4" |
7355 | }, | 7137 | }, |
7356 | "suggest": { | 7138 | "suggest": { |
7357 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", | 7139 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", |
7358 | "ext-intl": "To show region name in time zone dump", | 7140 | "ext-intl": "To show region name in time zone dump", |
7359 | "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" | 7141 | "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" |
7360 | }, | 7142 | }, |
7361 | "bin": [ | 7143 | "bin": [ |
7362 | "Resources/bin/var-dump-server" | 7144 | "Resources/bin/var-dump-server" |
7363 | ], | 7145 | ], |
7364 | "type": "library", | 7146 | "type": "library", |
7365 | "autoload": { | 7147 | "autoload": { |
7366 | "files": [ | 7148 | "files": [ |
7367 | "Resources/functions/dump.php" | 7149 | "Resources/functions/dump.php" |
7368 | ], | 7150 | ], |
7369 | "psr-4": { | 7151 | "psr-4": { |
7370 | "Symfony\\Component\\VarDumper\\": "" | 7152 | "Symfony\\Component\\VarDumper\\": "" |
7371 | }, | 7153 | }, |
7372 | "exclude-from-classmap": [ | 7154 | "exclude-from-classmap": [ |
7373 | "/Tests/" | 7155 | "/Tests/" |
7374 | ] | 7156 | ] |
7375 | }, | 7157 | }, |
7376 | "notification-url": "https://packagist.org/downloads/", | 7158 | "notification-url": "https://packagist.org/downloads/", |
7377 | "license": [ | 7159 | "license": [ |
7378 | "MIT" | 7160 | "MIT" |
7379 | ], | 7161 | ], |
7380 | "authors": [ | 7162 | "authors": [ |
7381 | { | 7163 | { |
7382 | "name": "Nicolas Grekas", | 7164 | "name": "Nicolas Grekas", |
7383 | "email": "p@tchwork.com" | 7165 | "email": "p@tchwork.com" |
7384 | }, | 7166 | }, |
7385 | { | 7167 | { |
7386 | "name": "Symfony Community", | 7168 | "name": "Symfony Community", |
7387 | "homepage": "https://symfony.com/contributors" | 7169 | "homepage": "https://symfony.com/contributors" |
7388 | } | 7170 | } |
7389 | ], | 7171 | ], |
7390 | "description": "Provides mechanisms for walking through any arbitrary PHP variable", | 7172 | "description": "Provides mechanisms for walking through any arbitrary PHP variable", |
7391 | "homepage": "https://symfony.com", | 7173 | "homepage": "https://symfony.com", |
7392 | "keywords": [ | 7174 | "keywords": [ |
7393 | "debug", | 7175 | "debug", |
7394 | "dump" | 7176 | "dump" |
7395 | ], | 7177 | ], |
7396 | "support": { | 7178 | "support": { |
7397 | "source": "https://github.com/symfony/var-dumper/tree/v6.0.19" | 7179 | "source": "https://github.com/symfony/var-dumper/tree/v6.0.19" |
7398 | }, | 7180 | }, |
7399 | "funding": [ | 7181 | "funding": [ |
7400 | { | 7182 | { |
7401 | "url": "https://symfony.com/sponsor", | 7183 | "url": "https://symfony.com/sponsor", |
7402 | "type": "custom" | 7184 | "type": "custom" |
7403 | }, | 7185 | }, |
7404 | { | 7186 | { |
7405 | "url": "https://github.com/fabpot", | 7187 | "url": "https://github.com/fabpot", |
7406 | "type": "github" | 7188 | "type": "github" |
7407 | }, | 7189 | }, |
7408 | { | 7190 | { |
7409 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 7191 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
7410 | "type": "tidelift" | 7192 | "type": "tidelift" |
7411 | } | 7193 | } |
7412 | ], | 7194 | ], |
7413 | "time": "2023-01-20T17:44:14+00:00" | 7195 | "time": "2023-01-20T17:44:14+00:00" |
7414 | }, | 7196 | }, |
7415 | { | 7197 | { |
7416 | "name": "tgalopin/html-sanitizer", | 7198 | "name": "tgalopin/html-sanitizer", |
7417 | "version": "1.5.0", | 7199 | "version": "1.5.0", |
7418 | "source": { | 7200 | "source": { |
7419 | "type": "git", | 7201 | "type": "git", |
7420 | "url": "https://github.com/tgalopin/html-sanitizer.git", | 7202 | "url": "https://github.com/tgalopin/html-sanitizer.git", |
7421 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913" | 7203 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913" |
7422 | }, | 7204 | }, |
7423 | "dist": { | 7205 | "dist": { |
7424 | "type": "zip", | 7206 | "type": "zip", |
7425 | "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913", | 7207 | "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913", |
7426 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913", | 7208 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913", |
7427 | "shasum": "" | 7209 | "shasum": "" |
7428 | }, | 7210 | }, |
7429 | "require": { | 7211 | "require": { |
7430 | "ext-dom": "*", | 7212 | "ext-dom": "*", |
7431 | "league/uri-parser": "^1.4.1", | 7213 | "league/uri-parser": "^1.4.1", |
7432 | "masterminds/html5": "^2.4", | 7214 | "masterminds/html5": "^2.4", |
7433 | "php": ">=7.1", | 7215 | "php": ">=7.1", |
7434 | "psr/log": "^1.0|^2.0|^3.0" | 7216 | "psr/log": "^1.0|^2.0|^3.0" |
7435 | }, | 7217 | }, |
7436 | "require-dev": { | 7218 | "require-dev": { |
7437 | "phpunit/phpunit": "^7.4", | 7219 | "phpunit/phpunit": "^7.4", |
7438 | "symfony/var-dumper": "^4.1" | 7220 | "symfony/var-dumper": "^4.1" |
7439 | }, | 7221 | }, |
7440 | "type": "library", | 7222 | "type": "library", |
7441 | "autoload": { | 7223 | "autoload": { |
7442 | "psr-4": { | 7224 | "psr-4": { |
7443 | "HtmlSanitizer\\": "src" | 7225 | "HtmlSanitizer\\": "src" |
7444 | } | 7226 | } |
7445 | }, | 7227 | }, |
7446 | "notification-url": "https://packagist.org/downloads/", | 7228 | "notification-url": "https://packagist.org/downloads/", |
7447 | "license": [ | 7229 | "license": [ |
7448 | "MIT" | 7230 | "MIT" |
7449 | ], | 7231 | ], |
7450 | "authors": [ | 7232 | "authors": [ |
7451 | { | 7233 | { |
7452 | "name": "Titouan Galopin", | 7234 | "name": "Titouan Galopin", |
7453 | "email": "galopintitouan@gmail.com" | 7235 | "email": "galopintitouan@gmail.com" |
7454 | } | 7236 | } |
7455 | ], | 7237 | ], |
7456 | "description": "Sanitize untrustworthy HTML user input", | 7238 | "description": "Sanitize untrustworthy HTML user input", |
7457 | "support": { | 7239 | "support": { |
7458 | "issues": "https://github.com/tgalopin/html-sanitizer/issues", | 7240 | "issues": "https://github.com/tgalopin/html-sanitizer/issues", |
7459 | "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0" | 7241 | "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0" |
7460 | }, | 7242 | }, |
7461 | "abandoned": "symfony/html-sanitizer", | 7243 | "abandoned": "symfony/html-sanitizer", |
7462 | "time": "2021-09-14T08:27:50+00:00" | 7244 | "time": "2021-09-14T08:27:50+00:00" |
7463 | }, | 7245 | }, |
7464 | { | 7246 | { |
7465 | "name": "tijsverkoyen/css-to-inline-styles", | 7247 | "name": "tijsverkoyen/css-to-inline-styles", |
7466 | "version": "2.2.6", | 7248 | "version": "2.2.6", |
7467 | "source": { | 7249 | "source": { |
7468 | "type": "git", | 7250 | "type": "git", |
7469 | "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", | 7251 | "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", |
7470 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" | 7252 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" |
7471 | }, | 7253 | }, |
7472 | "dist": { | 7254 | "dist": { |
7473 | "type": "zip", | 7255 | "type": "zip", |
7474 | "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", | 7256 | "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", |
7475 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", | 7257 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", |
7476 | "shasum": "" | 7258 | "shasum": "" |
7477 | }, | 7259 | }, |
7478 | "require": { | 7260 | "require": { |
7479 | "ext-dom": "*", | 7261 | "ext-dom": "*", |
7480 | "ext-libxml": "*", | 7262 | "ext-libxml": "*", |
7481 | "php": "^5.5 || ^7.0 || ^8.0", | 7263 | "php": "^5.5 || ^7.0 || ^8.0", |
7482 | "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" | 7264 | "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" |
7483 | }, | 7265 | }, |
7484 | "require-dev": { | 7266 | "require-dev": { |
7485 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" | 7267 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" |
7486 | }, | 7268 | }, |
7487 | "type": "library", | 7269 | "type": "library", |
7488 | "extra": { | 7270 | "extra": { |
7489 | "branch-alias": { | 7271 | "branch-alias": { |
7490 | "dev-master": "2.2.x-dev" | 7272 | "dev-master": "2.2.x-dev" |
7491 | } | 7273 | } |
7492 | }, | 7274 | }, |
7493 | "autoload": { | 7275 | "autoload": { |
7494 | "psr-4": { | 7276 | "psr-4": { |
7495 | "TijsVerkoyen\\CssToInlineStyles\\": "src" | 7277 | "TijsVerkoyen\\CssToInlineStyles\\": "src" |
7496 | } | 7278 | } |
7497 | }, | 7279 | }, |
7498 | "notification-url": "https://packagist.org/downloads/", | 7280 | "notification-url": "https://packagist.org/downloads/", |
7499 | "license": [ | 7281 | "license": [ |
7500 | "BSD-3-Clause" | 7282 | "BSD-3-Clause" |
7501 | ], | 7283 | ], |
7502 | "authors": [ | 7284 | "authors": [ |
7503 | { | 7285 | { |
7504 | "name": "Tijs Verkoyen", | 7286 | "name": "Tijs Verkoyen", |
7505 | "email": "css_to_inline_styles@verkoyen.eu", | 7287 | "email": "css_to_inline_styles@verkoyen.eu", |
7506 | "role": "Developer" | 7288 | "role": "Developer" |
7507 | } | 7289 | } |
7508 | ], | 7290 | ], |
7509 | "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", | 7291 | "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", |
7510 | "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", | 7292 | "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", |
7511 | "support": { | 7293 | "support": { |
7512 | "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", | 7294 | "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", |
7513 | "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" | 7295 | "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" |
7514 | }, | 7296 | }, |
7515 | "time": "2023-01-03T09:29:04+00:00" | 7297 | "time": "2023-01-03T09:29:04+00:00" |
7516 | }, | 7298 | }, |
7517 | { | 7299 | { |
7518 | "name": "vlucas/phpdotenv", | 7300 | "name": "vlucas/phpdotenv", |
7519 | "version": "v5.5.0", | 7301 | "version": "v5.5.0", |
7520 | "source": { | 7302 | "source": { |
7521 | "type": "git", | 7303 | "type": "git", |
7522 | "url": "https://github.com/vlucas/phpdotenv.git", | 7304 | "url": "https://github.com/vlucas/phpdotenv.git", |
7523 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" | 7305 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" |
7524 | }, | 7306 | }, |
7525 | "dist": { | 7307 | "dist": { |
7526 | "type": "zip", | 7308 | "type": "zip", |
7527 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", | 7309 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", |
7528 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", | 7310 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", |
7529 | "shasum": "" | 7311 | "shasum": "" |
7530 | }, | 7312 | }, |
7531 | "require": { | 7313 | "require": { |
7532 | "ext-pcre": "*", | 7314 | "ext-pcre": "*", |
7533 | "graham-campbell/result-type": "^1.0.2", | 7315 | "graham-campbell/result-type": "^1.0.2", |
7534 | "php": "^7.1.3 || ^8.0", | 7316 | "php": "^7.1.3 || ^8.0", |
7535 | "phpoption/phpoption": "^1.8", | 7317 | "phpoption/phpoption": "^1.8", |
7536 | "symfony/polyfill-ctype": "^1.23", | 7318 | "symfony/polyfill-ctype": "^1.23", |
7537 | "symfony/polyfill-mbstring": "^1.23.1", | 7319 | "symfony/polyfill-mbstring": "^1.23.1", |
7538 | "symfony/polyfill-php80": "^1.23.1" | 7320 | "symfony/polyfill-php80": "^1.23.1" |
7539 | }, | 7321 | }, |
7540 | "require-dev": { | 7322 | "require-dev": { |
7541 | "bamarni/composer-bin-plugin": "^1.4.1", | 7323 | "bamarni/composer-bin-plugin": "^1.4.1", |
7542 | "ext-filter": "*", | 7324 | "ext-filter": "*", |
7543 | "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" | 7325 | "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" |
7544 | }, | 7326 | }, |
7545 | "suggest": { | 7327 | "suggest": { |
7546 | "ext-filter": "Required to use the boolean validator." | 7328 | "ext-filter": "Required to use the boolean validator." |
7547 | }, | 7329 | }, |
7548 | "type": "library", | 7330 | "type": "library", |
7549 | "extra": { | 7331 | "extra": { |
7550 | "bamarni-bin": { | 7332 | "bamarni-bin": { |
7551 | "bin-links": true, | 7333 | "bin-links": true, |
7552 | "forward-command": true | 7334 | "forward-command": true |
7553 | }, | 7335 | }, |
7554 | "branch-alias": { | 7336 | "branch-alias": { |
7555 | "dev-master": "5.5-dev" | 7337 | "dev-master": "5.5-dev" |
7556 | } | 7338 | } |
7557 | }, | 7339 | }, |
7558 | "autoload": { | 7340 | "autoload": { |
7559 | "psr-4": { | 7341 | "psr-4": { |
7560 | "Dotenv\\": "src/" | 7342 | "Dotenv\\": "src/" |
7561 | } | 7343 | } |
7562 | }, | 7344 | }, |
7563 | "notification-url": "https://packagist.org/downloads/", | 7345 | "notification-url": "https://packagist.org/downloads/", |
7564 | "license": [ | 7346 | "license": [ |
7565 | "BSD-3-Clause" | 7347 | "BSD-3-Clause" |
7566 | ], | 7348 | ], |
7567 | "authors": [ | 7349 | "authors": [ |
7568 | { | 7350 | { |
7569 | "name": "Graham Campbell", | 7351 | "name": "Graham Campbell", |
7570 | "email": "hello@gjcampbell.co.uk", | 7352 | "email": "hello@gjcampbell.co.uk", |
7571 | "homepage": "https://github.com/GrahamCampbell" | 7353 | "homepage": "https://github.com/GrahamCampbell" |
7572 | }, | 7354 | }, |
7573 | { | 7355 | { |
7574 | "name": "Vance Lucas", | 7356 | "name": "Vance Lucas", |
7575 | "email": "vance@vancelucas.com", | 7357 | "email": "vance@vancelucas.com", |
7576 | "homepage": "https://github.com/vlucas" | 7358 | "homepage": "https://github.com/vlucas" |
7577 | } | 7359 | } |
7578 | ], | 7360 | ], |
7579 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", | 7361 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", |
7580 | "keywords": [ | 7362 | "keywords": [ |
7581 | "dotenv", | 7363 | "dotenv", |
7582 | "env", | 7364 | "env", |
7583 | "environment" | 7365 | "environment" |
7584 | ], | 7366 | ], |
7585 | "support": { | 7367 | "support": { |
7586 | "issues": "https://github.com/vlucas/phpdotenv/issues", | 7368 | "issues": "https://github.com/vlucas/phpdotenv/issues", |
7587 | "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" | 7369 | "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" |
7588 | }, | 7370 | }, |
7589 | "funding": [ | 7371 | "funding": [ |
7590 | { | 7372 | { |
7591 | "url": "https://github.com/GrahamCampbell", | 7373 | "url": "https://github.com/GrahamCampbell", |
7592 | "type": "github" | 7374 | "type": "github" |
7593 | }, | 7375 | }, |
7594 | { | 7376 | { |
7595 | "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", | 7377 | "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", |
7596 | "type": "tidelift" | 7378 | "type": "tidelift" |
7597 | } | 7379 | } |
7598 | ], | 7380 | ], |
7599 | "time": "2022-10-16T01:01:54+00:00" | 7381 | "time": "2022-10-16T01:01:54+00:00" |
7600 | }, | 7382 | }, |
7601 | { | 7383 | { |
7602 | "name": "voku/portable-ascii", | 7384 | "name": "voku/portable-ascii", |
7603 | "version": "2.0.1", | 7385 | "version": "2.0.1", |
7604 | "source": { | 7386 | "source": { |
7605 | "type": "git", | 7387 | "type": "git", |
7606 | "url": "https://github.com/voku/portable-ascii.git", | 7388 | "url": "https://github.com/voku/portable-ascii.git", |
7607 | "reference": "b56450eed252f6801410d810c8e1727224ae0743" | 7389 | "reference": "b56450eed252f6801410d810c8e1727224ae0743" |
7608 | }, | 7390 | }, |
7609 | "dist": { | 7391 | "dist": { |
7610 | "type": "zip", | 7392 | "type": "zip", |
7611 | "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", | 7393 | "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", |
7612 | "reference": "b56450eed252f6801410d810c8e1727224ae0743", | 7394 | "reference": "b56450eed252f6801410d810c8e1727224ae0743", |
7613 | "shasum": "" | 7395 | "shasum": "" |
7614 | }, | 7396 | }, |
7615 | "require": { | 7397 | "require": { |
7616 | "php": ">=7.0.0" | 7398 | "php": ">=7.0.0" |
7617 | }, | 7399 | }, |
7618 | "require-dev": { | 7400 | "require-dev": { |
7619 | "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" | 7401 | "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" |
7620 | }, | 7402 | }, |
7621 | "suggest": { | 7403 | "suggest": { |
7622 | "ext-intl": "Use Intl for transliterator_transliterate() support" | 7404 | "ext-intl": "Use Intl for transliterator_transliterate() support" |
7623 | }, | 7405 | }, |
7624 | "type": "library", | 7406 | "type": "library", |
7625 | "autoload": { | 7407 | "autoload": { |
7626 | "psr-4": { | 7408 | "psr-4": { |
7627 | "voku\\": "src/voku/" | 7409 | "voku\\": "src/voku/" |
7628 | } | 7410 | } |
7629 | }, | 7411 | }, |
7630 | "notification-url": "https://packagist.org/downloads/", | 7412 | "notification-url": "https://packagist.org/downloads/", |
7631 | "license": [ | 7413 | "license": [ |
7632 | "MIT" | 7414 | "MIT" |
7633 | ], | 7415 | ], |
7634 | "authors": [ | 7416 | "authors": [ |
7635 | { | 7417 | { |
7636 | "name": "Lars Moelleken", | 7418 | "name": "Lars Moelleken", |
7637 | "homepage": "http://www.moelleken.org/" | 7419 | "homepage": "http://www.moelleken.org/" |
7638 | } | 7420 | } |
7639 | ], | 7421 | ], |
7640 | "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", | 7422 | "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", |
7641 | "homepage": "https://github.com/voku/portable-ascii", | 7423 | "homepage": "https://github.com/voku/portable-ascii", |
7642 | "keywords": [ | 7424 | "keywords": [ |
7643 | "ascii", | 7425 | "ascii", |
7644 | "clean", | 7426 | "clean", |
7645 | "php" | 7427 | "php" |
7646 | ], | 7428 | ], |
7647 | "support": { | 7429 | "support": { |
7648 | "issues": "https://github.com/voku/portable-ascii/issues", | 7430 | "issues": "https://github.com/voku/portable-ascii/issues", |
7649 | "source": "https://github.com/voku/portable-ascii/tree/2.0.1" | 7431 | "source": "https://github.com/voku/portable-ascii/tree/2.0.1" |
7650 | }, | 7432 | }, |
7651 | "funding": [ | 7433 | "funding": [ |
7652 | { | 7434 | { |
7653 | "url": "https://www.paypal.me/moelleken", | 7435 | "url": "https://www.paypal.me/moelleken", |
7654 | "type": "custom" | 7436 | "type": "custom" |
7655 | }, | 7437 | }, |
7656 | { | 7438 | { |
7657 | "url": "https://github.com/voku", | 7439 | "url": "https://github.com/voku", |
7658 | "type": "github" | 7440 | "type": "github" |
7659 | }, | 7441 | }, |
7660 | { | 7442 | { |
7661 | "url": "https://opencollective.com/portable-ascii", | 7443 | "url": "https://opencollective.com/portable-ascii", |
7662 | "type": "open_collective" | 7444 | "type": "open_collective" |
7663 | }, | 7445 | }, |
7664 | { | 7446 | { |
7665 | "url": "https://www.patreon.com/voku", | 7447 | "url": "https://www.patreon.com/voku", |
7666 | "type": "patreon" | 7448 | "type": "patreon" |
7667 | }, | 7449 | }, |
7668 | { | 7450 | { |
7669 | "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", | 7451 | "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", |
7670 | "type": "tidelift" | 7452 | "type": "tidelift" |
7671 | } | 7453 | } |
7672 | ], | 7454 | ], |
7673 | "time": "2022-03-08T17:03:00+00:00" | 7455 | "time": "2022-03-08T17:03:00+00:00" |
7674 | }, | 7456 | }, |
7675 | { | 7457 | { |
7676 | "name": "webmozart/assert", | 7458 | "name": "webmozart/assert", |
7677 | "version": "1.11.0", | 7459 | "version": "1.11.0", |
7678 | "source": { | 7460 | "source": { |
7679 | "type": "git", | 7461 | "type": "git", |
7680 | "url": "https://github.com/webmozarts/assert.git", | 7462 | "url": "https://github.com/webmozarts/assert.git", |
7681 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" | 7463 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" |
7682 | }, | 7464 | }, |
7683 | "dist": { | 7465 | "dist": { |
7684 | "type": "zip", | 7466 | "type": "zip", |
7685 | "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", | 7467 | "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", |
7686 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", | 7468 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", |
7687 | "shasum": "" | 7469 | "shasum": "" |
7688 | }, | 7470 | }, |
7689 | "require": { | 7471 | "require": { |
7690 | "ext-ctype": "*", | 7472 | "ext-ctype": "*", |
7691 | "php": "^7.2 || ^8.0" | 7473 | "php": "^7.2 || ^8.0" |
7692 | }, | 7474 | }, |
7693 | "conflict": { | 7475 | "conflict": { |
7694 | "phpstan/phpstan": "<0.12.20", | 7476 | "phpstan/phpstan": "<0.12.20", |
7695 | "vimeo/psalm": "<4.6.1 || 4.6.2" | 7477 | "vimeo/psalm": "<4.6.1 || 4.6.2" |
7696 | }, | 7478 | }, |
7697 | "require-dev": { | 7479 | "require-dev": { |
7698 | "phpunit/phpunit": "^8.5.13" | 7480 | "phpunit/phpunit": "^8.5.13" |
7699 | }, | 7481 | }, |
7700 | "type": "library", | 7482 | "type": "library", |
7701 | "extra": { | 7483 | "extra": { |
7702 | "branch-alias": { | 7484 | "branch-alias": { |
7703 | "dev-master": "1.10-dev" | 7485 | "dev-master": "1.10-dev" |
7704 | } | 7486 | } |
7705 | }, | 7487 | }, |
7706 | "autoload": { | 7488 | "autoload": { |
7707 | "psr-4": { | 7489 | "psr-4": { |
7708 | "Webmozart\\Assert\\": "src/" | 7490 | "Webmozart\\Assert\\": "src/" |
7709 | } | 7491 | } |
7710 | }, | 7492 | }, |
7711 | "notification-url": "https://packagist.org/downloads/", | 7493 | "notification-url": "https://packagist.org/downloads/", |
7712 | "license": [ | 7494 | "license": [ |
7713 | "MIT" | 7495 | "MIT" |
7714 | ], | 7496 | ], |
7715 | "authors": [ | 7497 | "authors": [ |
7716 | { | 7498 | { |
7717 | "name": "Bernhard Schussek", | 7499 | "name": "Bernhard Schussek", |
7718 | "email": "bschussek@gmail.com" | 7500 | "email": "bschussek@gmail.com" |
7719 | } | 7501 | } |
7720 | ], | 7502 | ], |
7721 | "description": "Assertions to validate method input/output with nice error messages.", | 7503 | "description": "Assertions to validate method input/output with nice error messages.", |
7722 | "keywords": [ | 7504 | "keywords": [ |
7723 | "assert", | 7505 | "assert", |
7724 | "check", | 7506 | "check", |
7725 | "validate" | 7507 | "validate" |
7726 | ], | 7508 | ], |
7727 | "support": { | 7509 | "support": { |
7728 | "issues": "https://github.com/webmozarts/assert/issues", | 7510 | "issues": "https://github.com/webmozarts/assert/issues", |
7729 | "source": "https://github.com/webmozarts/assert/tree/1.11.0" | 7511 | "source": "https://github.com/webmozarts/assert/tree/1.11.0" |
7730 | }, | 7512 | }, |
7731 | "time": "2022-06-03T18:03:27+00:00" | 7513 | "time": "2022-06-03T18:03:27+00:00" |
7732 | } | 7514 | } |
7733 | ], | 7515 | ], |
7734 | "packages-dev": [ | 7516 | "packages-dev": [ |
7735 | { | 7517 | { |
7736 | "name": "barryvdh/laravel-debugbar", | 7518 | "name": "barryvdh/laravel-debugbar", |
7737 | "version": "v3.9.2", | 7519 | "version": "v3.9.2", |
7738 | "source": { | 7520 | "source": { |
7739 | "type": "git", | 7521 | "type": "git", |
7740 | "url": "https://github.com/barryvdh/laravel-debugbar.git", | 7522 | "url": "https://github.com/barryvdh/laravel-debugbar.git", |
7741 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" | 7523 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" |
7742 | }, | 7524 | }, |
7743 | "dist": { | 7525 | "dist": { |
7744 | "type": "zip", | 7526 | "type": "zip", |
7745 | "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", | 7527 | "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", |
7746 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", | 7528 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", |
7747 | "shasum": "" | 7529 | "shasum": "" |
7748 | }, | 7530 | }, |
7749 | "require": { | 7531 | "require": { |
7750 | "illuminate/routing": "^9|^10", | 7532 | "illuminate/routing": "^9|^10", |
7751 | "illuminate/session": "^9|^10", | 7533 | "illuminate/session": "^9|^10", |
7752 | "illuminate/support": "^9|^10", | 7534 | "illuminate/support": "^9|^10", |
7753 | "maximebf/debugbar": "^1.18.2", | 7535 | "maximebf/debugbar": "^1.18.2", |
7754 | "php": "^8.0", | 7536 | "php": "^8.0", |
7755 | "symfony/finder": "^6" | 7537 | "symfony/finder": "^6" |
7756 | }, | 7538 | }, |
7757 | "require-dev": { | 7539 | "require-dev": { |
7758 | "mockery/mockery": "^1.3.3", | 7540 | "mockery/mockery": "^1.3.3", |
7759 | "orchestra/testbench-dusk": "^5|^6|^7|^8", | 7541 | "orchestra/testbench-dusk": "^5|^6|^7|^8", |
7760 | "phpunit/phpunit": "^8.5.30|^9.0", | 7542 | "phpunit/phpunit": "^8.5.30|^9.0", |
7761 | "squizlabs/php_codesniffer": "^3.5" | 7543 | "squizlabs/php_codesniffer": "^3.5" |
7762 | }, | 7544 | }, |
7763 | "type": "library", | 7545 | "type": "library", |
7764 | "extra": { | 7546 | "extra": { |
7765 | "branch-alias": { | 7547 | "branch-alias": { |
7766 | "dev-master": "3.8-dev" | 7548 | "dev-master": "3.8-dev" |
7767 | }, | 7549 | }, |
7768 | "laravel": { | 7550 | "laravel": { |
7769 | "providers": [ | 7551 | "providers": [ |
7770 | "Barryvdh\\Debugbar\\ServiceProvider" | 7552 | "Barryvdh\\Debugbar\\ServiceProvider" |
7771 | ], | 7553 | ], |
7772 | "aliases": { | 7554 | "aliases": { |
7773 | "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar" | 7555 | "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar" |
7774 | } | 7556 | } |
7775 | } | 7557 | } |
7776 | }, | 7558 | }, |
7777 | "autoload": { | 7559 | "autoload": { |
7778 | "files": [ | 7560 | "files": [ |
7779 | "src/helpers.php" | 7561 | "src/helpers.php" |
7780 | ], | 7562 | ], |
7781 | "psr-4": { | 7563 | "psr-4": { |
7782 | "Barryvdh\\Debugbar\\": "src/" | 7564 | "Barryvdh\\Debugbar\\": "src/" |
7783 | } | 7565 | } |
7784 | }, | 7566 | }, |
7785 | "notification-url": "https://packagist.org/downloads/", | 7567 | "notification-url": "https://packagist.org/downloads/", |
7786 | "license": [ | 7568 | "license": [ |
7787 | "MIT" | 7569 | "MIT" |
7788 | ], | 7570 | ], |
7789 | "authors": [ | 7571 | "authors": [ |
7790 | { | 7572 | { |
7791 | "name": "Barry vd. Heuvel", | 7573 | "name": "Barry vd. Heuvel", |
7792 | "email": "barryvdh@gmail.com" | 7574 | "email": "barryvdh@gmail.com" |
7793 | } | 7575 | } |
7794 | ], | 7576 | ], |
7795 | "description": "PHP Debugbar integration for Laravel", | 7577 | "description": "PHP Debugbar integration for Laravel", |
7796 | "keywords": [ | 7578 | "keywords": [ |
7797 | "debug", | 7579 | "debug", |
7798 | "debugbar", | 7580 | "debugbar", |
7799 | "laravel", | 7581 | "laravel", |
7800 | "profiler", | 7582 | "profiler", |
7801 | "webprofiler" | 7583 | "webprofiler" |
7802 | ], | 7584 | ], |
7803 | "support": { | 7585 | "support": { |
7804 | "issues": "https://github.com/barryvdh/laravel-debugbar/issues", | 7586 | "issues": "https://github.com/barryvdh/laravel-debugbar/issues", |
7805 | "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" | 7587 | "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" |
7806 | }, | 7588 | }, |
7807 | "funding": [ | 7589 | "funding": [ |
7808 | { | 7590 | { |
7809 | "url": "https://fruitcake.nl", | 7591 | "url": "https://fruitcake.nl", |
7810 | "type": "custom" | 7592 | "type": "custom" |
7811 | }, | 7593 | }, |
7812 | { | 7594 | { |
7813 | "url": "https://github.com/barryvdh", | 7595 | "url": "https://github.com/barryvdh", |
7814 | "type": "github" | 7596 | "type": "github" |
7815 | } | 7597 | } |
7816 | ], | 7598 | ], |
7817 | "time": "2023-08-25T18:43:57+00:00" | 7599 | "time": "2023-08-25T18:43:57+00:00" |
7818 | }, | 7600 | }, |
7819 | { | 7601 | { |
7820 | "name": "doctrine/instantiator", | 7602 | "name": "doctrine/instantiator", |
7821 | "version": "1.5.0", | 7603 | "version": "1.5.0", |
7822 | "source": { | 7604 | "source": { |
7823 | "type": "git", | 7605 | "type": "git", |
7824 | "url": "https://github.com/doctrine/instantiator.git", | 7606 | "url": "https://github.com/doctrine/instantiator.git", |
7825 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" | 7607 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" |
7826 | }, | 7608 | }, |
7827 | "dist": { | 7609 | "dist": { |
7828 | "type": "zip", | 7610 | "type": "zip", |
7829 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", | 7611 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", |
7830 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", | 7612 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", |
7831 | "shasum": "" | 7613 | "shasum": "" |
7832 | }, | 7614 | }, |
7833 | "require": { | 7615 | "require": { |
7834 | "php": "^7.1 || ^8.0" | 7616 | "php": "^7.1 || ^8.0" |
7835 | }, | 7617 | }, |
7836 | "require-dev": { | 7618 | "require-dev": { |
7837 | "doctrine/coding-standard": "^9 || ^11", | 7619 | "doctrine/coding-standard": "^9 || ^11", |
7838 | "ext-pdo": "*", | 7620 | "ext-pdo": "*", |
7839 | "ext-phar": "*", | 7621 | "ext-phar": "*", |
7840 | "phpbench/phpbench": "^0.16 || ^1", | 7622 | "phpbench/phpbench": "^0.16 || ^1", |
7841 | "phpstan/phpstan": "^1.4", | 7623 | "phpstan/phpstan": "^1.4", |
7842 | "phpstan/phpstan-phpunit": "^1", | 7624 | "phpstan/phpstan-phpunit": "^1", |
7843 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | 7625 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", |
7844 | "vimeo/psalm": "^4.30 || ^5.4" | 7626 | "vimeo/psalm": "^4.30 || ^5.4" |
7845 | }, | 7627 | }, |
7846 | "type": "library", | 7628 | "type": "library", |
7847 | "autoload": { | 7629 | "autoload": { |
7848 | "psr-4": { | 7630 | "psr-4": { |
7849 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" | 7631 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" |
7850 | } | 7632 | } |
7851 | }, | 7633 | }, |
7852 | "notification-url": "https://packagist.org/downloads/", | 7634 | "notification-url": "https://packagist.org/downloads/", |
7853 | "license": [ | 7635 | "license": [ |
7854 | "MIT" | 7636 | "MIT" |
7855 | ], | 7637 | ], |
7856 | "authors": [ | 7638 | "authors": [ |
7857 | { | 7639 | { |
7858 | "name": "Marco Pivetta", | 7640 | "name": "Marco Pivetta", |
7859 | "email": "ocramius@gmail.com", | 7641 | "email": "ocramius@gmail.com", |
7860 | "homepage": "https://ocramius.github.io/" | 7642 | "homepage": "https://ocramius.github.io/" |
7861 | } | 7643 | } |
7862 | ], | 7644 | ], |
7863 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", | 7645 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", |
7864 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", | 7646 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", |
7865 | "keywords": [ | 7647 | "keywords": [ |
7866 | "constructor", | 7648 | "constructor", |
7867 | "instantiate" | 7649 | "instantiate" |
7868 | ], | 7650 | ], |
7869 | "support": { | 7651 | "support": { |
7870 | "issues": "https://github.com/doctrine/instantiator/issues", | 7652 | "issues": "https://github.com/doctrine/instantiator/issues", |
7871 | "source": "https://github.com/doctrine/instantiator/tree/1.5.0" | 7653 | "source": "https://github.com/doctrine/instantiator/tree/1.5.0" |
7872 | }, | 7654 | }, |
7873 | "funding": [ | 7655 | "funding": [ |
7874 | { | 7656 | { |
7875 | "url": "https://www.doctrine-project.org/sponsorship.html", | 7657 | "url": "https://www.doctrine-project.org/sponsorship.html", |
7876 | "type": "custom" | 7658 | "type": "custom" |
7877 | }, | 7659 | }, |
7878 | { | 7660 | { |
7879 | "url": "https://www.patreon.com/phpdoctrine", | 7661 | "url": "https://www.patreon.com/phpdoctrine", |
7880 | "type": "patreon" | 7662 | "type": "patreon" |
7881 | }, | 7663 | }, |
7882 | { | 7664 | { |
7883 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", | 7665 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", |
7884 | "type": "tidelift" | 7666 | "type": "tidelift" |
7885 | } | 7667 | } |
7886 | ], | 7668 | ], |
7887 | "time": "2022-12-30T00:15:36+00:00" | 7669 | "time": "2022-12-30T00:15:36+00:00" |
7888 | }, | 7670 | }, |
7889 | { | 7671 | { |
7890 | "name": "fakerphp/faker", | 7672 | "name": "fakerphp/faker", |
7891 | "version": "v1.21.0", | 7673 | "version": "v1.21.0", |
7892 | "source": { | 7674 | "source": { |
7893 | "type": "git", | 7675 | "type": "git", |
7894 | "url": "https://github.com/FakerPHP/Faker.git", | 7676 | "url": "https://github.com/FakerPHP/Faker.git", |
7895 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d" | 7677 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d" |
7896 | }, | 7678 | }, |
7897 | "dist": { | 7679 | "dist": { |
7898 | "type": "zip", | 7680 | "type": "zip", |
7899 | "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d", | 7681 | "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d", |
7900 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d", | 7682 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d", |
7901 | "shasum": "" | 7683 | "shasum": "" |
7902 | }, | 7684 | }, |
7903 | "require": { | 7685 | "require": { |
7904 | "php": "^7.4 || ^8.0", | 7686 | "php": "^7.4 || ^8.0", |
7905 | "psr/container": "^1.0 || ^2.0", | 7687 | "psr/container": "^1.0 || ^2.0", |
7906 | "symfony/deprecation-contracts": "^2.2 || ^3.0" | 7688 | "symfony/deprecation-contracts": "^2.2 || ^3.0" |
7907 | }, | 7689 | }, |
7908 | "conflict": { | 7690 | "conflict": { |
7909 | "fzaninotto/faker": "*" | 7691 | "fzaninotto/faker": "*" |
7910 | }, | 7692 | }, |
7911 | "require-dev": { | 7693 | "require-dev": { |
7912 | "bamarni/composer-bin-plugin": "^1.4.1", | 7694 | "bamarni/composer-bin-plugin": "^1.4.1", |
7913 | "doctrine/persistence": "^1.3 || ^2.0", | 7695 | "doctrine/persistence": "^1.3 || ^2.0", |
7914 | "ext-intl": "*", | 7696 | "ext-intl": "*", |
7915 | "phpunit/phpunit": "^9.5.26", | 7697 | "phpunit/phpunit": "^9.5.26", |
7916 | "symfony/phpunit-bridge": "^5.4.16" | 7698 | "symfony/phpunit-bridge": "^5.4.16" |
7917 | }, | 7699 | }, |
7918 | "suggest": { | 7700 | "suggest": { |
7919 | "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", | 7701 | "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", |
7920 | "ext-curl": "Required by Faker\\Provider\\Image to download images.", | 7702 | "ext-curl": "Required by Faker\\Provider\\Image to download images.", |
7921 | "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", | 7703 | "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", |
7922 | "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", | 7704 | "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", |
7923 | "ext-mbstring": "Required for multibyte Unicode string functionality." | 7705 | "ext-mbstring": "Required for multibyte Unicode string functionality." |
7924 | }, | 7706 | }, |
7925 | "type": "library", | 7707 | "type": "library", |
7926 | "extra": { | 7708 | "extra": { |
7927 | "branch-alias": { | 7709 | "branch-alias": { |
7928 | "dev-main": "v1.21-dev" | 7710 | "dev-main": "v1.21-dev" |
7929 | } | 7711 | } |
7930 | }, | 7712 | }, |
7931 | "autoload": { | 7713 | "autoload": { |
7932 | "psr-4": { | 7714 | "psr-4": { |
7933 | "Faker\\": "src/Faker/" | 7715 | "Faker\\": "src/Faker/" |
7934 | } | 7716 | } |
7935 | }, | 7717 | }, |
7936 | "notification-url": "https://packagist.org/downloads/", | 7718 | "notification-url": "https://packagist.org/downloads/", |
7937 | "license": [ | 7719 | "license": [ |
7938 | "MIT" | 7720 | "MIT" |
7939 | ], | 7721 | ], |
7940 | "authors": [ | 7722 | "authors": [ |
7941 | { | 7723 | { |
7942 | "name": "François Zaninotto" | 7724 | "name": "François Zaninotto" |
7943 | } | 7725 | } |
7944 | ], | 7726 | ], |
7945 | "description": "Faker is a PHP library that generates fake data for you.", | 7727 | "description": "Faker is a PHP library that generates fake data for you.", |
7946 | "keywords": [ | 7728 | "keywords": [ |
7947 | "data", | 7729 | "data", |
7948 | "faker", | 7730 | "faker", |
7949 | "fixtures" | 7731 | "fixtures" |
7950 | ], | 7732 | ], |
7951 | "support": { | 7733 | "support": { |
7952 | "issues": "https://github.com/FakerPHP/Faker/issues", | 7734 | "issues": "https://github.com/FakerPHP/Faker/issues", |
7953 | "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0" | 7735 | "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0" |
7954 | }, | 7736 | }, |
7955 | "time": "2022-12-13T13:54:32+00:00" | 7737 | "time": "2022-12-13T13:54:32+00:00" |
7956 | }, | 7738 | }, |
7957 | { | 7739 | { |
7958 | "name": "filp/whoops", | 7740 | "name": "filp/whoops", |
7959 | "version": "2.15.2", | 7741 | "version": "2.15.2", |
7960 | "source": { | 7742 | "source": { |
7961 | "type": "git", | 7743 | "type": "git", |
7962 | "url": "https://github.com/filp/whoops.git", | 7744 | "url": "https://github.com/filp/whoops.git", |
7963 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73" | 7745 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73" |
7964 | }, | 7746 | }, |
7965 | "dist": { | 7747 | "dist": { |
7966 | "type": "zip", | 7748 | "type": "zip", |
7967 | "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", | 7749 | "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", |
7968 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", | 7750 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", |
7969 | "shasum": "" | 7751 | "shasum": "" |
7970 | }, | 7752 | }, |
7971 | "require": { | 7753 | "require": { |
7972 | "php": "^5.5.9 || ^7.0 || ^8.0", | 7754 | "php": "^5.5.9 || ^7.0 || ^8.0", |
7973 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" | 7755 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" |
7974 | }, | 7756 | }, |
7975 | "require-dev": { | 7757 | "require-dev": { |
7976 | "mockery/mockery": "^0.9 || ^1.0", | 7758 | "mockery/mockery": "^0.9 || ^1.0", |
7977 | "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", | 7759 | "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", |
7978 | "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" | 7760 | "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" |
7979 | }, | 7761 | }, |
7980 | "suggest": { | 7762 | "suggest": { |
7981 | "symfony/var-dumper": "Pretty print complex values better with var-dumper available", | 7763 | "symfony/var-dumper": "Pretty print complex values better with var-dumper available", |
7982 | "whoops/soap": "Formats errors as SOAP responses" | 7764 | "whoops/soap": "Formats errors as SOAP responses" |
7983 | }, | 7765 | }, |
7984 | "type": "library", | 7766 | "type": "library", |
7985 | "extra": { | 7767 | "extra": { |
7986 | "branch-alias": { | 7768 | "branch-alias": { |
7987 | "dev-master": "2.7-dev" | 7769 | "dev-master": "2.7-dev" |
7988 | } | 7770 | } |
7989 | }, | 7771 | }, |
7990 | "autoload": { | 7772 | "autoload": { |
7991 | "psr-4": { | 7773 | "psr-4": { |
7992 | "Whoops\\": "src/Whoops/" | 7774 | "Whoops\\": "src/Whoops/" |
7993 | } | 7775 | } |
7994 | }, | 7776 | }, |
7995 | "notification-url": "https://packagist.org/downloads/", | 7777 | "notification-url": "https://packagist.org/downloads/", |
7996 | "license": [ | 7778 | "license": [ |
7997 | "MIT" | 7779 | "MIT" |
7998 | ], | 7780 | ], |
7999 | "authors": [ | 7781 | "authors": [ |
8000 | { | 7782 | { |
8001 | "name": "Filipe Dobreira", | 7783 | "name": "Filipe Dobreira", |
8002 | "homepage": "https://github.com/filp", | 7784 | "homepage": "https://github.com/filp", |
8003 | "role": "Developer" | 7785 | "role": "Developer" |
8004 | } | 7786 | } |
8005 | ], | 7787 | ], |
8006 | "description": "php error handling for cool kids", | 7788 | "description": "php error handling for cool kids", |
8007 | "homepage": "https://filp.github.io/whoops/", | 7789 | "homepage": "https://filp.github.io/whoops/", |
8008 | "keywords": [ | 7790 | "keywords": [ |
8009 | "error", | 7791 | "error", |
8010 | "exception", | 7792 | "exception", |
8011 | "handling", | 7793 | "handling", |
8012 | "library", | 7794 | "library", |
8013 | "throwable", | 7795 | "throwable", |
8014 | "whoops" | 7796 | "whoops" |
8015 | ], | 7797 | ], |
8016 | "support": { | 7798 | "support": { |
8017 | "issues": "https://github.com/filp/whoops/issues", | 7799 | "issues": "https://github.com/filp/whoops/issues", |
8018 | "source": "https://github.com/filp/whoops/tree/2.15.2" | 7800 | "source": "https://github.com/filp/whoops/tree/2.15.2" |
8019 | }, | 7801 | }, |
8020 | "funding": [ | 7802 | "funding": [ |
8021 | { | 7803 | { |
8022 | "url": "https://github.com/denis-sokolov", | 7804 | "url": "https://github.com/denis-sokolov", |
8023 | "type": "github" | 7805 | "type": "github" |
8024 | } | 7806 | } |
8025 | ], | 7807 | ], |
8026 | "time": "2023-04-12T12:00:00+00:00" | 7808 | "time": "2023-04-12T12:00:00+00:00" |
8027 | }, | 7809 | }, |
8028 | { | 7810 | { |
8029 | "name": "hamcrest/hamcrest-php", | 7811 | "name": "hamcrest/hamcrest-php", |
8030 | "version": "v2.0.1", | 7812 | "version": "v2.0.1", |
8031 | "source": { | 7813 | "source": { |
8032 | "type": "git", | 7814 | "type": "git", |
8033 | "url": "https://github.com/hamcrest/hamcrest-php.git", | 7815 | "url": "https://github.com/hamcrest/hamcrest-php.git", |
8034 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" | 7816 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" |
8035 | }, | 7817 | }, |
8036 | "dist": { | 7818 | "dist": { |
8037 | "type": "zip", | 7819 | "type": "zip", |
8038 | "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", | 7820 | "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", |
8039 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", | 7821 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", |
8040 | "shasum": "" | 7822 | "shasum": "" |
8041 | }, | 7823 | }, |
8042 | "require": { | 7824 | "require": { |
8043 | "php": "^5.3|^7.0|^8.0" | 7825 | "php": "^5.3|^7.0|^8.0" |
8044 | }, | 7826 | }, |
8045 | "replace": { | 7827 | "replace": { |
8046 | "cordoval/hamcrest-php": "*", | 7828 | "cordoval/hamcrest-php": "*", |
8047 | "davedevelopment/hamcrest-php": "*", | 7829 | "davedevelopment/hamcrest-php": "*", |
8048 | "kodova/hamcrest-php": "*" | 7830 | "kodova/hamcrest-php": "*" |
8049 | }, | 7831 | }, |
8050 | "require-dev": { | 7832 | "require-dev": { |
8051 | "phpunit/php-file-iterator": "^1.4 || ^2.0", | 7833 | "phpunit/php-file-iterator": "^1.4 || ^2.0", |
8052 | "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" | 7834 | "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" |
8053 | }, | 7835 | }, |
8054 | "type": "library", | 7836 | "type": "library", |
8055 | "extra": { | 7837 | "extra": { |
8056 | "branch-alias": { | 7838 | "branch-alias": { |
8057 | "dev-master": "2.1-dev" | 7839 | "dev-master": "2.1-dev" |
8058 | } | 7840 | } |
8059 | }, | 7841 | }, |
8060 | "autoload": { | 7842 | "autoload": { |
8061 | "classmap": [ | 7843 | "classmap": [ |
8062 | "hamcrest" | 7844 | "hamcrest" |
8063 | ] | 7845 | ] |
8064 | }, | 7846 | }, |
8065 | "notification-url": "https://packagist.org/downloads/", | 7847 | "notification-url": "https://packagist.org/downloads/", |
8066 | "license": [ | 7848 | "license": [ |
8067 | "BSD-3-Clause" | 7849 | "BSD-3-Clause" |
8068 | ], | 7850 | ], |
8069 | "description": "This is the PHP port of Hamcrest Matchers", | 7851 | "description": "This is the PHP port of Hamcrest Matchers", |
8070 | "keywords": [ | 7852 | "keywords": [ |
8071 | "test" | 7853 | "test" |
8072 | ], | 7854 | ], |
8073 | "support": { | 7855 | "support": { |
8074 | "issues": "https://github.com/hamcrest/hamcrest-php/issues", | 7856 | "issues": "https://github.com/hamcrest/hamcrest-php/issues", |
8075 | "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" | 7857 | "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" |
8076 | }, | 7858 | }, |
8077 | "time": "2020-07-09T08:09:16+00:00" | 7859 | "time": "2020-07-09T08:09:16+00:00" |
8078 | }, | 7860 | }, |
8079 | { | 7861 | { |
8080 | "name": "laravel/pint", | 7862 | "name": "laravel/pint", |
8081 | "version": "v1.5.0", | 7863 | "version": "v1.5.0", |
8082 | "source": { | 7864 | "source": { |
8083 | "type": "git", | 7865 | "type": "git", |
8084 | "url": "https://github.com/laravel/pint.git", | 7866 | "url": "https://github.com/laravel/pint.git", |
8085 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362" | 7867 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362" |
8086 | }, | 7868 | }, |
8087 | "dist": { | 7869 | "dist": { |
8088 | "type": "zip", | 7870 | "type": "zip", |
8089 | "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362", | 7871 | "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362", |
8090 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362", | 7872 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362", |
8091 | "shasum": "" | 7873 | "shasum": "" |
8092 | }, | 7874 | }, |
8093 | "require": { | 7875 | "require": { |
8094 | "ext-json": "*", | 7876 | "ext-json": "*", |
8095 | "ext-mbstring": "*", | 7877 | "ext-mbstring": "*", |
8096 | "ext-tokenizer": "*", | 7878 | "ext-tokenizer": "*", |
8097 | "ext-xml": "*", | 7879 | "ext-xml": "*", |
8098 | "php": "^8.0" | 7880 | "php": "^8.0" |
8099 | }, | 7881 | }, |
8100 | "require-dev": { | 7882 | "require-dev": { |
8101 | "friendsofphp/php-cs-fixer": "^3.14.4", | 7883 | "friendsofphp/php-cs-fixer": "^3.14.4", |
8102 | "illuminate/view": "^9.51.0", | 7884 | "illuminate/view": "^9.51.0", |
8103 | "laravel-zero/framework": "^9.2.0", | 7885 | "laravel-zero/framework": "^9.2.0", |
8104 | "mockery/mockery": "^1.5.1", | 7886 | "mockery/mockery": "^1.5.1", |
8105 | "nunomaduro/larastan": "^2.4.0", | 7887 | "nunomaduro/larastan": "^2.4.0", |
8106 | "nunomaduro/termwind": "^1.15.1", | 7888 | "nunomaduro/termwind": "^1.15.1", |
8107 | "pestphp/pest": "^1.22.4" | 7889 | "pestphp/pest": "^1.22.4" |
8108 | }, | 7890 | }, |
8109 | "bin": [ | 7891 | "bin": [ |
8110 | "builds/pint" | 7892 | "builds/pint" |
8111 | ], | 7893 | ], |
8112 | "type": "project", | 7894 | "type": "project", |
8113 | "autoload": { | 7895 | "autoload": { |
8114 | "psr-4": { | 7896 | "psr-4": { |
8115 | "App\\": "app/", | 7897 | "App\\": "app/", |
8116 | "Database\\Seeders\\": "database/seeders/", | 7898 | "Database\\Seeders\\": "database/seeders/", |
8117 | "Database\\Factories\\": "database/factories/" | 7899 | "Database\\Factories\\": "database/factories/" |
8118 | } | 7900 | } |
8119 | }, | 7901 | }, |
8120 | "notification-url": "https://packagist.org/downloads/", | 7902 | "notification-url": "https://packagist.org/downloads/", |
8121 | "license": [ | 7903 | "license": [ |
8122 | "MIT" | 7904 | "MIT" |
8123 | ], | 7905 | ], |
8124 | "authors": [ | 7906 | "authors": [ |
8125 | { | 7907 | { |
8126 | "name": "Nuno Maduro", | 7908 | "name": "Nuno Maduro", |
8127 | "email": "enunomaduro@gmail.com" | 7909 | "email": "enunomaduro@gmail.com" |
8128 | } | 7910 | } |
8129 | ], | 7911 | ], |
8130 | "description": "An opinionated code formatter for PHP.", | 7912 | "description": "An opinionated code formatter for PHP.", |
8131 | "homepage": "https://laravel.com", | 7913 | "homepage": "https://laravel.com", |
8132 | "keywords": [ | 7914 | "keywords": [ |
8133 | "format", | 7915 | "format", |
8134 | "formatter", | 7916 | "formatter", |
8135 | "lint", | 7917 | "lint", |
8136 | "linter", | 7918 | "linter", |
8137 | "php" | 7919 | "php" |
8138 | ], | 7920 | ], |
8139 | "support": { | 7921 | "support": { |
8140 | "issues": "https://github.com/laravel/pint/issues", | 7922 | "issues": "https://github.com/laravel/pint/issues", |
8141 | "source": "https://github.com/laravel/pint" | 7923 | "source": "https://github.com/laravel/pint" |
8142 | }, | 7924 | }, |
8143 | "time": "2023-02-14T16:31:02+00:00" | 7925 | "time": "2023-02-14T16:31:02+00:00" |
8144 | }, | 7926 | }, |
8145 | { | 7927 | { |
8146 | "name": "laravel/sail", | 7928 | "name": "laravel/sail", |
8147 | "version": "v1.22.0", | 7929 | "version": "v1.22.0", |
8148 | "source": { | 7930 | "source": { |
8149 | "type": "git", | 7931 | "type": "git", |
8150 | "url": "https://github.com/laravel/sail.git", | 7932 | "url": "https://github.com/laravel/sail.git", |
8151 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56" | 7933 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56" |
8152 | }, | 7934 | }, |
8153 | "dist": { | 7935 | "dist": { |
8154 | "type": "zip", | 7936 | "type": "zip", |
8155 | "url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56", | 7937 | "url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56", |
8156 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56", | 7938 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56", |
8157 | "shasum": "" | 7939 | "shasum": "" |
8158 | }, | 7940 | }, |
8159 | "require": { | 7941 | "require": { |
8160 | "illuminate/console": "^8.0|^9.0|^10.0", | 7942 | "illuminate/console": "^8.0|^9.0|^10.0", |
8161 | "illuminate/contracts": "^8.0|^9.0|^10.0", | 7943 | "illuminate/contracts": "^8.0|^9.0|^10.0", |
8162 | "illuminate/support": "^8.0|^9.0|^10.0", | 7944 | "illuminate/support": "^8.0|^9.0|^10.0", |
8163 | "php": "^8.0", | 7945 | "php": "^8.0", |
8164 | "symfony/yaml": "^6.0" | 7946 | "symfony/yaml": "^6.0" |
8165 | }, | 7947 | }, |
8166 | "require-dev": { | 7948 | "require-dev": { |
8167 | "orchestra/testbench": "^6.0|^7.0|^8.0", | 7949 | "orchestra/testbench": "^6.0|^7.0|^8.0", |
8168 | "phpstan/phpstan": "^1.10" | 7950 | "phpstan/phpstan": "^1.10" |
8169 | }, | 7951 | }, |
8170 | "bin": [ | 7952 | "bin": [ |
8171 | "bin/sail" | 7953 | "bin/sail" |
8172 | ], | 7954 | ], |
8173 | "type": "library", | 7955 | "type": "library", |
8174 | "extra": { | 7956 | "extra": { |
8175 | "branch-alias": { | 7957 | "branch-alias": { |
8176 | "dev-master": "1.x-dev" | 7958 | "dev-master": "1.x-dev" |
8177 | }, | 7959 | }, |
8178 | "laravel": { | 7960 | "laravel": { |
8179 | "providers": [ | 7961 | "providers": [ |
8180 | "Laravel\\Sail\\SailServiceProvider" | 7962 | "Laravel\\Sail\\SailServiceProvider" |
8181 | ] | 7963 | ] |
8182 | } | 7964 | } |
8183 | }, | 7965 | }, |
8184 | "autoload": { | 7966 | "autoload": { |
8185 | "psr-4": { | 7967 | "psr-4": { |
8186 | "Laravel\\Sail\\": "src/" | 7968 | "Laravel\\Sail\\": "src/" |
8187 | } | 7969 | } |
8188 | }, | 7970 | }, |
8189 | "notification-url": "https://packagist.org/downloads/", | 7971 | "notification-url": "https://packagist.org/downloads/", |
8190 | "license": [ | 7972 | "license": [ |
8191 | "MIT" | 7973 | "MIT" |
8192 | ], | 7974 | ], |
8193 | "authors": [ | 7975 | "authors": [ |
8194 | { | 7976 | { |
8195 | "name": "Taylor Otwell", | 7977 | "name": "Taylor Otwell", |
8196 | "email": "taylor@laravel.com" | 7978 | "email": "taylor@laravel.com" |
8197 | } | 7979 | } |
8198 | ], | 7980 | ], |
8199 | "description": "Docker files for running a basic Laravel application.", | 7981 | "description": "Docker files for running a basic Laravel application.", |
8200 | "keywords": [ | 7982 | "keywords": [ |
8201 | "docker", | 7983 | "docker", |
8202 | "laravel" | 7984 | "laravel" |
8203 | ], | 7985 | ], |
8204 | "support": { | 7986 | "support": { |
8205 | "issues": "https://github.com/laravel/sail/issues", | 7987 | "issues": "https://github.com/laravel/sail/issues", |
8206 | "source": "https://github.com/laravel/sail" | 7988 | "source": "https://github.com/laravel/sail" |
8207 | }, | 7989 | }, |
8208 | "time": "2023-05-04T14:52:56+00:00" | 7990 | "time": "2023-05-04T14:52:56+00:00" |
8209 | }, | 7991 | }, |
8210 | { | 7992 | { |
8211 | "name": "maximebf/debugbar", | 7993 | "name": "maximebf/debugbar", |
8212 | "version": "v1.19.0", | 7994 | "version": "v1.19.0", |
8213 | "source": { | 7995 | "source": { |
8214 | "type": "git", | 7996 | "type": "git", |
8215 | "url": "https://github.com/maximebf/php-debugbar.git", | 7997 | "url": "https://github.com/maximebf/php-debugbar.git", |
8216 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e" | 7998 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e" |
8217 | }, | 7999 | }, |
8218 | "dist": { | 8000 | "dist": { |
8219 | "type": "zip", | 8001 | "type": "zip", |
8220 | "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e", | 8002 | "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e", |
8221 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e", | 8003 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e", |
8222 | "shasum": "" | 8004 | "shasum": "" |
8223 | }, | 8005 | }, |
8224 | "require": { | 8006 | "require": { |
8225 | "php": "^7.1|^8", | 8007 | "php": "^7.1|^8", |
8226 | "psr/log": "^1|^2|^3", | 8008 | "psr/log": "^1|^2|^3", |
8227 | "symfony/var-dumper": "^4|^5|^6" | 8009 | "symfony/var-dumper": "^4|^5|^6" |
8228 | }, | 8010 | }, |
8229 | "require-dev": { | 8011 | "require-dev": { |
8230 | "phpunit/phpunit": ">=7.5.20 <10.0", | 8012 | "phpunit/phpunit": ">=7.5.20 <10.0", |
8231 | "twig/twig": "^1.38|^2.7|^3.0" | 8013 | "twig/twig": "^1.38|^2.7|^3.0" |
8232 | }, | 8014 | }, |
8233 | "suggest": { | 8015 | "suggest": { |
8234 | "kriswallsmith/assetic": "The best way to manage assets", | 8016 | "kriswallsmith/assetic": "The best way to manage assets", |
8235 | "monolog/monolog": "Log using Monolog", | 8017 | "monolog/monolog": "Log using Monolog", |
8236 | "predis/predis": "Redis storage" | 8018 | "predis/predis": "Redis storage" |
8237 | }, | 8019 | }, |
8238 | "type": "library", | 8020 | "type": "library", |
8239 | "extra": { | 8021 | "extra": { |
8240 | "branch-alias": { | 8022 | "branch-alias": { |
8241 | "dev-master": "1.18-dev" | 8023 | "dev-master": "1.18-dev" |
8242 | } | 8024 | } |
8243 | }, | 8025 | }, |
8244 | "autoload": { | 8026 | "autoload": { |
8245 | "psr-4": { | 8027 | "psr-4": { |
8246 | "DebugBar\\": "src/DebugBar/" | 8028 | "DebugBar\\": "src/DebugBar/" |
8247 | } | 8029 | } |
8248 | }, | 8030 | }, |
8249 | "notification-url": "https://packagist.org/downloads/", | 8031 | "notification-url": "https://packagist.org/downloads/", |
8250 | "license": [ | 8032 | "license": [ |
8251 | "MIT" | 8033 | "MIT" |
8252 | ], | 8034 | ], |
8253 | "authors": [ | 8035 | "authors": [ |
8254 | { | 8036 | { |
8255 | "name": "Maxime Bouroumeau-Fuseau", | 8037 | "name": "Maxime Bouroumeau-Fuseau", |
8256 | "email": "maxime.bouroumeau@gmail.com", | 8038 | "email": "maxime.bouroumeau@gmail.com", |
8257 | "homepage": "http://maximebf.com" | 8039 | "homepage": "http://maximebf.com" |
8258 | }, | 8040 | }, |
8259 | { | 8041 | { |
8260 | "name": "Barry vd. Heuvel", | 8042 | "name": "Barry vd. Heuvel", |
8261 | "email": "barryvdh@gmail.com" | 8043 | "email": "barryvdh@gmail.com" |
8262 | } | 8044 | } |
8263 | ], | 8045 | ], |
8264 | "description": "Debug bar in the browser for php application", | 8046 | "description": "Debug bar in the browser for php application", |
8265 | "homepage": "https://github.com/maximebf/php-debugbar", | 8047 | "homepage": "https://github.com/maximebf/php-debugbar", |
8266 | "keywords": [ | 8048 | "keywords": [ |
8267 | "debug", | 8049 | "debug", |
8268 | "debugbar" | 8050 | "debugbar" |
8269 | ], | 8051 | ], |
8270 | "support": { | 8052 | "support": { |
8271 | "issues": "https://github.com/maximebf/php-debugbar/issues", | 8053 | "issues": "https://github.com/maximebf/php-debugbar/issues", |
8272 | "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0" | 8054 | "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0" |
8273 | }, | 8055 | }, |
8274 | "time": "2023-09-19T19:53:10+00:00" | 8056 | "time": "2023-09-19T19:53:10+00:00" |
8275 | }, | 8057 | }, |
8276 | { | 8058 | { |
8277 | "name": "mockery/mockery", | 8059 | "name": "mockery/mockery", |
8278 | "version": "1.5.1", | 8060 | "version": "1.5.1", |
8279 | "source": { | 8061 | "source": { |
8280 | "type": "git", | 8062 | "type": "git", |
8281 | "url": "https://github.com/mockery/mockery.git", | 8063 | "url": "https://github.com/mockery/mockery.git", |
8282 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e" | 8064 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e" |
8283 | }, | 8065 | }, |
8284 | "dist": { | 8066 | "dist": { |
8285 | "type": "zip", | 8067 | "type": "zip", |
8286 | "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e", | 8068 | "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e", |
8287 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e", | 8069 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e", |
8288 | "shasum": "" | 8070 | "shasum": "" |
8289 | }, | 8071 | }, |
8290 | "require": { | 8072 | "require": { |
8291 | "hamcrest/hamcrest-php": "^2.0.1", | 8073 | "hamcrest/hamcrest-php": "^2.0.1", |
8292 | "lib-pcre": ">=7.0", | 8074 | "lib-pcre": ">=7.0", |
8293 | "php": "^7.3 || ^8.0" | 8075 | "php": "^7.3 || ^8.0" |
8294 | }, | 8076 | }, |
8295 | "conflict": { | 8077 | "conflict": { |
8296 | "phpunit/phpunit": "<8.0" | 8078 | "phpunit/phpunit": "<8.0" |
8297 | }, | 8079 | }, |
8298 | "require-dev": { | 8080 | "require-dev": { |
8299 | "phpunit/phpunit": "^8.5 || ^9.3" | 8081 | "phpunit/phpunit": "^8.5 || ^9.3" |
8300 | }, | 8082 | }, |
8301 | "type": "library", | 8083 | "type": "library", |
8302 | "extra": { | 8084 | "extra": { |
8303 | "branch-alias": { | 8085 | "branch-alias": { |
8304 | "dev-master": "1.4.x-dev" | 8086 | "dev-master": "1.4.x-dev" |
8305 | } | 8087 | } |
8306 | }, | 8088 | }, |
8307 | "autoload": { | 8089 | "autoload": { |
8308 | "psr-0": { | 8090 | "psr-0": { |
8309 | "Mockery": "library/" | 8091 | "Mockery": "library/" |
8310 | } | 8092 | } |
8311 | }, | 8093 | }, |
8312 | "notification-url": "https://packagist.org/downloads/", | 8094 | "notification-url": "https://packagist.org/downloads/", |
8313 | "license": [ | 8095 | "license": [ |
8314 | "BSD-3-Clause" | 8096 | "BSD-3-Clause" |
8315 | ], | 8097 | ], |
8316 | "authors": [ | 8098 | "authors": [ |
8317 | { | 8099 | { |
8318 | "name": "Pádraic Brady", | 8100 | "name": "Pádraic Brady", |
8319 | "email": "padraic.brady@gmail.com", | 8101 | "email": "padraic.brady@gmail.com", |
8320 | "homepage": "http://blog.astrumfutura.com" | 8102 | "homepage": "http://blog.astrumfutura.com" |
8321 | }, | 8103 | }, |
8322 | { | 8104 | { |
8323 | "name": "Dave Marshall", | 8105 | "name": "Dave Marshall", |
8324 | "email": "dave.marshall@atstsolutions.co.uk", | 8106 | "email": "dave.marshall@atstsolutions.co.uk", |
8325 | "homepage": "http://davedevelopment.co.uk" | 8107 | "homepage": "http://davedevelopment.co.uk" |
8326 | } | 8108 | } |
8327 | ], | 8109 | ], |
8328 | "description": "Mockery is a simple yet flexible PHP mock object framework", | 8110 | "description": "Mockery is a simple yet flexible PHP mock object framework", |
8329 | "homepage": "https://github.com/mockery/mockery", | 8111 | "homepage": "https://github.com/mockery/mockery", |
8330 | "keywords": [ | 8112 | "keywords": [ |
8331 | "BDD", | 8113 | "BDD", |
8332 | "TDD", | 8114 | "TDD", |
8333 | "library", | 8115 | "library", |
8334 | "mock", | 8116 | "mock", |
8335 | "mock objects", | 8117 | "mock objects", |
8336 | "mockery", | 8118 | "mockery", |
8337 | "stub", | 8119 | "stub", |
8338 | "test", | 8120 | "test", |
8339 | "test double", | 8121 | "test double", |
8340 | "testing" | 8122 | "testing" |
8341 | ], | 8123 | ], |
8342 | "support": { | 8124 | "support": { |
8343 | "issues": "https://github.com/mockery/mockery/issues", | 8125 | "issues": "https://github.com/mockery/mockery/issues", |
8344 | "source": "https://github.com/mockery/mockery/tree/1.5.1" | 8126 | "source": "https://github.com/mockery/mockery/tree/1.5.1" |
8345 | }, | 8127 | }, |
8346 | "time": "2022-09-07T15:32:08+00:00" | 8128 | "time": "2022-09-07T15:32:08+00:00" |
8347 | }, | 8129 | }, |
8348 | { | 8130 | { |
8349 | "name": "myclabs/deep-copy", | 8131 | "name": "myclabs/deep-copy", |
8350 | "version": "1.11.1", | 8132 | "version": "1.11.1", |
8351 | "source": { | 8133 | "source": { |
8352 | "type": "git", | 8134 | "type": "git", |
8353 | "url": "https://github.com/myclabs/DeepCopy.git", | 8135 | "url": "https://github.com/myclabs/DeepCopy.git", |
8354 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" | 8136 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" |
8355 | }, | 8137 | }, |
8356 | "dist": { | 8138 | "dist": { |
8357 | "type": "zip", | 8139 | "type": "zip", |
8358 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", | 8140 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", |
8359 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", | 8141 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", |
8360 | "shasum": "" | 8142 | "shasum": "" |
8361 | }, | 8143 | }, |
8362 | "require": { | 8144 | "require": { |
8363 | "php": "^7.1 || ^8.0" | 8145 | "php": "^7.1 || ^8.0" |
8364 | }, | 8146 | }, |
8365 | "conflict": { | 8147 | "conflict": { |
8366 | "doctrine/collections": "<1.6.8", | 8148 | "doctrine/collections": "<1.6.8", |
8367 | "doctrine/common": "<2.13.3 || >=3,<3.2.2" | 8149 | "doctrine/common": "<2.13.3 || >=3,<3.2.2" |
8368 | }, | 8150 | }, |
8369 | "require-dev": { | 8151 | "require-dev": { |
8370 | "doctrine/collections": "^1.6.8", | 8152 | "doctrine/collections": "^1.6.8", |
8371 | "doctrine/common": "^2.13.3 || ^3.2.2", | 8153 | "doctrine/common": "^2.13.3 || ^3.2.2", |
8372 | "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" | 8154 | "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" |
8373 | }, | 8155 | }, |
8374 | "type": "library", | 8156 | "type": "library", |
8375 | "autoload": { | 8157 | "autoload": { |
8376 | "files": [ | 8158 | "files": [ |
8377 | "src/DeepCopy/deep_copy.php" | 8159 | "src/DeepCopy/deep_copy.php" |
8378 | ], | 8160 | ], |
8379 | "psr-4": { | 8161 | "psr-4": { |
8380 | "DeepCopy\\": "src/DeepCopy/" | 8162 | "DeepCopy\\": "src/DeepCopy/" |
8381 | } | 8163 | } |
8382 | }, | 8164 | }, |
8383 | "notification-url": "https://packagist.org/downloads/", | 8165 | "notification-url": "https://packagist.org/downloads/", |
8384 | "license": [ | 8166 | "license": [ |
8385 | "MIT" | 8167 | "MIT" |
8386 | ], | 8168 | ], |
8387 | "description": "Create deep copies (clones) of your objects", | 8169 | "description": "Create deep copies (clones) of your objects", |
8388 | "keywords": [ | 8170 | "keywords": [ |
8389 | "clone", | 8171 | "clone", |
8390 | "copy", | 8172 | "copy", |
8391 | "duplicate", | 8173 | "duplicate", |
8392 | "object", | 8174 | "object", |
8393 | "object graph" | 8175 | "object graph" |
8394 | ], | 8176 | ], |
8395 | "support": { | 8177 | "support": { |
8396 | "issues": "https://github.com/myclabs/DeepCopy/issues", | 8178 | "issues": "https://github.com/myclabs/DeepCopy/issues", |
8397 | "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" | 8179 | "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" |
8398 | }, | 8180 | }, |
8399 | "funding": [ | 8181 | "funding": [ |
8400 | { | 8182 | { |
8401 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", | 8183 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", |
8402 | "type": "tidelift" | 8184 | "type": "tidelift" |
8403 | } | 8185 | } |
8404 | ], | 8186 | ], |
8405 | "time": "2023-03-08T13:26:56+00:00" | 8187 | "time": "2023-03-08T13:26:56+00:00" |
8406 | }, | 8188 | }, |
8407 | { | 8189 | { |
8408 | "name": "nunomaduro/collision", | 8190 | "name": "nunomaduro/collision", |
8409 | "version": "v6.4.0", | 8191 | "version": "v6.4.0", |
8410 | "source": { | 8192 | "source": { |
8411 | "type": "git", | 8193 | "type": "git", |
8412 | "url": "https://github.com/nunomaduro/collision.git", | 8194 | "url": "https://github.com/nunomaduro/collision.git", |
8413 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015" | 8195 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015" |
8414 | }, | 8196 | }, |
8415 | "dist": { | 8197 | "dist": { |
8416 | "type": "zip", | 8198 | "type": "zip", |
8417 | "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", | 8199 | "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", |
8418 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015", | 8200 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015", |
8419 | "shasum": "" | 8201 | "shasum": "" |
8420 | }, | 8202 | }, |
8421 | "require": { | 8203 | "require": { |
8422 | "filp/whoops": "^2.14.5", | 8204 | "filp/whoops": "^2.14.5", |
8423 | "php": "^8.0.0", | 8205 | "php": "^8.0.0", |
8424 | "symfony/console": "^6.0.2" | 8206 | "symfony/console": "^6.0.2" |
8425 | }, | 8207 | }, |
8426 | "require-dev": { | 8208 | "require-dev": { |
8427 | "brianium/paratest": "^6.4.1", | 8209 | "brianium/paratest": "^6.4.1", |
8428 | "laravel/framework": "^9.26.1", | 8210 | "laravel/framework": "^9.26.1", |
8429 | "laravel/pint": "^1.1.1", | 8211 | "laravel/pint": "^1.1.1", |
8430 | "nunomaduro/larastan": "^1.0.3", | 8212 | "nunomaduro/larastan": "^1.0.3", |
8431 | "nunomaduro/mock-final-classes": "^1.1.0", | 8213 | "nunomaduro/mock-final-classes": "^1.1.0", |
8432 | "orchestra/testbench": "^7.7", | 8214 | "orchestra/testbench": "^7.7", |
8433 | "phpunit/phpunit": "^9.5.23", | 8215 | "phpunit/phpunit": "^9.5.23", |
8434 | "spatie/ignition": "^1.4.1" | 8216 | "spatie/ignition": "^1.4.1" |
8435 | }, | 8217 | }, |
8436 | "type": "library", | 8218 | "type": "library", |
8437 | "extra": { | 8219 | "extra": { |
8438 | "branch-alias": { | 8220 | "branch-alias": { |
8439 | "dev-develop": "6.x-dev" | 8221 | "dev-develop": "6.x-dev" |
8440 | }, | 8222 | }, |
8441 | "laravel": { | 8223 | "laravel": { |
8442 | "providers": [ | 8224 | "providers": [ |
8443 | "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" | 8225 | "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" |
8444 | ] | 8226 | ] |
8445 | } | 8227 | } |
8446 | }, | 8228 | }, |
8447 | "autoload": { | 8229 | "autoload": { |
8448 | "psr-4": { | 8230 | "psr-4": { |
8449 | "NunoMaduro\\Collision\\": "src/" | 8231 | "NunoMaduro\\Collision\\": "src/" |
8450 | } | 8232 | } |
8451 | }, | 8233 | }, |
8452 | "notification-url": "https://packagist.org/downloads/", | 8234 | "notification-url": "https://packagist.org/downloads/", |
8453 | "license": [ | 8235 | "license": [ |
8454 | "MIT" | 8236 | "MIT" |
8455 | ], | 8237 | ], |
8456 | "authors": [ | 8238 | "authors": [ |
8457 | { | 8239 | { |
8458 | "name": "Nuno Maduro", | 8240 | "name": "Nuno Maduro", |
8459 | "email": "enunomaduro@gmail.com" | 8241 | "email": "enunomaduro@gmail.com" |
8460 | } | 8242 | } |
8461 | ], | 8243 | ], |
8462 | "description": "Cli error handling for console/command-line PHP applications.", | 8244 | "description": "Cli error handling for console/command-line PHP applications.", |
8463 | "keywords": [ | 8245 | "keywords": [ |
8464 | "artisan", | 8246 | "artisan", |
8465 | "cli", | 8247 | "cli", |
8466 | "command-line", | 8248 | "command-line", |
8467 | "console", | 8249 | "console", |
8468 | "error", | 8250 | "error", |
8469 | "handling", | 8251 | "handling", |
8470 | "laravel", | 8252 | "laravel", |
8471 | "laravel-zero", | 8253 | "laravel-zero", |
8472 | "php", | 8254 | "php", |
8473 | "symfony" | 8255 | "symfony" |
8474 | ], | 8256 | ], |
8475 | "support": { | 8257 | "support": { |
8476 | "issues": "https://github.com/nunomaduro/collision/issues", | 8258 | "issues": "https://github.com/nunomaduro/collision/issues", |
8477 | "source": "https://github.com/nunomaduro/collision" | 8259 | "source": "https://github.com/nunomaduro/collision" |
8478 | }, | 8260 | }, |
8479 | "funding": [ | 8261 | "funding": [ |
8480 | { | 8262 | { |
8481 | "url": "https://www.paypal.com/paypalme/enunomaduro", | 8263 | "url": "https://www.paypal.com/paypalme/enunomaduro", |
8482 | "type": "custom" | 8264 | "type": "custom" |
8483 | }, | 8265 | }, |
8484 | { | 8266 | { |
8485 | "url": "https://github.com/nunomaduro", | 8267 | "url": "https://github.com/nunomaduro", |
8486 | "type": "github" | 8268 | "type": "github" |
8487 | }, | 8269 | }, |
8488 | { | 8270 | { |
8489 | "url": "https://www.patreon.com/nunomaduro", | 8271 | "url": "https://www.patreon.com/nunomaduro", |
8490 | "type": "patreon" | 8272 | "type": "patreon" |
8491 | } | 8273 | } |
8492 | ], | 8274 | ], |
8493 | "time": "2023-01-03T12:54:54+00:00" | 8275 | "time": "2023-01-03T12:54:54+00:00" |
8494 | }, | 8276 | }, |
8495 | { | 8277 | { |
8496 | "name": "phar-io/manifest", | 8278 | "name": "phar-io/manifest", |
8497 | "version": "2.0.3", | 8279 | "version": "2.0.3", |
8498 | "source": { | 8280 | "source": { |
8499 | "type": "git", | 8281 | "type": "git", |
8500 | "url": "https://github.com/phar-io/manifest.git", | 8282 | "url": "https://github.com/phar-io/manifest.git", |
8501 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53" | 8283 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53" |
8502 | }, | 8284 | }, |
8503 | "dist": { | 8285 | "dist": { |
8504 | "type": "zip", | 8286 | "type": "zip", |
8505 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", | 8287 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", |
8506 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53", | 8288 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53", |
8507 | "shasum": "" | 8289 | "shasum": "" |
8508 | }, | 8290 | }, |
8509 | "require": { | 8291 | "require": { |
8510 | "ext-dom": "*", | 8292 | "ext-dom": "*", |
8511 | "ext-phar": "*", | 8293 | "ext-phar": "*", |
8512 | "ext-xmlwriter": "*", | 8294 | "ext-xmlwriter": "*", |
8513 | "phar-io/version": "^3.0.1", | 8295 | "phar-io/version": "^3.0.1", |
8514 | "php": "^7.2 || ^8.0" | 8296 | "php": "^7.2 || ^8.0" |
8515 | }, | 8297 | }, |
8516 | "type": "library", | 8298 | "type": "library", |
8517 | "extra": { | 8299 | "extra": { |
8518 | "branch-alias": { | 8300 | "branch-alias": { |
8519 | "dev-master": "2.0.x-dev" | 8301 | "dev-master": "2.0.x-dev" |
8520 | } | 8302 | } |
8521 | }, | 8303 | }, |
8522 | "autoload": { | 8304 | "autoload": { |
8523 | "classmap": [ | 8305 | "classmap": [ |
8524 | "src/" | 8306 | "src/" |
8525 | ] | 8307 | ] |
8526 | }, | 8308 | }, |
8527 | "notification-url": "https://packagist.org/downloads/", | 8309 | "notification-url": "https://packagist.org/downloads/", |
8528 | "license": [ | 8310 | "license": [ |
8529 | "BSD-3-Clause" | 8311 | "BSD-3-Clause" |
8530 | ], | 8312 | ], |
8531 | "authors": [ | 8313 | "authors": [ |
8532 | { | 8314 | { |
8533 | "name": "Arne Blankerts", | 8315 | "name": "Arne Blankerts", |
8534 | "email": "arne@blankerts.de", | 8316 | "email": "arne@blankerts.de", |
8535 | "role": "Developer" | 8317 | "role": "Developer" |
8536 | }, | 8318 | }, |
8537 | { | 8319 | { |
8538 | "name": "Sebastian Heuer", | 8320 | "name": "Sebastian Heuer", |
8539 | "email": "sebastian@phpeople.de", | 8321 | "email": "sebastian@phpeople.de", |
8540 | "role": "Developer" | 8322 | "role": "Developer" |
8541 | }, | 8323 | }, |
8542 | { | 8324 | { |
8543 | "name": "Sebastian Bergmann", | 8325 | "name": "Sebastian Bergmann", |
8544 | "email": "sebastian@phpunit.de", | 8326 | "email": "sebastian@phpunit.de", |
8545 | "role": "Developer" | 8327 | "role": "Developer" |
8546 | } | 8328 | } |
8547 | ], | 8329 | ], |
8548 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", | 8330 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", |
8549 | "support": { | 8331 | "support": { |
8550 | "issues": "https://github.com/phar-io/manifest/issues", | 8332 | "issues": "https://github.com/phar-io/manifest/issues", |
8551 | "source": "https://github.com/phar-io/manifest/tree/2.0.3" | 8333 | "source": "https://github.com/phar-io/manifest/tree/2.0.3" |
8552 | }, | 8334 | }, |
8553 | "time": "2021-07-20T11:28:43+00:00" | 8335 | "time": "2021-07-20T11:28:43+00:00" |
8554 | }, | 8336 | }, |
8555 | { | 8337 | { |
8556 | "name": "phar-io/version", | 8338 | "name": "phar-io/version", |
8557 | "version": "3.2.1", | 8339 | "version": "3.2.1", |
8558 | "source": { | 8340 | "source": { |
8559 | "type": "git", | 8341 | "type": "git", |
8560 | "url": "https://github.com/phar-io/version.git", | 8342 | "url": "https://github.com/phar-io/version.git", |
8561 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" | 8343 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" |
8562 | }, | 8344 | }, |
8563 | "dist": { | 8345 | "dist": { |
8564 | "type": "zip", | 8346 | "type": "zip", |
8565 | "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", | 8347 | "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", |
8566 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", | 8348 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", |
8567 | "shasum": "" | 8349 | "shasum": "" |
8568 | }, | 8350 | }, |
8569 | "require": { | 8351 | "require": { |
8570 | "php": "^7.2 || ^8.0" | 8352 | "php": "^7.2 || ^8.0" |
8571 | }, | 8353 | }, |
8572 | "type": "library", | 8354 | "type": "library", |
8573 | "autoload": { | 8355 | "autoload": { |
8574 | "classmap": [ | 8356 | "classmap": [ |
8575 | "src/" | 8357 | "src/" |
8576 | ] | 8358 | ] |
8577 | }, | 8359 | }, |
8578 | "notification-url": "https://packagist.org/downloads/", | 8360 | "notification-url": "https://packagist.org/downloads/", |
8579 | "license": [ | 8361 | "license": [ |
8580 | "BSD-3-Clause" | 8362 | "BSD-3-Clause" |
8581 | ], | 8363 | ], |
8582 | "authors": [ | 8364 | "authors": [ |
8583 | { | 8365 | { |
8584 | "name": "Arne Blankerts", | 8366 | "name": "Arne Blankerts", |
8585 | "email": "arne@blankerts.de", | 8367 | "email": "arne@blankerts.de", |
8586 | "role": "Developer" | 8368 | "role": "Developer" |
8587 | }, | 8369 | }, |
8588 | { | 8370 | { |
8589 | "name": "Sebastian Heuer", | 8371 | "name": "Sebastian Heuer", |
8590 | "email": "sebastian@phpeople.de", | 8372 | "email": "sebastian@phpeople.de", |
8591 | "role": "Developer" | 8373 | "role": "Developer" |
8592 | }, | 8374 | }, |
8593 | { | 8375 | { |
8594 | "name": "Sebastian Bergmann", | 8376 | "name": "Sebastian Bergmann", |
8595 | "email": "sebastian@phpunit.de", | 8377 | "email": "sebastian@phpunit.de", |
8596 | "role": "Developer" | 8378 | "role": "Developer" |
8597 | } | 8379 | } |
8598 | ], | 8380 | ], |
8599 | "description": "Library for handling version information and constraints", | 8381 | "description": "Library for handling version information and constraints", |
8600 | "support": { | 8382 | "support": { |
8601 | "issues": "https://github.com/phar-io/version/issues", | 8383 | "issues": "https://github.com/phar-io/version/issues", |
8602 | "source": "https://github.com/phar-io/version/tree/3.2.1" | 8384 | "source": "https://github.com/phar-io/version/tree/3.2.1" |
8603 | }, | 8385 | }, |
8604 | "time": "2022-02-21T01:04:05+00:00" | 8386 | "time": "2022-02-21T01:04:05+00:00" |
8605 | }, | 8387 | }, |
8606 | { | 8388 | { |
8607 | "name": "phpunit/php-code-coverage", | 8389 | "name": "phpunit/php-code-coverage", |
8608 | "version": "9.2.26", | 8390 | "version": "9.2.26", |
8609 | "source": { | 8391 | "source": { |
8610 | "type": "git", | 8392 | "type": "git", |
8611 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", | 8393 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", |
8612 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" | 8394 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" |
8613 | }, | 8395 | }, |
8614 | "dist": { | 8396 | "dist": { |
8615 | "type": "zip", | 8397 | "type": "zip", |
8616 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", | 8398 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", |
8617 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", | 8399 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", |
8618 | "shasum": "" | 8400 | "shasum": "" |
8619 | }, | 8401 | }, |
8620 | "require": { | 8402 | "require": { |
8621 | "ext-dom": "*", | 8403 | "ext-dom": "*", |
8622 | "ext-libxml": "*", | 8404 | "ext-libxml": "*", |
8623 | "ext-xmlwriter": "*", | 8405 | "ext-xmlwriter": "*", |
8624 | "nikic/php-parser": "^4.15", | 8406 | "nikic/php-parser": "^4.15", |
8625 | "php": ">=7.3", | 8407 | "php": ">=7.3", |
8626 | "phpunit/php-file-iterator": "^3.0.3", | 8408 | "phpunit/php-file-iterator": "^3.0.3", |
8627 | "phpunit/php-text-template": "^2.0.2", | 8409 | "phpunit/php-text-template": "^2.0.2", |
8628 | "sebastian/code-unit-reverse-lookup": "^2.0.2", | 8410 | "sebastian/code-unit-reverse-lookup": "^2.0.2", |
8629 | "sebastian/complexity": "^2.0", | 8411 | "sebastian/complexity": "^2.0", |
8630 | "sebastian/environment": "^5.1.2", | 8412 | "sebastian/environment": "^5.1.2", |
8631 | "sebastian/lines-of-code": "^1.0.3", | 8413 | "sebastian/lines-of-code": "^1.0.3", |
8632 | "sebastian/version": "^3.0.1", | 8414 | "sebastian/version": "^3.0.1", |
8633 | "theseer/tokenizer": "^1.2.0" | 8415 | "theseer/tokenizer": "^1.2.0" |
8634 | }, | 8416 | }, |
8635 | "require-dev": { | 8417 | "require-dev": { |
8636 | "phpunit/phpunit": "^9.3" | 8418 | "phpunit/phpunit": "^9.3" |
8637 | }, | 8419 | }, |
8638 | "suggest": { | 8420 | "suggest": { |
8639 | "ext-pcov": "PHP extension that provides line coverage", | 8421 | "ext-pcov": "PHP extension that provides line coverage", |
8640 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" | 8422 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" |
8641 | }, | 8423 | }, |
8642 | "type": "library", | 8424 | "type": "library", |
8643 | "extra": { | 8425 | "extra": { |
8644 | "branch-alias": { | 8426 | "branch-alias": { |
8645 | "dev-master": "9.2-dev" | 8427 | "dev-master": "9.2-dev" |
8646 | } | 8428 | } |
8647 | }, | 8429 | }, |
8648 | "autoload": { | 8430 | "autoload": { |
8649 | "classmap": [ | 8431 | "classmap": [ |
8650 | "src/" | 8432 | "src/" |
8651 | ] | 8433 | ] |
8652 | }, | 8434 | }, |
8653 | "notification-url": "https://packagist.org/downloads/", | 8435 | "notification-url": "https://packagist.org/downloads/", |
8654 | "license": [ | 8436 | "license": [ |
8655 | "BSD-3-Clause" | 8437 | "BSD-3-Clause" |
8656 | ], | 8438 | ], |
8657 | "authors": [ | 8439 | "authors": [ |
8658 | { | 8440 | { |
8659 | "name": "Sebastian Bergmann", | 8441 | "name": "Sebastian Bergmann", |
8660 | "email": "sebastian@phpunit.de", | 8442 | "email": "sebastian@phpunit.de", |
8661 | "role": "lead" | 8443 | "role": "lead" |
8662 | } | 8444 | } |
8663 | ], | 8445 | ], |
8664 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", | 8446 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", |
8665 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", | 8447 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", |
8666 | "keywords": [ | 8448 | "keywords": [ |
8667 | "coverage", | 8449 | "coverage", |
8668 | "testing", | 8450 | "testing", |
8669 | "xunit" | 8451 | "xunit" |
8670 | ], | 8452 | ], |
8671 | "support": { | 8453 | "support": { |
8672 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", | 8454 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", |
8673 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" | 8455 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" |
8674 | }, | 8456 | }, |
8675 | "funding": [ | 8457 | "funding": [ |
8676 | { | 8458 | { |
8677 | "url": "https://github.com/sebastianbergmann", | 8459 | "url": "https://github.com/sebastianbergmann", |
8678 | "type": "github" | 8460 | "type": "github" |
8679 | } | 8461 | } |
8680 | ], | 8462 | ], |
8681 | "time": "2023-03-06T12:58:08+00:00" | 8463 | "time": "2023-03-06T12:58:08+00:00" |
8682 | }, | 8464 | }, |
8683 | { | 8465 | { |
8684 | "name": "phpunit/php-file-iterator", | 8466 | "name": "phpunit/php-file-iterator", |
8685 | "version": "3.0.6", | 8467 | "version": "3.0.6", |
8686 | "source": { | 8468 | "source": { |
8687 | "type": "git", | 8469 | "type": "git", |
8688 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", | 8470 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", |
8689 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" | 8471 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" |
8690 | }, | 8472 | }, |
8691 | "dist": { | 8473 | "dist": { |
8692 | "type": "zip", | 8474 | "type": "zip", |
8693 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", | 8475 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", |
8694 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", | 8476 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", |
8695 | "shasum": "" | 8477 | "shasum": "" |
8696 | }, | 8478 | }, |
8697 | "require": { | 8479 | "require": { |
8698 | "php": ">=7.3" | 8480 | "php": ">=7.3" |
8699 | }, | 8481 | }, |
8700 | "require-dev": { | 8482 | "require-dev": { |
8701 | "phpunit/phpunit": "^9.3" | 8483 | "phpunit/phpunit": "^9.3" |
8702 | }, | 8484 | }, |
8703 | "type": "library", | 8485 | "type": "library", |
8704 | "extra": { | 8486 | "extra": { |
8705 | "branch-alias": { | 8487 | "branch-alias": { |
8706 | "dev-master": "3.0-dev" | 8488 | "dev-master": "3.0-dev" |
8707 | } | 8489 | } |
8708 | }, | 8490 | }, |
8709 | "autoload": { | 8491 | "autoload": { |
8710 | "classmap": [ | 8492 | "classmap": [ |
8711 | "src/" | 8493 | "src/" |
8712 | ] | 8494 | ] |
8713 | }, | 8495 | }, |
8714 | "notification-url": "https://packagist.org/downloads/", | 8496 | "notification-url": "https://packagist.org/downloads/", |
8715 | "license": [ | 8497 | "license": [ |
8716 | "BSD-3-Clause" | 8498 | "BSD-3-Clause" |
8717 | ], | 8499 | ], |
8718 | "authors": [ | 8500 | "authors": [ |
8719 | { | 8501 | { |
8720 | "name": "Sebastian Bergmann", | 8502 | "name": "Sebastian Bergmann", |
8721 | "email": "sebastian@phpunit.de", | 8503 | "email": "sebastian@phpunit.de", |
8722 | "role": "lead" | 8504 | "role": "lead" |
8723 | } | 8505 | } |
8724 | ], | 8506 | ], |
8725 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", | 8507 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", |
8726 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", | 8508 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", |
8727 | "keywords": [ | 8509 | "keywords": [ |
8728 | "filesystem", | 8510 | "filesystem", |
8729 | "iterator" | 8511 | "iterator" |
8730 | ], | 8512 | ], |
8731 | "support": { | 8513 | "support": { |
8732 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", | 8514 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", |
8733 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" | 8515 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" |
8734 | }, | 8516 | }, |
8735 | "funding": [ | 8517 | "funding": [ |
8736 | { | 8518 | { |
8737 | "url": "https://github.com/sebastianbergmann", | 8519 | "url": "https://github.com/sebastianbergmann", |
8738 | "type": "github" | 8520 | "type": "github" |
8739 | } | 8521 | } |
8740 | ], | 8522 | ], |
8741 | "time": "2021-12-02T12:48:52+00:00" | 8523 | "time": "2021-12-02T12:48:52+00:00" |
8742 | }, | 8524 | }, |
8743 | { | 8525 | { |
8744 | "name": "phpunit/php-invoker", | 8526 | "name": "phpunit/php-invoker", |
8745 | "version": "3.1.1", | 8527 | "version": "3.1.1", |
8746 | "source": { | 8528 | "source": { |
8747 | "type": "git", | 8529 | "type": "git", |
8748 | "url": "https://github.com/sebastianbergmann/php-invoker.git", | 8530 | "url": "https://github.com/sebastianbergmann/php-invoker.git", |
8749 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" | 8531 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" |
8750 | }, | 8532 | }, |
8751 | "dist": { | 8533 | "dist": { |
8752 | "type": "zip", | 8534 | "type": "zip", |
8753 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", | 8535 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", |
8754 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", | 8536 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", |
8755 | "shasum": "" | 8537 | "shasum": "" |
8756 | }, | 8538 | }, |
8757 | "require": { | 8539 | "require": { |
8758 | "php": ">=7.3" | 8540 | "php": ">=7.3" |
8759 | }, | 8541 | }, |
8760 | "require-dev": { | 8542 | "require-dev": { |
8761 | "ext-pcntl": "*", | 8543 | "ext-pcntl": "*", |
8762 | "phpunit/phpunit": "^9.3" | 8544 | "phpunit/phpunit": "^9.3" |
8763 | }, | 8545 | }, |
8764 | "suggest": { | 8546 | "suggest": { |
8765 | "ext-pcntl": "*" | 8547 | "ext-pcntl": "*" |
8766 | }, | 8548 | }, |
8767 | "type": "library", | 8549 | "type": "library", |
8768 | "extra": { | 8550 | "extra": { |
8769 | "branch-alias": { | 8551 | "branch-alias": { |
8770 | "dev-master": "3.1-dev" | 8552 | "dev-master": "3.1-dev" |
8771 | } | 8553 | } |
8772 | }, | 8554 | }, |
8773 | "autoload": { | 8555 | "autoload": { |
8774 | "classmap": [ | 8556 | "classmap": [ |
8775 | "src/" | 8557 | "src/" |
8776 | ] | 8558 | ] |
8777 | }, | 8559 | }, |
8778 | "notification-url": "https://packagist.org/downloads/", | 8560 | "notification-url": "https://packagist.org/downloads/", |
8779 | "license": [ | 8561 | "license": [ |
8780 | "BSD-3-Clause" | 8562 | "BSD-3-Clause" |
8781 | ], | 8563 | ], |
8782 | "authors": [ | 8564 | "authors": [ |
8783 | { | 8565 | { |
8784 | "name": "Sebastian Bergmann", | 8566 | "name": "Sebastian Bergmann", |
8785 | "email": "sebastian@phpunit.de", | 8567 | "email": "sebastian@phpunit.de", |
8786 | "role": "lead" | 8568 | "role": "lead" |
8787 | } | 8569 | } |
8788 | ], | 8570 | ], |
8789 | "description": "Invoke callables with a timeout", | 8571 | "description": "Invoke callables with a timeout", |
8790 | "homepage": "https://github.com/sebastianbergmann/php-invoker/", | 8572 | "homepage": "https://github.com/sebastianbergmann/php-invoker/", |
8791 | "keywords": [ | 8573 | "keywords": [ |
8792 | "process" | 8574 | "process" |
8793 | ], | 8575 | ], |
8794 | "support": { | 8576 | "support": { |
8795 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues", | 8577 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues", |
8796 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" | 8578 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" |
8797 | }, | 8579 | }, |
8798 | "funding": [ | 8580 | "funding": [ |
8799 | { | 8581 | { |
8800 | "url": "https://github.com/sebastianbergmann", | 8582 | "url": "https://github.com/sebastianbergmann", |
8801 | "type": "github" | 8583 | "type": "github" |
8802 | } | 8584 | } |
8803 | ], | 8585 | ], |
8804 | "time": "2020-09-28T05:58:55+00:00" | 8586 | "time": "2020-09-28T05:58:55+00:00" |
8805 | }, | 8587 | }, |
8806 | { | 8588 | { |
8807 | "name": "phpunit/php-text-template", | 8589 | "name": "phpunit/php-text-template", |
8808 | "version": "2.0.4", | 8590 | "version": "2.0.4", |
8809 | "source": { | 8591 | "source": { |
8810 | "type": "git", | 8592 | "type": "git", |
8811 | "url": "https://github.com/sebastianbergmann/php-text-template.git", | 8593 | "url": "https://github.com/sebastianbergmann/php-text-template.git", |
8812 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" | 8594 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" |
8813 | }, | 8595 | }, |
8814 | "dist": { | 8596 | "dist": { |
8815 | "type": "zip", | 8597 | "type": "zip", |
8816 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", | 8598 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", |
8817 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", | 8599 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", |
8818 | "shasum": "" | 8600 | "shasum": "" |
8819 | }, | 8601 | }, |
8820 | "require": { | 8602 | "require": { |
8821 | "php": ">=7.3" | 8603 | "php": ">=7.3" |
8822 | }, | 8604 | }, |
8823 | "require-dev": { | 8605 | "require-dev": { |
8824 | "phpunit/phpunit": "^9.3" | 8606 | "phpunit/phpunit": "^9.3" |
8825 | }, | 8607 | }, |
8826 | "type": "library", | 8608 | "type": "library", |
8827 | "extra": { | 8609 | "extra": { |
8828 | "branch-alias": { | 8610 | "branch-alias": { |
8829 | "dev-master": "2.0-dev" | 8611 | "dev-master": "2.0-dev" |
8830 | } | 8612 | } |
8831 | }, | 8613 | }, |
8832 | "autoload": { | 8614 | "autoload": { |
8833 | "classmap": [ | 8615 | "classmap": [ |
8834 | "src/" | 8616 | "src/" |
8835 | ] | 8617 | ] |
8836 | }, | 8618 | }, |
8837 | "notification-url": "https://packagist.org/downloads/", | 8619 | "notification-url": "https://packagist.org/downloads/", |
8838 | "license": [ | 8620 | "license": [ |
8839 | "BSD-3-Clause" | 8621 | "BSD-3-Clause" |
8840 | ], | 8622 | ], |
8841 | "authors": [ | 8623 | "authors": [ |
8842 | { | 8624 | { |
8843 | "name": "Sebastian Bergmann", | 8625 | "name": "Sebastian Bergmann", |
8844 | "email": "sebastian@phpunit.de", | 8626 | "email": "sebastian@phpunit.de", |
8845 | "role": "lead" | 8627 | "role": "lead" |
8846 | } | 8628 | } |
8847 | ], | 8629 | ], |
8848 | "description": "Simple template engine.", | 8630 | "description": "Simple template engine.", |
8849 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", | 8631 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", |
8850 | "keywords": [ | 8632 | "keywords": [ |
8851 | "template" | 8633 | "template" |
8852 | ], | 8634 | ], |
8853 | "support": { | 8635 | "support": { |
8854 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues", | 8636 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues", |
8855 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" | 8637 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" |
8856 | }, | 8638 | }, |
8857 | "funding": [ | 8639 | "funding": [ |
8858 | { | 8640 | { |
8859 | "url": "https://github.com/sebastianbergmann", | 8641 | "url": "https://github.com/sebastianbergmann", |
8860 | "type": "github" | 8642 | "type": "github" |
8861 | } | 8643 | } |
8862 | ], | 8644 | ], |
8863 | "time": "2020-10-26T05:33:50+00:00" | 8645 | "time": "2020-10-26T05:33:50+00:00" |
8864 | }, | 8646 | }, |
8865 | { | 8647 | { |
8866 | "name": "phpunit/php-timer", | 8648 | "name": "phpunit/php-timer", |
8867 | "version": "5.0.3", | 8649 | "version": "5.0.3", |
8868 | "source": { | 8650 | "source": { |
8869 | "type": "git", | 8651 | "type": "git", |
8870 | "url": "https://github.com/sebastianbergmann/php-timer.git", | 8652 | "url": "https://github.com/sebastianbergmann/php-timer.git", |
8871 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" | 8653 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" |
8872 | }, | 8654 | }, |
8873 | "dist": { | 8655 | "dist": { |
8874 | "type": "zip", | 8656 | "type": "zip", |
8875 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", | 8657 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", |
8876 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", | 8658 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", |
8877 | "shasum": "" | 8659 | "shasum": "" |
8878 | }, | 8660 | }, |
8879 | "require": { | 8661 | "require": { |
8880 | "php": ">=7.3" | 8662 | "php": ">=7.3" |
8881 | }, | 8663 | }, |
8882 | "require-dev": { | 8664 | "require-dev": { |
8883 | "phpunit/phpunit": "^9.3" | 8665 | "phpunit/phpunit": "^9.3" |
8884 | }, | 8666 | }, |
8885 | "type": "library", | 8667 | "type": "library", |
8886 | "extra": { | 8668 | "extra": { |
8887 | "branch-alias": { | 8669 | "branch-alias": { |
8888 | "dev-master": "5.0-dev" | 8670 | "dev-master": "5.0-dev" |
8889 | } | 8671 | } |
8890 | }, | 8672 | }, |
8891 | "autoload": { | 8673 | "autoload": { |
8892 | "classmap": [ | 8674 | "classmap": [ |
8893 | "src/" | 8675 | "src/" |
8894 | ] | 8676 | ] |
8895 | }, | 8677 | }, |
8896 | "notification-url": "https://packagist.org/downloads/", | 8678 | "notification-url": "https://packagist.org/downloads/", |
8897 | "license": [ | 8679 | "license": [ |
8898 | "BSD-3-Clause" | 8680 | "BSD-3-Clause" |
8899 | ], | 8681 | ], |
8900 | "authors": [ | 8682 | "authors": [ |
8901 | { | 8683 | { |
8902 | "name": "Sebastian Bergmann", | 8684 | "name": "Sebastian Bergmann", |
8903 | "email": "sebastian@phpunit.de", | 8685 | "email": "sebastian@phpunit.de", |
8904 | "role": "lead" | 8686 | "role": "lead" |
8905 | } | 8687 | } |
8906 | ], | 8688 | ], |
8907 | "description": "Utility class for timing", | 8689 | "description": "Utility class for timing", |
8908 | "homepage": "https://github.com/sebastianbergmann/php-timer/", | 8690 | "homepage": "https://github.com/sebastianbergmann/php-timer/", |
8909 | "keywords": [ | 8691 | "keywords": [ |
8910 | "timer" | 8692 | "timer" |
8911 | ], | 8693 | ], |
8912 | "support": { | 8694 | "support": { |
8913 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", | 8695 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", |
8914 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" | 8696 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" |
8915 | }, | 8697 | }, |
8916 | "funding": [ | 8698 | "funding": [ |
8917 | { | 8699 | { |
8918 | "url": "https://github.com/sebastianbergmann", | 8700 | "url": "https://github.com/sebastianbergmann", |
8919 | "type": "github" | 8701 | "type": "github" |
8920 | } | 8702 | } |
8921 | ], | 8703 | ], |
8922 | "time": "2020-10-26T13:16:10+00:00" | 8704 | "time": "2020-10-26T13:16:10+00:00" |
8923 | }, | 8705 | }, |
8924 | { | 8706 | { |
8925 | "name": "phpunit/phpunit", | 8707 | "name": "phpunit/phpunit", |
8926 | "version": "9.6.8", | 8708 | "version": "9.6.8", |
8927 | "source": { | 8709 | "source": { |
8928 | "type": "git", | 8710 | "type": "git", |
8929 | "url": "https://github.com/sebastianbergmann/phpunit.git", | 8711 | "url": "https://github.com/sebastianbergmann/phpunit.git", |
8930 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e" | 8712 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e" |
8931 | }, | 8713 | }, |
8932 | "dist": { | 8714 | "dist": { |
8933 | "type": "zip", | 8715 | "type": "zip", |
8934 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/17d621b3aff84d0c8b62539e269e87d8d5baa76e", | 8716 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/17d621b3aff84d0c8b62539e269e87d8d5baa76e", |
8935 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e", | 8717 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e", |
8936 | "shasum": "" | 8718 | "shasum": "" |
8937 | }, | 8719 | }, |
8938 | "require": { | 8720 | "require": { |
8939 | "doctrine/instantiator": "^1.3.1 || ^2", | 8721 | "doctrine/instantiator": "^1.3.1 || ^2", |
8940 | "ext-dom": "*", | 8722 | "ext-dom": "*", |
8941 | "ext-json": "*", | 8723 | "ext-json": "*", |
8942 | "ext-libxml": "*", | 8724 | "ext-libxml": "*", |
8943 | "ext-mbstring": "*", | 8725 | "ext-mbstring": "*", |
8944 | "ext-xml": "*", | 8726 | "ext-xml": "*", |
8945 | "ext-xmlwriter": "*", | 8727 | "ext-xmlwriter": "*", |
8946 | "myclabs/deep-copy": "^1.10.1", | 8728 | "myclabs/deep-copy": "^1.10.1", |
8947 | "phar-io/manifest": "^2.0.3", | 8729 | "phar-io/manifest": "^2.0.3", |
8948 | "phar-io/version": "^3.0.2", | 8730 | "phar-io/version": "^3.0.2", |
8949 | "php": ">=7.3", | 8731 | "php": ">=7.3", |
8950 | "phpunit/php-code-coverage": "^9.2.13", | 8732 | "phpunit/php-code-coverage": "^9.2.13", |
8951 | "phpunit/php-file-iterator": "^3.0.5", | 8733 | "phpunit/php-file-iterator": "^3.0.5", |
8952 | "phpunit/php-invoker": "^3.1.1", | 8734 | "phpunit/php-invoker": "^3.1.1", |
8953 | "phpunit/php-text-template": "^2.0.3", | 8735 | "phpunit/php-text-template": "^2.0.3", |
8954 | "phpunit/php-timer": "^5.0.2", | 8736 | "phpunit/php-timer": "^5.0.2", |
8955 | "sebastian/cli-parser": "^1.0.1", | 8737 | "sebastian/cli-parser": "^1.0.1", |
8956 | "sebastian/code-unit": "^1.0.6", | 8738 | "sebastian/code-unit": "^1.0.6", |
8957 | "sebastian/comparator": "^4.0.8", | 8739 | "sebastian/comparator": "^4.0.8", |
8958 | "sebastian/diff": "^4.0.3", | 8740 | "sebastian/diff": "^4.0.3", |
8959 | "sebastian/environment": "^5.1.3", | 8741 | "sebastian/environment": "^5.1.3", |
8960 | "sebastian/exporter": "^4.0.5", | 8742 | "sebastian/exporter": "^4.0.5", |
8961 | "sebastian/global-state": "^5.0.1", | 8743 | "sebastian/global-state": "^5.0.1", |
8962 | "sebastian/object-enumerator": "^4.0.3", | 8744 | "sebastian/object-enumerator": "^4.0.3", |
8963 | "sebastian/resource-operations": "^3.0.3", | 8745 | "sebastian/resource-operations": "^3.0.3", |
8964 | "sebastian/type": "^3.2", | 8746 | "sebastian/type": "^3.2", |
8965 | "sebastian/version": "^3.0.2" | 8747 | "sebastian/version": "^3.0.2" |
8966 | }, | 8748 | }, |
8967 | "suggest": { | 8749 | "suggest": { |
8968 | "ext-soap": "To be able to generate mocks based on WSDL files", | 8750 | "ext-soap": "To be able to generate mocks based on WSDL files", |
8969 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" | 8751 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" |
8970 | }, | 8752 | }, |
8971 | "bin": [ | 8753 | "bin": [ |
8972 | "phpunit" | 8754 | "phpunit" |
8973 | ], | 8755 | ], |
8974 | "type": "library", | 8756 | "type": "library", |
8975 | "extra": { | 8757 | "extra": { |
8976 | "branch-alias": { | 8758 | "branch-alias": { |
8977 | "dev-master": "9.6-dev" | 8759 | "dev-master": "9.6-dev" |
8978 | } | 8760 | } |
8979 | }, | 8761 | }, |
8980 | "autoload": { | 8762 | "autoload": { |
8981 | "files": [ | 8763 | "files": [ |
8982 | "src/Framework/Assert/Functions.php" | 8764 | "src/Framework/Assert/Functions.php" |
8983 | ], | 8765 | ], |
8984 | "classmap": [ | 8766 | "classmap": [ |
8985 | "src/" | 8767 | "src/" |
8986 | ] | 8768 | ] |
8987 | }, | 8769 | }, |
8988 | "notification-url": "https://packagist.org/downloads/", | 8770 | "notification-url": "https://packagist.org/downloads/", |
8989 | "license": [ | 8771 | "license": [ |
8990 | "BSD-3-Clause" | 8772 | "BSD-3-Clause" |
8991 | ], | 8773 | ], |
8992 | "authors": [ | 8774 | "authors": [ |
8993 | { | 8775 | { |
8994 | "name": "Sebastian Bergmann", | 8776 | "name": "Sebastian Bergmann", |
8995 | "email": "sebastian@phpunit.de", | 8777 | "email": "sebastian@phpunit.de", |
8996 | "role": "lead" | 8778 | "role": "lead" |
8997 | } | 8779 | } |
8998 | ], | 8780 | ], |
8999 | "description": "The PHP Unit Testing framework.", | 8781 | "description": "The PHP Unit Testing framework.", |
9000 | "homepage": "https://phpunit.de/", | 8782 | "homepage": "https://phpunit.de/", |
9001 | "keywords": [ | 8783 | "keywords": [ |
9002 | "phpunit", | 8784 | "phpunit", |
9003 | "testing", | 8785 | "testing", |
9004 | "xunit" | 8786 | "xunit" |
9005 | ], | 8787 | ], |
9006 | "support": { | 8788 | "support": { |
9007 | "issues": "https://github.com/sebastianbergmann/phpunit/issues", | 8789 | "issues": "https://github.com/sebastianbergmann/phpunit/issues", |
9008 | "security": "https://github.com/sebastianbergmann/phpunit/security/policy", | 8790 | "security": "https://github.com/sebastianbergmann/phpunit/security/policy", |
9009 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.8" | 8791 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.8" |
9010 | }, | 8792 | }, |
9011 | "funding": [ | 8793 | "funding": [ |
9012 | { | 8794 | { |
9013 | "url": "https://phpunit.de/sponsors.html", | 8795 | "url": "https://phpunit.de/sponsors.html", |
9014 | "type": "custom" | 8796 | "type": "custom" |
9015 | }, | 8797 | }, |
9016 | { | 8798 | { |
9017 | "url": "https://github.com/sebastianbergmann", | 8799 | "url": "https://github.com/sebastianbergmann", |
9018 | "type": "github" | 8800 | "type": "github" |
9019 | }, | 8801 | }, |
9020 | { | 8802 | { |
9021 | "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", | 8803 | "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", |
9022 | "type": "tidelift" | 8804 | "type": "tidelift" |
9023 | } | 8805 | } |
9024 | ], | 8806 | ], |
9025 | "time": "2023-05-11T05:14:45+00:00" | 8807 | "time": "2023-05-11T05:14:45+00:00" |
9026 | }, | 8808 | }, |
9027 | { | 8809 | { |
9028 | "name": "sebastian/cli-parser", | 8810 | "name": "sebastian/cli-parser", |
9029 | "version": "1.0.1", | 8811 | "version": "1.0.1", |
9030 | "source": { | 8812 | "source": { |
9031 | "type": "git", | 8813 | "type": "git", |
9032 | "url": "https://github.com/sebastianbergmann/cli-parser.git", | 8814 | "url": "https://github.com/sebastianbergmann/cli-parser.git", |
9033 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" | 8815 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" |
9034 | }, | 8816 | }, |
9035 | "dist": { | 8817 | "dist": { |
9036 | "type": "zip", | 8818 | "type": "zip", |
9037 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", | 8819 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", |
9038 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", | 8820 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", |
9039 | "shasum": "" | 8821 | "shasum": "" |
9040 | }, | 8822 | }, |
9041 | "require": { | 8823 | "require": { |
9042 | "php": ">=7.3" | 8824 | "php": ">=7.3" |
9043 | }, | 8825 | }, |
9044 | "require-dev": { | 8826 | "require-dev": { |
9045 | "phpunit/phpunit": "^9.3" | 8827 | "phpunit/phpunit": "^9.3" |
9046 | }, | 8828 | }, |
9047 | "type": "library", | 8829 | "type": "library", |
9048 | "extra": { | 8830 | "extra": { |
9049 | "branch-alias": { | 8831 | "branch-alias": { |
9050 | "dev-master": "1.0-dev" | 8832 | "dev-master": "1.0-dev" |
9051 | } | 8833 | } |
9052 | }, | 8834 | }, |
9053 | "autoload": { | 8835 | "autoload": { |
9054 | "classmap": [ | 8836 | "classmap": [ |
9055 | "src/" | 8837 | "src/" |
9056 | ] | 8838 | ] |
9057 | }, | 8839 | }, |
9058 | "notification-url": "https://packagist.org/downloads/", | 8840 | "notification-url": "https://packagist.org/downloads/", |
9059 | "license": [ | 8841 | "license": [ |
9060 | "BSD-3-Clause" | 8842 | "BSD-3-Clause" |
9061 | ], | 8843 | ], |
9062 | "authors": [ | 8844 | "authors": [ |
9063 | { | 8845 | { |
9064 | "name": "Sebastian Bergmann", | 8846 | "name": "Sebastian Bergmann", |
9065 | "email": "sebastian@phpunit.de", | 8847 | "email": "sebastian@phpunit.de", |
9066 | "role": "lead" | 8848 | "role": "lead" |
9067 | } | 8849 | } |
9068 | ], | 8850 | ], |
9069 | "description": "Library for parsing CLI options", | 8851 | "description": "Library for parsing CLI options", |
9070 | "homepage": "https://github.com/sebastianbergmann/cli-parser", | 8852 | "homepage": "https://github.com/sebastianbergmann/cli-parser", |
9071 | "support": { | 8853 | "support": { |
9072 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues", | 8854 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues", |
9073 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" | 8855 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" |
9074 | }, | 8856 | }, |
9075 | "funding": [ | 8857 | "funding": [ |
9076 | { | 8858 | { |
9077 | "url": "https://github.com/sebastianbergmann", | 8859 | "url": "https://github.com/sebastianbergmann", |
9078 | "type": "github" | 8860 | "type": "github" |
9079 | } | 8861 | } |
9080 | ], | 8862 | ], |
9081 | "time": "2020-09-28T06:08:49+00:00" | 8863 | "time": "2020-09-28T06:08:49+00:00" |
9082 | }, | 8864 | }, |
9083 | { | 8865 | { |
9084 | "name": "sebastian/code-unit", | 8866 | "name": "sebastian/code-unit", |
9085 | "version": "1.0.8", | 8867 | "version": "1.0.8", |
9086 | "source": { | 8868 | "source": { |
9087 | "type": "git", | 8869 | "type": "git", |
9088 | "url": "https://github.com/sebastianbergmann/code-unit.git", | 8870 | "url": "https://github.com/sebastianbergmann/code-unit.git", |
9089 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" | 8871 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" |
9090 | }, | 8872 | }, |
9091 | "dist": { | 8873 | "dist": { |
9092 | "type": "zip", | 8874 | "type": "zip", |
9093 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", | 8875 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", |
9094 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", | 8876 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", |
9095 | "shasum": "" | 8877 | "shasum": "" |
9096 | }, | 8878 | }, |
9097 | "require": { | 8879 | "require": { |
9098 | "php": ">=7.3" | 8880 | "php": ">=7.3" |
9099 | }, | 8881 | }, |
9100 | "require-dev": { | 8882 | "require-dev": { |
9101 | "phpunit/phpunit": "^9.3" | 8883 | "phpunit/phpunit": "^9.3" |
9102 | }, | 8884 | }, |
9103 | "type": "library", | 8885 | "type": "library", |
9104 | "extra": { | 8886 | "extra": { |
9105 | "branch-alias": { | 8887 | "branch-alias": { |
9106 | "dev-master": "1.0-dev" | 8888 | "dev-master": "1.0-dev" |
9107 | } | 8889 | } |
9108 | }, | 8890 | }, |
9109 | "autoload": { | 8891 | "autoload": { |
9110 | "classmap": [ | 8892 | "classmap": [ |
9111 | "src/" | 8893 | "src/" |
9112 | ] | 8894 | ] |
9113 | }, | 8895 | }, |
9114 | "notification-url": "https://packagist.org/downloads/", | 8896 | "notification-url": "https://packagist.org/downloads/", |
9115 | "license": [ | 8897 | "license": [ |
9116 | "BSD-3-Clause" | 8898 | "BSD-3-Clause" |
9117 | ], | 8899 | ], |
9118 | "authors": [ | 8900 | "authors": [ |
9119 | { | 8901 | { |
9120 | "name": "Sebastian Bergmann", | 8902 | "name": "Sebastian Bergmann", |
9121 | "email": "sebastian@phpunit.de", | 8903 | "email": "sebastian@phpunit.de", |
9122 | "role": "lead" | 8904 | "role": "lead" |
9123 | } | 8905 | } |
9124 | ], | 8906 | ], |
9125 | "description": "Collection of value objects that represent the PHP code units", | 8907 | "description": "Collection of value objects that represent the PHP code units", |
9126 | "homepage": "https://github.com/sebastianbergmann/code-unit", | 8908 | "homepage": "https://github.com/sebastianbergmann/code-unit", |
9127 | "support": { | 8909 | "support": { |
9128 | "issues": "https://github.com/sebastianbergmann/code-unit/issues", | 8910 | "issues": "https://github.com/sebastianbergmann/code-unit/issues", |
9129 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" | 8911 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" |
9130 | }, | 8912 | }, |
9131 | "funding": [ | 8913 | "funding": [ |
9132 | { | 8914 | { |
9133 | "url": "https://github.com/sebastianbergmann", | 8915 | "url": "https://github.com/sebastianbergmann", |
9134 | "type": "github" | 8916 | "type": "github" |
9135 | } | 8917 | } |
9136 | ], | 8918 | ], |
9137 | "time": "2020-10-26T13:08:54+00:00" | 8919 | "time": "2020-10-26T13:08:54+00:00" |
9138 | }, | 8920 | }, |
9139 | { | 8921 | { |
9140 | "name": "sebastian/code-unit-reverse-lookup", | 8922 | "name": "sebastian/code-unit-reverse-lookup", |
9141 | "version": "2.0.3", | 8923 | "version": "2.0.3", |
9142 | "source": { | 8924 | "source": { |
9143 | "type": "git", | 8925 | "type": "git", |
9144 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", | 8926 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", |
9145 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" | 8927 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" |
9146 | }, | 8928 | }, |
9147 | "dist": { | 8929 | "dist": { |
9148 | "type": "zip", | 8930 | "type": "zip", |
9149 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", | 8931 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", |
9150 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", | 8932 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", |
9151 | "shasum": "" | 8933 | "shasum": "" |
9152 | }, | 8934 | }, |
9153 | "require": { | 8935 | "require": { |
9154 | "php": ">=7.3" | 8936 | "php": ">=7.3" |
9155 | }, | 8937 | }, |
9156 | "require-dev": { | 8938 | "require-dev": { |
9157 | "phpunit/phpunit": "^9.3" | 8939 | "phpunit/phpunit": "^9.3" |
9158 | }, | 8940 | }, |
9159 | "type": "library", | 8941 | "type": "library", |
9160 | "extra": { | 8942 | "extra": { |
9161 | "branch-alias": { | 8943 | "branch-alias": { |
9162 | "dev-master": "2.0-dev" | 8944 | "dev-master": "2.0-dev" |
9163 | } | 8945 | } |
9164 | }, | 8946 | }, |
9165 | "autoload": { | 8947 | "autoload": { |
9166 | "classmap": [ | 8948 | "classmap": [ |
9167 | "src/" | 8949 | "src/" |
9168 | ] | 8950 | ] |
9169 | }, | 8951 | }, |
9170 | "notification-url": "https://packagist.org/downloads/", | 8952 | "notification-url": "https://packagist.org/downloads/", |
9171 | "license": [ | 8953 | "license": [ |
9172 | "BSD-3-Clause" | 8954 | "BSD-3-Clause" |
9173 | ], | 8955 | ], |
9174 | "authors": [ | 8956 | "authors": [ |
9175 | { | 8957 | { |
9176 | "name": "Sebastian Bergmann", | 8958 | "name": "Sebastian Bergmann", |
9177 | "email": "sebastian@phpunit.de" | 8959 | "email": "sebastian@phpunit.de" |
9178 | } | 8960 | } |
9179 | ], | 8961 | ], |
9180 | "description": "Looks up which function or method a line of code belongs to", | 8962 | "description": "Looks up which function or method a line of code belongs to", |
9181 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", | 8963 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", |
9182 | "support": { | 8964 | "support": { |
9183 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", | 8965 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", |
9184 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" | 8966 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" |
9185 | }, | 8967 | }, |
9186 | "funding": [ | 8968 | "funding": [ |
9187 | { | 8969 | { |
9188 | "url": "https://github.com/sebastianbergmann", | 8970 | "url": "https://github.com/sebastianbergmann", |
9189 | "type": "github" | 8971 | "type": "github" |
9190 | } | 8972 | } |
9191 | ], | 8973 | ], |
9192 | "time": "2020-09-28T05:30:19+00:00" | 8974 | "time": "2020-09-28T05:30:19+00:00" |
9193 | }, | 8975 | }, |
9194 | { | 8976 | { |
9195 | "name": "sebastian/comparator", | 8977 | "name": "sebastian/comparator", |
9196 | "version": "4.0.8", | 8978 | "version": "4.0.8", |
9197 | "source": { | 8979 | "source": { |
9198 | "type": "git", | 8980 | "type": "git", |
9199 | "url": "https://github.com/sebastianbergmann/comparator.git", | 8981 | "url": "https://github.com/sebastianbergmann/comparator.git", |
9200 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a" | 8982 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a" |
9201 | }, | 8983 | }, |
9202 | "dist": { | 8984 | "dist": { |
9203 | "type": "zip", | 8985 | "type": "zip", |
9204 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", | 8986 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", |
9205 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a", | 8987 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a", |
9206 | "shasum": "" | 8988 | "shasum": "" |
9207 | }, | 8989 | }, |
9208 | "require": { | 8990 | "require": { |
9209 | "php": ">=7.3", | 8991 | "php": ">=7.3", |
9210 | "sebastian/diff": "^4.0", | 8992 | "sebastian/diff": "^4.0", |
9211 | "sebastian/exporter": "^4.0" | 8993 | "sebastian/exporter": "^4.0" |
9212 | }, | 8994 | }, |
9213 | "require-dev": { | 8995 | "require-dev": { |
9214 | "phpunit/phpunit": "^9.3" | 8996 | "phpunit/phpunit": "^9.3" |
9215 | }, | 8997 | }, |
9216 | "type": "library", | 8998 | "type": "library", |
9217 | "extra": { | 8999 | "extra": { |
9218 | "branch-alias": { | 9000 | "branch-alias": { |
9219 | "dev-master": "4.0-dev" | 9001 | "dev-master": "4.0-dev" |
9220 | } | 9002 | } |
9221 | }, | 9003 | }, |
9222 | "autoload": { | 9004 | "autoload": { |
9223 | "classmap": [ | 9005 | "classmap": [ |
9224 | "src/" | 9006 | "src/" |
9225 | ] | 9007 | ] |
9226 | }, | 9008 | }, |
9227 | "notification-url": "https://packagist.org/downloads/", | 9009 | "notification-url": "https://packagist.org/downloads/", |
9228 | "license": [ | 9010 | "license": [ |
9229 | "BSD-3-Clause" | 9011 | "BSD-3-Clause" |
9230 | ], | 9012 | ], |
9231 | "authors": [ | 9013 | "authors": [ |
9232 | { | 9014 | { |
9233 | "name": "Sebastian Bergmann", | 9015 | "name": "Sebastian Bergmann", |
9234 | "email": "sebastian@phpunit.de" | 9016 | "email": "sebastian@phpunit.de" |
9235 | }, | 9017 | }, |
9236 | { | 9018 | { |
9237 | "name": "Jeff Welch", | 9019 | "name": "Jeff Welch", |
9238 | "email": "whatthejeff@gmail.com" | 9020 | "email": "whatthejeff@gmail.com" |
9239 | }, | 9021 | }, |
9240 | { | 9022 | { |
9241 | "name": "Volker Dusch", | 9023 | "name": "Volker Dusch", |
9242 | "email": "github@wallbash.com" | 9024 | "email": "github@wallbash.com" |
9243 | }, | 9025 | }, |
9244 | { | 9026 | { |
9245 | "name": "Bernhard Schussek", | 9027 | "name": "Bernhard Schussek", |
9246 | "email": "bschussek@2bepublished.at" | 9028 | "email": "bschussek@2bepublished.at" |
9247 | } | 9029 | } |
9248 | ], | 9030 | ], |
9249 | "description": "Provides the functionality to compare PHP values for equality", | 9031 | "description": "Provides the functionality to compare PHP values for equality", |
9250 | "homepage": "https://github.com/sebastianbergmann/comparator", | 9032 | "homepage": "https://github.com/sebastianbergmann/comparator", |
9251 | "keywords": [ | 9033 | "keywords": [ |
9252 | "comparator", | 9034 | "comparator", |
9253 | "compare", | 9035 | "compare", |
9254 | "equality" | 9036 | "equality" |
9255 | ], | 9037 | ], |
9256 | "support": { | 9038 | "support": { |
9257 | "issues": "https://github.com/sebastianbergmann/comparator/issues", | 9039 | "issues": "https://github.com/sebastianbergmann/comparator/issues", |
9258 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" | 9040 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" |
9259 | }, | 9041 | }, |
9260 | "funding": [ | 9042 | "funding": [ |
9261 | { | 9043 | { |
9262 | "url": "https://github.com/sebastianbergmann", | 9044 | "url": "https://github.com/sebastianbergmann", |
9263 | "type": "github" | 9045 | "type": "github" |
9264 | } | 9046 | } |
9265 | ], | 9047 | ], |
9266 | "time": "2022-09-14T12:41:17+00:00" | 9048 | "time": "2022-09-14T12:41:17+00:00" |
9267 | }, | 9049 | }, |
9268 | { | 9050 | { |
9269 | "name": "sebastian/complexity", | 9051 | "name": "sebastian/complexity", |
9270 | "version": "2.0.2", | 9052 | "version": "2.0.2", |
9271 | "source": { | 9053 | "source": { |
9272 | "type": "git", | 9054 | "type": "git", |
9273 | "url": "https://github.com/sebastianbergmann/complexity.git", | 9055 | "url": "https://github.com/sebastianbergmann/complexity.git", |
9274 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" | 9056 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" |
9275 | }, | 9057 | }, |
9276 | "dist": { | 9058 | "dist": { |
9277 | "type": "zip", | 9059 | "type": "zip", |
9278 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", | 9060 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", |
9279 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", | 9061 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", |
9280 | "shasum": "" | 9062 | "shasum": "" |
9281 | }, | 9063 | }, |
9282 | "require": { | 9064 | "require": { |
9283 | "nikic/php-parser": "^4.7", | 9065 | "nikic/php-parser": "^4.7", |
9284 | "php": ">=7.3" | 9066 | "php": ">=7.3" |
9285 | }, | 9067 | }, |
9286 | "require-dev": { | 9068 | "require-dev": { |
9287 | "phpunit/phpunit": "^9.3" | 9069 | "phpunit/phpunit": "^9.3" |
9288 | }, | 9070 | }, |
9289 | "type": "library", | 9071 | "type": "library", |
9290 | "extra": { | 9072 | "extra": { |
9291 | "branch-alias": { | 9073 | "branch-alias": { |
9292 | "dev-master": "2.0-dev" | 9074 | "dev-master": "2.0-dev" |
9293 | } | 9075 | } |
9294 | }, | 9076 | }, |
9295 | "autoload": { | 9077 | "autoload": { |
9296 | "classmap": [ | 9078 | "classmap": [ |
9297 | "src/" | 9079 | "src/" |
9298 | ] | 9080 | ] |
9299 | }, | 9081 | }, |
9300 | "notification-url": "https://packagist.org/downloads/", | 9082 | "notification-url": "https://packagist.org/downloads/", |
9301 | "license": [ | 9083 | "license": [ |
9302 | "BSD-3-Clause" | 9084 | "BSD-3-Clause" |
9303 | ], | 9085 | ], |
9304 | "authors": [ | 9086 | "authors": [ |
9305 | { | 9087 | { |
9306 | "name": "Sebastian Bergmann", | 9088 | "name": "Sebastian Bergmann", |
9307 | "email": "sebastian@phpunit.de", | 9089 | "email": "sebastian@phpunit.de", |
9308 | "role": "lead" | 9090 | "role": "lead" |
9309 | } | 9091 | } |
9310 | ], | 9092 | ], |
9311 | "description": "Library for calculating the complexity of PHP code units", | 9093 | "description": "Library for calculating the complexity of PHP code units", |
9312 | "homepage": "https://github.com/sebastianbergmann/complexity", | 9094 | "homepage": "https://github.com/sebastianbergmann/complexity", |
9313 | "support": { | 9095 | "support": { |
9314 | "issues": "https://github.com/sebastianbergmann/complexity/issues", | 9096 | "issues": "https://github.com/sebastianbergmann/complexity/issues", |
9315 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" | 9097 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" |
9316 | }, | 9098 | }, |
9317 | "funding": [ | 9099 | "funding": [ |
9318 | { | 9100 | { |
9319 | "url": "https://github.com/sebastianbergmann", | 9101 | "url": "https://github.com/sebastianbergmann", |
9320 | "type": "github" | 9102 | "type": "github" |
9321 | } | 9103 | } |
9322 | ], | 9104 | ], |
9323 | "time": "2020-10-26T15:52:27+00:00" | 9105 | "time": "2020-10-26T15:52:27+00:00" |
9324 | }, | 9106 | }, |
9325 | { | 9107 | { |
9326 | "name": "sebastian/diff", | 9108 | "name": "sebastian/diff", |
9327 | "version": "4.0.5", | 9109 | "version": "4.0.5", |
9328 | "source": { | 9110 | "source": { |
9329 | "type": "git", | 9111 | "type": "git", |
9330 | "url": "https://github.com/sebastianbergmann/diff.git", | 9112 | "url": "https://github.com/sebastianbergmann/diff.git", |
9331 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" | 9113 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" |
9332 | }, | 9114 | }, |
9333 | "dist": { | 9115 | "dist": { |
9334 | "type": "zip", | 9116 | "type": "zip", |
9335 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", | 9117 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", |
9336 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", | 9118 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", |
9337 | "shasum": "" | 9119 | "shasum": "" |
9338 | }, | 9120 | }, |
9339 | "require": { | 9121 | "require": { |
9340 | "php": ">=7.3" | 9122 | "php": ">=7.3" |
9341 | }, | 9123 | }, |
9342 | "require-dev": { | 9124 | "require-dev": { |
9343 | "phpunit/phpunit": "^9.3", | 9125 | "phpunit/phpunit": "^9.3", |
9344 | "symfony/process": "^4.2 || ^5" | 9126 | "symfony/process": "^4.2 || ^5" |
9345 | }, | 9127 | }, |
9346 | "type": "library", | 9128 | "type": "library", |
9347 | "extra": { | 9129 | "extra": { |
9348 | "branch-alias": { | 9130 | "branch-alias": { |
9349 | "dev-master": "4.0-dev" | 9131 | "dev-master": "4.0-dev" |
9350 | } | 9132 | } |
9351 | }, | 9133 | }, |
9352 | "autoload": { | 9134 | "autoload": { |
9353 | "classmap": [ | 9135 | "classmap": [ |
9354 | "src/" | 9136 | "src/" |
9355 | ] | 9137 | ] |
9356 | }, | 9138 | }, |
9357 | "notification-url": "https://packagist.org/downloads/", | 9139 | "notification-url": "https://packagist.org/downloads/", |
9358 | "license": [ | 9140 | "license": [ |
9359 | "BSD-3-Clause" | 9141 | "BSD-3-Clause" |
9360 | ], | 9142 | ], |
9361 | "authors": [ | 9143 | "authors": [ |
9362 | { | 9144 | { |
9363 | "name": "Sebastian Bergmann", | 9145 | "name": "Sebastian Bergmann", |
9364 | "email": "sebastian@phpunit.de" | 9146 | "email": "sebastian@phpunit.de" |
9365 | }, | 9147 | }, |
9366 | { | 9148 | { |
9367 | "name": "Kore Nordmann", | 9149 | "name": "Kore Nordmann", |
9368 | "email": "mail@kore-nordmann.de" | 9150 | "email": "mail@kore-nordmann.de" |
9369 | } | 9151 | } |
9370 | ], | 9152 | ], |
9371 | "description": "Diff implementation", | 9153 | "description": "Diff implementation", |
9372 | "homepage": "https://github.com/sebastianbergmann/diff", | 9154 | "homepage": "https://github.com/sebastianbergmann/diff", |
9373 | "keywords": [ | 9155 | "keywords": [ |
9374 | "diff", | 9156 | "diff", |
9375 | "udiff", | 9157 | "udiff", |
9376 | "unidiff", | 9158 | "unidiff", |
9377 | "unified diff" | 9159 | "unified diff" |
9378 | ], | 9160 | ], |
9379 | "support": { | 9161 | "support": { |
9380 | "issues": "https://github.com/sebastianbergmann/diff/issues", | 9162 | "issues": "https://github.com/sebastianbergmann/diff/issues", |
9381 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" | 9163 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" |
9382 | }, | 9164 | }, |
9383 | "funding": [ | 9165 | "funding": [ |
9384 | { | 9166 | { |
9385 | "url": "https://github.com/sebastianbergmann", | 9167 | "url": "https://github.com/sebastianbergmann", |
9386 | "type": "github" | 9168 | "type": "github" |
9387 | } | 9169 | } |
9388 | ], | 9170 | ], |
9389 | "time": "2023-05-07T05:35:17+00:00" | 9171 | "time": "2023-05-07T05:35:17+00:00" |
9390 | }, | 9172 | }, |
9391 | { | 9173 | { |
9392 | "name": "sebastian/environment", | 9174 | "name": "sebastian/environment", |
9393 | "version": "5.1.5", | 9175 | "version": "5.1.5", |
9394 | "source": { | 9176 | "source": { |
9395 | "type": "git", | 9177 | "type": "git", |
9396 | "url": "https://github.com/sebastianbergmann/environment.git", | 9178 | "url": "https://github.com/sebastianbergmann/environment.git", |
9397 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" | 9179 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" |
9398 | }, | 9180 | }, |
9399 | "dist": { | 9181 | "dist": { |
9400 | "type": "zip", | 9182 | "type": "zip", |
9401 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", | 9183 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", |
9402 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", | 9184 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", |
9403 | "shasum": "" | 9185 | "shasum": "" |
9404 | }, | 9186 | }, |
9405 | "require": { | 9187 | "require": { |
9406 | "php": ">=7.3" | 9188 | "php": ">=7.3" |
9407 | }, | 9189 | }, |
9408 | "require-dev": { | 9190 | "require-dev": { |
9409 | "phpunit/phpunit": "^9.3" | 9191 | "phpunit/phpunit": "^9.3" |
9410 | }, | 9192 | }, |
9411 | "suggest": { | 9193 | "suggest": { |
9412 | "ext-posix": "*" | 9194 | "ext-posix": "*" |
9413 | }, | 9195 | }, |
9414 | "type": "library", | 9196 | "type": "library", |
9415 | "extra": { | 9197 | "extra": { |
9416 | "branch-alias": { | 9198 | "branch-alias": { |
9417 | "dev-master": "5.1-dev" | 9199 | "dev-master": "5.1-dev" |
9418 | } | 9200 | } |
9419 | }, | 9201 | }, |
9420 | "autoload": { | 9202 | "autoload": { |
9421 | "classmap": [ | 9203 | "classmap": [ |
9422 | "src/" | 9204 | "src/" |
9423 | ] | 9205 | ] |
9424 | }, | 9206 | }, |
9425 | "notification-url": "https://packagist.org/downloads/", | 9207 | "notification-url": "https://packagist.org/downloads/", |
9426 | "license": [ | 9208 | "license": [ |
9427 | "BSD-3-Clause" | 9209 | "BSD-3-Clause" |
9428 | ], | 9210 | ], |
9429 | "authors": [ | 9211 | "authors": [ |
9430 | { | 9212 | { |
9431 | "name": "Sebastian Bergmann", | 9213 | "name": "Sebastian Bergmann", |
9432 | "email": "sebastian@phpunit.de" | 9214 | "email": "sebastian@phpunit.de" |
9433 | } | 9215 | } |
9434 | ], | 9216 | ], |
9435 | "description": "Provides functionality to handle HHVM/PHP environments", | 9217 | "description": "Provides functionality to handle HHVM/PHP environments", |
9436 | "homepage": "http://www.github.com/sebastianbergmann/environment", | 9218 | "homepage": "http://www.github.com/sebastianbergmann/environment", |
9437 | "keywords": [ | 9219 | "keywords": [ |
9438 | "Xdebug", | 9220 | "Xdebug", |
9439 | "environment", | 9221 | "environment", |
9440 | "hhvm" | 9222 | "hhvm" |
9441 | ], | 9223 | ], |
9442 | "support": { | 9224 | "support": { |
9443 | "issues": "https://github.com/sebastianbergmann/environment/issues", | 9225 | "issues": "https://github.com/sebastianbergmann/environment/issues", |
9444 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" | 9226 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" |
9445 | }, | 9227 | }, |
9446 | "funding": [ | 9228 | "funding": [ |
9447 | { | 9229 | { |
9448 | "url": "https://github.com/sebastianbergmann", | 9230 | "url": "https://github.com/sebastianbergmann", |
9449 | "type": "github" | 9231 | "type": "github" |
9450 | } | 9232 | } |
9451 | ], | 9233 | ], |
9452 | "time": "2023-02-03T06:03:51+00:00" | 9234 | "time": "2023-02-03T06:03:51+00:00" |
9453 | }, | 9235 | }, |
9454 | { | 9236 | { |
9455 | "name": "sebastian/exporter", | 9237 | "name": "sebastian/exporter", |
9456 | "version": "4.0.5", | 9238 | "version": "4.0.5", |
9457 | "source": { | 9239 | "source": { |
9458 | "type": "git", | 9240 | "type": "git", |
9459 | "url": "https://github.com/sebastianbergmann/exporter.git", | 9241 | "url": "https://github.com/sebastianbergmann/exporter.git", |
9460 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" | 9242 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" |
9461 | }, | 9243 | }, |
9462 | "dist": { | 9244 | "dist": { |
9463 | "type": "zip", | 9245 | "type": "zip", |
9464 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", | 9246 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", |
9465 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", | 9247 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", |
9466 | "shasum": "" | 9248 | "shasum": "" |
9467 | }, | 9249 | }, |
9468 | "require": { | 9250 | "require": { |
9469 | "php": ">=7.3", | 9251 | "php": ">=7.3", |
9470 | "sebastian/recursion-context": "^4.0" | 9252 | "sebastian/recursion-context": "^4.0" |
9471 | }, | 9253 | }, |
9472 | "require-dev": { | 9254 | "require-dev": { |
9473 | "ext-mbstring": "*", | 9255 | "ext-mbstring": "*", |
9474 | "phpunit/phpunit": "^9.3" | 9256 | "phpunit/phpunit": "^9.3" |
9475 | }, | 9257 | }, |
9476 | "type": "library", | 9258 | "type": "library", |
9477 | "extra": { | 9259 | "extra": { |
9478 | "branch-alias": { | 9260 | "branch-alias": { |
9479 | "dev-master": "4.0-dev" | 9261 | "dev-master": "4.0-dev" |
9480 | } | 9262 | } |
9481 | }, | 9263 | }, |
9482 | "autoload": { | 9264 | "autoload": { |
9483 | "classmap": [ | 9265 | "classmap": [ |
9484 | "src/" | 9266 | "src/" |
9485 | ] | 9267 | ] |
9486 | }, | 9268 | }, |
9487 | "notification-url": "https://packagist.org/downloads/", | 9269 | "notification-url": "https://packagist.org/downloads/", |
9488 | "license": [ | 9270 | "license": [ |
9489 | "BSD-3-Clause" | 9271 | "BSD-3-Clause" |
9490 | ], | 9272 | ], |
9491 | "authors": [ | 9273 | "authors": [ |
9492 | { | 9274 | { |
9493 | "name": "Sebastian Bergmann", | 9275 | "name": "Sebastian Bergmann", |
9494 | "email": "sebastian@phpunit.de" | 9276 | "email": "sebastian@phpunit.de" |
9495 | }, | 9277 | }, |
9496 | { | 9278 | { |
9497 | "name": "Jeff Welch", | 9279 | "name": "Jeff Welch", |
9498 | "email": "whatthejeff@gmail.com" | 9280 | "email": "whatthejeff@gmail.com" |
9499 | }, | 9281 | }, |
9500 | { | 9282 | { |
9501 | "name": "Volker Dusch", | 9283 | "name": "Volker Dusch", |
9502 | "email": "github@wallbash.com" | 9284 | "email": "github@wallbash.com" |
9503 | }, | 9285 | }, |
9504 | { | 9286 | { |
9505 | "name": "Adam Harvey", | 9287 | "name": "Adam Harvey", |
9506 | "email": "aharvey@php.net" | 9288 | "email": "aharvey@php.net" |
9507 | }, | 9289 | }, |
9508 | { | 9290 | { |
9509 | "name": "Bernhard Schussek", | 9291 | "name": "Bernhard Schussek", |
9510 | "email": "bschussek@gmail.com" | 9292 | "email": "bschussek@gmail.com" |
9511 | } | 9293 | } |
9512 | ], | 9294 | ], |
9513 | "description": "Provides the functionality to export PHP variables for visualization", | 9295 | "description": "Provides the functionality to export PHP variables for visualization", |
9514 | "homepage": "https://www.github.com/sebastianbergmann/exporter", | 9296 | "homepage": "https://www.github.com/sebastianbergmann/exporter", |
9515 | "keywords": [ | 9297 | "keywords": [ |
9516 | "export", | 9298 | "export", |
9517 | "exporter" | 9299 | "exporter" |
9518 | ], | 9300 | ], |
9519 | "support": { | 9301 | "support": { |
9520 | "issues": "https://github.com/sebastianbergmann/exporter/issues", | 9302 | "issues": "https://github.com/sebastianbergmann/exporter/issues", |
9521 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" | 9303 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" |
9522 | }, | 9304 | }, |
9523 | "funding": [ | 9305 | "funding": [ |
9524 | { | 9306 | { |
9525 | "url": "https://github.com/sebastianbergmann", | 9307 | "url": "https://github.com/sebastianbergmann", |
9526 | "type": "github" | 9308 | "type": "github" |
9527 | } | 9309 | } |
9528 | ], | 9310 | ], |
9529 | "time": "2022-09-14T06:03:37+00:00" | 9311 | "time": "2022-09-14T06:03:37+00:00" |
9530 | }, | 9312 | }, |
9531 | { | 9313 | { |
9532 | "name": "sebastian/global-state", | 9314 | "name": "sebastian/global-state", |
9533 | "version": "5.0.5", | 9315 | "version": "5.0.5", |
9534 | "source": { | 9316 | "source": { |
9535 | "type": "git", | 9317 | "type": "git", |
9536 | "url": "https://github.com/sebastianbergmann/global-state.git", | 9318 | "url": "https://github.com/sebastianbergmann/global-state.git", |
9537 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" | 9319 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" |
9538 | }, | 9320 | }, |
9539 | "dist": { | 9321 | "dist": { |
9540 | "type": "zip", | 9322 | "type": "zip", |
9541 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", | 9323 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", |
9542 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", | 9324 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", |
9543 | "shasum": "" | 9325 | "shasum": "" |
9544 | }, | 9326 | }, |
9545 | "require": { | 9327 | "require": { |
9546 | "php": ">=7.3", | 9328 | "php": ">=7.3", |
9547 | "sebastian/object-reflector": "^2.0", | 9329 | "sebastian/object-reflector": "^2.0", |
9548 | "sebastian/recursion-context": "^4.0" | 9330 | "sebastian/recursion-context": "^4.0" |
9549 | }, | 9331 | }, |
9550 | "require-dev": { | 9332 | "require-dev": { |
9551 | "ext-dom": "*", | 9333 | "ext-dom": "*", |
9552 | "phpunit/phpunit": "^9.3" | 9334 | "phpunit/phpunit": "^9.3" |
9553 | }, | 9335 | }, |
9554 | "suggest": { | 9336 | "suggest": { |
9555 | "ext-uopz": "*" | 9337 | "ext-uopz": "*" |
9556 | }, | 9338 | }, |
9557 | "type": "library", | 9339 | "type": "library", |
9558 | "extra": { | 9340 | "extra": { |
9559 | "branch-alias": { | 9341 | "branch-alias": { |
9560 | "dev-master": "5.0-dev" | 9342 | "dev-master": "5.0-dev" |
9561 | } | 9343 | } |
9562 | }, | 9344 | }, |
9563 | "autoload": { | 9345 | "autoload": { |
9564 | "classmap": [ | 9346 | "classmap": [ |
9565 | "src/" | 9347 | "src/" |
9566 | ] | 9348 | ] |
9567 | }, | 9349 | }, |
9568 | "notification-url": "https://packagist.org/downloads/", | 9350 | "notification-url": "https://packagist.org/downloads/", |
9569 | "license": [ | 9351 | "license": [ |
9570 | "BSD-3-Clause" | 9352 | "BSD-3-Clause" |
9571 | ], | 9353 | ], |
9572 | "authors": [ | 9354 | "authors": [ |
9573 | { | 9355 | { |
9574 | "name": "Sebastian Bergmann", | 9356 | "name": "Sebastian Bergmann", |
9575 | "email": "sebastian@phpunit.de" | 9357 | "email": "sebastian@phpunit.de" |
9576 | } | 9358 | } |
9577 | ], | 9359 | ], |
9578 | "description": "Snapshotting of global state", | 9360 | "description": "Snapshotting of global state", |
9579 | "homepage": "http://www.github.com/sebastianbergmann/global-state", | 9361 | "homepage": "http://www.github.com/sebastianbergmann/global-state", |
9580 | "keywords": [ | 9362 | "keywords": [ |
9581 | "global state" | 9363 | "global state" |
9582 | ], | 9364 | ], |
9583 | "support": { | 9365 | "support": { |
9584 | "issues": "https://github.com/sebastianbergmann/global-state/issues", | 9366 | "issues": "https://github.com/sebastianbergmann/global-state/issues", |
9585 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" | 9367 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" |
9586 | }, | 9368 | }, |
9587 | "funding": [ | 9369 | "funding": [ |
9588 | { | 9370 | { |
9589 | "url": "https://github.com/sebastianbergmann", | 9371 | "url": "https://github.com/sebastianbergmann", |
9590 | "type": "github" | 9372 | "type": "github" |
9591 | } | 9373 | } |
9592 | ], | 9374 | ], |
9593 | "time": "2022-02-14T08:28:10+00:00" | 9375 | "time": "2022-02-14T08:28:10+00:00" |
9594 | }, | 9376 | }, |
9595 | { | 9377 | { |
9596 | "name": "sebastian/lines-of-code", | 9378 | "name": "sebastian/lines-of-code", |
9597 | "version": "1.0.3", | 9379 | "version": "1.0.3", |
9598 | "source": { | 9380 | "source": { |
9599 | "type": "git", | 9381 | "type": "git", |
9600 | "url": "https://github.com/sebastianbergmann/lines-of-code.git", | 9382 | "url": "https://github.com/sebastianbergmann/lines-of-code.git", |
9601 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" | 9383 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" |
9602 | }, | 9384 | }, |
9603 | "dist": { | 9385 | "dist": { |
9604 | "type": "zip", | 9386 | "type": "zip", |
9605 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", | 9387 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", |
9606 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", | 9388 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", |
9607 | "shasum": "" | 9389 | "shasum": "" |
9608 | }, | 9390 | }, |
9609 | "require": { | 9391 | "require": { |
9610 | "nikic/php-parser": "^4.6", | 9392 | "nikic/php-parser": "^4.6", |
9611 | "php": ">=7.3" | 9393 | "php": ">=7.3" |
9612 | }, | 9394 | }, |
9613 | "require-dev": { | 9395 | "require-dev": { |
9614 | "phpunit/phpunit": "^9.3" | 9396 | "phpunit/phpunit": "^9.3" |
9615 | }, | 9397 | }, |
9616 | "type": "library", | 9398 | "type": "library", |
9617 | "extra": { | 9399 | "extra": { |
9618 | "branch-alias": { | 9400 | "branch-alias": { |
9619 | "dev-master": "1.0-dev" | 9401 | "dev-master": "1.0-dev" |
9620 | } | 9402 | } |
9621 | }, | 9403 | }, |
9622 | "autoload": { | 9404 | "autoload": { |
9623 | "classmap": [ | 9405 | "classmap": [ |
9624 | "src/" | 9406 | "src/" |
9625 | ] | 9407 | ] |
9626 | }, | 9408 | }, |
9627 | "notification-url": "https://packagist.org/downloads/", | 9409 | "notification-url": "https://packagist.org/downloads/", |
9628 | "license": [ | 9410 | "license": [ |
9629 | "BSD-3-Clause" | 9411 | "BSD-3-Clause" |
9630 | ], | 9412 | ], |
9631 | "authors": [ | 9413 | "authors": [ |
9632 | { | 9414 | { |
9633 | "name": "Sebastian Bergmann", | 9415 | "name": "Sebastian Bergmann", |
9634 | "email": "sebastian@phpunit.de", | 9416 | "email": "sebastian@phpunit.de", |
9635 | "role": "lead" | 9417 | "role": "lead" |
9636 | } | 9418 | } |
9637 | ], | 9419 | ], |
9638 | "description": "Library for counting the lines of code in PHP source code", | 9420 | "description": "Library for counting the lines of code in PHP source code", |
9639 | "homepage": "https://github.com/sebastianbergmann/lines-of-code", | 9421 | "homepage": "https://github.com/sebastianbergmann/lines-of-code", |
9640 | "support": { | 9422 | "support": { |
9641 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", | 9423 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", |
9642 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" | 9424 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" |
9643 | }, | 9425 | }, |
9644 | "funding": [ | 9426 | "funding": [ |
9645 | { | 9427 | { |
9646 | "url": "https://github.com/sebastianbergmann", | 9428 | "url": "https://github.com/sebastianbergmann", |
9647 | "type": "github" | 9429 | "type": "github" |
9648 | } | 9430 | } |
9649 | ], | 9431 | ], |
9650 | "time": "2020-11-28T06:42:11+00:00" | 9432 | "time": "2020-11-28T06:42:11+00:00" |
9651 | }, | 9433 | }, |
9652 | { | 9434 | { |
9653 | "name": "sebastian/object-enumerator", | 9435 | "name": "sebastian/object-enumerator", |
9654 | "version": "4.0.4", | 9436 | "version": "4.0.4", |
9655 | "source": { | 9437 | "source": { |
9656 | "type": "git", | 9438 | "type": "git", |
9657 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", | 9439 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", |
9658 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" | 9440 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" |
9659 | }, | 9441 | }, |
9660 | "dist": { | 9442 | "dist": { |
9661 | "type": "zip", | 9443 | "type": "zip", |
9662 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", | 9444 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", |
9663 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", | 9445 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", |
9664 | "shasum": "" | 9446 | "shasum": "" |
9665 | }, | 9447 | }, |
9666 | "require": { | 9448 | "require": { |
9667 | "php": ">=7.3", | 9449 | "php": ">=7.3", |
9668 | "sebastian/object-reflector": "^2.0", | 9450 | "sebastian/object-reflector": "^2.0", |
9669 | "sebastian/recursion-context": "^4.0" | 9451 | "sebastian/recursion-context": "^4.0" |
9670 | }, | 9452 | }, |
9671 | "require-dev": { | 9453 | "require-dev": { |
9672 | "phpunit/phpunit": "^9.3" | 9454 | "phpunit/phpunit": "^9.3" |
9673 | }, | 9455 | }, |
9674 | "type": "library", | 9456 | "type": "library", |
9675 | "extra": { | 9457 | "extra": { |
9676 | "branch-alias": { | 9458 | "branch-alias": { |
9677 | "dev-master": "4.0-dev" | 9459 | "dev-master": "4.0-dev" |
9678 | } | 9460 | } |
9679 | }, | 9461 | }, |
9680 | "autoload": { | 9462 | "autoload": { |
9681 | "classmap": [ | 9463 | "classmap": [ |
9682 | "src/" | 9464 | "src/" |
9683 | ] | 9465 | ] |
9684 | }, | 9466 | }, |
9685 | "notification-url": "https://packagist.org/downloads/", | 9467 | "notification-url": "https://packagist.org/downloads/", |
9686 | "license": [ | 9468 | "license": [ |
9687 | "BSD-3-Clause" | 9469 | "BSD-3-Clause" |
9688 | ], | 9470 | ], |
9689 | "authors": [ | 9471 | "authors": [ |
9690 | { | 9472 | { |
9691 | "name": "Sebastian Bergmann", | 9473 | "name": "Sebastian Bergmann", |
9692 | "email": "sebastian@phpunit.de" | 9474 | "email": "sebastian@phpunit.de" |
9693 | } | 9475 | } |
9694 | ], | 9476 | ], |
9695 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", | 9477 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", |
9696 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", | 9478 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", |
9697 | "support": { | 9479 | "support": { |
9698 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", | 9480 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", |
9699 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" | 9481 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" |
9700 | }, | 9482 | }, |
9701 | "funding": [ | 9483 | "funding": [ |
9702 | { | 9484 | { |
9703 | "url": "https://github.com/sebastianbergmann", | 9485 | "url": "https://github.com/sebastianbergmann", |
9704 | "type": "github" | 9486 | "type": "github" |
9705 | } | 9487 | } |
9706 | ], | 9488 | ], |
9707 | "time": "2020-10-26T13:12:34+00:00" | 9489 | "time": "2020-10-26T13:12:34+00:00" |
9708 | }, | 9490 | }, |
9709 | { | 9491 | { |
9710 | "name": "sebastian/object-reflector", | 9492 | "name": "sebastian/object-reflector", |
9711 | "version": "2.0.4", | 9493 | "version": "2.0.4", |
9712 | "source": { | 9494 | "source": { |
9713 | "type": "git", | 9495 | "type": "git", |
9714 | "url": "https://github.com/sebastianbergmann/object-reflector.git", | 9496 | "url": "https://github.com/sebastianbergmann/object-reflector.git", |
9715 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" | 9497 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" |
9716 | }, | 9498 | }, |
9717 | "dist": { | 9499 | "dist": { |
9718 | "type": "zip", | 9500 | "type": "zip", |
9719 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", | 9501 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", |
9720 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", | 9502 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", |
9721 | "shasum": "" | 9503 | "shasum": "" |
9722 | }, | 9504 | }, |
9723 | "require": { | 9505 | "require": { |
9724 | "php": ">=7.3" | 9506 | "php": ">=7.3" |
9725 | }, | 9507 | }, |
9726 | "require-dev": { | 9508 | "require-dev": { |
9727 | "phpunit/phpunit": "^9.3" | 9509 | "phpunit/phpunit": "^9.3" |
9728 | }, | 9510 | }, |
9729 | "type": "library", | 9511 | "type": "library", |
9730 | "extra": { | 9512 | "extra": { |
9731 | "branch-alias": { | 9513 | "branch-alias": { |
9732 | "dev-master": "2.0-dev" | 9514 | "dev-master": "2.0-dev" |
9733 | } | 9515 | } |
9734 | }, | 9516 | }, |
9735 | "autoload": { | 9517 | "autoload": { |
9736 | "classmap": [ | 9518 | "classmap": [ |
9737 | "src/" | 9519 | "src/" |
9738 | ] | 9520 | ] |
9739 | }, | 9521 | }, |
9740 | "notification-url": "https://packagist.org/downloads/", | 9522 | "notification-url": "https://packagist.org/downloads/", |
9741 | "license": [ | 9523 | "license": [ |
9742 | "BSD-3-Clause" | 9524 | "BSD-3-Clause" |
9743 | ], | 9525 | ], |
9744 | "authors": [ | 9526 | "authors": [ |
9745 | { | 9527 | { |
9746 | "name": "Sebastian Bergmann", | 9528 | "name": "Sebastian Bergmann", |
9747 | "email": "sebastian@phpunit.de" | 9529 | "email": "sebastian@phpunit.de" |
9748 | } | 9530 | } |
9749 | ], | 9531 | ], |
9750 | "description": "Allows reflection of object attributes, including inherited and non-public ones", | 9532 | "description": "Allows reflection of object attributes, including inherited and non-public ones", |
9751 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", | 9533 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", |
9752 | "support": { | 9534 | "support": { |
9753 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues", | 9535 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues", |
9754 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" | 9536 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" |
9755 | }, | 9537 | }, |
9756 | "funding": [ | 9538 | "funding": [ |
9757 | { | 9539 | { |
9758 | "url": "https://github.com/sebastianbergmann", | 9540 | "url": "https://github.com/sebastianbergmann", |
9759 | "type": "github" | 9541 | "type": "github" |
9760 | } | 9542 | } |
9761 | ], | 9543 | ], |
9762 | "time": "2020-10-26T13:14:26+00:00" | 9544 | "time": "2020-10-26T13:14:26+00:00" |
9763 | }, | 9545 | }, |
9764 | { | 9546 | { |
9765 | "name": "sebastian/recursion-context", | 9547 | "name": "sebastian/recursion-context", |
9766 | "version": "4.0.5", | 9548 | "version": "4.0.5", |
9767 | "source": { | 9549 | "source": { |
9768 | "type": "git", | 9550 | "type": "git", |
9769 | "url": "https://github.com/sebastianbergmann/recursion-context.git", | 9551 | "url": "https://github.com/sebastianbergmann/recursion-context.git", |
9770 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" | 9552 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" |
9771 | }, | 9553 | }, |
9772 | "dist": { | 9554 | "dist": { |
9773 | "type": "zip", | 9555 | "type": "zip", |
9774 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", | 9556 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", |
9775 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", | 9557 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", |
9776 | "shasum": "" | 9558 | "shasum": "" |
9777 | }, | 9559 | }, |
9778 | "require": { | 9560 | "require": { |
9779 | "php": ">=7.3" | 9561 | "php": ">=7.3" |
9780 | }, | 9562 | }, |
9781 | "require-dev": { | 9563 | "require-dev": { |
9782 | "phpunit/phpunit": "^9.3" | 9564 | "phpunit/phpunit": "^9.3" |
9783 | }, | 9565 | }, |
9784 | "type": "library", | 9566 | "type": "library", |
9785 | "extra": { | 9567 | "extra": { |
9786 | "branch-alias": { | 9568 | "branch-alias": { |
9787 | "dev-master": "4.0-dev" | 9569 | "dev-master": "4.0-dev" |
9788 | } | 9570 | } |
9789 | }, | 9571 | }, |
9790 | "autoload": { | 9572 | "autoload": { |
9791 | "classmap": [ | 9573 | "classmap": [ |
9792 | "src/" | 9574 | "src/" |
9793 | ] | 9575 | ] |
9794 | }, | 9576 | }, |
9795 | "notification-url": "https://packagist.org/downloads/", | 9577 | "notification-url": "https://packagist.org/downloads/", |
9796 | "license": [ | 9578 | "license": [ |
9797 | "BSD-3-Clause" | 9579 | "BSD-3-Clause" |
9798 | ], | 9580 | ], |
9799 | "authors": [ | 9581 | "authors": [ |
9800 | { | 9582 | { |
9801 | "name": "Sebastian Bergmann", | 9583 | "name": "Sebastian Bergmann", |
9802 | "email": "sebastian@phpunit.de" | 9584 | "email": "sebastian@phpunit.de" |
9803 | }, | 9585 | }, |
9804 | { | 9586 | { |
9805 | "name": "Jeff Welch", | 9587 | "name": "Jeff Welch", |
9806 | "email": "whatthejeff@gmail.com" | 9588 | "email": "whatthejeff@gmail.com" |
9807 | }, | 9589 | }, |
9808 | { | 9590 | { |
9809 | "name": "Adam Harvey", | 9591 | "name": "Adam Harvey", |
9810 | "email": "aharvey@php.net" | 9592 | "email": "aharvey@php.net" |
9811 | } | 9593 | } |
9812 | ], | 9594 | ], |
9813 | "description": "Provides functionality to recursively process PHP variables", | 9595 | "description": "Provides functionality to recursively process PHP variables", |
9814 | "homepage": "https://github.com/sebastianbergmann/recursion-context", | 9596 | "homepage": "https://github.com/sebastianbergmann/recursion-context", |
9815 | "support": { | 9597 | "support": { |
9816 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues", | 9598 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues", |
9817 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" | 9599 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" |
9818 | }, | 9600 | }, |
9819 | "funding": [ | 9601 | "funding": [ |
9820 | { | 9602 | { |
9821 | "url": "https://github.com/sebastianbergmann", | 9603 | "url": "https://github.com/sebastianbergmann", |
9822 | "type": "github" | 9604 | "type": "github" |
9823 | } | 9605 | } |
9824 | ], | 9606 | ], |
9825 | "time": "2023-02-03T06:07:39+00:00" | 9607 | "time": "2023-02-03T06:07:39+00:00" |
9826 | }, | 9608 | }, |
9827 | { | 9609 | { |
9828 | "name": "sebastian/resource-operations", | 9610 | "name": "sebastian/resource-operations", |
9829 | "version": "3.0.3", | 9611 | "version": "3.0.3", |
9830 | "source": { | 9612 | "source": { |
9831 | "type": "git", | 9613 | "type": "git", |
9832 | "url": "https://github.com/sebastianbergmann/resource-operations.git", | 9614 | "url": "https://github.com/sebastianbergmann/resource-operations.git", |
9833 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" | 9615 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" |
9834 | }, | 9616 | }, |
9835 | "dist": { | 9617 | "dist": { |
9836 | "type": "zip", | 9618 | "type": "zip", |
9837 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", | 9619 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", |
9838 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", | 9620 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", |
9839 | "shasum": "" | 9621 | "shasum": "" |
9840 | }, | 9622 | }, |
9841 | "require": { | 9623 | "require": { |
9842 | "php": ">=7.3" | 9624 | "php": ">=7.3" |
9843 | }, | 9625 | }, |
9844 | "require-dev": { | 9626 | "require-dev": { |
9845 | "phpunit/phpunit": "^9.0" | 9627 | "phpunit/phpunit": "^9.0" |
9846 | }, | 9628 | }, |
9847 | "type": "library", | 9629 | "type": "library", |
9848 | "extra": { | 9630 | "extra": { |
9849 | "branch-alias": { | 9631 | "branch-alias": { |
9850 | "dev-master": "3.0-dev" | 9632 | "dev-master": "3.0-dev" |
9851 | } | 9633 | } |
9852 | }, | 9634 | }, |
9853 | "autoload": { | 9635 | "autoload": { |
9854 | "classmap": [ | 9636 | "classmap": [ |
9855 | "src/" | 9637 | "src/" |
9856 | ] | 9638 | ] |
9857 | }, | 9639 | }, |
9858 | "notification-url": "https://packagist.org/downloads/", | 9640 | "notification-url": "https://packagist.org/downloads/", |
9859 | "license": [ | 9641 | "license": [ |
9860 | "BSD-3-Clause" | 9642 | "BSD-3-Clause" |
9861 | ], | 9643 | ], |
9862 | "authors": [ | 9644 | "authors": [ |
9863 | { | 9645 | { |
9864 | "name": "Sebastian Bergmann", | 9646 | "name": "Sebastian Bergmann", |
9865 | "email": "sebastian@phpunit.de" | 9647 | "email": "sebastian@phpunit.de" |
9866 | } | 9648 | } |
9867 | ], | 9649 | ], |
9868 | "description": "Provides a list of PHP built-in functions that operate on resources", | 9650 | "description": "Provides a list of PHP built-in functions that operate on resources", |
9869 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", | 9651 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", |
9870 | "support": { | 9652 | "support": { |
9871 | "issues": "https://github.com/sebastianbergmann/resource-operations/issues", | 9653 | "issues": "https://github.com/sebastianbergmann/resource-operations/issues", |
9872 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" | 9654 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" |
9873 | }, | 9655 | }, |
9874 | "funding": [ | 9656 | "funding": [ |
9875 | { | 9657 | { |
9876 | "url": "https://github.com/sebastianbergmann", | 9658 | "url": "https://github.com/sebastianbergmann", |
9877 | "type": "github" | 9659 | "type": "github" |
9878 | } | 9660 | } |
9879 | ], | 9661 | ], |
9880 | "time": "2020-09-28T06:45:17+00:00" | 9662 | "time": "2020-09-28T06:45:17+00:00" |
9881 | }, | 9663 | }, |
9882 | { | 9664 | { |
9883 | "name": "sebastian/type", | 9665 | "name": "sebastian/type", |
9884 | "version": "3.2.1", | 9666 | "version": "3.2.1", |
9885 | "source": { | 9667 | "source": { |
9886 | "type": "git", | 9668 | "type": "git", |
9887 | "url": "https://github.com/sebastianbergmann/type.git", | 9669 | "url": "https://github.com/sebastianbergmann/type.git", |
9888 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" | 9670 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" |
9889 | }, | 9671 | }, |
9890 | "dist": { | 9672 | "dist": { |
9891 | "type": "zip", | 9673 | "type": "zip", |
9892 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", | 9674 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", |
9893 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", | 9675 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", |
9894 | "shasum": "" | 9676 | "shasum": "" |
9895 | }, | 9677 | }, |
9896 | "require": { | 9678 | "require": { |
9897 | "php": ">=7.3" | 9679 | "php": ">=7.3" |
9898 | }, | 9680 | }, |
9899 | "require-dev": { | 9681 | "require-dev": { |
9900 | "phpunit/phpunit": "^9.5" | 9682 | "phpunit/phpunit": "^9.5" |
9901 | }, | 9683 | }, |
9902 | "type": "library", | 9684 | "type": "library", |
9903 | "extra": { | 9685 | "extra": { |
9904 | "branch-alias": { | 9686 | "branch-alias": { |
9905 | "dev-master": "3.2-dev" | 9687 | "dev-master": "3.2-dev" |
9906 | } | 9688 | } |
9907 | }, | 9689 | }, |
9908 | "autoload": { | 9690 | "autoload": { |
9909 | "classmap": [ | 9691 | "classmap": [ |
9910 | "src/" | 9692 | "src/" |
9911 | ] | 9693 | ] |
9912 | }, | 9694 | }, |
9913 | "notification-url": "https://packagist.org/downloads/", | 9695 | "notification-url": "https://packagist.org/downloads/", |
9914 | "license": [ | 9696 | "license": [ |
9915 | "BSD-3-Clause" | 9697 | "BSD-3-Clause" |
9916 | ], | 9698 | ], |
9917 | "authors": [ | 9699 | "authors": [ |
9918 | { | 9700 | { |
9919 | "name": "Sebastian Bergmann", | 9701 | "name": "Sebastian Bergmann", |
9920 | "email": "sebastian@phpunit.de", | 9702 | "email": "sebastian@phpunit.de", |
9921 | "role": "lead" | 9703 | "role": "lead" |
9922 | } | 9704 | } |
9923 | ], | 9705 | ], |
9924 | "description": "Collection of value objects that represent the types of the PHP type system", | 9706 | "description": "Collection of value objects that represent the types of the PHP type system", |
9925 | "homepage": "https://github.com/sebastianbergmann/type", | 9707 | "homepage": "https://github.com/sebastianbergmann/type", |
9926 | "support": { | 9708 | "support": { |
9927 | "issues": "https://github.com/sebastianbergmann/type/issues", | 9709 | "issues": "https://github.com/sebastianbergmann/type/issues", |
9928 | "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" | 9710 | "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" |
9929 | }, | 9711 | }, |
9930 | "funding": [ | 9712 | "funding": [ |
9931 | { | 9713 | { |
9932 | "url": "https://github.com/sebastianbergmann", | 9714 | "url": "https://github.com/sebastianbergmann", |
9933 | "type": "github" | 9715 | "type": "github" |
9934 | } | 9716 | } |
9935 | ], | 9717 | ], |
9936 | "time": "2023-02-03T06:13:03+00:00" | 9718 | "time": "2023-02-03T06:13:03+00:00" |
9937 | }, | 9719 | }, |
9938 | { | 9720 | { |
9939 | "name": "sebastian/version", | 9721 | "name": "sebastian/version", |
9940 | "version": "3.0.2", | 9722 | "version": "3.0.2", |
9941 | "source": { | 9723 | "source": { |
9942 | "type": "git", | 9724 | "type": "git", |
9943 | "url": "https://github.com/sebastianbergmann/version.git", | 9725 | "url": "https://github.com/sebastianbergmann/version.git", |
9944 | "reference": "c6c1022351a901512170118436c764e473f6de8c" | 9726 | "reference": "c6c1022351a901512170118436c764e473f6de8c" |
9945 | }, | 9727 | }, |
9946 | "dist": { | 9728 | "dist": { |
9947 | "type": "zip", | 9729 | "type": "zip", |
9948 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", | 9730 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", |
9949 | "reference": "c6c1022351a901512170118436c764e473f6de8c", | 9731 | "reference": "c6c1022351a901512170118436c764e473f6de8c", |
9950 | "shasum": "" | 9732 | "shasum": "" |
9951 | }, | 9733 | }, |
9952 | "require": { | 9734 | "require": { |
9953 | "php": ">=7.3" | 9735 | "php": ">=7.3" |
9954 | }, | 9736 | }, |
9955 | "type": "library", | 9737 | "type": "library", |
9956 | "extra": { | 9738 | "extra": { |
9957 | "branch-alias": { | 9739 | "branch-alias": { |
9958 | "dev-master": "3.0-dev" | 9740 | "dev-master": "3.0-dev" |
9959 | } | 9741 | } |
9960 | }, | 9742 | }, |
9961 | "autoload": { | 9743 | "autoload": { |
9962 | "classmap": [ | 9744 | "classmap": [ |
9963 | "src/" | 9745 | "src/" |
9964 | ] | 9746 | ] |
9965 | }, | 9747 | }, |
9966 | "notification-url": "https://packagist.org/downloads/", | 9748 | "notification-url": "https://packagist.org/downloads/", |
9967 | "license": [ | 9749 | "license": [ |
9968 | "BSD-3-Clause" | 9750 | "BSD-3-Clause" |
9969 | ], | 9751 | ], |
9970 | "authors": [ | 9752 | "authors": [ |
9971 | { | 9753 | { |
9972 | "name": "Sebastian Bergmann", | 9754 | "name": "Sebastian Bergmann", |
9973 | "email": "sebastian@phpunit.de", | 9755 | "email": "sebastian@phpunit.de", |
9974 | "role": "lead" | 9756 | "role": "lead" |
9975 | } | 9757 | } |
9976 | ], | 9758 | ], |
9977 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", | 9759 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", |
9978 | "homepage": "https://github.com/sebastianbergmann/version", | 9760 | "homepage": "https://github.com/sebastianbergmann/version", |
9979 | "support": { | 9761 | "support": { |
9980 | "issues": "https://github.com/sebastianbergmann/version/issues", | 9762 | "issues": "https://github.com/sebastianbergmann/version/issues", |
9981 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" | 9763 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" |
9982 | }, | 9764 | }, |
9983 | "funding": [ | 9765 | "funding": [ |
9984 | { | 9766 | { |
9985 | "url": "https://github.com/sebastianbergmann", | 9767 | "url": "https://github.com/sebastianbergmann", |
9986 | "type": "github" | 9768 | "type": "github" |
9987 | } | 9769 | } |
9988 | ], | 9770 | ], |
9989 | "time": "2020-09-28T06:39:44+00:00" | 9771 | "time": "2020-09-28T06:39:44+00:00" |
9990 | }, | 9772 | }, |
9991 | { | 9773 | { |
9992 | "name": "spatie/backtrace", | 9774 | "name": "spatie/backtrace", |
9993 | "version": "1.4.0", | 9775 | "version": "1.4.0", |
9994 | "source": { | 9776 | "source": { |
9995 | "type": "git", | 9777 | "type": "git", |
9996 | "url": "https://github.com/spatie/backtrace.git", | 9778 | "url": "https://github.com/spatie/backtrace.git", |
9997 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c" | 9779 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c" |
9998 | }, | 9780 | }, |
9999 | "dist": { | 9781 | "dist": { |
10000 | "type": "zip", | 9782 | "type": "zip", |
10001 | "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c", | 9783 | "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c", |
10002 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c", | 9784 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c", |
10003 | "shasum": "" | 9785 | "shasum": "" |
10004 | }, | 9786 | }, |
10005 | "require": { | 9787 | "require": { |
10006 | "php": "^7.3|^8.0" | 9788 | "php": "^7.3|^8.0" |
10007 | }, | 9789 | }, |
10008 | "require-dev": { | 9790 | "require-dev": { |
10009 | "ext-json": "*", | 9791 | "ext-json": "*", |
10010 | "phpunit/phpunit": "^9.3", | 9792 | "phpunit/phpunit": "^9.3", |
10011 | "spatie/phpunit-snapshot-assertions": "^4.2", | 9793 | "spatie/phpunit-snapshot-assertions": "^4.2", |
10012 | "symfony/var-dumper": "^5.1" | 9794 | "symfony/var-dumper": "^5.1" |
10013 | }, | 9795 | }, |
10014 | "type": "library", | 9796 | "type": "library", |
10015 | "autoload": { | 9797 | "autoload": { |
10016 | "psr-4": { | 9798 | "psr-4": { |
10017 | "Spatie\\Backtrace\\": "src" | 9799 | "Spatie\\Backtrace\\": "src" |
10018 | } | 9800 | } |
10019 | }, | 9801 | }, |
10020 | "notification-url": "https://packagist.org/downloads/", | 9802 | "notification-url": "https://packagist.org/downloads/", |
10021 | "license": [ | 9803 | "license": [ |
10022 | "MIT" | 9804 | "MIT" |
10023 | ], | 9805 | ], |
10024 | "authors": [ | 9806 | "authors": [ |
10025 | { | 9807 | { |
10026 | "name": "Freek Van de Herten", | 9808 | "name": "Freek Van de Herten", |
10027 | "email": "freek@spatie.be", | 9809 | "email": "freek@spatie.be", |
10028 | "homepage": "https://spatie.be", | 9810 | "homepage": "https://spatie.be", |
10029 | "role": "Developer" | 9811 | "role": "Developer" |
10030 | } | 9812 | } |
10031 | ], | 9813 | ], |
10032 | "description": "A better backtrace", | 9814 | "description": "A better backtrace", |
10033 | "homepage": "https://github.com/spatie/backtrace", | 9815 | "homepage": "https://github.com/spatie/backtrace", |
10034 | "keywords": [ | 9816 | "keywords": [ |
10035 | "Backtrace", | 9817 | "Backtrace", |
10036 | "spatie" | 9818 | "spatie" |
10037 | ], | 9819 | ], |
10038 | "support": { | 9820 | "support": { |
10039 | "source": "https://github.com/spatie/backtrace/tree/1.4.0" | 9821 | "source": "https://github.com/spatie/backtrace/tree/1.4.0" |
10040 | }, | 9822 | }, |
10041 | "funding": [ | 9823 | "funding": [ |
10042 | { | 9824 | { |
10043 | "url": "https://github.com/sponsors/spatie", | 9825 | "url": "https://github.com/sponsors/spatie", |
10044 | "type": "github" | 9826 | "type": "github" |
10045 | }, | 9827 | }, |
10046 | { | 9828 | { |
10047 | "url": "https://spatie.be/open-source/support-us", | 9829 | "url": "https://spatie.be/open-source/support-us", |
10048 | "type": "other" | 9830 | "type": "other" |
10049 | } | 9831 | } |
10050 | ], | 9832 | ], |
10051 | "time": "2023-03-04T08:57:24+00:00" | 9833 | "time": "2023-03-04T08:57:24+00:00" |
10052 | }, | 9834 | }, |
10053 | { | 9835 | { |
10054 | "name": "spatie/flare-client-php", | 9836 | "name": "spatie/flare-client-php", |
10055 | "version": "1.3.6", | 9837 | "version": "1.3.6", |
10056 | "source": { | 9838 | "source": { |
10057 | "type": "git", | 9839 | "type": "git", |
10058 | "url": "https://github.com/spatie/flare-client-php.git", | 9840 | "url": "https://github.com/spatie/flare-client-php.git", |
10059 | "reference": "530ac81255af79f114344286e4275f8869c671e2" | 9841 | "reference": "530ac81255af79f114344286e4275f8869c671e2" |
10060 | }, | 9842 | }, |
10061 | "dist": { | 9843 | "dist": { |
10062 | "type": "zip", | 9844 | "type": "zip", |
10063 | "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2", | 9845 | "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2", |
10064 | "reference": "530ac81255af79f114344286e4275f8869c671e2", | 9846 | "reference": "530ac81255af79f114344286e4275f8869c671e2", |
10065 | "shasum": "" | 9847 | "shasum": "" |
10066 | }, | 9848 | }, |
10067 | "require": { | 9849 | "require": { |
10068 | "illuminate/pipeline": "^8.0|^9.0|^10.0", | 9850 | "illuminate/pipeline": "^8.0|^9.0|^10.0", |
10069 | "php": "^8.0", | 9851 | "php": "^8.0", |
10070 | "spatie/backtrace": "^1.2", | 9852 | "spatie/backtrace": "^1.2", |
10071 | "symfony/http-foundation": "^5.0|^6.0", | 9853 | "symfony/http-foundation": "^5.0|^6.0", |
10072 | "symfony/mime": "^5.2|^6.0", | 9854 | "symfony/mime": "^5.2|^6.0", |
10073 | "symfony/process": "^5.2|^6.0", | 9855 | "symfony/process": "^5.2|^6.0", |
10074 | "symfony/var-dumper": "^5.2|^6.0" | 9856 | "symfony/var-dumper": "^5.2|^6.0" |
10075 | }, | 9857 | }, |
10076 | "require-dev": { | 9858 | "require-dev": { |
10077 | "dms/phpunit-arraysubset-asserts": "^0.3.0", | 9859 | "dms/phpunit-arraysubset-asserts": "^0.3.0", |
10078 | "pestphp/pest": "^1.20", | 9860 | "pestphp/pest": "^1.20", |
10079 | "phpstan/extension-installer": "^1.1", | 9861 | "phpstan/extension-installer": "^1.1", |
10080 | "phpstan/phpstan-deprecation-rules": "^1.0", | 9862 | "phpstan/phpstan-deprecation-rules": "^1.0", |
10081 | "phpstan/phpstan-phpunit": "^1.0", | 9863 | "phpstan/phpstan-phpunit": "^1.0", |
10082 | "spatie/phpunit-snapshot-assertions": "^4.0" | 9864 | "spatie/phpunit-snapshot-assertions": "^4.0" |
10083 | }, | 9865 | }, |
10084 | "type": "library", | 9866 | "type": "library", |
10085 | "extra": { | 9867 | "extra": { |
10086 | "branch-alias": { | 9868 | "branch-alias": { |
10087 | "dev-main": "1.1.x-dev" | 9869 | "dev-main": "1.1.x-dev" |
10088 | } | 9870 | } |
10089 | }, | 9871 | }, |
10090 | "autoload": { | 9872 | "autoload": { |
10091 | "files": [ | 9873 | "files": [ |
10092 | "src/helpers.php" | 9874 | "src/helpers.php" |
10093 | ], | 9875 | ], |
10094 | "psr-4": { | 9876 | "psr-4": { |
10095 | "Spatie\\FlareClient\\": "src" | 9877 | "Spatie\\FlareClient\\": "src" |
10096 | } | 9878 | } |
10097 | }, | 9879 | }, |
10098 | "notification-url": "https://packagist.org/downloads/", | 9880 | "notification-url": "https://packagist.org/downloads/", |
10099 | "license": [ | 9881 | "license": [ |
10100 | "MIT" | 9882 | "MIT" |
10101 | ], | 9883 | ], |
10102 | "description": "Send PHP errors to Flare", | 9884 | "description": "Send PHP errors to Flare", |
10103 | "homepage": "https://github.com/spatie/flare-client-php", | 9885 | "homepage": "https://github.com/spatie/flare-client-php", |
10104 | "keywords": [ | 9886 | "keywords": [ |
10105 | "exception", | 9887 | "exception", |
10106 | "flare", | 9888 | "flare", |
10107 | "reporting", | 9889 | "reporting", |
10108 | "spatie" | 9890 | "spatie" |
10109 | ], | 9891 | ], |
10110 | "support": { | 9892 | "support": { |
10111 | "issues": "https://github.com/spatie/flare-client-php/issues", | 9893 | "issues": "https://github.com/spatie/flare-client-php/issues", |
10112 | "source": "https://github.com/spatie/flare-client-php/tree/1.3.6" | 9894 | "source": "https://github.com/spatie/flare-client-php/tree/1.3.6" |
10113 | }, | 9895 | }, |
10114 | "funding": [ | 9896 | "funding": [ |
10115 | { | 9897 | { |
10116 | "url": "https://github.com/spatie", | 9898 | "url": "https://github.com/spatie", |
10117 | "type": "github" | 9899 | "type": "github" |
10118 | } | 9900 | } |
10119 | ], | 9901 | ], |
10120 | "time": "2023-04-12T07:57:12+00:00" | 9902 | "time": "2023-04-12T07:57:12+00:00" |
10121 | }, | 9903 | }, |
10122 | { | 9904 | { |
10123 | "name": "spatie/ignition", | 9905 | "name": "spatie/ignition", |
10124 | "version": "1.7.0", | 9906 | "version": "1.7.0", |
10125 | "source": { | 9907 | "source": { |
10126 | "type": "git", | 9908 | "type": "git", |
10127 | "url": "https://github.com/spatie/ignition.git", | 9909 | "url": "https://github.com/spatie/ignition.git", |
10128 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78" | 9910 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78" |
10129 | }, | 9911 | }, |
10130 | "dist": { | 9912 | "dist": { |
10131 | "type": "zip", | 9913 | "type": "zip", |
10132 | "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", | 9914 | "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", |
10133 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", | 9915 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", |
10134 | "shasum": "" | 9916 | "shasum": "" |
10135 | }, | 9917 | }, |
10136 | "require": { | 9918 | "require": { |
10137 | "ext-json": "*", | 9919 | "ext-json": "*", |
10138 | "ext-mbstring": "*", | 9920 | "ext-mbstring": "*", |
10139 | "php": "^8.0", | 9921 | "php": "^8.0", |
10140 | "spatie/backtrace": "^1.4", | 9922 | "spatie/backtrace": "^1.4", |
10141 | "spatie/flare-client-php": "^1.1", | 9923 | "spatie/flare-client-php": "^1.1", |
10142 | "symfony/console": "^5.4|^6.0", | 9924 | "symfony/console": "^5.4|^6.0", |
10143 | "symfony/var-dumper": "^5.4|^6.0" | 9925 | "symfony/var-dumper": "^5.4|^6.0" |
10144 | }, | 9926 | }, |
10145 | "require-dev": { | 9927 | "require-dev": { |
10146 | "illuminate/cache": "^9.52", | 9928 | "illuminate/cache": "^9.52", |
10147 | "mockery/mockery": "^1.4", | 9929 | "mockery/mockery": "^1.4", |
10148 | "pestphp/pest": "^1.20", | 9930 | "pestphp/pest": "^1.20", |
10149 | "phpstan/extension-installer": "^1.1", | 9931 | "phpstan/extension-installer": "^1.1", |
10150 | "phpstan/phpstan-deprecation-rules": "^1.0", | 9932 | "phpstan/phpstan-deprecation-rules": "^1.0", |
10151 | "phpstan/phpstan-phpunit": "^1.0", | 9933 | "phpstan/phpstan-phpunit": "^1.0", |
10152 | "psr/simple-cache-implementation": "*", | 9934 | "psr/simple-cache-implementation": "*", |
10153 | "symfony/cache": "^6.2", | 9935 | "symfony/cache": "^6.2", |
10154 | "symfony/process": "^5.4|^6.0", | 9936 | "symfony/process": "^5.4|^6.0", |
10155 | "vlucas/phpdotenv": "^5.5" | 9937 | "vlucas/phpdotenv": "^5.5" |
10156 | }, | 9938 | }, |
10157 | "suggest": { | 9939 | "suggest": { |
10158 | "openai-php/client": "Require get solutions from OpenAI", | 9940 | "openai-php/client": "Require get solutions from OpenAI", |
10159 | "simple-cache-implementation": "To cache solutions from OpenAI" | 9941 | "simple-cache-implementation": "To cache solutions from OpenAI" |
10160 | }, | 9942 | }, |
10161 | "type": "library", | 9943 | "type": "library", |
10162 | "extra": { | 9944 | "extra": { |
10163 | "branch-alias": { | 9945 | "branch-alias": { |
10164 | "dev-main": "1.5.x-dev" | 9946 | "dev-main": "1.5.x-dev" |
10165 | } | 9947 | } |
10166 | }, | 9948 | }, |
10167 | "autoload": { | 9949 | "autoload": { |
10168 | "psr-4": { | 9950 | "psr-4": { |
10169 | "Spatie\\Ignition\\": "src" | 9951 | "Spatie\\Ignition\\": "src" |
10170 | } | 9952 | } |
10171 | }, | 9953 | }, |
10172 | "notification-url": "https://packagist.org/downloads/", | 9954 | "notification-url": "https://packagist.org/downloads/", |
10173 | "license": [ | 9955 | "license": [ |
10174 | "MIT" | 9956 | "MIT" |
10175 | ], | 9957 | ], |
10176 | "authors": [ | 9958 | "authors": [ |
10177 | { | 9959 | { |
10178 | "name": "Spatie", | 9960 | "name": "Spatie", |
10179 | "email": "info@spatie.be", | 9961 | "email": "info@spatie.be", |
10180 | "role": "Developer" | 9962 | "role": "Developer" |
10181 | } | 9963 | } |
10182 | ], | 9964 | ], |
10183 | "description": "A beautiful error page for PHP applications.", | 9965 | "description": "A beautiful error page for PHP applications.", |
10184 | "homepage": "https://flareapp.io/ignition", | 9966 | "homepage": "https://flareapp.io/ignition", |
10185 | "keywords": [ | 9967 | "keywords": [ |
10186 | "error", | 9968 | "error", |
10187 | "flare", | 9969 | "flare", |
10188 | "laravel", | 9970 | "laravel", |
10189 | "page" | 9971 | "page" |
10190 | ], | 9972 | ], |
10191 | "support": { | 9973 | "support": { |
10192 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", | 9974 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", |
10193 | "forum": "https://twitter.com/flareappio", | 9975 | "forum": "https://twitter.com/flareappio", |
10194 | "issues": "https://github.com/spatie/ignition/issues", | 9976 | "issues": "https://github.com/spatie/ignition/issues", |
10195 | "source": "https://github.com/spatie/ignition" | 9977 | "source": "https://github.com/spatie/ignition" |
10196 | }, | 9978 | }, |
10197 | "funding": [ | 9979 | "funding": [ |
10198 | { | 9980 | { |
10199 | "url": "https://github.com/spatie", | 9981 | "url": "https://github.com/spatie", |
10200 | "type": "github" | 9982 | "type": "github" |
10201 | } | 9983 | } |
10202 | ], | 9984 | ], |
10203 | "time": "2023-05-04T13:20:26+00:00" | 9985 | "time": "2023-05-04T13:20:26+00:00" |
10204 | }, | 9986 | }, |
10205 | { | 9987 | { |
10206 | "name": "spatie/laravel-ignition", | 9988 | "name": "spatie/laravel-ignition", |
10207 | "version": "1.6.4", | 9989 | "version": "1.6.4", |
10208 | "source": { | 9990 | "source": { |
10209 | "type": "git", | 9991 | "type": "git", |
10210 | "url": "https://github.com/spatie/laravel-ignition.git", | 9992 | "url": "https://github.com/spatie/laravel-ignition.git", |
10211 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc" | 9993 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc" |
10212 | }, | 9994 | }, |
10213 | "dist": { | 9995 | "dist": { |
10214 | "type": "zip", | 9996 | "type": "zip", |
10215 | "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", | 9997 | "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", |
10216 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", | 9998 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", |
10217 | "shasum": "" | 9999 | "shasum": "" |
10218 | }, | 10000 | }, |
10219 | "require": { | 10001 | "require": { |
10220 | "ext-curl": "*", | 10002 | "ext-curl": "*", |
10221 | "ext-json": "*", | 10003 | "ext-json": "*", |
10222 | "ext-mbstring": "*", | 10004 | "ext-mbstring": "*", |
10223 | "illuminate/support": "^8.77|^9.27", | 10005 | "illuminate/support": "^8.77|^9.27", |
10224 | "monolog/monolog": "^2.3", | 10006 | "monolog/monolog": "^2.3", |
10225 | "php": "^8.0", | 10007 | "php": "^8.0", |
10226 | "spatie/flare-client-php": "^1.0.1", | 10008 | "spatie/flare-client-php": "^1.0.1", |
10227 | "spatie/ignition": "^1.4.1", | 10009 | "spatie/ignition": "^1.4.1", |
10228 | "symfony/console": "^5.0|^6.0", | 10010 | "symfony/console": "^5.0|^6.0", |
10229 | "symfony/var-dumper": "^5.0|^6.0" | 10011 | "symfony/var-dumper": "^5.0|^6.0" |
10230 | }, | 10012 | }, |
10231 | "require-dev": { | 10013 | "require-dev": { |
10232 | "filp/whoops": "^2.14", | 10014 | "filp/whoops": "^2.14", |
10233 | "livewire/livewire": "^2.8|dev-develop", | 10015 | "livewire/livewire": "^2.8|dev-develop", |
10234 | "mockery/mockery": "^1.4", | 10016 | "mockery/mockery": "^1.4", |
10235 | "nunomaduro/larastan": "^1.0", | 10017 | "nunomaduro/larastan": "^1.0", |
10236 | "orchestra/testbench": "^6.23|^7.0", | 10018 | "orchestra/testbench": "^6.23|^7.0", |
10237 | "pestphp/pest": "^1.20", | 10019 | "pestphp/pest": "^1.20", |
10238 | "phpstan/extension-installer": "^1.1", | 10020 | "phpstan/extension-installer": "^1.1", |
10239 | "phpstan/phpstan-deprecation-rules": "^1.0", | 10021 | "phpstan/phpstan-deprecation-rules": "^1.0", |
10240 | "phpstan/phpstan-phpunit": "^1.0", | 10022 | "phpstan/phpstan-phpunit": "^1.0", |
10241 | "spatie/laravel-ray": "^1.27" | 10023 | "spatie/laravel-ray": "^1.27" |
10242 | }, | 10024 | }, |
10243 | "type": "library", | 10025 | "type": "library", |
10244 | "extra": { | 10026 | "extra": { |
10245 | "laravel": { | 10027 | "laravel": { |
10246 | "providers": [ | 10028 | "providers": [ |
10247 | "Spatie\\LaravelIgnition\\IgnitionServiceProvider" | 10029 | "Spatie\\LaravelIgnition\\IgnitionServiceProvider" |
10248 | ], | 10030 | ], |
10249 | "aliases": { | 10031 | "aliases": { |
10250 | "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" | 10032 | "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" |
10251 | } | 10033 | } |
10252 | } | 10034 | } |
10253 | }, | 10035 | }, |
10254 | "autoload": { | 10036 | "autoload": { |
10255 | "files": [ | 10037 | "files": [ |
10256 | "src/helpers.php" | 10038 | "src/helpers.php" |
10257 | ], | 10039 | ], |
10258 | "psr-4": { | 10040 | "psr-4": { |
10259 | "Spatie\\LaravelIgnition\\": "src" | 10041 | "Spatie\\LaravelIgnition\\": "src" |
10260 | } | 10042 | } |
10261 | }, | 10043 | }, |
10262 | "notification-url": "https://packagist.org/downloads/", | 10044 | "notification-url": "https://packagist.org/downloads/", |
10263 | "license": [ | 10045 | "license": [ |
10264 | "MIT" | 10046 | "MIT" |
10265 | ], | 10047 | ], |
10266 | "authors": [ | 10048 | "authors": [ |
10267 | { | 10049 | { |
10268 | "name": "Spatie", | 10050 | "name": "Spatie", |
10269 | "email": "info@spatie.be", | 10051 | "email": "info@spatie.be", |
10270 | "role": "Developer" | 10052 | "role": "Developer" |
10271 | } | 10053 | } |
10272 | ], | 10054 | ], |
10273 | "description": "A beautiful error page for Laravel applications.", | 10055 | "description": "A beautiful error page for Laravel applications.", |
10274 | "homepage": "https://flareapp.io/ignition", | 10056 | "homepage": "https://flareapp.io/ignition", |
10275 | "keywords": [ | 10057 | "keywords": [ |
10276 | "error", | 10058 | "error", |
10277 | "flare", | 10059 | "flare", |
10278 | "laravel", | 10060 | "laravel", |
10279 | "page" | 10061 | "page" |
10280 | ], | 10062 | ], |
10281 | "support": { | 10063 | "support": { |
10282 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", | 10064 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", |
10283 | "forum": "https://twitter.com/flareappio", | 10065 | "forum": "https://twitter.com/flareappio", |
10284 | "issues": "https://github.com/spatie/laravel-ignition/issues", | 10066 | "issues": "https://github.com/spatie/laravel-ignition/issues", |
10285 | "source": "https://github.com/spatie/laravel-ignition" | 10067 | "source": "https://github.com/spatie/laravel-ignition" |
10286 | }, | 10068 | }, |
10287 | "funding": [ | 10069 | "funding": [ |
10288 | { | 10070 | { |
10289 | "url": "https://github.com/spatie", | 10071 | "url": "https://github.com/spatie", |
10290 | "type": "github" | 10072 | "type": "github" |
10291 | } | 10073 | } |
10292 | ], | 10074 | ], |
10293 | "time": "2023-01-03T19:28:04+00:00" | 10075 | "time": "2023-01-03T19:28:04+00:00" |
10294 | }, | 10076 | }, |
10295 | { | 10077 | { |
10296 | "name": "symfony/yaml", | 10078 | "name": "symfony/yaml", |
10297 | "version": "v6.0.19", | 10079 | "version": "v6.0.19", |
10298 | "source": { | 10080 | "source": { |
10299 | "type": "git", | 10081 | "type": "git", |
10300 | "url": "https://github.com/symfony/yaml.git", | 10082 | "url": "https://github.com/symfony/yaml.git", |
10301 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884" | 10083 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884" |
10302 | }, | 10084 | }, |
10303 | "dist": { | 10085 | "dist": { |
10304 | "type": "zip", | 10086 | "type": "zip", |
10305 | "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884", | 10087 | "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884", |
10306 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884", | 10088 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884", |
10307 | "shasum": "" | 10089 | "shasum": "" |
10308 | }, | 10090 | }, |
10309 | "require": { | 10091 | "require": { |
10310 | "php": ">=8.0.2", | 10092 | "php": ">=8.0.2", |
10311 | "symfony/polyfill-ctype": "^1.8" | 10093 | "symfony/polyfill-ctype": "^1.8" |
10312 | }, | 10094 | }, |
10313 | "conflict": { | 10095 | "conflict": { |
10314 | "symfony/console": "<5.4" | 10096 | "symfony/console": "<5.4" |
10315 | }, | 10097 | }, |
10316 | "require-dev": { | 10098 | "require-dev": { |
10317 | "symfony/console": "^5.4|^6.0" | 10099 | "symfony/console": "^5.4|^6.0" |
10318 | }, | 10100 | }, |
10319 | "suggest": { | 10101 | "suggest": { |
10320 | "symfony/console": "For validating YAML files using the lint command" | 10102 | "symfony/console": "For validating YAML files using the lint command" |
10321 | }, | 10103 | }, |
10322 | "bin": [ | 10104 | "bin": [ |
10323 | "Resources/bin/yaml-lint" | 10105 | "Resources/bin/yaml-lint" |
10324 | ], | 10106 | ], |
10325 | "type": "library", | 10107 | "type": "library", |
10326 | "autoload": { | 10108 | "autoload": { |
10327 | "psr-4": { | 10109 | "psr-4": { |
10328 | "Symfony\\Component\\Yaml\\": "" | 10110 | "Symfony\\Component\\Yaml\\": "" |
10329 | }, | 10111 | }, |
10330 | "exclude-from-classmap": [ | 10112 | "exclude-from-classmap": [ |
10331 | "/Tests/" | 10113 | "/Tests/" |
10332 | ] | 10114 | ] |
10333 | }, | 10115 | }, |
10334 | "notification-url": "https://packagist.org/downloads/", | 10116 | "notification-url": "https://packagist.org/downloads/", |
10335 | "license": [ | 10117 | "license": [ |
10336 | "MIT" | 10118 | "MIT" |
10337 | ], | 10119 | ], |
10338 | "authors": [ | 10120 | "authors": [ |
10339 | { | 10121 | { |
10340 | "name": "Fabien Potencier", | 10122 | "name": "Fabien Potencier", |
10341 | "email": "fabien@symfony.com" | 10123 | "email": "fabien@symfony.com" |
10342 | }, | 10124 | }, |
10343 | { | 10125 | { |
10344 | "name": "Symfony Community", | 10126 | "name": "Symfony Community", |
10345 | "homepage": "https://symfony.com/contributors" | 10127 | "homepage": "https://symfony.com/contributors" |
10346 | } | 10128 | } |
10347 | ], | 10129 | ], |
10348 | "description": "Loads and dumps YAML files", | 10130 | "description": "Loads and dumps YAML files", |
10349 | "homepage": "https://symfony.com", | 10131 | "homepage": "https://symfony.com", |
10350 | "support": { | 10132 | "support": { |
10351 | "source": "https://github.com/symfony/yaml/tree/v6.0.19" | 10133 | "source": "https://github.com/symfony/yaml/tree/v6.0.19" |
10352 | }, | 10134 | }, |
10353 | "funding": [ | 10135 | "funding": [ |
10354 | { | 10136 | { |
10355 | "url": "https://symfony.com/sponsor", | 10137 | "url": "https://symfony.com/sponsor", |
10356 | "type": "custom" | 10138 | "type": "custom" |
10357 | }, | 10139 | }, |
10358 | { | 10140 | { |
10359 | "url": "https://github.com/fabpot", | 10141 | "url": "https://github.com/fabpot", |
10360 | "type": "github" | 10142 | "type": "github" |
10361 | }, | 10143 | }, |
10362 | { | 10144 | { |
10363 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 10145 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
10364 | "type": "tidelift" | 10146 | "type": "tidelift" |
10365 | } | 10147 | } |
10366 | ], | 10148 | ], |
10367 | "time": "2023-01-11T11:50:03+00:00" | 10149 | "time": "2023-01-11T11:50:03+00:00" |
10368 | }, | 10150 | }, |
10369 | { | 10151 | { |
10370 | "name": "theseer/tokenizer", | 10152 | "name": "theseer/tokenizer", |
10371 | "version": "1.2.1", | 10153 | "version": "1.2.1", |
10372 | "source": { | 10154 | "source": { |
10373 | "type": "git", | 10155 | "type": "git", |
10374 | "url": "https://github.com/theseer/tokenizer.git", | 10156 | "url": "https://github.com/theseer/tokenizer.git", |
10375 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" | 10157 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" |
10376 | }, | 10158 | }, |
10377 | "dist": { | 10159 | "dist": { |
database/migrations/2024_06_24_092718_alert_table_users.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Illuminate\Database\Migrations\Migration; | 3 | use Illuminate\Database\Migrations\Migration; |
4 | use Illuminate\Database\Schema\Blueprint; | 4 | use Illuminate\Database\Schema\Blueprint; |
5 | use Illuminate\Support\Facades\Schema; | 5 | use Illuminate\Support\Facades\Schema; |
6 | 6 | ||
7 | return new class extends Migration | 7 | return new class extends Migration |
8 | { | 8 | { |
9 | /** | 9 | /** |
10 | * Run the migrations. | 10 | * Run the migrations. |
11 | * | 11 | * |
12 | * @return void | 12 | * @return void |
13 | */ | 13 | */ |
14 | public function up() | 14 | public function up() |
15 | { | 15 | { |
16 | Schema::table('users', function (Blueprint $table) { | 16 | /* Schema::table('users', function (Blueprint $table) { |
17 | $table->smallInteger('is_lookin')->tinyInteger('is_lookin')->default(0)->change(); | 17 | $table->smallInteger('is_lookin')->tinyInteger('is_lookin')->default(0)->change(); |
18 | $table->smallInteger('is_message')->tinyInteger('is_message')->default(0)->change(); | 18 | $table->smallInteger('is_message')->tinyInteger('is_message')->default(0)->change(); |
19 | $table->smallInteger('is_public')->tinyInteger('is_public')->default(0)->change(); | 19 | $table->smallInteger('is_public')->tinyInteger('is_public')->default(0)->change(); |
20 | $table->smallInteger('is_manager')->tinyInteger('is_manager')->default(0)->change(); | 20 | $table->smallInteger('is_manager')->tinyInteger('is_manager')->default(0)->change(); |
21 | }); | 21 | }); |
22 | */ | ||
22 | } | 23 | } |
23 | 24 | ||
24 | /** | 25 | /** |
25 | * Reverse the migrations. | 26 | * Reverse the migrations. |
26 | * | 27 | * |
27 | * @return void | 28 | * @return void |
28 | */ | 29 | */ |
29 | public function down() | 30 | public function down() |
30 | { | 31 | { |
31 | Schema::table('users', function (Blueprint $table) { | 32 | Schema::table('users', function (Blueprint $table) { |
32 | // | 33 | // |
33 | }); | 34 | }); |
34 | } | 35 | } |
35 | }; | 36 | }; |
36 | 37 |
database/migrations/2024_06_27_124222_alert_sertifications_table.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Illuminate\Database\Migrations\Migration; | 3 | use Illuminate\Database\Migrations\Migration; |
4 | use Illuminate\Database\Schema\Blueprint; | 4 | use Illuminate\Database\Schema\Blueprint; |
5 | use Illuminate\Support\Facades\Schema; | 5 | use Illuminate\Support\Facades\Schema; |
6 | 6 | ||
7 | return new class extends Migration | 7 | return new class extends Migration |
8 | { | 8 | { |
9 | /** | 9 | /** |
10 | * Run the migrations. | 10 | * Run the migrations. |
11 | * | 11 | * |
12 | * @return void | 12 | * @return void |
13 | */ | 13 | */ |
14 | public function up() | 14 | public function up() |
15 | { | 15 | { |
16 | Schema::table('sertifications', function (Blueprint $table) { | 16 | Schema::table('sertifications', function (Blueprint $table) { |
17 | $table->string('education', 255)->nullable()->change(); | 17 | //$table->string('education', 255)->nullable()->change(); |
18 | }); | 18 | }); |
19 | } | 19 | } |
20 | 20 | ||
21 | /** | 21 | /** |
22 | * Reverse the migrations. | 22 | * Reverse the migrations. |
23 | * | 23 | * |
24 | * @return void | 24 | * @return void |
25 | */ | 25 | */ |
26 | public function down() | 26 | public function down() |
27 | { | 27 | { |
28 | Schema::table('sertifications', function (Blueprint $table) { | 28 | Schema::table('sertifications', function (Blueprint $table) { |
29 | $table->string('education', 255)->nullable(false)->change(); | 29 | $table->string('education', 255)->nullable(false)->change(); |
30 | }); | 30 | }); |
31 | } | 31 | } |
32 | }; | 32 | }; |
33 | 33 |
database/migrations/2024_08_09_072423_alter_table_chats.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Illuminate\Database\Migrations\Migration; | 3 | use Illuminate\Database\Migrations\Migration; |
4 | use Illuminate\Database\Schema\Blueprint; | 4 | use Illuminate\Database\Schema\Blueprint; |
5 | use Illuminate\Support\Facades\Schema; | 5 | use Illuminate\Support\Facades\Schema; |
6 | 6 | ||
7 | return new class extends Migration | 7 | return new class extends Migration |
8 | { | 8 | { |
9 | /** | 9 | /** |
10 | * Run the migrations. | 10 | * Run the migrations. |
11 | * | 11 | * |
12 | * @return void | 12 | * @return void |
13 | */ | 13 | */ |
14 | public function up() | 14 | public function up() |
15 | { | 15 | { |
16 | Schema::table('chats', function (Blueprint $table) { | 16 | Schema::table('chats', function (Blueprint $table) { |
17 | $table->dateTime('last_message_date')->nullable(true)->change(); | 17 | $table->dateTime('last_message_date')->nullable(true); //->change(); |
18 | $table->integer('last_message_id')->nullable(true)->change(); | 18 | $table->integer('last_message_id')->nullable(true); //->change(); |
19 | $table->boolean('is_admin_chat')->default(false)->after('is_fixed'); | 19 | $table->boolean('is_admin_chat')->default(false)->after('is_fixed'); |
20 | }); | 20 | }); |
21 | } | 21 | } |
22 | 22 | ||
23 | /** | 23 | /** |
24 | * Reverse the migrations. | 24 | * Reverse the migrations. |
25 | * | 25 | * |
26 | * @return void | 26 | * @return void |
27 | */ | 27 | */ |
28 | public function down() | 28 | public function down() |
29 | { | 29 | { |
30 | Schema::table('chats', function (Blueprint $table) { | 30 | Schema::table('chats', function (Blueprint $table) { |
31 | $table->dropColumn('is_admin_chat'); | 31 | $table->dropColumn('is_admin_chat'); |
32 | }); | 32 | }); |
33 | } | 33 | } |
34 | }; | 34 | }; |
35 | 35 |
database/migrations/2024_08_10_123217_alter_table_workers.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Illuminate\Database\Migrations\Migration; | 3 | use Illuminate\Database\Migrations\Migration; |
4 | use Illuminate\Database\Schema\Blueprint; | 4 | use Illuminate\Database\Schema\Blueprint; |
5 | use Illuminate\Support\Facades\Schema; | 5 | use Illuminate\Support\Facades\Schema; |
6 | 6 | ||
7 | return new class extends Migration | 7 | return new class extends Migration |
8 | { | 8 | { |
9 | /** | 9 | /** |
10 | * Run the migrations. | 10 | * Run the migrations. |
11 | * | 11 | * |
12 | * @return void | 12 | * @return void |
13 | */ | 13 | */ |
14 | public function up() | 14 | public function up() |
15 | { | 15 | { |
16 | Schema::table('workers', function (Blueprint $table) { | 16 | Schema::table('workers', function (Blueprint $table) { |
17 | $table->integer('position_work')->nullable(true);//->change(); | ||
17 | $table->string('positions_work', 255)->nullable(true)->after('position_work'); | 18 | $table->string('positions_work', 255)->nullable(true)->after('position_work'); |
18 | $table->integer('position_work')->nullable(true)->change(); | 19 | |
19 | 20 | ||
20 | }); | 21 | }); |
21 | } | 22 | } |
22 | 23 | ||
23 | /** | 24 | /** |
24 | * Reverse the migrations. | 25 | * Reverse the migrations. |
25 | * | 26 | * |
26 | * @return void | 27 | * @return void |
27 | */ | 28 | */ |
28 | public function down() | 29 | public function down() |
29 | { | 30 | { |
30 | Schema::table('workers', function (Blueprint $table) { | 31 | Schema::table('workers', function (Blueprint $table) { |
31 | $table->dropColumn('positions_work'); | 32 | $table->dropColumn('positions_work'); |
32 | }); | 33 | }); |
33 | } | 34 | } |
34 | }; | 35 | }; |
35 | 36 |
database/migrations/2024_09_18_104034_change_ip_to_id_in_likes_tables.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Illuminate\Database\Migrations\Migration; | 3 | use Illuminate\Database\Migrations\Migration; |
4 | use Illuminate\Database\Schema\Blueprint; | 4 | use Illuminate\Database\Schema\Blueprint; |
5 | use Illuminate\Support\Facades\Schema; | 5 | use Illuminate\Support\Facades\Schema; |
6 | 6 | ||
7 | return new class extends Migration | 7 | return new class extends Migration |
8 | { | 8 | { |
9 | /** | 9 | /** |
10 | * Run the migrations. | 10 | * Run the migrations. |
11 | * | 11 | * |
12 | * @return void | 12 | * @return void |
13 | */ | 13 | */ |
14 | public function up() | 14 | public function up() |
15 | { | 15 | { |
16 | Schema::table('like_worker', function (Blueprint $table) { | 16 | /* Schema::table('like_worker', function (Blueprint $table) { |
17 | $table->renameColumn('ip_address', 'user_id'); | 17 | $table->renameColumn('ip_address', 'user_id'); |
18 | }); | 18 | }); |
19 | Schema::table('like_vacancy', function (Blueprint $table) { | 19 | Schema::table('like_vacancy', function (Blueprint $table) { |
20 | $table->renameColumn('ip_address', 'user_id'); | 20 | $table->renameColumn('ip_address', 'user_id'); |
21 | }); | 21 | }); |
22 | */ | ||
22 | } | 23 | } |
23 | 24 | ||
24 | /** | 25 | /** |
25 | * Reverse the migrations. | 26 | * Reverse the migrations. |
26 | * | 27 | * |
27 | * @return void | 28 | * @return void |
28 | */ | 29 | */ |
29 | public function down() | 30 | public function down() |
30 | { | 31 | { |
31 | // Schema::table('id_in_likes_tables', function (Blueprint $table) { | 32 | // Schema::table('id_in_likes_tables', function (Blueprint $table) { |
32 | // // | 33 | // // |
33 | // }); | 34 | // }); |
34 | } | 35 | } |
35 | }; | 36 | }; |
36 | 37 |
webstat/index.html