Commit 6b5dca57f06f1585235d433131bf37e7a24050cf
1 parent
01e6816d26
Exists in
master
and in
1 other branch
Компонент для работы с экселем
Showing 5 changed files with 370 additions and 3 deletions Inline Diff
app/Http/Controllers/PagesController.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | namespace App\Http\Controllers; | 3 | namespace App\Http\Controllers; |
4 | 4 | ||
5 | use App\Models\pages; | 5 | use App\Models\pages; |
6 | use Illuminate\Http\Request; | 6 | use Illuminate\Http\Request; |
7 | use Illuminate\Support\Facades\Redis; | 7 | use Illuminate\Support\Facades\Redis; |
8 | use PhpOffice\PhpSpreadsheet\Spreadsheet; | ||
9 | use PhpOffice\PhpSpreadsheet\Writer\Xlsx; | ||
8 | 10 | ||
9 | class PagesController extends Controller | 11 | class PagesController extends Controller |
10 | { | 12 | { |
11 | public function pages(pages $pages) { | 13 | public function pages(pages $pages) { |
12 | $page = pages::query()->where('slug', $pages->slug)->first(); | 14 | $page = pages::query()->where('slug', $pages->slug)->first(); |
13 | print_r($page); | 15 | print_r($page); |
14 | } | 16 | } |
15 | 17 | ||
16 | public function redis() { | 18 | public function redis() { |
17 | $redis = Redis::connection(); | 19 | $redis = Redis::connection(); |
18 | $redis->set('User:CompanyName', 'РЕКАМОРЕ'); | 20 | $redis->set('User:CompanyName', 'РЕКАМОРЕ'); |
19 | $id = 1; | 21 | $id = 1; |
20 | //dd(Redis::get('MyVar')); | 22 | //dd(Redis::get('MyVar')); |
21 | $redis->command('rpush', array("Сообщение1")); | 23 | $redis->command('rpush', array("Сообщение1")); |
22 | $redis->command('rpush', array("Сообщение2")); | 24 | $redis->command('rpush', array("Сообщение2")); |
23 | $values = $redis->command('lrange', array("mylist", 0, 1)); | 25 | $values = $redis->command('lrange', array("mylist", 0, 1)); |
24 | dd($values); | 26 | dd($values); |
25 | 27 | ||
26 | } | 28 | } |
29 | |||
30 | public function excel() { | ||
31 | $spreadsheet = new Spreadsheet(); | ||
32 | $activeWorksheet = $spreadsheet->getActiveSheet(); | ||
33 | $activeWorksheet->setCellValue('A1', 'Hello World !'); | ||
34 | |||
35 | $writer = new Xlsx($spreadsheet); | ||
36 | $writer->save('hello_world.xlsx'); | ||
37 | } | ||
27 | } | 38 | } |
28 | 39 |
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 | "filament/forms": "^2.17", | 9 | "filament/forms": "^2.17", |
10 | "filament/notifications": "^2.17", | 10 | "filament/notifications": "^2.17", |
11 | "filament/tables": "^2.17", | 11 | "filament/tables": "^2.17", |
12 | "guzzlehttp/guzzle": "^7.2", | 12 | "guzzlehttp/guzzle": "^7.2", |
13 | "laravel-lang/lang": "^12.17", | 13 | "laravel-lang/lang": "^12.17", |
14 | "laravel/framework": "^9.19", | 14 | "laravel/framework": "^9.19", |
15 | "laravel/sanctum": "^3.0", | 15 | "laravel/sanctum": "^3.0", |
16 | "laravel/tinker": "^2.7", | 16 | "laravel/tinker": "^2.7", |
17 | "laravel/ui": "^4.2" | 17 | "laravel/ui": "^4.2", |
18 | 18 | "phpoffice/phpspreadsheet": "^1.29" | |
19 | }, | 19 | }, |
20 | "require-dev": { | 20 | "require-dev": { |
21 | "barryvdh/laravel-debugbar": "^3.9", | 21 | "barryvdh/laravel-debugbar": "^3.9", |
22 | "fakerphp/faker": "^1.9.1", | 22 | "fakerphp/faker": "^1.9.1", |
23 | "laravel/pint": "^1.0", | 23 | "laravel/pint": "^1.0", |
24 | "laravel/sail": "^1.0.1", | 24 | "laravel/sail": "^1.0.1", |
25 | "mockery/mockery": "^1.4.4", | 25 | "mockery/mockery": "^1.4.4", |
26 | "nunomaduro/collision": "^6.1", | 26 | "nunomaduro/collision": "^6.1", |
27 | "phpunit/phpunit": "^9.5.10", | 27 | "phpunit/phpunit": "^9.5.10", |
28 | "spatie/laravel-ignition": "^1.0" | 28 | "spatie/laravel-ignition": "^1.0" |
29 | }, | 29 | }, |
30 | "autoload": { | 30 | "autoload": { |
31 | "psr-4": { | 31 | "psr-4": { |
32 | "App\\": "app/", | 32 | "App\\": "app/", |
33 | "Database\\Factories\\": "database/factories/", | 33 | "Database\\Factories\\": "database/factories/", |
34 | "Database\\Seeders\\": "database/seeders/" | 34 | "Database\\Seeders\\": "database/seeders/" |
35 | } | 35 | } |
36 | }, | 36 | }, |
37 | "autoload-dev": { | 37 | "autoload-dev": { |
38 | "psr-4": { | 38 | "psr-4": { |
39 | "Tests\\": "tests/" | 39 | "Tests\\": "tests/" |
40 | } | 40 | } |
41 | }, | 41 | }, |
42 | "scripts": { | 42 | "scripts": { |
43 | "post-autoload-dump": [ | 43 | "post-autoload-dump": [ |
44 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | 44 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", |
45 | "@php artisan package:discover --ansi" | 45 | "@php artisan package:discover --ansi" |
46 | ], | 46 | ], |
47 | "post-update-cmd": [ | 47 | "post-update-cmd": [ |
48 | "@php artisan vendor:publish --tag=laravel-assets --ansi --force" | 48 | "@php artisan vendor:publish --tag=laravel-assets --ansi --force" |
49 | ], | 49 | ], |
50 | "post-root-package-install": [ | 50 | "post-root-package-install": [ |
51 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | 51 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" |
52 | ], | 52 | ], |
53 | "post-create-project-cmd": [ | 53 | "post-create-project-cmd": [ |
54 | "@php artisan key:generate --ansi" | 54 | "@php artisan key:generate --ansi" |
55 | ] | 55 | ] |
56 | }, | 56 | }, |
57 | "extra": { | 57 | "extra": { |
58 | "laravel": { | 58 | "laravel": { |
59 | "dont-discover": [] | 59 | "dont-discover": [] |
60 | } | 60 | } |
61 | }, | 61 | }, |
62 | "config": { | 62 | "config": { |
63 | "optimize-autoloader": true, | 63 | "optimize-autoloader": true, |
64 | "preferred-install": "dist", | 64 | "preferred-install": "dist", |
65 | "sort-packages": true, | 65 | "sort-packages": true, |
66 | "allow-plugins": { | 66 | "allow-plugins": { |
67 | "pestphp/pest-plugin": true | 67 | "pestphp/pest-plugin": true |
68 | } | 68 | } |
69 | }, | 69 | }, |
70 | "minimum-stability": "stable", | 70 | "minimum-stability": "stable", |
71 | "prefer-stable": true | 71 | "prefer-stable": true |
72 | } | 72 | } |
73 | 73 |
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": "20183a94ace5a057147d8f922629489d", | 7 | "content-hash": "e00756e0febf0cc362b59b2f6f9fa84c", |
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": "blade-ui-kit/blade-heroicons", | 79 | "name": "blade-ui-kit/blade-heroicons", |
80 | "version": "1.4.0", | 80 | "version": "1.4.0", |
81 | "source": { | 81 | "source": { |
82 | "type": "git", | 82 | "type": "git", |
83 | "url": "https://github.com/blade-ui-kit/blade-heroicons.git", | 83 | "url": "https://github.com/blade-ui-kit/blade-heroicons.git", |
84 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b" | 84 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b" |
85 | }, | 85 | }, |
86 | "dist": { | 86 | "dist": { |
87 | "type": "zip", | 87 | "type": "zip", |
88 | "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b", | 88 | "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/dea08e8308d9bad9ebff1bc482d5985dbaacc91b", |
89 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b", | 89 | "reference": "dea08e8308d9bad9ebff1bc482d5985dbaacc91b", |
90 | "shasum": "" | 90 | "shasum": "" |
91 | }, | 91 | }, |
92 | "require": { | 92 | "require": { |
93 | "blade-ui-kit/blade-icons": "^1.1", | 93 | "blade-ui-kit/blade-icons": "^1.1", |
94 | "illuminate/support": "^8.0|^9.0|^10.0", | 94 | "illuminate/support": "^8.0|^9.0|^10.0", |
95 | "php": "^7.4|^8.0" | 95 | "php": "^7.4|^8.0" |
96 | }, | 96 | }, |
97 | "require-dev": { | 97 | "require-dev": { |
98 | "orchestra/testbench": "^6.0|^7.0|^8.0", | 98 | "orchestra/testbench": "^6.0|^7.0|^8.0", |
99 | "phpunit/phpunit": "^9.0" | 99 | "phpunit/phpunit": "^9.0" |
100 | }, | 100 | }, |
101 | "type": "library", | 101 | "type": "library", |
102 | "extra": { | 102 | "extra": { |
103 | "laravel": { | 103 | "laravel": { |
104 | "providers": [ | 104 | "providers": [ |
105 | "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider" | 105 | "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider" |
106 | ] | 106 | ] |
107 | } | 107 | } |
108 | }, | 108 | }, |
109 | "autoload": { | 109 | "autoload": { |
110 | "psr-4": { | 110 | "psr-4": { |
111 | "BladeUI\\Heroicons\\": "src" | 111 | "BladeUI\\Heroicons\\": "src" |
112 | } | 112 | } |
113 | }, | 113 | }, |
114 | "notification-url": "https://packagist.org/downloads/", | 114 | "notification-url": "https://packagist.org/downloads/", |
115 | "license": [ | 115 | "license": [ |
116 | "MIT" | 116 | "MIT" |
117 | ], | 117 | ], |
118 | "authors": [ | 118 | "authors": [ |
119 | { | 119 | { |
120 | "name": "Dries Vints", | 120 | "name": "Dries Vints", |
121 | "homepage": "https://driesvints.com" | 121 | "homepage": "https://driesvints.com" |
122 | } | 122 | } |
123 | ], | 123 | ], |
124 | "description": "A package to easily make use of Heroicons in your Laravel Blade views.", | 124 | "description": "A package to easily make use of Heroicons in your Laravel Blade views.", |
125 | "homepage": "https://github.com/blade-ui-kit/blade-heroicons", | 125 | "homepage": "https://github.com/blade-ui-kit/blade-heroicons", |
126 | "keywords": [ | 126 | "keywords": [ |
127 | "Heroicons", | 127 | "Heroicons", |
128 | "blade", | 128 | "blade", |
129 | "laravel" | 129 | "laravel" |
130 | ], | 130 | ], |
131 | "support": { | 131 | "support": { |
132 | "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues", | 132 | "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues", |
133 | "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0" | 133 | "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/1.4.0" |
134 | }, | 134 | }, |
135 | "funding": [ | 135 | "funding": [ |
136 | { | 136 | { |
137 | "url": "https://github.com/caneco", | 137 | "url": "https://github.com/caneco", |
138 | "type": "github" | 138 | "type": "github" |
139 | }, | 139 | }, |
140 | { | 140 | { |
141 | "url": "https://github.com/driesvints", | 141 | "url": "https://github.com/driesvints", |
142 | "type": "github" | 142 | "type": "github" |
143 | } | 143 | } |
144 | ], | 144 | ], |
145 | "time": "2023-01-25T17:57:58+00:00" | 145 | "time": "2023-01-25T17:57:58+00:00" |
146 | }, | 146 | }, |
147 | { | 147 | { |
148 | "name": "blade-ui-kit/blade-icons", | 148 | "name": "blade-ui-kit/blade-icons", |
149 | "version": "1.5.1", | 149 | "version": "1.5.1", |
150 | "source": { | 150 | "source": { |
151 | "type": "git", | 151 | "type": "git", |
152 | "url": "https://github.com/blade-ui-kit/blade-icons.git", | 152 | "url": "https://github.com/blade-ui-kit/blade-icons.git", |
153 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228" | 153 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228" |
154 | }, | 154 | }, |
155 | "dist": { | 155 | "dist": { |
156 | "type": "zip", | 156 | "type": "zip", |
157 | "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228", | 157 | "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228", |
158 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228", | 158 | "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228", |
159 | "shasum": "" | 159 | "shasum": "" |
160 | }, | 160 | }, |
161 | "require": { | 161 | "require": { |
162 | "illuminate/contracts": "^8.0|^9.0|^10.0", | 162 | "illuminate/contracts": "^8.0|^9.0|^10.0", |
163 | "illuminate/filesystem": "^8.0|^9.0|^10.0", | 163 | "illuminate/filesystem": "^8.0|^9.0|^10.0", |
164 | "illuminate/support": "^8.0|^9.0|^10.0", | 164 | "illuminate/support": "^8.0|^9.0|^10.0", |
165 | "illuminate/view": "^8.0|^9.0|^10.0", | 165 | "illuminate/view": "^8.0|^9.0|^10.0", |
166 | "php": "^7.4|^8.0", | 166 | "php": "^7.4|^8.0", |
167 | "symfony/console": "^5.3|^6.0", | 167 | "symfony/console": "^5.3|^6.0", |
168 | "symfony/finder": "^5.3|^6.0" | 168 | "symfony/finder": "^5.3|^6.0" |
169 | }, | 169 | }, |
170 | "require-dev": { | 170 | "require-dev": { |
171 | "mockery/mockery": "^1.3", | 171 | "mockery/mockery": "^1.3", |
172 | "orchestra/testbench": "^6.0|^7.0|^8.0", | 172 | "orchestra/testbench": "^6.0|^7.0|^8.0", |
173 | "phpunit/phpunit": "^9.0" | 173 | "phpunit/phpunit": "^9.0" |
174 | }, | 174 | }, |
175 | "bin": [ | 175 | "bin": [ |
176 | "bin/blade-icons-generate" | 176 | "bin/blade-icons-generate" |
177 | ], | 177 | ], |
178 | "type": "library", | 178 | "type": "library", |
179 | "extra": { | 179 | "extra": { |
180 | "laravel": { | 180 | "laravel": { |
181 | "providers": [ | 181 | "providers": [ |
182 | "BladeUI\\Icons\\BladeIconsServiceProvider" | 182 | "BladeUI\\Icons\\BladeIconsServiceProvider" |
183 | ] | 183 | ] |
184 | } | 184 | } |
185 | }, | 185 | }, |
186 | "autoload": { | 186 | "autoload": { |
187 | "files": [ | 187 | "files": [ |
188 | "src/helpers.php" | 188 | "src/helpers.php" |
189 | ], | 189 | ], |
190 | "psr-4": { | 190 | "psr-4": { |
191 | "BladeUI\\Icons\\": "src" | 191 | "BladeUI\\Icons\\": "src" |
192 | } | 192 | } |
193 | }, | 193 | }, |
194 | "notification-url": "https://packagist.org/downloads/", | 194 | "notification-url": "https://packagist.org/downloads/", |
195 | "license": [ | 195 | "license": [ |
196 | "MIT" | 196 | "MIT" |
197 | ], | 197 | ], |
198 | "authors": [ | 198 | "authors": [ |
199 | { | 199 | { |
200 | "name": "Dries Vints", | 200 | "name": "Dries Vints", |
201 | "homepage": "https://driesvints.com" | 201 | "homepage": "https://driesvints.com" |
202 | } | 202 | } |
203 | ], | 203 | ], |
204 | "description": "A package to easily make use of icons in your Laravel Blade views.", | 204 | "description": "A package to easily make use of icons in your Laravel Blade views.", |
205 | "homepage": "https://github.com/blade-ui-kit/blade-icons", | 205 | "homepage": "https://github.com/blade-ui-kit/blade-icons", |
206 | "keywords": [ | 206 | "keywords": [ |
207 | "blade", | 207 | "blade", |
208 | "icons", | 208 | "icons", |
209 | "laravel", | 209 | "laravel", |
210 | "svg" | 210 | "svg" |
211 | ], | 211 | ], |
212 | "support": { | 212 | "support": { |
213 | "issues": "https://github.com/blade-ui-kit/blade-icons/issues", | 213 | "issues": "https://github.com/blade-ui-kit/blade-icons/issues", |
214 | "source": "https://github.com/blade-ui-kit/blade-icons" | 214 | "source": "https://github.com/blade-ui-kit/blade-icons" |
215 | }, | 215 | }, |
216 | "funding": [ | 216 | "funding": [ |
217 | { | 217 | { |
218 | "url": "https://github.com/caneco", | 218 | "url": "https://github.com/caneco", |
219 | "type": "github" | 219 | "type": "github" |
220 | }, | 220 | }, |
221 | { | 221 | { |
222 | "url": "https://github.com/driesvints", | 222 | "url": "https://github.com/driesvints", |
223 | "type": "github" | 223 | "type": "github" |
224 | } | 224 | } |
225 | ], | 225 | ], |
226 | "time": "2023-02-15T16:30:12+00:00" | 226 | "time": "2023-02-15T16:30:12+00:00" |
227 | }, | 227 | }, |
228 | { | 228 | { |
229 | "name": "brick/math", | 229 | "name": "brick/math", |
230 | "version": "0.11.0", | 230 | "version": "0.11.0", |
231 | "source": { | 231 | "source": { |
232 | "type": "git", | 232 | "type": "git", |
233 | "url": "https://github.com/brick/math.git", | 233 | "url": "https://github.com/brick/math.git", |
234 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" | 234 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" |
235 | }, | 235 | }, |
236 | "dist": { | 236 | "dist": { |
237 | "type": "zip", | 237 | "type": "zip", |
238 | "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", | 238 | "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", |
239 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", | 239 | "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", |
240 | "shasum": "" | 240 | "shasum": "" |
241 | }, | 241 | }, |
242 | "require": { | 242 | "require": { |
243 | "php": "^8.0" | 243 | "php": "^8.0" |
244 | }, | 244 | }, |
245 | "require-dev": { | 245 | "require-dev": { |
246 | "php-coveralls/php-coveralls": "^2.2", | 246 | "php-coveralls/php-coveralls": "^2.2", |
247 | "phpunit/phpunit": "^9.0", | 247 | "phpunit/phpunit": "^9.0", |
248 | "vimeo/psalm": "5.0.0" | 248 | "vimeo/psalm": "5.0.0" |
249 | }, | 249 | }, |
250 | "type": "library", | 250 | "type": "library", |
251 | "autoload": { | 251 | "autoload": { |
252 | "psr-4": { | 252 | "psr-4": { |
253 | "Brick\\Math\\": "src/" | 253 | "Brick\\Math\\": "src/" |
254 | } | 254 | } |
255 | }, | 255 | }, |
256 | "notification-url": "https://packagist.org/downloads/", | 256 | "notification-url": "https://packagist.org/downloads/", |
257 | "license": [ | 257 | "license": [ |
258 | "MIT" | 258 | "MIT" |
259 | ], | 259 | ], |
260 | "description": "Arbitrary-precision arithmetic library", | 260 | "description": "Arbitrary-precision arithmetic library", |
261 | "keywords": [ | 261 | "keywords": [ |
262 | "Arbitrary-precision", | 262 | "Arbitrary-precision", |
263 | "BigInteger", | 263 | "BigInteger", |
264 | "BigRational", | 264 | "BigRational", |
265 | "arithmetic", | 265 | "arithmetic", |
266 | "bigdecimal", | 266 | "bigdecimal", |
267 | "bignum", | 267 | "bignum", |
268 | "brick", | 268 | "brick", |
269 | "math" | 269 | "math" |
270 | ], | 270 | ], |
271 | "support": { | 271 | "support": { |
272 | "issues": "https://github.com/brick/math/issues", | 272 | "issues": "https://github.com/brick/math/issues", |
273 | "source": "https://github.com/brick/math/tree/0.11.0" | 273 | "source": "https://github.com/brick/math/tree/0.11.0" |
274 | }, | 274 | }, |
275 | "funding": [ | 275 | "funding": [ |
276 | { | 276 | { |
277 | "url": "https://github.com/BenMorel", | 277 | "url": "https://github.com/BenMorel", |
278 | "type": "github" | 278 | "type": "github" |
279 | } | 279 | } |
280 | ], | 280 | ], |
281 | "time": "2023-01-15T23:15:59+00:00" | 281 | "time": "2023-01-15T23:15:59+00:00" |
282 | }, | 282 | }, |
283 | { | 283 | { |
284 | "name": "danharrin/date-format-converter", | 284 | "name": "danharrin/date-format-converter", |
285 | "version": "v0.3.0", | 285 | "version": "v0.3.0", |
286 | "source": { | 286 | "source": { |
287 | "type": "git", | 287 | "type": "git", |
288 | "url": "https://github.com/danharrin/date-format-converter.git", | 288 | "url": "https://github.com/danharrin/date-format-converter.git", |
289 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2" | 289 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2" |
290 | }, | 290 | }, |
291 | "dist": { | 291 | "dist": { |
292 | "type": "zip", | 292 | "type": "zip", |
293 | "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2", | 293 | "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/42b6ddc52059d4ba228a67c15adaaa0c039e75f2", |
294 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2", | 294 | "reference": "42b6ddc52059d4ba228a67c15adaaa0c039e75f2", |
295 | "shasum": "" | 295 | "shasum": "" |
296 | }, | 296 | }, |
297 | "require": { | 297 | "require": { |
298 | "php": "^7.2|^8.0" | 298 | "php": "^7.2|^8.0" |
299 | }, | 299 | }, |
300 | "type": "library", | 300 | "type": "library", |
301 | "autoload": { | 301 | "autoload": { |
302 | "files": [ | 302 | "files": [ |
303 | "src/helpers.php", | 303 | "src/helpers.php", |
304 | "src/standards.php" | 304 | "src/standards.php" |
305 | ], | 305 | ], |
306 | "psr-4": { | 306 | "psr-4": { |
307 | "DanHarrin\\DateFormatConverter\\": "src/" | 307 | "DanHarrin\\DateFormatConverter\\": "src/" |
308 | } | 308 | } |
309 | }, | 309 | }, |
310 | "notification-url": "https://packagist.org/downloads/", | 310 | "notification-url": "https://packagist.org/downloads/", |
311 | "license": [ | 311 | "license": [ |
312 | "MIT" | 312 | "MIT" |
313 | ], | 313 | ], |
314 | "authors": [ | 314 | "authors": [ |
315 | { | 315 | { |
316 | "name": "Dan Harrin", | 316 | "name": "Dan Harrin", |
317 | "email": "dan@danharrin.com" | 317 | "email": "dan@danharrin.com" |
318 | } | 318 | } |
319 | ], | 319 | ], |
320 | "description": "Convert token-based date formats between standards.", | 320 | "description": "Convert token-based date formats between standards.", |
321 | "homepage": "https://github.com/danharrin/date-format-converter", | 321 | "homepage": "https://github.com/danharrin/date-format-converter", |
322 | "support": { | 322 | "support": { |
323 | "issues": "https://github.com/danharrin/date-format-converter/issues", | 323 | "issues": "https://github.com/danharrin/date-format-converter/issues", |
324 | "source": "https://github.com/danharrin/date-format-converter" | 324 | "source": "https://github.com/danharrin/date-format-converter" |
325 | }, | 325 | }, |
326 | "funding": [ | 326 | "funding": [ |
327 | { | 327 | { |
328 | "url": "https://github.com/danharrin", | 328 | "url": "https://github.com/danharrin", |
329 | "type": "github" | 329 | "type": "github" |
330 | } | 330 | } |
331 | ], | 331 | ], |
332 | "time": "2022-09-29T07:48:20+00:00" | 332 | "time": "2022-09-29T07:48:20+00:00" |
333 | }, | 333 | }, |
334 | { | 334 | { |
335 | "name": "dflydev/dot-access-data", | 335 | "name": "dflydev/dot-access-data", |
336 | "version": "v3.0.2", | 336 | "version": "v3.0.2", |
337 | "source": { | 337 | "source": { |
338 | "type": "git", | 338 | "type": "git", |
339 | "url": "https://github.com/dflydev/dflydev-dot-access-data.git", | 339 | "url": "https://github.com/dflydev/dflydev-dot-access-data.git", |
340 | "reference": "f41715465d65213d644d3141a6a93081be5d3549" | 340 | "reference": "f41715465d65213d644d3141a6a93081be5d3549" |
341 | }, | 341 | }, |
342 | "dist": { | 342 | "dist": { |
343 | "type": "zip", | 343 | "type": "zip", |
344 | "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", | 344 | "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", |
345 | "reference": "f41715465d65213d644d3141a6a93081be5d3549", | 345 | "reference": "f41715465d65213d644d3141a6a93081be5d3549", |
346 | "shasum": "" | 346 | "shasum": "" |
347 | }, | 347 | }, |
348 | "require": { | 348 | "require": { |
349 | "php": "^7.1 || ^8.0" | 349 | "php": "^7.1 || ^8.0" |
350 | }, | 350 | }, |
351 | "require-dev": { | 351 | "require-dev": { |
352 | "phpstan/phpstan": "^0.12.42", | 352 | "phpstan/phpstan": "^0.12.42", |
353 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", | 353 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", |
354 | "scrutinizer/ocular": "1.6.0", | 354 | "scrutinizer/ocular": "1.6.0", |
355 | "squizlabs/php_codesniffer": "^3.5", | 355 | "squizlabs/php_codesniffer": "^3.5", |
356 | "vimeo/psalm": "^4.0.0" | 356 | "vimeo/psalm": "^4.0.0" |
357 | }, | 357 | }, |
358 | "type": "library", | 358 | "type": "library", |
359 | "extra": { | 359 | "extra": { |
360 | "branch-alias": { | 360 | "branch-alias": { |
361 | "dev-main": "3.x-dev" | 361 | "dev-main": "3.x-dev" |
362 | } | 362 | } |
363 | }, | 363 | }, |
364 | "autoload": { | 364 | "autoload": { |
365 | "psr-4": { | 365 | "psr-4": { |
366 | "Dflydev\\DotAccessData\\": "src/" | 366 | "Dflydev\\DotAccessData\\": "src/" |
367 | } | 367 | } |
368 | }, | 368 | }, |
369 | "notification-url": "https://packagist.org/downloads/", | 369 | "notification-url": "https://packagist.org/downloads/", |
370 | "license": [ | 370 | "license": [ |
371 | "MIT" | 371 | "MIT" |
372 | ], | 372 | ], |
373 | "authors": [ | 373 | "authors": [ |
374 | { | 374 | { |
375 | "name": "Dragonfly Development Inc.", | 375 | "name": "Dragonfly Development Inc.", |
376 | "email": "info@dflydev.com", | 376 | "email": "info@dflydev.com", |
377 | "homepage": "http://dflydev.com" | 377 | "homepage": "http://dflydev.com" |
378 | }, | 378 | }, |
379 | { | 379 | { |
380 | "name": "Beau Simensen", | 380 | "name": "Beau Simensen", |
381 | "email": "beau@dflydev.com", | 381 | "email": "beau@dflydev.com", |
382 | "homepage": "http://beausimensen.com" | 382 | "homepage": "http://beausimensen.com" |
383 | }, | 383 | }, |
384 | { | 384 | { |
385 | "name": "Carlos Frutos", | 385 | "name": "Carlos Frutos", |
386 | "email": "carlos@kiwing.it", | 386 | "email": "carlos@kiwing.it", |
387 | "homepage": "https://github.com/cfrutos" | 387 | "homepage": "https://github.com/cfrutos" |
388 | }, | 388 | }, |
389 | { | 389 | { |
390 | "name": "Colin O'Dell", | 390 | "name": "Colin O'Dell", |
391 | "email": "colinodell@gmail.com", | 391 | "email": "colinodell@gmail.com", |
392 | "homepage": "https://www.colinodell.com" | 392 | "homepage": "https://www.colinodell.com" |
393 | } | 393 | } |
394 | ], | 394 | ], |
395 | "description": "Given a deep data structure, access data by dot notation.", | 395 | "description": "Given a deep data structure, access data by dot notation.", |
396 | "homepage": "https://github.com/dflydev/dflydev-dot-access-data", | 396 | "homepage": "https://github.com/dflydev/dflydev-dot-access-data", |
397 | "keywords": [ | 397 | "keywords": [ |
398 | "access", | 398 | "access", |
399 | "data", | 399 | "data", |
400 | "dot", | 400 | "dot", |
401 | "notation" | 401 | "notation" |
402 | ], | 402 | ], |
403 | "support": { | 403 | "support": { |
404 | "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", | 404 | "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", |
405 | "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" | 405 | "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2" |
406 | }, | 406 | }, |
407 | "time": "2022-10-27T11:44:00+00:00" | 407 | "time": "2022-10-27T11:44:00+00:00" |
408 | }, | 408 | }, |
409 | { | 409 | { |
410 | "name": "doctrine/deprecations", | 410 | "name": "doctrine/deprecations", |
411 | "version": "v1.0.0", | 411 | "version": "v1.0.0", |
412 | "source": { | 412 | "source": { |
413 | "type": "git", | 413 | "type": "git", |
414 | "url": "https://github.com/doctrine/deprecations.git", | 414 | "url": "https://github.com/doctrine/deprecations.git", |
415 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" | 415 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" |
416 | }, | 416 | }, |
417 | "dist": { | 417 | "dist": { |
418 | "type": "zip", | 418 | "type": "zip", |
419 | "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", | 419 | "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", |
420 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", | 420 | "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", |
421 | "shasum": "" | 421 | "shasum": "" |
422 | }, | 422 | }, |
423 | "require": { | 423 | "require": { |
424 | "php": "^7.1|^8.0" | 424 | "php": "^7.1|^8.0" |
425 | }, | 425 | }, |
426 | "require-dev": { | 426 | "require-dev": { |
427 | "doctrine/coding-standard": "^9", | 427 | "doctrine/coding-standard": "^9", |
428 | "phpunit/phpunit": "^7.5|^8.5|^9.5", | 428 | "phpunit/phpunit": "^7.5|^8.5|^9.5", |
429 | "psr/log": "^1|^2|^3" | 429 | "psr/log": "^1|^2|^3" |
430 | }, | 430 | }, |
431 | "suggest": { | 431 | "suggest": { |
432 | "psr/log": "Allows logging deprecations via PSR-3 logger implementation" | 432 | "psr/log": "Allows logging deprecations via PSR-3 logger implementation" |
433 | }, | 433 | }, |
434 | "type": "library", | 434 | "type": "library", |
435 | "autoload": { | 435 | "autoload": { |
436 | "psr-4": { | 436 | "psr-4": { |
437 | "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" | 437 | "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" |
438 | } | 438 | } |
439 | }, | 439 | }, |
440 | "notification-url": "https://packagist.org/downloads/", | 440 | "notification-url": "https://packagist.org/downloads/", |
441 | "license": [ | 441 | "license": [ |
442 | "MIT" | 442 | "MIT" |
443 | ], | 443 | ], |
444 | "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.", | 444 | "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.", |
445 | "homepage": "https://www.doctrine-project.org/", | 445 | "homepage": "https://www.doctrine-project.org/", |
446 | "support": { | 446 | "support": { |
447 | "issues": "https://github.com/doctrine/deprecations/issues", | 447 | "issues": "https://github.com/doctrine/deprecations/issues", |
448 | "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" | 448 | "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" |
449 | }, | 449 | }, |
450 | "time": "2022-05-02T15:47:09+00:00" | 450 | "time": "2022-05-02T15:47:09+00:00" |
451 | }, | 451 | }, |
452 | { | 452 | { |
453 | "name": "doctrine/inflector", | 453 | "name": "doctrine/inflector", |
454 | "version": "2.0.6", | 454 | "version": "2.0.6", |
455 | "source": { | 455 | "source": { |
456 | "type": "git", | 456 | "type": "git", |
457 | "url": "https://github.com/doctrine/inflector.git", | 457 | "url": "https://github.com/doctrine/inflector.git", |
458 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" | 458 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" |
459 | }, | 459 | }, |
460 | "dist": { | 460 | "dist": { |
461 | "type": "zip", | 461 | "type": "zip", |
462 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", | 462 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", |
463 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", | 463 | "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", |
464 | "shasum": "" | 464 | "shasum": "" |
465 | }, | 465 | }, |
466 | "require": { | 466 | "require": { |
467 | "php": "^7.2 || ^8.0" | 467 | "php": "^7.2 || ^8.0" |
468 | }, | 468 | }, |
469 | "require-dev": { | 469 | "require-dev": { |
470 | "doctrine/coding-standard": "^10", | 470 | "doctrine/coding-standard": "^10", |
471 | "phpstan/phpstan": "^1.8", | 471 | "phpstan/phpstan": "^1.8", |
472 | "phpstan/phpstan-phpunit": "^1.1", | 472 | "phpstan/phpstan-phpunit": "^1.1", |
473 | "phpstan/phpstan-strict-rules": "^1.3", | 473 | "phpstan/phpstan-strict-rules": "^1.3", |
474 | "phpunit/phpunit": "^8.5 || ^9.5", | 474 | "phpunit/phpunit": "^8.5 || ^9.5", |
475 | "vimeo/psalm": "^4.25" | 475 | "vimeo/psalm": "^4.25" |
476 | }, | 476 | }, |
477 | "type": "library", | 477 | "type": "library", |
478 | "autoload": { | 478 | "autoload": { |
479 | "psr-4": { | 479 | "psr-4": { |
480 | "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" | 480 | "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" |
481 | } | 481 | } |
482 | }, | 482 | }, |
483 | "notification-url": "https://packagist.org/downloads/", | 483 | "notification-url": "https://packagist.org/downloads/", |
484 | "license": [ | 484 | "license": [ |
485 | "MIT" | 485 | "MIT" |
486 | ], | 486 | ], |
487 | "authors": [ | 487 | "authors": [ |
488 | { | 488 | { |
489 | "name": "Guilherme Blanco", | 489 | "name": "Guilherme Blanco", |
490 | "email": "guilhermeblanco@gmail.com" | 490 | "email": "guilhermeblanco@gmail.com" |
491 | }, | 491 | }, |
492 | { | 492 | { |
493 | "name": "Roman Borschel", | 493 | "name": "Roman Borschel", |
494 | "email": "roman@code-factory.org" | 494 | "email": "roman@code-factory.org" |
495 | }, | 495 | }, |
496 | { | 496 | { |
497 | "name": "Benjamin Eberlei", | 497 | "name": "Benjamin Eberlei", |
498 | "email": "kontakt@beberlei.de" | 498 | "email": "kontakt@beberlei.de" |
499 | }, | 499 | }, |
500 | { | 500 | { |
501 | "name": "Jonathan Wage", | 501 | "name": "Jonathan Wage", |
502 | "email": "jonwage@gmail.com" | 502 | "email": "jonwage@gmail.com" |
503 | }, | 503 | }, |
504 | { | 504 | { |
505 | "name": "Johannes Schmitt", | 505 | "name": "Johannes Schmitt", |
506 | "email": "schmittjoh@gmail.com" | 506 | "email": "schmittjoh@gmail.com" |
507 | } | 507 | } |
508 | ], | 508 | ], |
509 | "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", | 509 | "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", |
510 | "homepage": "https://www.doctrine-project.org/projects/inflector.html", | 510 | "homepage": "https://www.doctrine-project.org/projects/inflector.html", |
511 | "keywords": [ | 511 | "keywords": [ |
512 | "inflection", | 512 | "inflection", |
513 | "inflector", | 513 | "inflector", |
514 | "lowercase", | 514 | "lowercase", |
515 | "manipulation", | 515 | "manipulation", |
516 | "php", | 516 | "php", |
517 | "plural", | 517 | "plural", |
518 | "singular", | 518 | "singular", |
519 | "strings", | 519 | "strings", |
520 | "uppercase", | 520 | "uppercase", |
521 | "words" | 521 | "words" |
522 | ], | 522 | ], |
523 | "support": { | 523 | "support": { |
524 | "issues": "https://github.com/doctrine/inflector/issues", | 524 | "issues": "https://github.com/doctrine/inflector/issues", |
525 | "source": "https://github.com/doctrine/inflector/tree/2.0.6" | 525 | "source": "https://github.com/doctrine/inflector/tree/2.0.6" |
526 | }, | 526 | }, |
527 | "funding": [ | 527 | "funding": [ |
528 | { | 528 | { |
529 | "url": "https://www.doctrine-project.org/sponsorship.html", | 529 | "url": "https://www.doctrine-project.org/sponsorship.html", |
530 | "type": "custom" | 530 | "type": "custom" |
531 | }, | 531 | }, |
532 | { | 532 | { |
533 | "url": "https://www.patreon.com/phpdoctrine", | 533 | "url": "https://www.patreon.com/phpdoctrine", |
534 | "type": "patreon" | 534 | "type": "patreon" |
535 | }, | 535 | }, |
536 | { | 536 | { |
537 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", | 537 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", |
538 | "type": "tidelift" | 538 | "type": "tidelift" |
539 | } | 539 | } |
540 | ], | 540 | ], |
541 | "time": "2022-10-20T09:10:12+00:00" | 541 | "time": "2022-10-20T09:10:12+00:00" |
542 | }, | 542 | }, |
543 | { | 543 | { |
544 | "name": "doctrine/lexer", | 544 | "name": "doctrine/lexer", |
545 | "version": "2.1.0", | 545 | "version": "2.1.0", |
546 | "source": { | 546 | "source": { |
547 | "type": "git", | 547 | "type": "git", |
548 | "url": "https://github.com/doctrine/lexer.git", | 548 | "url": "https://github.com/doctrine/lexer.git", |
549 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" | 549 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" |
550 | }, | 550 | }, |
551 | "dist": { | 551 | "dist": { |
552 | "type": "zip", | 552 | "type": "zip", |
553 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", | 553 | "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", |
554 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", | 554 | "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", |
555 | "shasum": "" | 555 | "shasum": "" |
556 | }, | 556 | }, |
557 | "require": { | 557 | "require": { |
558 | "doctrine/deprecations": "^1.0", | 558 | "doctrine/deprecations": "^1.0", |
559 | "php": "^7.1 || ^8.0" | 559 | "php": "^7.1 || ^8.0" |
560 | }, | 560 | }, |
561 | "require-dev": { | 561 | "require-dev": { |
562 | "doctrine/coding-standard": "^9 || ^10", | 562 | "doctrine/coding-standard": "^9 || ^10", |
563 | "phpstan/phpstan": "^1.3", | 563 | "phpstan/phpstan": "^1.3", |
564 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | 564 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", |
565 | "psalm/plugin-phpunit": "^0.18.3", | 565 | "psalm/plugin-phpunit": "^0.18.3", |
566 | "vimeo/psalm": "^4.11 || ^5.0" | 566 | "vimeo/psalm": "^4.11 || ^5.0" |
567 | }, | 567 | }, |
568 | "type": "library", | 568 | "type": "library", |
569 | "autoload": { | 569 | "autoload": { |
570 | "psr-4": { | 570 | "psr-4": { |
571 | "Doctrine\\Common\\Lexer\\": "src" | 571 | "Doctrine\\Common\\Lexer\\": "src" |
572 | } | 572 | } |
573 | }, | 573 | }, |
574 | "notification-url": "https://packagist.org/downloads/", | 574 | "notification-url": "https://packagist.org/downloads/", |
575 | "license": [ | 575 | "license": [ |
576 | "MIT" | 576 | "MIT" |
577 | ], | 577 | ], |
578 | "authors": [ | 578 | "authors": [ |
579 | { | 579 | { |
580 | "name": "Guilherme Blanco", | 580 | "name": "Guilherme Blanco", |
581 | "email": "guilhermeblanco@gmail.com" | 581 | "email": "guilhermeblanco@gmail.com" |
582 | }, | 582 | }, |
583 | { | 583 | { |
584 | "name": "Roman Borschel", | 584 | "name": "Roman Borschel", |
585 | "email": "roman@code-factory.org" | 585 | "email": "roman@code-factory.org" |
586 | }, | 586 | }, |
587 | { | 587 | { |
588 | "name": "Johannes Schmitt", | 588 | "name": "Johannes Schmitt", |
589 | "email": "schmittjoh@gmail.com" | 589 | "email": "schmittjoh@gmail.com" |
590 | } | 590 | } |
591 | ], | 591 | ], |
592 | "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", | 592 | "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", |
593 | "homepage": "https://www.doctrine-project.org/projects/lexer.html", | 593 | "homepage": "https://www.doctrine-project.org/projects/lexer.html", |
594 | "keywords": [ | 594 | "keywords": [ |
595 | "annotations", | 595 | "annotations", |
596 | "docblock", | 596 | "docblock", |
597 | "lexer", | 597 | "lexer", |
598 | "parser", | 598 | "parser", |
599 | "php" | 599 | "php" |
600 | ], | 600 | ], |
601 | "support": { | 601 | "support": { |
602 | "issues": "https://github.com/doctrine/lexer/issues", | 602 | "issues": "https://github.com/doctrine/lexer/issues", |
603 | "source": "https://github.com/doctrine/lexer/tree/2.1.0" | 603 | "source": "https://github.com/doctrine/lexer/tree/2.1.0" |
604 | }, | 604 | }, |
605 | "funding": [ | 605 | "funding": [ |
606 | { | 606 | { |
607 | "url": "https://www.doctrine-project.org/sponsorship.html", | 607 | "url": "https://www.doctrine-project.org/sponsorship.html", |
608 | "type": "custom" | 608 | "type": "custom" |
609 | }, | 609 | }, |
610 | { | 610 | { |
611 | "url": "https://www.patreon.com/phpdoctrine", | 611 | "url": "https://www.patreon.com/phpdoctrine", |
612 | "type": "patreon" | 612 | "type": "patreon" |
613 | }, | 613 | }, |
614 | { | 614 | { |
615 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", | 615 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", |
616 | "type": "tidelift" | 616 | "type": "tidelift" |
617 | } | 617 | } |
618 | ], | 618 | ], |
619 | "time": "2022-12-14T08:49:07+00:00" | 619 | "time": "2022-12-14T08:49:07+00:00" |
620 | }, | 620 | }, |
621 | { | 621 | { |
622 | "name": "dragonmantank/cron-expression", | 622 | "name": "dragonmantank/cron-expression", |
623 | "version": "v3.3.2", | 623 | "version": "v3.3.2", |
624 | "source": { | 624 | "source": { |
625 | "type": "git", | 625 | "type": "git", |
626 | "url": "https://github.com/dragonmantank/cron-expression.git", | 626 | "url": "https://github.com/dragonmantank/cron-expression.git", |
627 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" | 627 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" |
628 | }, | 628 | }, |
629 | "dist": { | 629 | "dist": { |
630 | "type": "zip", | 630 | "type": "zip", |
631 | "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", | 631 | "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", |
632 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", | 632 | "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", |
633 | "shasum": "" | 633 | "shasum": "" |
634 | }, | 634 | }, |
635 | "require": { | 635 | "require": { |
636 | "php": "^7.2|^8.0", | 636 | "php": "^7.2|^8.0", |
637 | "webmozart/assert": "^1.0" | 637 | "webmozart/assert": "^1.0" |
638 | }, | 638 | }, |
639 | "replace": { | 639 | "replace": { |
640 | "mtdowling/cron-expression": "^1.0" | 640 | "mtdowling/cron-expression": "^1.0" |
641 | }, | 641 | }, |
642 | "require-dev": { | 642 | "require-dev": { |
643 | "phpstan/extension-installer": "^1.0", | 643 | "phpstan/extension-installer": "^1.0", |
644 | "phpstan/phpstan": "^1.0", | 644 | "phpstan/phpstan": "^1.0", |
645 | "phpstan/phpstan-webmozart-assert": "^1.0", | 645 | "phpstan/phpstan-webmozart-assert": "^1.0", |
646 | "phpunit/phpunit": "^7.0|^8.0|^9.0" | 646 | "phpunit/phpunit": "^7.0|^8.0|^9.0" |
647 | }, | 647 | }, |
648 | "type": "library", | 648 | "type": "library", |
649 | "autoload": { | 649 | "autoload": { |
650 | "psr-4": { | 650 | "psr-4": { |
651 | "Cron\\": "src/Cron/" | 651 | "Cron\\": "src/Cron/" |
652 | } | 652 | } |
653 | }, | 653 | }, |
654 | "notification-url": "https://packagist.org/downloads/", | 654 | "notification-url": "https://packagist.org/downloads/", |
655 | "license": [ | 655 | "license": [ |
656 | "MIT" | 656 | "MIT" |
657 | ], | 657 | ], |
658 | "authors": [ | 658 | "authors": [ |
659 | { | 659 | { |
660 | "name": "Chris Tankersley", | 660 | "name": "Chris Tankersley", |
661 | "email": "chris@ctankersley.com", | 661 | "email": "chris@ctankersley.com", |
662 | "homepage": "https://github.com/dragonmantank" | 662 | "homepage": "https://github.com/dragonmantank" |
663 | } | 663 | } |
664 | ], | 664 | ], |
665 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", | 665 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", |
666 | "keywords": [ | 666 | "keywords": [ |
667 | "cron", | 667 | "cron", |
668 | "schedule" | 668 | "schedule" |
669 | ], | 669 | ], |
670 | "support": { | 670 | "support": { |
671 | "issues": "https://github.com/dragonmantank/cron-expression/issues", | 671 | "issues": "https://github.com/dragonmantank/cron-expression/issues", |
672 | "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" | 672 | "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" |
673 | }, | 673 | }, |
674 | "funding": [ | 674 | "funding": [ |
675 | { | 675 | { |
676 | "url": "https://github.com/dragonmantank", | 676 | "url": "https://github.com/dragonmantank", |
677 | "type": "github" | 677 | "type": "github" |
678 | } | 678 | } |
679 | ], | 679 | ], |
680 | "time": "2022-09-10T18:51:20+00:00" | 680 | "time": "2022-09-10T18:51:20+00:00" |
681 | }, | 681 | }, |
682 | { | 682 | { |
683 | "name": "egulias/email-validator", | 683 | "name": "egulias/email-validator", |
684 | "version": "3.2.5", | 684 | "version": "3.2.5", |
685 | "source": { | 685 | "source": { |
686 | "type": "git", | 686 | "type": "git", |
687 | "url": "https://github.com/egulias/EmailValidator.git", | 687 | "url": "https://github.com/egulias/EmailValidator.git", |
688 | "reference": "b531a2311709443320c786feb4519cfaf94af796" | 688 | "reference": "b531a2311709443320c786feb4519cfaf94af796" |
689 | }, | 689 | }, |
690 | "dist": { | 690 | "dist": { |
691 | "type": "zip", | 691 | "type": "zip", |
692 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796", | 692 | "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796", |
693 | "reference": "b531a2311709443320c786feb4519cfaf94af796", | 693 | "reference": "b531a2311709443320c786feb4519cfaf94af796", |
694 | "shasum": "" | 694 | "shasum": "" |
695 | }, | 695 | }, |
696 | "require": { | 696 | "require": { |
697 | "doctrine/lexer": "^1.2|^2", | 697 | "doctrine/lexer": "^1.2|^2", |
698 | "php": ">=7.2", | 698 | "php": ">=7.2", |
699 | "symfony/polyfill-intl-idn": "^1.15" | 699 | "symfony/polyfill-intl-idn": "^1.15" |
700 | }, | 700 | }, |
701 | "require-dev": { | 701 | "require-dev": { |
702 | "phpunit/phpunit": "^8.5.8|^9.3.3", | 702 | "phpunit/phpunit": "^8.5.8|^9.3.3", |
703 | "vimeo/psalm": "^4" | 703 | "vimeo/psalm": "^4" |
704 | }, | 704 | }, |
705 | "suggest": { | 705 | "suggest": { |
706 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" | 706 | "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" |
707 | }, | 707 | }, |
708 | "type": "library", | 708 | "type": "library", |
709 | "extra": { | 709 | "extra": { |
710 | "branch-alias": { | 710 | "branch-alias": { |
711 | "dev-master": "3.0.x-dev" | 711 | "dev-master": "3.0.x-dev" |
712 | } | 712 | } |
713 | }, | 713 | }, |
714 | "autoload": { | 714 | "autoload": { |
715 | "psr-4": { | 715 | "psr-4": { |
716 | "Egulias\\EmailValidator\\": "src" | 716 | "Egulias\\EmailValidator\\": "src" |
717 | } | 717 | } |
718 | }, | 718 | }, |
719 | "notification-url": "https://packagist.org/downloads/", | 719 | "notification-url": "https://packagist.org/downloads/", |
720 | "license": [ | 720 | "license": [ |
721 | "MIT" | 721 | "MIT" |
722 | ], | 722 | ], |
723 | "authors": [ | 723 | "authors": [ |
724 | { | 724 | { |
725 | "name": "Eduardo Gulias Davis" | 725 | "name": "Eduardo Gulias Davis" |
726 | } | 726 | } |
727 | ], | 727 | ], |
728 | "description": "A library for validating emails against several RFCs", | 728 | "description": "A library for validating emails against several RFCs", |
729 | "homepage": "https://github.com/egulias/EmailValidator", | 729 | "homepage": "https://github.com/egulias/EmailValidator", |
730 | "keywords": [ | 730 | "keywords": [ |
731 | "email", | 731 | "email", |
732 | "emailvalidation", | 732 | "emailvalidation", |
733 | "emailvalidator", | 733 | "emailvalidator", |
734 | "validation", | 734 | "validation", |
735 | "validator" | 735 | "validator" |
736 | ], | 736 | ], |
737 | "support": { | 737 | "support": { |
738 | "issues": "https://github.com/egulias/EmailValidator/issues", | 738 | "issues": "https://github.com/egulias/EmailValidator/issues", |
739 | "source": "https://github.com/egulias/EmailValidator/tree/3.2.5" | 739 | "source": "https://github.com/egulias/EmailValidator/tree/3.2.5" |
740 | }, | 740 | }, |
741 | "funding": [ | 741 | "funding": [ |
742 | { | 742 | { |
743 | "url": "https://github.com/egulias", | 743 | "url": "https://github.com/egulias", |
744 | "type": "github" | 744 | "type": "github" |
745 | } | 745 | } |
746 | ], | 746 | ], |
747 | "time": "2023-01-02T17:26:14+00:00" | 747 | "time": "2023-01-02T17:26:14+00:00" |
748 | }, | 748 | }, |
749 | { | 749 | { |
750 | "name": "ezyang/htmlpurifier", | ||
751 | "version": "v4.16.0", | ||
752 | "source": { | ||
753 | "type": "git", | ||
754 | "url": "https://github.com/ezyang/htmlpurifier.git", | ||
755 | "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8" | ||
756 | }, | ||
757 | "dist": { | ||
758 | "type": "zip", | ||
759 | "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8", | ||
760 | "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8", | ||
761 | "shasum": "" | ||
762 | }, | ||
763 | "require": { | ||
764 | "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" | ||
765 | }, | ||
766 | "require-dev": { | ||
767 | "cerdic/css-tidy": "^1.7 || ^2.0", | ||
768 | "simpletest/simpletest": "dev-master" | ||
769 | }, | ||
770 | "suggest": { | ||
771 | "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", | ||
772 | "ext-bcmath": "Used for unit conversion and imagecrash protection", | ||
773 | "ext-iconv": "Converts text to and from non-UTF-8 encodings", | ||
774 | "ext-tidy": "Used for pretty-printing HTML" | ||
775 | }, | ||
776 | "type": "library", | ||
777 | "autoload": { | ||
778 | "files": [ | ||
779 | "library/HTMLPurifier.composer.php" | ||
780 | ], | ||
781 | "psr-0": { | ||
782 | "HTMLPurifier": "library/" | ||
783 | }, | ||
784 | "exclude-from-classmap": [ | ||
785 | "/library/HTMLPurifier/Language/" | ||
786 | ] | ||
787 | }, | ||
788 | "notification-url": "https://packagist.org/downloads/", | ||
789 | "license": [ | ||
790 | "LGPL-2.1-or-later" | ||
791 | ], | ||
792 | "authors": [ | ||
793 | { | ||
794 | "name": "Edward Z. Yang", | ||
795 | "email": "admin@htmlpurifier.org", | ||
796 | "homepage": "http://ezyang.com" | ||
797 | } | ||
798 | ], | ||
799 | "description": "Standards compliant HTML filter written in PHP", | ||
800 | "homepage": "http://htmlpurifier.org/", | ||
801 | "keywords": [ | ||
802 | "html" | ||
803 | ], | ||
804 | "support": { | ||
805 | "issues": "https://github.com/ezyang/htmlpurifier/issues", | ||
806 | "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0" | ||
807 | }, | ||
808 | "time": "2022-09-18T07:06:19+00:00" | ||
809 | }, | ||
810 | { | ||
750 | "name": "filament/forms", | 811 | "name": "filament/forms", |
751 | "version": "v2.17.40", | 812 | "version": "v2.17.40", |
752 | "source": { | 813 | "source": { |
753 | "type": "git", | 814 | "type": "git", |
754 | "url": "https://github.com/filamentphp/forms.git", | 815 | "url": "https://github.com/filamentphp/forms.git", |
755 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81" | 816 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81" |
756 | }, | 817 | }, |
757 | "dist": { | 818 | "dist": { |
758 | "type": "zip", | 819 | "type": "zip", |
759 | "url": "https://api.github.com/repos/filamentphp/forms/zipball/bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", | 820 | "url": "https://api.github.com/repos/filamentphp/forms/zipball/bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", |
760 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", | 821 | "reference": "bac884ddd8017ff5acf1ca7d3841a7cb4150bf81", |
761 | "shasum": "" | 822 | "shasum": "" |
762 | }, | 823 | }, |
763 | "require": { | 824 | "require": { |
764 | "blade-ui-kit/blade-heroicons": "^1.2", | 825 | "blade-ui-kit/blade-heroicons": "^1.2", |
765 | "danharrin/date-format-converter": "^0.3", | 826 | "danharrin/date-format-converter": "^0.3", |
766 | "filament/notifications": "self.version", | 827 | "filament/notifications": "self.version", |
767 | "filament/support": "self.version", | 828 | "filament/support": "self.version", |
768 | "illuminate/console": "^8.6|^9.0|^10.0", | 829 | "illuminate/console": "^8.6|^9.0|^10.0", |
769 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 830 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
770 | "illuminate/database": "^8.6|^9.0|^10.0", | 831 | "illuminate/database": "^8.6|^9.0|^10.0", |
771 | "illuminate/filesystem": "^8.6|^9.0|^10.0", | 832 | "illuminate/filesystem": "^8.6|^9.0|^10.0", |
772 | "illuminate/support": "^8.6|^9.0|^10.0", | 833 | "illuminate/support": "^8.6|^9.0|^10.0", |
773 | "illuminate/validation": "^8.6|^9.0|^10.0", | 834 | "illuminate/validation": "^8.6|^9.0|^10.0", |
774 | "illuminate/view": "^8.6|^9.0|^10.0", | 835 | "illuminate/view": "^8.6|^9.0|^10.0", |
775 | "livewire/livewire": "^2.10.7", | 836 | "livewire/livewire": "^2.10.7", |
776 | "php": "^8.0", | 837 | "php": "^8.0", |
777 | "spatie/laravel-package-tools": "^1.9" | 838 | "spatie/laravel-package-tools": "^1.9" |
778 | }, | 839 | }, |
779 | "type": "library", | 840 | "type": "library", |
780 | "extra": { | 841 | "extra": { |
781 | "laravel": { | 842 | "laravel": { |
782 | "providers": [ | 843 | "providers": [ |
783 | "Filament\\Forms\\FormsServiceProvider" | 844 | "Filament\\Forms\\FormsServiceProvider" |
784 | ] | 845 | ] |
785 | } | 846 | } |
786 | }, | 847 | }, |
787 | "autoload": { | 848 | "autoload": { |
788 | "files": [ | 849 | "files": [ |
789 | "src/helpers.php" | 850 | "src/helpers.php" |
790 | ], | 851 | ], |
791 | "psr-4": { | 852 | "psr-4": { |
792 | "Filament\\Forms\\": "src" | 853 | "Filament\\Forms\\": "src" |
793 | } | 854 | } |
794 | }, | 855 | }, |
795 | "notification-url": "https://packagist.org/downloads/", | 856 | "notification-url": "https://packagist.org/downloads/", |
796 | "license": [ | 857 | "license": [ |
797 | "MIT" | 858 | "MIT" |
798 | ], | 859 | ], |
799 | "description": "Effortlessly build TALL-powered forms.", | 860 | "description": "Effortlessly build TALL-powered forms.", |
800 | "homepage": "https://github.com/filamentphp/filament", | 861 | "homepage": "https://github.com/filamentphp/filament", |
801 | "support": { | 862 | "support": { |
802 | "issues": "https://github.com/filamentphp/filament/issues", | 863 | "issues": "https://github.com/filamentphp/filament/issues", |
803 | "source": "https://github.com/filamentphp/filament" | 864 | "source": "https://github.com/filamentphp/filament" |
804 | }, | 865 | }, |
805 | "time": "2023-05-13T18:44:56+00:00" | 866 | "time": "2023-05-13T18:44:56+00:00" |
806 | }, | 867 | }, |
807 | { | 868 | { |
808 | "name": "filament/notifications", | 869 | "name": "filament/notifications", |
809 | "version": "v2.17.40", | 870 | "version": "v2.17.40", |
810 | "source": { | 871 | "source": { |
811 | "type": "git", | 872 | "type": "git", |
812 | "url": "https://github.com/filamentphp/notifications.git", | 873 | "url": "https://github.com/filamentphp/notifications.git", |
813 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252" | 874 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252" |
814 | }, | 875 | }, |
815 | "dist": { | 876 | "dist": { |
816 | "type": "zip", | 877 | "type": "zip", |
817 | "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", | 878 | "url": "https://api.github.com/repos/filamentphp/notifications/zipball/0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", |
818 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", | 879 | "reference": "0ef9f1f3481a08f357b8e78bcb4bbcd8111a1252", |
819 | "shasum": "" | 880 | "shasum": "" |
820 | }, | 881 | }, |
821 | "require": { | 882 | "require": { |
822 | "blade-ui-kit/blade-heroicons": "^1.2", | 883 | "blade-ui-kit/blade-heroicons": "^1.2", |
823 | "filament/support": "self.version", | 884 | "filament/support": "self.version", |
824 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 885 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
825 | "illuminate/filesystem": "^8.6|^9.0|^10.0", | 886 | "illuminate/filesystem": "^8.6|^9.0|^10.0", |
826 | "illuminate/notifications": "^8.6|^9.0|^10.0", | 887 | "illuminate/notifications": "^8.6|^9.0|^10.0", |
827 | "illuminate/support": "^8.6|^9.0|^10.0", | 888 | "illuminate/support": "^8.6|^9.0|^10.0", |
828 | "livewire/livewire": "^2.10.7", | 889 | "livewire/livewire": "^2.10.7", |
829 | "php": "^8.0", | 890 | "php": "^8.0", |
830 | "spatie/laravel-package-tools": "^1.9" | 891 | "spatie/laravel-package-tools": "^1.9" |
831 | }, | 892 | }, |
832 | "type": "library", | 893 | "type": "library", |
833 | "extra": { | 894 | "extra": { |
834 | "laravel": { | 895 | "laravel": { |
835 | "providers": [ | 896 | "providers": [ |
836 | "Filament\\Notifications\\NotificationsServiceProvider" | 897 | "Filament\\Notifications\\NotificationsServiceProvider" |
837 | ] | 898 | ] |
838 | } | 899 | } |
839 | }, | 900 | }, |
840 | "autoload": { | 901 | "autoload": { |
841 | "files": [ | 902 | "files": [ |
842 | "src/Testing/Autoload.php" | 903 | "src/Testing/Autoload.php" |
843 | ], | 904 | ], |
844 | "psr-4": { | 905 | "psr-4": { |
845 | "Filament\\Notifications\\": "src" | 906 | "Filament\\Notifications\\": "src" |
846 | } | 907 | } |
847 | }, | 908 | }, |
848 | "notification-url": "https://packagist.org/downloads/", | 909 | "notification-url": "https://packagist.org/downloads/", |
849 | "license": [ | 910 | "license": [ |
850 | "MIT" | 911 | "MIT" |
851 | ], | 912 | ], |
852 | "description": "Effortlessly build TALL-powered notifications.", | 913 | "description": "Effortlessly build TALL-powered notifications.", |
853 | "homepage": "https://github.com/filamentphp/filament", | 914 | "homepage": "https://github.com/filamentphp/filament", |
854 | "support": { | 915 | "support": { |
855 | "issues": "https://github.com/filamentphp/filament/issues", | 916 | "issues": "https://github.com/filamentphp/filament/issues", |
856 | "source": "https://github.com/filamentphp/filament" | 917 | "source": "https://github.com/filamentphp/filament" |
857 | }, | 918 | }, |
858 | "time": "2023-05-04T23:08:09+00:00" | 919 | "time": "2023-05-04T23:08:09+00:00" |
859 | }, | 920 | }, |
860 | { | 921 | { |
861 | "name": "filament/support", | 922 | "name": "filament/support", |
862 | "version": "v2.17.40", | 923 | "version": "v2.17.40", |
863 | "source": { | 924 | "source": { |
864 | "type": "git", | 925 | "type": "git", |
865 | "url": "https://github.com/filamentphp/support.git", | 926 | "url": "https://github.com/filamentphp/support.git", |
866 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308" | 927 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308" |
867 | }, | 928 | }, |
868 | "dist": { | 929 | "dist": { |
869 | "type": "zip", | 930 | "type": "zip", |
870 | "url": "https://api.github.com/repos/filamentphp/support/zipball/e75e02a76edd959304cdbea7815586b720f8d308", | 931 | "url": "https://api.github.com/repos/filamentphp/support/zipball/e75e02a76edd959304cdbea7815586b720f8d308", |
871 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308", | 932 | "reference": "e75e02a76edd959304cdbea7815586b720f8d308", |
872 | "shasum": "" | 933 | "shasum": "" |
873 | }, | 934 | }, |
874 | "require": { | 935 | "require": { |
875 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 936 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
876 | "illuminate/support": "^8.6|^9.0|^10.0", | 937 | "illuminate/support": "^8.6|^9.0|^10.0", |
877 | "illuminate/view": "^8.6|^9.0|^10.0", | 938 | "illuminate/view": "^8.6|^9.0|^10.0", |
878 | "php": "^8.0", | 939 | "php": "^8.0", |
879 | "spatie/laravel-package-tools": "^1.9", | 940 | "spatie/laravel-package-tools": "^1.9", |
880 | "tgalopin/html-sanitizer": "^1.5" | 941 | "tgalopin/html-sanitizer": "^1.5" |
881 | }, | 942 | }, |
882 | "type": "library", | 943 | "type": "library", |
883 | "extra": { | 944 | "extra": { |
884 | "laravel": { | 945 | "laravel": { |
885 | "providers": [ | 946 | "providers": [ |
886 | "Filament\\Support\\SupportServiceProvider" | 947 | "Filament\\Support\\SupportServiceProvider" |
887 | ] | 948 | ] |
888 | } | 949 | } |
889 | }, | 950 | }, |
890 | "autoload": { | 951 | "autoload": { |
891 | "files": [ | 952 | "files": [ |
892 | "src/helpers.php" | 953 | "src/helpers.php" |
893 | ], | 954 | ], |
894 | "psr-4": { | 955 | "psr-4": { |
895 | "Filament\\Support\\": "src" | 956 | "Filament\\Support\\": "src" |
896 | } | 957 | } |
897 | }, | 958 | }, |
898 | "notification-url": "https://packagist.org/downloads/", | 959 | "notification-url": "https://packagist.org/downloads/", |
899 | "license": [ | 960 | "license": [ |
900 | "MIT" | 961 | "MIT" |
901 | ], | 962 | ], |
902 | "description": "Associated helper methods and foundation code for Filament packages.", | 963 | "description": "Associated helper methods and foundation code for Filament packages.", |
903 | "homepage": "https://github.com/filamentphp/filament", | 964 | "homepage": "https://github.com/filamentphp/filament", |
904 | "support": { | 965 | "support": { |
905 | "issues": "https://github.com/filamentphp/filament/issues", | 966 | "issues": "https://github.com/filamentphp/filament/issues", |
906 | "source": "https://github.com/filamentphp/filament" | 967 | "source": "https://github.com/filamentphp/filament" |
907 | }, | 968 | }, |
908 | "time": "2023-05-13T07:21:02+00:00" | 969 | "time": "2023-05-13T07:21:02+00:00" |
909 | }, | 970 | }, |
910 | { | 971 | { |
911 | "name": "filament/tables", | 972 | "name": "filament/tables", |
912 | "version": "v2.17.40", | 973 | "version": "v2.17.40", |
913 | "source": { | 974 | "source": { |
914 | "type": "git", | 975 | "type": "git", |
915 | "url": "https://github.com/filamentphp/tables.git", | 976 | "url": "https://github.com/filamentphp/tables.git", |
916 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6" | 977 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6" |
917 | }, | 978 | }, |
918 | "dist": { | 979 | "dist": { |
919 | "type": "zip", | 980 | "type": "zip", |
920 | "url": "https://api.github.com/repos/filamentphp/tables/zipball/7389f819d057262642295a22fb7d26e92e0b2ab6", | 981 | "url": "https://api.github.com/repos/filamentphp/tables/zipball/7389f819d057262642295a22fb7d26e92e0b2ab6", |
921 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6", | 982 | "reference": "7389f819d057262642295a22fb7d26e92e0b2ab6", |
922 | "shasum": "" | 983 | "shasum": "" |
923 | }, | 984 | }, |
924 | "require": { | 985 | "require": { |
925 | "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0", | 986 | "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0", |
926 | "blade-ui-kit/blade-heroicons": "^1.2", | 987 | "blade-ui-kit/blade-heroicons": "^1.2", |
927 | "filament/forms": "self.version", | 988 | "filament/forms": "self.version", |
928 | "filament/notifications": "self.version", | 989 | "filament/notifications": "self.version", |
929 | "filament/support": "self.version", | 990 | "filament/support": "self.version", |
930 | "illuminate/console": "^8.6|^9.0|^10.0", | 991 | "illuminate/console": "^8.6|^9.0|^10.0", |
931 | "illuminate/contracts": "^8.6|^9.0|^10.0", | 992 | "illuminate/contracts": "^8.6|^9.0|^10.0", |
932 | "illuminate/database": "^8.6|^9.0|^10.0", | 993 | "illuminate/database": "^8.6|^9.0|^10.0", |
933 | "illuminate/filesystem": "^8.6|^9.0|^10.0", | 994 | "illuminate/filesystem": "^8.6|^9.0|^10.0", |
934 | "illuminate/support": "^8.6|^9.0|^10.0", | 995 | "illuminate/support": "^8.6|^9.0|^10.0", |
935 | "illuminate/view": "^8.6|^9.0|^10.0", | 996 | "illuminate/view": "^8.6|^9.0|^10.0", |
936 | "livewire/livewire": "^2.10.7", | 997 | "livewire/livewire": "^2.10.7", |
937 | "php": "^8.0", | 998 | "php": "^8.0", |
938 | "spatie/invade": "^1.0", | 999 | "spatie/invade": "^1.0", |
939 | "spatie/laravel-package-tools": "^1.9" | 1000 | "spatie/laravel-package-tools": "^1.9" |
940 | }, | 1001 | }, |
941 | "type": "library", | 1002 | "type": "library", |
942 | "extra": { | 1003 | "extra": { |
943 | "laravel": { | 1004 | "laravel": { |
944 | "providers": [ | 1005 | "providers": [ |
945 | "Filament\\Tables\\TablesServiceProvider" | 1006 | "Filament\\Tables\\TablesServiceProvider" |
946 | ] | 1007 | ] |
947 | } | 1008 | } |
948 | }, | 1009 | }, |
949 | "autoload": { | 1010 | "autoload": { |
950 | "psr-4": { | 1011 | "psr-4": { |
951 | "Filament\\Tables\\": "src" | 1012 | "Filament\\Tables\\": "src" |
952 | } | 1013 | } |
953 | }, | 1014 | }, |
954 | "notification-url": "https://packagist.org/downloads/", | 1015 | "notification-url": "https://packagist.org/downloads/", |
955 | "license": [ | 1016 | "license": [ |
956 | "MIT" | 1017 | "MIT" |
957 | ], | 1018 | ], |
958 | "description": "Effortlessly build TALL-powered tables.", | 1019 | "description": "Effortlessly build TALL-powered tables.", |
959 | "homepage": "https://github.com/filamentphp/filament", | 1020 | "homepage": "https://github.com/filamentphp/filament", |
960 | "support": { | 1021 | "support": { |
961 | "issues": "https://github.com/filamentphp/filament/issues", | 1022 | "issues": "https://github.com/filamentphp/filament/issues", |
962 | "source": "https://github.com/filamentphp/filament" | 1023 | "source": "https://github.com/filamentphp/filament" |
963 | }, | 1024 | }, |
964 | "time": "2023-05-13T07:21:08+00:00" | 1025 | "time": "2023-05-13T07:21:08+00:00" |
965 | }, | 1026 | }, |
966 | { | 1027 | { |
967 | "name": "fruitcake/php-cors", | 1028 | "name": "fruitcake/php-cors", |
968 | "version": "v1.2.0", | 1029 | "version": "v1.2.0", |
969 | "source": { | 1030 | "source": { |
970 | "type": "git", | 1031 | "type": "git", |
971 | "url": "https://github.com/fruitcake/php-cors.git", | 1032 | "url": "https://github.com/fruitcake/php-cors.git", |
972 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" | 1033 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e" |
973 | }, | 1034 | }, |
974 | "dist": { | 1035 | "dist": { |
975 | "type": "zip", | 1036 | "type": "zip", |
976 | "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", | 1037 | "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e", |
977 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", | 1038 | "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e", |
978 | "shasum": "" | 1039 | "shasum": "" |
979 | }, | 1040 | }, |
980 | "require": { | 1041 | "require": { |
981 | "php": "^7.4|^8.0", | 1042 | "php": "^7.4|^8.0", |
982 | "symfony/http-foundation": "^4.4|^5.4|^6" | 1043 | "symfony/http-foundation": "^4.4|^5.4|^6" |
983 | }, | 1044 | }, |
984 | "require-dev": { | 1045 | "require-dev": { |
985 | "phpstan/phpstan": "^1.4", | 1046 | "phpstan/phpstan": "^1.4", |
986 | "phpunit/phpunit": "^9", | 1047 | "phpunit/phpunit": "^9", |
987 | "squizlabs/php_codesniffer": "^3.5" | 1048 | "squizlabs/php_codesniffer": "^3.5" |
988 | }, | 1049 | }, |
989 | "type": "library", | 1050 | "type": "library", |
990 | "extra": { | 1051 | "extra": { |
991 | "branch-alias": { | 1052 | "branch-alias": { |
992 | "dev-main": "1.1-dev" | 1053 | "dev-main": "1.1-dev" |
993 | } | 1054 | } |
994 | }, | 1055 | }, |
995 | "autoload": { | 1056 | "autoload": { |
996 | "psr-4": { | 1057 | "psr-4": { |
997 | "Fruitcake\\Cors\\": "src/" | 1058 | "Fruitcake\\Cors\\": "src/" |
998 | } | 1059 | } |
999 | }, | 1060 | }, |
1000 | "notification-url": "https://packagist.org/downloads/", | 1061 | "notification-url": "https://packagist.org/downloads/", |
1001 | "license": [ | 1062 | "license": [ |
1002 | "MIT" | 1063 | "MIT" |
1003 | ], | 1064 | ], |
1004 | "authors": [ | 1065 | "authors": [ |
1005 | { | 1066 | { |
1006 | "name": "Fruitcake", | 1067 | "name": "Fruitcake", |
1007 | "homepage": "https://fruitcake.nl" | 1068 | "homepage": "https://fruitcake.nl" |
1008 | }, | 1069 | }, |
1009 | { | 1070 | { |
1010 | "name": "Barryvdh", | 1071 | "name": "Barryvdh", |
1011 | "email": "barryvdh@gmail.com" | 1072 | "email": "barryvdh@gmail.com" |
1012 | } | 1073 | } |
1013 | ], | 1074 | ], |
1014 | "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", | 1075 | "description": "Cross-origin resource sharing library for the Symfony HttpFoundation", |
1015 | "homepage": "https://github.com/fruitcake/php-cors", | 1076 | "homepage": "https://github.com/fruitcake/php-cors", |
1016 | "keywords": [ | 1077 | "keywords": [ |
1017 | "cors", | 1078 | "cors", |
1018 | "laravel", | 1079 | "laravel", |
1019 | "symfony" | 1080 | "symfony" |
1020 | ], | 1081 | ], |
1021 | "support": { | 1082 | "support": { |
1022 | "issues": "https://github.com/fruitcake/php-cors/issues", | 1083 | "issues": "https://github.com/fruitcake/php-cors/issues", |
1023 | "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" | 1084 | "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0" |
1024 | }, | 1085 | }, |
1025 | "funding": [ | 1086 | "funding": [ |
1026 | { | 1087 | { |
1027 | "url": "https://fruitcake.nl", | 1088 | "url": "https://fruitcake.nl", |
1028 | "type": "custom" | 1089 | "type": "custom" |
1029 | }, | 1090 | }, |
1030 | { | 1091 | { |
1031 | "url": "https://github.com/barryvdh", | 1092 | "url": "https://github.com/barryvdh", |
1032 | "type": "github" | 1093 | "type": "github" |
1033 | } | 1094 | } |
1034 | ], | 1095 | ], |
1035 | "time": "2022-02-20T15:07:15+00:00" | 1096 | "time": "2022-02-20T15:07:15+00:00" |
1036 | }, | 1097 | }, |
1037 | { | 1098 | { |
1038 | "name": "graham-campbell/result-type", | 1099 | "name": "graham-campbell/result-type", |
1039 | "version": "v1.1.1", | 1100 | "version": "v1.1.1", |
1040 | "source": { | 1101 | "source": { |
1041 | "type": "git", | 1102 | "type": "git", |
1042 | "url": "https://github.com/GrahamCampbell/Result-Type.git", | 1103 | "url": "https://github.com/GrahamCampbell/Result-Type.git", |
1043 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" | 1104 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831" |
1044 | }, | 1105 | }, |
1045 | "dist": { | 1106 | "dist": { |
1046 | "type": "zip", | 1107 | "type": "zip", |
1047 | "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", | 1108 | "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", |
1048 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", | 1109 | "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831", |
1049 | "shasum": "" | 1110 | "shasum": "" |
1050 | }, | 1111 | }, |
1051 | "require": { | 1112 | "require": { |
1052 | "php": "^7.2.5 || ^8.0", | 1113 | "php": "^7.2.5 || ^8.0", |
1053 | "phpoption/phpoption": "^1.9.1" | 1114 | "phpoption/phpoption": "^1.9.1" |
1054 | }, | 1115 | }, |
1055 | "require-dev": { | 1116 | "require-dev": { |
1056 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" | 1117 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" |
1057 | }, | 1118 | }, |
1058 | "type": "library", | 1119 | "type": "library", |
1059 | "autoload": { | 1120 | "autoload": { |
1060 | "psr-4": { | 1121 | "psr-4": { |
1061 | "GrahamCampbell\\ResultType\\": "src/" | 1122 | "GrahamCampbell\\ResultType\\": "src/" |
1062 | } | 1123 | } |
1063 | }, | 1124 | }, |
1064 | "notification-url": "https://packagist.org/downloads/", | 1125 | "notification-url": "https://packagist.org/downloads/", |
1065 | "license": [ | 1126 | "license": [ |
1066 | "MIT" | 1127 | "MIT" |
1067 | ], | 1128 | ], |
1068 | "authors": [ | 1129 | "authors": [ |
1069 | { | 1130 | { |
1070 | "name": "Graham Campbell", | 1131 | "name": "Graham Campbell", |
1071 | "email": "hello@gjcampbell.co.uk", | 1132 | "email": "hello@gjcampbell.co.uk", |
1072 | "homepage": "https://github.com/GrahamCampbell" | 1133 | "homepage": "https://github.com/GrahamCampbell" |
1073 | } | 1134 | } |
1074 | ], | 1135 | ], |
1075 | "description": "An Implementation Of The Result Type", | 1136 | "description": "An Implementation Of The Result Type", |
1076 | "keywords": [ | 1137 | "keywords": [ |
1077 | "Graham Campbell", | 1138 | "Graham Campbell", |
1078 | "GrahamCampbell", | 1139 | "GrahamCampbell", |
1079 | "Result Type", | 1140 | "Result Type", |
1080 | "Result-Type", | 1141 | "Result-Type", |
1081 | "result" | 1142 | "result" |
1082 | ], | 1143 | ], |
1083 | "support": { | 1144 | "support": { |
1084 | "issues": "https://github.com/GrahamCampbell/Result-Type/issues", | 1145 | "issues": "https://github.com/GrahamCampbell/Result-Type/issues", |
1085 | "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" | 1146 | "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1" |
1086 | }, | 1147 | }, |
1087 | "funding": [ | 1148 | "funding": [ |
1088 | { | 1149 | { |
1089 | "url": "https://github.com/GrahamCampbell", | 1150 | "url": "https://github.com/GrahamCampbell", |
1090 | "type": "github" | 1151 | "type": "github" |
1091 | }, | 1152 | }, |
1092 | { | 1153 | { |
1093 | "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", | 1154 | "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", |
1094 | "type": "tidelift" | 1155 | "type": "tidelift" |
1095 | } | 1156 | } |
1096 | ], | 1157 | ], |
1097 | "time": "2023-02-25T20:23:15+00:00" | 1158 | "time": "2023-02-25T20:23:15+00:00" |
1098 | }, | 1159 | }, |
1099 | { | 1160 | { |
1100 | "name": "guzzlehttp/guzzle", | 1161 | "name": "guzzlehttp/guzzle", |
1101 | "version": "7.6.0", | 1162 | "version": "7.6.0", |
1102 | "source": { | 1163 | "source": { |
1103 | "type": "git", | 1164 | "type": "git", |
1104 | "url": "https://github.com/guzzle/guzzle.git", | 1165 | "url": "https://github.com/guzzle/guzzle.git", |
1105 | "reference": "733dd89533dd371a0987172727df15f500dab0ef" | 1166 | "reference": "733dd89533dd371a0987172727df15f500dab0ef" |
1106 | }, | 1167 | }, |
1107 | "dist": { | 1168 | "dist": { |
1108 | "type": "zip", | 1169 | "type": "zip", |
1109 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/733dd89533dd371a0987172727df15f500dab0ef", | 1170 | "url": "https://api.github.com/repos/guzzle/guzzle/zipball/733dd89533dd371a0987172727df15f500dab0ef", |
1110 | "reference": "733dd89533dd371a0987172727df15f500dab0ef", | 1171 | "reference": "733dd89533dd371a0987172727df15f500dab0ef", |
1111 | "shasum": "" | 1172 | "shasum": "" |
1112 | }, | 1173 | }, |
1113 | "require": { | 1174 | "require": { |
1114 | "ext-json": "*", | 1175 | "ext-json": "*", |
1115 | "guzzlehttp/promises": "^1.5", | 1176 | "guzzlehttp/promises": "^1.5", |
1116 | "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", | 1177 | "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", |
1117 | "php": "^7.2.5 || ^8.0", | 1178 | "php": "^7.2.5 || ^8.0", |
1118 | "psr/http-client": "^1.0", | 1179 | "psr/http-client": "^1.0", |
1119 | "symfony/deprecation-contracts": "^2.2 || ^3.0" | 1180 | "symfony/deprecation-contracts": "^2.2 || ^3.0" |
1120 | }, | 1181 | }, |
1121 | "provide": { | 1182 | "provide": { |
1122 | "psr/http-client-implementation": "1.0" | 1183 | "psr/http-client-implementation": "1.0" |
1123 | }, | 1184 | }, |
1124 | "require-dev": { | 1185 | "require-dev": { |
1125 | "bamarni/composer-bin-plugin": "^1.8.1", | 1186 | "bamarni/composer-bin-plugin": "^1.8.1", |
1126 | "ext-curl": "*", | 1187 | "ext-curl": "*", |
1127 | "php-http/client-integration-tests": "^3.0", | 1188 | "php-http/client-integration-tests": "^3.0", |
1128 | "phpunit/phpunit": "^8.5.29 || ^9.5.23", | 1189 | "phpunit/phpunit": "^8.5.29 || ^9.5.23", |
1129 | "psr/log": "^1.1 || ^2.0 || ^3.0" | 1190 | "psr/log": "^1.1 || ^2.0 || ^3.0" |
1130 | }, | 1191 | }, |
1131 | "suggest": { | 1192 | "suggest": { |
1132 | "ext-curl": "Required for CURL handler support", | 1193 | "ext-curl": "Required for CURL handler support", |
1133 | "ext-intl": "Required for Internationalized Domain Name (IDN) support", | 1194 | "ext-intl": "Required for Internationalized Domain Name (IDN) support", |
1134 | "psr/log": "Required for using the Log middleware" | 1195 | "psr/log": "Required for using the Log middleware" |
1135 | }, | 1196 | }, |
1136 | "type": "library", | 1197 | "type": "library", |
1137 | "extra": { | 1198 | "extra": { |
1138 | "bamarni-bin": { | 1199 | "bamarni-bin": { |
1139 | "bin-links": true, | 1200 | "bin-links": true, |
1140 | "forward-command": false | 1201 | "forward-command": false |
1141 | } | 1202 | } |
1142 | }, | 1203 | }, |
1143 | "autoload": { | 1204 | "autoload": { |
1144 | "files": [ | 1205 | "files": [ |
1145 | "src/functions_include.php" | 1206 | "src/functions_include.php" |
1146 | ], | 1207 | ], |
1147 | "psr-4": { | 1208 | "psr-4": { |
1148 | "GuzzleHttp\\": "src/" | 1209 | "GuzzleHttp\\": "src/" |
1149 | } | 1210 | } |
1150 | }, | 1211 | }, |
1151 | "notification-url": "https://packagist.org/downloads/", | 1212 | "notification-url": "https://packagist.org/downloads/", |
1152 | "license": [ | 1213 | "license": [ |
1153 | "MIT" | 1214 | "MIT" |
1154 | ], | 1215 | ], |
1155 | "authors": [ | 1216 | "authors": [ |
1156 | { | 1217 | { |
1157 | "name": "Graham Campbell", | 1218 | "name": "Graham Campbell", |
1158 | "email": "hello@gjcampbell.co.uk", | 1219 | "email": "hello@gjcampbell.co.uk", |
1159 | "homepage": "https://github.com/GrahamCampbell" | 1220 | "homepage": "https://github.com/GrahamCampbell" |
1160 | }, | 1221 | }, |
1161 | { | 1222 | { |
1162 | "name": "Michael Dowling", | 1223 | "name": "Michael Dowling", |
1163 | "email": "mtdowling@gmail.com", | 1224 | "email": "mtdowling@gmail.com", |
1164 | "homepage": "https://github.com/mtdowling" | 1225 | "homepage": "https://github.com/mtdowling" |
1165 | }, | 1226 | }, |
1166 | { | 1227 | { |
1167 | "name": "Jeremy Lindblom", | 1228 | "name": "Jeremy Lindblom", |
1168 | "email": "jeremeamia@gmail.com", | 1229 | "email": "jeremeamia@gmail.com", |
1169 | "homepage": "https://github.com/jeremeamia" | 1230 | "homepage": "https://github.com/jeremeamia" |
1170 | }, | 1231 | }, |
1171 | { | 1232 | { |
1172 | "name": "George Mponos", | 1233 | "name": "George Mponos", |
1173 | "email": "gmponos@gmail.com", | 1234 | "email": "gmponos@gmail.com", |
1174 | "homepage": "https://github.com/gmponos" | 1235 | "homepage": "https://github.com/gmponos" |
1175 | }, | 1236 | }, |
1176 | { | 1237 | { |
1177 | "name": "Tobias Nyholm", | 1238 | "name": "Tobias Nyholm", |
1178 | "email": "tobias.nyholm@gmail.com", | 1239 | "email": "tobias.nyholm@gmail.com", |
1179 | "homepage": "https://github.com/Nyholm" | 1240 | "homepage": "https://github.com/Nyholm" |
1180 | }, | 1241 | }, |
1181 | { | 1242 | { |
1182 | "name": "Márk Sági-Kazár", | 1243 | "name": "Márk Sági-Kazár", |
1183 | "email": "mark.sagikazar@gmail.com", | 1244 | "email": "mark.sagikazar@gmail.com", |
1184 | "homepage": "https://github.com/sagikazarmark" | 1245 | "homepage": "https://github.com/sagikazarmark" |
1185 | }, | 1246 | }, |
1186 | { | 1247 | { |
1187 | "name": "Tobias Schultze", | 1248 | "name": "Tobias Schultze", |
1188 | "email": "webmaster@tubo-world.de", | 1249 | "email": "webmaster@tubo-world.de", |
1189 | "homepage": "https://github.com/Tobion" | 1250 | "homepage": "https://github.com/Tobion" |
1190 | } | 1251 | } |
1191 | ], | 1252 | ], |
1192 | "description": "Guzzle is a PHP HTTP client library", | 1253 | "description": "Guzzle is a PHP HTTP client library", |
1193 | "keywords": [ | 1254 | "keywords": [ |
1194 | "client", | 1255 | "client", |
1195 | "curl", | 1256 | "curl", |
1196 | "framework", | 1257 | "framework", |
1197 | "http", | 1258 | "http", |
1198 | "http client", | 1259 | "http client", |
1199 | "psr-18", | 1260 | "psr-18", |
1200 | "psr-7", | 1261 | "psr-7", |
1201 | "rest", | 1262 | "rest", |
1202 | "web service" | 1263 | "web service" |
1203 | ], | 1264 | ], |
1204 | "support": { | 1265 | "support": { |
1205 | "issues": "https://github.com/guzzle/guzzle/issues", | 1266 | "issues": "https://github.com/guzzle/guzzle/issues", |
1206 | "source": "https://github.com/guzzle/guzzle/tree/7.6.0" | 1267 | "source": "https://github.com/guzzle/guzzle/tree/7.6.0" |
1207 | }, | 1268 | }, |
1208 | "funding": [ | 1269 | "funding": [ |
1209 | { | 1270 | { |
1210 | "url": "https://github.com/GrahamCampbell", | 1271 | "url": "https://github.com/GrahamCampbell", |
1211 | "type": "github" | 1272 | "type": "github" |
1212 | }, | 1273 | }, |
1213 | { | 1274 | { |
1214 | "url": "https://github.com/Nyholm", | 1275 | "url": "https://github.com/Nyholm", |
1215 | "type": "github" | 1276 | "type": "github" |
1216 | }, | 1277 | }, |
1217 | { | 1278 | { |
1218 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", | 1279 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", |
1219 | "type": "tidelift" | 1280 | "type": "tidelift" |
1220 | } | 1281 | } |
1221 | ], | 1282 | ], |
1222 | "time": "2023-05-14T11:23:39+00:00" | 1283 | "time": "2023-05-14T11:23:39+00:00" |
1223 | }, | 1284 | }, |
1224 | { | 1285 | { |
1225 | "name": "guzzlehttp/promises", | 1286 | "name": "guzzlehttp/promises", |
1226 | "version": "1.5.2", | 1287 | "version": "1.5.2", |
1227 | "source": { | 1288 | "source": { |
1228 | "type": "git", | 1289 | "type": "git", |
1229 | "url": "https://github.com/guzzle/promises.git", | 1290 | "url": "https://github.com/guzzle/promises.git", |
1230 | "reference": "b94b2807d85443f9719887892882d0329d1e2598" | 1291 | "reference": "b94b2807d85443f9719887892882d0329d1e2598" |
1231 | }, | 1292 | }, |
1232 | "dist": { | 1293 | "dist": { |
1233 | "type": "zip", | 1294 | "type": "zip", |
1234 | "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", | 1295 | "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", |
1235 | "reference": "b94b2807d85443f9719887892882d0329d1e2598", | 1296 | "reference": "b94b2807d85443f9719887892882d0329d1e2598", |
1236 | "shasum": "" | 1297 | "shasum": "" |
1237 | }, | 1298 | }, |
1238 | "require": { | 1299 | "require": { |
1239 | "php": ">=5.5" | 1300 | "php": ">=5.5" |
1240 | }, | 1301 | }, |
1241 | "require-dev": { | 1302 | "require-dev": { |
1242 | "symfony/phpunit-bridge": "^4.4 || ^5.1" | 1303 | "symfony/phpunit-bridge": "^4.4 || ^5.1" |
1243 | }, | 1304 | }, |
1244 | "type": "library", | 1305 | "type": "library", |
1245 | "extra": { | 1306 | "extra": { |
1246 | "branch-alias": { | 1307 | "branch-alias": { |
1247 | "dev-master": "1.5-dev" | 1308 | "dev-master": "1.5-dev" |
1248 | } | 1309 | } |
1249 | }, | 1310 | }, |
1250 | "autoload": { | 1311 | "autoload": { |
1251 | "files": [ | 1312 | "files": [ |
1252 | "src/functions_include.php" | 1313 | "src/functions_include.php" |
1253 | ], | 1314 | ], |
1254 | "psr-4": { | 1315 | "psr-4": { |
1255 | "GuzzleHttp\\Promise\\": "src/" | 1316 | "GuzzleHttp\\Promise\\": "src/" |
1256 | } | 1317 | } |
1257 | }, | 1318 | }, |
1258 | "notification-url": "https://packagist.org/downloads/", | 1319 | "notification-url": "https://packagist.org/downloads/", |
1259 | "license": [ | 1320 | "license": [ |
1260 | "MIT" | 1321 | "MIT" |
1261 | ], | 1322 | ], |
1262 | "authors": [ | 1323 | "authors": [ |
1263 | { | 1324 | { |
1264 | "name": "Graham Campbell", | 1325 | "name": "Graham Campbell", |
1265 | "email": "hello@gjcampbell.co.uk", | 1326 | "email": "hello@gjcampbell.co.uk", |
1266 | "homepage": "https://github.com/GrahamCampbell" | 1327 | "homepage": "https://github.com/GrahamCampbell" |
1267 | }, | 1328 | }, |
1268 | { | 1329 | { |
1269 | "name": "Michael Dowling", | 1330 | "name": "Michael Dowling", |
1270 | "email": "mtdowling@gmail.com", | 1331 | "email": "mtdowling@gmail.com", |
1271 | "homepage": "https://github.com/mtdowling" | 1332 | "homepage": "https://github.com/mtdowling" |
1272 | }, | 1333 | }, |
1273 | { | 1334 | { |
1274 | "name": "Tobias Nyholm", | 1335 | "name": "Tobias Nyholm", |
1275 | "email": "tobias.nyholm@gmail.com", | 1336 | "email": "tobias.nyholm@gmail.com", |
1276 | "homepage": "https://github.com/Nyholm" | 1337 | "homepage": "https://github.com/Nyholm" |
1277 | }, | 1338 | }, |
1278 | { | 1339 | { |
1279 | "name": "Tobias Schultze", | 1340 | "name": "Tobias Schultze", |
1280 | "email": "webmaster@tubo-world.de", | 1341 | "email": "webmaster@tubo-world.de", |
1281 | "homepage": "https://github.com/Tobion" | 1342 | "homepage": "https://github.com/Tobion" |
1282 | } | 1343 | } |
1283 | ], | 1344 | ], |
1284 | "description": "Guzzle promises library", | 1345 | "description": "Guzzle promises library", |
1285 | "keywords": [ | 1346 | "keywords": [ |
1286 | "promise" | 1347 | "promise" |
1287 | ], | 1348 | ], |
1288 | "support": { | 1349 | "support": { |
1289 | "issues": "https://github.com/guzzle/promises/issues", | 1350 | "issues": "https://github.com/guzzle/promises/issues", |
1290 | "source": "https://github.com/guzzle/promises/tree/1.5.2" | 1351 | "source": "https://github.com/guzzle/promises/tree/1.5.2" |
1291 | }, | 1352 | }, |
1292 | "funding": [ | 1353 | "funding": [ |
1293 | { | 1354 | { |
1294 | "url": "https://github.com/GrahamCampbell", | 1355 | "url": "https://github.com/GrahamCampbell", |
1295 | "type": "github" | 1356 | "type": "github" |
1296 | }, | 1357 | }, |
1297 | { | 1358 | { |
1298 | "url": "https://github.com/Nyholm", | 1359 | "url": "https://github.com/Nyholm", |
1299 | "type": "github" | 1360 | "type": "github" |
1300 | }, | 1361 | }, |
1301 | { | 1362 | { |
1302 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", | 1363 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", |
1303 | "type": "tidelift" | 1364 | "type": "tidelift" |
1304 | } | 1365 | } |
1305 | ], | 1366 | ], |
1306 | "time": "2022-08-28T14:55:35+00:00" | 1367 | "time": "2022-08-28T14:55:35+00:00" |
1307 | }, | 1368 | }, |
1308 | { | 1369 | { |
1309 | "name": "guzzlehttp/psr7", | 1370 | "name": "guzzlehttp/psr7", |
1310 | "version": "2.5.0", | 1371 | "version": "2.5.0", |
1311 | "source": { | 1372 | "source": { |
1312 | "type": "git", | 1373 | "type": "git", |
1313 | "url": "https://github.com/guzzle/psr7.git", | 1374 | "url": "https://github.com/guzzle/psr7.git", |
1314 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6" | 1375 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6" |
1315 | }, | 1376 | }, |
1316 | "dist": { | 1377 | "dist": { |
1317 | "type": "zip", | 1378 | "type": "zip", |
1318 | "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6", | 1379 | "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6", |
1319 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6", | 1380 | "reference": "b635f279edd83fc275f822a1188157ffea568ff6", |
1320 | "shasum": "" | 1381 | "shasum": "" |
1321 | }, | 1382 | }, |
1322 | "require": { | 1383 | "require": { |
1323 | "php": "^7.2.5 || ^8.0", | 1384 | "php": "^7.2.5 || ^8.0", |
1324 | "psr/http-factory": "^1.0", | 1385 | "psr/http-factory": "^1.0", |
1325 | "psr/http-message": "^1.1 || ^2.0", | 1386 | "psr/http-message": "^1.1 || ^2.0", |
1326 | "ralouphie/getallheaders": "^3.0" | 1387 | "ralouphie/getallheaders": "^3.0" |
1327 | }, | 1388 | }, |
1328 | "provide": { | 1389 | "provide": { |
1329 | "psr/http-factory-implementation": "1.0", | 1390 | "psr/http-factory-implementation": "1.0", |
1330 | "psr/http-message-implementation": "1.0" | 1391 | "psr/http-message-implementation": "1.0" |
1331 | }, | 1392 | }, |
1332 | "require-dev": { | 1393 | "require-dev": { |
1333 | "bamarni/composer-bin-plugin": "^1.8.1", | 1394 | "bamarni/composer-bin-plugin": "^1.8.1", |
1334 | "http-interop/http-factory-tests": "^0.9", | 1395 | "http-interop/http-factory-tests": "^0.9", |
1335 | "phpunit/phpunit": "^8.5.29 || ^9.5.23" | 1396 | "phpunit/phpunit": "^8.5.29 || ^9.5.23" |
1336 | }, | 1397 | }, |
1337 | "suggest": { | 1398 | "suggest": { |
1338 | "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" | 1399 | "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" |
1339 | }, | 1400 | }, |
1340 | "type": "library", | 1401 | "type": "library", |
1341 | "extra": { | 1402 | "extra": { |
1342 | "bamarni-bin": { | 1403 | "bamarni-bin": { |
1343 | "bin-links": true, | 1404 | "bin-links": true, |
1344 | "forward-command": false | 1405 | "forward-command": false |
1345 | } | 1406 | } |
1346 | }, | 1407 | }, |
1347 | "autoload": { | 1408 | "autoload": { |
1348 | "psr-4": { | 1409 | "psr-4": { |
1349 | "GuzzleHttp\\Psr7\\": "src/" | 1410 | "GuzzleHttp\\Psr7\\": "src/" |
1350 | } | 1411 | } |
1351 | }, | 1412 | }, |
1352 | "notification-url": "https://packagist.org/downloads/", | 1413 | "notification-url": "https://packagist.org/downloads/", |
1353 | "license": [ | 1414 | "license": [ |
1354 | "MIT" | 1415 | "MIT" |
1355 | ], | 1416 | ], |
1356 | "authors": [ | 1417 | "authors": [ |
1357 | { | 1418 | { |
1358 | "name": "Graham Campbell", | 1419 | "name": "Graham Campbell", |
1359 | "email": "hello@gjcampbell.co.uk", | 1420 | "email": "hello@gjcampbell.co.uk", |
1360 | "homepage": "https://github.com/GrahamCampbell" | 1421 | "homepage": "https://github.com/GrahamCampbell" |
1361 | }, | 1422 | }, |
1362 | { | 1423 | { |
1363 | "name": "Michael Dowling", | 1424 | "name": "Michael Dowling", |
1364 | "email": "mtdowling@gmail.com", | 1425 | "email": "mtdowling@gmail.com", |
1365 | "homepage": "https://github.com/mtdowling" | 1426 | "homepage": "https://github.com/mtdowling" |
1366 | }, | 1427 | }, |
1367 | { | 1428 | { |
1368 | "name": "George Mponos", | 1429 | "name": "George Mponos", |
1369 | "email": "gmponos@gmail.com", | 1430 | "email": "gmponos@gmail.com", |
1370 | "homepage": "https://github.com/gmponos" | 1431 | "homepage": "https://github.com/gmponos" |
1371 | }, | 1432 | }, |
1372 | { | 1433 | { |
1373 | "name": "Tobias Nyholm", | 1434 | "name": "Tobias Nyholm", |
1374 | "email": "tobias.nyholm@gmail.com", | 1435 | "email": "tobias.nyholm@gmail.com", |
1375 | "homepage": "https://github.com/Nyholm" | 1436 | "homepage": "https://github.com/Nyholm" |
1376 | }, | 1437 | }, |
1377 | { | 1438 | { |
1378 | "name": "Márk Sági-Kazár", | 1439 | "name": "Márk Sági-Kazár", |
1379 | "email": "mark.sagikazar@gmail.com", | 1440 | "email": "mark.sagikazar@gmail.com", |
1380 | "homepage": "https://github.com/sagikazarmark" | 1441 | "homepage": "https://github.com/sagikazarmark" |
1381 | }, | 1442 | }, |
1382 | { | 1443 | { |
1383 | "name": "Tobias Schultze", | 1444 | "name": "Tobias Schultze", |
1384 | "email": "webmaster@tubo-world.de", | 1445 | "email": "webmaster@tubo-world.de", |
1385 | "homepage": "https://github.com/Tobion" | 1446 | "homepage": "https://github.com/Tobion" |
1386 | }, | 1447 | }, |
1387 | { | 1448 | { |
1388 | "name": "Márk Sági-Kazár", | 1449 | "name": "Márk Sági-Kazár", |
1389 | "email": "mark.sagikazar@gmail.com", | 1450 | "email": "mark.sagikazar@gmail.com", |
1390 | "homepage": "https://sagikazarmark.hu" | 1451 | "homepage": "https://sagikazarmark.hu" |
1391 | } | 1452 | } |
1392 | ], | 1453 | ], |
1393 | "description": "PSR-7 message implementation that also provides common utility methods", | 1454 | "description": "PSR-7 message implementation that also provides common utility methods", |
1394 | "keywords": [ | 1455 | "keywords": [ |
1395 | "http", | 1456 | "http", |
1396 | "message", | 1457 | "message", |
1397 | "psr-7", | 1458 | "psr-7", |
1398 | "request", | 1459 | "request", |
1399 | "response", | 1460 | "response", |
1400 | "stream", | 1461 | "stream", |
1401 | "uri", | 1462 | "uri", |
1402 | "url" | 1463 | "url" |
1403 | ], | 1464 | ], |
1404 | "support": { | 1465 | "support": { |
1405 | "issues": "https://github.com/guzzle/psr7/issues", | 1466 | "issues": "https://github.com/guzzle/psr7/issues", |
1406 | "source": "https://github.com/guzzle/psr7/tree/2.5.0" | 1467 | "source": "https://github.com/guzzle/psr7/tree/2.5.0" |
1407 | }, | 1468 | }, |
1408 | "funding": [ | 1469 | "funding": [ |
1409 | { | 1470 | { |
1410 | "url": "https://github.com/GrahamCampbell", | 1471 | "url": "https://github.com/GrahamCampbell", |
1411 | "type": "github" | 1472 | "type": "github" |
1412 | }, | 1473 | }, |
1413 | { | 1474 | { |
1414 | "url": "https://github.com/Nyholm", | 1475 | "url": "https://github.com/Nyholm", |
1415 | "type": "github" | 1476 | "type": "github" |
1416 | }, | 1477 | }, |
1417 | { | 1478 | { |
1418 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", | 1479 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", |
1419 | "type": "tidelift" | 1480 | "type": "tidelift" |
1420 | } | 1481 | } |
1421 | ], | 1482 | ], |
1422 | "time": "2023-04-17T16:11:26+00:00" | 1483 | "time": "2023-04-17T16:11:26+00:00" |
1423 | }, | 1484 | }, |
1424 | { | 1485 | { |
1425 | "name": "guzzlehttp/uri-template", | 1486 | "name": "guzzlehttp/uri-template", |
1426 | "version": "v1.0.1", | 1487 | "version": "v1.0.1", |
1427 | "source": { | 1488 | "source": { |
1428 | "type": "git", | 1489 | "type": "git", |
1429 | "url": "https://github.com/guzzle/uri-template.git", | 1490 | "url": "https://github.com/guzzle/uri-template.git", |
1430 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" | 1491 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" |
1431 | }, | 1492 | }, |
1432 | "dist": { | 1493 | "dist": { |
1433 | "type": "zip", | 1494 | "type": "zip", |
1434 | "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", | 1495 | "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", |
1435 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", | 1496 | "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", |
1436 | "shasum": "" | 1497 | "shasum": "" |
1437 | }, | 1498 | }, |
1438 | "require": { | 1499 | "require": { |
1439 | "php": "^7.2.5 || ^8.0", | 1500 | "php": "^7.2.5 || ^8.0", |
1440 | "symfony/polyfill-php80": "^1.17" | 1501 | "symfony/polyfill-php80": "^1.17" |
1441 | }, | 1502 | }, |
1442 | "require-dev": { | 1503 | "require-dev": { |
1443 | "phpunit/phpunit": "^8.5.19 || ^9.5.8", | 1504 | "phpunit/phpunit": "^8.5.19 || ^9.5.8", |
1444 | "uri-template/tests": "1.0.0" | 1505 | "uri-template/tests": "1.0.0" |
1445 | }, | 1506 | }, |
1446 | "type": "library", | 1507 | "type": "library", |
1447 | "extra": { | 1508 | "extra": { |
1448 | "branch-alias": { | 1509 | "branch-alias": { |
1449 | "dev-master": "1.0-dev" | 1510 | "dev-master": "1.0-dev" |
1450 | } | 1511 | } |
1451 | }, | 1512 | }, |
1452 | "autoload": { | 1513 | "autoload": { |
1453 | "psr-4": { | 1514 | "psr-4": { |
1454 | "GuzzleHttp\\UriTemplate\\": "src" | 1515 | "GuzzleHttp\\UriTemplate\\": "src" |
1455 | } | 1516 | } |
1456 | }, | 1517 | }, |
1457 | "notification-url": "https://packagist.org/downloads/", | 1518 | "notification-url": "https://packagist.org/downloads/", |
1458 | "license": [ | 1519 | "license": [ |
1459 | "MIT" | 1520 | "MIT" |
1460 | ], | 1521 | ], |
1461 | "authors": [ | 1522 | "authors": [ |
1462 | { | 1523 | { |
1463 | "name": "Graham Campbell", | 1524 | "name": "Graham Campbell", |
1464 | "email": "hello@gjcampbell.co.uk", | 1525 | "email": "hello@gjcampbell.co.uk", |
1465 | "homepage": "https://github.com/GrahamCampbell" | 1526 | "homepage": "https://github.com/GrahamCampbell" |
1466 | }, | 1527 | }, |
1467 | { | 1528 | { |
1468 | "name": "Michael Dowling", | 1529 | "name": "Michael Dowling", |
1469 | "email": "mtdowling@gmail.com", | 1530 | "email": "mtdowling@gmail.com", |
1470 | "homepage": "https://github.com/mtdowling" | 1531 | "homepage": "https://github.com/mtdowling" |
1471 | }, | 1532 | }, |
1472 | { | 1533 | { |
1473 | "name": "George Mponos", | 1534 | "name": "George Mponos", |
1474 | "email": "gmponos@gmail.com", | 1535 | "email": "gmponos@gmail.com", |
1475 | "homepage": "https://github.com/gmponos" | 1536 | "homepage": "https://github.com/gmponos" |
1476 | }, | 1537 | }, |
1477 | { | 1538 | { |
1478 | "name": "Tobias Nyholm", | 1539 | "name": "Tobias Nyholm", |
1479 | "email": "tobias.nyholm@gmail.com", | 1540 | "email": "tobias.nyholm@gmail.com", |
1480 | "homepage": "https://github.com/Nyholm" | 1541 | "homepage": "https://github.com/Nyholm" |
1481 | } | 1542 | } |
1482 | ], | 1543 | ], |
1483 | "description": "A polyfill class for uri_template of PHP", | 1544 | "description": "A polyfill class for uri_template of PHP", |
1484 | "keywords": [ | 1545 | "keywords": [ |
1485 | "guzzlehttp", | 1546 | "guzzlehttp", |
1486 | "uri-template" | 1547 | "uri-template" |
1487 | ], | 1548 | ], |
1488 | "support": { | 1549 | "support": { |
1489 | "issues": "https://github.com/guzzle/uri-template/issues", | 1550 | "issues": "https://github.com/guzzle/uri-template/issues", |
1490 | "source": "https://github.com/guzzle/uri-template/tree/v1.0.1" | 1551 | "source": "https://github.com/guzzle/uri-template/tree/v1.0.1" |
1491 | }, | 1552 | }, |
1492 | "funding": [ | 1553 | "funding": [ |
1493 | { | 1554 | { |
1494 | "url": "https://github.com/GrahamCampbell", | 1555 | "url": "https://github.com/GrahamCampbell", |
1495 | "type": "github" | 1556 | "type": "github" |
1496 | }, | 1557 | }, |
1497 | { | 1558 | { |
1498 | "url": "https://github.com/Nyholm", | 1559 | "url": "https://github.com/Nyholm", |
1499 | "type": "github" | 1560 | "type": "github" |
1500 | }, | 1561 | }, |
1501 | { | 1562 | { |
1502 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", | 1563 | "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template", |
1503 | "type": "tidelift" | 1564 | "type": "tidelift" |
1504 | } | 1565 | } |
1505 | ], | 1566 | ], |
1506 | "time": "2021-10-07T12:57:01+00:00" | 1567 | "time": "2021-10-07T12:57:01+00:00" |
1507 | }, | 1568 | }, |
1508 | { | 1569 | { |
1509 | "name": "laravel-lang/lang", | 1570 | "name": "laravel-lang/lang", |
1510 | "version": "12.17.1", | 1571 | "version": "12.17.1", |
1511 | "source": { | 1572 | "source": { |
1512 | "type": "git", | 1573 | "type": "git", |
1513 | "url": "https://github.com/Laravel-Lang/lang.git", | 1574 | "url": "https://github.com/Laravel-Lang/lang.git", |
1514 | "reference": "b07184103fb64131d514667b8fd1d74c71105409" | 1575 | "reference": "b07184103fb64131d514667b8fd1d74c71105409" |
1515 | }, | 1576 | }, |
1516 | "dist": { | 1577 | "dist": { |
1517 | "type": "zip", | 1578 | "type": "zip", |
1518 | "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/b07184103fb64131d514667b8fd1d74c71105409", | 1579 | "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/b07184103fb64131d514667b8fd1d74c71105409", |
1519 | "reference": "b07184103fb64131d514667b8fd1d74c71105409", | 1580 | "reference": "b07184103fb64131d514667b8fd1d74c71105409", |
1520 | "shasum": "" | 1581 | "shasum": "" |
1521 | }, | 1582 | }, |
1522 | "require": { | 1583 | "require": { |
1523 | "ext-json": "*" | 1584 | "ext-json": "*" |
1524 | }, | 1585 | }, |
1525 | "conflict": { | 1586 | "conflict": { |
1526 | "laravel-lang/publisher": "<14.0" | 1587 | "laravel-lang/publisher": "<14.0" |
1527 | }, | 1588 | }, |
1528 | "require-dev": { | 1589 | "require-dev": { |
1529 | "laravel-lang/publisher": "^14.0", | 1590 | "laravel-lang/publisher": "^14.0", |
1530 | "laravel-lang/status-generator": "^1.13", | 1591 | "laravel-lang/status-generator": "^1.13", |
1531 | "php": "^8.1", | 1592 | "php": "^8.1", |
1532 | "phpunit/phpunit": "^9.6", | 1593 | "phpunit/phpunit": "^9.6", |
1533 | "symfony/var-dumper": "^5.0 || ^6.0" | 1594 | "symfony/var-dumper": "^5.0 || ^6.0" |
1534 | }, | 1595 | }, |
1535 | "suggest": { | 1596 | "suggest": { |
1536 | "arcanedev/laravel-lang": "Translations manager and checker for Laravel", | 1597 | "arcanedev/laravel-lang": "Translations manager and checker for Laravel", |
1537 | "laravel-lang/attributes": "Translations for field names of the forms", | 1598 | "laravel-lang/attributes": "Translations for field names of the forms", |
1538 | "laravel-lang/http-statuses": "Translations for HTTP statuses", | 1599 | "laravel-lang/http-statuses": "Translations for HTTP statuses", |
1539 | "laravel-lang/publisher": "Easy installation and update of translation files for your project" | 1600 | "laravel-lang/publisher": "Easy installation and update of translation files for your project" |
1540 | }, | 1601 | }, |
1541 | "type": "library", | 1602 | "type": "library", |
1542 | "extra": { | 1603 | "extra": { |
1543 | "laravel": { | 1604 | "laravel": { |
1544 | "providers": [ | 1605 | "providers": [ |
1545 | "LaravelLang\\Lang\\ServiceProvider" | 1606 | "LaravelLang\\Lang\\ServiceProvider" |
1546 | ] | 1607 | ] |
1547 | } | 1608 | } |
1548 | }, | 1609 | }, |
1549 | "autoload": { | 1610 | "autoload": { |
1550 | "psr-4": { | 1611 | "psr-4": { |
1551 | "LaravelLang\\Lang\\": "src" | 1612 | "LaravelLang\\Lang\\": "src" |
1552 | } | 1613 | } |
1553 | }, | 1614 | }, |
1554 | "notification-url": "https://packagist.org/downloads/", | 1615 | "notification-url": "https://packagist.org/downloads/", |
1555 | "license": [ | 1616 | "license": [ |
1556 | "MIT" | 1617 | "MIT" |
1557 | ], | 1618 | ], |
1558 | "authors": [ | 1619 | "authors": [ |
1559 | { | 1620 | { |
1560 | "name": "Laravel-Lang Team", | 1621 | "name": "Laravel-Lang Team", |
1561 | "homepage": "https://github.com/Laravel-Lang" | 1622 | "homepage": "https://github.com/Laravel-Lang" |
1562 | } | 1623 | } |
1563 | ], | 1624 | ], |
1564 | "description": "Languages for Laravel", | 1625 | "description": "Languages for Laravel", |
1565 | "keywords": [ | 1626 | "keywords": [ |
1566 | "lang", | 1627 | "lang", |
1567 | "languages", | 1628 | "languages", |
1568 | "laravel", | 1629 | "laravel", |
1569 | "lpm" | 1630 | "lpm" |
1570 | ], | 1631 | ], |
1571 | "support": { | 1632 | "support": { |
1572 | "issues": "https://github.com/Laravel-Lang/lang/issues", | 1633 | "issues": "https://github.com/Laravel-Lang/lang/issues", |
1573 | "source": "https://github.com/Laravel-Lang/lang" | 1634 | "source": "https://github.com/Laravel-Lang/lang" |
1574 | }, | 1635 | }, |
1575 | "funding": [ | 1636 | "funding": [ |
1576 | { | 1637 | { |
1577 | "url": "https://opencollective.com/laravel-lang", | 1638 | "url": "https://opencollective.com/laravel-lang", |
1578 | "type": "open_collective" | 1639 | "type": "open_collective" |
1579 | } | 1640 | } |
1580 | ], | 1641 | ], |
1581 | "time": "2023-02-19T13:40:37+00:00" | 1642 | "time": "2023-02-19T13:40:37+00:00" |
1582 | }, | 1643 | }, |
1583 | { | 1644 | { |
1584 | "name": "laravel/framework", | 1645 | "name": "laravel/framework", |
1585 | "version": "v9.52.7", | 1646 | "version": "v9.52.7", |
1586 | "source": { | 1647 | "source": { |
1587 | "type": "git", | 1648 | "type": "git", |
1588 | "url": "https://github.com/laravel/framework.git", | 1649 | "url": "https://github.com/laravel/framework.git", |
1589 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677" | 1650 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677" |
1590 | }, | 1651 | }, |
1591 | "dist": { | 1652 | "dist": { |
1592 | "type": "zip", | 1653 | "type": "zip", |
1593 | "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677", | 1654 | "url": "https://api.github.com/repos/laravel/framework/zipball/675ea868fe36b18c8303e954aac540e6b1caa677", |
1594 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677", | 1655 | "reference": "675ea868fe36b18c8303e954aac540e6b1caa677", |
1595 | "shasum": "" | 1656 | "shasum": "" |
1596 | }, | 1657 | }, |
1597 | "require": { | 1658 | "require": { |
1598 | "brick/math": "^0.9.3|^0.10.2|^0.11", | 1659 | "brick/math": "^0.9.3|^0.10.2|^0.11", |
1599 | "doctrine/inflector": "^2.0.5", | 1660 | "doctrine/inflector": "^2.0.5", |
1600 | "dragonmantank/cron-expression": "^3.3.2", | 1661 | "dragonmantank/cron-expression": "^3.3.2", |
1601 | "egulias/email-validator": "^3.2.1|^4.0", | 1662 | "egulias/email-validator": "^3.2.1|^4.0", |
1602 | "ext-ctype": "*", | 1663 | "ext-ctype": "*", |
1603 | "ext-filter": "*", | 1664 | "ext-filter": "*", |
1604 | "ext-hash": "*", | 1665 | "ext-hash": "*", |
1605 | "ext-mbstring": "*", | 1666 | "ext-mbstring": "*", |
1606 | "ext-openssl": "*", | 1667 | "ext-openssl": "*", |
1607 | "ext-session": "*", | 1668 | "ext-session": "*", |
1608 | "ext-tokenizer": "*", | 1669 | "ext-tokenizer": "*", |
1609 | "fruitcake/php-cors": "^1.2", | 1670 | "fruitcake/php-cors": "^1.2", |
1610 | "guzzlehttp/uri-template": "^1.0", | 1671 | "guzzlehttp/uri-template": "^1.0", |
1611 | "laravel/serializable-closure": "^1.2.2", | 1672 | "laravel/serializable-closure": "^1.2.2", |
1612 | "league/commonmark": "^2.2.1", | 1673 | "league/commonmark": "^2.2.1", |
1613 | "league/flysystem": "^3.8.0", | 1674 | "league/flysystem": "^3.8.0", |
1614 | "monolog/monolog": "^2.0", | 1675 | "monolog/monolog": "^2.0", |
1615 | "nesbot/carbon": "^2.62.1", | 1676 | "nesbot/carbon": "^2.62.1", |
1616 | "nunomaduro/termwind": "^1.13", | 1677 | "nunomaduro/termwind": "^1.13", |
1617 | "php": "^8.0.2", | 1678 | "php": "^8.0.2", |
1618 | "psr/container": "^1.1.1|^2.0.1", | 1679 | "psr/container": "^1.1.1|^2.0.1", |
1619 | "psr/log": "^1.0|^2.0|^3.0", | 1680 | "psr/log": "^1.0|^2.0|^3.0", |
1620 | "psr/simple-cache": "^1.0|^2.0|^3.0", | 1681 | "psr/simple-cache": "^1.0|^2.0|^3.0", |
1621 | "ramsey/uuid": "^4.7", | 1682 | "ramsey/uuid": "^4.7", |
1622 | "symfony/console": "^6.0.9", | 1683 | "symfony/console": "^6.0.9", |
1623 | "symfony/error-handler": "^6.0", | 1684 | "symfony/error-handler": "^6.0", |
1624 | "symfony/finder": "^6.0", | 1685 | "symfony/finder": "^6.0", |
1625 | "symfony/http-foundation": "^6.0", | 1686 | "symfony/http-foundation": "^6.0", |
1626 | "symfony/http-kernel": "^6.0", | 1687 | "symfony/http-kernel": "^6.0", |
1627 | "symfony/mailer": "^6.0", | 1688 | "symfony/mailer": "^6.0", |
1628 | "symfony/mime": "^6.0", | 1689 | "symfony/mime": "^6.0", |
1629 | "symfony/process": "^6.0", | 1690 | "symfony/process": "^6.0", |
1630 | "symfony/routing": "^6.0", | 1691 | "symfony/routing": "^6.0", |
1631 | "symfony/uid": "^6.0", | 1692 | "symfony/uid": "^6.0", |
1632 | "symfony/var-dumper": "^6.0", | 1693 | "symfony/var-dumper": "^6.0", |
1633 | "tijsverkoyen/css-to-inline-styles": "^2.2.5", | 1694 | "tijsverkoyen/css-to-inline-styles": "^2.2.5", |
1634 | "vlucas/phpdotenv": "^5.4.1", | 1695 | "vlucas/phpdotenv": "^5.4.1", |
1635 | "voku/portable-ascii": "^2.0" | 1696 | "voku/portable-ascii": "^2.0" |
1636 | }, | 1697 | }, |
1637 | "conflict": { | 1698 | "conflict": { |
1638 | "tightenco/collect": "<5.5.33" | 1699 | "tightenco/collect": "<5.5.33" |
1639 | }, | 1700 | }, |
1640 | "provide": { | 1701 | "provide": { |
1641 | "psr/container-implementation": "1.1|2.0", | 1702 | "psr/container-implementation": "1.1|2.0", |
1642 | "psr/simple-cache-implementation": "1.0|2.0|3.0" | 1703 | "psr/simple-cache-implementation": "1.0|2.0|3.0" |
1643 | }, | 1704 | }, |
1644 | "replace": { | 1705 | "replace": { |
1645 | "illuminate/auth": "self.version", | 1706 | "illuminate/auth": "self.version", |
1646 | "illuminate/broadcasting": "self.version", | 1707 | "illuminate/broadcasting": "self.version", |
1647 | "illuminate/bus": "self.version", | 1708 | "illuminate/bus": "self.version", |
1648 | "illuminate/cache": "self.version", | 1709 | "illuminate/cache": "self.version", |
1649 | "illuminate/collections": "self.version", | 1710 | "illuminate/collections": "self.version", |
1650 | "illuminate/conditionable": "self.version", | 1711 | "illuminate/conditionable": "self.version", |
1651 | "illuminate/config": "self.version", | 1712 | "illuminate/config": "self.version", |
1652 | "illuminate/console": "self.version", | 1713 | "illuminate/console": "self.version", |
1653 | "illuminate/container": "self.version", | 1714 | "illuminate/container": "self.version", |
1654 | "illuminate/contracts": "self.version", | 1715 | "illuminate/contracts": "self.version", |
1655 | "illuminate/cookie": "self.version", | 1716 | "illuminate/cookie": "self.version", |
1656 | "illuminate/database": "self.version", | 1717 | "illuminate/database": "self.version", |
1657 | "illuminate/encryption": "self.version", | 1718 | "illuminate/encryption": "self.version", |
1658 | "illuminate/events": "self.version", | 1719 | "illuminate/events": "self.version", |
1659 | "illuminate/filesystem": "self.version", | 1720 | "illuminate/filesystem": "self.version", |
1660 | "illuminate/hashing": "self.version", | 1721 | "illuminate/hashing": "self.version", |
1661 | "illuminate/http": "self.version", | 1722 | "illuminate/http": "self.version", |
1662 | "illuminate/log": "self.version", | 1723 | "illuminate/log": "self.version", |
1663 | "illuminate/macroable": "self.version", | 1724 | "illuminate/macroable": "self.version", |
1664 | "illuminate/mail": "self.version", | 1725 | "illuminate/mail": "self.version", |
1665 | "illuminate/notifications": "self.version", | 1726 | "illuminate/notifications": "self.version", |
1666 | "illuminate/pagination": "self.version", | 1727 | "illuminate/pagination": "self.version", |
1667 | "illuminate/pipeline": "self.version", | 1728 | "illuminate/pipeline": "self.version", |
1668 | "illuminate/queue": "self.version", | 1729 | "illuminate/queue": "self.version", |
1669 | "illuminate/redis": "self.version", | 1730 | "illuminate/redis": "self.version", |
1670 | "illuminate/routing": "self.version", | 1731 | "illuminate/routing": "self.version", |
1671 | "illuminate/session": "self.version", | 1732 | "illuminate/session": "self.version", |
1672 | "illuminate/support": "self.version", | 1733 | "illuminate/support": "self.version", |
1673 | "illuminate/testing": "self.version", | 1734 | "illuminate/testing": "self.version", |
1674 | "illuminate/translation": "self.version", | 1735 | "illuminate/translation": "self.version", |
1675 | "illuminate/validation": "self.version", | 1736 | "illuminate/validation": "self.version", |
1676 | "illuminate/view": "self.version" | 1737 | "illuminate/view": "self.version" |
1677 | }, | 1738 | }, |
1678 | "require-dev": { | 1739 | "require-dev": { |
1679 | "ably/ably-php": "^1.0", | 1740 | "ably/ably-php": "^1.0", |
1680 | "aws/aws-sdk-php": "^3.235.5", | 1741 | "aws/aws-sdk-php": "^3.235.5", |
1681 | "doctrine/dbal": "^2.13.3|^3.1.4", | 1742 | "doctrine/dbal": "^2.13.3|^3.1.4", |
1682 | "ext-gmp": "*", | 1743 | "ext-gmp": "*", |
1683 | "fakerphp/faker": "^1.21", | 1744 | "fakerphp/faker": "^1.21", |
1684 | "guzzlehttp/guzzle": "^7.5", | 1745 | "guzzlehttp/guzzle": "^7.5", |
1685 | "league/flysystem-aws-s3-v3": "^3.0", | 1746 | "league/flysystem-aws-s3-v3": "^3.0", |
1686 | "league/flysystem-ftp": "^3.0", | 1747 | "league/flysystem-ftp": "^3.0", |
1687 | "league/flysystem-path-prefixing": "^3.3", | 1748 | "league/flysystem-path-prefixing": "^3.3", |
1688 | "league/flysystem-read-only": "^3.3", | 1749 | "league/flysystem-read-only": "^3.3", |
1689 | "league/flysystem-sftp-v3": "^3.0", | 1750 | "league/flysystem-sftp-v3": "^3.0", |
1690 | "mockery/mockery": "^1.5.1", | 1751 | "mockery/mockery": "^1.5.1", |
1691 | "orchestra/testbench-core": "^7.24", | 1752 | "orchestra/testbench-core": "^7.24", |
1692 | "pda/pheanstalk": "^4.0", | 1753 | "pda/pheanstalk": "^4.0", |
1693 | "phpstan/phpdoc-parser": "^1.15", | 1754 | "phpstan/phpdoc-parser": "^1.15", |
1694 | "phpstan/phpstan": "^1.4.7", | 1755 | "phpstan/phpstan": "^1.4.7", |
1695 | "phpunit/phpunit": "^9.5.8", | 1756 | "phpunit/phpunit": "^9.5.8", |
1696 | "predis/predis": "^1.1.9|^2.0.2", | 1757 | "predis/predis": "^1.1.9|^2.0.2", |
1697 | "symfony/cache": "^6.0", | 1758 | "symfony/cache": "^6.0", |
1698 | "symfony/http-client": "^6.0" | 1759 | "symfony/http-client": "^6.0" |
1699 | }, | 1760 | }, |
1700 | "suggest": { | 1761 | "suggest": { |
1701 | "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", | 1762 | "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).", |
1702 | "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", | 1763 | "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).", |
1703 | "brianium/paratest": "Required to run tests in parallel (^6.0).", | 1764 | "brianium/paratest": "Required to run tests in parallel (^6.0).", |
1704 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", | 1765 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).", |
1705 | "ext-apcu": "Required to use the APC cache driver.", | 1766 | "ext-apcu": "Required to use the APC cache driver.", |
1706 | "ext-fileinfo": "Required to use the Filesystem class.", | 1767 | "ext-fileinfo": "Required to use the Filesystem class.", |
1707 | "ext-ftp": "Required to use the Flysystem FTP driver.", | 1768 | "ext-ftp": "Required to use the Flysystem FTP driver.", |
1708 | "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", | 1769 | "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().", |
1709 | "ext-memcached": "Required to use the memcache cache driver.", | 1770 | "ext-memcached": "Required to use the memcache cache driver.", |
1710 | "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", | 1771 | "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.", |
1711 | "ext-pdo": "Required to use all database features.", | 1772 | "ext-pdo": "Required to use all database features.", |
1712 | "ext-posix": "Required to use all features of the queue worker.", | 1773 | "ext-posix": "Required to use all features of the queue worker.", |
1713 | "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", | 1774 | "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).", |
1714 | "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", | 1775 | "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).", |
1715 | "filp/whoops": "Required for friendly error pages in development (^2.14.3).", | 1776 | "filp/whoops": "Required for friendly error pages in development (^2.14.3).", |
1716 | "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", | 1777 | "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).", |
1717 | "laravel/tinker": "Required to use the tinker console command (^2.0).", | 1778 | "laravel/tinker": "Required to use the tinker console command (^2.0).", |
1718 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", | 1779 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).", |
1719 | "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", | 1780 | "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).", |
1720 | "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", | 1781 | "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).", |
1721 | "league/flysystem-read-only": "Required to use read-only disks (^3.3)", | 1782 | "league/flysystem-read-only": "Required to use read-only disks (^3.3)", |
1722 | "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", | 1783 | "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).", |
1723 | "mockery/mockery": "Required to use mocking (^1.5.1).", | 1784 | "mockery/mockery": "Required to use mocking (^1.5.1).", |
1724 | "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", | 1785 | "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).", |
1725 | "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", | 1786 | "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).", |
1726 | "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).", | 1787 | "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).", |
1727 | "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).", | 1788 | "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).", |
1728 | "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", | 1789 | "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", |
1729 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", | 1790 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).", |
1730 | "symfony/cache": "Required to PSR-6 cache bridge (^6.0).", | 1791 | "symfony/cache": "Required to PSR-6 cache bridge (^6.0).", |
1731 | "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).", | 1792 | "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).", |
1732 | "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).", | 1793 | "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).", |
1733 | "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).", | 1794 | "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).", |
1734 | "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).", | 1795 | "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).", |
1735 | "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." | 1796 | "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)." |
1736 | }, | 1797 | }, |
1737 | "type": "library", | 1798 | "type": "library", |
1738 | "extra": { | 1799 | "extra": { |
1739 | "branch-alias": { | 1800 | "branch-alias": { |
1740 | "dev-master": "9.x-dev" | 1801 | "dev-master": "9.x-dev" |
1741 | } | 1802 | } |
1742 | }, | 1803 | }, |
1743 | "autoload": { | 1804 | "autoload": { |
1744 | "files": [ | 1805 | "files": [ |
1745 | "src/Illuminate/Collections/helpers.php", | 1806 | "src/Illuminate/Collections/helpers.php", |
1746 | "src/Illuminate/Events/functions.php", | 1807 | "src/Illuminate/Events/functions.php", |
1747 | "src/Illuminate/Foundation/helpers.php", | 1808 | "src/Illuminate/Foundation/helpers.php", |
1748 | "src/Illuminate/Support/helpers.php" | 1809 | "src/Illuminate/Support/helpers.php" |
1749 | ], | 1810 | ], |
1750 | "psr-4": { | 1811 | "psr-4": { |
1751 | "Illuminate\\": "src/Illuminate/", | 1812 | "Illuminate\\": "src/Illuminate/", |
1752 | "Illuminate\\Support\\": [ | 1813 | "Illuminate\\Support\\": [ |
1753 | "src/Illuminate/Macroable/", | 1814 | "src/Illuminate/Macroable/", |
1754 | "src/Illuminate/Collections/", | 1815 | "src/Illuminate/Collections/", |
1755 | "src/Illuminate/Conditionable/" | 1816 | "src/Illuminate/Conditionable/" |
1756 | ] | 1817 | ] |
1757 | } | 1818 | } |
1758 | }, | 1819 | }, |
1759 | "notification-url": "https://packagist.org/downloads/", | 1820 | "notification-url": "https://packagist.org/downloads/", |
1760 | "license": [ | 1821 | "license": [ |
1761 | "MIT" | 1822 | "MIT" |
1762 | ], | 1823 | ], |
1763 | "authors": [ | 1824 | "authors": [ |
1764 | { | 1825 | { |
1765 | "name": "Taylor Otwell", | 1826 | "name": "Taylor Otwell", |
1766 | "email": "taylor@laravel.com" | 1827 | "email": "taylor@laravel.com" |
1767 | } | 1828 | } |
1768 | ], | 1829 | ], |
1769 | "description": "The Laravel Framework.", | 1830 | "description": "The Laravel Framework.", |
1770 | "homepage": "https://laravel.com", | 1831 | "homepage": "https://laravel.com", |
1771 | "keywords": [ | 1832 | "keywords": [ |
1772 | "framework", | 1833 | "framework", |
1773 | "laravel" | 1834 | "laravel" |
1774 | ], | 1835 | ], |
1775 | "support": { | 1836 | "support": { |
1776 | "issues": "https://github.com/laravel/framework/issues", | 1837 | "issues": "https://github.com/laravel/framework/issues", |
1777 | "source": "https://github.com/laravel/framework" | 1838 | "source": "https://github.com/laravel/framework" |
1778 | }, | 1839 | }, |
1779 | "time": "2023-04-25T13:44:05+00:00" | 1840 | "time": "2023-04-25T13:44:05+00:00" |
1780 | }, | 1841 | }, |
1781 | { | 1842 | { |
1782 | "name": "laravel/sanctum", | 1843 | "name": "laravel/sanctum", |
1783 | "version": "v3.2.5", | 1844 | "version": "v3.2.5", |
1784 | "source": { | 1845 | "source": { |
1785 | "type": "git", | 1846 | "type": "git", |
1786 | "url": "https://github.com/laravel/sanctum.git", | 1847 | "url": "https://github.com/laravel/sanctum.git", |
1787 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876" | 1848 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876" |
1788 | }, | 1849 | }, |
1789 | "dist": { | 1850 | "dist": { |
1790 | "type": "zip", | 1851 | "type": "zip", |
1791 | "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876", | 1852 | "url": "https://api.github.com/repos/laravel/sanctum/zipball/8ebda85d59d3c414863a7f4d816ef8302faad876", |
1792 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876", | 1853 | "reference": "8ebda85d59d3c414863a7f4d816ef8302faad876", |
1793 | "shasum": "" | 1854 | "shasum": "" |
1794 | }, | 1855 | }, |
1795 | "require": { | 1856 | "require": { |
1796 | "ext-json": "*", | 1857 | "ext-json": "*", |
1797 | "illuminate/console": "^9.21|^10.0", | 1858 | "illuminate/console": "^9.21|^10.0", |
1798 | "illuminate/contracts": "^9.21|^10.0", | 1859 | "illuminate/contracts": "^9.21|^10.0", |
1799 | "illuminate/database": "^9.21|^10.0", | 1860 | "illuminate/database": "^9.21|^10.0", |
1800 | "illuminate/support": "^9.21|^10.0", | 1861 | "illuminate/support": "^9.21|^10.0", |
1801 | "php": "^8.0.2" | 1862 | "php": "^8.0.2" |
1802 | }, | 1863 | }, |
1803 | "require-dev": { | 1864 | "require-dev": { |
1804 | "mockery/mockery": "^1.0", | 1865 | "mockery/mockery": "^1.0", |
1805 | "orchestra/testbench": "^7.0|^8.0", | 1866 | "orchestra/testbench": "^7.0|^8.0", |
1806 | "phpstan/phpstan": "^1.10", | 1867 | "phpstan/phpstan": "^1.10", |
1807 | "phpunit/phpunit": "^9.3" | 1868 | "phpunit/phpunit": "^9.3" |
1808 | }, | 1869 | }, |
1809 | "type": "library", | 1870 | "type": "library", |
1810 | "extra": { | 1871 | "extra": { |
1811 | "branch-alias": { | 1872 | "branch-alias": { |
1812 | "dev-master": "3.x-dev" | 1873 | "dev-master": "3.x-dev" |
1813 | }, | 1874 | }, |
1814 | "laravel": { | 1875 | "laravel": { |
1815 | "providers": [ | 1876 | "providers": [ |
1816 | "Laravel\\Sanctum\\SanctumServiceProvider" | 1877 | "Laravel\\Sanctum\\SanctumServiceProvider" |
1817 | ] | 1878 | ] |
1818 | } | 1879 | } |
1819 | }, | 1880 | }, |
1820 | "autoload": { | 1881 | "autoload": { |
1821 | "psr-4": { | 1882 | "psr-4": { |
1822 | "Laravel\\Sanctum\\": "src/" | 1883 | "Laravel\\Sanctum\\": "src/" |
1823 | } | 1884 | } |
1824 | }, | 1885 | }, |
1825 | "notification-url": "https://packagist.org/downloads/", | 1886 | "notification-url": "https://packagist.org/downloads/", |
1826 | "license": [ | 1887 | "license": [ |
1827 | "MIT" | 1888 | "MIT" |
1828 | ], | 1889 | ], |
1829 | "authors": [ | 1890 | "authors": [ |
1830 | { | 1891 | { |
1831 | "name": "Taylor Otwell", | 1892 | "name": "Taylor Otwell", |
1832 | "email": "taylor@laravel.com" | 1893 | "email": "taylor@laravel.com" |
1833 | } | 1894 | } |
1834 | ], | 1895 | ], |
1835 | "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", | 1896 | "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.", |
1836 | "keywords": [ | 1897 | "keywords": [ |
1837 | "auth", | 1898 | "auth", |
1838 | "laravel", | 1899 | "laravel", |
1839 | "sanctum" | 1900 | "sanctum" |
1840 | ], | 1901 | ], |
1841 | "support": { | 1902 | "support": { |
1842 | "issues": "https://github.com/laravel/sanctum/issues", | 1903 | "issues": "https://github.com/laravel/sanctum/issues", |
1843 | "source": "https://github.com/laravel/sanctum" | 1904 | "source": "https://github.com/laravel/sanctum" |
1844 | }, | 1905 | }, |
1845 | "time": "2023-05-01T19:39:51+00:00" | 1906 | "time": "2023-05-01T19:39:51+00:00" |
1846 | }, | 1907 | }, |
1847 | { | 1908 | { |
1848 | "name": "laravel/serializable-closure", | 1909 | "name": "laravel/serializable-closure", |
1849 | "version": "v1.3.0", | 1910 | "version": "v1.3.0", |
1850 | "source": { | 1911 | "source": { |
1851 | "type": "git", | 1912 | "type": "git", |
1852 | "url": "https://github.com/laravel/serializable-closure.git", | 1913 | "url": "https://github.com/laravel/serializable-closure.git", |
1853 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37" | 1914 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37" |
1854 | }, | 1915 | }, |
1855 | "dist": { | 1916 | "dist": { |
1856 | "type": "zip", | 1917 | "type": "zip", |
1857 | "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", | 1918 | "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", |
1858 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", | 1919 | "reference": "f23fe9d4e95255dacee1bf3525e0810d1a1b0f37", |
1859 | "shasum": "" | 1920 | "shasum": "" |
1860 | }, | 1921 | }, |
1861 | "require": { | 1922 | "require": { |
1862 | "php": "^7.3|^8.0" | 1923 | "php": "^7.3|^8.0" |
1863 | }, | 1924 | }, |
1864 | "require-dev": { | 1925 | "require-dev": { |
1865 | "nesbot/carbon": "^2.61", | 1926 | "nesbot/carbon": "^2.61", |
1866 | "pestphp/pest": "^1.21.3", | 1927 | "pestphp/pest": "^1.21.3", |
1867 | "phpstan/phpstan": "^1.8.2", | 1928 | "phpstan/phpstan": "^1.8.2", |
1868 | "symfony/var-dumper": "^5.4.11" | 1929 | "symfony/var-dumper": "^5.4.11" |
1869 | }, | 1930 | }, |
1870 | "type": "library", | 1931 | "type": "library", |
1871 | "extra": { | 1932 | "extra": { |
1872 | "branch-alias": { | 1933 | "branch-alias": { |
1873 | "dev-master": "1.x-dev" | 1934 | "dev-master": "1.x-dev" |
1874 | } | 1935 | } |
1875 | }, | 1936 | }, |
1876 | "autoload": { | 1937 | "autoload": { |
1877 | "psr-4": { | 1938 | "psr-4": { |
1878 | "Laravel\\SerializableClosure\\": "src/" | 1939 | "Laravel\\SerializableClosure\\": "src/" |
1879 | } | 1940 | } |
1880 | }, | 1941 | }, |
1881 | "notification-url": "https://packagist.org/downloads/", | 1942 | "notification-url": "https://packagist.org/downloads/", |
1882 | "license": [ | 1943 | "license": [ |
1883 | "MIT" | 1944 | "MIT" |
1884 | ], | 1945 | ], |
1885 | "authors": [ | 1946 | "authors": [ |
1886 | { | 1947 | { |
1887 | "name": "Taylor Otwell", | 1948 | "name": "Taylor Otwell", |
1888 | "email": "taylor@laravel.com" | 1949 | "email": "taylor@laravel.com" |
1889 | }, | 1950 | }, |
1890 | { | 1951 | { |
1891 | "name": "Nuno Maduro", | 1952 | "name": "Nuno Maduro", |
1892 | "email": "nuno@laravel.com" | 1953 | "email": "nuno@laravel.com" |
1893 | } | 1954 | } |
1894 | ], | 1955 | ], |
1895 | "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", | 1956 | "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.", |
1896 | "keywords": [ | 1957 | "keywords": [ |
1897 | "closure", | 1958 | "closure", |
1898 | "laravel", | 1959 | "laravel", |
1899 | "serializable" | 1960 | "serializable" |
1900 | ], | 1961 | ], |
1901 | "support": { | 1962 | "support": { |
1902 | "issues": "https://github.com/laravel/serializable-closure/issues", | 1963 | "issues": "https://github.com/laravel/serializable-closure/issues", |
1903 | "source": "https://github.com/laravel/serializable-closure" | 1964 | "source": "https://github.com/laravel/serializable-closure" |
1904 | }, | 1965 | }, |
1905 | "time": "2023-01-30T18:31:20+00:00" | 1966 | "time": "2023-01-30T18:31:20+00:00" |
1906 | }, | 1967 | }, |
1907 | { | 1968 | { |
1908 | "name": "laravel/tinker", | 1969 | "name": "laravel/tinker", |
1909 | "version": "v2.8.1", | 1970 | "version": "v2.8.1", |
1910 | "source": { | 1971 | "source": { |
1911 | "type": "git", | 1972 | "type": "git", |
1912 | "url": "https://github.com/laravel/tinker.git", | 1973 | "url": "https://github.com/laravel/tinker.git", |
1913 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" | 1974 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" |
1914 | }, | 1975 | }, |
1915 | "dist": { | 1976 | "dist": { |
1916 | "type": "zip", | 1977 | "type": "zip", |
1917 | "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", | 1978 | "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", |
1918 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", | 1979 | "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", |
1919 | "shasum": "" | 1980 | "shasum": "" |
1920 | }, | 1981 | }, |
1921 | "require": { | 1982 | "require": { |
1922 | "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", | 1983 | "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", |
1923 | "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", | 1984 | "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", |
1924 | "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", | 1985 | "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", |
1925 | "php": "^7.2.5|^8.0", | 1986 | "php": "^7.2.5|^8.0", |
1926 | "psy/psysh": "^0.10.4|^0.11.1", | 1987 | "psy/psysh": "^0.10.4|^0.11.1", |
1927 | "symfony/var-dumper": "^4.3.4|^5.0|^6.0" | 1988 | "symfony/var-dumper": "^4.3.4|^5.0|^6.0" |
1928 | }, | 1989 | }, |
1929 | "require-dev": { | 1990 | "require-dev": { |
1930 | "mockery/mockery": "~1.3.3|^1.4.2", | 1991 | "mockery/mockery": "~1.3.3|^1.4.2", |
1931 | "phpunit/phpunit": "^8.5.8|^9.3.3" | 1992 | "phpunit/phpunit": "^8.5.8|^9.3.3" |
1932 | }, | 1993 | }, |
1933 | "suggest": { | 1994 | "suggest": { |
1934 | "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." | 1995 | "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." |
1935 | }, | 1996 | }, |
1936 | "type": "library", | 1997 | "type": "library", |
1937 | "extra": { | 1998 | "extra": { |
1938 | "branch-alias": { | 1999 | "branch-alias": { |
1939 | "dev-master": "2.x-dev" | 2000 | "dev-master": "2.x-dev" |
1940 | }, | 2001 | }, |
1941 | "laravel": { | 2002 | "laravel": { |
1942 | "providers": [ | 2003 | "providers": [ |
1943 | "Laravel\\Tinker\\TinkerServiceProvider" | 2004 | "Laravel\\Tinker\\TinkerServiceProvider" |
1944 | ] | 2005 | ] |
1945 | } | 2006 | } |
1946 | }, | 2007 | }, |
1947 | "autoload": { | 2008 | "autoload": { |
1948 | "psr-4": { | 2009 | "psr-4": { |
1949 | "Laravel\\Tinker\\": "src/" | 2010 | "Laravel\\Tinker\\": "src/" |
1950 | } | 2011 | } |
1951 | }, | 2012 | }, |
1952 | "notification-url": "https://packagist.org/downloads/", | 2013 | "notification-url": "https://packagist.org/downloads/", |
1953 | "license": [ | 2014 | "license": [ |
1954 | "MIT" | 2015 | "MIT" |
1955 | ], | 2016 | ], |
1956 | "authors": [ | 2017 | "authors": [ |
1957 | { | 2018 | { |
1958 | "name": "Taylor Otwell", | 2019 | "name": "Taylor Otwell", |
1959 | "email": "taylor@laravel.com" | 2020 | "email": "taylor@laravel.com" |
1960 | } | 2021 | } |
1961 | ], | 2022 | ], |
1962 | "description": "Powerful REPL for the Laravel framework.", | 2023 | "description": "Powerful REPL for the Laravel framework.", |
1963 | "keywords": [ | 2024 | "keywords": [ |
1964 | "REPL", | 2025 | "REPL", |
1965 | "Tinker", | 2026 | "Tinker", |
1966 | "laravel", | 2027 | "laravel", |
1967 | "psysh" | 2028 | "psysh" |
1968 | ], | 2029 | ], |
1969 | "support": { | 2030 | "support": { |
1970 | "issues": "https://github.com/laravel/tinker/issues", | 2031 | "issues": "https://github.com/laravel/tinker/issues", |
1971 | "source": "https://github.com/laravel/tinker/tree/v2.8.1" | 2032 | "source": "https://github.com/laravel/tinker/tree/v2.8.1" |
1972 | }, | 2033 | }, |
1973 | "time": "2023-02-15T16:40:09+00:00" | 2034 | "time": "2023-02-15T16:40:09+00:00" |
1974 | }, | 2035 | }, |
1975 | { | 2036 | { |
1976 | "name": "laravel/ui", | 2037 | "name": "laravel/ui", |
1977 | "version": "v4.2.1", | 2038 | "version": "v4.2.1", |
1978 | "source": { | 2039 | "source": { |
1979 | "type": "git", | 2040 | "type": "git", |
1980 | "url": "https://github.com/laravel/ui.git", | 2041 | "url": "https://github.com/laravel/ui.git", |
1981 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907" | 2042 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907" |
1982 | }, | 2043 | }, |
1983 | "dist": { | 2044 | "dist": { |
1984 | "type": "zip", | 2045 | "type": "zip", |
1985 | "url": "https://api.github.com/repos/laravel/ui/zipball/05ff7ac1eb55e2dfd10edcfb18c953684d693907", | 2046 | "url": "https://api.github.com/repos/laravel/ui/zipball/05ff7ac1eb55e2dfd10edcfb18c953684d693907", |
1986 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907", | 2047 | "reference": "05ff7ac1eb55e2dfd10edcfb18c953684d693907", |
1987 | "shasum": "" | 2048 | "shasum": "" |
1988 | }, | 2049 | }, |
1989 | "require": { | 2050 | "require": { |
1990 | "illuminate/console": "^9.21|^10.0", | 2051 | "illuminate/console": "^9.21|^10.0", |
1991 | "illuminate/filesystem": "^9.21|^10.0", | 2052 | "illuminate/filesystem": "^9.21|^10.0", |
1992 | "illuminate/support": "^9.21|^10.0", | 2053 | "illuminate/support": "^9.21|^10.0", |
1993 | "illuminate/validation": "^9.21|^10.0", | 2054 | "illuminate/validation": "^9.21|^10.0", |
1994 | "php": "^8.0" | 2055 | "php": "^8.0" |
1995 | }, | 2056 | }, |
1996 | "require-dev": { | 2057 | "require-dev": { |
1997 | "orchestra/testbench": "^7.0|^8.0", | 2058 | "orchestra/testbench": "^7.0|^8.0", |
1998 | "phpunit/phpunit": "^9.3" | 2059 | "phpunit/phpunit": "^9.3" |
1999 | }, | 2060 | }, |
2000 | "type": "library", | 2061 | "type": "library", |
2001 | "extra": { | 2062 | "extra": { |
2002 | "branch-alias": { | 2063 | "branch-alias": { |
2003 | "dev-master": "4.x-dev" | 2064 | "dev-master": "4.x-dev" |
2004 | }, | 2065 | }, |
2005 | "laravel": { | 2066 | "laravel": { |
2006 | "providers": [ | 2067 | "providers": [ |
2007 | "Laravel\\Ui\\UiServiceProvider" | 2068 | "Laravel\\Ui\\UiServiceProvider" |
2008 | ] | 2069 | ] |
2009 | } | 2070 | } |
2010 | }, | 2071 | }, |
2011 | "autoload": { | 2072 | "autoload": { |
2012 | "psr-4": { | 2073 | "psr-4": { |
2013 | "Laravel\\Ui\\": "src/", | 2074 | "Laravel\\Ui\\": "src/", |
2014 | "Illuminate\\Foundation\\Auth\\": "auth-backend/" | 2075 | "Illuminate\\Foundation\\Auth\\": "auth-backend/" |
2015 | } | 2076 | } |
2016 | }, | 2077 | }, |
2017 | "notification-url": "https://packagist.org/downloads/", | 2078 | "notification-url": "https://packagist.org/downloads/", |
2018 | "license": [ | 2079 | "license": [ |
2019 | "MIT" | 2080 | "MIT" |
2020 | ], | 2081 | ], |
2021 | "authors": [ | 2082 | "authors": [ |
2022 | { | 2083 | { |
2023 | "name": "Taylor Otwell", | 2084 | "name": "Taylor Otwell", |
2024 | "email": "taylor@laravel.com" | 2085 | "email": "taylor@laravel.com" |
2025 | } | 2086 | } |
2026 | ], | 2087 | ], |
2027 | "description": "Laravel UI utilities and presets.", | 2088 | "description": "Laravel UI utilities and presets.", |
2028 | "keywords": [ | 2089 | "keywords": [ |
2029 | "laravel", | 2090 | "laravel", |
2030 | "ui" | 2091 | "ui" |
2031 | ], | 2092 | ], |
2032 | "support": { | 2093 | "support": { |
2033 | "source": "https://github.com/laravel/ui/tree/v4.2.1" | 2094 | "source": "https://github.com/laravel/ui/tree/v4.2.1" |
2034 | }, | 2095 | }, |
2035 | "time": "2023-02-17T09:17:24+00:00" | 2096 | "time": "2023-02-17T09:17:24+00:00" |
2036 | }, | 2097 | }, |
2037 | { | 2098 | { |
2038 | "name": "league/commonmark", | 2099 | "name": "league/commonmark", |
2039 | "version": "2.4.0", | 2100 | "version": "2.4.0", |
2040 | "source": { | 2101 | "source": { |
2041 | "type": "git", | 2102 | "type": "git", |
2042 | "url": "https://github.com/thephpleague/commonmark.git", | 2103 | "url": "https://github.com/thephpleague/commonmark.git", |
2043 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" | 2104 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" |
2044 | }, | 2105 | }, |
2045 | "dist": { | 2106 | "dist": { |
2046 | "type": "zip", | 2107 | "type": "zip", |
2047 | "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", | 2108 | "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", |
2048 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", | 2109 | "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", |
2049 | "shasum": "" | 2110 | "shasum": "" |
2050 | }, | 2111 | }, |
2051 | "require": { | 2112 | "require": { |
2052 | "ext-mbstring": "*", | 2113 | "ext-mbstring": "*", |
2053 | "league/config": "^1.1.1", | 2114 | "league/config": "^1.1.1", |
2054 | "php": "^7.4 || ^8.0", | 2115 | "php": "^7.4 || ^8.0", |
2055 | "psr/event-dispatcher": "^1.0", | 2116 | "psr/event-dispatcher": "^1.0", |
2056 | "symfony/deprecation-contracts": "^2.1 || ^3.0", | 2117 | "symfony/deprecation-contracts": "^2.1 || ^3.0", |
2057 | "symfony/polyfill-php80": "^1.16" | 2118 | "symfony/polyfill-php80": "^1.16" |
2058 | }, | 2119 | }, |
2059 | "require-dev": { | 2120 | "require-dev": { |
2060 | "cebe/markdown": "^1.0", | 2121 | "cebe/markdown": "^1.0", |
2061 | "commonmark/cmark": "0.30.0", | 2122 | "commonmark/cmark": "0.30.0", |
2062 | "commonmark/commonmark.js": "0.30.0", | 2123 | "commonmark/commonmark.js": "0.30.0", |
2063 | "composer/package-versions-deprecated": "^1.8", | 2124 | "composer/package-versions-deprecated": "^1.8", |
2064 | "embed/embed": "^4.4", | 2125 | "embed/embed": "^4.4", |
2065 | "erusev/parsedown": "^1.0", | 2126 | "erusev/parsedown": "^1.0", |
2066 | "ext-json": "*", | 2127 | "ext-json": "*", |
2067 | "github/gfm": "0.29.0", | 2128 | "github/gfm": "0.29.0", |
2068 | "michelf/php-markdown": "^1.4 || ^2.0", | 2129 | "michelf/php-markdown": "^1.4 || ^2.0", |
2069 | "nyholm/psr7": "^1.5", | 2130 | "nyholm/psr7": "^1.5", |
2070 | "phpstan/phpstan": "^1.8.2", | 2131 | "phpstan/phpstan": "^1.8.2", |
2071 | "phpunit/phpunit": "^9.5.21", | 2132 | "phpunit/phpunit": "^9.5.21", |
2072 | "scrutinizer/ocular": "^1.8.1", | 2133 | "scrutinizer/ocular": "^1.8.1", |
2073 | "symfony/finder": "^5.3 | ^6.0", | 2134 | "symfony/finder": "^5.3 | ^6.0", |
2074 | "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", | 2135 | "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", |
2075 | "unleashedtech/php-coding-standard": "^3.1.1", | 2136 | "unleashedtech/php-coding-standard": "^3.1.1", |
2076 | "vimeo/psalm": "^4.24.0 || ^5.0.0" | 2137 | "vimeo/psalm": "^4.24.0 || ^5.0.0" |
2077 | }, | 2138 | }, |
2078 | "suggest": { | 2139 | "suggest": { |
2079 | "symfony/yaml": "v2.3+ required if using the Front Matter extension" | 2140 | "symfony/yaml": "v2.3+ required if using the Front Matter extension" |
2080 | }, | 2141 | }, |
2081 | "type": "library", | 2142 | "type": "library", |
2082 | "extra": { | 2143 | "extra": { |
2083 | "branch-alias": { | 2144 | "branch-alias": { |
2084 | "dev-main": "2.5-dev" | 2145 | "dev-main": "2.5-dev" |
2085 | } | 2146 | } |
2086 | }, | 2147 | }, |
2087 | "autoload": { | 2148 | "autoload": { |
2088 | "psr-4": { | 2149 | "psr-4": { |
2089 | "League\\CommonMark\\": "src" | 2150 | "League\\CommonMark\\": "src" |
2090 | } | 2151 | } |
2091 | }, | 2152 | }, |
2092 | "notification-url": "https://packagist.org/downloads/", | 2153 | "notification-url": "https://packagist.org/downloads/", |
2093 | "license": [ | 2154 | "license": [ |
2094 | "BSD-3-Clause" | 2155 | "BSD-3-Clause" |
2095 | ], | 2156 | ], |
2096 | "authors": [ | 2157 | "authors": [ |
2097 | { | 2158 | { |
2098 | "name": "Colin O'Dell", | 2159 | "name": "Colin O'Dell", |
2099 | "email": "colinodell@gmail.com", | 2160 | "email": "colinodell@gmail.com", |
2100 | "homepage": "https://www.colinodell.com", | 2161 | "homepage": "https://www.colinodell.com", |
2101 | "role": "Lead Developer" | 2162 | "role": "Lead Developer" |
2102 | } | 2163 | } |
2103 | ], | 2164 | ], |
2104 | "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", | 2165 | "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", |
2105 | "homepage": "https://commonmark.thephpleague.com", | 2166 | "homepage": "https://commonmark.thephpleague.com", |
2106 | "keywords": [ | 2167 | "keywords": [ |
2107 | "commonmark", | 2168 | "commonmark", |
2108 | "flavored", | 2169 | "flavored", |
2109 | "gfm", | 2170 | "gfm", |
2110 | "github", | 2171 | "github", |
2111 | "github-flavored", | 2172 | "github-flavored", |
2112 | "markdown", | 2173 | "markdown", |
2113 | "md", | 2174 | "md", |
2114 | "parser" | 2175 | "parser" |
2115 | ], | 2176 | ], |
2116 | "support": { | 2177 | "support": { |
2117 | "docs": "https://commonmark.thephpleague.com/", | 2178 | "docs": "https://commonmark.thephpleague.com/", |
2118 | "forum": "https://github.com/thephpleague/commonmark/discussions", | 2179 | "forum": "https://github.com/thephpleague/commonmark/discussions", |
2119 | "issues": "https://github.com/thephpleague/commonmark/issues", | 2180 | "issues": "https://github.com/thephpleague/commonmark/issues", |
2120 | "rss": "https://github.com/thephpleague/commonmark/releases.atom", | 2181 | "rss": "https://github.com/thephpleague/commonmark/releases.atom", |
2121 | "source": "https://github.com/thephpleague/commonmark" | 2182 | "source": "https://github.com/thephpleague/commonmark" |
2122 | }, | 2183 | }, |
2123 | "funding": [ | 2184 | "funding": [ |
2124 | { | 2185 | { |
2125 | "url": "https://www.colinodell.com/sponsor", | 2186 | "url": "https://www.colinodell.com/sponsor", |
2126 | "type": "custom" | 2187 | "type": "custom" |
2127 | }, | 2188 | }, |
2128 | { | 2189 | { |
2129 | "url": "https://www.paypal.me/colinpodell/10.00", | 2190 | "url": "https://www.paypal.me/colinpodell/10.00", |
2130 | "type": "custom" | 2191 | "type": "custom" |
2131 | }, | 2192 | }, |
2132 | { | 2193 | { |
2133 | "url": "https://github.com/colinodell", | 2194 | "url": "https://github.com/colinodell", |
2134 | "type": "github" | 2195 | "type": "github" |
2135 | }, | 2196 | }, |
2136 | { | 2197 | { |
2137 | "url": "https://tidelift.com/funding/github/packagist/league/commonmark", | 2198 | "url": "https://tidelift.com/funding/github/packagist/league/commonmark", |
2138 | "type": "tidelift" | 2199 | "type": "tidelift" |
2139 | } | 2200 | } |
2140 | ], | 2201 | ], |
2141 | "time": "2023-03-24T15:16:10+00:00" | 2202 | "time": "2023-03-24T15:16:10+00:00" |
2142 | }, | 2203 | }, |
2143 | { | 2204 | { |
2144 | "name": "league/config", | 2205 | "name": "league/config", |
2145 | "version": "v1.2.0", | 2206 | "version": "v1.2.0", |
2146 | "source": { | 2207 | "source": { |
2147 | "type": "git", | 2208 | "type": "git", |
2148 | "url": "https://github.com/thephpleague/config.git", | 2209 | "url": "https://github.com/thephpleague/config.git", |
2149 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" | 2210 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" |
2150 | }, | 2211 | }, |
2151 | "dist": { | 2212 | "dist": { |
2152 | "type": "zip", | 2213 | "type": "zip", |
2153 | "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", | 2214 | "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", |
2154 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", | 2215 | "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", |
2155 | "shasum": "" | 2216 | "shasum": "" |
2156 | }, | 2217 | }, |
2157 | "require": { | 2218 | "require": { |
2158 | "dflydev/dot-access-data": "^3.0.1", | 2219 | "dflydev/dot-access-data": "^3.0.1", |
2159 | "nette/schema": "^1.2", | 2220 | "nette/schema": "^1.2", |
2160 | "php": "^7.4 || ^8.0" | 2221 | "php": "^7.4 || ^8.0" |
2161 | }, | 2222 | }, |
2162 | "require-dev": { | 2223 | "require-dev": { |
2163 | "phpstan/phpstan": "^1.8.2", | 2224 | "phpstan/phpstan": "^1.8.2", |
2164 | "phpunit/phpunit": "^9.5.5", | 2225 | "phpunit/phpunit": "^9.5.5", |
2165 | "scrutinizer/ocular": "^1.8.1", | 2226 | "scrutinizer/ocular": "^1.8.1", |
2166 | "unleashedtech/php-coding-standard": "^3.1", | 2227 | "unleashedtech/php-coding-standard": "^3.1", |
2167 | "vimeo/psalm": "^4.7.3" | 2228 | "vimeo/psalm": "^4.7.3" |
2168 | }, | 2229 | }, |
2169 | "type": "library", | 2230 | "type": "library", |
2170 | "extra": { | 2231 | "extra": { |
2171 | "branch-alias": { | 2232 | "branch-alias": { |
2172 | "dev-main": "1.2-dev" | 2233 | "dev-main": "1.2-dev" |
2173 | } | 2234 | } |
2174 | }, | 2235 | }, |
2175 | "autoload": { | 2236 | "autoload": { |
2176 | "psr-4": { | 2237 | "psr-4": { |
2177 | "League\\Config\\": "src" | 2238 | "League\\Config\\": "src" |
2178 | } | 2239 | } |
2179 | }, | 2240 | }, |
2180 | "notification-url": "https://packagist.org/downloads/", | 2241 | "notification-url": "https://packagist.org/downloads/", |
2181 | "license": [ | 2242 | "license": [ |
2182 | "BSD-3-Clause" | 2243 | "BSD-3-Clause" |
2183 | ], | 2244 | ], |
2184 | "authors": [ | 2245 | "authors": [ |
2185 | { | 2246 | { |
2186 | "name": "Colin O'Dell", | 2247 | "name": "Colin O'Dell", |
2187 | "email": "colinodell@gmail.com", | 2248 | "email": "colinodell@gmail.com", |
2188 | "homepage": "https://www.colinodell.com", | 2249 | "homepage": "https://www.colinodell.com", |
2189 | "role": "Lead Developer" | 2250 | "role": "Lead Developer" |
2190 | } | 2251 | } |
2191 | ], | 2252 | ], |
2192 | "description": "Define configuration arrays with strict schemas and access values with dot notation", | 2253 | "description": "Define configuration arrays with strict schemas and access values with dot notation", |
2193 | "homepage": "https://config.thephpleague.com", | 2254 | "homepage": "https://config.thephpleague.com", |
2194 | "keywords": [ | 2255 | "keywords": [ |
2195 | "array", | 2256 | "array", |
2196 | "config", | 2257 | "config", |
2197 | "configuration", | 2258 | "configuration", |
2198 | "dot", | 2259 | "dot", |
2199 | "dot-access", | 2260 | "dot-access", |
2200 | "nested", | 2261 | "nested", |
2201 | "schema" | 2262 | "schema" |
2202 | ], | 2263 | ], |
2203 | "support": { | 2264 | "support": { |
2204 | "docs": "https://config.thephpleague.com/", | 2265 | "docs": "https://config.thephpleague.com/", |
2205 | "issues": "https://github.com/thephpleague/config/issues", | 2266 | "issues": "https://github.com/thephpleague/config/issues", |
2206 | "rss": "https://github.com/thephpleague/config/releases.atom", | 2267 | "rss": "https://github.com/thephpleague/config/releases.atom", |
2207 | "source": "https://github.com/thephpleague/config" | 2268 | "source": "https://github.com/thephpleague/config" |
2208 | }, | 2269 | }, |
2209 | "funding": [ | 2270 | "funding": [ |
2210 | { | 2271 | { |
2211 | "url": "https://www.colinodell.com/sponsor", | 2272 | "url": "https://www.colinodell.com/sponsor", |
2212 | "type": "custom" | 2273 | "type": "custom" |
2213 | }, | 2274 | }, |
2214 | { | 2275 | { |
2215 | "url": "https://www.paypal.me/colinpodell/10.00", | 2276 | "url": "https://www.paypal.me/colinpodell/10.00", |
2216 | "type": "custom" | 2277 | "type": "custom" |
2217 | }, | 2278 | }, |
2218 | { | 2279 | { |
2219 | "url": "https://github.com/colinodell", | 2280 | "url": "https://github.com/colinodell", |
2220 | "type": "github" | 2281 | "type": "github" |
2221 | } | 2282 | } |
2222 | ], | 2283 | ], |
2223 | "time": "2022-12-11T20:36:23+00:00" | 2284 | "time": "2022-12-11T20:36:23+00:00" |
2224 | }, | 2285 | }, |
2225 | { | 2286 | { |
2226 | "name": "league/flysystem", | 2287 | "name": "league/flysystem", |
2227 | "version": "3.15.1", | 2288 | "version": "3.15.1", |
2228 | "source": { | 2289 | "source": { |
2229 | "type": "git", | 2290 | "type": "git", |
2230 | "url": "https://github.com/thephpleague/flysystem.git", | 2291 | "url": "https://github.com/thephpleague/flysystem.git", |
2231 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed" | 2292 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed" |
2232 | }, | 2293 | }, |
2233 | "dist": { | 2294 | "dist": { |
2234 | "type": "zip", | 2295 | "type": "zip", |
2235 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed", | 2296 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed", |
2236 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed", | 2297 | "reference": "a141d430414fcb8bf797a18716b09f759a385bed", |
2237 | "shasum": "" | 2298 | "shasum": "" |
2238 | }, | 2299 | }, |
2239 | "require": { | 2300 | "require": { |
2240 | "league/flysystem-local": "^3.0.0", | 2301 | "league/flysystem-local": "^3.0.0", |
2241 | "league/mime-type-detection": "^1.0.0", | 2302 | "league/mime-type-detection": "^1.0.0", |
2242 | "php": "^8.0.2" | 2303 | "php": "^8.0.2" |
2243 | }, | 2304 | }, |
2244 | "conflict": { | 2305 | "conflict": { |
2245 | "aws/aws-sdk-php": "3.209.31 || 3.210.0", | 2306 | "aws/aws-sdk-php": "3.209.31 || 3.210.0", |
2246 | "guzzlehttp/guzzle": "<7.0", | 2307 | "guzzlehttp/guzzle": "<7.0", |
2247 | "guzzlehttp/ringphp": "<1.1.1", | 2308 | "guzzlehttp/ringphp": "<1.1.1", |
2248 | "phpseclib/phpseclib": "3.0.15", | 2309 | "phpseclib/phpseclib": "3.0.15", |
2249 | "symfony/http-client": "<5.2" | 2310 | "symfony/http-client": "<5.2" |
2250 | }, | 2311 | }, |
2251 | "require-dev": { | 2312 | "require-dev": { |
2252 | "async-aws/s3": "^1.5", | 2313 | "async-aws/s3": "^1.5", |
2253 | "async-aws/simple-s3": "^1.1", | 2314 | "async-aws/simple-s3": "^1.1", |
2254 | "aws/aws-sdk-php": "^3.220.0", | 2315 | "aws/aws-sdk-php": "^3.220.0", |
2255 | "composer/semver": "^3.0", | 2316 | "composer/semver": "^3.0", |
2256 | "ext-fileinfo": "*", | 2317 | "ext-fileinfo": "*", |
2257 | "ext-ftp": "*", | 2318 | "ext-ftp": "*", |
2258 | "ext-zip": "*", | 2319 | "ext-zip": "*", |
2259 | "friendsofphp/php-cs-fixer": "^3.5", | 2320 | "friendsofphp/php-cs-fixer": "^3.5", |
2260 | "google/cloud-storage": "^1.23", | 2321 | "google/cloud-storage": "^1.23", |
2261 | "microsoft/azure-storage-blob": "^1.1", | 2322 | "microsoft/azure-storage-blob": "^1.1", |
2262 | "phpseclib/phpseclib": "^3.0.14", | 2323 | "phpseclib/phpseclib": "^3.0.14", |
2263 | "phpstan/phpstan": "^0.12.26", | 2324 | "phpstan/phpstan": "^0.12.26", |
2264 | "phpunit/phpunit": "^9.5.11", | 2325 | "phpunit/phpunit": "^9.5.11", |
2265 | "sabre/dav": "^4.3.1" | 2326 | "sabre/dav": "^4.3.1" |
2266 | }, | 2327 | }, |
2267 | "type": "library", | 2328 | "type": "library", |
2268 | "autoload": { | 2329 | "autoload": { |
2269 | "psr-4": { | 2330 | "psr-4": { |
2270 | "League\\Flysystem\\": "src" | 2331 | "League\\Flysystem\\": "src" |
2271 | } | 2332 | } |
2272 | }, | 2333 | }, |
2273 | "notification-url": "https://packagist.org/downloads/", | 2334 | "notification-url": "https://packagist.org/downloads/", |
2274 | "license": [ | 2335 | "license": [ |
2275 | "MIT" | 2336 | "MIT" |
2276 | ], | 2337 | ], |
2277 | "authors": [ | 2338 | "authors": [ |
2278 | { | 2339 | { |
2279 | "name": "Frank de Jonge", | 2340 | "name": "Frank de Jonge", |
2280 | "email": "info@frankdejonge.nl" | 2341 | "email": "info@frankdejonge.nl" |
2281 | } | 2342 | } |
2282 | ], | 2343 | ], |
2283 | "description": "File storage abstraction for PHP", | 2344 | "description": "File storage abstraction for PHP", |
2284 | "keywords": [ | 2345 | "keywords": [ |
2285 | "WebDAV", | 2346 | "WebDAV", |
2286 | "aws", | 2347 | "aws", |
2287 | "cloud", | 2348 | "cloud", |
2288 | "file", | 2349 | "file", |
2289 | "files", | 2350 | "files", |
2290 | "filesystem", | 2351 | "filesystem", |
2291 | "filesystems", | 2352 | "filesystems", |
2292 | "ftp", | 2353 | "ftp", |
2293 | "s3", | 2354 | "s3", |
2294 | "sftp", | 2355 | "sftp", |
2295 | "storage" | 2356 | "storage" |
2296 | ], | 2357 | ], |
2297 | "support": { | 2358 | "support": { |
2298 | "issues": "https://github.com/thephpleague/flysystem/issues", | 2359 | "issues": "https://github.com/thephpleague/flysystem/issues", |
2299 | "source": "https://github.com/thephpleague/flysystem/tree/3.15.1" | 2360 | "source": "https://github.com/thephpleague/flysystem/tree/3.15.1" |
2300 | }, | 2361 | }, |
2301 | "funding": [ | 2362 | "funding": [ |
2302 | { | 2363 | { |
2303 | "url": "https://ecologi.com/frankdejonge", | 2364 | "url": "https://ecologi.com/frankdejonge", |
2304 | "type": "custom" | 2365 | "type": "custom" |
2305 | }, | 2366 | }, |
2306 | { | 2367 | { |
2307 | "url": "https://github.com/frankdejonge", | 2368 | "url": "https://github.com/frankdejonge", |
2308 | "type": "github" | 2369 | "type": "github" |
2309 | } | 2370 | } |
2310 | ], | 2371 | ], |
2311 | "time": "2023-05-04T09:04:26+00:00" | 2372 | "time": "2023-05-04T09:04:26+00:00" |
2312 | }, | 2373 | }, |
2313 | { | 2374 | { |
2314 | "name": "league/flysystem-local", | 2375 | "name": "league/flysystem-local", |
2315 | "version": "3.15.0", | 2376 | "version": "3.15.0", |
2316 | "source": { | 2377 | "source": { |
2317 | "type": "git", | 2378 | "type": "git", |
2318 | "url": "https://github.com/thephpleague/flysystem-local.git", | 2379 | "url": "https://github.com/thephpleague/flysystem-local.git", |
2319 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3" | 2380 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3" |
2320 | }, | 2381 | }, |
2321 | "dist": { | 2382 | "dist": { |
2322 | "type": "zip", | 2383 | "type": "zip", |
2323 | "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3", | 2384 | "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3", |
2324 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3", | 2385 | "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3", |
2325 | "shasum": "" | 2386 | "shasum": "" |
2326 | }, | 2387 | }, |
2327 | "require": { | 2388 | "require": { |
2328 | "ext-fileinfo": "*", | 2389 | "ext-fileinfo": "*", |
2329 | "league/flysystem": "^3.0.0", | 2390 | "league/flysystem": "^3.0.0", |
2330 | "league/mime-type-detection": "^1.0.0", | 2391 | "league/mime-type-detection": "^1.0.0", |
2331 | "php": "^8.0.2" | 2392 | "php": "^8.0.2" |
2332 | }, | 2393 | }, |
2333 | "type": "library", | 2394 | "type": "library", |
2334 | "autoload": { | 2395 | "autoload": { |
2335 | "psr-4": { | 2396 | "psr-4": { |
2336 | "League\\Flysystem\\Local\\": "" | 2397 | "League\\Flysystem\\Local\\": "" |
2337 | } | 2398 | } |
2338 | }, | 2399 | }, |
2339 | "notification-url": "https://packagist.org/downloads/", | 2400 | "notification-url": "https://packagist.org/downloads/", |
2340 | "license": [ | 2401 | "license": [ |
2341 | "MIT" | 2402 | "MIT" |
2342 | ], | 2403 | ], |
2343 | "authors": [ | 2404 | "authors": [ |
2344 | { | 2405 | { |
2345 | "name": "Frank de Jonge", | 2406 | "name": "Frank de Jonge", |
2346 | "email": "info@frankdejonge.nl" | 2407 | "email": "info@frankdejonge.nl" |
2347 | } | 2408 | } |
2348 | ], | 2409 | ], |
2349 | "description": "Local filesystem adapter for Flysystem.", | 2410 | "description": "Local filesystem adapter for Flysystem.", |
2350 | "keywords": [ | 2411 | "keywords": [ |
2351 | "Flysystem", | 2412 | "Flysystem", |
2352 | "file", | 2413 | "file", |
2353 | "files", | 2414 | "files", |
2354 | "filesystem", | 2415 | "filesystem", |
2355 | "local" | 2416 | "local" |
2356 | ], | 2417 | ], |
2357 | "support": { | 2418 | "support": { |
2358 | "issues": "https://github.com/thephpleague/flysystem-local/issues", | 2419 | "issues": "https://github.com/thephpleague/flysystem-local/issues", |
2359 | "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0" | 2420 | "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0" |
2360 | }, | 2421 | }, |
2361 | "funding": [ | 2422 | "funding": [ |
2362 | { | 2423 | { |
2363 | "url": "https://ecologi.com/frankdejonge", | 2424 | "url": "https://ecologi.com/frankdejonge", |
2364 | "type": "custom" | 2425 | "type": "custom" |
2365 | }, | 2426 | }, |
2366 | { | 2427 | { |
2367 | "url": "https://github.com/frankdejonge", | 2428 | "url": "https://github.com/frankdejonge", |
2368 | "type": "github" | 2429 | "type": "github" |
2369 | } | 2430 | } |
2370 | ], | 2431 | ], |
2371 | "time": "2023-05-02T20:02:14+00:00" | 2432 | "time": "2023-05-02T20:02:14+00:00" |
2372 | }, | 2433 | }, |
2373 | { | 2434 | { |
2374 | "name": "league/mime-type-detection", | 2435 | "name": "league/mime-type-detection", |
2375 | "version": "1.11.0", | 2436 | "version": "1.11.0", |
2376 | "source": { | 2437 | "source": { |
2377 | "type": "git", | 2438 | "type": "git", |
2378 | "url": "https://github.com/thephpleague/mime-type-detection.git", | 2439 | "url": "https://github.com/thephpleague/mime-type-detection.git", |
2379 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" | 2440 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" |
2380 | }, | 2441 | }, |
2381 | "dist": { | 2442 | "dist": { |
2382 | "type": "zip", | 2443 | "type": "zip", |
2383 | "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", | 2444 | "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", |
2384 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", | 2445 | "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", |
2385 | "shasum": "" | 2446 | "shasum": "" |
2386 | }, | 2447 | }, |
2387 | "require": { | 2448 | "require": { |
2388 | "ext-fileinfo": "*", | 2449 | "ext-fileinfo": "*", |
2389 | "php": "^7.2 || ^8.0" | 2450 | "php": "^7.2 || ^8.0" |
2390 | }, | 2451 | }, |
2391 | "require-dev": { | 2452 | "require-dev": { |
2392 | "friendsofphp/php-cs-fixer": "^3.2", | 2453 | "friendsofphp/php-cs-fixer": "^3.2", |
2393 | "phpstan/phpstan": "^0.12.68", | 2454 | "phpstan/phpstan": "^0.12.68", |
2394 | "phpunit/phpunit": "^8.5.8 || ^9.3" | 2455 | "phpunit/phpunit": "^8.5.8 || ^9.3" |
2395 | }, | 2456 | }, |
2396 | "type": "library", | 2457 | "type": "library", |
2397 | "autoload": { | 2458 | "autoload": { |
2398 | "psr-4": { | 2459 | "psr-4": { |
2399 | "League\\MimeTypeDetection\\": "src" | 2460 | "League\\MimeTypeDetection\\": "src" |
2400 | } | 2461 | } |
2401 | }, | 2462 | }, |
2402 | "notification-url": "https://packagist.org/downloads/", | 2463 | "notification-url": "https://packagist.org/downloads/", |
2403 | "license": [ | 2464 | "license": [ |
2404 | "MIT" | 2465 | "MIT" |
2405 | ], | 2466 | ], |
2406 | "authors": [ | 2467 | "authors": [ |
2407 | { | 2468 | { |
2408 | "name": "Frank de Jonge", | 2469 | "name": "Frank de Jonge", |
2409 | "email": "info@frankdejonge.nl" | 2470 | "email": "info@frankdejonge.nl" |
2410 | } | 2471 | } |
2411 | ], | 2472 | ], |
2412 | "description": "Mime-type detection for Flysystem", | 2473 | "description": "Mime-type detection for Flysystem", |
2413 | "support": { | 2474 | "support": { |
2414 | "issues": "https://github.com/thephpleague/mime-type-detection/issues", | 2475 | "issues": "https://github.com/thephpleague/mime-type-detection/issues", |
2415 | "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" | 2476 | "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" |
2416 | }, | 2477 | }, |
2417 | "funding": [ | 2478 | "funding": [ |
2418 | { | 2479 | { |
2419 | "url": "https://github.com/frankdejonge", | 2480 | "url": "https://github.com/frankdejonge", |
2420 | "type": "github" | 2481 | "type": "github" |
2421 | }, | 2482 | }, |
2422 | { | 2483 | { |
2423 | "url": "https://tidelift.com/funding/github/packagist/league/flysystem", | 2484 | "url": "https://tidelift.com/funding/github/packagist/league/flysystem", |
2424 | "type": "tidelift" | 2485 | "type": "tidelift" |
2425 | } | 2486 | } |
2426 | ], | 2487 | ], |
2427 | "time": "2022-04-17T13:12:02+00:00" | 2488 | "time": "2022-04-17T13:12:02+00:00" |
2428 | }, | 2489 | }, |
2429 | { | 2490 | { |
2430 | "name": "league/uri-parser", | 2491 | "name": "league/uri-parser", |
2431 | "version": "1.4.1", | 2492 | "version": "1.4.1", |
2432 | "source": { | 2493 | "source": { |
2433 | "type": "git", | 2494 | "type": "git", |
2434 | "url": "https://github.com/thephpleague/uri-parser.git", | 2495 | "url": "https://github.com/thephpleague/uri-parser.git", |
2435 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00" | 2496 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00" |
2436 | }, | 2497 | }, |
2437 | "dist": { | 2498 | "dist": { |
2438 | "type": "zip", | 2499 | "type": "zip", |
2439 | "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00", | 2500 | "url": "https://api.github.com/repos/thephpleague/uri-parser/zipball/671548427e4c932352d9b9279fdfa345bf63fa00", |
2440 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00", | 2501 | "reference": "671548427e4c932352d9b9279fdfa345bf63fa00", |
2441 | "shasum": "" | 2502 | "shasum": "" |
2442 | }, | 2503 | }, |
2443 | "require": { | 2504 | "require": { |
2444 | "php": ">=7.0.0" | 2505 | "php": ">=7.0.0" |
2445 | }, | 2506 | }, |
2446 | "require-dev": { | 2507 | "require-dev": { |
2447 | "friendsofphp/php-cs-fixer": "^2.0", | 2508 | "friendsofphp/php-cs-fixer": "^2.0", |
2448 | "phpstan/phpstan": "^0.9.2", | 2509 | "phpstan/phpstan": "^0.9.2", |
2449 | "phpstan/phpstan-phpunit": "^0.9.4", | 2510 | "phpstan/phpstan-phpunit": "^0.9.4", |
2450 | "phpstan/phpstan-strict-rules": "^0.9.0", | 2511 | "phpstan/phpstan-strict-rules": "^0.9.0", |
2451 | "phpunit/phpunit": "^6.0" | 2512 | "phpunit/phpunit": "^6.0" |
2452 | }, | 2513 | }, |
2453 | "suggest": { | 2514 | "suggest": { |
2454 | "ext-intl": "Allow parsing RFC3987 compliant hosts", | 2515 | "ext-intl": "Allow parsing RFC3987 compliant hosts", |
2455 | "league/uri-schemes": "Allow validating and normalizing URI parsing results" | 2516 | "league/uri-schemes": "Allow validating and normalizing URI parsing results" |
2456 | }, | 2517 | }, |
2457 | "type": "library", | 2518 | "type": "library", |
2458 | "extra": { | 2519 | "extra": { |
2459 | "branch-alias": { | 2520 | "branch-alias": { |
2460 | "dev-master": "1.x-dev" | 2521 | "dev-master": "1.x-dev" |
2461 | } | 2522 | } |
2462 | }, | 2523 | }, |
2463 | "autoload": { | 2524 | "autoload": { |
2464 | "files": [ | 2525 | "files": [ |
2465 | "src/functions_include.php" | 2526 | "src/functions_include.php" |
2466 | ], | 2527 | ], |
2467 | "psr-4": { | 2528 | "psr-4": { |
2468 | "League\\Uri\\": "src" | 2529 | "League\\Uri\\": "src" |
2469 | } | 2530 | } |
2470 | }, | 2531 | }, |
2471 | "notification-url": "https://packagist.org/downloads/", | 2532 | "notification-url": "https://packagist.org/downloads/", |
2472 | "license": [ | 2533 | "license": [ |
2473 | "MIT" | 2534 | "MIT" |
2474 | ], | 2535 | ], |
2475 | "authors": [ | 2536 | "authors": [ |
2476 | { | 2537 | { |
2477 | "name": "Ignace Nyamagana Butera", | 2538 | "name": "Ignace Nyamagana Butera", |
2478 | "email": "nyamsprod@gmail.com", | 2539 | "email": "nyamsprod@gmail.com", |
2479 | "homepage": "https://nyamsprod.com" | 2540 | "homepage": "https://nyamsprod.com" |
2480 | } | 2541 | } |
2481 | ], | 2542 | ], |
2482 | "description": "userland URI parser RFC 3986 compliant", | 2543 | "description": "userland URI parser RFC 3986 compliant", |
2483 | "homepage": "https://github.com/thephpleague/uri-parser", | 2544 | "homepage": "https://github.com/thephpleague/uri-parser", |
2484 | "keywords": [ | 2545 | "keywords": [ |
2485 | "parse_url", | 2546 | "parse_url", |
2486 | "parser", | 2547 | "parser", |
2487 | "rfc3986", | 2548 | "rfc3986", |
2488 | "rfc3987", | 2549 | "rfc3987", |
2489 | "uri", | 2550 | "uri", |
2490 | "url" | 2551 | "url" |
2491 | ], | 2552 | ], |
2492 | "support": { | 2553 | "support": { |
2493 | "issues": "https://github.com/thephpleague/uri-parser/issues", | 2554 | "issues": "https://github.com/thephpleague/uri-parser/issues", |
2494 | "source": "https://github.com/thephpleague/uri-parser/tree/master" | 2555 | "source": "https://github.com/thephpleague/uri-parser/tree/master" |
2495 | }, | 2556 | }, |
2496 | "abandoned": true, | 2557 | "abandoned": true, |
2497 | "time": "2018-11-22T07:55:51+00:00" | 2558 | "time": "2018-11-22T07:55:51+00:00" |
2498 | }, | 2559 | }, |
2499 | { | 2560 | { |
2500 | "name": "livewire/livewire", | 2561 | "name": "livewire/livewire", |
2501 | "version": "v2.12.3", | 2562 | "version": "v2.12.3", |
2502 | "source": { | 2563 | "source": { |
2503 | "type": "git", | 2564 | "type": "git", |
2504 | "url": "https://github.com/livewire/livewire.git", | 2565 | "url": "https://github.com/livewire/livewire.git", |
2505 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74" | 2566 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74" |
2506 | }, | 2567 | }, |
2507 | "dist": { | 2568 | "dist": { |
2508 | "type": "zip", | 2569 | "type": "zip", |
2509 | "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", | 2570 | "url": "https://api.github.com/repos/livewire/livewire/zipball/019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", |
2510 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", | 2571 | "reference": "019b1e69d8cd8c7e749eba7a38e4fa69ecbc8f74", |
2511 | "shasum": "" | 2572 | "shasum": "" |
2512 | }, | 2573 | }, |
2513 | "require": { | 2574 | "require": { |
2514 | "illuminate/database": "^7.0|^8.0|^9.0|^10.0", | 2575 | "illuminate/database": "^7.0|^8.0|^9.0|^10.0", |
2515 | "illuminate/support": "^7.0|^8.0|^9.0|^10.0", | 2576 | "illuminate/support": "^7.0|^8.0|^9.0|^10.0", |
2516 | "illuminate/validation": "^7.0|^8.0|^9.0|^10.0", | 2577 | "illuminate/validation": "^7.0|^8.0|^9.0|^10.0", |
2517 | "league/mime-type-detection": "^1.9", | 2578 | "league/mime-type-detection": "^1.9", |
2518 | "php": "^7.2.5|^8.0", | 2579 | "php": "^7.2.5|^8.0", |
2519 | "symfony/http-kernel": "^5.0|^6.0" | 2580 | "symfony/http-kernel": "^5.0|^6.0" |
2520 | }, | 2581 | }, |
2521 | "require-dev": { | 2582 | "require-dev": { |
2522 | "calebporzio/sushi": "^2.1", | 2583 | "calebporzio/sushi": "^2.1", |
2523 | "laravel/framework": "^7.0|^8.0|^9.0|^10.0", | 2584 | "laravel/framework": "^7.0|^8.0|^9.0|^10.0", |
2524 | "mockery/mockery": "^1.3.1", | 2585 | "mockery/mockery": "^1.3.1", |
2525 | "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", | 2586 | "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", |
2526 | "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0", | 2587 | "orchestra/testbench-dusk": "^5.2|^6.0|^7.0|^8.0", |
2527 | "phpunit/phpunit": "^8.4|^9.0", | 2588 | "phpunit/phpunit": "^8.4|^9.0", |
2528 | "psy/psysh": "@stable" | 2589 | "psy/psysh": "@stable" |
2529 | }, | 2590 | }, |
2530 | "type": "library", | 2591 | "type": "library", |
2531 | "extra": { | 2592 | "extra": { |
2532 | "laravel": { | 2593 | "laravel": { |
2533 | "providers": [ | 2594 | "providers": [ |
2534 | "Livewire\\LivewireServiceProvider" | 2595 | "Livewire\\LivewireServiceProvider" |
2535 | ], | 2596 | ], |
2536 | "aliases": { | 2597 | "aliases": { |
2537 | "Livewire": "Livewire\\Livewire" | 2598 | "Livewire": "Livewire\\Livewire" |
2538 | } | 2599 | } |
2539 | } | 2600 | } |
2540 | }, | 2601 | }, |
2541 | "autoload": { | 2602 | "autoload": { |
2542 | "files": [ | 2603 | "files": [ |
2543 | "src/helpers.php" | 2604 | "src/helpers.php" |
2544 | ], | 2605 | ], |
2545 | "psr-4": { | 2606 | "psr-4": { |
2546 | "Livewire\\": "src/" | 2607 | "Livewire\\": "src/" |
2547 | } | 2608 | } |
2548 | }, | 2609 | }, |
2549 | "notification-url": "https://packagist.org/downloads/", | 2610 | "notification-url": "https://packagist.org/downloads/", |
2550 | "license": [ | 2611 | "license": [ |
2551 | "MIT" | 2612 | "MIT" |
2552 | ], | 2613 | ], |
2553 | "authors": [ | 2614 | "authors": [ |
2554 | { | 2615 | { |
2555 | "name": "Caleb Porzio", | 2616 | "name": "Caleb Porzio", |
2556 | "email": "calebporzio@gmail.com" | 2617 | "email": "calebporzio@gmail.com" |
2557 | } | 2618 | } |
2558 | ], | 2619 | ], |
2559 | "description": "A front-end framework for Laravel.", | 2620 | "description": "A front-end framework for Laravel.", |
2560 | "support": { | 2621 | "support": { |
2561 | "issues": "https://github.com/livewire/livewire/issues", | 2622 | "issues": "https://github.com/livewire/livewire/issues", |
2562 | "source": "https://github.com/livewire/livewire/tree/v2.12.3" | 2623 | "source": "https://github.com/livewire/livewire/tree/v2.12.3" |
2563 | }, | 2624 | }, |
2564 | "funding": [ | 2625 | "funding": [ |
2565 | { | 2626 | { |
2566 | "url": "https://github.com/livewire", | 2627 | "url": "https://github.com/livewire", |
2567 | "type": "github" | 2628 | "type": "github" |
2568 | } | 2629 | } |
2569 | ], | 2630 | ], |
2570 | "time": "2023-03-03T20:12:38+00:00" | 2631 | "time": "2023-03-03T20:12:38+00:00" |
2571 | }, | 2632 | }, |
2572 | { | 2633 | { |
2634 | "name": "maennchen/zipstream-php", | ||
2635 | "version": "3.1.0", | ||
2636 | "source": { | ||
2637 | "type": "git", | ||
2638 | "url": "https://github.com/maennchen/ZipStream-PHP.git", | ||
2639 | "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1" | ||
2640 | }, | ||
2641 | "dist": { | ||
2642 | "type": "zip", | ||
2643 | "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/b8174494eda667f7d13876b4a7bfef0f62a7c0d1", | ||
2644 | "reference": "b8174494eda667f7d13876b4a7bfef0f62a7c0d1", | ||
2645 | "shasum": "" | ||
2646 | }, | ||
2647 | "require": { | ||
2648 | "ext-mbstring": "*", | ||
2649 | "ext-zlib": "*", | ||
2650 | "php-64bit": "^8.1" | ||
2651 | }, | ||
2652 | "require-dev": { | ||
2653 | "ext-zip": "*", | ||
2654 | "friendsofphp/php-cs-fixer": "^3.16", | ||
2655 | "guzzlehttp/guzzle": "^7.5", | ||
2656 | "mikey179/vfsstream": "^1.6", | ||
2657 | "php-coveralls/php-coveralls": "^2.5", | ||
2658 | "phpunit/phpunit": "^10.0", | ||
2659 | "vimeo/psalm": "^5.0" | ||
2660 | }, | ||
2661 | "suggest": { | ||
2662 | "guzzlehttp/psr7": "^2.4", | ||
2663 | "psr/http-message": "^2.0" | ||
2664 | }, | ||
2665 | "type": "library", | ||
2666 | "autoload": { | ||
2667 | "psr-4": { | ||
2668 | "ZipStream\\": "src/" | ||
2669 | } | ||
2670 | }, | ||
2671 | "notification-url": "https://packagist.org/downloads/", | ||
2672 | "license": [ | ||
2673 | "MIT" | ||
2674 | ], | ||
2675 | "authors": [ | ||
2676 | { | ||
2677 | "name": "Paul Duncan", | ||
2678 | "email": "pabs@pablotron.org" | ||
2679 | }, | ||
2680 | { | ||
2681 | "name": "Jonatan Männchen", | ||
2682 | "email": "jonatan@maennchen.ch" | ||
2683 | }, | ||
2684 | { | ||
2685 | "name": "Jesse Donat", | ||
2686 | "email": "donatj@gmail.com" | ||
2687 | }, | ||
2688 | { | ||
2689 | "name": "András Kolesár", | ||
2690 | "email": "kolesar@kolesar.hu" | ||
2691 | } | ||
2692 | ], | ||
2693 | "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.", | ||
2694 | "keywords": [ | ||
2695 | "stream", | ||
2696 | "zip" | ||
2697 | ], | ||
2698 | "support": { | ||
2699 | "issues": "https://github.com/maennchen/ZipStream-PHP/issues", | ||
2700 | "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.0" | ||
2701 | }, | ||
2702 | "funding": [ | ||
2703 | { | ||
2704 | "url": "https://github.com/maennchen", | ||
2705 | "type": "github" | ||
2706 | }, | ||
2707 | { | ||
2708 | "url": "https://opencollective.com/zipstream", | ||
2709 | "type": "open_collective" | ||
2710 | } | ||
2711 | ], | ||
2712 | "time": "2023-06-21T14:59:35+00:00" | ||
2713 | }, | ||
2714 | { | ||
2715 | "name": "markbaker/complex", | ||
2716 | "version": "3.0.2", | ||
2717 | "source": { | ||
2718 | "type": "git", | ||
2719 | "url": "https://github.com/MarkBaker/PHPComplex.git", | ||
2720 | "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9" | ||
2721 | }, | ||
2722 | "dist": { | ||
2723 | "type": "zip", | ||
2724 | "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9", | ||
2725 | "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9", | ||
2726 | "shasum": "" | ||
2727 | }, | ||
2728 | "require": { | ||
2729 | "php": "^7.2 || ^8.0" | ||
2730 | }, | ||
2731 | "require-dev": { | ||
2732 | "dealerdirect/phpcodesniffer-composer-installer": "dev-master", | ||
2733 | "phpcompatibility/php-compatibility": "^9.3", | ||
2734 | "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", | ||
2735 | "squizlabs/php_codesniffer": "^3.7" | ||
2736 | }, | ||
2737 | "type": "library", | ||
2738 | "autoload": { | ||
2739 | "psr-4": { | ||
2740 | "Complex\\": "classes/src/" | ||
2741 | } | ||
2742 | }, | ||
2743 | "notification-url": "https://packagist.org/downloads/", | ||
2744 | "license": [ | ||
2745 | "MIT" | ||
2746 | ], | ||
2747 | "authors": [ | ||
2748 | { | ||
2749 | "name": "Mark Baker", | ||
2750 | "email": "mark@lange.demon.co.uk" | ||
2751 | } | ||
2752 | ], | ||
2753 | "description": "PHP Class for working with complex numbers", | ||
2754 | "homepage": "https://github.com/MarkBaker/PHPComplex", | ||
2755 | "keywords": [ | ||
2756 | "complex", | ||
2757 | "mathematics" | ||
2758 | ], | ||
2759 | "support": { | ||
2760 | "issues": "https://github.com/MarkBaker/PHPComplex/issues", | ||
2761 | "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2" | ||
2762 | }, | ||
2763 | "time": "2022-12-06T16:21:08+00:00" | ||
2764 | }, | ||
2765 | { | ||
2766 | "name": "markbaker/matrix", | ||
2767 | "version": "3.0.1", | ||
2768 | "source": { | ||
2769 | "type": "git", | ||
2770 | "url": "https://github.com/MarkBaker/PHPMatrix.git", | ||
2771 | "reference": "728434227fe21be27ff6d86621a1b13107a2562c" | ||
2772 | }, | ||
2773 | "dist": { | ||
2774 | "type": "zip", | ||
2775 | "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c", | ||
2776 | "reference": "728434227fe21be27ff6d86621a1b13107a2562c", | ||
2777 | "shasum": "" | ||
2778 | }, | ||
2779 | "require": { | ||
2780 | "php": "^7.1 || ^8.0" | ||
2781 | }, | ||
2782 | "require-dev": { | ||
2783 | "dealerdirect/phpcodesniffer-composer-installer": "dev-master", | ||
2784 | "phpcompatibility/php-compatibility": "^9.3", | ||
2785 | "phpdocumentor/phpdocumentor": "2.*", | ||
2786 | "phploc/phploc": "^4.0", | ||
2787 | "phpmd/phpmd": "2.*", | ||
2788 | "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", | ||
2789 | "sebastian/phpcpd": "^4.0", | ||
2790 | "squizlabs/php_codesniffer": "^3.7" | ||
2791 | }, | ||
2792 | "type": "library", | ||
2793 | "autoload": { | ||
2794 | "psr-4": { | ||
2795 | "Matrix\\": "classes/src/" | ||
2796 | } | ||
2797 | }, | ||
2798 | "notification-url": "https://packagist.org/downloads/", | ||
2799 | "license": [ | ||
2800 | "MIT" | ||
2801 | ], | ||
2802 | "authors": [ | ||
2803 | { | ||
2804 | "name": "Mark Baker", | ||
2805 | "email": "mark@demon-angel.eu" | ||
2806 | } | ||
2807 | ], | ||
2808 | "description": "PHP Class for working with matrices", | ||
2809 | "homepage": "https://github.com/MarkBaker/PHPMatrix", | ||
2810 | "keywords": [ | ||
2811 | "mathematics", | ||
2812 | "matrix", | ||
2813 | "vector" | ||
2814 | ], | ||
2815 | "support": { | ||
2816 | "issues": "https://github.com/MarkBaker/PHPMatrix/issues", | ||
2817 | "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1" | ||
2818 | }, | ||
2819 | "time": "2022-12-02T22:17:43+00:00" | ||
2820 | }, | ||
2821 | { | ||
2573 | "name": "masterminds/html5", | 2822 | "name": "masterminds/html5", |
2574 | "version": "2.8.0", | 2823 | "version": "2.8.0", |
2575 | "source": { | 2824 | "source": { |
2576 | "type": "git", | 2825 | "type": "git", |
2577 | "url": "https://github.com/Masterminds/html5-php.git", | 2826 | "url": "https://github.com/Masterminds/html5-php.git", |
2578 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3" | 2827 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3" |
2579 | }, | 2828 | }, |
2580 | "dist": { | 2829 | "dist": { |
2581 | "type": "zip", | 2830 | "type": "zip", |
2582 | "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", | 2831 | "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", |
2583 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", | 2832 | "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", |
2584 | "shasum": "" | 2833 | "shasum": "" |
2585 | }, | 2834 | }, |
2586 | "require": { | 2835 | "require": { |
2587 | "ext-dom": "*", | 2836 | "ext-dom": "*", |
2588 | "php": ">=5.3.0" | 2837 | "php": ">=5.3.0" |
2589 | }, | 2838 | }, |
2590 | "require-dev": { | 2839 | "require-dev": { |
2591 | "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" | 2840 | "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" |
2592 | }, | 2841 | }, |
2593 | "type": "library", | 2842 | "type": "library", |
2594 | "extra": { | 2843 | "extra": { |
2595 | "branch-alias": { | 2844 | "branch-alias": { |
2596 | "dev-master": "2.7-dev" | 2845 | "dev-master": "2.7-dev" |
2597 | } | 2846 | } |
2598 | }, | 2847 | }, |
2599 | "autoload": { | 2848 | "autoload": { |
2600 | "psr-4": { | 2849 | "psr-4": { |
2601 | "Masterminds\\": "src" | 2850 | "Masterminds\\": "src" |
2602 | } | 2851 | } |
2603 | }, | 2852 | }, |
2604 | "notification-url": "https://packagist.org/downloads/", | 2853 | "notification-url": "https://packagist.org/downloads/", |
2605 | "license": [ | 2854 | "license": [ |
2606 | "MIT" | 2855 | "MIT" |
2607 | ], | 2856 | ], |
2608 | "authors": [ | 2857 | "authors": [ |
2609 | { | 2858 | { |
2610 | "name": "Matt Butcher", | 2859 | "name": "Matt Butcher", |
2611 | "email": "technosophos@gmail.com" | 2860 | "email": "technosophos@gmail.com" |
2612 | }, | 2861 | }, |
2613 | { | 2862 | { |
2614 | "name": "Matt Farina", | 2863 | "name": "Matt Farina", |
2615 | "email": "matt@mattfarina.com" | 2864 | "email": "matt@mattfarina.com" |
2616 | }, | 2865 | }, |
2617 | { | 2866 | { |
2618 | "name": "Asmir Mustafic", | 2867 | "name": "Asmir Mustafic", |
2619 | "email": "goetas@gmail.com" | 2868 | "email": "goetas@gmail.com" |
2620 | } | 2869 | } |
2621 | ], | 2870 | ], |
2622 | "description": "An HTML5 parser and serializer.", | 2871 | "description": "An HTML5 parser and serializer.", |
2623 | "homepage": "http://masterminds.github.io/html5-php", | 2872 | "homepage": "http://masterminds.github.io/html5-php", |
2624 | "keywords": [ | 2873 | "keywords": [ |
2625 | "HTML5", | 2874 | "HTML5", |
2626 | "dom", | 2875 | "dom", |
2627 | "html", | 2876 | "html", |
2628 | "parser", | 2877 | "parser", |
2629 | "querypath", | 2878 | "querypath", |
2630 | "serializer", | 2879 | "serializer", |
2631 | "xml" | 2880 | "xml" |
2632 | ], | 2881 | ], |
2633 | "support": { | 2882 | "support": { |
2634 | "issues": "https://github.com/Masterminds/html5-php/issues", | 2883 | "issues": "https://github.com/Masterminds/html5-php/issues", |
2635 | "source": "https://github.com/Masterminds/html5-php/tree/2.8.0" | 2884 | "source": "https://github.com/Masterminds/html5-php/tree/2.8.0" |
2636 | }, | 2885 | }, |
2637 | "time": "2023-04-26T07:27:39+00:00" | 2886 | "time": "2023-04-26T07:27:39+00:00" |
2638 | }, | 2887 | }, |
2639 | { | 2888 | { |
2640 | "name": "monolog/monolog", | 2889 | "name": "monolog/monolog", |
2641 | "version": "2.9.1", | 2890 | "version": "2.9.1", |
2642 | "source": { | 2891 | "source": { |
2643 | "type": "git", | 2892 | "type": "git", |
2644 | "url": "https://github.com/Seldaek/monolog.git", | 2893 | "url": "https://github.com/Seldaek/monolog.git", |
2645 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" | 2894 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1" |
2646 | }, | 2895 | }, |
2647 | "dist": { | 2896 | "dist": { |
2648 | "type": "zip", | 2897 | "type": "zip", |
2649 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", | 2898 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1", |
2650 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", | 2899 | "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1", |
2651 | "shasum": "" | 2900 | "shasum": "" |
2652 | }, | 2901 | }, |
2653 | "require": { | 2902 | "require": { |
2654 | "php": ">=7.2", | 2903 | "php": ">=7.2", |
2655 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" | 2904 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" |
2656 | }, | 2905 | }, |
2657 | "provide": { | 2906 | "provide": { |
2658 | "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" | 2907 | "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" |
2659 | }, | 2908 | }, |
2660 | "require-dev": { | 2909 | "require-dev": { |
2661 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", | 2910 | "aws/aws-sdk-php": "^2.4.9 || ^3.0", |
2662 | "doctrine/couchdb": "~1.0@dev", | 2911 | "doctrine/couchdb": "~1.0@dev", |
2663 | "elasticsearch/elasticsearch": "^7 || ^8", | 2912 | "elasticsearch/elasticsearch": "^7 || ^8", |
2664 | "ext-json": "*", | 2913 | "ext-json": "*", |
2665 | "graylog2/gelf-php": "^1.4.2 || ^2@dev", | 2914 | "graylog2/gelf-php": "^1.4.2 || ^2@dev", |
2666 | "guzzlehttp/guzzle": "^7.4", | 2915 | "guzzlehttp/guzzle": "^7.4", |
2667 | "guzzlehttp/psr7": "^2.2", | 2916 | "guzzlehttp/psr7": "^2.2", |
2668 | "mongodb/mongodb": "^1.8", | 2917 | "mongodb/mongodb": "^1.8", |
2669 | "php-amqplib/php-amqplib": "~2.4 || ^3", | 2918 | "php-amqplib/php-amqplib": "~2.4 || ^3", |
2670 | "phpspec/prophecy": "^1.15", | 2919 | "phpspec/prophecy": "^1.15", |
2671 | "phpstan/phpstan": "^0.12.91", | 2920 | "phpstan/phpstan": "^0.12.91", |
2672 | "phpunit/phpunit": "^8.5.14", | 2921 | "phpunit/phpunit": "^8.5.14", |
2673 | "predis/predis": "^1.1 || ^2.0", | 2922 | "predis/predis": "^1.1 || ^2.0", |
2674 | "rollbar/rollbar": "^1.3 || ^2 || ^3", | 2923 | "rollbar/rollbar": "^1.3 || ^2 || ^3", |
2675 | "ruflin/elastica": "^7", | 2924 | "ruflin/elastica": "^7", |
2676 | "swiftmailer/swiftmailer": "^5.3|^6.0", | 2925 | "swiftmailer/swiftmailer": "^5.3|^6.0", |
2677 | "symfony/mailer": "^5.4 || ^6", | 2926 | "symfony/mailer": "^5.4 || ^6", |
2678 | "symfony/mime": "^5.4 || ^6" | 2927 | "symfony/mime": "^5.4 || ^6" |
2679 | }, | 2928 | }, |
2680 | "suggest": { | 2929 | "suggest": { |
2681 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", | 2930 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", |
2682 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", | 2931 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", |
2683 | "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", | 2932 | "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", |
2684 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", | 2933 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", |
2685 | "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", | 2934 | "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", |
2686 | "ext-mbstring": "Allow to work properly with unicode symbols", | 2935 | "ext-mbstring": "Allow to work properly with unicode symbols", |
2687 | "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", | 2936 | "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", |
2688 | "ext-openssl": "Required to send log messages using SSL", | 2937 | "ext-openssl": "Required to send log messages using SSL", |
2689 | "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", | 2938 | "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", |
2690 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", | 2939 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", |
2691 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", | 2940 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", |
2692 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", | 2941 | "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", |
2693 | "rollbar/rollbar": "Allow sending log messages to Rollbar", | 2942 | "rollbar/rollbar": "Allow sending log messages to Rollbar", |
2694 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server" | 2943 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server" |
2695 | }, | 2944 | }, |
2696 | "type": "library", | 2945 | "type": "library", |
2697 | "extra": { | 2946 | "extra": { |
2698 | "branch-alias": { | 2947 | "branch-alias": { |
2699 | "dev-main": "2.x-dev" | 2948 | "dev-main": "2.x-dev" |
2700 | } | 2949 | } |
2701 | }, | 2950 | }, |
2702 | "autoload": { | 2951 | "autoload": { |
2703 | "psr-4": { | 2952 | "psr-4": { |
2704 | "Monolog\\": "src/Monolog" | 2953 | "Monolog\\": "src/Monolog" |
2705 | } | 2954 | } |
2706 | }, | 2955 | }, |
2707 | "notification-url": "https://packagist.org/downloads/", | 2956 | "notification-url": "https://packagist.org/downloads/", |
2708 | "license": [ | 2957 | "license": [ |
2709 | "MIT" | 2958 | "MIT" |
2710 | ], | 2959 | ], |
2711 | "authors": [ | 2960 | "authors": [ |
2712 | { | 2961 | { |
2713 | "name": "Jordi Boggiano", | 2962 | "name": "Jordi Boggiano", |
2714 | "email": "j.boggiano@seld.be", | 2963 | "email": "j.boggiano@seld.be", |
2715 | "homepage": "https://seld.be" | 2964 | "homepage": "https://seld.be" |
2716 | } | 2965 | } |
2717 | ], | 2966 | ], |
2718 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", | 2967 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", |
2719 | "homepage": "https://github.com/Seldaek/monolog", | 2968 | "homepage": "https://github.com/Seldaek/monolog", |
2720 | "keywords": [ | 2969 | "keywords": [ |
2721 | "log", | 2970 | "log", |
2722 | "logging", | 2971 | "logging", |
2723 | "psr-3" | 2972 | "psr-3" |
2724 | ], | 2973 | ], |
2725 | "support": { | 2974 | "support": { |
2726 | "issues": "https://github.com/Seldaek/monolog/issues", | 2975 | "issues": "https://github.com/Seldaek/monolog/issues", |
2727 | "source": "https://github.com/Seldaek/monolog/tree/2.9.1" | 2976 | "source": "https://github.com/Seldaek/monolog/tree/2.9.1" |
2728 | }, | 2977 | }, |
2729 | "funding": [ | 2978 | "funding": [ |
2730 | { | 2979 | { |
2731 | "url": "https://github.com/Seldaek", | 2980 | "url": "https://github.com/Seldaek", |
2732 | "type": "github" | 2981 | "type": "github" |
2733 | }, | 2982 | }, |
2734 | { | 2983 | { |
2735 | "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", | 2984 | "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", |
2736 | "type": "tidelift" | 2985 | "type": "tidelift" |
2737 | } | 2986 | } |
2738 | ], | 2987 | ], |
2739 | "time": "2023-02-06T13:44:46+00:00" | 2988 | "time": "2023-02-06T13:44:46+00:00" |
2740 | }, | 2989 | }, |
2741 | { | 2990 | { |
2742 | "name": "nesbot/carbon", | 2991 | "name": "nesbot/carbon", |
2743 | "version": "2.66.0", | 2992 | "version": "2.66.0", |
2744 | "source": { | 2993 | "source": { |
2745 | "type": "git", | 2994 | "type": "git", |
2746 | "url": "https://github.com/briannesbitt/Carbon.git", | 2995 | "url": "https://github.com/briannesbitt/Carbon.git", |
2747 | "reference": "496712849902241f04902033b0441b269effe001" | 2996 | "reference": "496712849902241f04902033b0441b269effe001" |
2748 | }, | 2997 | }, |
2749 | "dist": { | 2998 | "dist": { |
2750 | "type": "zip", | 2999 | "type": "zip", |
2751 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001", | 3000 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001", |
2752 | "reference": "496712849902241f04902033b0441b269effe001", | 3001 | "reference": "496712849902241f04902033b0441b269effe001", |
2753 | "shasum": "" | 3002 | "shasum": "" |
2754 | }, | 3003 | }, |
2755 | "require": { | 3004 | "require": { |
2756 | "ext-json": "*", | 3005 | "ext-json": "*", |
2757 | "php": "^7.1.8 || ^8.0", | 3006 | "php": "^7.1.8 || ^8.0", |
2758 | "symfony/polyfill-mbstring": "^1.0", | 3007 | "symfony/polyfill-mbstring": "^1.0", |
2759 | "symfony/polyfill-php80": "^1.16", | 3008 | "symfony/polyfill-php80": "^1.16", |
2760 | "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" | 3009 | "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0" |
2761 | }, | 3010 | }, |
2762 | "require-dev": { | 3011 | "require-dev": { |
2763 | "doctrine/dbal": "^2.0 || ^3.1.4", | 3012 | "doctrine/dbal": "^2.0 || ^3.1.4", |
2764 | "doctrine/orm": "^2.7", | 3013 | "doctrine/orm": "^2.7", |
2765 | "friendsofphp/php-cs-fixer": "^3.0", | 3014 | "friendsofphp/php-cs-fixer": "^3.0", |
2766 | "kylekatarnls/multi-tester": "^2.0", | 3015 | "kylekatarnls/multi-tester": "^2.0", |
2767 | "ondrejmirtes/better-reflection": "*", | 3016 | "ondrejmirtes/better-reflection": "*", |
2768 | "phpmd/phpmd": "^2.9", | 3017 | "phpmd/phpmd": "^2.9", |
2769 | "phpstan/extension-installer": "^1.0", | 3018 | "phpstan/extension-installer": "^1.0", |
2770 | "phpstan/phpstan": "^0.12.99 || ^1.7.14", | 3019 | "phpstan/phpstan": "^0.12.99 || ^1.7.14", |
2771 | "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", | 3020 | "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6", |
2772 | "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", | 3021 | "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20", |
2773 | "squizlabs/php_codesniffer": "^3.4" | 3022 | "squizlabs/php_codesniffer": "^3.4" |
2774 | }, | 3023 | }, |
2775 | "bin": [ | 3024 | "bin": [ |
2776 | "bin/carbon" | 3025 | "bin/carbon" |
2777 | ], | 3026 | ], |
2778 | "type": "library", | 3027 | "type": "library", |
2779 | "extra": { | 3028 | "extra": { |
2780 | "branch-alias": { | 3029 | "branch-alias": { |
2781 | "dev-3.x": "3.x-dev", | 3030 | "dev-3.x": "3.x-dev", |
2782 | "dev-master": "2.x-dev" | 3031 | "dev-master": "2.x-dev" |
2783 | }, | 3032 | }, |
2784 | "laravel": { | 3033 | "laravel": { |
2785 | "providers": [ | 3034 | "providers": [ |
2786 | "Carbon\\Laravel\\ServiceProvider" | 3035 | "Carbon\\Laravel\\ServiceProvider" |
2787 | ] | 3036 | ] |
2788 | }, | 3037 | }, |
2789 | "phpstan": { | 3038 | "phpstan": { |
2790 | "includes": [ | 3039 | "includes": [ |
2791 | "extension.neon" | 3040 | "extension.neon" |
2792 | ] | 3041 | ] |
2793 | } | 3042 | } |
2794 | }, | 3043 | }, |
2795 | "autoload": { | 3044 | "autoload": { |
2796 | "psr-4": { | 3045 | "psr-4": { |
2797 | "Carbon\\": "src/Carbon/" | 3046 | "Carbon\\": "src/Carbon/" |
2798 | } | 3047 | } |
2799 | }, | 3048 | }, |
2800 | "notification-url": "https://packagist.org/downloads/", | 3049 | "notification-url": "https://packagist.org/downloads/", |
2801 | "license": [ | 3050 | "license": [ |
2802 | "MIT" | 3051 | "MIT" |
2803 | ], | 3052 | ], |
2804 | "authors": [ | 3053 | "authors": [ |
2805 | { | 3054 | { |
2806 | "name": "Brian Nesbitt", | 3055 | "name": "Brian Nesbitt", |
2807 | "email": "brian@nesbot.com", | 3056 | "email": "brian@nesbot.com", |
2808 | "homepage": "https://markido.com" | 3057 | "homepage": "https://markido.com" |
2809 | }, | 3058 | }, |
2810 | { | 3059 | { |
2811 | "name": "kylekatarnls", | 3060 | "name": "kylekatarnls", |
2812 | "homepage": "https://github.com/kylekatarnls" | 3061 | "homepage": "https://github.com/kylekatarnls" |
2813 | } | 3062 | } |
2814 | ], | 3063 | ], |
2815 | "description": "An API extension for DateTime that supports 281 different languages.", | 3064 | "description": "An API extension for DateTime that supports 281 different languages.", |
2816 | "homepage": "https://carbon.nesbot.com", | 3065 | "homepage": "https://carbon.nesbot.com", |
2817 | "keywords": [ | 3066 | "keywords": [ |
2818 | "date", | 3067 | "date", |
2819 | "datetime", | 3068 | "datetime", |
2820 | "time" | 3069 | "time" |
2821 | ], | 3070 | ], |
2822 | "support": { | 3071 | "support": { |
2823 | "docs": "https://carbon.nesbot.com/docs", | 3072 | "docs": "https://carbon.nesbot.com/docs", |
2824 | "issues": "https://github.com/briannesbitt/Carbon/issues", | 3073 | "issues": "https://github.com/briannesbitt/Carbon/issues", |
2825 | "source": "https://github.com/briannesbitt/Carbon" | 3074 | "source": "https://github.com/briannesbitt/Carbon" |
2826 | }, | 3075 | }, |
2827 | "funding": [ | 3076 | "funding": [ |
2828 | { | 3077 | { |
2829 | "url": "https://github.com/sponsors/kylekatarnls", | 3078 | "url": "https://github.com/sponsors/kylekatarnls", |
2830 | "type": "github" | 3079 | "type": "github" |
2831 | }, | 3080 | }, |
2832 | { | 3081 | { |
2833 | "url": "https://opencollective.com/Carbon#sponsor", | 3082 | "url": "https://opencollective.com/Carbon#sponsor", |
2834 | "type": "opencollective" | 3083 | "type": "opencollective" |
2835 | }, | 3084 | }, |
2836 | { | 3085 | { |
2837 | "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", | 3086 | "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme", |
2838 | "type": "tidelift" | 3087 | "type": "tidelift" |
2839 | } | 3088 | } |
2840 | ], | 3089 | ], |
2841 | "time": "2023-01-29T18:53:47+00:00" | 3090 | "time": "2023-01-29T18:53:47+00:00" |
2842 | }, | 3091 | }, |
2843 | { | 3092 | { |
2844 | "name": "nette/schema", | 3093 | "name": "nette/schema", |
2845 | "version": "v1.2.3", | 3094 | "version": "v1.2.3", |
2846 | "source": { | 3095 | "source": { |
2847 | "type": "git", | 3096 | "type": "git", |
2848 | "url": "https://github.com/nette/schema.git", | 3097 | "url": "https://github.com/nette/schema.git", |
2849 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" | 3098 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f" |
2850 | }, | 3099 | }, |
2851 | "dist": { | 3100 | "dist": { |
2852 | "type": "zip", | 3101 | "type": "zip", |
2853 | "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", | 3102 | "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", |
2854 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", | 3103 | "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f", |
2855 | "shasum": "" | 3104 | "shasum": "" |
2856 | }, | 3105 | }, |
2857 | "require": { | 3106 | "require": { |
2858 | "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", | 3107 | "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", |
2859 | "php": ">=7.1 <8.3" | 3108 | "php": ">=7.1 <8.3" |
2860 | }, | 3109 | }, |
2861 | "require-dev": { | 3110 | "require-dev": { |
2862 | "nette/tester": "^2.3 || ^2.4", | 3111 | "nette/tester": "^2.3 || ^2.4", |
2863 | "phpstan/phpstan-nette": "^1.0", | 3112 | "phpstan/phpstan-nette": "^1.0", |
2864 | "tracy/tracy": "^2.7" | 3113 | "tracy/tracy": "^2.7" |
2865 | }, | 3114 | }, |
2866 | "type": "library", | 3115 | "type": "library", |
2867 | "extra": { | 3116 | "extra": { |
2868 | "branch-alias": { | 3117 | "branch-alias": { |
2869 | "dev-master": "1.2-dev" | 3118 | "dev-master": "1.2-dev" |
2870 | } | 3119 | } |
2871 | }, | 3120 | }, |
2872 | "autoload": { | 3121 | "autoload": { |
2873 | "classmap": [ | 3122 | "classmap": [ |
2874 | "src/" | 3123 | "src/" |
2875 | ] | 3124 | ] |
2876 | }, | 3125 | }, |
2877 | "notification-url": "https://packagist.org/downloads/", | 3126 | "notification-url": "https://packagist.org/downloads/", |
2878 | "license": [ | 3127 | "license": [ |
2879 | "BSD-3-Clause", | 3128 | "BSD-3-Clause", |
2880 | "GPL-2.0-only", | 3129 | "GPL-2.0-only", |
2881 | "GPL-3.0-only" | 3130 | "GPL-3.0-only" |
2882 | ], | 3131 | ], |
2883 | "authors": [ | 3132 | "authors": [ |
2884 | { | 3133 | { |
2885 | "name": "David Grudl", | 3134 | "name": "David Grudl", |
2886 | "homepage": "https://davidgrudl.com" | 3135 | "homepage": "https://davidgrudl.com" |
2887 | }, | 3136 | }, |
2888 | { | 3137 | { |
2889 | "name": "Nette Community", | 3138 | "name": "Nette Community", |
2890 | "homepage": "https://nette.org/contributors" | 3139 | "homepage": "https://nette.org/contributors" |
2891 | } | 3140 | } |
2892 | ], | 3141 | ], |
2893 | "description": "📐 Nette Schema: validating data structures against a given Schema.", | 3142 | "description": "📐 Nette Schema: validating data structures against a given Schema.", |
2894 | "homepage": "https://nette.org", | 3143 | "homepage": "https://nette.org", |
2895 | "keywords": [ | 3144 | "keywords": [ |
2896 | "config", | 3145 | "config", |
2897 | "nette" | 3146 | "nette" |
2898 | ], | 3147 | ], |
2899 | "support": { | 3148 | "support": { |
2900 | "issues": "https://github.com/nette/schema/issues", | 3149 | "issues": "https://github.com/nette/schema/issues", |
2901 | "source": "https://github.com/nette/schema/tree/v1.2.3" | 3150 | "source": "https://github.com/nette/schema/tree/v1.2.3" |
2902 | }, | 3151 | }, |
2903 | "time": "2022-10-13T01:24:26+00:00" | 3152 | "time": "2022-10-13T01:24:26+00:00" |
2904 | }, | 3153 | }, |
2905 | { | 3154 | { |
2906 | "name": "nette/utils", | 3155 | "name": "nette/utils", |
2907 | "version": "v4.0.0", | 3156 | "version": "v4.0.0", |
2908 | "source": { | 3157 | "source": { |
2909 | "type": "git", | 3158 | "type": "git", |
2910 | "url": "https://github.com/nette/utils.git", | 3159 | "url": "https://github.com/nette/utils.git", |
2911 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e" | 3160 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e" |
2912 | }, | 3161 | }, |
2913 | "dist": { | 3162 | "dist": { |
2914 | "type": "zip", | 3163 | "type": "zip", |
2915 | "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e", | 3164 | "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e", |
2916 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e", | 3165 | "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e", |
2917 | "shasum": "" | 3166 | "shasum": "" |
2918 | }, | 3167 | }, |
2919 | "require": { | 3168 | "require": { |
2920 | "php": ">=8.0 <8.3" | 3169 | "php": ">=8.0 <8.3" |
2921 | }, | 3170 | }, |
2922 | "conflict": { | 3171 | "conflict": { |
2923 | "nette/finder": "<3", | 3172 | "nette/finder": "<3", |
2924 | "nette/schema": "<1.2.2" | 3173 | "nette/schema": "<1.2.2" |
2925 | }, | 3174 | }, |
2926 | "require-dev": { | 3175 | "require-dev": { |
2927 | "jetbrains/phpstorm-attributes": "dev-master", | 3176 | "jetbrains/phpstorm-attributes": "dev-master", |
2928 | "nette/tester": "^2.4", | 3177 | "nette/tester": "^2.4", |
2929 | "phpstan/phpstan": "^1.0", | 3178 | "phpstan/phpstan": "^1.0", |
2930 | "tracy/tracy": "^2.9" | 3179 | "tracy/tracy": "^2.9" |
2931 | }, | 3180 | }, |
2932 | "suggest": { | 3181 | "suggest": { |
2933 | "ext-gd": "to use Image", | 3182 | "ext-gd": "to use Image", |
2934 | "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", | 3183 | "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", |
2935 | "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", | 3184 | "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", |
2936 | "ext-json": "to use Nette\\Utils\\Json", | 3185 | "ext-json": "to use Nette\\Utils\\Json", |
2937 | "ext-mbstring": "to use Strings::lower() etc...", | 3186 | "ext-mbstring": "to use Strings::lower() etc...", |
2938 | "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", | 3187 | "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", |
2939 | "ext-xml": "to use Strings::length() etc. when mbstring is not available" | 3188 | "ext-xml": "to use Strings::length() etc. when mbstring is not available" |
2940 | }, | 3189 | }, |
2941 | "type": "library", | 3190 | "type": "library", |
2942 | "extra": { | 3191 | "extra": { |
2943 | "branch-alias": { | 3192 | "branch-alias": { |
2944 | "dev-master": "4.0-dev" | 3193 | "dev-master": "4.0-dev" |
2945 | } | 3194 | } |
2946 | }, | 3195 | }, |
2947 | "autoload": { | 3196 | "autoload": { |
2948 | "classmap": [ | 3197 | "classmap": [ |
2949 | "src/" | 3198 | "src/" |
2950 | ] | 3199 | ] |
2951 | }, | 3200 | }, |
2952 | "notification-url": "https://packagist.org/downloads/", | 3201 | "notification-url": "https://packagist.org/downloads/", |
2953 | "license": [ | 3202 | "license": [ |
2954 | "BSD-3-Clause", | 3203 | "BSD-3-Clause", |
2955 | "GPL-2.0-only", | 3204 | "GPL-2.0-only", |
2956 | "GPL-3.0-only" | 3205 | "GPL-3.0-only" |
2957 | ], | 3206 | ], |
2958 | "authors": [ | 3207 | "authors": [ |
2959 | { | 3208 | { |
2960 | "name": "David Grudl", | 3209 | "name": "David Grudl", |
2961 | "homepage": "https://davidgrudl.com" | 3210 | "homepage": "https://davidgrudl.com" |
2962 | }, | 3211 | }, |
2963 | { | 3212 | { |
2964 | "name": "Nette Community", | 3213 | "name": "Nette Community", |
2965 | "homepage": "https://nette.org/contributors" | 3214 | "homepage": "https://nette.org/contributors" |
2966 | } | 3215 | } |
2967 | ], | 3216 | ], |
2968 | "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", | 3217 | "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", |
2969 | "homepage": "https://nette.org", | 3218 | "homepage": "https://nette.org", |
2970 | "keywords": [ | 3219 | "keywords": [ |
2971 | "array", | 3220 | "array", |
2972 | "core", | 3221 | "core", |
2973 | "datetime", | 3222 | "datetime", |
2974 | "images", | 3223 | "images", |
2975 | "json", | 3224 | "json", |
2976 | "nette", | 3225 | "nette", |
2977 | "paginator", | 3226 | "paginator", |
2978 | "password", | 3227 | "password", |
2979 | "slugify", | 3228 | "slugify", |
2980 | "string", | 3229 | "string", |
2981 | "unicode", | 3230 | "unicode", |
2982 | "utf-8", | 3231 | "utf-8", |
2983 | "utility", | 3232 | "utility", |
2984 | "validation" | 3233 | "validation" |
2985 | ], | 3234 | ], |
2986 | "support": { | 3235 | "support": { |
2987 | "issues": "https://github.com/nette/utils/issues", | 3236 | "issues": "https://github.com/nette/utils/issues", |
2988 | "source": "https://github.com/nette/utils/tree/v4.0.0" | 3237 | "source": "https://github.com/nette/utils/tree/v4.0.0" |
2989 | }, | 3238 | }, |
2990 | "time": "2023-02-02T10:41:53+00:00" | 3239 | "time": "2023-02-02T10:41:53+00:00" |
2991 | }, | 3240 | }, |
2992 | { | 3241 | { |
2993 | "name": "nikic/php-parser", | 3242 | "name": "nikic/php-parser", |
2994 | "version": "v4.15.4", | 3243 | "version": "v4.15.4", |
2995 | "source": { | 3244 | "source": { |
2996 | "type": "git", | 3245 | "type": "git", |
2997 | "url": "https://github.com/nikic/PHP-Parser.git", | 3246 | "url": "https://github.com/nikic/PHP-Parser.git", |
2998 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" | 3247 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" |
2999 | }, | 3248 | }, |
3000 | "dist": { | 3249 | "dist": { |
3001 | "type": "zip", | 3250 | "type": "zip", |
3002 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", | 3251 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", |
3003 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", | 3252 | "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", |
3004 | "shasum": "" | 3253 | "shasum": "" |
3005 | }, | 3254 | }, |
3006 | "require": { | 3255 | "require": { |
3007 | "ext-tokenizer": "*", | 3256 | "ext-tokenizer": "*", |
3008 | "php": ">=7.0" | 3257 | "php": ">=7.0" |
3009 | }, | 3258 | }, |
3010 | "require-dev": { | 3259 | "require-dev": { |
3011 | "ircmaxell/php-yacc": "^0.0.7", | 3260 | "ircmaxell/php-yacc": "^0.0.7", |
3012 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" | 3261 | "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" |
3013 | }, | 3262 | }, |
3014 | "bin": [ | 3263 | "bin": [ |
3015 | "bin/php-parse" | 3264 | "bin/php-parse" |
3016 | ], | 3265 | ], |
3017 | "type": "library", | 3266 | "type": "library", |
3018 | "extra": { | 3267 | "extra": { |
3019 | "branch-alias": { | 3268 | "branch-alias": { |
3020 | "dev-master": "4.9-dev" | 3269 | "dev-master": "4.9-dev" |
3021 | } | 3270 | } |
3022 | }, | 3271 | }, |
3023 | "autoload": { | 3272 | "autoload": { |
3024 | "psr-4": { | 3273 | "psr-4": { |
3025 | "PhpParser\\": "lib/PhpParser" | 3274 | "PhpParser\\": "lib/PhpParser" |
3026 | } | 3275 | } |
3027 | }, | 3276 | }, |
3028 | "notification-url": "https://packagist.org/downloads/", | 3277 | "notification-url": "https://packagist.org/downloads/", |
3029 | "license": [ | 3278 | "license": [ |
3030 | "BSD-3-Clause" | 3279 | "BSD-3-Clause" |
3031 | ], | 3280 | ], |
3032 | "authors": [ | 3281 | "authors": [ |
3033 | { | 3282 | { |
3034 | "name": "Nikita Popov" | 3283 | "name": "Nikita Popov" |
3035 | } | 3284 | } |
3036 | ], | 3285 | ], |
3037 | "description": "A PHP parser written in PHP", | 3286 | "description": "A PHP parser written in PHP", |
3038 | "keywords": [ | 3287 | "keywords": [ |
3039 | "parser", | 3288 | "parser", |
3040 | "php" | 3289 | "php" |
3041 | ], | 3290 | ], |
3042 | "support": { | 3291 | "support": { |
3043 | "issues": "https://github.com/nikic/PHP-Parser/issues", | 3292 | "issues": "https://github.com/nikic/PHP-Parser/issues", |
3044 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4" | 3293 | "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4" |
3045 | }, | 3294 | }, |
3046 | "time": "2023-03-05T19:49:14+00:00" | 3295 | "time": "2023-03-05T19:49:14+00:00" |
3047 | }, | 3296 | }, |
3048 | { | 3297 | { |
3049 | "name": "nunomaduro/termwind", | 3298 | "name": "nunomaduro/termwind", |
3050 | "version": "v1.15.1", | 3299 | "version": "v1.15.1", |
3051 | "source": { | 3300 | "source": { |
3052 | "type": "git", | 3301 | "type": "git", |
3053 | "url": "https://github.com/nunomaduro/termwind.git", | 3302 | "url": "https://github.com/nunomaduro/termwind.git", |
3054 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" | 3303 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" |
3055 | }, | 3304 | }, |
3056 | "dist": { | 3305 | "dist": { |
3057 | "type": "zip", | 3306 | "type": "zip", |
3058 | "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", | 3307 | "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", |
3059 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", | 3308 | "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", |
3060 | "shasum": "" | 3309 | "shasum": "" |
3061 | }, | 3310 | }, |
3062 | "require": { | 3311 | "require": { |
3063 | "ext-mbstring": "*", | 3312 | "ext-mbstring": "*", |
3064 | "php": "^8.0", | 3313 | "php": "^8.0", |
3065 | "symfony/console": "^5.3.0|^6.0.0" | 3314 | "symfony/console": "^5.3.0|^6.0.0" |
3066 | }, | 3315 | }, |
3067 | "require-dev": { | 3316 | "require-dev": { |
3068 | "ergebnis/phpstan-rules": "^1.0.", | 3317 | "ergebnis/phpstan-rules": "^1.0.", |
3069 | "illuminate/console": "^8.0|^9.0", | 3318 | "illuminate/console": "^8.0|^9.0", |
3070 | "illuminate/support": "^8.0|^9.0", | 3319 | "illuminate/support": "^8.0|^9.0", |
3071 | "laravel/pint": "^1.0.0", | 3320 | "laravel/pint": "^1.0.0", |
3072 | "pestphp/pest": "^1.21.0", | 3321 | "pestphp/pest": "^1.21.0", |
3073 | "pestphp/pest-plugin-mock": "^1.0", | 3322 | "pestphp/pest-plugin-mock": "^1.0", |
3074 | "phpstan/phpstan": "^1.4.6", | 3323 | "phpstan/phpstan": "^1.4.6", |
3075 | "phpstan/phpstan-strict-rules": "^1.1.0", | 3324 | "phpstan/phpstan-strict-rules": "^1.1.0", |
3076 | "symfony/var-dumper": "^5.2.7|^6.0.0", | 3325 | "symfony/var-dumper": "^5.2.7|^6.0.0", |
3077 | "thecodingmachine/phpstan-strict-rules": "^1.0.0" | 3326 | "thecodingmachine/phpstan-strict-rules": "^1.0.0" |
3078 | }, | 3327 | }, |
3079 | "type": "library", | 3328 | "type": "library", |
3080 | "extra": { | 3329 | "extra": { |
3081 | "laravel": { | 3330 | "laravel": { |
3082 | "providers": [ | 3331 | "providers": [ |
3083 | "Termwind\\Laravel\\TermwindServiceProvider" | 3332 | "Termwind\\Laravel\\TermwindServiceProvider" |
3084 | ] | 3333 | ] |
3085 | } | 3334 | } |
3086 | }, | 3335 | }, |
3087 | "autoload": { | 3336 | "autoload": { |
3088 | "files": [ | 3337 | "files": [ |
3089 | "src/Functions.php" | 3338 | "src/Functions.php" |
3090 | ], | 3339 | ], |
3091 | "psr-4": { | 3340 | "psr-4": { |
3092 | "Termwind\\": "src/" | 3341 | "Termwind\\": "src/" |
3093 | } | 3342 | } |
3094 | }, | 3343 | }, |
3095 | "notification-url": "https://packagist.org/downloads/", | 3344 | "notification-url": "https://packagist.org/downloads/", |
3096 | "license": [ | 3345 | "license": [ |
3097 | "MIT" | 3346 | "MIT" |
3098 | ], | 3347 | ], |
3099 | "authors": [ | 3348 | "authors": [ |
3100 | { | 3349 | { |
3101 | "name": "Nuno Maduro", | 3350 | "name": "Nuno Maduro", |
3102 | "email": "enunomaduro@gmail.com" | 3351 | "email": "enunomaduro@gmail.com" |
3103 | } | 3352 | } |
3104 | ], | 3353 | ], |
3105 | "description": "Its like Tailwind CSS, but for the console.", | 3354 | "description": "Its like Tailwind CSS, but for the console.", |
3106 | "keywords": [ | 3355 | "keywords": [ |
3107 | "cli", | 3356 | "cli", |
3108 | "console", | 3357 | "console", |
3109 | "css", | 3358 | "css", |
3110 | "package", | 3359 | "package", |
3111 | "php", | 3360 | "php", |
3112 | "style" | 3361 | "style" |
3113 | ], | 3362 | ], |
3114 | "support": { | 3363 | "support": { |
3115 | "issues": "https://github.com/nunomaduro/termwind/issues", | 3364 | "issues": "https://github.com/nunomaduro/termwind/issues", |
3116 | "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" | 3365 | "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" |
3117 | }, | 3366 | }, |
3118 | "funding": [ | 3367 | "funding": [ |
3119 | { | 3368 | { |
3120 | "url": "https://www.paypal.com/paypalme/enunomaduro", | 3369 | "url": "https://www.paypal.com/paypalme/enunomaduro", |
3121 | "type": "custom" | 3370 | "type": "custom" |
3122 | }, | 3371 | }, |
3123 | { | 3372 | { |
3124 | "url": "https://github.com/nunomaduro", | 3373 | "url": "https://github.com/nunomaduro", |
3125 | "type": "github" | 3374 | "type": "github" |
3126 | }, | 3375 | }, |
3127 | { | 3376 | { |
3128 | "url": "https://github.com/xiCO2k", | 3377 | "url": "https://github.com/xiCO2k", |
3129 | "type": "github" | 3378 | "type": "github" |
3130 | } | 3379 | } |
3131 | ], | 3380 | ], |
3132 | "time": "2023-02-08T01:06:31+00:00" | 3381 | "time": "2023-02-08T01:06:31+00:00" |
3133 | }, | 3382 | }, |
3134 | { | 3383 | { |
3384 | "name": "phpoffice/phpspreadsheet", | ||
3385 | "version": "1.29.0", | ||
3386 | "source": { | ||
3387 | "type": "git", | ||
3388 | "url": "https://github.com/PHPOffice/PhpSpreadsheet.git", | ||
3389 | "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0" | ||
3390 | }, | ||
3391 | "dist": { | ||
3392 | "type": "zip", | ||
3393 | "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0", | ||
3394 | "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0", | ||
3395 | "shasum": "" | ||
3396 | }, | ||
3397 | "require": { | ||
3398 | "ext-ctype": "*", | ||
3399 | "ext-dom": "*", | ||
3400 | "ext-fileinfo": "*", | ||
3401 | "ext-gd": "*", | ||
3402 | "ext-iconv": "*", | ||
3403 | "ext-libxml": "*", | ||
3404 | "ext-mbstring": "*", | ||
3405 | "ext-simplexml": "*", | ||
3406 | "ext-xml": "*", | ||
3407 | "ext-xmlreader": "*", | ||
3408 | "ext-xmlwriter": "*", | ||
3409 | "ext-zip": "*", | ||
3410 | "ext-zlib": "*", | ||
3411 | "ezyang/htmlpurifier": "^4.15", | ||
3412 | "maennchen/zipstream-php": "^2.1 || ^3.0", | ||
3413 | "markbaker/complex": "^3.0", | ||
3414 | "markbaker/matrix": "^3.0", | ||
3415 | "php": "^7.4 || ^8.0", | ||
3416 | "psr/http-client": "^1.0", | ||
3417 | "psr/http-factory": "^1.0", | ||
3418 | "psr/simple-cache": "^1.0 || ^2.0 || ^3.0" | ||
3419 | }, | ||
3420 | "require-dev": { | ||
3421 | "dealerdirect/phpcodesniffer-composer-installer": "dev-main", | ||
3422 | "dompdf/dompdf": "^1.0 || ^2.0", | ||
3423 | "friendsofphp/php-cs-fixer": "^3.2", | ||
3424 | "mitoteam/jpgraph": "^10.3", | ||
3425 | "mpdf/mpdf": "^8.1.1", | ||
3426 | "phpcompatibility/php-compatibility": "^9.3", | ||
3427 | "phpstan/phpstan": "^1.1", | ||
3428 | "phpstan/phpstan-phpunit": "^1.0", | ||
3429 | "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0", | ||
3430 | "squizlabs/php_codesniffer": "^3.7", | ||
3431 | "tecnickcom/tcpdf": "^6.5" | ||
3432 | }, | ||
3433 | "suggest": { | ||
3434 | "dompdf/dompdf": "Option for rendering PDF with PDF Writer", | ||
3435 | "ext-intl": "PHP Internationalization Functions", | ||
3436 | "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers", | ||
3437 | "mpdf/mpdf": "Option for rendering PDF with PDF Writer", | ||
3438 | "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer" | ||
3439 | }, | ||
3440 | "type": "library", | ||
3441 | "autoload": { | ||
3442 | "psr-4": { | ||
3443 | "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet" | ||
3444 | } | ||
3445 | }, | ||
3446 | "notification-url": "https://packagist.org/downloads/", | ||
3447 | "license": [ | ||
3448 | "MIT" | ||
3449 | ], | ||
3450 | "authors": [ | ||
3451 | { | ||
3452 | "name": "Maarten Balliauw", | ||
3453 | "homepage": "https://blog.maartenballiauw.be" | ||
3454 | }, | ||
3455 | { | ||
3456 | "name": "Mark Baker", | ||
3457 | "homepage": "https://markbakeruk.net" | ||
3458 | }, | ||
3459 | { | ||
3460 | "name": "Franck Lefevre", | ||
3461 | "homepage": "https://rootslabs.net" | ||
3462 | }, | ||
3463 | { | ||
3464 | "name": "Erik Tilt" | ||
3465 | }, | ||
3466 | { | ||
3467 | "name": "Adrien Crivelli" | ||
3468 | } | ||
3469 | ], | ||
3470 | "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine", | ||
3471 | "homepage": "https://github.com/PHPOffice/PhpSpreadsheet", | ||
3472 | "keywords": [ | ||
3473 | "OpenXML", | ||
3474 | "excel", | ||
3475 | "gnumeric", | ||
3476 | "ods", | ||
3477 | "php", | ||
3478 | "spreadsheet", | ||
3479 | "xls", | ||
3480 | "xlsx" | ||
3481 | ], | ||
3482 | "support": { | ||
3483 | "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues", | ||
3484 | "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0" | ||
3485 | }, | ||
3486 | "time": "2023-06-14T22:48:31+00:00" | ||
3487 | }, | ||
3488 | { | ||
3135 | "name": "phpoption/phpoption", | 3489 | "name": "phpoption/phpoption", |
3136 | "version": "1.9.1", | 3490 | "version": "1.9.1", |
3137 | "source": { | 3491 | "source": { |
3138 | "type": "git", | 3492 | "type": "git", |
3139 | "url": "https://github.com/schmittjoh/php-option.git", | 3493 | "url": "https://github.com/schmittjoh/php-option.git", |
3140 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" | 3494 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e" |
3141 | }, | 3495 | }, |
3142 | "dist": { | 3496 | "dist": { |
3143 | "type": "zip", | 3497 | "type": "zip", |
3144 | "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", | 3498 | "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e", |
3145 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", | 3499 | "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e", |
3146 | "shasum": "" | 3500 | "shasum": "" |
3147 | }, | 3501 | }, |
3148 | "require": { | 3502 | "require": { |
3149 | "php": "^7.2.5 || ^8.0" | 3503 | "php": "^7.2.5 || ^8.0" |
3150 | }, | 3504 | }, |
3151 | "require-dev": { | 3505 | "require-dev": { |
3152 | "bamarni/composer-bin-plugin": "^1.8.2", | 3506 | "bamarni/composer-bin-plugin": "^1.8.2", |
3153 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" | 3507 | "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12" |
3154 | }, | 3508 | }, |
3155 | "type": "library", | 3509 | "type": "library", |
3156 | "extra": { | 3510 | "extra": { |
3157 | "bamarni-bin": { | 3511 | "bamarni-bin": { |
3158 | "bin-links": true, | 3512 | "bin-links": true, |
3159 | "forward-command": true | 3513 | "forward-command": true |
3160 | }, | 3514 | }, |
3161 | "branch-alias": { | 3515 | "branch-alias": { |
3162 | "dev-master": "1.9-dev" | 3516 | "dev-master": "1.9-dev" |
3163 | } | 3517 | } |
3164 | }, | 3518 | }, |
3165 | "autoload": { | 3519 | "autoload": { |
3166 | "psr-4": { | 3520 | "psr-4": { |
3167 | "PhpOption\\": "src/PhpOption/" | 3521 | "PhpOption\\": "src/PhpOption/" |
3168 | } | 3522 | } |
3169 | }, | 3523 | }, |
3170 | "notification-url": "https://packagist.org/downloads/", | 3524 | "notification-url": "https://packagist.org/downloads/", |
3171 | "license": [ | 3525 | "license": [ |
3172 | "Apache-2.0" | 3526 | "Apache-2.0" |
3173 | ], | 3527 | ], |
3174 | "authors": [ | 3528 | "authors": [ |
3175 | { | 3529 | { |
3176 | "name": "Johannes M. Schmitt", | 3530 | "name": "Johannes M. Schmitt", |
3177 | "email": "schmittjoh@gmail.com", | 3531 | "email": "schmittjoh@gmail.com", |
3178 | "homepage": "https://github.com/schmittjoh" | 3532 | "homepage": "https://github.com/schmittjoh" |
3179 | }, | 3533 | }, |
3180 | { | 3534 | { |
3181 | "name": "Graham Campbell", | 3535 | "name": "Graham Campbell", |
3182 | "email": "hello@gjcampbell.co.uk", | 3536 | "email": "hello@gjcampbell.co.uk", |
3183 | "homepage": "https://github.com/GrahamCampbell" | 3537 | "homepage": "https://github.com/GrahamCampbell" |
3184 | } | 3538 | } |
3185 | ], | 3539 | ], |
3186 | "description": "Option Type for PHP", | 3540 | "description": "Option Type for PHP", |
3187 | "keywords": [ | 3541 | "keywords": [ |
3188 | "language", | 3542 | "language", |
3189 | "option", | 3543 | "option", |
3190 | "php", | 3544 | "php", |
3191 | "type" | 3545 | "type" |
3192 | ], | 3546 | ], |
3193 | "support": { | 3547 | "support": { |
3194 | "issues": "https://github.com/schmittjoh/php-option/issues", | 3548 | "issues": "https://github.com/schmittjoh/php-option/issues", |
3195 | "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" | 3549 | "source": "https://github.com/schmittjoh/php-option/tree/1.9.1" |
3196 | }, | 3550 | }, |
3197 | "funding": [ | 3551 | "funding": [ |
3198 | { | 3552 | { |
3199 | "url": "https://github.com/GrahamCampbell", | 3553 | "url": "https://github.com/GrahamCampbell", |
3200 | "type": "github" | 3554 | "type": "github" |
3201 | }, | 3555 | }, |
3202 | { | 3556 | { |
3203 | "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", | 3557 | "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", |
3204 | "type": "tidelift" | 3558 | "type": "tidelift" |
3205 | } | 3559 | } |
3206 | ], | 3560 | ], |
3207 | "time": "2023-02-25T19:38:58+00:00" | 3561 | "time": "2023-02-25T19:38:58+00:00" |
3208 | }, | 3562 | }, |
3209 | { | 3563 | { |
3210 | "name": "psr/container", | 3564 | "name": "psr/container", |
3211 | "version": "2.0.2", | 3565 | "version": "2.0.2", |
3212 | "source": { | 3566 | "source": { |
3213 | "type": "git", | 3567 | "type": "git", |
3214 | "url": "https://github.com/php-fig/container.git", | 3568 | "url": "https://github.com/php-fig/container.git", |
3215 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" | 3569 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" |
3216 | }, | 3570 | }, |
3217 | "dist": { | 3571 | "dist": { |
3218 | "type": "zip", | 3572 | "type": "zip", |
3219 | "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", | 3573 | "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", |
3220 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", | 3574 | "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", |
3221 | "shasum": "" | 3575 | "shasum": "" |
3222 | }, | 3576 | }, |
3223 | "require": { | 3577 | "require": { |
3224 | "php": ">=7.4.0" | 3578 | "php": ">=7.4.0" |
3225 | }, | 3579 | }, |
3226 | "type": "library", | 3580 | "type": "library", |
3227 | "extra": { | 3581 | "extra": { |
3228 | "branch-alias": { | 3582 | "branch-alias": { |
3229 | "dev-master": "2.0.x-dev" | 3583 | "dev-master": "2.0.x-dev" |
3230 | } | 3584 | } |
3231 | }, | 3585 | }, |
3232 | "autoload": { | 3586 | "autoload": { |
3233 | "psr-4": { | 3587 | "psr-4": { |
3234 | "Psr\\Container\\": "src/" | 3588 | "Psr\\Container\\": "src/" |
3235 | } | 3589 | } |
3236 | }, | 3590 | }, |
3237 | "notification-url": "https://packagist.org/downloads/", | 3591 | "notification-url": "https://packagist.org/downloads/", |
3238 | "license": [ | 3592 | "license": [ |
3239 | "MIT" | 3593 | "MIT" |
3240 | ], | 3594 | ], |
3241 | "authors": [ | 3595 | "authors": [ |
3242 | { | 3596 | { |
3243 | "name": "PHP-FIG", | 3597 | "name": "PHP-FIG", |
3244 | "homepage": "https://www.php-fig.org/" | 3598 | "homepage": "https://www.php-fig.org/" |
3245 | } | 3599 | } |
3246 | ], | 3600 | ], |
3247 | "description": "Common Container Interface (PHP FIG PSR-11)", | 3601 | "description": "Common Container Interface (PHP FIG PSR-11)", |
3248 | "homepage": "https://github.com/php-fig/container", | 3602 | "homepage": "https://github.com/php-fig/container", |
3249 | "keywords": [ | 3603 | "keywords": [ |
3250 | "PSR-11", | 3604 | "PSR-11", |
3251 | "container", | 3605 | "container", |
3252 | "container-interface", | 3606 | "container-interface", |
3253 | "container-interop", | 3607 | "container-interop", |
3254 | "psr" | 3608 | "psr" |
3255 | ], | 3609 | ], |
3256 | "support": { | 3610 | "support": { |
3257 | "issues": "https://github.com/php-fig/container/issues", | 3611 | "issues": "https://github.com/php-fig/container/issues", |
3258 | "source": "https://github.com/php-fig/container/tree/2.0.2" | 3612 | "source": "https://github.com/php-fig/container/tree/2.0.2" |
3259 | }, | 3613 | }, |
3260 | "time": "2021-11-05T16:47:00+00:00" | 3614 | "time": "2021-11-05T16:47:00+00:00" |
3261 | }, | 3615 | }, |
3262 | { | 3616 | { |
3263 | "name": "psr/event-dispatcher", | 3617 | "name": "psr/event-dispatcher", |
3264 | "version": "1.0.0", | 3618 | "version": "1.0.0", |
3265 | "source": { | 3619 | "source": { |
3266 | "type": "git", | 3620 | "type": "git", |
3267 | "url": "https://github.com/php-fig/event-dispatcher.git", | 3621 | "url": "https://github.com/php-fig/event-dispatcher.git", |
3268 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" | 3622 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" |
3269 | }, | 3623 | }, |
3270 | "dist": { | 3624 | "dist": { |
3271 | "type": "zip", | 3625 | "type": "zip", |
3272 | "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", | 3626 | "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", |
3273 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", | 3627 | "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", |
3274 | "shasum": "" | 3628 | "shasum": "" |
3275 | }, | 3629 | }, |
3276 | "require": { | 3630 | "require": { |
3277 | "php": ">=7.2.0" | 3631 | "php": ">=7.2.0" |
3278 | }, | 3632 | }, |
3279 | "type": "library", | 3633 | "type": "library", |
3280 | "extra": { | 3634 | "extra": { |
3281 | "branch-alias": { | 3635 | "branch-alias": { |
3282 | "dev-master": "1.0.x-dev" | 3636 | "dev-master": "1.0.x-dev" |
3283 | } | 3637 | } |
3284 | }, | 3638 | }, |
3285 | "autoload": { | 3639 | "autoload": { |
3286 | "psr-4": { | 3640 | "psr-4": { |
3287 | "Psr\\EventDispatcher\\": "src/" | 3641 | "Psr\\EventDispatcher\\": "src/" |
3288 | } | 3642 | } |
3289 | }, | 3643 | }, |
3290 | "notification-url": "https://packagist.org/downloads/", | 3644 | "notification-url": "https://packagist.org/downloads/", |
3291 | "license": [ | 3645 | "license": [ |
3292 | "MIT" | 3646 | "MIT" |
3293 | ], | 3647 | ], |
3294 | "authors": [ | 3648 | "authors": [ |
3295 | { | 3649 | { |
3296 | "name": "PHP-FIG", | 3650 | "name": "PHP-FIG", |
3297 | "homepage": "http://www.php-fig.org/" | 3651 | "homepage": "http://www.php-fig.org/" |
3298 | } | 3652 | } |
3299 | ], | 3653 | ], |
3300 | "description": "Standard interfaces for event handling.", | 3654 | "description": "Standard interfaces for event handling.", |
3301 | "keywords": [ | 3655 | "keywords": [ |
3302 | "events", | 3656 | "events", |
3303 | "psr", | 3657 | "psr", |
3304 | "psr-14" | 3658 | "psr-14" |
3305 | ], | 3659 | ], |
3306 | "support": { | 3660 | "support": { |
3307 | "issues": "https://github.com/php-fig/event-dispatcher/issues", | 3661 | "issues": "https://github.com/php-fig/event-dispatcher/issues", |
3308 | "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" | 3662 | "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" |
3309 | }, | 3663 | }, |
3310 | "time": "2019-01-08T18:20:26+00:00" | 3664 | "time": "2019-01-08T18:20:26+00:00" |
3311 | }, | 3665 | }, |
3312 | { | 3666 | { |
3313 | "name": "psr/http-client", | 3667 | "name": "psr/http-client", |
3314 | "version": "1.0.2", | 3668 | "version": "1.0.2", |
3315 | "source": { | 3669 | "source": { |
3316 | "type": "git", | 3670 | "type": "git", |
3317 | "url": "https://github.com/php-fig/http-client.git", | 3671 | "url": "https://github.com/php-fig/http-client.git", |
3318 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" | 3672 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" |
3319 | }, | 3673 | }, |
3320 | "dist": { | 3674 | "dist": { |
3321 | "type": "zip", | 3675 | "type": "zip", |
3322 | "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", | 3676 | "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", |
3323 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", | 3677 | "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", |
3324 | "shasum": "" | 3678 | "shasum": "" |
3325 | }, | 3679 | }, |
3326 | "require": { | 3680 | "require": { |
3327 | "php": "^7.0 || ^8.0", | 3681 | "php": "^7.0 || ^8.0", |
3328 | "psr/http-message": "^1.0 || ^2.0" | 3682 | "psr/http-message": "^1.0 || ^2.0" |
3329 | }, | 3683 | }, |
3330 | "type": "library", | 3684 | "type": "library", |
3331 | "extra": { | 3685 | "extra": { |
3332 | "branch-alias": { | 3686 | "branch-alias": { |
3333 | "dev-master": "1.0.x-dev" | 3687 | "dev-master": "1.0.x-dev" |
3334 | } | 3688 | } |
3335 | }, | 3689 | }, |
3336 | "autoload": { | 3690 | "autoload": { |
3337 | "psr-4": { | 3691 | "psr-4": { |
3338 | "Psr\\Http\\Client\\": "src/" | 3692 | "Psr\\Http\\Client\\": "src/" |
3339 | } | 3693 | } |
3340 | }, | 3694 | }, |
3341 | "notification-url": "https://packagist.org/downloads/", | 3695 | "notification-url": "https://packagist.org/downloads/", |
3342 | "license": [ | 3696 | "license": [ |
3343 | "MIT" | 3697 | "MIT" |
3344 | ], | 3698 | ], |
3345 | "authors": [ | 3699 | "authors": [ |
3346 | { | 3700 | { |
3347 | "name": "PHP-FIG", | 3701 | "name": "PHP-FIG", |
3348 | "homepage": "https://www.php-fig.org/" | 3702 | "homepage": "https://www.php-fig.org/" |
3349 | } | 3703 | } |
3350 | ], | 3704 | ], |
3351 | "description": "Common interface for HTTP clients", | 3705 | "description": "Common interface for HTTP clients", |
3352 | "homepage": "https://github.com/php-fig/http-client", | 3706 | "homepage": "https://github.com/php-fig/http-client", |
3353 | "keywords": [ | 3707 | "keywords": [ |
3354 | "http", | 3708 | "http", |
3355 | "http-client", | 3709 | "http-client", |
3356 | "psr", | 3710 | "psr", |
3357 | "psr-18" | 3711 | "psr-18" |
3358 | ], | 3712 | ], |
3359 | "support": { | 3713 | "support": { |
3360 | "source": "https://github.com/php-fig/http-client/tree/1.0.2" | 3714 | "source": "https://github.com/php-fig/http-client/tree/1.0.2" |
3361 | }, | 3715 | }, |
3362 | "time": "2023-04-10T20:12:12+00:00" | 3716 | "time": "2023-04-10T20:12:12+00:00" |
3363 | }, | 3717 | }, |
3364 | { | 3718 | { |
3365 | "name": "psr/http-factory", | 3719 | "name": "psr/http-factory", |
3366 | "version": "1.0.2", | 3720 | "version": "1.0.2", |
3367 | "source": { | 3721 | "source": { |
3368 | "type": "git", | 3722 | "type": "git", |
3369 | "url": "https://github.com/php-fig/http-factory.git", | 3723 | "url": "https://github.com/php-fig/http-factory.git", |
3370 | "reference": "e616d01114759c4c489f93b099585439f795fe35" | 3724 | "reference": "e616d01114759c4c489f93b099585439f795fe35" |
3371 | }, | 3725 | }, |
3372 | "dist": { | 3726 | "dist": { |
3373 | "type": "zip", | 3727 | "type": "zip", |
3374 | "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", | 3728 | "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", |
3375 | "reference": "e616d01114759c4c489f93b099585439f795fe35", | 3729 | "reference": "e616d01114759c4c489f93b099585439f795fe35", |
3376 | "shasum": "" | 3730 | "shasum": "" |
3377 | }, | 3731 | }, |
3378 | "require": { | 3732 | "require": { |
3379 | "php": ">=7.0.0", | 3733 | "php": ">=7.0.0", |
3380 | "psr/http-message": "^1.0 || ^2.0" | 3734 | "psr/http-message": "^1.0 || ^2.0" |
3381 | }, | 3735 | }, |
3382 | "type": "library", | 3736 | "type": "library", |
3383 | "extra": { | 3737 | "extra": { |
3384 | "branch-alias": { | 3738 | "branch-alias": { |
3385 | "dev-master": "1.0.x-dev" | 3739 | "dev-master": "1.0.x-dev" |
3386 | } | 3740 | } |
3387 | }, | 3741 | }, |
3388 | "autoload": { | 3742 | "autoload": { |
3389 | "psr-4": { | 3743 | "psr-4": { |
3390 | "Psr\\Http\\Message\\": "src/" | 3744 | "Psr\\Http\\Message\\": "src/" |
3391 | } | 3745 | } |
3392 | }, | 3746 | }, |
3393 | "notification-url": "https://packagist.org/downloads/", | 3747 | "notification-url": "https://packagist.org/downloads/", |
3394 | "license": [ | 3748 | "license": [ |
3395 | "MIT" | 3749 | "MIT" |
3396 | ], | 3750 | ], |
3397 | "authors": [ | 3751 | "authors": [ |
3398 | { | 3752 | { |
3399 | "name": "PHP-FIG", | 3753 | "name": "PHP-FIG", |
3400 | "homepage": "https://www.php-fig.org/" | 3754 | "homepage": "https://www.php-fig.org/" |
3401 | } | 3755 | } |
3402 | ], | 3756 | ], |
3403 | "description": "Common interfaces for PSR-7 HTTP message factories", | 3757 | "description": "Common interfaces for PSR-7 HTTP message factories", |
3404 | "keywords": [ | 3758 | "keywords": [ |
3405 | "factory", | 3759 | "factory", |
3406 | "http", | 3760 | "http", |
3407 | "message", | 3761 | "message", |
3408 | "psr", | 3762 | "psr", |
3409 | "psr-17", | 3763 | "psr-17", |
3410 | "psr-7", | 3764 | "psr-7", |
3411 | "request", | 3765 | "request", |
3412 | "response" | 3766 | "response" |
3413 | ], | 3767 | ], |
3414 | "support": { | 3768 | "support": { |
3415 | "source": "https://github.com/php-fig/http-factory/tree/1.0.2" | 3769 | "source": "https://github.com/php-fig/http-factory/tree/1.0.2" |
3416 | }, | 3770 | }, |
3417 | "time": "2023-04-10T20:10:41+00:00" | 3771 | "time": "2023-04-10T20:10:41+00:00" |
3418 | }, | 3772 | }, |
3419 | { | 3773 | { |
3420 | "name": "psr/http-message", | 3774 | "name": "psr/http-message", |
3421 | "version": "2.0", | 3775 | "version": "2.0", |
3422 | "source": { | 3776 | "source": { |
3423 | "type": "git", | 3777 | "type": "git", |
3424 | "url": "https://github.com/php-fig/http-message.git", | 3778 | "url": "https://github.com/php-fig/http-message.git", |
3425 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" | 3779 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" |
3426 | }, | 3780 | }, |
3427 | "dist": { | 3781 | "dist": { |
3428 | "type": "zip", | 3782 | "type": "zip", |
3429 | "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", | 3783 | "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", |
3430 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", | 3784 | "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", |
3431 | "shasum": "" | 3785 | "shasum": "" |
3432 | }, | 3786 | }, |
3433 | "require": { | 3787 | "require": { |
3434 | "php": "^7.2 || ^8.0" | 3788 | "php": "^7.2 || ^8.0" |
3435 | }, | 3789 | }, |
3436 | "type": "library", | 3790 | "type": "library", |
3437 | "extra": { | 3791 | "extra": { |
3438 | "branch-alias": { | 3792 | "branch-alias": { |
3439 | "dev-master": "2.0.x-dev" | 3793 | "dev-master": "2.0.x-dev" |
3440 | } | 3794 | } |
3441 | }, | 3795 | }, |
3442 | "autoload": { | 3796 | "autoload": { |
3443 | "psr-4": { | 3797 | "psr-4": { |
3444 | "Psr\\Http\\Message\\": "src/" | 3798 | "Psr\\Http\\Message\\": "src/" |
3445 | } | 3799 | } |
3446 | }, | 3800 | }, |
3447 | "notification-url": "https://packagist.org/downloads/", | 3801 | "notification-url": "https://packagist.org/downloads/", |
3448 | "license": [ | 3802 | "license": [ |
3449 | "MIT" | 3803 | "MIT" |
3450 | ], | 3804 | ], |
3451 | "authors": [ | 3805 | "authors": [ |
3452 | { | 3806 | { |
3453 | "name": "PHP-FIG", | 3807 | "name": "PHP-FIG", |
3454 | "homepage": "https://www.php-fig.org/" | 3808 | "homepage": "https://www.php-fig.org/" |
3455 | } | 3809 | } |
3456 | ], | 3810 | ], |
3457 | "description": "Common interface for HTTP messages", | 3811 | "description": "Common interface for HTTP messages", |
3458 | "homepage": "https://github.com/php-fig/http-message", | 3812 | "homepage": "https://github.com/php-fig/http-message", |
3459 | "keywords": [ | 3813 | "keywords": [ |
3460 | "http", | 3814 | "http", |
3461 | "http-message", | 3815 | "http-message", |
3462 | "psr", | 3816 | "psr", |
3463 | "psr-7", | 3817 | "psr-7", |
3464 | "request", | 3818 | "request", |
3465 | "response" | 3819 | "response" |
3466 | ], | 3820 | ], |
3467 | "support": { | 3821 | "support": { |
3468 | "source": "https://github.com/php-fig/http-message/tree/2.0" | 3822 | "source": "https://github.com/php-fig/http-message/tree/2.0" |
3469 | }, | 3823 | }, |
3470 | "time": "2023-04-04T09:54:51+00:00" | 3824 | "time": "2023-04-04T09:54:51+00:00" |
3471 | }, | 3825 | }, |
3472 | { | 3826 | { |
3473 | "name": "psr/log", | 3827 | "name": "psr/log", |
3474 | "version": "3.0.0", | 3828 | "version": "3.0.0", |
3475 | "source": { | 3829 | "source": { |
3476 | "type": "git", | 3830 | "type": "git", |
3477 | "url": "https://github.com/php-fig/log.git", | 3831 | "url": "https://github.com/php-fig/log.git", |
3478 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" | 3832 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" |
3479 | }, | 3833 | }, |
3480 | "dist": { | 3834 | "dist": { |
3481 | "type": "zip", | 3835 | "type": "zip", |
3482 | "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", | 3836 | "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", |
3483 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", | 3837 | "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", |
3484 | "shasum": "" | 3838 | "shasum": "" |
3485 | }, | 3839 | }, |
3486 | "require": { | 3840 | "require": { |
3487 | "php": ">=8.0.0" | 3841 | "php": ">=8.0.0" |
3488 | }, | 3842 | }, |
3489 | "type": "library", | 3843 | "type": "library", |
3490 | "extra": { | 3844 | "extra": { |
3491 | "branch-alias": { | 3845 | "branch-alias": { |
3492 | "dev-master": "3.x-dev" | 3846 | "dev-master": "3.x-dev" |
3493 | } | 3847 | } |
3494 | }, | 3848 | }, |
3495 | "autoload": { | 3849 | "autoload": { |
3496 | "psr-4": { | 3850 | "psr-4": { |
3497 | "Psr\\Log\\": "src" | 3851 | "Psr\\Log\\": "src" |
3498 | } | 3852 | } |
3499 | }, | 3853 | }, |
3500 | "notification-url": "https://packagist.org/downloads/", | 3854 | "notification-url": "https://packagist.org/downloads/", |
3501 | "license": [ | 3855 | "license": [ |
3502 | "MIT" | 3856 | "MIT" |
3503 | ], | 3857 | ], |
3504 | "authors": [ | 3858 | "authors": [ |
3505 | { | 3859 | { |
3506 | "name": "PHP-FIG", | 3860 | "name": "PHP-FIG", |
3507 | "homepage": "https://www.php-fig.org/" | 3861 | "homepage": "https://www.php-fig.org/" |
3508 | } | 3862 | } |
3509 | ], | 3863 | ], |
3510 | "description": "Common interface for logging libraries", | 3864 | "description": "Common interface for logging libraries", |
3511 | "homepage": "https://github.com/php-fig/log", | 3865 | "homepage": "https://github.com/php-fig/log", |
3512 | "keywords": [ | 3866 | "keywords": [ |
3513 | "log", | 3867 | "log", |
3514 | "psr", | 3868 | "psr", |
3515 | "psr-3" | 3869 | "psr-3" |
3516 | ], | 3870 | ], |
3517 | "support": { | 3871 | "support": { |
3518 | "source": "https://github.com/php-fig/log/tree/3.0.0" | 3872 | "source": "https://github.com/php-fig/log/tree/3.0.0" |
3519 | }, | 3873 | }, |
3520 | "time": "2021-07-14T16:46:02+00:00" | 3874 | "time": "2021-07-14T16:46:02+00:00" |
3521 | }, | 3875 | }, |
3522 | { | 3876 | { |
3523 | "name": "psr/simple-cache", | 3877 | "name": "psr/simple-cache", |
3524 | "version": "3.0.0", | 3878 | "version": "3.0.0", |
3525 | "source": { | 3879 | "source": { |
3526 | "type": "git", | 3880 | "type": "git", |
3527 | "url": "https://github.com/php-fig/simple-cache.git", | 3881 | "url": "https://github.com/php-fig/simple-cache.git", |
3528 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" | 3882 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865" |
3529 | }, | 3883 | }, |
3530 | "dist": { | 3884 | "dist": { |
3531 | "type": "zip", | 3885 | "type": "zip", |
3532 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", | 3886 | "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865", |
3533 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", | 3887 | "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865", |
3534 | "shasum": "" | 3888 | "shasum": "" |
3535 | }, | 3889 | }, |
3536 | "require": { | 3890 | "require": { |
3537 | "php": ">=8.0.0" | 3891 | "php": ">=8.0.0" |
3538 | }, | 3892 | }, |
3539 | "type": "library", | 3893 | "type": "library", |
3540 | "extra": { | 3894 | "extra": { |
3541 | "branch-alias": { | 3895 | "branch-alias": { |
3542 | "dev-master": "3.0.x-dev" | 3896 | "dev-master": "3.0.x-dev" |
3543 | } | 3897 | } |
3544 | }, | 3898 | }, |
3545 | "autoload": { | 3899 | "autoload": { |
3546 | "psr-4": { | 3900 | "psr-4": { |
3547 | "Psr\\SimpleCache\\": "src/" | 3901 | "Psr\\SimpleCache\\": "src/" |
3548 | } | 3902 | } |
3549 | }, | 3903 | }, |
3550 | "notification-url": "https://packagist.org/downloads/", | 3904 | "notification-url": "https://packagist.org/downloads/", |
3551 | "license": [ | 3905 | "license": [ |
3552 | "MIT" | 3906 | "MIT" |
3553 | ], | 3907 | ], |
3554 | "authors": [ | 3908 | "authors": [ |
3555 | { | 3909 | { |
3556 | "name": "PHP-FIG", | 3910 | "name": "PHP-FIG", |
3557 | "homepage": "https://www.php-fig.org/" | 3911 | "homepage": "https://www.php-fig.org/" |
3558 | } | 3912 | } |
3559 | ], | 3913 | ], |
3560 | "description": "Common interfaces for simple caching", | 3914 | "description": "Common interfaces for simple caching", |
3561 | "keywords": [ | 3915 | "keywords": [ |
3562 | "cache", | 3916 | "cache", |
3563 | "caching", | 3917 | "caching", |
3564 | "psr", | 3918 | "psr", |
3565 | "psr-16", | 3919 | "psr-16", |
3566 | "simple-cache" | 3920 | "simple-cache" |
3567 | ], | 3921 | ], |
3568 | "support": { | 3922 | "support": { |
3569 | "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" | 3923 | "source": "https://github.com/php-fig/simple-cache/tree/3.0.0" |
3570 | }, | 3924 | }, |
3571 | "time": "2021-10-29T13:26:27+00:00" | 3925 | "time": "2021-10-29T13:26:27+00:00" |
3572 | }, | 3926 | }, |
3573 | { | 3927 | { |
3574 | "name": "psy/psysh", | 3928 | "name": "psy/psysh", |
3575 | "version": "v0.11.17", | 3929 | "version": "v0.11.17", |
3576 | "source": { | 3930 | "source": { |
3577 | "type": "git", | 3931 | "type": "git", |
3578 | "url": "https://github.com/bobthecow/psysh.git", | 3932 | "url": "https://github.com/bobthecow/psysh.git", |
3579 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a" | 3933 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a" |
3580 | }, | 3934 | }, |
3581 | "dist": { | 3935 | "dist": { |
3582 | "type": "zip", | 3936 | "type": "zip", |
3583 | "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", | 3937 | "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", |
3584 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", | 3938 | "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a", |
3585 | "shasum": "" | 3939 | "shasum": "" |
3586 | }, | 3940 | }, |
3587 | "require": { | 3941 | "require": { |
3588 | "ext-json": "*", | 3942 | "ext-json": "*", |
3589 | "ext-tokenizer": "*", | 3943 | "ext-tokenizer": "*", |
3590 | "nikic/php-parser": "^4.0 || ^3.1", | 3944 | "nikic/php-parser": "^4.0 || ^3.1", |
3591 | "php": "^8.0 || ^7.0.8", | 3945 | "php": "^8.0 || ^7.0.8", |
3592 | "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", | 3946 | "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", |
3593 | "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" | 3947 | "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4" |
3594 | }, | 3948 | }, |
3595 | "conflict": { | 3949 | "conflict": { |
3596 | "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" | 3950 | "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" |
3597 | }, | 3951 | }, |
3598 | "require-dev": { | 3952 | "require-dev": { |
3599 | "bamarni/composer-bin-plugin": "^1.2" | 3953 | "bamarni/composer-bin-plugin": "^1.2" |
3600 | }, | 3954 | }, |
3601 | "suggest": { | 3955 | "suggest": { |
3602 | "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", | 3956 | "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", |
3603 | "ext-pdo-sqlite": "The doc command requires SQLite to work.", | 3957 | "ext-pdo-sqlite": "The doc command requires SQLite to work.", |
3604 | "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", | 3958 | "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", |
3605 | "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." | 3959 | "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." |
3606 | }, | 3960 | }, |
3607 | "bin": [ | 3961 | "bin": [ |
3608 | "bin/psysh" | 3962 | "bin/psysh" |
3609 | ], | 3963 | ], |
3610 | "type": "library", | 3964 | "type": "library", |
3611 | "extra": { | 3965 | "extra": { |
3612 | "branch-alias": { | 3966 | "branch-alias": { |
3613 | "dev-main": "0.11.x-dev" | 3967 | "dev-main": "0.11.x-dev" |
3614 | } | 3968 | } |
3615 | }, | 3969 | }, |
3616 | "autoload": { | 3970 | "autoload": { |
3617 | "files": [ | 3971 | "files": [ |
3618 | "src/functions.php" | 3972 | "src/functions.php" |
3619 | ], | 3973 | ], |
3620 | "psr-4": { | 3974 | "psr-4": { |
3621 | "Psy\\": "src/" | 3975 | "Psy\\": "src/" |
3622 | } | 3976 | } |
3623 | }, | 3977 | }, |
3624 | "notification-url": "https://packagist.org/downloads/", | 3978 | "notification-url": "https://packagist.org/downloads/", |
3625 | "license": [ | 3979 | "license": [ |
3626 | "MIT" | 3980 | "MIT" |
3627 | ], | 3981 | ], |
3628 | "authors": [ | 3982 | "authors": [ |
3629 | { | 3983 | { |
3630 | "name": "Justin Hileman", | 3984 | "name": "Justin Hileman", |
3631 | "email": "justin@justinhileman.info", | 3985 | "email": "justin@justinhileman.info", |
3632 | "homepage": "http://justinhileman.com" | 3986 | "homepage": "http://justinhileman.com" |
3633 | } | 3987 | } |
3634 | ], | 3988 | ], |
3635 | "description": "An interactive shell for modern PHP.", | 3989 | "description": "An interactive shell for modern PHP.", |
3636 | "homepage": "http://psysh.org", | 3990 | "homepage": "http://psysh.org", |
3637 | "keywords": [ | 3991 | "keywords": [ |
3638 | "REPL", | 3992 | "REPL", |
3639 | "console", | 3993 | "console", |
3640 | "interactive", | 3994 | "interactive", |
3641 | "shell" | 3995 | "shell" |
3642 | ], | 3996 | ], |
3643 | "support": { | 3997 | "support": { |
3644 | "issues": "https://github.com/bobthecow/psysh/issues", | 3998 | "issues": "https://github.com/bobthecow/psysh/issues", |
3645 | "source": "https://github.com/bobthecow/psysh/tree/v0.11.17" | 3999 | "source": "https://github.com/bobthecow/psysh/tree/v0.11.17" |
3646 | }, | 4000 | }, |
3647 | "time": "2023-05-05T20:02:42+00:00" | 4001 | "time": "2023-05-05T20:02:42+00:00" |
3648 | }, | 4002 | }, |
3649 | { | 4003 | { |
3650 | "name": "ralouphie/getallheaders", | 4004 | "name": "ralouphie/getallheaders", |
3651 | "version": "3.0.3", | 4005 | "version": "3.0.3", |
3652 | "source": { | 4006 | "source": { |
3653 | "type": "git", | 4007 | "type": "git", |
3654 | "url": "https://github.com/ralouphie/getallheaders.git", | 4008 | "url": "https://github.com/ralouphie/getallheaders.git", |
3655 | "reference": "120b605dfeb996808c31b6477290a714d356e822" | 4009 | "reference": "120b605dfeb996808c31b6477290a714d356e822" |
3656 | }, | 4010 | }, |
3657 | "dist": { | 4011 | "dist": { |
3658 | "type": "zip", | 4012 | "type": "zip", |
3659 | "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", | 4013 | "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", |
3660 | "reference": "120b605dfeb996808c31b6477290a714d356e822", | 4014 | "reference": "120b605dfeb996808c31b6477290a714d356e822", |
3661 | "shasum": "" | 4015 | "shasum": "" |
3662 | }, | 4016 | }, |
3663 | "require": { | 4017 | "require": { |
3664 | "php": ">=5.6" | 4018 | "php": ">=5.6" |
3665 | }, | 4019 | }, |
3666 | "require-dev": { | 4020 | "require-dev": { |
3667 | "php-coveralls/php-coveralls": "^2.1", | 4021 | "php-coveralls/php-coveralls": "^2.1", |
3668 | "phpunit/phpunit": "^5 || ^6.5" | 4022 | "phpunit/phpunit": "^5 || ^6.5" |
3669 | }, | 4023 | }, |
3670 | "type": "library", | 4024 | "type": "library", |
3671 | "autoload": { | 4025 | "autoload": { |
3672 | "files": [ | 4026 | "files": [ |
3673 | "src/getallheaders.php" | 4027 | "src/getallheaders.php" |
3674 | ] | 4028 | ] |
3675 | }, | 4029 | }, |
3676 | "notification-url": "https://packagist.org/downloads/", | 4030 | "notification-url": "https://packagist.org/downloads/", |
3677 | "license": [ | 4031 | "license": [ |
3678 | "MIT" | 4032 | "MIT" |
3679 | ], | 4033 | ], |
3680 | "authors": [ | 4034 | "authors": [ |
3681 | { | 4035 | { |
3682 | "name": "Ralph Khattar", | 4036 | "name": "Ralph Khattar", |
3683 | "email": "ralph.khattar@gmail.com" | 4037 | "email": "ralph.khattar@gmail.com" |
3684 | } | 4038 | } |
3685 | ], | 4039 | ], |
3686 | "description": "A polyfill for getallheaders.", | 4040 | "description": "A polyfill for getallheaders.", |
3687 | "support": { | 4041 | "support": { |
3688 | "issues": "https://github.com/ralouphie/getallheaders/issues", | 4042 | "issues": "https://github.com/ralouphie/getallheaders/issues", |
3689 | "source": "https://github.com/ralouphie/getallheaders/tree/develop" | 4043 | "source": "https://github.com/ralouphie/getallheaders/tree/develop" |
3690 | }, | 4044 | }, |
3691 | "time": "2019-03-08T08:55:37+00:00" | 4045 | "time": "2019-03-08T08:55:37+00:00" |
3692 | }, | 4046 | }, |
3693 | { | 4047 | { |
3694 | "name": "ramsey/collection", | 4048 | "name": "ramsey/collection", |
3695 | "version": "1.3.0", | 4049 | "version": "1.3.0", |
3696 | "source": { | 4050 | "source": { |
3697 | "type": "git", | 4051 | "type": "git", |
3698 | "url": "https://github.com/ramsey/collection.git", | 4052 | "url": "https://github.com/ramsey/collection.git", |
3699 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4" | 4053 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4" |
3700 | }, | 4054 | }, |
3701 | "dist": { | 4055 | "dist": { |
3702 | "type": "zip", | 4056 | "type": "zip", |
3703 | "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4", | 4057 | "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4", |
3704 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4", | 4058 | "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4", |
3705 | "shasum": "" | 4059 | "shasum": "" |
3706 | }, | 4060 | }, |
3707 | "require": { | 4061 | "require": { |
3708 | "php": "^7.4 || ^8.0", | 4062 | "php": "^7.4 || ^8.0", |
3709 | "symfony/polyfill-php81": "^1.23" | 4063 | "symfony/polyfill-php81": "^1.23" |
3710 | }, | 4064 | }, |
3711 | "require-dev": { | 4065 | "require-dev": { |
3712 | "captainhook/plugin-composer": "^5.3", | 4066 | "captainhook/plugin-composer": "^5.3", |
3713 | "ergebnis/composer-normalize": "^2.28.3", | 4067 | "ergebnis/composer-normalize": "^2.28.3", |
3714 | "fakerphp/faker": "^1.21", | 4068 | "fakerphp/faker": "^1.21", |
3715 | "hamcrest/hamcrest-php": "^2.0", | 4069 | "hamcrest/hamcrest-php": "^2.0", |
3716 | "jangregor/phpstan-prophecy": "^1.0", | 4070 | "jangregor/phpstan-prophecy": "^1.0", |
3717 | "mockery/mockery": "^1.5", | 4071 | "mockery/mockery": "^1.5", |
3718 | "php-parallel-lint/php-console-highlighter": "^1.0", | 4072 | "php-parallel-lint/php-console-highlighter": "^1.0", |
3719 | "php-parallel-lint/php-parallel-lint": "^1.3", | 4073 | "php-parallel-lint/php-parallel-lint": "^1.3", |
3720 | "phpcsstandards/phpcsutils": "^1.0.0-rc1", | 4074 | "phpcsstandards/phpcsutils": "^1.0.0-rc1", |
3721 | "phpspec/prophecy-phpunit": "^2.0", | 4075 | "phpspec/prophecy-phpunit": "^2.0", |
3722 | "phpstan/extension-installer": "^1.2", | 4076 | "phpstan/extension-installer": "^1.2", |
3723 | "phpstan/phpstan": "^1.9", | 4077 | "phpstan/phpstan": "^1.9", |
3724 | "phpstan/phpstan-mockery": "^1.1", | 4078 | "phpstan/phpstan-mockery": "^1.1", |
3725 | "phpstan/phpstan-phpunit": "^1.3", | 4079 | "phpstan/phpstan-phpunit": "^1.3", |
3726 | "phpunit/phpunit": "^9.5", | 4080 | "phpunit/phpunit": "^9.5", |
3727 | "psalm/plugin-mockery": "^1.1", | 4081 | "psalm/plugin-mockery": "^1.1", |
3728 | "psalm/plugin-phpunit": "^0.18.4", | 4082 | "psalm/plugin-phpunit": "^0.18.4", |
3729 | "ramsey/coding-standard": "^2.0.3", | 4083 | "ramsey/coding-standard": "^2.0.3", |
3730 | "ramsey/conventional-commits": "^1.3", | 4084 | "ramsey/conventional-commits": "^1.3", |
3731 | "vimeo/psalm": "^5.4" | 4085 | "vimeo/psalm": "^5.4" |
3732 | }, | 4086 | }, |
3733 | "type": "library", | 4087 | "type": "library", |
3734 | "extra": { | 4088 | "extra": { |
3735 | "captainhook": { | 4089 | "captainhook": { |
3736 | "force-install": true | 4090 | "force-install": true |
3737 | }, | 4091 | }, |
3738 | "ramsey/conventional-commits": { | 4092 | "ramsey/conventional-commits": { |
3739 | "configFile": "conventional-commits.json" | 4093 | "configFile": "conventional-commits.json" |
3740 | } | 4094 | } |
3741 | }, | 4095 | }, |
3742 | "autoload": { | 4096 | "autoload": { |
3743 | "psr-4": { | 4097 | "psr-4": { |
3744 | "Ramsey\\Collection\\": "src/" | 4098 | "Ramsey\\Collection\\": "src/" |
3745 | } | 4099 | } |
3746 | }, | 4100 | }, |
3747 | "notification-url": "https://packagist.org/downloads/", | 4101 | "notification-url": "https://packagist.org/downloads/", |
3748 | "license": [ | 4102 | "license": [ |
3749 | "MIT" | 4103 | "MIT" |
3750 | ], | 4104 | ], |
3751 | "authors": [ | 4105 | "authors": [ |
3752 | { | 4106 | { |
3753 | "name": "Ben Ramsey", | 4107 | "name": "Ben Ramsey", |
3754 | "email": "ben@benramsey.com", | 4108 | "email": "ben@benramsey.com", |
3755 | "homepage": "https://benramsey.com" | 4109 | "homepage": "https://benramsey.com" |
3756 | } | 4110 | } |
3757 | ], | 4111 | ], |
3758 | "description": "A PHP library for representing and manipulating collections.", | 4112 | "description": "A PHP library for representing and manipulating collections.", |
3759 | "keywords": [ | 4113 | "keywords": [ |
3760 | "array", | 4114 | "array", |
3761 | "collection", | 4115 | "collection", |
3762 | "hash", | 4116 | "hash", |
3763 | "map", | 4117 | "map", |
3764 | "queue", | 4118 | "queue", |
3765 | "set" | 4119 | "set" |
3766 | ], | 4120 | ], |
3767 | "support": { | 4121 | "support": { |
3768 | "issues": "https://github.com/ramsey/collection/issues", | 4122 | "issues": "https://github.com/ramsey/collection/issues", |
3769 | "source": "https://github.com/ramsey/collection/tree/1.3.0" | 4123 | "source": "https://github.com/ramsey/collection/tree/1.3.0" |
3770 | }, | 4124 | }, |
3771 | "funding": [ | 4125 | "funding": [ |
3772 | { | 4126 | { |
3773 | "url": "https://github.com/ramsey", | 4127 | "url": "https://github.com/ramsey", |
3774 | "type": "github" | 4128 | "type": "github" |
3775 | }, | 4129 | }, |
3776 | { | 4130 | { |
3777 | "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", | 4131 | "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", |
3778 | "type": "tidelift" | 4132 | "type": "tidelift" |
3779 | } | 4133 | } |
3780 | ], | 4134 | ], |
3781 | "time": "2022-12-27T19:12:24+00:00" | 4135 | "time": "2022-12-27T19:12:24+00:00" |
3782 | }, | 4136 | }, |
3783 | { | 4137 | { |
3784 | "name": "ramsey/uuid", | 4138 | "name": "ramsey/uuid", |
3785 | "version": "4.7.4", | 4139 | "version": "4.7.4", |
3786 | "source": { | 4140 | "source": { |
3787 | "type": "git", | 4141 | "type": "git", |
3788 | "url": "https://github.com/ramsey/uuid.git", | 4142 | "url": "https://github.com/ramsey/uuid.git", |
3789 | "reference": "60a4c63ab724854332900504274f6150ff26d286" | 4143 | "reference": "60a4c63ab724854332900504274f6150ff26d286" |
3790 | }, | 4144 | }, |
3791 | "dist": { | 4145 | "dist": { |
3792 | "type": "zip", | 4146 | "type": "zip", |
3793 | "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", | 4147 | "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286", |
3794 | "reference": "60a4c63ab724854332900504274f6150ff26d286", | 4148 | "reference": "60a4c63ab724854332900504274f6150ff26d286", |
3795 | "shasum": "" | 4149 | "shasum": "" |
3796 | }, | 4150 | }, |
3797 | "require": { | 4151 | "require": { |
3798 | "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", | 4152 | "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", |
3799 | "ext-json": "*", | 4153 | "ext-json": "*", |
3800 | "php": "^8.0", | 4154 | "php": "^8.0", |
3801 | "ramsey/collection": "^1.2 || ^2.0" | 4155 | "ramsey/collection": "^1.2 || ^2.0" |
3802 | }, | 4156 | }, |
3803 | "replace": { | 4157 | "replace": { |
3804 | "rhumsaa/uuid": "self.version" | 4158 | "rhumsaa/uuid": "self.version" |
3805 | }, | 4159 | }, |
3806 | "require-dev": { | 4160 | "require-dev": { |
3807 | "captainhook/captainhook": "^5.10", | 4161 | "captainhook/captainhook": "^5.10", |
3808 | "captainhook/plugin-composer": "^5.3", | 4162 | "captainhook/plugin-composer": "^5.3", |
3809 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", | 4163 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", |
3810 | "doctrine/annotations": "^1.8", | 4164 | "doctrine/annotations": "^1.8", |
3811 | "ergebnis/composer-normalize": "^2.15", | 4165 | "ergebnis/composer-normalize": "^2.15", |
3812 | "mockery/mockery": "^1.3", | 4166 | "mockery/mockery": "^1.3", |
3813 | "paragonie/random-lib": "^2", | 4167 | "paragonie/random-lib": "^2", |
3814 | "php-mock/php-mock": "^2.2", | 4168 | "php-mock/php-mock": "^2.2", |
3815 | "php-mock/php-mock-mockery": "^1.3", | 4169 | "php-mock/php-mock-mockery": "^1.3", |
3816 | "php-parallel-lint/php-parallel-lint": "^1.1", | 4170 | "php-parallel-lint/php-parallel-lint": "^1.1", |
3817 | "phpbench/phpbench": "^1.0", | 4171 | "phpbench/phpbench": "^1.0", |
3818 | "phpstan/extension-installer": "^1.1", | 4172 | "phpstan/extension-installer": "^1.1", |
3819 | "phpstan/phpstan": "^1.8", | 4173 | "phpstan/phpstan": "^1.8", |
3820 | "phpstan/phpstan-mockery": "^1.1", | 4174 | "phpstan/phpstan-mockery": "^1.1", |
3821 | "phpstan/phpstan-phpunit": "^1.1", | 4175 | "phpstan/phpstan-phpunit": "^1.1", |
3822 | "phpunit/phpunit": "^8.5 || ^9", | 4176 | "phpunit/phpunit": "^8.5 || ^9", |
3823 | "ramsey/composer-repl": "^1.4", | 4177 | "ramsey/composer-repl": "^1.4", |
3824 | "slevomat/coding-standard": "^8.4", | 4178 | "slevomat/coding-standard": "^8.4", |
3825 | "squizlabs/php_codesniffer": "^3.5", | 4179 | "squizlabs/php_codesniffer": "^3.5", |
3826 | "vimeo/psalm": "^4.9" | 4180 | "vimeo/psalm": "^4.9" |
3827 | }, | 4181 | }, |
3828 | "suggest": { | 4182 | "suggest": { |
3829 | "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", | 4183 | "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", |
3830 | "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", | 4184 | "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", |
3831 | "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", | 4185 | "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", |
3832 | "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", | 4186 | "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", |
3833 | "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." | 4187 | "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." |
3834 | }, | 4188 | }, |
3835 | "type": "library", | 4189 | "type": "library", |
3836 | "extra": { | 4190 | "extra": { |
3837 | "captainhook": { | 4191 | "captainhook": { |
3838 | "force-install": true | 4192 | "force-install": true |
3839 | } | 4193 | } |
3840 | }, | 4194 | }, |
3841 | "autoload": { | 4195 | "autoload": { |
3842 | "files": [ | 4196 | "files": [ |
3843 | "src/functions.php" | 4197 | "src/functions.php" |
3844 | ], | 4198 | ], |
3845 | "psr-4": { | 4199 | "psr-4": { |
3846 | "Ramsey\\Uuid\\": "src/" | 4200 | "Ramsey\\Uuid\\": "src/" |
3847 | } | 4201 | } |
3848 | }, | 4202 | }, |
3849 | "notification-url": "https://packagist.org/downloads/", | 4203 | "notification-url": "https://packagist.org/downloads/", |
3850 | "license": [ | 4204 | "license": [ |
3851 | "MIT" | 4205 | "MIT" |
3852 | ], | 4206 | ], |
3853 | "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", | 4207 | "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", |
3854 | "keywords": [ | 4208 | "keywords": [ |
3855 | "guid", | 4209 | "guid", |
3856 | "identifier", | 4210 | "identifier", |
3857 | "uuid" | 4211 | "uuid" |
3858 | ], | 4212 | ], |
3859 | "support": { | 4213 | "support": { |
3860 | "issues": "https://github.com/ramsey/uuid/issues", | 4214 | "issues": "https://github.com/ramsey/uuid/issues", |
3861 | "source": "https://github.com/ramsey/uuid/tree/4.7.4" | 4215 | "source": "https://github.com/ramsey/uuid/tree/4.7.4" |
3862 | }, | 4216 | }, |
3863 | "funding": [ | 4217 | "funding": [ |
3864 | { | 4218 | { |
3865 | "url": "https://github.com/ramsey", | 4219 | "url": "https://github.com/ramsey", |
3866 | "type": "github" | 4220 | "type": "github" |
3867 | }, | 4221 | }, |
3868 | { | 4222 | { |
3869 | "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", | 4223 | "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", |
3870 | "type": "tidelift" | 4224 | "type": "tidelift" |
3871 | } | 4225 | } |
3872 | ], | 4226 | ], |
3873 | "time": "2023-04-15T23:01:58+00:00" | 4227 | "time": "2023-04-15T23:01:58+00:00" |
3874 | }, | 4228 | }, |
3875 | { | 4229 | { |
3876 | "name": "spatie/invade", | 4230 | "name": "spatie/invade", |
3877 | "version": "1.1.1", | 4231 | "version": "1.1.1", |
3878 | "source": { | 4232 | "source": { |
3879 | "type": "git", | 4233 | "type": "git", |
3880 | "url": "https://github.com/spatie/invade.git", | 4234 | "url": "https://github.com/spatie/invade.git", |
3881 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038" | 4235 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038" |
3882 | }, | 4236 | }, |
3883 | "dist": { | 4237 | "dist": { |
3884 | "type": "zip", | 4238 | "type": "zip", |
3885 | "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038", | 4239 | "url": "https://api.github.com/repos/spatie/invade/zipball/d0a9c895a96152549d478a7e3420e19039eef038", |
3886 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038", | 4240 | "reference": "d0a9c895a96152549d478a7e3420e19039eef038", |
3887 | "shasum": "" | 4241 | "shasum": "" |
3888 | }, | 4242 | }, |
3889 | "require": { | 4243 | "require": { |
3890 | "php": "^8.0" | 4244 | "php": "^8.0" |
3891 | }, | 4245 | }, |
3892 | "require-dev": { | 4246 | "require-dev": { |
3893 | "pestphp/pest": "^1.20", | 4247 | "pestphp/pest": "^1.20", |
3894 | "phpstan/phpstan": "^1.4", | 4248 | "phpstan/phpstan": "^1.4", |
3895 | "spatie/ray": "^1.28" | 4249 | "spatie/ray": "^1.28" |
3896 | }, | 4250 | }, |
3897 | "type": "library", | 4251 | "type": "library", |
3898 | "extra": { | 4252 | "extra": { |
3899 | "phpstan": { | 4253 | "phpstan": { |
3900 | "includes": [ | 4254 | "includes": [ |
3901 | "phpstan-extension.neon" | 4255 | "phpstan-extension.neon" |
3902 | ] | 4256 | ] |
3903 | } | 4257 | } |
3904 | }, | 4258 | }, |
3905 | "autoload": { | 4259 | "autoload": { |
3906 | "files": [ | 4260 | "files": [ |
3907 | "src/functions.php" | 4261 | "src/functions.php" |
3908 | ], | 4262 | ], |
3909 | "psr-4": { | 4263 | "psr-4": { |
3910 | "Spatie\\Invade\\": "src" | 4264 | "Spatie\\Invade\\": "src" |
3911 | } | 4265 | } |
3912 | }, | 4266 | }, |
3913 | "notification-url": "https://packagist.org/downloads/", | 4267 | "notification-url": "https://packagist.org/downloads/", |
3914 | "license": [ | 4268 | "license": [ |
3915 | "MIT" | 4269 | "MIT" |
3916 | ], | 4270 | ], |
3917 | "authors": [ | 4271 | "authors": [ |
3918 | { | 4272 | { |
3919 | "name": "Freek Van der Herten", | 4273 | "name": "Freek Van der Herten", |
3920 | "email": "freek@spatie.be", | 4274 | "email": "freek@spatie.be", |
3921 | "role": "Developer" | 4275 | "role": "Developer" |
3922 | } | 4276 | } |
3923 | ], | 4277 | ], |
3924 | "description": "A PHP function to work with private properties and methods", | 4278 | "description": "A PHP function to work with private properties and methods", |
3925 | "homepage": "https://github.com/spatie/invade", | 4279 | "homepage": "https://github.com/spatie/invade", |
3926 | "keywords": [ | 4280 | "keywords": [ |
3927 | "invade", | 4281 | "invade", |
3928 | "spatie" | 4282 | "spatie" |
3929 | ], | 4283 | ], |
3930 | "support": { | 4284 | "support": { |
3931 | "source": "https://github.com/spatie/invade/tree/1.1.1" | 4285 | "source": "https://github.com/spatie/invade/tree/1.1.1" |
3932 | }, | 4286 | }, |
3933 | "funding": [ | 4287 | "funding": [ |
3934 | { | 4288 | { |
3935 | "url": "https://github.com/spatie", | 4289 | "url": "https://github.com/spatie", |
3936 | "type": "github" | 4290 | "type": "github" |
3937 | } | 4291 | } |
3938 | ], | 4292 | ], |
3939 | "time": "2022-07-05T09:31:00+00:00" | 4293 | "time": "2022-07-05T09:31:00+00:00" |
3940 | }, | 4294 | }, |
3941 | { | 4295 | { |
3942 | "name": "spatie/laravel-package-tools", | 4296 | "name": "spatie/laravel-package-tools", |
3943 | "version": "1.15.0", | 4297 | "version": "1.15.0", |
3944 | "source": { | 4298 | "source": { |
3945 | "type": "git", | 4299 | "type": "git", |
3946 | "url": "https://github.com/spatie/laravel-package-tools.git", | 4300 | "url": "https://github.com/spatie/laravel-package-tools.git", |
3947 | "reference": "efab1844b8826443135201c4443690f032c3d533" | 4301 | "reference": "efab1844b8826443135201c4443690f032c3d533" |
3948 | }, | 4302 | }, |
3949 | "dist": { | 4303 | "dist": { |
3950 | "type": "zip", | 4304 | "type": "zip", |
3951 | "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533", | 4305 | "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/efab1844b8826443135201c4443690f032c3d533", |
3952 | "reference": "efab1844b8826443135201c4443690f032c3d533", | 4306 | "reference": "efab1844b8826443135201c4443690f032c3d533", |
3953 | "shasum": "" | 4307 | "shasum": "" |
3954 | }, | 4308 | }, |
3955 | "require": { | 4309 | "require": { |
3956 | "illuminate/contracts": "^9.28|^10.0", | 4310 | "illuminate/contracts": "^9.28|^10.0", |
3957 | "php": "^8.0" | 4311 | "php": "^8.0" |
3958 | }, | 4312 | }, |
3959 | "require-dev": { | 4313 | "require-dev": { |
3960 | "mockery/mockery": "^1.5", | 4314 | "mockery/mockery": "^1.5", |
3961 | "orchestra/testbench": "^7.7|^8.0", | 4315 | "orchestra/testbench": "^7.7|^8.0", |
3962 | "pestphp/pest": "^1.22", | 4316 | "pestphp/pest": "^1.22", |
3963 | "phpunit/phpunit": "^9.5.24", | 4317 | "phpunit/phpunit": "^9.5.24", |
3964 | "spatie/pest-plugin-test-time": "^1.1" | 4318 | "spatie/pest-plugin-test-time": "^1.1" |
3965 | }, | 4319 | }, |
3966 | "type": "library", | 4320 | "type": "library", |
3967 | "autoload": { | 4321 | "autoload": { |
3968 | "psr-4": { | 4322 | "psr-4": { |
3969 | "Spatie\\LaravelPackageTools\\": "src" | 4323 | "Spatie\\LaravelPackageTools\\": "src" |
3970 | } | 4324 | } |
3971 | }, | 4325 | }, |
3972 | "notification-url": "https://packagist.org/downloads/", | 4326 | "notification-url": "https://packagist.org/downloads/", |
3973 | "license": [ | 4327 | "license": [ |
3974 | "MIT" | 4328 | "MIT" |
3975 | ], | 4329 | ], |
3976 | "authors": [ | 4330 | "authors": [ |
3977 | { | 4331 | { |
3978 | "name": "Freek Van der Herten", | 4332 | "name": "Freek Van der Herten", |
3979 | "email": "freek@spatie.be", | 4333 | "email": "freek@spatie.be", |
3980 | "role": "Developer" | 4334 | "role": "Developer" |
3981 | } | 4335 | } |
3982 | ], | 4336 | ], |
3983 | "description": "Tools for creating Laravel packages", | 4337 | "description": "Tools for creating Laravel packages", |
3984 | "homepage": "https://github.com/spatie/laravel-package-tools", | 4338 | "homepage": "https://github.com/spatie/laravel-package-tools", |
3985 | "keywords": [ | 4339 | "keywords": [ |
3986 | "laravel-package-tools", | 4340 | "laravel-package-tools", |
3987 | "spatie" | 4341 | "spatie" |
3988 | ], | 4342 | ], |
3989 | "support": { | 4343 | "support": { |
3990 | "issues": "https://github.com/spatie/laravel-package-tools/issues", | 4344 | "issues": "https://github.com/spatie/laravel-package-tools/issues", |
3991 | "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0" | 4345 | "source": "https://github.com/spatie/laravel-package-tools/tree/1.15.0" |
3992 | }, | 4346 | }, |
3993 | "funding": [ | 4347 | "funding": [ |
3994 | { | 4348 | { |
3995 | "url": "https://github.com/spatie", | 4349 | "url": "https://github.com/spatie", |
3996 | "type": "github" | 4350 | "type": "github" |
3997 | } | 4351 | } |
3998 | ], | 4352 | ], |
3999 | "time": "2023-04-27T08:09:01+00:00" | 4353 | "time": "2023-04-27T08:09:01+00:00" |
4000 | }, | 4354 | }, |
4001 | { | 4355 | { |
4002 | "name": "symfony/console", | 4356 | "name": "symfony/console", |
4003 | "version": "v6.0.19", | 4357 | "version": "v6.0.19", |
4004 | "source": { | 4358 | "source": { |
4005 | "type": "git", | 4359 | "type": "git", |
4006 | "url": "https://github.com/symfony/console.git", | 4360 | "url": "https://github.com/symfony/console.git", |
4007 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed" | 4361 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed" |
4008 | }, | 4362 | }, |
4009 | "dist": { | 4363 | "dist": { |
4010 | "type": "zip", | 4364 | "type": "zip", |
4011 | "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed", | 4365 | "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed", |
4012 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed", | 4366 | "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed", |
4013 | "shasum": "" | 4367 | "shasum": "" |
4014 | }, | 4368 | }, |
4015 | "require": { | 4369 | "require": { |
4016 | "php": ">=8.0.2", | 4370 | "php": ">=8.0.2", |
4017 | "symfony/polyfill-mbstring": "~1.0", | 4371 | "symfony/polyfill-mbstring": "~1.0", |
4018 | "symfony/service-contracts": "^1.1|^2|^3", | 4372 | "symfony/service-contracts": "^1.1|^2|^3", |
4019 | "symfony/string": "^5.4|^6.0" | 4373 | "symfony/string": "^5.4|^6.0" |
4020 | }, | 4374 | }, |
4021 | "conflict": { | 4375 | "conflict": { |
4022 | "symfony/dependency-injection": "<5.4", | 4376 | "symfony/dependency-injection": "<5.4", |
4023 | "symfony/dotenv": "<5.4", | 4377 | "symfony/dotenv": "<5.4", |
4024 | "symfony/event-dispatcher": "<5.4", | 4378 | "symfony/event-dispatcher": "<5.4", |
4025 | "symfony/lock": "<5.4", | 4379 | "symfony/lock": "<5.4", |
4026 | "symfony/process": "<5.4" | 4380 | "symfony/process": "<5.4" |
4027 | }, | 4381 | }, |
4028 | "provide": { | 4382 | "provide": { |
4029 | "psr/log-implementation": "1.0|2.0|3.0" | 4383 | "psr/log-implementation": "1.0|2.0|3.0" |
4030 | }, | 4384 | }, |
4031 | "require-dev": { | 4385 | "require-dev": { |
4032 | "psr/log": "^1|^2|^3", | 4386 | "psr/log": "^1|^2|^3", |
4033 | "symfony/config": "^5.4|^6.0", | 4387 | "symfony/config": "^5.4|^6.0", |
4034 | "symfony/dependency-injection": "^5.4|^6.0", | 4388 | "symfony/dependency-injection": "^5.4|^6.0", |
4035 | "symfony/event-dispatcher": "^5.4|^6.0", | 4389 | "symfony/event-dispatcher": "^5.4|^6.0", |
4036 | "symfony/lock": "^5.4|^6.0", | 4390 | "symfony/lock": "^5.4|^6.0", |
4037 | "symfony/process": "^5.4|^6.0", | 4391 | "symfony/process": "^5.4|^6.0", |
4038 | "symfony/var-dumper": "^5.4|^6.0" | 4392 | "symfony/var-dumper": "^5.4|^6.0" |
4039 | }, | 4393 | }, |
4040 | "suggest": { | 4394 | "suggest": { |
4041 | "psr/log": "For using the console logger", | 4395 | "psr/log": "For using the console logger", |
4042 | "symfony/event-dispatcher": "", | 4396 | "symfony/event-dispatcher": "", |
4043 | "symfony/lock": "", | 4397 | "symfony/lock": "", |
4044 | "symfony/process": "" | 4398 | "symfony/process": "" |
4045 | }, | 4399 | }, |
4046 | "type": "library", | 4400 | "type": "library", |
4047 | "autoload": { | 4401 | "autoload": { |
4048 | "psr-4": { | 4402 | "psr-4": { |
4049 | "Symfony\\Component\\Console\\": "" | 4403 | "Symfony\\Component\\Console\\": "" |
4050 | }, | 4404 | }, |
4051 | "exclude-from-classmap": [ | 4405 | "exclude-from-classmap": [ |
4052 | "/Tests/" | 4406 | "/Tests/" |
4053 | ] | 4407 | ] |
4054 | }, | 4408 | }, |
4055 | "notification-url": "https://packagist.org/downloads/", | 4409 | "notification-url": "https://packagist.org/downloads/", |
4056 | "license": [ | 4410 | "license": [ |
4057 | "MIT" | 4411 | "MIT" |
4058 | ], | 4412 | ], |
4059 | "authors": [ | 4413 | "authors": [ |
4060 | { | 4414 | { |
4061 | "name": "Fabien Potencier", | 4415 | "name": "Fabien Potencier", |
4062 | "email": "fabien@symfony.com" | 4416 | "email": "fabien@symfony.com" |
4063 | }, | 4417 | }, |
4064 | { | 4418 | { |
4065 | "name": "Symfony Community", | 4419 | "name": "Symfony Community", |
4066 | "homepage": "https://symfony.com/contributors" | 4420 | "homepage": "https://symfony.com/contributors" |
4067 | } | 4421 | } |
4068 | ], | 4422 | ], |
4069 | "description": "Eases the creation of beautiful and testable command line interfaces", | 4423 | "description": "Eases the creation of beautiful and testable command line interfaces", |
4070 | "homepage": "https://symfony.com", | 4424 | "homepage": "https://symfony.com", |
4071 | "keywords": [ | 4425 | "keywords": [ |
4072 | "cli", | 4426 | "cli", |
4073 | "command line", | 4427 | "command line", |
4074 | "console", | 4428 | "console", |
4075 | "terminal" | 4429 | "terminal" |
4076 | ], | 4430 | ], |
4077 | "support": { | 4431 | "support": { |
4078 | "source": "https://github.com/symfony/console/tree/v6.0.19" | 4432 | "source": "https://github.com/symfony/console/tree/v6.0.19" |
4079 | }, | 4433 | }, |
4080 | "funding": [ | 4434 | "funding": [ |
4081 | { | 4435 | { |
4082 | "url": "https://symfony.com/sponsor", | 4436 | "url": "https://symfony.com/sponsor", |
4083 | "type": "custom" | 4437 | "type": "custom" |
4084 | }, | 4438 | }, |
4085 | { | 4439 | { |
4086 | "url": "https://github.com/fabpot", | 4440 | "url": "https://github.com/fabpot", |
4087 | "type": "github" | 4441 | "type": "github" |
4088 | }, | 4442 | }, |
4089 | { | 4443 | { |
4090 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4444 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4091 | "type": "tidelift" | 4445 | "type": "tidelift" |
4092 | } | 4446 | } |
4093 | ], | 4447 | ], |
4094 | "time": "2023-01-01T08:36:10+00:00" | 4448 | "time": "2023-01-01T08:36:10+00:00" |
4095 | }, | 4449 | }, |
4096 | { | 4450 | { |
4097 | "name": "symfony/css-selector", | 4451 | "name": "symfony/css-selector", |
4098 | "version": "v6.0.19", | 4452 | "version": "v6.0.19", |
4099 | "source": { | 4453 | "source": { |
4100 | "type": "git", | 4454 | "type": "git", |
4101 | "url": "https://github.com/symfony/css-selector.git", | 4455 | "url": "https://github.com/symfony/css-selector.git", |
4102 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1" | 4456 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1" |
4103 | }, | 4457 | }, |
4104 | "dist": { | 4458 | "dist": { |
4105 | "type": "zip", | 4459 | "type": "zip", |
4106 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1", | 4460 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1", |
4107 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1", | 4461 | "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1", |
4108 | "shasum": "" | 4462 | "shasum": "" |
4109 | }, | 4463 | }, |
4110 | "require": { | 4464 | "require": { |
4111 | "php": ">=8.0.2" | 4465 | "php": ">=8.0.2" |
4112 | }, | 4466 | }, |
4113 | "type": "library", | 4467 | "type": "library", |
4114 | "autoload": { | 4468 | "autoload": { |
4115 | "psr-4": { | 4469 | "psr-4": { |
4116 | "Symfony\\Component\\CssSelector\\": "" | 4470 | "Symfony\\Component\\CssSelector\\": "" |
4117 | }, | 4471 | }, |
4118 | "exclude-from-classmap": [ | 4472 | "exclude-from-classmap": [ |
4119 | "/Tests/" | 4473 | "/Tests/" |
4120 | ] | 4474 | ] |
4121 | }, | 4475 | }, |
4122 | "notification-url": "https://packagist.org/downloads/", | 4476 | "notification-url": "https://packagist.org/downloads/", |
4123 | "license": [ | 4477 | "license": [ |
4124 | "MIT" | 4478 | "MIT" |
4125 | ], | 4479 | ], |
4126 | "authors": [ | 4480 | "authors": [ |
4127 | { | 4481 | { |
4128 | "name": "Fabien Potencier", | 4482 | "name": "Fabien Potencier", |
4129 | "email": "fabien@symfony.com" | 4483 | "email": "fabien@symfony.com" |
4130 | }, | 4484 | }, |
4131 | { | 4485 | { |
4132 | "name": "Jean-François Simon", | 4486 | "name": "Jean-François Simon", |
4133 | "email": "jeanfrancois.simon@sensiolabs.com" | 4487 | "email": "jeanfrancois.simon@sensiolabs.com" |
4134 | }, | 4488 | }, |
4135 | { | 4489 | { |
4136 | "name": "Symfony Community", | 4490 | "name": "Symfony Community", |
4137 | "homepage": "https://symfony.com/contributors" | 4491 | "homepage": "https://symfony.com/contributors" |
4138 | } | 4492 | } |
4139 | ], | 4493 | ], |
4140 | "description": "Converts CSS selectors to XPath expressions", | 4494 | "description": "Converts CSS selectors to XPath expressions", |
4141 | "homepage": "https://symfony.com", | 4495 | "homepage": "https://symfony.com", |
4142 | "support": { | 4496 | "support": { |
4143 | "source": "https://github.com/symfony/css-selector/tree/v6.0.19" | 4497 | "source": "https://github.com/symfony/css-selector/tree/v6.0.19" |
4144 | }, | 4498 | }, |
4145 | "funding": [ | 4499 | "funding": [ |
4146 | { | 4500 | { |
4147 | "url": "https://symfony.com/sponsor", | 4501 | "url": "https://symfony.com/sponsor", |
4148 | "type": "custom" | 4502 | "type": "custom" |
4149 | }, | 4503 | }, |
4150 | { | 4504 | { |
4151 | "url": "https://github.com/fabpot", | 4505 | "url": "https://github.com/fabpot", |
4152 | "type": "github" | 4506 | "type": "github" |
4153 | }, | 4507 | }, |
4154 | { | 4508 | { |
4155 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4509 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4156 | "type": "tidelift" | 4510 | "type": "tidelift" |
4157 | } | 4511 | } |
4158 | ], | 4512 | ], |
4159 | "time": "2023-01-01T08:36:10+00:00" | 4513 | "time": "2023-01-01T08:36:10+00:00" |
4160 | }, | 4514 | }, |
4161 | { | 4515 | { |
4162 | "name": "symfony/deprecation-contracts", | 4516 | "name": "symfony/deprecation-contracts", |
4163 | "version": "v3.0.2", | 4517 | "version": "v3.0.2", |
4164 | "source": { | 4518 | "source": { |
4165 | "type": "git", | 4519 | "type": "git", |
4166 | "url": "https://github.com/symfony/deprecation-contracts.git", | 4520 | "url": "https://github.com/symfony/deprecation-contracts.git", |
4167 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c" | 4521 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c" |
4168 | }, | 4522 | }, |
4169 | "dist": { | 4523 | "dist": { |
4170 | "type": "zip", | 4524 | "type": "zip", |
4171 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", | 4525 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", |
4172 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", | 4526 | "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c", |
4173 | "shasum": "" | 4527 | "shasum": "" |
4174 | }, | 4528 | }, |
4175 | "require": { | 4529 | "require": { |
4176 | "php": ">=8.0.2" | 4530 | "php": ">=8.0.2" |
4177 | }, | 4531 | }, |
4178 | "type": "library", | 4532 | "type": "library", |
4179 | "extra": { | 4533 | "extra": { |
4180 | "branch-alias": { | 4534 | "branch-alias": { |
4181 | "dev-main": "3.0-dev" | 4535 | "dev-main": "3.0-dev" |
4182 | }, | 4536 | }, |
4183 | "thanks": { | 4537 | "thanks": { |
4184 | "name": "symfony/contracts", | 4538 | "name": "symfony/contracts", |
4185 | "url": "https://github.com/symfony/contracts" | 4539 | "url": "https://github.com/symfony/contracts" |
4186 | } | 4540 | } |
4187 | }, | 4541 | }, |
4188 | "autoload": { | 4542 | "autoload": { |
4189 | "files": [ | 4543 | "files": [ |
4190 | "function.php" | 4544 | "function.php" |
4191 | ] | 4545 | ] |
4192 | }, | 4546 | }, |
4193 | "notification-url": "https://packagist.org/downloads/", | 4547 | "notification-url": "https://packagist.org/downloads/", |
4194 | "license": [ | 4548 | "license": [ |
4195 | "MIT" | 4549 | "MIT" |
4196 | ], | 4550 | ], |
4197 | "authors": [ | 4551 | "authors": [ |
4198 | { | 4552 | { |
4199 | "name": "Nicolas Grekas", | 4553 | "name": "Nicolas Grekas", |
4200 | "email": "p@tchwork.com" | 4554 | "email": "p@tchwork.com" |
4201 | }, | 4555 | }, |
4202 | { | 4556 | { |
4203 | "name": "Symfony Community", | 4557 | "name": "Symfony Community", |
4204 | "homepage": "https://symfony.com/contributors" | 4558 | "homepage": "https://symfony.com/contributors" |
4205 | } | 4559 | } |
4206 | ], | 4560 | ], |
4207 | "description": "A generic function and convention to trigger deprecation notices", | 4561 | "description": "A generic function and convention to trigger deprecation notices", |
4208 | "homepage": "https://symfony.com", | 4562 | "homepage": "https://symfony.com", |
4209 | "support": { | 4563 | "support": { |
4210 | "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2" | 4564 | "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2" |
4211 | }, | 4565 | }, |
4212 | "funding": [ | 4566 | "funding": [ |
4213 | { | 4567 | { |
4214 | "url": "https://symfony.com/sponsor", | 4568 | "url": "https://symfony.com/sponsor", |
4215 | "type": "custom" | 4569 | "type": "custom" |
4216 | }, | 4570 | }, |
4217 | { | 4571 | { |
4218 | "url": "https://github.com/fabpot", | 4572 | "url": "https://github.com/fabpot", |
4219 | "type": "github" | 4573 | "type": "github" |
4220 | }, | 4574 | }, |
4221 | { | 4575 | { |
4222 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4576 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4223 | "type": "tidelift" | 4577 | "type": "tidelift" |
4224 | } | 4578 | } |
4225 | ], | 4579 | ], |
4226 | "time": "2022-01-02T09:55:41+00:00" | 4580 | "time": "2022-01-02T09:55:41+00:00" |
4227 | }, | 4581 | }, |
4228 | { | 4582 | { |
4229 | "name": "symfony/error-handler", | 4583 | "name": "symfony/error-handler", |
4230 | "version": "v6.0.19", | 4584 | "version": "v6.0.19", |
4231 | "source": { | 4585 | "source": { |
4232 | "type": "git", | 4586 | "type": "git", |
4233 | "url": "https://github.com/symfony/error-handler.git", | 4587 | "url": "https://github.com/symfony/error-handler.git", |
4234 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67" | 4588 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67" |
4235 | }, | 4589 | }, |
4236 | "dist": { | 4590 | "dist": { |
4237 | "type": "zip", | 4591 | "type": "zip", |
4238 | "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67", | 4592 | "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67", |
4239 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67", | 4593 | "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67", |
4240 | "shasum": "" | 4594 | "shasum": "" |
4241 | }, | 4595 | }, |
4242 | "require": { | 4596 | "require": { |
4243 | "php": ">=8.0.2", | 4597 | "php": ">=8.0.2", |
4244 | "psr/log": "^1|^2|^3", | 4598 | "psr/log": "^1|^2|^3", |
4245 | "symfony/var-dumper": "^5.4|^6.0" | 4599 | "symfony/var-dumper": "^5.4|^6.0" |
4246 | }, | 4600 | }, |
4247 | "require-dev": { | 4601 | "require-dev": { |
4248 | "symfony/deprecation-contracts": "^2.1|^3", | 4602 | "symfony/deprecation-contracts": "^2.1|^3", |
4249 | "symfony/http-kernel": "^5.4|^6.0", | 4603 | "symfony/http-kernel": "^5.4|^6.0", |
4250 | "symfony/serializer": "^5.4|^6.0" | 4604 | "symfony/serializer": "^5.4|^6.0" |
4251 | }, | 4605 | }, |
4252 | "bin": [ | 4606 | "bin": [ |
4253 | "Resources/bin/patch-type-declarations" | 4607 | "Resources/bin/patch-type-declarations" |
4254 | ], | 4608 | ], |
4255 | "type": "library", | 4609 | "type": "library", |
4256 | "autoload": { | 4610 | "autoload": { |
4257 | "psr-4": { | 4611 | "psr-4": { |
4258 | "Symfony\\Component\\ErrorHandler\\": "" | 4612 | "Symfony\\Component\\ErrorHandler\\": "" |
4259 | }, | 4613 | }, |
4260 | "exclude-from-classmap": [ | 4614 | "exclude-from-classmap": [ |
4261 | "/Tests/" | 4615 | "/Tests/" |
4262 | ] | 4616 | ] |
4263 | }, | 4617 | }, |
4264 | "notification-url": "https://packagist.org/downloads/", | 4618 | "notification-url": "https://packagist.org/downloads/", |
4265 | "license": [ | 4619 | "license": [ |
4266 | "MIT" | 4620 | "MIT" |
4267 | ], | 4621 | ], |
4268 | "authors": [ | 4622 | "authors": [ |
4269 | { | 4623 | { |
4270 | "name": "Fabien Potencier", | 4624 | "name": "Fabien Potencier", |
4271 | "email": "fabien@symfony.com" | 4625 | "email": "fabien@symfony.com" |
4272 | }, | 4626 | }, |
4273 | { | 4627 | { |
4274 | "name": "Symfony Community", | 4628 | "name": "Symfony Community", |
4275 | "homepage": "https://symfony.com/contributors" | 4629 | "homepage": "https://symfony.com/contributors" |
4276 | } | 4630 | } |
4277 | ], | 4631 | ], |
4278 | "description": "Provides tools to manage errors and ease debugging PHP code", | 4632 | "description": "Provides tools to manage errors and ease debugging PHP code", |
4279 | "homepage": "https://symfony.com", | 4633 | "homepage": "https://symfony.com", |
4280 | "support": { | 4634 | "support": { |
4281 | "source": "https://github.com/symfony/error-handler/tree/v6.0.19" | 4635 | "source": "https://github.com/symfony/error-handler/tree/v6.0.19" |
4282 | }, | 4636 | }, |
4283 | "funding": [ | 4637 | "funding": [ |
4284 | { | 4638 | { |
4285 | "url": "https://symfony.com/sponsor", | 4639 | "url": "https://symfony.com/sponsor", |
4286 | "type": "custom" | 4640 | "type": "custom" |
4287 | }, | 4641 | }, |
4288 | { | 4642 | { |
4289 | "url": "https://github.com/fabpot", | 4643 | "url": "https://github.com/fabpot", |
4290 | "type": "github" | 4644 | "type": "github" |
4291 | }, | 4645 | }, |
4292 | { | 4646 | { |
4293 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4647 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4294 | "type": "tidelift" | 4648 | "type": "tidelift" |
4295 | } | 4649 | } |
4296 | ], | 4650 | ], |
4297 | "time": "2023-01-01T08:36:10+00:00" | 4651 | "time": "2023-01-01T08:36:10+00:00" |
4298 | }, | 4652 | }, |
4299 | { | 4653 | { |
4300 | "name": "symfony/event-dispatcher", | 4654 | "name": "symfony/event-dispatcher", |
4301 | "version": "v6.0.19", | 4655 | "version": "v6.0.19", |
4302 | "source": { | 4656 | "source": { |
4303 | "type": "git", | 4657 | "type": "git", |
4304 | "url": "https://github.com/symfony/event-dispatcher.git", | 4658 | "url": "https://github.com/symfony/event-dispatcher.git", |
4305 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a" | 4659 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a" |
4306 | }, | 4660 | }, |
4307 | "dist": { | 4661 | "dist": { |
4308 | "type": "zip", | 4662 | "type": "zip", |
4309 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", | 4663 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", |
4310 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", | 4664 | "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a", |
4311 | "shasum": "" | 4665 | "shasum": "" |
4312 | }, | 4666 | }, |
4313 | "require": { | 4667 | "require": { |
4314 | "php": ">=8.0.2", | 4668 | "php": ">=8.0.2", |
4315 | "symfony/event-dispatcher-contracts": "^2|^3" | 4669 | "symfony/event-dispatcher-contracts": "^2|^3" |
4316 | }, | 4670 | }, |
4317 | "conflict": { | 4671 | "conflict": { |
4318 | "symfony/dependency-injection": "<5.4" | 4672 | "symfony/dependency-injection": "<5.4" |
4319 | }, | 4673 | }, |
4320 | "provide": { | 4674 | "provide": { |
4321 | "psr/event-dispatcher-implementation": "1.0", | 4675 | "psr/event-dispatcher-implementation": "1.0", |
4322 | "symfony/event-dispatcher-implementation": "2.0|3.0" | 4676 | "symfony/event-dispatcher-implementation": "2.0|3.0" |
4323 | }, | 4677 | }, |
4324 | "require-dev": { | 4678 | "require-dev": { |
4325 | "psr/log": "^1|^2|^3", | 4679 | "psr/log": "^1|^2|^3", |
4326 | "symfony/config": "^5.4|^6.0", | 4680 | "symfony/config": "^5.4|^6.0", |
4327 | "symfony/dependency-injection": "^5.4|^6.0", | 4681 | "symfony/dependency-injection": "^5.4|^6.0", |
4328 | "symfony/error-handler": "^5.4|^6.0", | 4682 | "symfony/error-handler": "^5.4|^6.0", |
4329 | "symfony/expression-language": "^5.4|^6.0", | 4683 | "symfony/expression-language": "^5.4|^6.0", |
4330 | "symfony/http-foundation": "^5.4|^6.0", | 4684 | "symfony/http-foundation": "^5.4|^6.0", |
4331 | "symfony/service-contracts": "^1.1|^2|^3", | 4685 | "symfony/service-contracts": "^1.1|^2|^3", |
4332 | "symfony/stopwatch": "^5.4|^6.0" | 4686 | "symfony/stopwatch": "^5.4|^6.0" |
4333 | }, | 4687 | }, |
4334 | "suggest": { | 4688 | "suggest": { |
4335 | "symfony/dependency-injection": "", | 4689 | "symfony/dependency-injection": "", |
4336 | "symfony/http-kernel": "" | 4690 | "symfony/http-kernel": "" |
4337 | }, | 4691 | }, |
4338 | "type": "library", | 4692 | "type": "library", |
4339 | "autoload": { | 4693 | "autoload": { |
4340 | "psr-4": { | 4694 | "psr-4": { |
4341 | "Symfony\\Component\\EventDispatcher\\": "" | 4695 | "Symfony\\Component\\EventDispatcher\\": "" |
4342 | }, | 4696 | }, |
4343 | "exclude-from-classmap": [ | 4697 | "exclude-from-classmap": [ |
4344 | "/Tests/" | 4698 | "/Tests/" |
4345 | ] | 4699 | ] |
4346 | }, | 4700 | }, |
4347 | "notification-url": "https://packagist.org/downloads/", | 4701 | "notification-url": "https://packagist.org/downloads/", |
4348 | "license": [ | 4702 | "license": [ |
4349 | "MIT" | 4703 | "MIT" |
4350 | ], | 4704 | ], |
4351 | "authors": [ | 4705 | "authors": [ |
4352 | { | 4706 | { |
4353 | "name": "Fabien Potencier", | 4707 | "name": "Fabien Potencier", |
4354 | "email": "fabien@symfony.com" | 4708 | "email": "fabien@symfony.com" |
4355 | }, | 4709 | }, |
4356 | { | 4710 | { |
4357 | "name": "Symfony Community", | 4711 | "name": "Symfony Community", |
4358 | "homepage": "https://symfony.com/contributors" | 4712 | "homepage": "https://symfony.com/contributors" |
4359 | } | 4713 | } |
4360 | ], | 4714 | ], |
4361 | "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", | 4715 | "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", |
4362 | "homepage": "https://symfony.com", | 4716 | "homepage": "https://symfony.com", |
4363 | "support": { | 4717 | "support": { |
4364 | "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19" | 4718 | "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19" |
4365 | }, | 4719 | }, |
4366 | "funding": [ | 4720 | "funding": [ |
4367 | { | 4721 | { |
4368 | "url": "https://symfony.com/sponsor", | 4722 | "url": "https://symfony.com/sponsor", |
4369 | "type": "custom" | 4723 | "type": "custom" |
4370 | }, | 4724 | }, |
4371 | { | 4725 | { |
4372 | "url": "https://github.com/fabpot", | 4726 | "url": "https://github.com/fabpot", |
4373 | "type": "github" | 4727 | "type": "github" |
4374 | }, | 4728 | }, |
4375 | { | 4729 | { |
4376 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4730 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4377 | "type": "tidelift" | 4731 | "type": "tidelift" |
4378 | } | 4732 | } |
4379 | ], | 4733 | ], |
4380 | "time": "2023-01-01T08:36:10+00:00" | 4734 | "time": "2023-01-01T08:36:10+00:00" |
4381 | }, | 4735 | }, |
4382 | { | 4736 | { |
4383 | "name": "symfony/event-dispatcher-contracts", | 4737 | "name": "symfony/event-dispatcher-contracts", |
4384 | "version": "v3.0.2", | 4738 | "version": "v3.0.2", |
4385 | "source": { | 4739 | "source": { |
4386 | "type": "git", | 4740 | "type": "git", |
4387 | "url": "https://github.com/symfony/event-dispatcher-contracts.git", | 4741 | "url": "https://github.com/symfony/event-dispatcher-contracts.git", |
4388 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051" | 4742 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051" |
4389 | }, | 4743 | }, |
4390 | "dist": { | 4744 | "dist": { |
4391 | "type": "zip", | 4745 | "type": "zip", |
4392 | "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051", | 4746 | "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051", |
4393 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051", | 4747 | "reference": "7bc61cc2db649b4637d331240c5346dcc7708051", |
4394 | "shasum": "" | 4748 | "shasum": "" |
4395 | }, | 4749 | }, |
4396 | "require": { | 4750 | "require": { |
4397 | "php": ">=8.0.2", | 4751 | "php": ">=8.0.2", |
4398 | "psr/event-dispatcher": "^1" | 4752 | "psr/event-dispatcher": "^1" |
4399 | }, | 4753 | }, |
4400 | "suggest": { | 4754 | "suggest": { |
4401 | "symfony/event-dispatcher-implementation": "" | 4755 | "symfony/event-dispatcher-implementation": "" |
4402 | }, | 4756 | }, |
4403 | "type": "library", | 4757 | "type": "library", |
4404 | "extra": { | 4758 | "extra": { |
4405 | "branch-alias": { | 4759 | "branch-alias": { |
4406 | "dev-main": "3.0-dev" | 4760 | "dev-main": "3.0-dev" |
4407 | }, | 4761 | }, |
4408 | "thanks": { | 4762 | "thanks": { |
4409 | "name": "symfony/contracts", | 4763 | "name": "symfony/contracts", |
4410 | "url": "https://github.com/symfony/contracts" | 4764 | "url": "https://github.com/symfony/contracts" |
4411 | } | 4765 | } |
4412 | }, | 4766 | }, |
4413 | "autoload": { | 4767 | "autoload": { |
4414 | "psr-4": { | 4768 | "psr-4": { |
4415 | "Symfony\\Contracts\\EventDispatcher\\": "" | 4769 | "Symfony\\Contracts\\EventDispatcher\\": "" |
4416 | } | 4770 | } |
4417 | }, | 4771 | }, |
4418 | "notification-url": "https://packagist.org/downloads/", | 4772 | "notification-url": "https://packagist.org/downloads/", |
4419 | "license": [ | 4773 | "license": [ |
4420 | "MIT" | 4774 | "MIT" |
4421 | ], | 4775 | ], |
4422 | "authors": [ | 4776 | "authors": [ |
4423 | { | 4777 | { |
4424 | "name": "Nicolas Grekas", | 4778 | "name": "Nicolas Grekas", |
4425 | "email": "p@tchwork.com" | 4779 | "email": "p@tchwork.com" |
4426 | }, | 4780 | }, |
4427 | { | 4781 | { |
4428 | "name": "Symfony Community", | 4782 | "name": "Symfony Community", |
4429 | "homepage": "https://symfony.com/contributors" | 4783 | "homepage": "https://symfony.com/contributors" |
4430 | } | 4784 | } |
4431 | ], | 4785 | ], |
4432 | "description": "Generic abstractions related to dispatching event", | 4786 | "description": "Generic abstractions related to dispatching event", |
4433 | "homepage": "https://symfony.com", | 4787 | "homepage": "https://symfony.com", |
4434 | "keywords": [ | 4788 | "keywords": [ |
4435 | "abstractions", | 4789 | "abstractions", |
4436 | "contracts", | 4790 | "contracts", |
4437 | "decoupling", | 4791 | "decoupling", |
4438 | "interfaces", | 4792 | "interfaces", |
4439 | "interoperability", | 4793 | "interoperability", |
4440 | "standards" | 4794 | "standards" |
4441 | ], | 4795 | ], |
4442 | "support": { | 4796 | "support": { |
4443 | "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2" | 4797 | "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2" |
4444 | }, | 4798 | }, |
4445 | "funding": [ | 4799 | "funding": [ |
4446 | { | 4800 | { |
4447 | "url": "https://symfony.com/sponsor", | 4801 | "url": "https://symfony.com/sponsor", |
4448 | "type": "custom" | 4802 | "type": "custom" |
4449 | }, | 4803 | }, |
4450 | { | 4804 | { |
4451 | "url": "https://github.com/fabpot", | 4805 | "url": "https://github.com/fabpot", |
4452 | "type": "github" | 4806 | "type": "github" |
4453 | }, | 4807 | }, |
4454 | { | 4808 | { |
4455 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4809 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4456 | "type": "tidelift" | 4810 | "type": "tidelift" |
4457 | } | 4811 | } |
4458 | ], | 4812 | ], |
4459 | "time": "2022-01-02T09:55:41+00:00" | 4813 | "time": "2022-01-02T09:55:41+00:00" |
4460 | }, | 4814 | }, |
4461 | { | 4815 | { |
4462 | "name": "symfony/finder", | 4816 | "name": "symfony/finder", |
4463 | "version": "v6.0.19", | 4817 | "version": "v6.0.19", |
4464 | "source": { | 4818 | "source": { |
4465 | "type": "git", | 4819 | "type": "git", |
4466 | "url": "https://github.com/symfony/finder.git", | 4820 | "url": "https://github.com/symfony/finder.git", |
4467 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11" | 4821 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11" |
4468 | }, | 4822 | }, |
4469 | "dist": { | 4823 | "dist": { |
4470 | "type": "zip", | 4824 | "type": "zip", |
4471 | "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11", | 4825 | "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11", |
4472 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11", | 4826 | "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11", |
4473 | "shasum": "" | 4827 | "shasum": "" |
4474 | }, | 4828 | }, |
4475 | "require": { | 4829 | "require": { |
4476 | "php": ">=8.0.2" | 4830 | "php": ">=8.0.2" |
4477 | }, | 4831 | }, |
4478 | "type": "library", | 4832 | "type": "library", |
4479 | "autoload": { | 4833 | "autoload": { |
4480 | "psr-4": { | 4834 | "psr-4": { |
4481 | "Symfony\\Component\\Finder\\": "" | 4835 | "Symfony\\Component\\Finder\\": "" |
4482 | }, | 4836 | }, |
4483 | "exclude-from-classmap": [ | 4837 | "exclude-from-classmap": [ |
4484 | "/Tests/" | 4838 | "/Tests/" |
4485 | ] | 4839 | ] |
4486 | }, | 4840 | }, |
4487 | "notification-url": "https://packagist.org/downloads/", | 4841 | "notification-url": "https://packagist.org/downloads/", |
4488 | "license": [ | 4842 | "license": [ |
4489 | "MIT" | 4843 | "MIT" |
4490 | ], | 4844 | ], |
4491 | "authors": [ | 4845 | "authors": [ |
4492 | { | 4846 | { |
4493 | "name": "Fabien Potencier", | 4847 | "name": "Fabien Potencier", |
4494 | "email": "fabien@symfony.com" | 4848 | "email": "fabien@symfony.com" |
4495 | }, | 4849 | }, |
4496 | { | 4850 | { |
4497 | "name": "Symfony Community", | 4851 | "name": "Symfony Community", |
4498 | "homepage": "https://symfony.com/contributors" | 4852 | "homepage": "https://symfony.com/contributors" |
4499 | } | 4853 | } |
4500 | ], | 4854 | ], |
4501 | "description": "Finds files and directories via an intuitive fluent interface", | 4855 | "description": "Finds files and directories via an intuitive fluent interface", |
4502 | "homepage": "https://symfony.com", | 4856 | "homepage": "https://symfony.com", |
4503 | "support": { | 4857 | "support": { |
4504 | "source": "https://github.com/symfony/finder/tree/v6.0.19" | 4858 | "source": "https://github.com/symfony/finder/tree/v6.0.19" |
4505 | }, | 4859 | }, |
4506 | "funding": [ | 4860 | "funding": [ |
4507 | { | 4861 | { |
4508 | "url": "https://symfony.com/sponsor", | 4862 | "url": "https://symfony.com/sponsor", |
4509 | "type": "custom" | 4863 | "type": "custom" |
4510 | }, | 4864 | }, |
4511 | { | 4865 | { |
4512 | "url": "https://github.com/fabpot", | 4866 | "url": "https://github.com/fabpot", |
4513 | "type": "github" | 4867 | "type": "github" |
4514 | }, | 4868 | }, |
4515 | { | 4869 | { |
4516 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4870 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4517 | "type": "tidelift" | 4871 | "type": "tidelift" |
4518 | } | 4872 | } |
4519 | ], | 4873 | ], |
4520 | "time": "2023-01-20T17:44:14+00:00" | 4874 | "time": "2023-01-20T17:44:14+00:00" |
4521 | }, | 4875 | }, |
4522 | { | 4876 | { |
4523 | "name": "symfony/http-foundation", | 4877 | "name": "symfony/http-foundation", |
4524 | "version": "v6.0.20", | 4878 | "version": "v6.0.20", |
4525 | "source": { | 4879 | "source": { |
4526 | "type": "git", | 4880 | "type": "git", |
4527 | "url": "https://github.com/symfony/http-foundation.git", | 4881 | "url": "https://github.com/symfony/http-foundation.git", |
4528 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6" | 4882 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6" |
4529 | }, | 4883 | }, |
4530 | "dist": { | 4884 | "dist": { |
4531 | "type": "zip", | 4885 | "type": "zip", |
4532 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6", | 4886 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6", |
4533 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6", | 4887 | "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6", |
4534 | "shasum": "" | 4888 | "shasum": "" |
4535 | }, | 4889 | }, |
4536 | "require": { | 4890 | "require": { |
4537 | "php": ">=8.0.2", | 4891 | "php": ">=8.0.2", |
4538 | "symfony/deprecation-contracts": "^2.1|^3", | 4892 | "symfony/deprecation-contracts": "^2.1|^3", |
4539 | "symfony/polyfill-mbstring": "~1.1" | 4893 | "symfony/polyfill-mbstring": "~1.1" |
4540 | }, | 4894 | }, |
4541 | "require-dev": { | 4895 | "require-dev": { |
4542 | "predis/predis": "~1.0", | 4896 | "predis/predis": "~1.0", |
4543 | "symfony/cache": "^5.4|^6.0", | 4897 | "symfony/cache": "^5.4|^6.0", |
4544 | "symfony/dependency-injection": "^5.4|^6.0", | 4898 | "symfony/dependency-injection": "^5.4|^6.0", |
4545 | "symfony/expression-language": "^5.4|^6.0", | 4899 | "symfony/expression-language": "^5.4|^6.0", |
4546 | "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", | 4900 | "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4", |
4547 | "symfony/mime": "^5.4|^6.0", | 4901 | "symfony/mime": "^5.4|^6.0", |
4548 | "symfony/rate-limiter": "^5.2|^6.0" | 4902 | "symfony/rate-limiter": "^5.2|^6.0" |
4549 | }, | 4903 | }, |
4550 | "suggest": { | 4904 | "suggest": { |
4551 | "symfony/mime": "To use the file extension guesser" | 4905 | "symfony/mime": "To use the file extension guesser" |
4552 | }, | 4906 | }, |
4553 | "type": "library", | 4907 | "type": "library", |
4554 | "autoload": { | 4908 | "autoload": { |
4555 | "psr-4": { | 4909 | "psr-4": { |
4556 | "Symfony\\Component\\HttpFoundation\\": "" | 4910 | "Symfony\\Component\\HttpFoundation\\": "" |
4557 | }, | 4911 | }, |
4558 | "exclude-from-classmap": [ | 4912 | "exclude-from-classmap": [ |
4559 | "/Tests/" | 4913 | "/Tests/" |
4560 | ] | 4914 | ] |
4561 | }, | 4915 | }, |
4562 | "notification-url": "https://packagist.org/downloads/", | 4916 | "notification-url": "https://packagist.org/downloads/", |
4563 | "license": [ | 4917 | "license": [ |
4564 | "MIT" | 4918 | "MIT" |
4565 | ], | 4919 | ], |
4566 | "authors": [ | 4920 | "authors": [ |
4567 | { | 4921 | { |
4568 | "name": "Fabien Potencier", | 4922 | "name": "Fabien Potencier", |
4569 | "email": "fabien@symfony.com" | 4923 | "email": "fabien@symfony.com" |
4570 | }, | 4924 | }, |
4571 | { | 4925 | { |
4572 | "name": "Symfony Community", | 4926 | "name": "Symfony Community", |
4573 | "homepage": "https://symfony.com/contributors" | 4927 | "homepage": "https://symfony.com/contributors" |
4574 | } | 4928 | } |
4575 | ], | 4929 | ], |
4576 | "description": "Defines an object-oriented layer for the HTTP specification", | 4930 | "description": "Defines an object-oriented layer for the HTTP specification", |
4577 | "homepage": "https://symfony.com", | 4931 | "homepage": "https://symfony.com", |
4578 | "support": { | 4932 | "support": { |
4579 | "source": "https://github.com/symfony/http-foundation/tree/v6.0.20" | 4933 | "source": "https://github.com/symfony/http-foundation/tree/v6.0.20" |
4580 | }, | 4934 | }, |
4581 | "funding": [ | 4935 | "funding": [ |
4582 | { | 4936 | { |
4583 | "url": "https://symfony.com/sponsor", | 4937 | "url": "https://symfony.com/sponsor", |
4584 | "type": "custom" | 4938 | "type": "custom" |
4585 | }, | 4939 | }, |
4586 | { | 4940 | { |
4587 | "url": "https://github.com/fabpot", | 4941 | "url": "https://github.com/fabpot", |
4588 | "type": "github" | 4942 | "type": "github" |
4589 | }, | 4943 | }, |
4590 | { | 4944 | { |
4591 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 4945 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4592 | "type": "tidelift" | 4946 | "type": "tidelift" |
4593 | } | 4947 | } |
4594 | ], | 4948 | ], |
4595 | "time": "2023-01-30T15:41:07+00:00" | 4949 | "time": "2023-01-30T15:41:07+00:00" |
4596 | }, | 4950 | }, |
4597 | { | 4951 | { |
4598 | "name": "symfony/http-kernel", | 4952 | "name": "symfony/http-kernel", |
4599 | "version": "v6.0.20", | 4953 | "version": "v6.0.20", |
4600 | "source": { | 4954 | "source": { |
4601 | "type": "git", | 4955 | "type": "git", |
4602 | "url": "https://github.com/symfony/http-kernel.git", | 4956 | "url": "https://github.com/symfony/http-kernel.git", |
4603 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349" | 4957 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349" |
4604 | }, | 4958 | }, |
4605 | "dist": { | 4959 | "dist": { |
4606 | "type": "zip", | 4960 | "type": "zip", |
4607 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349", | 4961 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349", |
4608 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349", | 4962 | "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349", |
4609 | "shasum": "" | 4963 | "shasum": "" |
4610 | }, | 4964 | }, |
4611 | "require": { | 4965 | "require": { |
4612 | "php": ">=8.0.2", | 4966 | "php": ">=8.0.2", |
4613 | "psr/log": "^1|^2|^3", | 4967 | "psr/log": "^1|^2|^3", |
4614 | "symfony/error-handler": "^5.4|^6.0", | 4968 | "symfony/error-handler": "^5.4|^6.0", |
4615 | "symfony/event-dispatcher": "^5.4|^6.0", | 4969 | "symfony/event-dispatcher": "^5.4|^6.0", |
4616 | "symfony/http-foundation": "^5.4|^6.0", | 4970 | "symfony/http-foundation": "^5.4|^6.0", |
4617 | "symfony/polyfill-ctype": "^1.8" | 4971 | "symfony/polyfill-ctype": "^1.8" |
4618 | }, | 4972 | }, |
4619 | "conflict": { | 4973 | "conflict": { |
4620 | "symfony/browser-kit": "<5.4", | 4974 | "symfony/browser-kit": "<5.4", |
4621 | "symfony/cache": "<5.4", | 4975 | "symfony/cache": "<5.4", |
4622 | "symfony/config": "<5.4", | 4976 | "symfony/config": "<5.4", |
4623 | "symfony/console": "<5.4", | 4977 | "symfony/console": "<5.4", |
4624 | "symfony/dependency-injection": "<5.4", | 4978 | "symfony/dependency-injection": "<5.4", |
4625 | "symfony/doctrine-bridge": "<5.4", | 4979 | "symfony/doctrine-bridge": "<5.4", |
4626 | "symfony/form": "<5.4", | 4980 | "symfony/form": "<5.4", |
4627 | "symfony/http-client": "<5.4", | 4981 | "symfony/http-client": "<5.4", |
4628 | "symfony/mailer": "<5.4", | 4982 | "symfony/mailer": "<5.4", |
4629 | "symfony/messenger": "<5.4", | 4983 | "symfony/messenger": "<5.4", |
4630 | "symfony/translation": "<5.4", | 4984 | "symfony/translation": "<5.4", |
4631 | "symfony/twig-bridge": "<5.4", | 4985 | "symfony/twig-bridge": "<5.4", |
4632 | "symfony/validator": "<5.4", | 4986 | "symfony/validator": "<5.4", |
4633 | "twig/twig": "<2.13" | 4987 | "twig/twig": "<2.13" |
4634 | }, | 4988 | }, |
4635 | "provide": { | 4989 | "provide": { |
4636 | "psr/log-implementation": "1.0|2.0|3.0" | 4990 | "psr/log-implementation": "1.0|2.0|3.0" |
4637 | }, | 4991 | }, |
4638 | "require-dev": { | 4992 | "require-dev": { |
4639 | "psr/cache": "^1.0|^2.0|^3.0", | 4993 | "psr/cache": "^1.0|^2.0|^3.0", |
4640 | "symfony/browser-kit": "^5.4|^6.0", | 4994 | "symfony/browser-kit": "^5.4|^6.0", |
4641 | "symfony/config": "^5.4|^6.0", | 4995 | "symfony/config": "^5.4|^6.0", |
4642 | "symfony/console": "^5.4|^6.0", | 4996 | "symfony/console": "^5.4|^6.0", |
4643 | "symfony/css-selector": "^5.4|^6.0", | 4997 | "symfony/css-selector": "^5.4|^6.0", |
4644 | "symfony/dependency-injection": "^5.4|^6.0", | 4998 | "symfony/dependency-injection": "^5.4|^6.0", |
4645 | "symfony/dom-crawler": "^5.4|^6.0", | 4999 | "symfony/dom-crawler": "^5.4|^6.0", |
4646 | "symfony/expression-language": "^5.4|^6.0", | 5000 | "symfony/expression-language": "^5.4|^6.0", |
4647 | "symfony/finder": "^5.4|^6.0", | 5001 | "symfony/finder": "^5.4|^6.0", |
4648 | "symfony/http-client-contracts": "^1.1|^2|^3", | 5002 | "symfony/http-client-contracts": "^1.1|^2|^3", |
4649 | "symfony/process": "^5.4|^6.0", | 5003 | "symfony/process": "^5.4|^6.0", |
4650 | "symfony/routing": "^5.4|^6.0", | 5004 | "symfony/routing": "^5.4|^6.0", |
4651 | "symfony/stopwatch": "^5.4|^6.0", | 5005 | "symfony/stopwatch": "^5.4|^6.0", |
4652 | "symfony/translation": "^5.4|^6.0", | 5006 | "symfony/translation": "^5.4|^6.0", |
4653 | "symfony/translation-contracts": "^1.1|^2|^3", | 5007 | "symfony/translation-contracts": "^1.1|^2|^3", |
4654 | "twig/twig": "^2.13|^3.0.4" | 5008 | "twig/twig": "^2.13|^3.0.4" |
4655 | }, | 5009 | }, |
4656 | "suggest": { | 5010 | "suggest": { |
4657 | "symfony/browser-kit": "", | 5011 | "symfony/browser-kit": "", |
4658 | "symfony/config": "", | 5012 | "symfony/config": "", |
4659 | "symfony/console": "", | 5013 | "symfony/console": "", |
4660 | "symfony/dependency-injection": "" | 5014 | "symfony/dependency-injection": "" |
4661 | }, | 5015 | }, |
4662 | "type": "library", | 5016 | "type": "library", |
4663 | "autoload": { | 5017 | "autoload": { |
4664 | "psr-4": { | 5018 | "psr-4": { |
4665 | "Symfony\\Component\\HttpKernel\\": "" | 5019 | "Symfony\\Component\\HttpKernel\\": "" |
4666 | }, | 5020 | }, |
4667 | "exclude-from-classmap": [ | 5021 | "exclude-from-classmap": [ |
4668 | "/Tests/" | 5022 | "/Tests/" |
4669 | ] | 5023 | ] |
4670 | }, | 5024 | }, |
4671 | "notification-url": "https://packagist.org/downloads/", | 5025 | "notification-url": "https://packagist.org/downloads/", |
4672 | "license": [ | 5026 | "license": [ |
4673 | "MIT" | 5027 | "MIT" |
4674 | ], | 5028 | ], |
4675 | "authors": [ | 5029 | "authors": [ |
4676 | { | 5030 | { |
4677 | "name": "Fabien Potencier", | 5031 | "name": "Fabien Potencier", |
4678 | "email": "fabien@symfony.com" | 5032 | "email": "fabien@symfony.com" |
4679 | }, | 5033 | }, |
4680 | { | 5034 | { |
4681 | "name": "Symfony Community", | 5035 | "name": "Symfony Community", |
4682 | "homepage": "https://symfony.com/contributors" | 5036 | "homepage": "https://symfony.com/contributors" |
4683 | } | 5037 | } |
4684 | ], | 5038 | ], |
4685 | "description": "Provides a structured process for converting a Request into a Response", | 5039 | "description": "Provides a structured process for converting a Request into a Response", |
4686 | "homepage": "https://symfony.com", | 5040 | "homepage": "https://symfony.com", |
4687 | "support": { | 5041 | "support": { |
4688 | "source": "https://github.com/symfony/http-kernel/tree/v6.0.20" | 5042 | "source": "https://github.com/symfony/http-kernel/tree/v6.0.20" |
4689 | }, | 5043 | }, |
4690 | "funding": [ | 5044 | "funding": [ |
4691 | { | 5045 | { |
4692 | "url": "https://symfony.com/sponsor", | 5046 | "url": "https://symfony.com/sponsor", |
4693 | "type": "custom" | 5047 | "type": "custom" |
4694 | }, | 5048 | }, |
4695 | { | 5049 | { |
4696 | "url": "https://github.com/fabpot", | 5050 | "url": "https://github.com/fabpot", |
4697 | "type": "github" | 5051 | "type": "github" |
4698 | }, | 5052 | }, |
4699 | { | 5053 | { |
4700 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5054 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4701 | "type": "tidelift" | 5055 | "type": "tidelift" |
4702 | } | 5056 | } |
4703 | ], | 5057 | ], |
4704 | "time": "2023-02-01T08:22:55+00:00" | 5058 | "time": "2023-02-01T08:22:55+00:00" |
4705 | }, | 5059 | }, |
4706 | { | 5060 | { |
4707 | "name": "symfony/mailer", | 5061 | "name": "symfony/mailer", |
4708 | "version": "v6.0.19", | 5062 | "version": "v6.0.19", |
4709 | "source": { | 5063 | "source": { |
4710 | "type": "git", | 5064 | "type": "git", |
4711 | "url": "https://github.com/symfony/mailer.git", | 5065 | "url": "https://github.com/symfony/mailer.git", |
4712 | "reference": "cd60799210c488f545ddde2444dc1aa548322872" | 5066 | "reference": "cd60799210c488f545ddde2444dc1aa548322872" |
4713 | }, | 5067 | }, |
4714 | "dist": { | 5068 | "dist": { |
4715 | "type": "zip", | 5069 | "type": "zip", |
4716 | "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872", | 5070 | "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872", |
4717 | "reference": "cd60799210c488f545ddde2444dc1aa548322872", | 5071 | "reference": "cd60799210c488f545ddde2444dc1aa548322872", |
4718 | "shasum": "" | 5072 | "shasum": "" |
4719 | }, | 5073 | }, |
4720 | "require": { | 5074 | "require": { |
4721 | "egulias/email-validator": "^2.1.10|^3|^4", | 5075 | "egulias/email-validator": "^2.1.10|^3|^4", |
4722 | "php": ">=8.0.2", | 5076 | "php": ">=8.0.2", |
4723 | "psr/event-dispatcher": "^1", | 5077 | "psr/event-dispatcher": "^1", |
4724 | "psr/log": "^1|^2|^3", | 5078 | "psr/log": "^1|^2|^3", |
4725 | "symfony/event-dispatcher": "^5.4|^6.0", | 5079 | "symfony/event-dispatcher": "^5.4|^6.0", |
4726 | "symfony/mime": "^5.4|^6.0", | 5080 | "symfony/mime": "^5.4|^6.0", |
4727 | "symfony/service-contracts": "^1.1|^2|^3" | 5081 | "symfony/service-contracts": "^1.1|^2|^3" |
4728 | }, | 5082 | }, |
4729 | "conflict": { | 5083 | "conflict": { |
4730 | "symfony/http-kernel": "<5.4" | 5084 | "symfony/http-kernel": "<5.4" |
4731 | }, | 5085 | }, |
4732 | "require-dev": { | 5086 | "require-dev": { |
4733 | "symfony/http-client-contracts": "^1.1|^2|^3", | 5087 | "symfony/http-client-contracts": "^1.1|^2|^3", |
4734 | "symfony/messenger": "^5.4|^6.0" | 5088 | "symfony/messenger": "^5.4|^6.0" |
4735 | }, | 5089 | }, |
4736 | "type": "library", | 5090 | "type": "library", |
4737 | "autoload": { | 5091 | "autoload": { |
4738 | "psr-4": { | 5092 | "psr-4": { |
4739 | "Symfony\\Component\\Mailer\\": "" | 5093 | "Symfony\\Component\\Mailer\\": "" |
4740 | }, | 5094 | }, |
4741 | "exclude-from-classmap": [ | 5095 | "exclude-from-classmap": [ |
4742 | "/Tests/" | 5096 | "/Tests/" |
4743 | ] | 5097 | ] |
4744 | }, | 5098 | }, |
4745 | "notification-url": "https://packagist.org/downloads/", | 5099 | "notification-url": "https://packagist.org/downloads/", |
4746 | "license": [ | 5100 | "license": [ |
4747 | "MIT" | 5101 | "MIT" |
4748 | ], | 5102 | ], |
4749 | "authors": [ | 5103 | "authors": [ |
4750 | { | 5104 | { |
4751 | "name": "Fabien Potencier", | 5105 | "name": "Fabien Potencier", |
4752 | "email": "fabien@symfony.com" | 5106 | "email": "fabien@symfony.com" |
4753 | }, | 5107 | }, |
4754 | { | 5108 | { |
4755 | "name": "Symfony Community", | 5109 | "name": "Symfony Community", |
4756 | "homepage": "https://symfony.com/contributors" | 5110 | "homepage": "https://symfony.com/contributors" |
4757 | } | 5111 | } |
4758 | ], | 5112 | ], |
4759 | "description": "Helps sending emails", | 5113 | "description": "Helps sending emails", |
4760 | "homepage": "https://symfony.com", | 5114 | "homepage": "https://symfony.com", |
4761 | "support": { | 5115 | "support": { |
4762 | "source": "https://github.com/symfony/mailer/tree/v6.0.19" | 5116 | "source": "https://github.com/symfony/mailer/tree/v6.0.19" |
4763 | }, | 5117 | }, |
4764 | "funding": [ | 5118 | "funding": [ |
4765 | { | 5119 | { |
4766 | "url": "https://symfony.com/sponsor", | 5120 | "url": "https://symfony.com/sponsor", |
4767 | "type": "custom" | 5121 | "type": "custom" |
4768 | }, | 5122 | }, |
4769 | { | 5123 | { |
4770 | "url": "https://github.com/fabpot", | 5124 | "url": "https://github.com/fabpot", |
4771 | "type": "github" | 5125 | "type": "github" |
4772 | }, | 5126 | }, |
4773 | { | 5127 | { |
4774 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5128 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4775 | "type": "tidelift" | 5129 | "type": "tidelift" |
4776 | } | 5130 | } |
4777 | ], | 5131 | ], |
4778 | "time": "2023-01-11T11:50:03+00:00" | 5132 | "time": "2023-01-11T11:50:03+00:00" |
4779 | }, | 5133 | }, |
4780 | { | 5134 | { |
4781 | "name": "symfony/mime", | 5135 | "name": "symfony/mime", |
4782 | "version": "v6.0.19", | 5136 | "version": "v6.0.19", |
4783 | "source": { | 5137 | "source": { |
4784 | "type": "git", | 5138 | "type": "git", |
4785 | "url": "https://github.com/symfony/mime.git", | 5139 | "url": "https://github.com/symfony/mime.git", |
4786 | "reference": "d7052547a0070cbeadd474e172b527a00d657301" | 5140 | "reference": "d7052547a0070cbeadd474e172b527a00d657301" |
4787 | }, | 5141 | }, |
4788 | "dist": { | 5142 | "dist": { |
4789 | "type": "zip", | 5143 | "type": "zip", |
4790 | "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301", | 5144 | "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301", |
4791 | "reference": "d7052547a0070cbeadd474e172b527a00d657301", | 5145 | "reference": "d7052547a0070cbeadd474e172b527a00d657301", |
4792 | "shasum": "" | 5146 | "shasum": "" |
4793 | }, | 5147 | }, |
4794 | "require": { | 5148 | "require": { |
4795 | "php": ">=8.0.2", | 5149 | "php": ">=8.0.2", |
4796 | "symfony/polyfill-intl-idn": "^1.10", | 5150 | "symfony/polyfill-intl-idn": "^1.10", |
4797 | "symfony/polyfill-mbstring": "^1.0" | 5151 | "symfony/polyfill-mbstring": "^1.0" |
4798 | }, | 5152 | }, |
4799 | "conflict": { | 5153 | "conflict": { |
4800 | "egulias/email-validator": "~3.0.0", | 5154 | "egulias/email-validator": "~3.0.0", |
4801 | "phpdocumentor/reflection-docblock": "<3.2.2", | 5155 | "phpdocumentor/reflection-docblock": "<3.2.2", |
4802 | "phpdocumentor/type-resolver": "<1.4.0", | 5156 | "phpdocumentor/type-resolver": "<1.4.0", |
4803 | "symfony/mailer": "<5.4", | 5157 | "symfony/mailer": "<5.4", |
4804 | "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" | 5158 | "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6" |
4805 | }, | 5159 | }, |
4806 | "require-dev": { | 5160 | "require-dev": { |
4807 | "egulias/email-validator": "^2.1.10|^3.1|^4", | 5161 | "egulias/email-validator": "^2.1.10|^3.1|^4", |
4808 | "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", | 5162 | "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", |
4809 | "symfony/dependency-injection": "^5.4|^6.0", | 5163 | "symfony/dependency-injection": "^5.4|^6.0", |
4810 | "symfony/property-access": "^5.4|^6.0", | 5164 | "symfony/property-access": "^5.4|^6.0", |
4811 | "symfony/property-info": "^5.4|^6.0", | 5165 | "symfony/property-info": "^5.4|^6.0", |
4812 | "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6" | 5166 | "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6" |
4813 | }, | 5167 | }, |
4814 | "type": "library", | 5168 | "type": "library", |
4815 | "autoload": { | 5169 | "autoload": { |
4816 | "psr-4": { | 5170 | "psr-4": { |
4817 | "Symfony\\Component\\Mime\\": "" | 5171 | "Symfony\\Component\\Mime\\": "" |
4818 | }, | 5172 | }, |
4819 | "exclude-from-classmap": [ | 5173 | "exclude-from-classmap": [ |
4820 | "/Tests/" | 5174 | "/Tests/" |
4821 | ] | 5175 | ] |
4822 | }, | 5176 | }, |
4823 | "notification-url": "https://packagist.org/downloads/", | 5177 | "notification-url": "https://packagist.org/downloads/", |
4824 | "license": [ | 5178 | "license": [ |
4825 | "MIT" | 5179 | "MIT" |
4826 | ], | 5180 | ], |
4827 | "authors": [ | 5181 | "authors": [ |
4828 | { | 5182 | { |
4829 | "name": "Fabien Potencier", | 5183 | "name": "Fabien Potencier", |
4830 | "email": "fabien@symfony.com" | 5184 | "email": "fabien@symfony.com" |
4831 | }, | 5185 | }, |
4832 | { | 5186 | { |
4833 | "name": "Symfony Community", | 5187 | "name": "Symfony Community", |
4834 | "homepage": "https://symfony.com/contributors" | 5188 | "homepage": "https://symfony.com/contributors" |
4835 | } | 5189 | } |
4836 | ], | 5190 | ], |
4837 | "description": "Allows manipulating MIME messages", | 5191 | "description": "Allows manipulating MIME messages", |
4838 | "homepage": "https://symfony.com", | 5192 | "homepage": "https://symfony.com", |
4839 | "keywords": [ | 5193 | "keywords": [ |
4840 | "mime", | 5194 | "mime", |
4841 | "mime-type" | 5195 | "mime-type" |
4842 | ], | 5196 | ], |
4843 | "support": { | 5197 | "support": { |
4844 | "source": "https://github.com/symfony/mime/tree/v6.0.19" | 5198 | "source": "https://github.com/symfony/mime/tree/v6.0.19" |
4845 | }, | 5199 | }, |
4846 | "funding": [ | 5200 | "funding": [ |
4847 | { | 5201 | { |
4848 | "url": "https://symfony.com/sponsor", | 5202 | "url": "https://symfony.com/sponsor", |
4849 | "type": "custom" | 5203 | "type": "custom" |
4850 | }, | 5204 | }, |
4851 | { | 5205 | { |
4852 | "url": "https://github.com/fabpot", | 5206 | "url": "https://github.com/fabpot", |
4853 | "type": "github" | 5207 | "type": "github" |
4854 | }, | 5208 | }, |
4855 | { | 5209 | { |
4856 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5210 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4857 | "type": "tidelift" | 5211 | "type": "tidelift" |
4858 | } | 5212 | } |
4859 | ], | 5213 | ], |
4860 | "time": "2023-01-11T11:50:03+00:00" | 5214 | "time": "2023-01-11T11:50:03+00:00" |
4861 | }, | 5215 | }, |
4862 | { | 5216 | { |
4863 | "name": "symfony/polyfill-ctype", | 5217 | "name": "symfony/polyfill-ctype", |
4864 | "version": "v1.27.0", | 5218 | "version": "v1.27.0", |
4865 | "source": { | 5219 | "source": { |
4866 | "type": "git", | 5220 | "type": "git", |
4867 | "url": "https://github.com/symfony/polyfill-ctype.git", | 5221 | "url": "https://github.com/symfony/polyfill-ctype.git", |
4868 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" | 5222 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" |
4869 | }, | 5223 | }, |
4870 | "dist": { | 5224 | "dist": { |
4871 | "type": "zip", | 5225 | "type": "zip", |
4872 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", | 5226 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", |
4873 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", | 5227 | "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", |
4874 | "shasum": "" | 5228 | "shasum": "" |
4875 | }, | 5229 | }, |
4876 | "require": { | 5230 | "require": { |
4877 | "php": ">=7.1" | 5231 | "php": ">=7.1" |
4878 | }, | 5232 | }, |
4879 | "provide": { | 5233 | "provide": { |
4880 | "ext-ctype": "*" | 5234 | "ext-ctype": "*" |
4881 | }, | 5235 | }, |
4882 | "suggest": { | 5236 | "suggest": { |
4883 | "ext-ctype": "For best performance" | 5237 | "ext-ctype": "For best performance" |
4884 | }, | 5238 | }, |
4885 | "type": "library", | 5239 | "type": "library", |
4886 | "extra": { | 5240 | "extra": { |
4887 | "branch-alias": { | 5241 | "branch-alias": { |
4888 | "dev-main": "1.27-dev" | 5242 | "dev-main": "1.27-dev" |
4889 | }, | 5243 | }, |
4890 | "thanks": { | 5244 | "thanks": { |
4891 | "name": "symfony/polyfill", | 5245 | "name": "symfony/polyfill", |
4892 | "url": "https://github.com/symfony/polyfill" | 5246 | "url": "https://github.com/symfony/polyfill" |
4893 | } | 5247 | } |
4894 | }, | 5248 | }, |
4895 | "autoload": { | 5249 | "autoload": { |
4896 | "files": [ | 5250 | "files": [ |
4897 | "bootstrap.php" | 5251 | "bootstrap.php" |
4898 | ], | 5252 | ], |
4899 | "psr-4": { | 5253 | "psr-4": { |
4900 | "Symfony\\Polyfill\\Ctype\\": "" | 5254 | "Symfony\\Polyfill\\Ctype\\": "" |
4901 | } | 5255 | } |
4902 | }, | 5256 | }, |
4903 | "notification-url": "https://packagist.org/downloads/", | 5257 | "notification-url": "https://packagist.org/downloads/", |
4904 | "license": [ | 5258 | "license": [ |
4905 | "MIT" | 5259 | "MIT" |
4906 | ], | 5260 | ], |
4907 | "authors": [ | 5261 | "authors": [ |
4908 | { | 5262 | { |
4909 | "name": "Gert de Pagter", | 5263 | "name": "Gert de Pagter", |
4910 | "email": "BackEndTea@gmail.com" | 5264 | "email": "BackEndTea@gmail.com" |
4911 | }, | 5265 | }, |
4912 | { | 5266 | { |
4913 | "name": "Symfony Community", | 5267 | "name": "Symfony Community", |
4914 | "homepage": "https://symfony.com/contributors" | 5268 | "homepage": "https://symfony.com/contributors" |
4915 | } | 5269 | } |
4916 | ], | 5270 | ], |
4917 | "description": "Symfony polyfill for ctype functions", | 5271 | "description": "Symfony polyfill for ctype functions", |
4918 | "homepage": "https://symfony.com", | 5272 | "homepage": "https://symfony.com", |
4919 | "keywords": [ | 5273 | "keywords": [ |
4920 | "compatibility", | 5274 | "compatibility", |
4921 | "ctype", | 5275 | "ctype", |
4922 | "polyfill", | 5276 | "polyfill", |
4923 | "portable" | 5277 | "portable" |
4924 | ], | 5278 | ], |
4925 | "support": { | 5279 | "support": { |
4926 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" | 5280 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" |
4927 | }, | 5281 | }, |
4928 | "funding": [ | 5282 | "funding": [ |
4929 | { | 5283 | { |
4930 | "url": "https://symfony.com/sponsor", | 5284 | "url": "https://symfony.com/sponsor", |
4931 | "type": "custom" | 5285 | "type": "custom" |
4932 | }, | 5286 | }, |
4933 | { | 5287 | { |
4934 | "url": "https://github.com/fabpot", | 5288 | "url": "https://github.com/fabpot", |
4935 | "type": "github" | 5289 | "type": "github" |
4936 | }, | 5290 | }, |
4937 | { | 5291 | { |
4938 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5292 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
4939 | "type": "tidelift" | 5293 | "type": "tidelift" |
4940 | } | 5294 | } |
4941 | ], | 5295 | ], |
4942 | "time": "2022-11-03T14:55:06+00:00" | 5296 | "time": "2022-11-03T14:55:06+00:00" |
4943 | }, | 5297 | }, |
4944 | { | 5298 | { |
4945 | "name": "symfony/polyfill-intl-grapheme", | 5299 | "name": "symfony/polyfill-intl-grapheme", |
4946 | "version": "v1.27.0", | 5300 | "version": "v1.27.0", |
4947 | "source": { | 5301 | "source": { |
4948 | "type": "git", | 5302 | "type": "git", |
4949 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git", | 5303 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git", |
4950 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354" | 5304 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354" |
4951 | }, | 5305 | }, |
4952 | "dist": { | 5306 | "dist": { |
4953 | "type": "zip", | 5307 | "type": "zip", |
4954 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", | 5308 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", |
4955 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354", | 5309 | "reference": "511a08c03c1960e08a883f4cffcacd219b758354", |
4956 | "shasum": "" | 5310 | "shasum": "" |
4957 | }, | 5311 | }, |
4958 | "require": { | 5312 | "require": { |
4959 | "php": ">=7.1" | 5313 | "php": ">=7.1" |
4960 | }, | 5314 | }, |
4961 | "suggest": { | 5315 | "suggest": { |
4962 | "ext-intl": "For best performance" | 5316 | "ext-intl": "For best performance" |
4963 | }, | 5317 | }, |
4964 | "type": "library", | 5318 | "type": "library", |
4965 | "extra": { | 5319 | "extra": { |
4966 | "branch-alias": { | 5320 | "branch-alias": { |
4967 | "dev-main": "1.27-dev" | 5321 | "dev-main": "1.27-dev" |
4968 | }, | 5322 | }, |
4969 | "thanks": { | 5323 | "thanks": { |
4970 | "name": "symfony/polyfill", | 5324 | "name": "symfony/polyfill", |
4971 | "url": "https://github.com/symfony/polyfill" | 5325 | "url": "https://github.com/symfony/polyfill" |
4972 | } | 5326 | } |
4973 | }, | 5327 | }, |
4974 | "autoload": { | 5328 | "autoload": { |
4975 | "files": [ | 5329 | "files": [ |
4976 | "bootstrap.php" | 5330 | "bootstrap.php" |
4977 | ], | 5331 | ], |
4978 | "psr-4": { | 5332 | "psr-4": { |
4979 | "Symfony\\Polyfill\\Intl\\Grapheme\\": "" | 5333 | "Symfony\\Polyfill\\Intl\\Grapheme\\": "" |
4980 | } | 5334 | } |
4981 | }, | 5335 | }, |
4982 | "notification-url": "https://packagist.org/downloads/", | 5336 | "notification-url": "https://packagist.org/downloads/", |
4983 | "license": [ | 5337 | "license": [ |
4984 | "MIT" | 5338 | "MIT" |
4985 | ], | 5339 | ], |
4986 | "authors": [ | 5340 | "authors": [ |
4987 | { | 5341 | { |
4988 | "name": "Nicolas Grekas", | 5342 | "name": "Nicolas Grekas", |
4989 | "email": "p@tchwork.com" | 5343 | "email": "p@tchwork.com" |
4990 | }, | 5344 | }, |
4991 | { | 5345 | { |
4992 | "name": "Symfony Community", | 5346 | "name": "Symfony Community", |
4993 | "homepage": "https://symfony.com/contributors" | 5347 | "homepage": "https://symfony.com/contributors" |
4994 | } | 5348 | } |
4995 | ], | 5349 | ], |
4996 | "description": "Symfony polyfill for intl's grapheme_* functions", | 5350 | "description": "Symfony polyfill for intl's grapheme_* functions", |
4997 | "homepage": "https://symfony.com", | 5351 | "homepage": "https://symfony.com", |
4998 | "keywords": [ | 5352 | "keywords": [ |
4999 | "compatibility", | 5353 | "compatibility", |
5000 | "grapheme", | 5354 | "grapheme", |
5001 | "intl", | 5355 | "intl", |
5002 | "polyfill", | 5356 | "polyfill", |
5003 | "portable", | 5357 | "portable", |
5004 | "shim" | 5358 | "shim" |
5005 | ], | 5359 | ], |
5006 | "support": { | 5360 | "support": { |
5007 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" | 5361 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" |
5008 | }, | 5362 | }, |
5009 | "funding": [ | 5363 | "funding": [ |
5010 | { | 5364 | { |
5011 | "url": "https://symfony.com/sponsor", | 5365 | "url": "https://symfony.com/sponsor", |
5012 | "type": "custom" | 5366 | "type": "custom" |
5013 | }, | 5367 | }, |
5014 | { | 5368 | { |
5015 | "url": "https://github.com/fabpot", | 5369 | "url": "https://github.com/fabpot", |
5016 | "type": "github" | 5370 | "type": "github" |
5017 | }, | 5371 | }, |
5018 | { | 5372 | { |
5019 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5373 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5020 | "type": "tidelift" | 5374 | "type": "tidelift" |
5021 | } | 5375 | } |
5022 | ], | 5376 | ], |
5023 | "time": "2022-11-03T14:55:06+00:00" | 5377 | "time": "2022-11-03T14:55:06+00:00" |
5024 | }, | 5378 | }, |
5025 | { | 5379 | { |
5026 | "name": "symfony/polyfill-intl-idn", | 5380 | "name": "symfony/polyfill-intl-idn", |
5027 | "version": "v1.27.0", | 5381 | "version": "v1.27.0", |
5028 | "source": { | 5382 | "source": { |
5029 | "type": "git", | 5383 | "type": "git", |
5030 | "url": "https://github.com/symfony/polyfill-intl-idn.git", | 5384 | "url": "https://github.com/symfony/polyfill-intl-idn.git", |
5031 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da" | 5385 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da" |
5032 | }, | 5386 | }, |
5033 | "dist": { | 5387 | "dist": { |
5034 | "type": "zip", | 5388 | "type": "zip", |
5035 | "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", | 5389 | "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", |
5036 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da", | 5390 | "reference": "639084e360537a19f9ee352433b84ce831f3d2da", |
5037 | "shasum": "" | 5391 | "shasum": "" |
5038 | }, | 5392 | }, |
5039 | "require": { | 5393 | "require": { |
5040 | "php": ">=7.1", | 5394 | "php": ">=7.1", |
5041 | "symfony/polyfill-intl-normalizer": "^1.10", | 5395 | "symfony/polyfill-intl-normalizer": "^1.10", |
5042 | "symfony/polyfill-php72": "^1.10" | 5396 | "symfony/polyfill-php72": "^1.10" |
5043 | }, | 5397 | }, |
5044 | "suggest": { | 5398 | "suggest": { |
5045 | "ext-intl": "For best performance" | 5399 | "ext-intl": "For best performance" |
5046 | }, | 5400 | }, |
5047 | "type": "library", | 5401 | "type": "library", |
5048 | "extra": { | 5402 | "extra": { |
5049 | "branch-alias": { | 5403 | "branch-alias": { |
5050 | "dev-main": "1.27-dev" | 5404 | "dev-main": "1.27-dev" |
5051 | }, | 5405 | }, |
5052 | "thanks": { | 5406 | "thanks": { |
5053 | "name": "symfony/polyfill", | 5407 | "name": "symfony/polyfill", |
5054 | "url": "https://github.com/symfony/polyfill" | 5408 | "url": "https://github.com/symfony/polyfill" |
5055 | } | 5409 | } |
5056 | }, | 5410 | }, |
5057 | "autoload": { | 5411 | "autoload": { |
5058 | "files": [ | 5412 | "files": [ |
5059 | "bootstrap.php" | 5413 | "bootstrap.php" |
5060 | ], | 5414 | ], |
5061 | "psr-4": { | 5415 | "psr-4": { |
5062 | "Symfony\\Polyfill\\Intl\\Idn\\": "" | 5416 | "Symfony\\Polyfill\\Intl\\Idn\\": "" |
5063 | } | 5417 | } |
5064 | }, | 5418 | }, |
5065 | "notification-url": "https://packagist.org/downloads/", | 5419 | "notification-url": "https://packagist.org/downloads/", |
5066 | "license": [ | 5420 | "license": [ |
5067 | "MIT" | 5421 | "MIT" |
5068 | ], | 5422 | ], |
5069 | "authors": [ | 5423 | "authors": [ |
5070 | { | 5424 | { |
5071 | "name": "Laurent Bassin", | 5425 | "name": "Laurent Bassin", |
5072 | "email": "laurent@bassin.info" | 5426 | "email": "laurent@bassin.info" |
5073 | }, | 5427 | }, |
5074 | { | 5428 | { |
5075 | "name": "Trevor Rowbotham", | 5429 | "name": "Trevor Rowbotham", |
5076 | "email": "trevor.rowbotham@pm.me" | 5430 | "email": "trevor.rowbotham@pm.me" |
5077 | }, | 5431 | }, |
5078 | { | 5432 | { |
5079 | "name": "Symfony Community", | 5433 | "name": "Symfony Community", |
5080 | "homepage": "https://symfony.com/contributors" | 5434 | "homepage": "https://symfony.com/contributors" |
5081 | } | 5435 | } |
5082 | ], | 5436 | ], |
5083 | "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", | 5437 | "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", |
5084 | "homepage": "https://symfony.com", | 5438 | "homepage": "https://symfony.com", |
5085 | "keywords": [ | 5439 | "keywords": [ |
5086 | "compatibility", | 5440 | "compatibility", |
5087 | "idn", | 5441 | "idn", |
5088 | "intl", | 5442 | "intl", |
5089 | "polyfill", | 5443 | "polyfill", |
5090 | "portable", | 5444 | "portable", |
5091 | "shim" | 5445 | "shim" |
5092 | ], | 5446 | ], |
5093 | "support": { | 5447 | "support": { |
5094 | "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" | 5448 | "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" |
5095 | }, | 5449 | }, |
5096 | "funding": [ | 5450 | "funding": [ |
5097 | { | 5451 | { |
5098 | "url": "https://symfony.com/sponsor", | 5452 | "url": "https://symfony.com/sponsor", |
5099 | "type": "custom" | 5453 | "type": "custom" |
5100 | }, | 5454 | }, |
5101 | { | 5455 | { |
5102 | "url": "https://github.com/fabpot", | 5456 | "url": "https://github.com/fabpot", |
5103 | "type": "github" | 5457 | "type": "github" |
5104 | }, | 5458 | }, |
5105 | { | 5459 | { |
5106 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5460 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5107 | "type": "tidelift" | 5461 | "type": "tidelift" |
5108 | } | 5462 | } |
5109 | ], | 5463 | ], |
5110 | "time": "2022-11-03T14:55:06+00:00" | 5464 | "time": "2022-11-03T14:55:06+00:00" |
5111 | }, | 5465 | }, |
5112 | { | 5466 | { |
5113 | "name": "symfony/polyfill-intl-normalizer", | 5467 | "name": "symfony/polyfill-intl-normalizer", |
5114 | "version": "v1.27.0", | 5468 | "version": "v1.27.0", |
5115 | "source": { | 5469 | "source": { |
5116 | "type": "git", | 5470 | "type": "git", |
5117 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git", | 5471 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git", |
5118 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" | 5472 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" |
5119 | }, | 5473 | }, |
5120 | "dist": { | 5474 | "dist": { |
5121 | "type": "zip", | 5475 | "type": "zip", |
5122 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", | 5476 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", |
5123 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", | 5477 | "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", |
5124 | "shasum": "" | 5478 | "shasum": "" |
5125 | }, | 5479 | }, |
5126 | "require": { | 5480 | "require": { |
5127 | "php": ">=7.1" | 5481 | "php": ">=7.1" |
5128 | }, | 5482 | }, |
5129 | "suggest": { | 5483 | "suggest": { |
5130 | "ext-intl": "For best performance" | 5484 | "ext-intl": "For best performance" |
5131 | }, | 5485 | }, |
5132 | "type": "library", | 5486 | "type": "library", |
5133 | "extra": { | 5487 | "extra": { |
5134 | "branch-alias": { | 5488 | "branch-alias": { |
5135 | "dev-main": "1.27-dev" | 5489 | "dev-main": "1.27-dev" |
5136 | }, | 5490 | }, |
5137 | "thanks": { | 5491 | "thanks": { |
5138 | "name": "symfony/polyfill", | 5492 | "name": "symfony/polyfill", |
5139 | "url": "https://github.com/symfony/polyfill" | 5493 | "url": "https://github.com/symfony/polyfill" |
5140 | } | 5494 | } |
5141 | }, | 5495 | }, |
5142 | "autoload": { | 5496 | "autoload": { |
5143 | "files": [ | 5497 | "files": [ |
5144 | "bootstrap.php" | 5498 | "bootstrap.php" |
5145 | ], | 5499 | ], |
5146 | "psr-4": { | 5500 | "psr-4": { |
5147 | "Symfony\\Polyfill\\Intl\\Normalizer\\": "" | 5501 | "Symfony\\Polyfill\\Intl\\Normalizer\\": "" |
5148 | }, | 5502 | }, |
5149 | "classmap": [ | 5503 | "classmap": [ |
5150 | "Resources/stubs" | 5504 | "Resources/stubs" |
5151 | ] | 5505 | ] |
5152 | }, | 5506 | }, |
5153 | "notification-url": "https://packagist.org/downloads/", | 5507 | "notification-url": "https://packagist.org/downloads/", |
5154 | "license": [ | 5508 | "license": [ |
5155 | "MIT" | 5509 | "MIT" |
5156 | ], | 5510 | ], |
5157 | "authors": [ | 5511 | "authors": [ |
5158 | { | 5512 | { |
5159 | "name": "Nicolas Grekas", | 5513 | "name": "Nicolas Grekas", |
5160 | "email": "p@tchwork.com" | 5514 | "email": "p@tchwork.com" |
5161 | }, | 5515 | }, |
5162 | { | 5516 | { |
5163 | "name": "Symfony Community", | 5517 | "name": "Symfony Community", |
5164 | "homepage": "https://symfony.com/contributors" | 5518 | "homepage": "https://symfony.com/contributors" |
5165 | } | 5519 | } |
5166 | ], | 5520 | ], |
5167 | "description": "Symfony polyfill for intl's Normalizer class and related functions", | 5521 | "description": "Symfony polyfill for intl's Normalizer class and related functions", |
5168 | "homepage": "https://symfony.com", | 5522 | "homepage": "https://symfony.com", |
5169 | "keywords": [ | 5523 | "keywords": [ |
5170 | "compatibility", | 5524 | "compatibility", |
5171 | "intl", | 5525 | "intl", |
5172 | "normalizer", | 5526 | "normalizer", |
5173 | "polyfill", | 5527 | "polyfill", |
5174 | "portable", | 5528 | "portable", |
5175 | "shim" | 5529 | "shim" |
5176 | ], | 5530 | ], |
5177 | "support": { | 5531 | "support": { |
5178 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" | 5532 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" |
5179 | }, | 5533 | }, |
5180 | "funding": [ | 5534 | "funding": [ |
5181 | { | 5535 | { |
5182 | "url": "https://symfony.com/sponsor", | 5536 | "url": "https://symfony.com/sponsor", |
5183 | "type": "custom" | 5537 | "type": "custom" |
5184 | }, | 5538 | }, |
5185 | { | 5539 | { |
5186 | "url": "https://github.com/fabpot", | 5540 | "url": "https://github.com/fabpot", |
5187 | "type": "github" | 5541 | "type": "github" |
5188 | }, | 5542 | }, |
5189 | { | 5543 | { |
5190 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5544 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5191 | "type": "tidelift" | 5545 | "type": "tidelift" |
5192 | } | 5546 | } |
5193 | ], | 5547 | ], |
5194 | "time": "2022-11-03T14:55:06+00:00" | 5548 | "time": "2022-11-03T14:55:06+00:00" |
5195 | }, | 5549 | }, |
5196 | { | 5550 | { |
5197 | "name": "symfony/polyfill-mbstring", | 5551 | "name": "symfony/polyfill-mbstring", |
5198 | "version": "v1.27.0", | 5552 | "version": "v1.27.0", |
5199 | "source": { | 5553 | "source": { |
5200 | "type": "git", | 5554 | "type": "git", |
5201 | "url": "https://github.com/symfony/polyfill-mbstring.git", | 5555 | "url": "https://github.com/symfony/polyfill-mbstring.git", |
5202 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" | 5556 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" |
5203 | }, | 5557 | }, |
5204 | "dist": { | 5558 | "dist": { |
5205 | "type": "zip", | 5559 | "type": "zip", |
5206 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", | 5560 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", |
5207 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", | 5561 | "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", |
5208 | "shasum": "" | 5562 | "shasum": "" |
5209 | }, | 5563 | }, |
5210 | "require": { | 5564 | "require": { |
5211 | "php": ">=7.1" | 5565 | "php": ">=7.1" |
5212 | }, | 5566 | }, |
5213 | "provide": { | 5567 | "provide": { |
5214 | "ext-mbstring": "*" | 5568 | "ext-mbstring": "*" |
5215 | }, | 5569 | }, |
5216 | "suggest": { | 5570 | "suggest": { |
5217 | "ext-mbstring": "For best performance" | 5571 | "ext-mbstring": "For best performance" |
5218 | }, | 5572 | }, |
5219 | "type": "library", | 5573 | "type": "library", |
5220 | "extra": { | 5574 | "extra": { |
5221 | "branch-alias": { | 5575 | "branch-alias": { |
5222 | "dev-main": "1.27-dev" | 5576 | "dev-main": "1.27-dev" |
5223 | }, | 5577 | }, |
5224 | "thanks": { | 5578 | "thanks": { |
5225 | "name": "symfony/polyfill", | 5579 | "name": "symfony/polyfill", |
5226 | "url": "https://github.com/symfony/polyfill" | 5580 | "url": "https://github.com/symfony/polyfill" |
5227 | } | 5581 | } |
5228 | }, | 5582 | }, |
5229 | "autoload": { | 5583 | "autoload": { |
5230 | "files": [ | 5584 | "files": [ |
5231 | "bootstrap.php" | 5585 | "bootstrap.php" |
5232 | ], | 5586 | ], |
5233 | "psr-4": { | 5587 | "psr-4": { |
5234 | "Symfony\\Polyfill\\Mbstring\\": "" | 5588 | "Symfony\\Polyfill\\Mbstring\\": "" |
5235 | } | 5589 | } |
5236 | }, | 5590 | }, |
5237 | "notification-url": "https://packagist.org/downloads/", | 5591 | "notification-url": "https://packagist.org/downloads/", |
5238 | "license": [ | 5592 | "license": [ |
5239 | "MIT" | 5593 | "MIT" |
5240 | ], | 5594 | ], |
5241 | "authors": [ | 5595 | "authors": [ |
5242 | { | 5596 | { |
5243 | "name": "Nicolas Grekas", | 5597 | "name": "Nicolas Grekas", |
5244 | "email": "p@tchwork.com" | 5598 | "email": "p@tchwork.com" |
5245 | }, | 5599 | }, |
5246 | { | 5600 | { |
5247 | "name": "Symfony Community", | 5601 | "name": "Symfony Community", |
5248 | "homepage": "https://symfony.com/contributors" | 5602 | "homepage": "https://symfony.com/contributors" |
5249 | } | 5603 | } |
5250 | ], | 5604 | ], |
5251 | "description": "Symfony polyfill for the Mbstring extension", | 5605 | "description": "Symfony polyfill for the Mbstring extension", |
5252 | "homepage": "https://symfony.com", | 5606 | "homepage": "https://symfony.com", |
5253 | "keywords": [ | 5607 | "keywords": [ |
5254 | "compatibility", | 5608 | "compatibility", |
5255 | "mbstring", | 5609 | "mbstring", |
5256 | "polyfill", | 5610 | "polyfill", |
5257 | "portable", | 5611 | "portable", |
5258 | "shim" | 5612 | "shim" |
5259 | ], | 5613 | ], |
5260 | "support": { | 5614 | "support": { |
5261 | "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" | 5615 | "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" |
5262 | }, | 5616 | }, |
5263 | "funding": [ | 5617 | "funding": [ |
5264 | { | 5618 | { |
5265 | "url": "https://symfony.com/sponsor", | 5619 | "url": "https://symfony.com/sponsor", |
5266 | "type": "custom" | 5620 | "type": "custom" |
5267 | }, | 5621 | }, |
5268 | { | 5622 | { |
5269 | "url": "https://github.com/fabpot", | 5623 | "url": "https://github.com/fabpot", |
5270 | "type": "github" | 5624 | "type": "github" |
5271 | }, | 5625 | }, |
5272 | { | 5626 | { |
5273 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5627 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5274 | "type": "tidelift" | 5628 | "type": "tidelift" |
5275 | } | 5629 | } |
5276 | ], | 5630 | ], |
5277 | "time": "2022-11-03T14:55:06+00:00" | 5631 | "time": "2022-11-03T14:55:06+00:00" |
5278 | }, | 5632 | }, |
5279 | { | 5633 | { |
5280 | "name": "symfony/polyfill-php72", | 5634 | "name": "symfony/polyfill-php72", |
5281 | "version": "v1.27.0", | 5635 | "version": "v1.27.0", |
5282 | "source": { | 5636 | "source": { |
5283 | "type": "git", | 5637 | "type": "git", |
5284 | "url": "https://github.com/symfony/polyfill-php72.git", | 5638 | "url": "https://github.com/symfony/polyfill-php72.git", |
5285 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" | 5639 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" |
5286 | }, | 5640 | }, |
5287 | "dist": { | 5641 | "dist": { |
5288 | "type": "zip", | 5642 | "type": "zip", |
5289 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", | 5643 | "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", |
5290 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", | 5644 | "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", |
5291 | "shasum": "" | 5645 | "shasum": "" |
5292 | }, | 5646 | }, |
5293 | "require": { | 5647 | "require": { |
5294 | "php": ">=7.1" | 5648 | "php": ">=7.1" |
5295 | }, | 5649 | }, |
5296 | "type": "library", | 5650 | "type": "library", |
5297 | "extra": { | 5651 | "extra": { |
5298 | "branch-alias": { | 5652 | "branch-alias": { |
5299 | "dev-main": "1.27-dev" | 5653 | "dev-main": "1.27-dev" |
5300 | }, | 5654 | }, |
5301 | "thanks": { | 5655 | "thanks": { |
5302 | "name": "symfony/polyfill", | 5656 | "name": "symfony/polyfill", |
5303 | "url": "https://github.com/symfony/polyfill" | 5657 | "url": "https://github.com/symfony/polyfill" |
5304 | } | 5658 | } |
5305 | }, | 5659 | }, |
5306 | "autoload": { | 5660 | "autoload": { |
5307 | "files": [ | 5661 | "files": [ |
5308 | "bootstrap.php" | 5662 | "bootstrap.php" |
5309 | ], | 5663 | ], |
5310 | "psr-4": { | 5664 | "psr-4": { |
5311 | "Symfony\\Polyfill\\Php72\\": "" | 5665 | "Symfony\\Polyfill\\Php72\\": "" |
5312 | } | 5666 | } |
5313 | }, | 5667 | }, |
5314 | "notification-url": "https://packagist.org/downloads/", | 5668 | "notification-url": "https://packagist.org/downloads/", |
5315 | "license": [ | 5669 | "license": [ |
5316 | "MIT" | 5670 | "MIT" |
5317 | ], | 5671 | ], |
5318 | "authors": [ | 5672 | "authors": [ |
5319 | { | 5673 | { |
5320 | "name": "Nicolas Grekas", | 5674 | "name": "Nicolas Grekas", |
5321 | "email": "p@tchwork.com" | 5675 | "email": "p@tchwork.com" |
5322 | }, | 5676 | }, |
5323 | { | 5677 | { |
5324 | "name": "Symfony Community", | 5678 | "name": "Symfony Community", |
5325 | "homepage": "https://symfony.com/contributors" | 5679 | "homepage": "https://symfony.com/contributors" |
5326 | } | 5680 | } |
5327 | ], | 5681 | ], |
5328 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", | 5682 | "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", |
5329 | "homepage": "https://symfony.com", | 5683 | "homepage": "https://symfony.com", |
5330 | "keywords": [ | 5684 | "keywords": [ |
5331 | "compatibility", | 5685 | "compatibility", |
5332 | "polyfill", | 5686 | "polyfill", |
5333 | "portable", | 5687 | "portable", |
5334 | "shim" | 5688 | "shim" |
5335 | ], | 5689 | ], |
5336 | "support": { | 5690 | "support": { |
5337 | "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" | 5691 | "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" |
5338 | }, | 5692 | }, |
5339 | "funding": [ | 5693 | "funding": [ |
5340 | { | 5694 | { |
5341 | "url": "https://symfony.com/sponsor", | 5695 | "url": "https://symfony.com/sponsor", |
5342 | "type": "custom" | 5696 | "type": "custom" |
5343 | }, | 5697 | }, |
5344 | { | 5698 | { |
5345 | "url": "https://github.com/fabpot", | 5699 | "url": "https://github.com/fabpot", |
5346 | "type": "github" | 5700 | "type": "github" |
5347 | }, | 5701 | }, |
5348 | { | 5702 | { |
5349 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5703 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5350 | "type": "tidelift" | 5704 | "type": "tidelift" |
5351 | } | 5705 | } |
5352 | ], | 5706 | ], |
5353 | "time": "2022-11-03T14:55:06+00:00" | 5707 | "time": "2022-11-03T14:55:06+00:00" |
5354 | }, | 5708 | }, |
5355 | { | 5709 | { |
5356 | "name": "symfony/polyfill-php80", | 5710 | "name": "symfony/polyfill-php80", |
5357 | "version": "v1.27.0", | 5711 | "version": "v1.27.0", |
5358 | "source": { | 5712 | "source": { |
5359 | "type": "git", | 5713 | "type": "git", |
5360 | "url": "https://github.com/symfony/polyfill-php80.git", | 5714 | "url": "https://github.com/symfony/polyfill-php80.git", |
5361 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" | 5715 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" |
5362 | }, | 5716 | }, |
5363 | "dist": { | 5717 | "dist": { |
5364 | "type": "zip", | 5718 | "type": "zip", |
5365 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", | 5719 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", |
5366 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", | 5720 | "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", |
5367 | "shasum": "" | 5721 | "shasum": "" |
5368 | }, | 5722 | }, |
5369 | "require": { | 5723 | "require": { |
5370 | "php": ">=7.1" | 5724 | "php": ">=7.1" |
5371 | }, | 5725 | }, |
5372 | "type": "library", | 5726 | "type": "library", |
5373 | "extra": { | 5727 | "extra": { |
5374 | "branch-alias": { | 5728 | "branch-alias": { |
5375 | "dev-main": "1.27-dev" | 5729 | "dev-main": "1.27-dev" |
5376 | }, | 5730 | }, |
5377 | "thanks": { | 5731 | "thanks": { |
5378 | "name": "symfony/polyfill", | 5732 | "name": "symfony/polyfill", |
5379 | "url": "https://github.com/symfony/polyfill" | 5733 | "url": "https://github.com/symfony/polyfill" |
5380 | } | 5734 | } |
5381 | }, | 5735 | }, |
5382 | "autoload": { | 5736 | "autoload": { |
5383 | "files": [ | 5737 | "files": [ |
5384 | "bootstrap.php" | 5738 | "bootstrap.php" |
5385 | ], | 5739 | ], |
5386 | "psr-4": { | 5740 | "psr-4": { |
5387 | "Symfony\\Polyfill\\Php80\\": "" | 5741 | "Symfony\\Polyfill\\Php80\\": "" |
5388 | }, | 5742 | }, |
5389 | "classmap": [ | 5743 | "classmap": [ |
5390 | "Resources/stubs" | 5744 | "Resources/stubs" |
5391 | ] | 5745 | ] |
5392 | }, | 5746 | }, |
5393 | "notification-url": "https://packagist.org/downloads/", | 5747 | "notification-url": "https://packagist.org/downloads/", |
5394 | "license": [ | 5748 | "license": [ |
5395 | "MIT" | 5749 | "MIT" |
5396 | ], | 5750 | ], |
5397 | "authors": [ | 5751 | "authors": [ |
5398 | { | 5752 | { |
5399 | "name": "Ion Bazan", | 5753 | "name": "Ion Bazan", |
5400 | "email": "ion.bazan@gmail.com" | 5754 | "email": "ion.bazan@gmail.com" |
5401 | }, | 5755 | }, |
5402 | { | 5756 | { |
5403 | "name": "Nicolas Grekas", | 5757 | "name": "Nicolas Grekas", |
5404 | "email": "p@tchwork.com" | 5758 | "email": "p@tchwork.com" |
5405 | }, | 5759 | }, |
5406 | { | 5760 | { |
5407 | "name": "Symfony Community", | 5761 | "name": "Symfony Community", |
5408 | "homepage": "https://symfony.com/contributors" | 5762 | "homepage": "https://symfony.com/contributors" |
5409 | } | 5763 | } |
5410 | ], | 5764 | ], |
5411 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", | 5765 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", |
5412 | "homepage": "https://symfony.com", | 5766 | "homepage": "https://symfony.com", |
5413 | "keywords": [ | 5767 | "keywords": [ |
5414 | "compatibility", | 5768 | "compatibility", |
5415 | "polyfill", | 5769 | "polyfill", |
5416 | "portable", | 5770 | "portable", |
5417 | "shim" | 5771 | "shim" |
5418 | ], | 5772 | ], |
5419 | "support": { | 5773 | "support": { |
5420 | "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" | 5774 | "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" |
5421 | }, | 5775 | }, |
5422 | "funding": [ | 5776 | "funding": [ |
5423 | { | 5777 | { |
5424 | "url": "https://symfony.com/sponsor", | 5778 | "url": "https://symfony.com/sponsor", |
5425 | "type": "custom" | 5779 | "type": "custom" |
5426 | }, | 5780 | }, |
5427 | { | 5781 | { |
5428 | "url": "https://github.com/fabpot", | 5782 | "url": "https://github.com/fabpot", |
5429 | "type": "github" | 5783 | "type": "github" |
5430 | }, | 5784 | }, |
5431 | { | 5785 | { |
5432 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5786 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5433 | "type": "tidelift" | 5787 | "type": "tidelift" |
5434 | } | 5788 | } |
5435 | ], | 5789 | ], |
5436 | "time": "2022-11-03T14:55:06+00:00" | 5790 | "time": "2022-11-03T14:55:06+00:00" |
5437 | }, | 5791 | }, |
5438 | { | 5792 | { |
5439 | "name": "symfony/polyfill-php81", | 5793 | "name": "symfony/polyfill-php81", |
5440 | "version": "v1.27.0", | 5794 | "version": "v1.27.0", |
5441 | "source": { | 5795 | "source": { |
5442 | "type": "git", | 5796 | "type": "git", |
5443 | "url": "https://github.com/symfony/polyfill-php81.git", | 5797 | "url": "https://github.com/symfony/polyfill-php81.git", |
5444 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" | 5798 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" |
5445 | }, | 5799 | }, |
5446 | "dist": { | 5800 | "dist": { |
5447 | "type": "zip", | 5801 | "type": "zip", |
5448 | "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", | 5802 | "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", |
5449 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", | 5803 | "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", |
5450 | "shasum": "" | 5804 | "shasum": "" |
5451 | }, | 5805 | }, |
5452 | "require": { | 5806 | "require": { |
5453 | "php": ">=7.1" | 5807 | "php": ">=7.1" |
5454 | }, | 5808 | }, |
5455 | "type": "library", | 5809 | "type": "library", |
5456 | "extra": { | 5810 | "extra": { |
5457 | "branch-alias": { | 5811 | "branch-alias": { |
5458 | "dev-main": "1.27-dev" | 5812 | "dev-main": "1.27-dev" |
5459 | }, | 5813 | }, |
5460 | "thanks": { | 5814 | "thanks": { |
5461 | "name": "symfony/polyfill", | 5815 | "name": "symfony/polyfill", |
5462 | "url": "https://github.com/symfony/polyfill" | 5816 | "url": "https://github.com/symfony/polyfill" |
5463 | } | 5817 | } |
5464 | }, | 5818 | }, |
5465 | "autoload": { | 5819 | "autoload": { |
5466 | "files": [ | 5820 | "files": [ |
5467 | "bootstrap.php" | 5821 | "bootstrap.php" |
5468 | ], | 5822 | ], |
5469 | "psr-4": { | 5823 | "psr-4": { |
5470 | "Symfony\\Polyfill\\Php81\\": "" | 5824 | "Symfony\\Polyfill\\Php81\\": "" |
5471 | }, | 5825 | }, |
5472 | "classmap": [ | 5826 | "classmap": [ |
5473 | "Resources/stubs" | 5827 | "Resources/stubs" |
5474 | ] | 5828 | ] |
5475 | }, | 5829 | }, |
5476 | "notification-url": "https://packagist.org/downloads/", | 5830 | "notification-url": "https://packagist.org/downloads/", |
5477 | "license": [ | 5831 | "license": [ |
5478 | "MIT" | 5832 | "MIT" |
5479 | ], | 5833 | ], |
5480 | "authors": [ | 5834 | "authors": [ |
5481 | { | 5835 | { |
5482 | "name": "Nicolas Grekas", | 5836 | "name": "Nicolas Grekas", |
5483 | "email": "p@tchwork.com" | 5837 | "email": "p@tchwork.com" |
5484 | }, | 5838 | }, |
5485 | { | 5839 | { |
5486 | "name": "Symfony Community", | 5840 | "name": "Symfony Community", |
5487 | "homepage": "https://symfony.com/contributors" | 5841 | "homepage": "https://symfony.com/contributors" |
5488 | } | 5842 | } |
5489 | ], | 5843 | ], |
5490 | "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", | 5844 | "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", |
5491 | "homepage": "https://symfony.com", | 5845 | "homepage": "https://symfony.com", |
5492 | "keywords": [ | 5846 | "keywords": [ |
5493 | "compatibility", | 5847 | "compatibility", |
5494 | "polyfill", | 5848 | "polyfill", |
5495 | "portable", | 5849 | "portable", |
5496 | "shim" | 5850 | "shim" |
5497 | ], | 5851 | ], |
5498 | "support": { | 5852 | "support": { |
5499 | "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" | 5853 | "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" |
5500 | }, | 5854 | }, |
5501 | "funding": [ | 5855 | "funding": [ |
5502 | { | 5856 | { |
5503 | "url": "https://symfony.com/sponsor", | 5857 | "url": "https://symfony.com/sponsor", |
5504 | "type": "custom" | 5858 | "type": "custom" |
5505 | }, | 5859 | }, |
5506 | { | 5860 | { |
5507 | "url": "https://github.com/fabpot", | 5861 | "url": "https://github.com/fabpot", |
5508 | "type": "github" | 5862 | "type": "github" |
5509 | }, | 5863 | }, |
5510 | { | 5864 | { |
5511 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5865 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5512 | "type": "tidelift" | 5866 | "type": "tidelift" |
5513 | } | 5867 | } |
5514 | ], | 5868 | ], |
5515 | "time": "2022-11-03T14:55:06+00:00" | 5869 | "time": "2022-11-03T14:55:06+00:00" |
5516 | }, | 5870 | }, |
5517 | { | 5871 | { |
5518 | "name": "symfony/polyfill-uuid", | 5872 | "name": "symfony/polyfill-uuid", |
5519 | "version": "v1.27.0", | 5873 | "version": "v1.27.0", |
5520 | "source": { | 5874 | "source": { |
5521 | "type": "git", | 5875 | "type": "git", |
5522 | "url": "https://github.com/symfony/polyfill-uuid.git", | 5876 | "url": "https://github.com/symfony/polyfill-uuid.git", |
5523 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166" | 5877 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166" |
5524 | }, | 5878 | }, |
5525 | "dist": { | 5879 | "dist": { |
5526 | "type": "zip", | 5880 | "type": "zip", |
5527 | "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166", | 5881 | "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166", |
5528 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166", | 5882 | "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166", |
5529 | "shasum": "" | 5883 | "shasum": "" |
5530 | }, | 5884 | }, |
5531 | "require": { | 5885 | "require": { |
5532 | "php": ">=7.1" | 5886 | "php": ">=7.1" |
5533 | }, | 5887 | }, |
5534 | "provide": { | 5888 | "provide": { |
5535 | "ext-uuid": "*" | 5889 | "ext-uuid": "*" |
5536 | }, | 5890 | }, |
5537 | "suggest": { | 5891 | "suggest": { |
5538 | "ext-uuid": "For best performance" | 5892 | "ext-uuid": "For best performance" |
5539 | }, | 5893 | }, |
5540 | "type": "library", | 5894 | "type": "library", |
5541 | "extra": { | 5895 | "extra": { |
5542 | "branch-alias": { | 5896 | "branch-alias": { |
5543 | "dev-main": "1.27-dev" | 5897 | "dev-main": "1.27-dev" |
5544 | }, | 5898 | }, |
5545 | "thanks": { | 5899 | "thanks": { |
5546 | "name": "symfony/polyfill", | 5900 | "name": "symfony/polyfill", |
5547 | "url": "https://github.com/symfony/polyfill" | 5901 | "url": "https://github.com/symfony/polyfill" |
5548 | } | 5902 | } |
5549 | }, | 5903 | }, |
5550 | "autoload": { | 5904 | "autoload": { |
5551 | "files": [ | 5905 | "files": [ |
5552 | "bootstrap.php" | 5906 | "bootstrap.php" |
5553 | ], | 5907 | ], |
5554 | "psr-4": { | 5908 | "psr-4": { |
5555 | "Symfony\\Polyfill\\Uuid\\": "" | 5909 | "Symfony\\Polyfill\\Uuid\\": "" |
5556 | } | 5910 | } |
5557 | }, | 5911 | }, |
5558 | "notification-url": "https://packagist.org/downloads/", | 5912 | "notification-url": "https://packagist.org/downloads/", |
5559 | "license": [ | 5913 | "license": [ |
5560 | "MIT" | 5914 | "MIT" |
5561 | ], | 5915 | ], |
5562 | "authors": [ | 5916 | "authors": [ |
5563 | { | 5917 | { |
5564 | "name": "Grégoire Pineau", | 5918 | "name": "Grégoire Pineau", |
5565 | "email": "lyrixx@lyrixx.info" | 5919 | "email": "lyrixx@lyrixx.info" |
5566 | }, | 5920 | }, |
5567 | { | 5921 | { |
5568 | "name": "Symfony Community", | 5922 | "name": "Symfony Community", |
5569 | "homepage": "https://symfony.com/contributors" | 5923 | "homepage": "https://symfony.com/contributors" |
5570 | } | 5924 | } |
5571 | ], | 5925 | ], |
5572 | "description": "Symfony polyfill for uuid functions", | 5926 | "description": "Symfony polyfill for uuid functions", |
5573 | "homepage": "https://symfony.com", | 5927 | "homepage": "https://symfony.com", |
5574 | "keywords": [ | 5928 | "keywords": [ |
5575 | "compatibility", | 5929 | "compatibility", |
5576 | "polyfill", | 5930 | "polyfill", |
5577 | "portable", | 5931 | "portable", |
5578 | "uuid" | 5932 | "uuid" |
5579 | ], | 5933 | ], |
5580 | "support": { | 5934 | "support": { |
5581 | "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0" | 5935 | "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0" |
5582 | }, | 5936 | }, |
5583 | "funding": [ | 5937 | "funding": [ |
5584 | { | 5938 | { |
5585 | "url": "https://symfony.com/sponsor", | 5939 | "url": "https://symfony.com/sponsor", |
5586 | "type": "custom" | 5940 | "type": "custom" |
5587 | }, | 5941 | }, |
5588 | { | 5942 | { |
5589 | "url": "https://github.com/fabpot", | 5943 | "url": "https://github.com/fabpot", |
5590 | "type": "github" | 5944 | "type": "github" |
5591 | }, | 5945 | }, |
5592 | { | 5946 | { |
5593 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 5947 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5594 | "type": "tidelift" | 5948 | "type": "tidelift" |
5595 | } | 5949 | } |
5596 | ], | 5950 | ], |
5597 | "time": "2022-11-03T14:55:06+00:00" | 5951 | "time": "2022-11-03T14:55:06+00:00" |
5598 | }, | 5952 | }, |
5599 | { | 5953 | { |
5600 | "name": "symfony/process", | 5954 | "name": "symfony/process", |
5601 | "version": "v6.0.19", | 5955 | "version": "v6.0.19", |
5602 | "source": { | 5956 | "source": { |
5603 | "type": "git", | 5957 | "type": "git", |
5604 | "url": "https://github.com/symfony/process.git", | 5958 | "url": "https://github.com/symfony/process.git", |
5605 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4" | 5959 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4" |
5606 | }, | 5960 | }, |
5607 | "dist": { | 5961 | "dist": { |
5608 | "type": "zip", | 5962 | "type": "zip", |
5609 | "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4", | 5963 | "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4", |
5610 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4", | 5964 | "reference": "2114fd60f26a296cc403a7939ab91478475a33d4", |
5611 | "shasum": "" | 5965 | "shasum": "" |
5612 | }, | 5966 | }, |
5613 | "require": { | 5967 | "require": { |
5614 | "php": ">=8.0.2" | 5968 | "php": ">=8.0.2" |
5615 | }, | 5969 | }, |
5616 | "type": "library", | 5970 | "type": "library", |
5617 | "autoload": { | 5971 | "autoload": { |
5618 | "psr-4": { | 5972 | "psr-4": { |
5619 | "Symfony\\Component\\Process\\": "" | 5973 | "Symfony\\Component\\Process\\": "" |
5620 | }, | 5974 | }, |
5621 | "exclude-from-classmap": [ | 5975 | "exclude-from-classmap": [ |
5622 | "/Tests/" | 5976 | "/Tests/" |
5623 | ] | 5977 | ] |
5624 | }, | 5978 | }, |
5625 | "notification-url": "https://packagist.org/downloads/", | 5979 | "notification-url": "https://packagist.org/downloads/", |
5626 | "license": [ | 5980 | "license": [ |
5627 | "MIT" | 5981 | "MIT" |
5628 | ], | 5982 | ], |
5629 | "authors": [ | 5983 | "authors": [ |
5630 | { | 5984 | { |
5631 | "name": "Fabien Potencier", | 5985 | "name": "Fabien Potencier", |
5632 | "email": "fabien@symfony.com" | 5986 | "email": "fabien@symfony.com" |
5633 | }, | 5987 | }, |
5634 | { | 5988 | { |
5635 | "name": "Symfony Community", | 5989 | "name": "Symfony Community", |
5636 | "homepage": "https://symfony.com/contributors" | 5990 | "homepage": "https://symfony.com/contributors" |
5637 | } | 5991 | } |
5638 | ], | 5992 | ], |
5639 | "description": "Executes commands in sub-processes", | 5993 | "description": "Executes commands in sub-processes", |
5640 | "homepage": "https://symfony.com", | 5994 | "homepage": "https://symfony.com", |
5641 | "support": { | 5995 | "support": { |
5642 | "source": "https://github.com/symfony/process/tree/v6.0.19" | 5996 | "source": "https://github.com/symfony/process/tree/v6.0.19" |
5643 | }, | 5997 | }, |
5644 | "funding": [ | 5998 | "funding": [ |
5645 | { | 5999 | { |
5646 | "url": "https://symfony.com/sponsor", | 6000 | "url": "https://symfony.com/sponsor", |
5647 | "type": "custom" | 6001 | "type": "custom" |
5648 | }, | 6002 | }, |
5649 | { | 6003 | { |
5650 | "url": "https://github.com/fabpot", | 6004 | "url": "https://github.com/fabpot", |
5651 | "type": "github" | 6005 | "type": "github" |
5652 | }, | 6006 | }, |
5653 | { | 6007 | { |
5654 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6008 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5655 | "type": "tidelift" | 6009 | "type": "tidelift" |
5656 | } | 6010 | } |
5657 | ], | 6011 | ], |
5658 | "time": "2023-01-01T08:36:10+00:00" | 6012 | "time": "2023-01-01T08:36:10+00:00" |
5659 | }, | 6013 | }, |
5660 | { | 6014 | { |
5661 | "name": "symfony/routing", | 6015 | "name": "symfony/routing", |
5662 | "version": "v6.0.19", | 6016 | "version": "v6.0.19", |
5663 | "source": { | 6017 | "source": { |
5664 | "type": "git", | 6018 | "type": "git", |
5665 | "url": "https://github.com/symfony/routing.git", | 6019 | "url": "https://github.com/symfony/routing.git", |
5666 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac" | 6020 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac" |
5667 | }, | 6021 | }, |
5668 | "dist": { | 6022 | "dist": { |
5669 | "type": "zip", | 6023 | "type": "zip", |
5670 | "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac", | 6024 | "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac", |
5671 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac", | 6025 | "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac", |
5672 | "shasum": "" | 6026 | "shasum": "" |
5673 | }, | 6027 | }, |
5674 | "require": { | 6028 | "require": { |
5675 | "php": ">=8.0.2" | 6029 | "php": ">=8.0.2" |
5676 | }, | 6030 | }, |
5677 | "conflict": { | 6031 | "conflict": { |
5678 | "doctrine/annotations": "<1.12", | 6032 | "doctrine/annotations": "<1.12", |
5679 | "symfony/config": "<5.4", | 6033 | "symfony/config": "<5.4", |
5680 | "symfony/dependency-injection": "<5.4", | 6034 | "symfony/dependency-injection": "<5.4", |
5681 | "symfony/yaml": "<5.4" | 6035 | "symfony/yaml": "<5.4" |
5682 | }, | 6036 | }, |
5683 | "require-dev": { | 6037 | "require-dev": { |
5684 | "doctrine/annotations": "^1.12|^2", | 6038 | "doctrine/annotations": "^1.12|^2", |
5685 | "psr/log": "^1|^2|^3", | 6039 | "psr/log": "^1|^2|^3", |
5686 | "symfony/config": "^5.4|^6.0", | 6040 | "symfony/config": "^5.4|^6.0", |
5687 | "symfony/dependency-injection": "^5.4|^6.0", | 6041 | "symfony/dependency-injection": "^5.4|^6.0", |
5688 | "symfony/expression-language": "^5.4|^6.0", | 6042 | "symfony/expression-language": "^5.4|^6.0", |
5689 | "symfony/http-foundation": "^5.4|^6.0", | 6043 | "symfony/http-foundation": "^5.4|^6.0", |
5690 | "symfony/yaml": "^5.4|^6.0" | 6044 | "symfony/yaml": "^5.4|^6.0" |
5691 | }, | 6045 | }, |
5692 | "suggest": { | 6046 | "suggest": { |
5693 | "symfony/config": "For using the all-in-one router or any loader", | 6047 | "symfony/config": "For using the all-in-one router or any loader", |
5694 | "symfony/expression-language": "For using expression matching", | 6048 | "symfony/expression-language": "For using expression matching", |
5695 | "symfony/http-foundation": "For using a Symfony Request object", | 6049 | "symfony/http-foundation": "For using a Symfony Request object", |
5696 | "symfony/yaml": "For using the YAML loader" | 6050 | "symfony/yaml": "For using the YAML loader" |
5697 | }, | 6051 | }, |
5698 | "type": "library", | 6052 | "type": "library", |
5699 | "autoload": { | 6053 | "autoload": { |
5700 | "psr-4": { | 6054 | "psr-4": { |
5701 | "Symfony\\Component\\Routing\\": "" | 6055 | "Symfony\\Component\\Routing\\": "" |
5702 | }, | 6056 | }, |
5703 | "exclude-from-classmap": [ | 6057 | "exclude-from-classmap": [ |
5704 | "/Tests/" | 6058 | "/Tests/" |
5705 | ] | 6059 | ] |
5706 | }, | 6060 | }, |
5707 | "notification-url": "https://packagist.org/downloads/", | 6061 | "notification-url": "https://packagist.org/downloads/", |
5708 | "license": [ | 6062 | "license": [ |
5709 | "MIT" | 6063 | "MIT" |
5710 | ], | 6064 | ], |
5711 | "authors": [ | 6065 | "authors": [ |
5712 | { | 6066 | { |
5713 | "name": "Fabien Potencier", | 6067 | "name": "Fabien Potencier", |
5714 | "email": "fabien@symfony.com" | 6068 | "email": "fabien@symfony.com" |
5715 | }, | 6069 | }, |
5716 | { | 6070 | { |
5717 | "name": "Symfony Community", | 6071 | "name": "Symfony Community", |
5718 | "homepage": "https://symfony.com/contributors" | 6072 | "homepage": "https://symfony.com/contributors" |
5719 | } | 6073 | } |
5720 | ], | 6074 | ], |
5721 | "description": "Maps an HTTP request to a set of configuration variables", | 6075 | "description": "Maps an HTTP request to a set of configuration variables", |
5722 | "homepage": "https://symfony.com", | 6076 | "homepage": "https://symfony.com", |
5723 | "keywords": [ | 6077 | "keywords": [ |
5724 | "router", | 6078 | "router", |
5725 | "routing", | 6079 | "routing", |
5726 | "uri", | 6080 | "uri", |
5727 | "url" | 6081 | "url" |
5728 | ], | 6082 | ], |
5729 | "support": { | 6083 | "support": { |
5730 | "source": "https://github.com/symfony/routing/tree/v6.0.19" | 6084 | "source": "https://github.com/symfony/routing/tree/v6.0.19" |
5731 | }, | 6085 | }, |
5732 | "funding": [ | 6086 | "funding": [ |
5733 | { | 6087 | { |
5734 | "url": "https://symfony.com/sponsor", | 6088 | "url": "https://symfony.com/sponsor", |
5735 | "type": "custom" | 6089 | "type": "custom" |
5736 | }, | 6090 | }, |
5737 | { | 6091 | { |
5738 | "url": "https://github.com/fabpot", | 6092 | "url": "https://github.com/fabpot", |
5739 | "type": "github" | 6093 | "type": "github" |
5740 | }, | 6094 | }, |
5741 | { | 6095 | { |
5742 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6096 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5743 | "type": "tidelift" | 6097 | "type": "tidelift" |
5744 | } | 6098 | } |
5745 | ], | 6099 | ], |
5746 | "time": "2023-01-01T08:36:10+00:00" | 6100 | "time": "2023-01-01T08:36:10+00:00" |
5747 | }, | 6101 | }, |
5748 | { | 6102 | { |
5749 | "name": "symfony/service-contracts", | 6103 | "name": "symfony/service-contracts", |
5750 | "version": "v3.0.2", | 6104 | "version": "v3.0.2", |
5751 | "source": { | 6105 | "source": { |
5752 | "type": "git", | 6106 | "type": "git", |
5753 | "url": "https://github.com/symfony/service-contracts.git", | 6107 | "url": "https://github.com/symfony/service-contracts.git", |
5754 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66" | 6108 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66" |
5755 | }, | 6109 | }, |
5756 | "dist": { | 6110 | "dist": { |
5757 | "type": "zip", | 6111 | "type": "zip", |
5758 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66", | 6112 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66", |
5759 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66", | 6113 | "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66", |
5760 | "shasum": "" | 6114 | "shasum": "" |
5761 | }, | 6115 | }, |
5762 | "require": { | 6116 | "require": { |
5763 | "php": ">=8.0.2", | 6117 | "php": ">=8.0.2", |
5764 | "psr/container": "^2.0" | 6118 | "psr/container": "^2.0" |
5765 | }, | 6119 | }, |
5766 | "conflict": { | 6120 | "conflict": { |
5767 | "ext-psr": "<1.1|>=2" | 6121 | "ext-psr": "<1.1|>=2" |
5768 | }, | 6122 | }, |
5769 | "suggest": { | 6123 | "suggest": { |
5770 | "symfony/service-implementation": "" | 6124 | "symfony/service-implementation": "" |
5771 | }, | 6125 | }, |
5772 | "type": "library", | 6126 | "type": "library", |
5773 | "extra": { | 6127 | "extra": { |
5774 | "branch-alias": { | 6128 | "branch-alias": { |
5775 | "dev-main": "3.0-dev" | 6129 | "dev-main": "3.0-dev" |
5776 | }, | 6130 | }, |
5777 | "thanks": { | 6131 | "thanks": { |
5778 | "name": "symfony/contracts", | 6132 | "name": "symfony/contracts", |
5779 | "url": "https://github.com/symfony/contracts" | 6133 | "url": "https://github.com/symfony/contracts" |
5780 | } | 6134 | } |
5781 | }, | 6135 | }, |
5782 | "autoload": { | 6136 | "autoload": { |
5783 | "psr-4": { | 6137 | "psr-4": { |
5784 | "Symfony\\Contracts\\Service\\": "" | 6138 | "Symfony\\Contracts\\Service\\": "" |
5785 | } | 6139 | } |
5786 | }, | 6140 | }, |
5787 | "notification-url": "https://packagist.org/downloads/", | 6141 | "notification-url": "https://packagist.org/downloads/", |
5788 | "license": [ | 6142 | "license": [ |
5789 | "MIT" | 6143 | "MIT" |
5790 | ], | 6144 | ], |
5791 | "authors": [ | 6145 | "authors": [ |
5792 | { | 6146 | { |
5793 | "name": "Nicolas Grekas", | 6147 | "name": "Nicolas Grekas", |
5794 | "email": "p@tchwork.com" | 6148 | "email": "p@tchwork.com" |
5795 | }, | 6149 | }, |
5796 | { | 6150 | { |
5797 | "name": "Symfony Community", | 6151 | "name": "Symfony Community", |
5798 | "homepage": "https://symfony.com/contributors" | 6152 | "homepage": "https://symfony.com/contributors" |
5799 | } | 6153 | } |
5800 | ], | 6154 | ], |
5801 | "description": "Generic abstractions related to writing services", | 6155 | "description": "Generic abstractions related to writing services", |
5802 | "homepage": "https://symfony.com", | 6156 | "homepage": "https://symfony.com", |
5803 | "keywords": [ | 6157 | "keywords": [ |
5804 | "abstractions", | 6158 | "abstractions", |
5805 | "contracts", | 6159 | "contracts", |
5806 | "decoupling", | 6160 | "decoupling", |
5807 | "interfaces", | 6161 | "interfaces", |
5808 | "interoperability", | 6162 | "interoperability", |
5809 | "standards" | 6163 | "standards" |
5810 | ], | 6164 | ], |
5811 | "support": { | 6165 | "support": { |
5812 | "source": "https://github.com/symfony/service-contracts/tree/v3.0.2" | 6166 | "source": "https://github.com/symfony/service-contracts/tree/v3.0.2" |
5813 | }, | 6167 | }, |
5814 | "funding": [ | 6168 | "funding": [ |
5815 | { | 6169 | { |
5816 | "url": "https://symfony.com/sponsor", | 6170 | "url": "https://symfony.com/sponsor", |
5817 | "type": "custom" | 6171 | "type": "custom" |
5818 | }, | 6172 | }, |
5819 | { | 6173 | { |
5820 | "url": "https://github.com/fabpot", | 6174 | "url": "https://github.com/fabpot", |
5821 | "type": "github" | 6175 | "type": "github" |
5822 | }, | 6176 | }, |
5823 | { | 6177 | { |
5824 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6178 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5825 | "type": "tidelift" | 6179 | "type": "tidelift" |
5826 | } | 6180 | } |
5827 | ], | 6181 | ], |
5828 | "time": "2022-05-30T19:17:58+00:00" | 6182 | "time": "2022-05-30T19:17:58+00:00" |
5829 | }, | 6183 | }, |
5830 | { | 6184 | { |
5831 | "name": "symfony/string", | 6185 | "name": "symfony/string", |
5832 | "version": "v6.0.19", | 6186 | "version": "v6.0.19", |
5833 | "source": { | 6187 | "source": { |
5834 | "type": "git", | 6188 | "type": "git", |
5835 | "url": "https://github.com/symfony/string.git", | 6189 | "url": "https://github.com/symfony/string.git", |
5836 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a" | 6190 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a" |
5837 | }, | 6191 | }, |
5838 | "dist": { | 6192 | "dist": { |
5839 | "type": "zip", | 6193 | "type": "zip", |
5840 | "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a", | 6194 | "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a", |
5841 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a", | 6195 | "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a", |
5842 | "shasum": "" | 6196 | "shasum": "" |
5843 | }, | 6197 | }, |
5844 | "require": { | 6198 | "require": { |
5845 | "php": ">=8.0.2", | 6199 | "php": ">=8.0.2", |
5846 | "symfony/polyfill-ctype": "~1.8", | 6200 | "symfony/polyfill-ctype": "~1.8", |
5847 | "symfony/polyfill-intl-grapheme": "~1.0", | 6201 | "symfony/polyfill-intl-grapheme": "~1.0", |
5848 | "symfony/polyfill-intl-normalizer": "~1.0", | 6202 | "symfony/polyfill-intl-normalizer": "~1.0", |
5849 | "symfony/polyfill-mbstring": "~1.0" | 6203 | "symfony/polyfill-mbstring": "~1.0" |
5850 | }, | 6204 | }, |
5851 | "conflict": { | 6205 | "conflict": { |
5852 | "symfony/translation-contracts": "<2.0" | 6206 | "symfony/translation-contracts": "<2.0" |
5853 | }, | 6207 | }, |
5854 | "require-dev": { | 6208 | "require-dev": { |
5855 | "symfony/error-handler": "^5.4|^6.0", | 6209 | "symfony/error-handler": "^5.4|^6.0", |
5856 | "symfony/http-client": "^5.4|^6.0", | 6210 | "symfony/http-client": "^5.4|^6.0", |
5857 | "symfony/translation-contracts": "^2.0|^3.0", | 6211 | "symfony/translation-contracts": "^2.0|^3.0", |
5858 | "symfony/var-exporter": "^5.4|^6.0" | 6212 | "symfony/var-exporter": "^5.4|^6.0" |
5859 | }, | 6213 | }, |
5860 | "type": "library", | 6214 | "type": "library", |
5861 | "autoload": { | 6215 | "autoload": { |
5862 | "files": [ | 6216 | "files": [ |
5863 | "Resources/functions.php" | 6217 | "Resources/functions.php" |
5864 | ], | 6218 | ], |
5865 | "psr-4": { | 6219 | "psr-4": { |
5866 | "Symfony\\Component\\String\\": "" | 6220 | "Symfony\\Component\\String\\": "" |
5867 | }, | 6221 | }, |
5868 | "exclude-from-classmap": [ | 6222 | "exclude-from-classmap": [ |
5869 | "/Tests/" | 6223 | "/Tests/" |
5870 | ] | 6224 | ] |
5871 | }, | 6225 | }, |
5872 | "notification-url": "https://packagist.org/downloads/", | 6226 | "notification-url": "https://packagist.org/downloads/", |
5873 | "license": [ | 6227 | "license": [ |
5874 | "MIT" | 6228 | "MIT" |
5875 | ], | 6229 | ], |
5876 | "authors": [ | 6230 | "authors": [ |
5877 | { | 6231 | { |
5878 | "name": "Nicolas Grekas", | 6232 | "name": "Nicolas Grekas", |
5879 | "email": "p@tchwork.com" | 6233 | "email": "p@tchwork.com" |
5880 | }, | 6234 | }, |
5881 | { | 6235 | { |
5882 | "name": "Symfony Community", | 6236 | "name": "Symfony Community", |
5883 | "homepage": "https://symfony.com/contributors" | 6237 | "homepage": "https://symfony.com/contributors" |
5884 | } | 6238 | } |
5885 | ], | 6239 | ], |
5886 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", | 6240 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", |
5887 | "homepage": "https://symfony.com", | 6241 | "homepage": "https://symfony.com", |
5888 | "keywords": [ | 6242 | "keywords": [ |
5889 | "grapheme", | 6243 | "grapheme", |
5890 | "i18n", | 6244 | "i18n", |
5891 | "string", | 6245 | "string", |
5892 | "unicode", | 6246 | "unicode", |
5893 | "utf-8", | 6247 | "utf-8", |
5894 | "utf8" | 6248 | "utf8" |
5895 | ], | 6249 | ], |
5896 | "support": { | 6250 | "support": { |
5897 | "source": "https://github.com/symfony/string/tree/v6.0.19" | 6251 | "source": "https://github.com/symfony/string/tree/v6.0.19" |
5898 | }, | 6252 | }, |
5899 | "funding": [ | 6253 | "funding": [ |
5900 | { | 6254 | { |
5901 | "url": "https://symfony.com/sponsor", | 6255 | "url": "https://symfony.com/sponsor", |
5902 | "type": "custom" | 6256 | "type": "custom" |
5903 | }, | 6257 | }, |
5904 | { | 6258 | { |
5905 | "url": "https://github.com/fabpot", | 6259 | "url": "https://github.com/fabpot", |
5906 | "type": "github" | 6260 | "type": "github" |
5907 | }, | 6261 | }, |
5908 | { | 6262 | { |
5909 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6263 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
5910 | "type": "tidelift" | 6264 | "type": "tidelift" |
5911 | } | 6265 | } |
5912 | ], | 6266 | ], |
5913 | "time": "2023-01-01T08:36:10+00:00" | 6267 | "time": "2023-01-01T08:36:10+00:00" |
5914 | }, | 6268 | }, |
5915 | { | 6269 | { |
5916 | "name": "symfony/translation", | 6270 | "name": "symfony/translation", |
5917 | "version": "v6.0.19", | 6271 | "version": "v6.0.19", |
5918 | "source": { | 6272 | "source": { |
5919 | "type": "git", | 6273 | "type": "git", |
5920 | "url": "https://github.com/symfony/translation.git", | 6274 | "url": "https://github.com/symfony/translation.git", |
5921 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f" | 6275 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f" |
5922 | }, | 6276 | }, |
5923 | "dist": { | 6277 | "dist": { |
5924 | "type": "zip", | 6278 | "type": "zip", |
5925 | "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", | 6279 | "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", |
5926 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", | 6280 | "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f", |
5927 | "shasum": "" | 6281 | "shasum": "" |
5928 | }, | 6282 | }, |
5929 | "require": { | 6283 | "require": { |
5930 | "php": ">=8.0.2", | 6284 | "php": ">=8.0.2", |
5931 | "symfony/polyfill-mbstring": "~1.0", | 6285 | "symfony/polyfill-mbstring": "~1.0", |
5932 | "symfony/translation-contracts": "^2.3|^3.0" | 6286 | "symfony/translation-contracts": "^2.3|^3.0" |
5933 | }, | 6287 | }, |
5934 | "conflict": { | 6288 | "conflict": { |
5935 | "symfony/config": "<5.4", | 6289 | "symfony/config": "<5.4", |
5936 | "symfony/console": "<5.4", | 6290 | "symfony/console": "<5.4", |
5937 | "symfony/dependency-injection": "<5.4", | 6291 | "symfony/dependency-injection": "<5.4", |
5938 | "symfony/http-kernel": "<5.4", | 6292 | "symfony/http-kernel": "<5.4", |
5939 | "symfony/twig-bundle": "<5.4", | 6293 | "symfony/twig-bundle": "<5.4", |
5940 | "symfony/yaml": "<5.4" | 6294 | "symfony/yaml": "<5.4" |
5941 | }, | 6295 | }, |
5942 | "provide": { | 6296 | "provide": { |
5943 | "symfony/translation-implementation": "2.3|3.0" | 6297 | "symfony/translation-implementation": "2.3|3.0" |
5944 | }, | 6298 | }, |
5945 | "require-dev": { | 6299 | "require-dev": { |
5946 | "psr/log": "^1|^2|^3", | 6300 | "psr/log": "^1|^2|^3", |
5947 | "symfony/config": "^5.4|^6.0", | 6301 | "symfony/config": "^5.4|^6.0", |
5948 | "symfony/console": "^5.4|^6.0", | 6302 | "symfony/console": "^5.4|^6.0", |
5949 | "symfony/dependency-injection": "^5.4|^6.0", | 6303 | "symfony/dependency-injection": "^5.4|^6.0", |
5950 | "symfony/finder": "^5.4|^6.0", | 6304 | "symfony/finder": "^5.4|^6.0", |
5951 | "symfony/http-client-contracts": "^1.1|^2.0|^3.0", | 6305 | "symfony/http-client-contracts": "^1.1|^2.0|^3.0", |
5952 | "symfony/http-kernel": "^5.4|^6.0", | 6306 | "symfony/http-kernel": "^5.4|^6.0", |
5953 | "symfony/intl": "^5.4|^6.0", | 6307 | "symfony/intl": "^5.4|^6.0", |
5954 | "symfony/polyfill-intl-icu": "^1.21", | 6308 | "symfony/polyfill-intl-icu": "^1.21", |
5955 | "symfony/service-contracts": "^1.1.2|^2|^3", | 6309 | "symfony/service-contracts": "^1.1.2|^2|^3", |
5956 | "symfony/yaml": "^5.4|^6.0" | 6310 | "symfony/yaml": "^5.4|^6.0" |
5957 | }, | 6311 | }, |
5958 | "suggest": { | 6312 | "suggest": { |
5959 | "psr/log-implementation": "To use logging capability in translator", | 6313 | "psr/log-implementation": "To use logging capability in translator", |
5960 | "symfony/config": "", | 6314 | "symfony/config": "", |
5961 | "symfony/yaml": "" | 6315 | "symfony/yaml": "" |
5962 | }, | 6316 | }, |
5963 | "type": "library", | 6317 | "type": "library", |
5964 | "autoload": { | 6318 | "autoload": { |
5965 | "files": [ | 6319 | "files": [ |
5966 | "Resources/functions.php" | 6320 | "Resources/functions.php" |
5967 | ], | 6321 | ], |
5968 | "psr-4": { | 6322 | "psr-4": { |
5969 | "Symfony\\Component\\Translation\\": "" | 6323 | "Symfony\\Component\\Translation\\": "" |
5970 | }, | 6324 | }, |
5971 | "exclude-from-classmap": [ | 6325 | "exclude-from-classmap": [ |
5972 | "/Tests/" | 6326 | "/Tests/" |
5973 | ] | 6327 | ] |
5974 | }, | 6328 | }, |
5975 | "notification-url": "https://packagist.org/downloads/", | 6329 | "notification-url": "https://packagist.org/downloads/", |
5976 | "license": [ | 6330 | "license": [ |
5977 | "MIT" | 6331 | "MIT" |
5978 | ], | 6332 | ], |
5979 | "authors": [ | 6333 | "authors": [ |
5980 | { | 6334 | { |
5981 | "name": "Fabien Potencier", | 6335 | "name": "Fabien Potencier", |
5982 | "email": "fabien@symfony.com" | 6336 | "email": "fabien@symfony.com" |
5983 | }, | 6337 | }, |
5984 | { | 6338 | { |
5985 | "name": "Symfony Community", | 6339 | "name": "Symfony Community", |
5986 | "homepage": "https://symfony.com/contributors" | 6340 | "homepage": "https://symfony.com/contributors" |
5987 | } | 6341 | } |
5988 | ], | 6342 | ], |
5989 | "description": "Provides tools to internationalize your application", | 6343 | "description": "Provides tools to internationalize your application", |
5990 | "homepage": "https://symfony.com", | 6344 | "homepage": "https://symfony.com", |
5991 | "support": { | 6345 | "support": { |
5992 | "source": "https://github.com/symfony/translation/tree/v6.0.19" | 6346 | "source": "https://github.com/symfony/translation/tree/v6.0.19" |
5993 | }, | 6347 | }, |
5994 | "funding": [ | 6348 | "funding": [ |
5995 | { | 6349 | { |
5996 | "url": "https://symfony.com/sponsor", | 6350 | "url": "https://symfony.com/sponsor", |
5997 | "type": "custom" | 6351 | "type": "custom" |
5998 | }, | 6352 | }, |
5999 | { | 6353 | { |
6000 | "url": "https://github.com/fabpot", | 6354 | "url": "https://github.com/fabpot", |
6001 | "type": "github" | 6355 | "type": "github" |
6002 | }, | 6356 | }, |
6003 | { | 6357 | { |
6004 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6358 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6005 | "type": "tidelift" | 6359 | "type": "tidelift" |
6006 | } | 6360 | } |
6007 | ], | 6361 | ], |
6008 | "time": "2023-01-01T08:36:10+00:00" | 6362 | "time": "2023-01-01T08:36:10+00:00" |
6009 | }, | 6363 | }, |
6010 | { | 6364 | { |
6011 | "name": "symfony/translation-contracts", | 6365 | "name": "symfony/translation-contracts", |
6012 | "version": "v3.0.2", | 6366 | "version": "v3.0.2", |
6013 | "source": { | 6367 | "source": { |
6014 | "type": "git", | 6368 | "type": "git", |
6015 | "url": "https://github.com/symfony/translation-contracts.git", | 6369 | "url": "https://github.com/symfony/translation-contracts.git", |
6016 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282" | 6370 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282" |
6017 | }, | 6371 | }, |
6018 | "dist": { | 6372 | "dist": { |
6019 | "type": "zip", | 6373 | "type": "zip", |
6020 | "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282", | 6374 | "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282", |
6021 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282", | 6375 | "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282", |
6022 | "shasum": "" | 6376 | "shasum": "" |
6023 | }, | 6377 | }, |
6024 | "require": { | 6378 | "require": { |
6025 | "php": ">=8.0.2" | 6379 | "php": ">=8.0.2" |
6026 | }, | 6380 | }, |
6027 | "suggest": { | 6381 | "suggest": { |
6028 | "symfony/translation-implementation": "" | 6382 | "symfony/translation-implementation": "" |
6029 | }, | 6383 | }, |
6030 | "type": "library", | 6384 | "type": "library", |
6031 | "extra": { | 6385 | "extra": { |
6032 | "branch-alias": { | 6386 | "branch-alias": { |
6033 | "dev-main": "3.0-dev" | 6387 | "dev-main": "3.0-dev" |
6034 | }, | 6388 | }, |
6035 | "thanks": { | 6389 | "thanks": { |
6036 | "name": "symfony/contracts", | 6390 | "name": "symfony/contracts", |
6037 | "url": "https://github.com/symfony/contracts" | 6391 | "url": "https://github.com/symfony/contracts" |
6038 | } | 6392 | } |
6039 | }, | 6393 | }, |
6040 | "autoload": { | 6394 | "autoload": { |
6041 | "psr-4": { | 6395 | "psr-4": { |
6042 | "Symfony\\Contracts\\Translation\\": "" | 6396 | "Symfony\\Contracts\\Translation\\": "" |
6043 | } | 6397 | } |
6044 | }, | 6398 | }, |
6045 | "notification-url": "https://packagist.org/downloads/", | 6399 | "notification-url": "https://packagist.org/downloads/", |
6046 | "license": [ | 6400 | "license": [ |
6047 | "MIT" | 6401 | "MIT" |
6048 | ], | 6402 | ], |
6049 | "authors": [ | 6403 | "authors": [ |
6050 | { | 6404 | { |
6051 | "name": "Nicolas Grekas", | 6405 | "name": "Nicolas Grekas", |
6052 | "email": "p@tchwork.com" | 6406 | "email": "p@tchwork.com" |
6053 | }, | 6407 | }, |
6054 | { | 6408 | { |
6055 | "name": "Symfony Community", | 6409 | "name": "Symfony Community", |
6056 | "homepage": "https://symfony.com/contributors" | 6410 | "homepage": "https://symfony.com/contributors" |
6057 | } | 6411 | } |
6058 | ], | 6412 | ], |
6059 | "description": "Generic abstractions related to translation", | 6413 | "description": "Generic abstractions related to translation", |
6060 | "homepage": "https://symfony.com", | 6414 | "homepage": "https://symfony.com", |
6061 | "keywords": [ | 6415 | "keywords": [ |
6062 | "abstractions", | 6416 | "abstractions", |
6063 | "contracts", | 6417 | "contracts", |
6064 | "decoupling", | 6418 | "decoupling", |
6065 | "interfaces", | 6419 | "interfaces", |
6066 | "interoperability", | 6420 | "interoperability", |
6067 | "standards" | 6421 | "standards" |
6068 | ], | 6422 | ], |
6069 | "support": { | 6423 | "support": { |
6070 | "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2" | 6424 | "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2" |
6071 | }, | 6425 | }, |
6072 | "funding": [ | 6426 | "funding": [ |
6073 | { | 6427 | { |
6074 | "url": "https://symfony.com/sponsor", | 6428 | "url": "https://symfony.com/sponsor", |
6075 | "type": "custom" | 6429 | "type": "custom" |
6076 | }, | 6430 | }, |
6077 | { | 6431 | { |
6078 | "url": "https://github.com/fabpot", | 6432 | "url": "https://github.com/fabpot", |
6079 | "type": "github" | 6433 | "type": "github" |
6080 | }, | 6434 | }, |
6081 | { | 6435 | { |
6082 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6436 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6083 | "type": "tidelift" | 6437 | "type": "tidelift" |
6084 | } | 6438 | } |
6085 | ], | 6439 | ], |
6086 | "time": "2022-06-27T17:10:44+00:00" | 6440 | "time": "2022-06-27T17:10:44+00:00" |
6087 | }, | 6441 | }, |
6088 | { | 6442 | { |
6089 | "name": "symfony/uid", | 6443 | "name": "symfony/uid", |
6090 | "version": "v6.0.19", | 6444 | "version": "v6.0.19", |
6091 | "source": { | 6445 | "source": { |
6092 | "type": "git", | 6446 | "type": "git", |
6093 | "url": "https://github.com/symfony/uid.git", | 6447 | "url": "https://github.com/symfony/uid.git", |
6094 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d" | 6448 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d" |
6095 | }, | 6449 | }, |
6096 | "dist": { | 6450 | "dist": { |
6097 | "type": "zip", | 6451 | "type": "zip", |
6098 | "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", | 6452 | "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", |
6099 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", | 6453 | "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d", |
6100 | "shasum": "" | 6454 | "shasum": "" |
6101 | }, | 6455 | }, |
6102 | "require": { | 6456 | "require": { |
6103 | "php": ">=8.0.2", | 6457 | "php": ">=8.0.2", |
6104 | "symfony/polyfill-uuid": "^1.15" | 6458 | "symfony/polyfill-uuid": "^1.15" |
6105 | }, | 6459 | }, |
6106 | "require-dev": { | 6460 | "require-dev": { |
6107 | "symfony/console": "^5.4|^6.0" | 6461 | "symfony/console": "^5.4|^6.0" |
6108 | }, | 6462 | }, |
6109 | "type": "library", | 6463 | "type": "library", |
6110 | "autoload": { | 6464 | "autoload": { |
6111 | "psr-4": { | 6465 | "psr-4": { |
6112 | "Symfony\\Component\\Uid\\": "" | 6466 | "Symfony\\Component\\Uid\\": "" |
6113 | }, | 6467 | }, |
6114 | "exclude-from-classmap": [ | 6468 | "exclude-from-classmap": [ |
6115 | "/Tests/" | 6469 | "/Tests/" |
6116 | ] | 6470 | ] |
6117 | }, | 6471 | }, |
6118 | "notification-url": "https://packagist.org/downloads/", | 6472 | "notification-url": "https://packagist.org/downloads/", |
6119 | "license": [ | 6473 | "license": [ |
6120 | "MIT" | 6474 | "MIT" |
6121 | ], | 6475 | ], |
6122 | "authors": [ | 6476 | "authors": [ |
6123 | { | 6477 | { |
6124 | "name": "Grégoire Pineau", | 6478 | "name": "Grégoire Pineau", |
6125 | "email": "lyrixx@lyrixx.info" | 6479 | "email": "lyrixx@lyrixx.info" |
6126 | }, | 6480 | }, |
6127 | { | 6481 | { |
6128 | "name": "Nicolas Grekas", | 6482 | "name": "Nicolas Grekas", |
6129 | "email": "p@tchwork.com" | 6483 | "email": "p@tchwork.com" |
6130 | }, | 6484 | }, |
6131 | { | 6485 | { |
6132 | "name": "Symfony Community", | 6486 | "name": "Symfony Community", |
6133 | "homepage": "https://symfony.com/contributors" | 6487 | "homepage": "https://symfony.com/contributors" |
6134 | } | 6488 | } |
6135 | ], | 6489 | ], |
6136 | "description": "Provides an object-oriented API to generate and represent UIDs", | 6490 | "description": "Provides an object-oriented API to generate and represent UIDs", |
6137 | "homepage": "https://symfony.com", | 6491 | "homepage": "https://symfony.com", |
6138 | "keywords": [ | 6492 | "keywords": [ |
6139 | "UID", | 6493 | "UID", |
6140 | "ulid", | 6494 | "ulid", |
6141 | "uuid" | 6495 | "uuid" |
6142 | ], | 6496 | ], |
6143 | "support": { | 6497 | "support": { |
6144 | "source": "https://github.com/symfony/uid/tree/v6.0.19" | 6498 | "source": "https://github.com/symfony/uid/tree/v6.0.19" |
6145 | }, | 6499 | }, |
6146 | "funding": [ | 6500 | "funding": [ |
6147 | { | 6501 | { |
6148 | "url": "https://symfony.com/sponsor", | 6502 | "url": "https://symfony.com/sponsor", |
6149 | "type": "custom" | 6503 | "type": "custom" |
6150 | }, | 6504 | }, |
6151 | { | 6505 | { |
6152 | "url": "https://github.com/fabpot", | 6506 | "url": "https://github.com/fabpot", |
6153 | "type": "github" | 6507 | "type": "github" |
6154 | }, | 6508 | }, |
6155 | { | 6509 | { |
6156 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6510 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6157 | "type": "tidelift" | 6511 | "type": "tidelift" |
6158 | } | 6512 | } |
6159 | ], | 6513 | ], |
6160 | "time": "2023-01-01T08:36:10+00:00" | 6514 | "time": "2023-01-01T08:36:10+00:00" |
6161 | }, | 6515 | }, |
6162 | { | 6516 | { |
6163 | "name": "symfony/var-dumper", | 6517 | "name": "symfony/var-dumper", |
6164 | "version": "v6.0.19", | 6518 | "version": "v6.0.19", |
6165 | "source": { | 6519 | "source": { |
6166 | "type": "git", | 6520 | "type": "git", |
6167 | "url": "https://github.com/symfony/var-dumper.git", | 6521 | "url": "https://github.com/symfony/var-dumper.git", |
6168 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52" | 6522 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52" |
6169 | }, | 6523 | }, |
6170 | "dist": { | 6524 | "dist": { |
6171 | "type": "zip", | 6525 | "type": "zip", |
6172 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52", | 6526 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52", |
6173 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52", | 6527 | "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52", |
6174 | "shasum": "" | 6528 | "shasum": "" |
6175 | }, | 6529 | }, |
6176 | "require": { | 6530 | "require": { |
6177 | "php": ">=8.0.2", | 6531 | "php": ">=8.0.2", |
6178 | "symfony/polyfill-mbstring": "~1.0" | 6532 | "symfony/polyfill-mbstring": "~1.0" |
6179 | }, | 6533 | }, |
6180 | "conflict": { | 6534 | "conflict": { |
6181 | "phpunit/phpunit": "<5.4.3", | 6535 | "phpunit/phpunit": "<5.4.3", |
6182 | "symfony/console": "<5.4" | 6536 | "symfony/console": "<5.4" |
6183 | }, | 6537 | }, |
6184 | "require-dev": { | 6538 | "require-dev": { |
6185 | "ext-iconv": "*", | 6539 | "ext-iconv": "*", |
6186 | "symfony/console": "^5.4|^6.0", | 6540 | "symfony/console": "^5.4|^6.0", |
6187 | "symfony/process": "^5.4|^6.0", | 6541 | "symfony/process": "^5.4|^6.0", |
6188 | "symfony/uid": "^5.4|^6.0", | 6542 | "symfony/uid": "^5.4|^6.0", |
6189 | "twig/twig": "^2.13|^3.0.4" | 6543 | "twig/twig": "^2.13|^3.0.4" |
6190 | }, | 6544 | }, |
6191 | "suggest": { | 6545 | "suggest": { |
6192 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", | 6546 | "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", |
6193 | "ext-intl": "To show region name in time zone dump", | 6547 | "ext-intl": "To show region name in time zone dump", |
6194 | "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" | 6548 | "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" |
6195 | }, | 6549 | }, |
6196 | "bin": [ | 6550 | "bin": [ |
6197 | "Resources/bin/var-dump-server" | 6551 | "Resources/bin/var-dump-server" |
6198 | ], | 6552 | ], |
6199 | "type": "library", | 6553 | "type": "library", |
6200 | "autoload": { | 6554 | "autoload": { |
6201 | "files": [ | 6555 | "files": [ |
6202 | "Resources/functions/dump.php" | 6556 | "Resources/functions/dump.php" |
6203 | ], | 6557 | ], |
6204 | "psr-4": { | 6558 | "psr-4": { |
6205 | "Symfony\\Component\\VarDumper\\": "" | 6559 | "Symfony\\Component\\VarDumper\\": "" |
6206 | }, | 6560 | }, |
6207 | "exclude-from-classmap": [ | 6561 | "exclude-from-classmap": [ |
6208 | "/Tests/" | 6562 | "/Tests/" |
6209 | ] | 6563 | ] |
6210 | }, | 6564 | }, |
6211 | "notification-url": "https://packagist.org/downloads/", | 6565 | "notification-url": "https://packagist.org/downloads/", |
6212 | "license": [ | 6566 | "license": [ |
6213 | "MIT" | 6567 | "MIT" |
6214 | ], | 6568 | ], |
6215 | "authors": [ | 6569 | "authors": [ |
6216 | { | 6570 | { |
6217 | "name": "Nicolas Grekas", | 6571 | "name": "Nicolas Grekas", |
6218 | "email": "p@tchwork.com" | 6572 | "email": "p@tchwork.com" |
6219 | }, | 6573 | }, |
6220 | { | 6574 | { |
6221 | "name": "Symfony Community", | 6575 | "name": "Symfony Community", |
6222 | "homepage": "https://symfony.com/contributors" | 6576 | "homepage": "https://symfony.com/contributors" |
6223 | } | 6577 | } |
6224 | ], | 6578 | ], |
6225 | "description": "Provides mechanisms for walking through any arbitrary PHP variable", | 6579 | "description": "Provides mechanisms for walking through any arbitrary PHP variable", |
6226 | "homepage": "https://symfony.com", | 6580 | "homepage": "https://symfony.com", |
6227 | "keywords": [ | 6581 | "keywords": [ |
6228 | "debug", | 6582 | "debug", |
6229 | "dump" | 6583 | "dump" |
6230 | ], | 6584 | ], |
6231 | "support": { | 6585 | "support": { |
6232 | "source": "https://github.com/symfony/var-dumper/tree/v6.0.19" | 6586 | "source": "https://github.com/symfony/var-dumper/tree/v6.0.19" |
6233 | }, | 6587 | }, |
6234 | "funding": [ | 6588 | "funding": [ |
6235 | { | 6589 | { |
6236 | "url": "https://symfony.com/sponsor", | 6590 | "url": "https://symfony.com/sponsor", |
6237 | "type": "custom" | 6591 | "type": "custom" |
6238 | }, | 6592 | }, |
6239 | { | 6593 | { |
6240 | "url": "https://github.com/fabpot", | 6594 | "url": "https://github.com/fabpot", |
6241 | "type": "github" | 6595 | "type": "github" |
6242 | }, | 6596 | }, |
6243 | { | 6597 | { |
6244 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 6598 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
6245 | "type": "tidelift" | 6599 | "type": "tidelift" |
6246 | } | 6600 | } |
6247 | ], | 6601 | ], |
6248 | "time": "2023-01-20T17:44:14+00:00" | 6602 | "time": "2023-01-20T17:44:14+00:00" |
6249 | }, | 6603 | }, |
6250 | { | 6604 | { |
6251 | "name": "tgalopin/html-sanitizer", | 6605 | "name": "tgalopin/html-sanitizer", |
6252 | "version": "1.5.0", | 6606 | "version": "1.5.0", |
6253 | "source": { | 6607 | "source": { |
6254 | "type": "git", | 6608 | "type": "git", |
6255 | "url": "https://github.com/tgalopin/html-sanitizer.git", | 6609 | "url": "https://github.com/tgalopin/html-sanitizer.git", |
6256 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913" | 6610 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913" |
6257 | }, | 6611 | }, |
6258 | "dist": { | 6612 | "dist": { |
6259 | "type": "zip", | 6613 | "type": "zip", |
6260 | "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913", | 6614 | "url": "https://api.github.com/repos/tgalopin/html-sanitizer/zipball/5d02dcb6f2ea4f505731eac440798caa1b3b0913", |
6261 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913", | 6615 | "reference": "5d02dcb6f2ea4f505731eac440798caa1b3b0913", |
6262 | "shasum": "" | 6616 | "shasum": "" |
6263 | }, | 6617 | }, |
6264 | "require": { | 6618 | "require": { |
6265 | "ext-dom": "*", | 6619 | "ext-dom": "*", |
6266 | "league/uri-parser": "^1.4.1", | 6620 | "league/uri-parser": "^1.4.1", |
6267 | "masterminds/html5": "^2.4", | 6621 | "masterminds/html5": "^2.4", |
6268 | "php": ">=7.1", | 6622 | "php": ">=7.1", |
6269 | "psr/log": "^1.0|^2.0|^3.0" | 6623 | "psr/log": "^1.0|^2.0|^3.0" |
6270 | }, | 6624 | }, |
6271 | "require-dev": { | 6625 | "require-dev": { |
6272 | "phpunit/phpunit": "^7.4", | 6626 | "phpunit/phpunit": "^7.4", |
6273 | "symfony/var-dumper": "^4.1" | 6627 | "symfony/var-dumper": "^4.1" |
6274 | }, | 6628 | }, |
6275 | "type": "library", | 6629 | "type": "library", |
6276 | "autoload": { | 6630 | "autoload": { |
6277 | "psr-4": { | 6631 | "psr-4": { |
6278 | "HtmlSanitizer\\": "src" | 6632 | "HtmlSanitizer\\": "src" |
6279 | } | 6633 | } |
6280 | }, | 6634 | }, |
6281 | "notification-url": "https://packagist.org/downloads/", | 6635 | "notification-url": "https://packagist.org/downloads/", |
6282 | "license": [ | 6636 | "license": [ |
6283 | "MIT" | 6637 | "MIT" |
6284 | ], | 6638 | ], |
6285 | "authors": [ | 6639 | "authors": [ |
6286 | { | 6640 | { |
6287 | "name": "Titouan Galopin", | 6641 | "name": "Titouan Galopin", |
6288 | "email": "galopintitouan@gmail.com" | 6642 | "email": "galopintitouan@gmail.com" |
6289 | } | 6643 | } |
6290 | ], | 6644 | ], |
6291 | "description": "Sanitize untrustworthy HTML user input", | 6645 | "description": "Sanitize untrustworthy HTML user input", |
6292 | "support": { | 6646 | "support": { |
6293 | "issues": "https://github.com/tgalopin/html-sanitizer/issues", | 6647 | "issues": "https://github.com/tgalopin/html-sanitizer/issues", |
6294 | "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0" | 6648 | "source": "https://github.com/tgalopin/html-sanitizer/tree/1.5.0" |
6295 | }, | 6649 | }, |
6296 | "abandoned": "symfony/html-sanitizer", | 6650 | "abandoned": "symfony/html-sanitizer", |
6297 | "time": "2021-09-14T08:27:50+00:00" | 6651 | "time": "2021-09-14T08:27:50+00:00" |
6298 | }, | 6652 | }, |
6299 | { | 6653 | { |
6300 | "name": "tijsverkoyen/css-to-inline-styles", | 6654 | "name": "tijsverkoyen/css-to-inline-styles", |
6301 | "version": "2.2.6", | 6655 | "version": "2.2.6", |
6302 | "source": { | 6656 | "source": { |
6303 | "type": "git", | 6657 | "type": "git", |
6304 | "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", | 6658 | "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", |
6305 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" | 6659 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c" |
6306 | }, | 6660 | }, |
6307 | "dist": { | 6661 | "dist": { |
6308 | "type": "zip", | 6662 | "type": "zip", |
6309 | "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", | 6663 | "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c", |
6310 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", | 6664 | "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c", |
6311 | "shasum": "" | 6665 | "shasum": "" |
6312 | }, | 6666 | }, |
6313 | "require": { | 6667 | "require": { |
6314 | "ext-dom": "*", | 6668 | "ext-dom": "*", |
6315 | "ext-libxml": "*", | 6669 | "ext-libxml": "*", |
6316 | "php": "^5.5 || ^7.0 || ^8.0", | 6670 | "php": "^5.5 || ^7.0 || ^8.0", |
6317 | "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" | 6671 | "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" |
6318 | }, | 6672 | }, |
6319 | "require-dev": { | 6673 | "require-dev": { |
6320 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" | 6674 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" |
6321 | }, | 6675 | }, |
6322 | "type": "library", | 6676 | "type": "library", |
6323 | "extra": { | 6677 | "extra": { |
6324 | "branch-alias": { | 6678 | "branch-alias": { |
6325 | "dev-master": "2.2.x-dev" | 6679 | "dev-master": "2.2.x-dev" |
6326 | } | 6680 | } |
6327 | }, | 6681 | }, |
6328 | "autoload": { | 6682 | "autoload": { |
6329 | "psr-4": { | 6683 | "psr-4": { |
6330 | "TijsVerkoyen\\CssToInlineStyles\\": "src" | 6684 | "TijsVerkoyen\\CssToInlineStyles\\": "src" |
6331 | } | 6685 | } |
6332 | }, | 6686 | }, |
6333 | "notification-url": "https://packagist.org/downloads/", | 6687 | "notification-url": "https://packagist.org/downloads/", |
6334 | "license": [ | 6688 | "license": [ |
6335 | "BSD-3-Clause" | 6689 | "BSD-3-Clause" |
6336 | ], | 6690 | ], |
6337 | "authors": [ | 6691 | "authors": [ |
6338 | { | 6692 | { |
6339 | "name": "Tijs Verkoyen", | 6693 | "name": "Tijs Verkoyen", |
6340 | "email": "css_to_inline_styles@verkoyen.eu", | 6694 | "email": "css_to_inline_styles@verkoyen.eu", |
6341 | "role": "Developer" | 6695 | "role": "Developer" |
6342 | } | 6696 | } |
6343 | ], | 6697 | ], |
6344 | "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.", | 6698 | "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.", |
6345 | "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", | 6699 | "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", |
6346 | "support": { | 6700 | "support": { |
6347 | "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", | 6701 | "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", |
6348 | "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" | 6702 | "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6" |
6349 | }, | 6703 | }, |
6350 | "time": "2023-01-03T09:29:04+00:00" | 6704 | "time": "2023-01-03T09:29:04+00:00" |
6351 | }, | 6705 | }, |
6352 | { | 6706 | { |
6353 | "name": "vlucas/phpdotenv", | 6707 | "name": "vlucas/phpdotenv", |
6354 | "version": "v5.5.0", | 6708 | "version": "v5.5.0", |
6355 | "source": { | 6709 | "source": { |
6356 | "type": "git", | 6710 | "type": "git", |
6357 | "url": "https://github.com/vlucas/phpdotenv.git", | 6711 | "url": "https://github.com/vlucas/phpdotenv.git", |
6358 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" | 6712 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7" |
6359 | }, | 6713 | }, |
6360 | "dist": { | 6714 | "dist": { |
6361 | "type": "zip", | 6715 | "type": "zip", |
6362 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", | 6716 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", |
6363 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", | 6717 | "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7", |
6364 | "shasum": "" | 6718 | "shasum": "" |
6365 | }, | 6719 | }, |
6366 | "require": { | 6720 | "require": { |
6367 | "ext-pcre": "*", | 6721 | "ext-pcre": "*", |
6368 | "graham-campbell/result-type": "^1.0.2", | 6722 | "graham-campbell/result-type": "^1.0.2", |
6369 | "php": "^7.1.3 || ^8.0", | 6723 | "php": "^7.1.3 || ^8.0", |
6370 | "phpoption/phpoption": "^1.8", | 6724 | "phpoption/phpoption": "^1.8", |
6371 | "symfony/polyfill-ctype": "^1.23", | 6725 | "symfony/polyfill-ctype": "^1.23", |
6372 | "symfony/polyfill-mbstring": "^1.23.1", | 6726 | "symfony/polyfill-mbstring": "^1.23.1", |
6373 | "symfony/polyfill-php80": "^1.23.1" | 6727 | "symfony/polyfill-php80": "^1.23.1" |
6374 | }, | 6728 | }, |
6375 | "require-dev": { | 6729 | "require-dev": { |
6376 | "bamarni/composer-bin-plugin": "^1.4.1", | 6730 | "bamarni/composer-bin-plugin": "^1.4.1", |
6377 | "ext-filter": "*", | 6731 | "ext-filter": "*", |
6378 | "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" | 6732 | "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25" |
6379 | }, | 6733 | }, |
6380 | "suggest": { | 6734 | "suggest": { |
6381 | "ext-filter": "Required to use the boolean validator." | 6735 | "ext-filter": "Required to use the boolean validator." |
6382 | }, | 6736 | }, |
6383 | "type": "library", | 6737 | "type": "library", |
6384 | "extra": { | 6738 | "extra": { |
6385 | "bamarni-bin": { | 6739 | "bamarni-bin": { |
6386 | "bin-links": true, | 6740 | "bin-links": true, |
6387 | "forward-command": true | 6741 | "forward-command": true |
6388 | }, | 6742 | }, |
6389 | "branch-alias": { | 6743 | "branch-alias": { |
6390 | "dev-master": "5.5-dev" | 6744 | "dev-master": "5.5-dev" |
6391 | } | 6745 | } |
6392 | }, | 6746 | }, |
6393 | "autoload": { | 6747 | "autoload": { |
6394 | "psr-4": { | 6748 | "psr-4": { |
6395 | "Dotenv\\": "src/" | 6749 | "Dotenv\\": "src/" |
6396 | } | 6750 | } |
6397 | }, | 6751 | }, |
6398 | "notification-url": "https://packagist.org/downloads/", | 6752 | "notification-url": "https://packagist.org/downloads/", |
6399 | "license": [ | 6753 | "license": [ |
6400 | "BSD-3-Clause" | 6754 | "BSD-3-Clause" |
6401 | ], | 6755 | ], |
6402 | "authors": [ | 6756 | "authors": [ |
6403 | { | 6757 | { |
6404 | "name": "Graham Campbell", | 6758 | "name": "Graham Campbell", |
6405 | "email": "hello@gjcampbell.co.uk", | 6759 | "email": "hello@gjcampbell.co.uk", |
6406 | "homepage": "https://github.com/GrahamCampbell" | 6760 | "homepage": "https://github.com/GrahamCampbell" |
6407 | }, | 6761 | }, |
6408 | { | 6762 | { |
6409 | "name": "Vance Lucas", | 6763 | "name": "Vance Lucas", |
6410 | "email": "vance@vancelucas.com", | 6764 | "email": "vance@vancelucas.com", |
6411 | "homepage": "https://github.com/vlucas" | 6765 | "homepage": "https://github.com/vlucas" |
6412 | } | 6766 | } |
6413 | ], | 6767 | ], |
6414 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", | 6768 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", |
6415 | "keywords": [ | 6769 | "keywords": [ |
6416 | "dotenv", | 6770 | "dotenv", |
6417 | "env", | 6771 | "env", |
6418 | "environment" | 6772 | "environment" |
6419 | ], | 6773 | ], |
6420 | "support": { | 6774 | "support": { |
6421 | "issues": "https://github.com/vlucas/phpdotenv/issues", | 6775 | "issues": "https://github.com/vlucas/phpdotenv/issues", |
6422 | "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" | 6776 | "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0" |
6423 | }, | 6777 | }, |
6424 | "funding": [ | 6778 | "funding": [ |
6425 | { | 6779 | { |
6426 | "url": "https://github.com/GrahamCampbell", | 6780 | "url": "https://github.com/GrahamCampbell", |
6427 | "type": "github" | 6781 | "type": "github" |
6428 | }, | 6782 | }, |
6429 | { | 6783 | { |
6430 | "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", | 6784 | "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", |
6431 | "type": "tidelift" | 6785 | "type": "tidelift" |
6432 | } | 6786 | } |
6433 | ], | 6787 | ], |
6434 | "time": "2022-10-16T01:01:54+00:00" | 6788 | "time": "2022-10-16T01:01:54+00:00" |
6435 | }, | 6789 | }, |
6436 | { | 6790 | { |
6437 | "name": "voku/portable-ascii", | 6791 | "name": "voku/portable-ascii", |
6438 | "version": "2.0.1", | 6792 | "version": "2.0.1", |
6439 | "source": { | 6793 | "source": { |
6440 | "type": "git", | 6794 | "type": "git", |
6441 | "url": "https://github.com/voku/portable-ascii.git", | 6795 | "url": "https://github.com/voku/portable-ascii.git", |
6442 | "reference": "b56450eed252f6801410d810c8e1727224ae0743" | 6796 | "reference": "b56450eed252f6801410d810c8e1727224ae0743" |
6443 | }, | 6797 | }, |
6444 | "dist": { | 6798 | "dist": { |
6445 | "type": "zip", | 6799 | "type": "zip", |
6446 | "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", | 6800 | "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743", |
6447 | "reference": "b56450eed252f6801410d810c8e1727224ae0743", | 6801 | "reference": "b56450eed252f6801410d810c8e1727224ae0743", |
6448 | "shasum": "" | 6802 | "shasum": "" |
6449 | }, | 6803 | }, |
6450 | "require": { | 6804 | "require": { |
6451 | "php": ">=7.0.0" | 6805 | "php": ">=7.0.0" |
6452 | }, | 6806 | }, |
6453 | "require-dev": { | 6807 | "require-dev": { |
6454 | "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" | 6808 | "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0" |
6455 | }, | 6809 | }, |
6456 | "suggest": { | 6810 | "suggest": { |
6457 | "ext-intl": "Use Intl for transliterator_transliterate() support" | 6811 | "ext-intl": "Use Intl for transliterator_transliterate() support" |
6458 | }, | 6812 | }, |
6459 | "type": "library", | 6813 | "type": "library", |
6460 | "autoload": { | 6814 | "autoload": { |
6461 | "psr-4": { | 6815 | "psr-4": { |
6462 | "voku\\": "src/voku/" | 6816 | "voku\\": "src/voku/" |
6463 | } | 6817 | } |
6464 | }, | 6818 | }, |
6465 | "notification-url": "https://packagist.org/downloads/", | 6819 | "notification-url": "https://packagist.org/downloads/", |
6466 | "license": [ | 6820 | "license": [ |
6467 | "MIT" | 6821 | "MIT" |
6468 | ], | 6822 | ], |
6469 | "authors": [ | 6823 | "authors": [ |
6470 | { | 6824 | { |
6471 | "name": "Lars Moelleken", | 6825 | "name": "Lars Moelleken", |
6472 | "homepage": "http://www.moelleken.org/" | 6826 | "homepage": "http://www.moelleken.org/" |
6473 | } | 6827 | } |
6474 | ], | 6828 | ], |
6475 | "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", | 6829 | "description": "Portable ASCII library - performance optimized (ascii) string functions for php.", |
6476 | "homepage": "https://github.com/voku/portable-ascii", | 6830 | "homepage": "https://github.com/voku/portable-ascii", |
6477 | "keywords": [ | 6831 | "keywords": [ |
6478 | "ascii", | 6832 | "ascii", |
6479 | "clean", | 6833 | "clean", |
6480 | "php" | 6834 | "php" |
6481 | ], | 6835 | ], |
6482 | "support": { | 6836 | "support": { |
6483 | "issues": "https://github.com/voku/portable-ascii/issues", | 6837 | "issues": "https://github.com/voku/portable-ascii/issues", |
6484 | "source": "https://github.com/voku/portable-ascii/tree/2.0.1" | 6838 | "source": "https://github.com/voku/portable-ascii/tree/2.0.1" |
6485 | }, | 6839 | }, |
6486 | "funding": [ | 6840 | "funding": [ |
6487 | { | 6841 | { |
6488 | "url": "https://www.paypal.me/moelleken", | 6842 | "url": "https://www.paypal.me/moelleken", |
6489 | "type": "custom" | 6843 | "type": "custom" |
6490 | }, | 6844 | }, |
6491 | { | 6845 | { |
6492 | "url": "https://github.com/voku", | 6846 | "url": "https://github.com/voku", |
6493 | "type": "github" | 6847 | "type": "github" |
6494 | }, | 6848 | }, |
6495 | { | 6849 | { |
6496 | "url": "https://opencollective.com/portable-ascii", | 6850 | "url": "https://opencollective.com/portable-ascii", |
6497 | "type": "open_collective" | 6851 | "type": "open_collective" |
6498 | }, | 6852 | }, |
6499 | { | 6853 | { |
6500 | "url": "https://www.patreon.com/voku", | 6854 | "url": "https://www.patreon.com/voku", |
6501 | "type": "patreon" | 6855 | "type": "patreon" |
6502 | }, | 6856 | }, |
6503 | { | 6857 | { |
6504 | "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", | 6858 | "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii", |
6505 | "type": "tidelift" | 6859 | "type": "tidelift" |
6506 | } | 6860 | } |
6507 | ], | 6861 | ], |
6508 | "time": "2022-03-08T17:03:00+00:00" | 6862 | "time": "2022-03-08T17:03:00+00:00" |
6509 | }, | 6863 | }, |
6510 | { | 6864 | { |
6511 | "name": "webmozart/assert", | 6865 | "name": "webmozart/assert", |
6512 | "version": "1.11.0", | 6866 | "version": "1.11.0", |
6513 | "source": { | 6867 | "source": { |
6514 | "type": "git", | 6868 | "type": "git", |
6515 | "url": "https://github.com/webmozarts/assert.git", | 6869 | "url": "https://github.com/webmozarts/assert.git", |
6516 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" | 6870 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" |
6517 | }, | 6871 | }, |
6518 | "dist": { | 6872 | "dist": { |
6519 | "type": "zip", | 6873 | "type": "zip", |
6520 | "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", | 6874 | "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", |
6521 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", | 6875 | "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", |
6522 | "shasum": "" | 6876 | "shasum": "" |
6523 | }, | 6877 | }, |
6524 | "require": { | 6878 | "require": { |
6525 | "ext-ctype": "*", | 6879 | "ext-ctype": "*", |
6526 | "php": "^7.2 || ^8.0" | 6880 | "php": "^7.2 || ^8.0" |
6527 | }, | 6881 | }, |
6528 | "conflict": { | 6882 | "conflict": { |
6529 | "phpstan/phpstan": "<0.12.20", | 6883 | "phpstan/phpstan": "<0.12.20", |
6530 | "vimeo/psalm": "<4.6.1 || 4.6.2" | 6884 | "vimeo/psalm": "<4.6.1 || 4.6.2" |
6531 | }, | 6885 | }, |
6532 | "require-dev": { | 6886 | "require-dev": { |
6533 | "phpunit/phpunit": "^8.5.13" | 6887 | "phpunit/phpunit": "^8.5.13" |
6534 | }, | 6888 | }, |
6535 | "type": "library", | 6889 | "type": "library", |
6536 | "extra": { | 6890 | "extra": { |
6537 | "branch-alias": { | 6891 | "branch-alias": { |
6538 | "dev-master": "1.10-dev" | 6892 | "dev-master": "1.10-dev" |
6539 | } | 6893 | } |
6540 | }, | 6894 | }, |
6541 | "autoload": { | 6895 | "autoload": { |
6542 | "psr-4": { | 6896 | "psr-4": { |
6543 | "Webmozart\\Assert\\": "src/" | 6897 | "Webmozart\\Assert\\": "src/" |
6544 | } | 6898 | } |
6545 | }, | 6899 | }, |
6546 | "notification-url": "https://packagist.org/downloads/", | 6900 | "notification-url": "https://packagist.org/downloads/", |
6547 | "license": [ | 6901 | "license": [ |
6548 | "MIT" | 6902 | "MIT" |
6549 | ], | 6903 | ], |
6550 | "authors": [ | 6904 | "authors": [ |
6551 | { | 6905 | { |
6552 | "name": "Bernhard Schussek", | 6906 | "name": "Bernhard Schussek", |
6553 | "email": "bschussek@gmail.com" | 6907 | "email": "bschussek@gmail.com" |
6554 | } | 6908 | } |
6555 | ], | 6909 | ], |
6556 | "description": "Assertions to validate method input/output with nice error messages.", | 6910 | "description": "Assertions to validate method input/output with nice error messages.", |
6557 | "keywords": [ | 6911 | "keywords": [ |
6558 | "assert", | 6912 | "assert", |
6559 | "check", | 6913 | "check", |
6560 | "validate" | 6914 | "validate" |
6561 | ], | 6915 | ], |
6562 | "support": { | 6916 | "support": { |
6563 | "issues": "https://github.com/webmozarts/assert/issues", | 6917 | "issues": "https://github.com/webmozarts/assert/issues", |
6564 | "source": "https://github.com/webmozarts/assert/tree/1.11.0" | 6918 | "source": "https://github.com/webmozarts/assert/tree/1.11.0" |
6565 | }, | 6919 | }, |
6566 | "time": "2022-06-03T18:03:27+00:00" | 6920 | "time": "2022-06-03T18:03:27+00:00" |
6567 | } | 6921 | } |
6568 | ], | 6922 | ], |
6569 | "packages-dev": [ | 6923 | "packages-dev": [ |
6570 | { | 6924 | { |
6571 | "name": "barryvdh/laravel-debugbar", | 6925 | "name": "barryvdh/laravel-debugbar", |
6572 | "version": "v3.9.2", | 6926 | "version": "v3.9.2", |
6573 | "source": { | 6927 | "source": { |
6574 | "type": "git", | 6928 | "type": "git", |
6575 | "url": "https://github.com/barryvdh/laravel-debugbar.git", | 6929 | "url": "https://github.com/barryvdh/laravel-debugbar.git", |
6576 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" | 6930 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" |
6577 | }, | 6931 | }, |
6578 | "dist": { | 6932 | "dist": { |
6579 | "type": "zip", | 6933 | "type": "zip", |
6580 | "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", | 6934 | "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", |
6581 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", | 6935 | "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", |
6582 | "shasum": "" | 6936 | "shasum": "" |
6583 | }, | 6937 | }, |
6584 | "require": { | 6938 | "require": { |
6585 | "illuminate/routing": "^9|^10", | 6939 | "illuminate/routing": "^9|^10", |
6586 | "illuminate/session": "^9|^10", | 6940 | "illuminate/session": "^9|^10", |
6587 | "illuminate/support": "^9|^10", | 6941 | "illuminate/support": "^9|^10", |
6588 | "maximebf/debugbar": "^1.18.2", | 6942 | "maximebf/debugbar": "^1.18.2", |
6589 | "php": "^8.0", | 6943 | "php": "^8.0", |
6590 | "symfony/finder": "^6" | 6944 | "symfony/finder": "^6" |
6591 | }, | 6945 | }, |
6592 | "require-dev": { | 6946 | "require-dev": { |
6593 | "mockery/mockery": "^1.3.3", | 6947 | "mockery/mockery": "^1.3.3", |
6594 | "orchestra/testbench-dusk": "^5|^6|^7|^8", | 6948 | "orchestra/testbench-dusk": "^5|^6|^7|^8", |
6595 | "phpunit/phpunit": "^8.5.30|^9.0", | 6949 | "phpunit/phpunit": "^8.5.30|^9.0", |
6596 | "squizlabs/php_codesniffer": "^3.5" | 6950 | "squizlabs/php_codesniffer": "^3.5" |
6597 | }, | 6951 | }, |
6598 | "type": "library", | 6952 | "type": "library", |
6599 | "extra": { | 6953 | "extra": { |
6600 | "branch-alias": { | 6954 | "branch-alias": { |
6601 | "dev-master": "3.8-dev" | 6955 | "dev-master": "3.8-dev" |
6602 | }, | 6956 | }, |
6603 | "laravel": { | 6957 | "laravel": { |
6604 | "providers": [ | 6958 | "providers": [ |
6605 | "Barryvdh\\Debugbar\\ServiceProvider" | 6959 | "Barryvdh\\Debugbar\\ServiceProvider" |
6606 | ], | 6960 | ], |
6607 | "aliases": { | 6961 | "aliases": { |
6608 | "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar" | 6962 | "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar" |
6609 | } | 6963 | } |
6610 | } | 6964 | } |
6611 | }, | 6965 | }, |
6612 | "autoload": { | 6966 | "autoload": { |
6613 | "files": [ | 6967 | "files": [ |
6614 | "src/helpers.php" | 6968 | "src/helpers.php" |
6615 | ], | 6969 | ], |
6616 | "psr-4": { | 6970 | "psr-4": { |
6617 | "Barryvdh\\Debugbar\\": "src/" | 6971 | "Barryvdh\\Debugbar\\": "src/" |
6618 | } | 6972 | } |
6619 | }, | 6973 | }, |
6620 | "notification-url": "https://packagist.org/downloads/", | 6974 | "notification-url": "https://packagist.org/downloads/", |
6621 | "license": [ | 6975 | "license": [ |
6622 | "MIT" | 6976 | "MIT" |
6623 | ], | 6977 | ], |
6624 | "authors": [ | 6978 | "authors": [ |
6625 | { | 6979 | { |
6626 | "name": "Barry vd. Heuvel", | 6980 | "name": "Barry vd. Heuvel", |
6627 | "email": "barryvdh@gmail.com" | 6981 | "email": "barryvdh@gmail.com" |
6628 | } | 6982 | } |
6629 | ], | 6983 | ], |
6630 | "description": "PHP Debugbar integration for Laravel", | 6984 | "description": "PHP Debugbar integration for Laravel", |
6631 | "keywords": [ | 6985 | "keywords": [ |
6632 | "debug", | 6986 | "debug", |
6633 | "debugbar", | 6987 | "debugbar", |
6634 | "laravel", | 6988 | "laravel", |
6635 | "profiler", | 6989 | "profiler", |
6636 | "webprofiler" | 6990 | "webprofiler" |
6637 | ], | 6991 | ], |
6638 | "support": { | 6992 | "support": { |
6639 | "issues": "https://github.com/barryvdh/laravel-debugbar/issues", | 6993 | "issues": "https://github.com/barryvdh/laravel-debugbar/issues", |
6640 | "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" | 6994 | "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" |
6641 | }, | 6995 | }, |
6642 | "funding": [ | 6996 | "funding": [ |
6643 | { | 6997 | { |
6644 | "url": "https://fruitcake.nl", | 6998 | "url": "https://fruitcake.nl", |
6645 | "type": "custom" | 6999 | "type": "custom" |
6646 | }, | 7000 | }, |
6647 | { | 7001 | { |
6648 | "url": "https://github.com/barryvdh", | 7002 | "url": "https://github.com/barryvdh", |
6649 | "type": "github" | 7003 | "type": "github" |
6650 | } | 7004 | } |
6651 | ], | 7005 | ], |
6652 | "time": "2023-08-25T18:43:57+00:00" | 7006 | "time": "2023-08-25T18:43:57+00:00" |
6653 | }, | 7007 | }, |
6654 | { | 7008 | { |
6655 | "name": "doctrine/instantiator", | 7009 | "name": "doctrine/instantiator", |
6656 | "version": "1.5.0", | 7010 | "version": "1.5.0", |
6657 | "source": { | 7011 | "source": { |
6658 | "type": "git", | 7012 | "type": "git", |
6659 | "url": "https://github.com/doctrine/instantiator.git", | 7013 | "url": "https://github.com/doctrine/instantiator.git", |
6660 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" | 7014 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b" |
6661 | }, | 7015 | }, |
6662 | "dist": { | 7016 | "dist": { |
6663 | "type": "zip", | 7017 | "type": "zip", |
6664 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", | 7018 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b", |
6665 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", | 7019 | "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b", |
6666 | "shasum": "" | 7020 | "shasum": "" |
6667 | }, | 7021 | }, |
6668 | "require": { | 7022 | "require": { |
6669 | "php": "^7.1 || ^8.0" | 7023 | "php": "^7.1 || ^8.0" |
6670 | }, | 7024 | }, |
6671 | "require-dev": { | 7025 | "require-dev": { |
6672 | "doctrine/coding-standard": "^9 || ^11", | 7026 | "doctrine/coding-standard": "^9 || ^11", |
6673 | "ext-pdo": "*", | 7027 | "ext-pdo": "*", |
6674 | "ext-phar": "*", | 7028 | "ext-phar": "*", |
6675 | "phpbench/phpbench": "^0.16 || ^1", | 7029 | "phpbench/phpbench": "^0.16 || ^1", |
6676 | "phpstan/phpstan": "^1.4", | 7030 | "phpstan/phpstan": "^1.4", |
6677 | "phpstan/phpstan-phpunit": "^1", | 7031 | "phpstan/phpstan-phpunit": "^1", |
6678 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | 7032 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", |
6679 | "vimeo/psalm": "^4.30 || ^5.4" | 7033 | "vimeo/psalm": "^4.30 || ^5.4" |
6680 | }, | 7034 | }, |
6681 | "type": "library", | 7035 | "type": "library", |
6682 | "autoload": { | 7036 | "autoload": { |
6683 | "psr-4": { | 7037 | "psr-4": { |
6684 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" | 7038 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" |
6685 | } | 7039 | } |
6686 | }, | 7040 | }, |
6687 | "notification-url": "https://packagist.org/downloads/", | 7041 | "notification-url": "https://packagist.org/downloads/", |
6688 | "license": [ | 7042 | "license": [ |
6689 | "MIT" | 7043 | "MIT" |
6690 | ], | 7044 | ], |
6691 | "authors": [ | 7045 | "authors": [ |
6692 | { | 7046 | { |
6693 | "name": "Marco Pivetta", | 7047 | "name": "Marco Pivetta", |
6694 | "email": "ocramius@gmail.com", | 7048 | "email": "ocramius@gmail.com", |
6695 | "homepage": "https://ocramius.github.io/" | 7049 | "homepage": "https://ocramius.github.io/" |
6696 | } | 7050 | } |
6697 | ], | 7051 | ], |
6698 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", | 7052 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", |
6699 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", | 7053 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", |
6700 | "keywords": [ | 7054 | "keywords": [ |
6701 | "constructor", | 7055 | "constructor", |
6702 | "instantiate" | 7056 | "instantiate" |
6703 | ], | 7057 | ], |
6704 | "support": { | 7058 | "support": { |
6705 | "issues": "https://github.com/doctrine/instantiator/issues", | 7059 | "issues": "https://github.com/doctrine/instantiator/issues", |
6706 | "source": "https://github.com/doctrine/instantiator/tree/1.5.0" | 7060 | "source": "https://github.com/doctrine/instantiator/tree/1.5.0" |
6707 | }, | 7061 | }, |
6708 | "funding": [ | 7062 | "funding": [ |
6709 | { | 7063 | { |
6710 | "url": "https://www.doctrine-project.org/sponsorship.html", | 7064 | "url": "https://www.doctrine-project.org/sponsorship.html", |
6711 | "type": "custom" | 7065 | "type": "custom" |
6712 | }, | 7066 | }, |
6713 | { | 7067 | { |
6714 | "url": "https://www.patreon.com/phpdoctrine", | 7068 | "url": "https://www.patreon.com/phpdoctrine", |
6715 | "type": "patreon" | 7069 | "type": "patreon" |
6716 | }, | 7070 | }, |
6717 | { | 7071 | { |
6718 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", | 7072 | "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", |
6719 | "type": "tidelift" | 7073 | "type": "tidelift" |
6720 | } | 7074 | } |
6721 | ], | 7075 | ], |
6722 | "time": "2022-12-30T00:15:36+00:00" | 7076 | "time": "2022-12-30T00:15:36+00:00" |
6723 | }, | 7077 | }, |
6724 | { | 7078 | { |
6725 | "name": "fakerphp/faker", | 7079 | "name": "fakerphp/faker", |
6726 | "version": "v1.21.0", | 7080 | "version": "v1.21.0", |
6727 | "source": { | 7081 | "source": { |
6728 | "type": "git", | 7082 | "type": "git", |
6729 | "url": "https://github.com/FakerPHP/Faker.git", | 7083 | "url": "https://github.com/FakerPHP/Faker.git", |
6730 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d" | 7084 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d" |
6731 | }, | 7085 | }, |
6732 | "dist": { | 7086 | "dist": { |
6733 | "type": "zip", | 7087 | "type": "zip", |
6734 | "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d", | 7088 | "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d", |
6735 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d", | 7089 | "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d", |
6736 | "shasum": "" | 7090 | "shasum": "" |
6737 | }, | 7091 | }, |
6738 | "require": { | 7092 | "require": { |
6739 | "php": "^7.4 || ^8.0", | 7093 | "php": "^7.4 || ^8.0", |
6740 | "psr/container": "^1.0 || ^2.0", | 7094 | "psr/container": "^1.0 || ^2.0", |
6741 | "symfony/deprecation-contracts": "^2.2 || ^3.0" | 7095 | "symfony/deprecation-contracts": "^2.2 || ^3.0" |
6742 | }, | 7096 | }, |
6743 | "conflict": { | 7097 | "conflict": { |
6744 | "fzaninotto/faker": "*" | 7098 | "fzaninotto/faker": "*" |
6745 | }, | 7099 | }, |
6746 | "require-dev": { | 7100 | "require-dev": { |
6747 | "bamarni/composer-bin-plugin": "^1.4.1", | 7101 | "bamarni/composer-bin-plugin": "^1.4.1", |
6748 | "doctrine/persistence": "^1.3 || ^2.0", | 7102 | "doctrine/persistence": "^1.3 || ^2.0", |
6749 | "ext-intl": "*", | 7103 | "ext-intl": "*", |
6750 | "phpunit/phpunit": "^9.5.26", | 7104 | "phpunit/phpunit": "^9.5.26", |
6751 | "symfony/phpunit-bridge": "^5.4.16" | 7105 | "symfony/phpunit-bridge": "^5.4.16" |
6752 | }, | 7106 | }, |
6753 | "suggest": { | 7107 | "suggest": { |
6754 | "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", | 7108 | "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", |
6755 | "ext-curl": "Required by Faker\\Provider\\Image to download images.", | 7109 | "ext-curl": "Required by Faker\\Provider\\Image to download images.", |
6756 | "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", | 7110 | "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", |
6757 | "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", | 7111 | "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", |
6758 | "ext-mbstring": "Required for multibyte Unicode string functionality." | 7112 | "ext-mbstring": "Required for multibyte Unicode string functionality." |
6759 | }, | 7113 | }, |
6760 | "type": "library", | 7114 | "type": "library", |
6761 | "extra": { | 7115 | "extra": { |
6762 | "branch-alias": { | 7116 | "branch-alias": { |
6763 | "dev-main": "v1.21-dev" | 7117 | "dev-main": "v1.21-dev" |
6764 | } | 7118 | } |
6765 | }, | 7119 | }, |
6766 | "autoload": { | 7120 | "autoload": { |
6767 | "psr-4": { | 7121 | "psr-4": { |
6768 | "Faker\\": "src/Faker/" | 7122 | "Faker\\": "src/Faker/" |
6769 | } | 7123 | } |
6770 | }, | 7124 | }, |
6771 | "notification-url": "https://packagist.org/downloads/", | 7125 | "notification-url": "https://packagist.org/downloads/", |
6772 | "license": [ | 7126 | "license": [ |
6773 | "MIT" | 7127 | "MIT" |
6774 | ], | 7128 | ], |
6775 | "authors": [ | 7129 | "authors": [ |
6776 | { | 7130 | { |
6777 | "name": "François Zaninotto" | 7131 | "name": "François Zaninotto" |
6778 | } | 7132 | } |
6779 | ], | 7133 | ], |
6780 | "description": "Faker is a PHP library that generates fake data for you.", | 7134 | "description": "Faker is a PHP library that generates fake data for you.", |
6781 | "keywords": [ | 7135 | "keywords": [ |
6782 | "data", | 7136 | "data", |
6783 | "faker", | 7137 | "faker", |
6784 | "fixtures" | 7138 | "fixtures" |
6785 | ], | 7139 | ], |
6786 | "support": { | 7140 | "support": { |
6787 | "issues": "https://github.com/FakerPHP/Faker/issues", | 7141 | "issues": "https://github.com/FakerPHP/Faker/issues", |
6788 | "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0" | 7142 | "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0" |
6789 | }, | 7143 | }, |
6790 | "time": "2022-12-13T13:54:32+00:00" | 7144 | "time": "2022-12-13T13:54:32+00:00" |
6791 | }, | 7145 | }, |
6792 | { | 7146 | { |
6793 | "name": "filp/whoops", | 7147 | "name": "filp/whoops", |
6794 | "version": "2.15.2", | 7148 | "version": "2.15.2", |
6795 | "source": { | 7149 | "source": { |
6796 | "type": "git", | 7150 | "type": "git", |
6797 | "url": "https://github.com/filp/whoops.git", | 7151 | "url": "https://github.com/filp/whoops.git", |
6798 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73" | 7152 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73" |
6799 | }, | 7153 | }, |
6800 | "dist": { | 7154 | "dist": { |
6801 | "type": "zip", | 7155 | "type": "zip", |
6802 | "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", | 7156 | "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", |
6803 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", | 7157 | "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73", |
6804 | "shasum": "" | 7158 | "shasum": "" |
6805 | }, | 7159 | }, |
6806 | "require": { | 7160 | "require": { |
6807 | "php": "^5.5.9 || ^7.0 || ^8.0", | 7161 | "php": "^5.5.9 || ^7.0 || ^8.0", |
6808 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" | 7162 | "psr/log": "^1.0.1 || ^2.0 || ^3.0" |
6809 | }, | 7163 | }, |
6810 | "require-dev": { | 7164 | "require-dev": { |
6811 | "mockery/mockery": "^0.9 || ^1.0", | 7165 | "mockery/mockery": "^0.9 || ^1.0", |
6812 | "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", | 7166 | "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", |
6813 | "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" | 7167 | "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" |
6814 | }, | 7168 | }, |
6815 | "suggest": { | 7169 | "suggest": { |
6816 | "symfony/var-dumper": "Pretty print complex values better with var-dumper available", | 7170 | "symfony/var-dumper": "Pretty print complex values better with var-dumper available", |
6817 | "whoops/soap": "Formats errors as SOAP responses" | 7171 | "whoops/soap": "Formats errors as SOAP responses" |
6818 | }, | 7172 | }, |
6819 | "type": "library", | 7173 | "type": "library", |
6820 | "extra": { | 7174 | "extra": { |
6821 | "branch-alias": { | 7175 | "branch-alias": { |
6822 | "dev-master": "2.7-dev" | 7176 | "dev-master": "2.7-dev" |
6823 | } | 7177 | } |
6824 | }, | 7178 | }, |
6825 | "autoload": { | 7179 | "autoload": { |
6826 | "psr-4": { | 7180 | "psr-4": { |
6827 | "Whoops\\": "src/Whoops/" | 7181 | "Whoops\\": "src/Whoops/" |
6828 | } | 7182 | } |
6829 | }, | 7183 | }, |
6830 | "notification-url": "https://packagist.org/downloads/", | 7184 | "notification-url": "https://packagist.org/downloads/", |
6831 | "license": [ | 7185 | "license": [ |
6832 | "MIT" | 7186 | "MIT" |
6833 | ], | 7187 | ], |
6834 | "authors": [ | 7188 | "authors": [ |
6835 | { | 7189 | { |
6836 | "name": "Filipe Dobreira", | 7190 | "name": "Filipe Dobreira", |
6837 | "homepage": "https://github.com/filp", | 7191 | "homepage": "https://github.com/filp", |
6838 | "role": "Developer" | 7192 | "role": "Developer" |
6839 | } | 7193 | } |
6840 | ], | 7194 | ], |
6841 | "description": "php error handling for cool kids", | 7195 | "description": "php error handling for cool kids", |
6842 | "homepage": "https://filp.github.io/whoops/", | 7196 | "homepage": "https://filp.github.io/whoops/", |
6843 | "keywords": [ | 7197 | "keywords": [ |
6844 | "error", | 7198 | "error", |
6845 | "exception", | 7199 | "exception", |
6846 | "handling", | 7200 | "handling", |
6847 | "library", | 7201 | "library", |
6848 | "throwable", | 7202 | "throwable", |
6849 | "whoops" | 7203 | "whoops" |
6850 | ], | 7204 | ], |
6851 | "support": { | 7205 | "support": { |
6852 | "issues": "https://github.com/filp/whoops/issues", | 7206 | "issues": "https://github.com/filp/whoops/issues", |
6853 | "source": "https://github.com/filp/whoops/tree/2.15.2" | 7207 | "source": "https://github.com/filp/whoops/tree/2.15.2" |
6854 | }, | 7208 | }, |
6855 | "funding": [ | 7209 | "funding": [ |
6856 | { | 7210 | { |
6857 | "url": "https://github.com/denis-sokolov", | 7211 | "url": "https://github.com/denis-sokolov", |
6858 | "type": "github" | 7212 | "type": "github" |
6859 | } | 7213 | } |
6860 | ], | 7214 | ], |
6861 | "time": "2023-04-12T12:00:00+00:00" | 7215 | "time": "2023-04-12T12:00:00+00:00" |
6862 | }, | 7216 | }, |
6863 | { | 7217 | { |
6864 | "name": "hamcrest/hamcrest-php", | 7218 | "name": "hamcrest/hamcrest-php", |
6865 | "version": "v2.0.1", | 7219 | "version": "v2.0.1", |
6866 | "source": { | 7220 | "source": { |
6867 | "type": "git", | 7221 | "type": "git", |
6868 | "url": "https://github.com/hamcrest/hamcrest-php.git", | 7222 | "url": "https://github.com/hamcrest/hamcrest-php.git", |
6869 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" | 7223 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" |
6870 | }, | 7224 | }, |
6871 | "dist": { | 7225 | "dist": { |
6872 | "type": "zip", | 7226 | "type": "zip", |
6873 | "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", | 7227 | "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", |
6874 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", | 7228 | "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", |
6875 | "shasum": "" | 7229 | "shasum": "" |
6876 | }, | 7230 | }, |
6877 | "require": { | 7231 | "require": { |
6878 | "php": "^5.3|^7.0|^8.0" | 7232 | "php": "^5.3|^7.0|^8.0" |
6879 | }, | 7233 | }, |
6880 | "replace": { | 7234 | "replace": { |
6881 | "cordoval/hamcrest-php": "*", | 7235 | "cordoval/hamcrest-php": "*", |
6882 | "davedevelopment/hamcrest-php": "*", | 7236 | "davedevelopment/hamcrest-php": "*", |
6883 | "kodova/hamcrest-php": "*" | 7237 | "kodova/hamcrest-php": "*" |
6884 | }, | 7238 | }, |
6885 | "require-dev": { | 7239 | "require-dev": { |
6886 | "phpunit/php-file-iterator": "^1.4 || ^2.0", | 7240 | "phpunit/php-file-iterator": "^1.4 || ^2.0", |
6887 | "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" | 7241 | "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" |
6888 | }, | 7242 | }, |
6889 | "type": "library", | 7243 | "type": "library", |
6890 | "extra": { | 7244 | "extra": { |
6891 | "branch-alias": { | 7245 | "branch-alias": { |
6892 | "dev-master": "2.1-dev" | 7246 | "dev-master": "2.1-dev" |
6893 | } | 7247 | } |
6894 | }, | 7248 | }, |
6895 | "autoload": { | 7249 | "autoload": { |
6896 | "classmap": [ | 7250 | "classmap": [ |
6897 | "hamcrest" | 7251 | "hamcrest" |
6898 | ] | 7252 | ] |
6899 | }, | 7253 | }, |
6900 | "notification-url": "https://packagist.org/downloads/", | 7254 | "notification-url": "https://packagist.org/downloads/", |
6901 | "license": [ | 7255 | "license": [ |
6902 | "BSD-3-Clause" | 7256 | "BSD-3-Clause" |
6903 | ], | 7257 | ], |
6904 | "description": "This is the PHP port of Hamcrest Matchers", | 7258 | "description": "This is the PHP port of Hamcrest Matchers", |
6905 | "keywords": [ | 7259 | "keywords": [ |
6906 | "test" | 7260 | "test" |
6907 | ], | 7261 | ], |
6908 | "support": { | 7262 | "support": { |
6909 | "issues": "https://github.com/hamcrest/hamcrest-php/issues", | 7263 | "issues": "https://github.com/hamcrest/hamcrest-php/issues", |
6910 | "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" | 7264 | "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" |
6911 | }, | 7265 | }, |
6912 | "time": "2020-07-09T08:09:16+00:00" | 7266 | "time": "2020-07-09T08:09:16+00:00" |
6913 | }, | 7267 | }, |
6914 | { | 7268 | { |
6915 | "name": "laravel/pint", | 7269 | "name": "laravel/pint", |
6916 | "version": "v1.5.0", | 7270 | "version": "v1.5.0", |
6917 | "source": { | 7271 | "source": { |
6918 | "type": "git", | 7272 | "type": "git", |
6919 | "url": "https://github.com/laravel/pint.git", | 7273 | "url": "https://github.com/laravel/pint.git", |
6920 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362" | 7274 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362" |
6921 | }, | 7275 | }, |
6922 | "dist": { | 7276 | "dist": { |
6923 | "type": "zip", | 7277 | "type": "zip", |
6924 | "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362", | 7278 | "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362", |
6925 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362", | 7279 | "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362", |
6926 | "shasum": "" | 7280 | "shasum": "" |
6927 | }, | 7281 | }, |
6928 | "require": { | 7282 | "require": { |
6929 | "ext-json": "*", | 7283 | "ext-json": "*", |
6930 | "ext-mbstring": "*", | 7284 | "ext-mbstring": "*", |
6931 | "ext-tokenizer": "*", | 7285 | "ext-tokenizer": "*", |
6932 | "ext-xml": "*", | 7286 | "ext-xml": "*", |
6933 | "php": "^8.0" | 7287 | "php": "^8.0" |
6934 | }, | 7288 | }, |
6935 | "require-dev": { | 7289 | "require-dev": { |
6936 | "friendsofphp/php-cs-fixer": "^3.14.4", | 7290 | "friendsofphp/php-cs-fixer": "^3.14.4", |
6937 | "illuminate/view": "^9.51.0", | 7291 | "illuminate/view": "^9.51.0", |
6938 | "laravel-zero/framework": "^9.2.0", | 7292 | "laravel-zero/framework": "^9.2.0", |
6939 | "mockery/mockery": "^1.5.1", | 7293 | "mockery/mockery": "^1.5.1", |
6940 | "nunomaduro/larastan": "^2.4.0", | 7294 | "nunomaduro/larastan": "^2.4.0", |
6941 | "nunomaduro/termwind": "^1.15.1", | 7295 | "nunomaduro/termwind": "^1.15.1", |
6942 | "pestphp/pest": "^1.22.4" | 7296 | "pestphp/pest": "^1.22.4" |
6943 | }, | 7297 | }, |
6944 | "bin": [ | 7298 | "bin": [ |
6945 | "builds/pint" | 7299 | "builds/pint" |
6946 | ], | 7300 | ], |
6947 | "type": "project", | 7301 | "type": "project", |
6948 | "autoload": { | 7302 | "autoload": { |
6949 | "psr-4": { | 7303 | "psr-4": { |
6950 | "App\\": "app/", | 7304 | "App\\": "app/", |
6951 | "Database\\Seeders\\": "database/seeders/", | 7305 | "Database\\Seeders\\": "database/seeders/", |
6952 | "Database\\Factories\\": "database/factories/" | 7306 | "Database\\Factories\\": "database/factories/" |
6953 | } | 7307 | } |
6954 | }, | 7308 | }, |
6955 | "notification-url": "https://packagist.org/downloads/", | 7309 | "notification-url": "https://packagist.org/downloads/", |
6956 | "license": [ | 7310 | "license": [ |
6957 | "MIT" | 7311 | "MIT" |
6958 | ], | 7312 | ], |
6959 | "authors": [ | 7313 | "authors": [ |
6960 | { | 7314 | { |
6961 | "name": "Nuno Maduro", | 7315 | "name": "Nuno Maduro", |
6962 | "email": "enunomaduro@gmail.com" | 7316 | "email": "enunomaduro@gmail.com" |
6963 | } | 7317 | } |
6964 | ], | 7318 | ], |
6965 | "description": "An opinionated code formatter for PHP.", | 7319 | "description": "An opinionated code formatter for PHP.", |
6966 | "homepage": "https://laravel.com", | 7320 | "homepage": "https://laravel.com", |
6967 | "keywords": [ | 7321 | "keywords": [ |
6968 | "format", | 7322 | "format", |
6969 | "formatter", | 7323 | "formatter", |
6970 | "lint", | 7324 | "lint", |
6971 | "linter", | 7325 | "linter", |
6972 | "php" | 7326 | "php" |
6973 | ], | 7327 | ], |
6974 | "support": { | 7328 | "support": { |
6975 | "issues": "https://github.com/laravel/pint/issues", | 7329 | "issues": "https://github.com/laravel/pint/issues", |
6976 | "source": "https://github.com/laravel/pint" | 7330 | "source": "https://github.com/laravel/pint" |
6977 | }, | 7331 | }, |
6978 | "time": "2023-02-14T16:31:02+00:00" | 7332 | "time": "2023-02-14T16:31:02+00:00" |
6979 | }, | 7333 | }, |
6980 | { | 7334 | { |
6981 | "name": "laravel/sail", | 7335 | "name": "laravel/sail", |
6982 | "version": "v1.22.0", | 7336 | "version": "v1.22.0", |
6983 | "source": { | 7337 | "source": { |
6984 | "type": "git", | 7338 | "type": "git", |
6985 | "url": "https://github.com/laravel/sail.git", | 7339 | "url": "https://github.com/laravel/sail.git", |
6986 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56" | 7340 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56" |
6987 | }, | 7341 | }, |
6988 | "dist": { | 7342 | "dist": { |
6989 | "type": "zip", | 7343 | "type": "zip", |
6990 | "url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56", | 7344 | "url": "https://api.github.com/repos/laravel/sail/zipball/923e1e112b6a8598664dbb0ee79dd3137f1c9d56", |
6991 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56", | 7345 | "reference": "923e1e112b6a8598664dbb0ee79dd3137f1c9d56", |
6992 | "shasum": "" | 7346 | "shasum": "" |
6993 | }, | 7347 | }, |
6994 | "require": { | 7348 | "require": { |
6995 | "illuminate/console": "^8.0|^9.0|^10.0", | 7349 | "illuminate/console": "^8.0|^9.0|^10.0", |
6996 | "illuminate/contracts": "^8.0|^9.0|^10.0", | 7350 | "illuminate/contracts": "^8.0|^9.0|^10.0", |
6997 | "illuminate/support": "^8.0|^9.0|^10.0", | 7351 | "illuminate/support": "^8.0|^9.0|^10.0", |
6998 | "php": "^8.0", | 7352 | "php": "^8.0", |
6999 | "symfony/yaml": "^6.0" | 7353 | "symfony/yaml": "^6.0" |
7000 | }, | 7354 | }, |
7001 | "require-dev": { | 7355 | "require-dev": { |
7002 | "orchestra/testbench": "^6.0|^7.0|^8.0", | 7356 | "orchestra/testbench": "^6.0|^7.0|^8.0", |
7003 | "phpstan/phpstan": "^1.10" | 7357 | "phpstan/phpstan": "^1.10" |
7004 | }, | 7358 | }, |
7005 | "bin": [ | 7359 | "bin": [ |
7006 | "bin/sail" | 7360 | "bin/sail" |
7007 | ], | 7361 | ], |
7008 | "type": "library", | 7362 | "type": "library", |
7009 | "extra": { | 7363 | "extra": { |
7010 | "branch-alias": { | 7364 | "branch-alias": { |
7011 | "dev-master": "1.x-dev" | 7365 | "dev-master": "1.x-dev" |
7012 | }, | 7366 | }, |
7013 | "laravel": { | 7367 | "laravel": { |
7014 | "providers": [ | 7368 | "providers": [ |
7015 | "Laravel\\Sail\\SailServiceProvider" | 7369 | "Laravel\\Sail\\SailServiceProvider" |
7016 | ] | 7370 | ] |
7017 | } | 7371 | } |
7018 | }, | 7372 | }, |
7019 | "autoload": { | 7373 | "autoload": { |
7020 | "psr-4": { | 7374 | "psr-4": { |
7021 | "Laravel\\Sail\\": "src/" | 7375 | "Laravel\\Sail\\": "src/" |
7022 | } | 7376 | } |
7023 | }, | 7377 | }, |
7024 | "notification-url": "https://packagist.org/downloads/", | 7378 | "notification-url": "https://packagist.org/downloads/", |
7025 | "license": [ | 7379 | "license": [ |
7026 | "MIT" | 7380 | "MIT" |
7027 | ], | 7381 | ], |
7028 | "authors": [ | 7382 | "authors": [ |
7029 | { | 7383 | { |
7030 | "name": "Taylor Otwell", | 7384 | "name": "Taylor Otwell", |
7031 | "email": "taylor@laravel.com" | 7385 | "email": "taylor@laravel.com" |
7032 | } | 7386 | } |
7033 | ], | 7387 | ], |
7034 | "description": "Docker files for running a basic Laravel application.", | 7388 | "description": "Docker files for running a basic Laravel application.", |
7035 | "keywords": [ | 7389 | "keywords": [ |
7036 | "docker", | 7390 | "docker", |
7037 | "laravel" | 7391 | "laravel" |
7038 | ], | 7392 | ], |
7039 | "support": { | 7393 | "support": { |
7040 | "issues": "https://github.com/laravel/sail/issues", | 7394 | "issues": "https://github.com/laravel/sail/issues", |
7041 | "source": "https://github.com/laravel/sail" | 7395 | "source": "https://github.com/laravel/sail" |
7042 | }, | 7396 | }, |
7043 | "time": "2023-05-04T14:52:56+00:00" | 7397 | "time": "2023-05-04T14:52:56+00:00" |
7044 | }, | 7398 | }, |
7045 | { | 7399 | { |
7046 | "name": "maximebf/debugbar", | 7400 | "name": "maximebf/debugbar", |
7047 | "version": "v1.19.0", | 7401 | "version": "v1.19.0", |
7048 | "source": { | 7402 | "source": { |
7049 | "type": "git", | 7403 | "type": "git", |
7050 | "url": "https://github.com/maximebf/php-debugbar.git", | 7404 | "url": "https://github.com/maximebf/php-debugbar.git", |
7051 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e" | 7405 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e" |
7052 | }, | 7406 | }, |
7053 | "dist": { | 7407 | "dist": { |
7054 | "type": "zip", | 7408 | "type": "zip", |
7055 | "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e", | 7409 | "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30f65f18f7ac086255a77a079f8e0dcdd35e828e", |
7056 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e", | 7410 | "reference": "30f65f18f7ac086255a77a079f8e0dcdd35e828e", |
7057 | "shasum": "" | 7411 | "shasum": "" |
7058 | }, | 7412 | }, |
7059 | "require": { | 7413 | "require": { |
7060 | "php": "^7.1|^8", | 7414 | "php": "^7.1|^8", |
7061 | "psr/log": "^1|^2|^3", | 7415 | "psr/log": "^1|^2|^3", |
7062 | "symfony/var-dumper": "^4|^5|^6" | 7416 | "symfony/var-dumper": "^4|^5|^6" |
7063 | }, | 7417 | }, |
7064 | "require-dev": { | 7418 | "require-dev": { |
7065 | "phpunit/phpunit": ">=7.5.20 <10.0", | 7419 | "phpunit/phpunit": ">=7.5.20 <10.0", |
7066 | "twig/twig": "^1.38|^2.7|^3.0" | 7420 | "twig/twig": "^1.38|^2.7|^3.0" |
7067 | }, | 7421 | }, |
7068 | "suggest": { | 7422 | "suggest": { |
7069 | "kriswallsmith/assetic": "The best way to manage assets", | 7423 | "kriswallsmith/assetic": "The best way to manage assets", |
7070 | "monolog/monolog": "Log using Monolog", | 7424 | "monolog/monolog": "Log using Monolog", |
7071 | "predis/predis": "Redis storage" | 7425 | "predis/predis": "Redis storage" |
7072 | }, | 7426 | }, |
7073 | "type": "library", | 7427 | "type": "library", |
7074 | "extra": { | 7428 | "extra": { |
7075 | "branch-alias": { | 7429 | "branch-alias": { |
7076 | "dev-master": "1.18-dev" | 7430 | "dev-master": "1.18-dev" |
7077 | } | 7431 | } |
7078 | }, | 7432 | }, |
7079 | "autoload": { | 7433 | "autoload": { |
7080 | "psr-4": { | 7434 | "psr-4": { |
7081 | "DebugBar\\": "src/DebugBar/" | 7435 | "DebugBar\\": "src/DebugBar/" |
7082 | } | 7436 | } |
7083 | }, | 7437 | }, |
7084 | "notification-url": "https://packagist.org/downloads/", | 7438 | "notification-url": "https://packagist.org/downloads/", |
7085 | "license": [ | 7439 | "license": [ |
7086 | "MIT" | 7440 | "MIT" |
7087 | ], | 7441 | ], |
7088 | "authors": [ | 7442 | "authors": [ |
7089 | { | 7443 | { |
7090 | "name": "Maxime Bouroumeau-Fuseau", | 7444 | "name": "Maxime Bouroumeau-Fuseau", |
7091 | "email": "maxime.bouroumeau@gmail.com", | 7445 | "email": "maxime.bouroumeau@gmail.com", |
7092 | "homepage": "http://maximebf.com" | 7446 | "homepage": "http://maximebf.com" |
7093 | }, | 7447 | }, |
7094 | { | 7448 | { |
7095 | "name": "Barry vd. Heuvel", | 7449 | "name": "Barry vd. Heuvel", |
7096 | "email": "barryvdh@gmail.com" | 7450 | "email": "barryvdh@gmail.com" |
7097 | } | 7451 | } |
7098 | ], | 7452 | ], |
7099 | "description": "Debug bar in the browser for php application", | 7453 | "description": "Debug bar in the browser for php application", |
7100 | "homepage": "https://github.com/maximebf/php-debugbar", | 7454 | "homepage": "https://github.com/maximebf/php-debugbar", |
7101 | "keywords": [ | 7455 | "keywords": [ |
7102 | "debug", | 7456 | "debug", |
7103 | "debugbar" | 7457 | "debugbar" |
7104 | ], | 7458 | ], |
7105 | "support": { | 7459 | "support": { |
7106 | "issues": "https://github.com/maximebf/php-debugbar/issues", | 7460 | "issues": "https://github.com/maximebf/php-debugbar/issues", |
7107 | "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0" | 7461 | "source": "https://github.com/maximebf/php-debugbar/tree/v1.19.0" |
7108 | }, | 7462 | }, |
7109 | "time": "2023-09-19T19:53:10+00:00" | 7463 | "time": "2023-09-19T19:53:10+00:00" |
7110 | }, | 7464 | }, |
7111 | { | 7465 | { |
7112 | "name": "mockery/mockery", | 7466 | "name": "mockery/mockery", |
7113 | "version": "1.5.1", | 7467 | "version": "1.5.1", |
7114 | "source": { | 7468 | "source": { |
7115 | "type": "git", | 7469 | "type": "git", |
7116 | "url": "https://github.com/mockery/mockery.git", | 7470 | "url": "https://github.com/mockery/mockery.git", |
7117 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e" | 7471 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e" |
7118 | }, | 7472 | }, |
7119 | "dist": { | 7473 | "dist": { |
7120 | "type": "zip", | 7474 | "type": "zip", |
7121 | "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e", | 7475 | "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e", |
7122 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e", | 7476 | "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e", |
7123 | "shasum": "" | 7477 | "shasum": "" |
7124 | }, | 7478 | }, |
7125 | "require": { | 7479 | "require": { |
7126 | "hamcrest/hamcrest-php": "^2.0.1", | 7480 | "hamcrest/hamcrest-php": "^2.0.1", |
7127 | "lib-pcre": ">=7.0", | 7481 | "lib-pcre": ">=7.0", |
7128 | "php": "^7.3 || ^8.0" | 7482 | "php": "^7.3 || ^8.0" |
7129 | }, | 7483 | }, |
7130 | "conflict": { | 7484 | "conflict": { |
7131 | "phpunit/phpunit": "<8.0" | 7485 | "phpunit/phpunit": "<8.0" |
7132 | }, | 7486 | }, |
7133 | "require-dev": { | 7487 | "require-dev": { |
7134 | "phpunit/phpunit": "^8.5 || ^9.3" | 7488 | "phpunit/phpunit": "^8.5 || ^9.3" |
7135 | }, | 7489 | }, |
7136 | "type": "library", | 7490 | "type": "library", |
7137 | "extra": { | 7491 | "extra": { |
7138 | "branch-alias": { | 7492 | "branch-alias": { |
7139 | "dev-master": "1.4.x-dev" | 7493 | "dev-master": "1.4.x-dev" |
7140 | } | 7494 | } |
7141 | }, | 7495 | }, |
7142 | "autoload": { | 7496 | "autoload": { |
7143 | "psr-0": { | 7497 | "psr-0": { |
7144 | "Mockery": "library/" | 7498 | "Mockery": "library/" |
7145 | } | 7499 | } |
7146 | }, | 7500 | }, |
7147 | "notification-url": "https://packagist.org/downloads/", | 7501 | "notification-url": "https://packagist.org/downloads/", |
7148 | "license": [ | 7502 | "license": [ |
7149 | "BSD-3-Clause" | 7503 | "BSD-3-Clause" |
7150 | ], | 7504 | ], |
7151 | "authors": [ | 7505 | "authors": [ |
7152 | { | 7506 | { |
7153 | "name": "Pádraic Brady", | 7507 | "name": "Pádraic Brady", |
7154 | "email": "padraic.brady@gmail.com", | 7508 | "email": "padraic.brady@gmail.com", |
7155 | "homepage": "http://blog.astrumfutura.com" | 7509 | "homepage": "http://blog.astrumfutura.com" |
7156 | }, | 7510 | }, |
7157 | { | 7511 | { |
7158 | "name": "Dave Marshall", | 7512 | "name": "Dave Marshall", |
7159 | "email": "dave.marshall@atstsolutions.co.uk", | 7513 | "email": "dave.marshall@atstsolutions.co.uk", |
7160 | "homepage": "http://davedevelopment.co.uk" | 7514 | "homepage": "http://davedevelopment.co.uk" |
7161 | } | 7515 | } |
7162 | ], | 7516 | ], |
7163 | "description": "Mockery is a simple yet flexible PHP mock object framework", | 7517 | "description": "Mockery is a simple yet flexible PHP mock object framework", |
7164 | "homepage": "https://github.com/mockery/mockery", | 7518 | "homepage": "https://github.com/mockery/mockery", |
7165 | "keywords": [ | 7519 | "keywords": [ |
7166 | "BDD", | 7520 | "BDD", |
7167 | "TDD", | 7521 | "TDD", |
7168 | "library", | 7522 | "library", |
7169 | "mock", | 7523 | "mock", |
7170 | "mock objects", | 7524 | "mock objects", |
7171 | "mockery", | 7525 | "mockery", |
7172 | "stub", | 7526 | "stub", |
7173 | "test", | 7527 | "test", |
7174 | "test double", | 7528 | "test double", |
7175 | "testing" | 7529 | "testing" |
7176 | ], | 7530 | ], |
7177 | "support": { | 7531 | "support": { |
7178 | "issues": "https://github.com/mockery/mockery/issues", | 7532 | "issues": "https://github.com/mockery/mockery/issues", |
7179 | "source": "https://github.com/mockery/mockery/tree/1.5.1" | 7533 | "source": "https://github.com/mockery/mockery/tree/1.5.1" |
7180 | }, | 7534 | }, |
7181 | "time": "2022-09-07T15:32:08+00:00" | 7535 | "time": "2022-09-07T15:32:08+00:00" |
7182 | }, | 7536 | }, |
7183 | { | 7537 | { |
7184 | "name": "myclabs/deep-copy", | 7538 | "name": "myclabs/deep-copy", |
7185 | "version": "1.11.1", | 7539 | "version": "1.11.1", |
7186 | "source": { | 7540 | "source": { |
7187 | "type": "git", | 7541 | "type": "git", |
7188 | "url": "https://github.com/myclabs/DeepCopy.git", | 7542 | "url": "https://github.com/myclabs/DeepCopy.git", |
7189 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" | 7543 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" |
7190 | }, | 7544 | }, |
7191 | "dist": { | 7545 | "dist": { |
7192 | "type": "zip", | 7546 | "type": "zip", |
7193 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", | 7547 | "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", |
7194 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", | 7548 | "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", |
7195 | "shasum": "" | 7549 | "shasum": "" |
7196 | }, | 7550 | }, |
7197 | "require": { | 7551 | "require": { |
7198 | "php": "^7.1 || ^8.0" | 7552 | "php": "^7.1 || ^8.0" |
7199 | }, | 7553 | }, |
7200 | "conflict": { | 7554 | "conflict": { |
7201 | "doctrine/collections": "<1.6.8", | 7555 | "doctrine/collections": "<1.6.8", |
7202 | "doctrine/common": "<2.13.3 || >=3,<3.2.2" | 7556 | "doctrine/common": "<2.13.3 || >=3,<3.2.2" |
7203 | }, | 7557 | }, |
7204 | "require-dev": { | 7558 | "require-dev": { |
7205 | "doctrine/collections": "^1.6.8", | 7559 | "doctrine/collections": "^1.6.8", |
7206 | "doctrine/common": "^2.13.3 || ^3.2.2", | 7560 | "doctrine/common": "^2.13.3 || ^3.2.2", |
7207 | "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" | 7561 | "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" |
7208 | }, | 7562 | }, |
7209 | "type": "library", | 7563 | "type": "library", |
7210 | "autoload": { | 7564 | "autoload": { |
7211 | "files": [ | 7565 | "files": [ |
7212 | "src/DeepCopy/deep_copy.php" | 7566 | "src/DeepCopy/deep_copy.php" |
7213 | ], | 7567 | ], |
7214 | "psr-4": { | 7568 | "psr-4": { |
7215 | "DeepCopy\\": "src/DeepCopy/" | 7569 | "DeepCopy\\": "src/DeepCopy/" |
7216 | } | 7570 | } |
7217 | }, | 7571 | }, |
7218 | "notification-url": "https://packagist.org/downloads/", | 7572 | "notification-url": "https://packagist.org/downloads/", |
7219 | "license": [ | 7573 | "license": [ |
7220 | "MIT" | 7574 | "MIT" |
7221 | ], | 7575 | ], |
7222 | "description": "Create deep copies (clones) of your objects", | 7576 | "description": "Create deep copies (clones) of your objects", |
7223 | "keywords": [ | 7577 | "keywords": [ |
7224 | "clone", | 7578 | "clone", |
7225 | "copy", | 7579 | "copy", |
7226 | "duplicate", | 7580 | "duplicate", |
7227 | "object", | 7581 | "object", |
7228 | "object graph" | 7582 | "object graph" |
7229 | ], | 7583 | ], |
7230 | "support": { | 7584 | "support": { |
7231 | "issues": "https://github.com/myclabs/DeepCopy/issues", | 7585 | "issues": "https://github.com/myclabs/DeepCopy/issues", |
7232 | "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" | 7586 | "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" |
7233 | }, | 7587 | }, |
7234 | "funding": [ | 7588 | "funding": [ |
7235 | { | 7589 | { |
7236 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", | 7590 | "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", |
7237 | "type": "tidelift" | 7591 | "type": "tidelift" |
7238 | } | 7592 | } |
7239 | ], | 7593 | ], |
7240 | "time": "2023-03-08T13:26:56+00:00" | 7594 | "time": "2023-03-08T13:26:56+00:00" |
7241 | }, | 7595 | }, |
7242 | { | 7596 | { |
7243 | "name": "nunomaduro/collision", | 7597 | "name": "nunomaduro/collision", |
7244 | "version": "v6.4.0", | 7598 | "version": "v6.4.0", |
7245 | "source": { | 7599 | "source": { |
7246 | "type": "git", | 7600 | "type": "git", |
7247 | "url": "https://github.com/nunomaduro/collision.git", | 7601 | "url": "https://github.com/nunomaduro/collision.git", |
7248 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015" | 7602 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015" |
7249 | }, | 7603 | }, |
7250 | "dist": { | 7604 | "dist": { |
7251 | "type": "zip", | 7605 | "type": "zip", |
7252 | "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", | 7606 | "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015", |
7253 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015", | 7607 | "reference": "f05978827b9343cba381ca05b8c7deee346b6015", |
7254 | "shasum": "" | 7608 | "shasum": "" |
7255 | }, | 7609 | }, |
7256 | "require": { | 7610 | "require": { |
7257 | "filp/whoops": "^2.14.5", | 7611 | "filp/whoops": "^2.14.5", |
7258 | "php": "^8.0.0", | 7612 | "php": "^8.0.0", |
7259 | "symfony/console": "^6.0.2" | 7613 | "symfony/console": "^6.0.2" |
7260 | }, | 7614 | }, |
7261 | "require-dev": { | 7615 | "require-dev": { |
7262 | "brianium/paratest": "^6.4.1", | 7616 | "brianium/paratest": "^6.4.1", |
7263 | "laravel/framework": "^9.26.1", | 7617 | "laravel/framework": "^9.26.1", |
7264 | "laravel/pint": "^1.1.1", | 7618 | "laravel/pint": "^1.1.1", |
7265 | "nunomaduro/larastan": "^1.0.3", | 7619 | "nunomaduro/larastan": "^1.0.3", |
7266 | "nunomaduro/mock-final-classes": "^1.1.0", | 7620 | "nunomaduro/mock-final-classes": "^1.1.0", |
7267 | "orchestra/testbench": "^7.7", | 7621 | "orchestra/testbench": "^7.7", |
7268 | "phpunit/phpunit": "^9.5.23", | 7622 | "phpunit/phpunit": "^9.5.23", |
7269 | "spatie/ignition": "^1.4.1" | 7623 | "spatie/ignition": "^1.4.1" |
7270 | }, | 7624 | }, |
7271 | "type": "library", | 7625 | "type": "library", |
7272 | "extra": { | 7626 | "extra": { |
7273 | "branch-alias": { | 7627 | "branch-alias": { |
7274 | "dev-develop": "6.x-dev" | 7628 | "dev-develop": "6.x-dev" |
7275 | }, | 7629 | }, |
7276 | "laravel": { | 7630 | "laravel": { |
7277 | "providers": [ | 7631 | "providers": [ |
7278 | "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" | 7632 | "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider" |
7279 | ] | 7633 | ] |
7280 | } | 7634 | } |
7281 | }, | 7635 | }, |
7282 | "autoload": { | 7636 | "autoload": { |
7283 | "psr-4": { | 7637 | "psr-4": { |
7284 | "NunoMaduro\\Collision\\": "src/" | 7638 | "NunoMaduro\\Collision\\": "src/" |
7285 | } | 7639 | } |
7286 | }, | 7640 | }, |
7287 | "notification-url": "https://packagist.org/downloads/", | 7641 | "notification-url": "https://packagist.org/downloads/", |
7288 | "license": [ | 7642 | "license": [ |
7289 | "MIT" | 7643 | "MIT" |
7290 | ], | 7644 | ], |
7291 | "authors": [ | 7645 | "authors": [ |
7292 | { | 7646 | { |
7293 | "name": "Nuno Maduro", | 7647 | "name": "Nuno Maduro", |
7294 | "email": "enunomaduro@gmail.com" | 7648 | "email": "enunomaduro@gmail.com" |
7295 | } | 7649 | } |
7296 | ], | 7650 | ], |
7297 | "description": "Cli error handling for console/command-line PHP applications.", | 7651 | "description": "Cli error handling for console/command-line PHP applications.", |
7298 | "keywords": [ | 7652 | "keywords": [ |
7299 | "artisan", | 7653 | "artisan", |
7300 | "cli", | 7654 | "cli", |
7301 | "command-line", | 7655 | "command-line", |
7302 | "console", | 7656 | "console", |
7303 | "error", | 7657 | "error", |
7304 | "handling", | 7658 | "handling", |
7305 | "laravel", | 7659 | "laravel", |
7306 | "laravel-zero", | 7660 | "laravel-zero", |
7307 | "php", | 7661 | "php", |
7308 | "symfony" | 7662 | "symfony" |
7309 | ], | 7663 | ], |
7310 | "support": { | 7664 | "support": { |
7311 | "issues": "https://github.com/nunomaduro/collision/issues", | 7665 | "issues": "https://github.com/nunomaduro/collision/issues", |
7312 | "source": "https://github.com/nunomaduro/collision" | 7666 | "source": "https://github.com/nunomaduro/collision" |
7313 | }, | 7667 | }, |
7314 | "funding": [ | 7668 | "funding": [ |
7315 | { | 7669 | { |
7316 | "url": "https://www.paypal.com/paypalme/enunomaduro", | 7670 | "url": "https://www.paypal.com/paypalme/enunomaduro", |
7317 | "type": "custom" | 7671 | "type": "custom" |
7318 | }, | 7672 | }, |
7319 | { | 7673 | { |
7320 | "url": "https://github.com/nunomaduro", | 7674 | "url": "https://github.com/nunomaduro", |
7321 | "type": "github" | 7675 | "type": "github" |
7322 | }, | 7676 | }, |
7323 | { | 7677 | { |
7324 | "url": "https://www.patreon.com/nunomaduro", | 7678 | "url": "https://www.patreon.com/nunomaduro", |
7325 | "type": "patreon" | 7679 | "type": "patreon" |
7326 | } | 7680 | } |
7327 | ], | 7681 | ], |
7328 | "time": "2023-01-03T12:54:54+00:00" | 7682 | "time": "2023-01-03T12:54:54+00:00" |
7329 | }, | 7683 | }, |
7330 | { | 7684 | { |
7331 | "name": "phar-io/manifest", | 7685 | "name": "phar-io/manifest", |
7332 | "version": "2.0.3", | 7686 | "version": "2.0.3", |
7333 | "source": { | 7687 | "source": { |
7334 | "type": "git", | 7688 | "type": "git", |
7335 | "url": "https://github.com/phar-io/manifest.git", | 7689 | "url": "https://github.com/phar-io/manifest.git", |
7336 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53" | 7690 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53" |
7337 | }, | 7691 | }, |
7338 | "dist": { | 7692 | "dist": { |
7339 | "type": "zip", | 7693 | "type": "zip", |
7340 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", | 7694 | "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", |
7341 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53", | 7695 | "reference": "97803eca37d319dfa7826cc2437fc020857acb53", |
7342 | "shasum": "" | 7696 | "shasum": "" |
7343 | }, | 7697 | }, |
7344 | "require": { | 7698 | "require": { |
7345 | "ext-dom": "*", | 7699 | "ext-dom": "*", |
7346 | "ext-phar": "*", | 7700 | "ext-phar": "*", |
7347 | "ext-xmlwriter": "*", | 7701 | "ext-xmlwriter": "*", |
7348 | "phar-io/version": "^3.0.1", | 7702 | "phar-io/version": "^3.0.1", |
7349 | "php": "^7.2 || ^8.0" | 7703 | "php": "^7.2 || ^8.0" |
7350 | }, | 7704 | }, |
7351 | "type": "library", | 7705 | "type": "library", |
7352 | "extra": { | 7706 | "extra": { |
7353 | "branch-alias": { | 7707 | "branch-alias": { |
7354 | "dev-master": "2.0.x-dev" | 7708 | "dev-master": "2.0.x-dev" |
7355 | } | 7709 | } |
7356 | }, | 7710 | }, |
7357 | "autoload": { | 7711 | "autoload": { |
7358 | "classmap": [ | 7712 | "classmap": [ |
7359 | "src/" | 7713 | "src/" |
7360 | ] | 7714 | ] |
7361 | }, | 7715 | }, |
7362 | "notification-url": "https://packagist.org/downloads/", | 7716 | "notification-url": "https://packagist.org/downloads/", |
7363 | "license": [ | 7717 | "license": [ |
7364 | "BSD-3-Clause" | 7718 | "BSD-3-Clause" |
7365 | ], | 7719 | ], |
7366 | "authors": [ | 7720 | "authors": [ |
7367 | { | 7721 | { |
7368 | "name": "Arne Blankerts", | 7722 | "name": "Arne Blankerts", |
7369 | "email": "arne@blankerts.de", | 7723 | "email": "arne@blankerts.de", |
7370 | "role": "Developer" | 7724 | "role": "Developer" |
7371 | }, | 7725 | }, |
7372 | { | 7726 | { |
7373 | "name": "Sebastian Heuer", | 7727 | "name": "Sebastian Heuer", |
7374 | "email": "sebastian@phpeople.de", | 7728 | "email": "sebastian@phpeople.de", |
7375 | "role": "Developer" | 7729 | "role": "Developer" |
7376 | }, | 7730 | }, |
7377 | { | 7731 | { |
7378 | "name": "Sebastian Bergmann", | 7732 | "name": "Sebastian Bergmann", |
7379 | "email": "sebastian@phpunit.de", | 7733 | "email": "sebastian@phpunit.de", |
7380 | "role": "Developer" | 7734 | "role": "Developer" |
7381 | } | 7735 | } |
7382 | ], | 7736 | ], |
7383 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", | 7737 | "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", |
7384 | "support": { | 7738 | "support": { |
7385 | "issues": "https://github.com/phar-io/manifest/issues", | 7739 | "issues": "https://github.com/phar-io/manifest/issues", |
7386 | "source": "https://github.com/phar-io/manifest/tree/2.0.3" | 7740 | "source": "https://github.com/phar-io/manifest/tree/2.0.3" |
7387 | }, | 7741 | }, |
7388 | "time": "2021-07-20T11:28:43+00:00" | 7742 | "time": "2021-07-20T11:28:43+00:00" |
7389 | }, | 7743 | }, |
7390 | { | 7744 | { |
7391 | "name": "phar-io/version", | 7745 | "name": "phar-io/version", |
7392 | "version": "3.2.1", | 7746 | "version": "3.2.1", |
7393 | "source": { | 7747 | "source": { |
7394 | "type": "git", | 7748 | "type": "git", |
7395 | "url": "https://github.com/phar-io/version.git", | 7749 | "url": "https://github.com/phar-io/version.git", |
7396 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" | 7750 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" |
7397 | }, | 7751 | }, |
7398 | "dist": { | 7752 | "dist": { |
7399 | "type": "zip", | 7753 | "type": "zip", |
7400 | "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", | 7754 | "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", |
7401 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", | 7755 | "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", |
7402 | "shasum": "" | 7756 | "shasum": "" |
7403 | }, | 7757 | }, |
7404 | "require": { | 7758 | "require": { |
7405 | "php": "^7.2 || ^8.0" | 7759 | "php": "^7.2 || ^8.0" |
7406 | }, | 7760 | }, |
7407 | "type": "library", | 7761 | "type": "library", |
7408 | "autoload": { | 7762 | "autoload": { |
7409 | "classmap": [ | 7763 | "classmap": [ |
7410 | "src/" | 7764 | "src/" |
7411 | ] | 7765 | ] |
7412 | }, | 7766 | }, |
7413 | "notification-url": "https://packagist.org/downloads/", | 7767 | "notification-url": "https://packagist.org/downloads/", |
7414 | "license": [ | 7768 | "license": [ |
7415 | "BSD-3-Clause" | 7769 | "BSD-3-Clause" |
7416 | ], | 7770 | ], |
7417 | "authors": [ | 7771 | "authors": [ |
7418 | { | 7772 | { |
7419 | "name": "Arne Blankerts", | 7773 | "name": "Arne Blankerts", |
7420 | "email": "arne@blankerts.de", | 7774 | "email": "arne@blankerts.de", |
7421 | "role": "Developer" | 7775 | "role": "Developer" |
7422 | }, | 7776 | }, |
7423 | { | 7777 | { |
7424 | "name": "Sebastian Heuer", | 7778 | "name": "Sebastian Heuer", |
7425 | "email": "sebastian@phpeople.de", | 7779 | "email": "sebastian@phpeople.de", |
7426 | "role": "Developer" | 7780 | "role": "Developer" |
7427 | }, | 7781 | }, |
7428 | { | 7782 | { |
7429 | "name": "Sebastian Bergmann", | 7783 | "name": "Sebastian Bergmann", |
7430 | "email": "sebastian@phpunit.de", | 7784 | "email": "sebastian@phpunit.de", |
7431 | "role": "Developer" | 7785 | "role": "Developer" |
7432 | } | 7786 | } |
7433 | ], | 7787 | ], |
7434 | "description": "Library for handling version information and constraints", | 7788 | "description": "Library for handling version information and constraints", |
7435 | "support": { | 7789 | "support": { |
7436 | "issues": "https://github.com/phar-io/version/issues", | 7790 | "issues": "https://github.com/phar-io/version/issues", |
7437 | "source": "https://github.com/phar-io/version/tree/3.2.1" | 7791 | "source": "https://github.com/phar-io/version/tree/3.2.1" |
7438 | }, | 7792 | }, |
7439 | "time": "2022-02-21T01:04:05+00:00" | 7793 | "time": "2022-02-21T01:04:05+00:00" |
7440 | }, | 7794 | }, |
7441 | { | 7795 | { |
7442 | "name": "phpunit/php-code-coverage", | 7796 | "name": "phpunit/php-code-coverage", |
7443 | "version": "9.2.26", | 7797 | "version": "9.2.26", |
7444 | "source": { | 7798 | "source": { |
7445 | "type": "git", | 7799 | "type": "git", |
7446 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", | 7800 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", |
7447 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" | 7801 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" |
7448 | }, | 7802 | }, |
7449 | "dist": { | 7803 | "dist": { |
7450 | "type": "zip", | 7804 | "type": "zip", |
7451 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", | 7805 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", |
7452 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", | 7806 | "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", |
7453 | "shasum": "" | 7807 | "shasum": "" |
7454 | }, | 7808 | }, |
7455 | "require": { | 7809 | "require": { |
7456 | "ext-dom": "*", | 7810 | "ext-dom": "*", |
7457 | "ext-libxml": "*", | 7811 | "ext-libxml": "*", |
7458 | "ext-xmlwriter": "*", | 7812 | "ext-xmlwriter": "*", |
7459 | "nikic/php-parser": "^4.15", | 7813 | "nikic/php-parser": "^4.15", |
7460 | "php": ">=7.3", | 7814 | "php": ">=7.3", |
7461 | "phpunit/php-file-iterator": "^3.0.3", | 7815 | "phpunit/php-file-iterator": "^3.0.3", |
7462 | "phpunit/php-text-template": "^2.0.2", | 7816 | "phpunit/php-text-template": "^2.0.2", |
7463 | "sebastian/code-unit-reverse-lookup": "^2.0.2", | 7817 | "sebastian/code-unit-reverse-lookup": "^2.0.2", |
7464 | "sebastian/complexity": "^2.0", | 7818 | "sebastian/complexity": "^2.0", |
7465 | "sebastian/environment": "^5.1.2", | 7819 | "sebastian/environment": "^5.1.2", |
7466 | "sebastian/lines-of-code": "^1.0.3", | 7820 | "sebastian/lines-of-code": "^1.0.3", |
7467 | "sebastian/version": "^3.0.1", | 7821 | "sebastian/version": "^3.0.1", |
7468 | "theseer/tokenizer": "^1.2.0" | 7822 | "theseer/tokenizer": "^1.2.0" |
7469 | }, | 7823 | }, |
7470 | "require-dev": { | 7824 | "require-dev": { |
7471 | "phpunit/phpunit": "^9.3" | 7825 | "phpunit/phpunit": "^9.3" |
7472 | }, | 7826 | }, |
7473 | "suggest": { | 7827 | "suggest": { |
7474 | "ext-pcov": "PHP extension that provides line coverage", | 7828 | "ext-pcov": "PHP extension that provides line coverage", |
7475 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" | 7829 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" |
7476 | }, | 7830 | }, |
7477 | "type": "library", | 7831 | "type": "library", |
7478 | "extra": { | 7832 | "extra": { |
7479 | "branch-alias": { | 7833 | "branch-alias": { |
7480 | "dev-master": "9.2-dev" | 7834 | "dev-master": "9.2-dev" |
7481 | } | 7835 | } |
7482 | }, | 7836 | }, |
7483 | "autoload": { | 7837 | "autoload": { |
7484 | "classmap": [ | 7838 | "classmap": [ |
7485 | "src/" | 7839 | "src/" |
7486 | ] | 7840 | ] |
7487 | }, | 7841 | }, |
7488 | "notification-url": "https://packagist.org/downloads/", | 7842 | "notification-url": "https://packagist.org/downloads/", |
7489 | "license": [ | 7843 | "license": [ |
7490 | "BSD-3-Clause" | 7844 | "BSD-3-Clause" |
7491 | ], | 7845 | ], |
7492 | "authors": [ | 7846 | "authors": [ |
7493 | { | 7847 | { |
7494 | "name": "Sebastian Bergmann", | 7848 | "name": "Sebastian Bergmann", |
7495 | "email": "sebastian@phpunit.de", | 7849 | "email": "sebastian@phpunit.de", |
7496 | "role": "lead" | 7850 | "role": "lead" |
7497 | } | 7851 | } |
7498 | ], | 7852 | ], |
7499 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", | 7853 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", |
7500 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", | 7854 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", |
7501 | "keywords": [ | 7855 | "keywords": [ |
7502 | "coverage", | 7856 | "coverage", |
7503 | "testing", | 7857 | "testing", |
7504 | "xunit" | 7858 | "xunit" |
7505 | ], | 7859 | ], |
7506 | "support": { | 7860 | "support": { |
7507 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", | 7861 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", |
7508 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" | 7862 | "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" |
7509 | }, | 7863 | }, |
7510 | "funding": [ | 7864 | "funding": [ |
7511 | { | 7865 | { |
7512 | "url": "https://github.com/sebastianbergmann", | 7866 | "url": "https://github.com/sebastianbergmann", |
7513 | "type": "github" | 7867 | "type": "github" |
7514 | } | 7868 | } |
7515 | ], | 7869 | ], |
7516 | "time": "2023-03-06T12:58:08+00:00" | 7870 | "time": "2023-03-06T12:58:08+00:00" |
7517 | }, | 7871 | }, |
7518 | { | 7872 | { |
7519 | "name": "phpunit/php-file-iterator", | 7873 | "name": "phpunit/php-file-iterator", |
7520 | "version": "3.0.6", | 7874 | "version": "3.0.6", |
7521 | "source": { | 7875 | "source": { |
7522 | "type": "git", | 7876 | "type": "git", |
7523 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", | 7877 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", |
7524 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" | 7878 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" |
7525 | }, | 7879 | }, |
7526 | "dist": { | 7880 | "dist": { |
7527 | "type": "zip", | 7881 | "type": "zip", |
7528 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", | 7882 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", |
7529 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", | 7883 | "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", |
7530 | "shasum": "" | 7884 | "shasum": "" |
7531 | }, | 7885 | }, |
7532 | "require": { | 7886 | "require": { |
7533 | "php": ">=7.3" | 7887 | "php": ">=7.3" |
7534 | }, | 7888 | }, |
7535 | "require-dev": { | 7889 | "require-dev": { |
7536 | "phpunit/phpunit": "^9.3" | 7890 | "phpunit/phpunit": "^9.3" |
7537 | }, | 7891 | }, |
7538 | "type": "library", | 7892 | "type": "library", |
7539 | "extra": { | 7893 | "extra": { |
7540 | "branch-alias": { | 7894 | "branch-alias": { |
7541 | "dev-master": "3.0-dev" | 7895 | "dev-master": "3.0-dev" |
7542 | } | 7896 | } |
7543 | }, | 7897 | }, |
7544 | "autoload": { | 7898 | "autoload": { |
7545 | "classmap": [ | 7899 | "classmap": [ |
7546 | "src/" | 7900 | "src/" |
7547 | ] | 7901 | ] |
7548 | }, | 7902 | }, |
7549 | "notification-url": "https://packagist.org/downloads/", | 7903 | "notification-url": "https://packagist.org/downloads/", |
7550 | "license": [ | 7904 | "license": [ |
7551 | "BSD-3-Clause" | 7905 | "BSD-3-Clause" |
7552 | ], | 7906 | ], |
7553 | "authors": [ | 7907 | "authors": [ |
7554 | { | 7908 | { |
7555 | "name": "Sebastian Bergmann", | 7909 | "name": "Sebastian Bergmann", |
7556 | "email": "sebastian@phpunit.de", | 7910 | "email": "sebastian@phpunit.de", |
7557 | "role": "lead" | 7911 | "role": "lead" |
7558 | } | 7912 | } |
7559 | ], | 7913 | ], |
7560 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", | 7914 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", |
7561 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", | 7915 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", |
7562 | "keywords": [ | 7916 | "keywords": [ |
7563 | "filesystem", | 7917 | "filesystem", |
7564 | "iterator" | 7918 | "iterator" |
7565 | ], | 7919 | ], |
7566 | "support": { | 7920 | "support": { |
7567 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", | 7921 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", |
7568 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" | 7922 | "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" |
7569 | }, | 7923 | }, |
7570 | "funding": [ | 7924 | "funding": [ |
7571 | { | 7925 | { |
7572 | "url": "https://github.com/sebastianbergmann", | 7926 | "url": "https://github.com/sebastianbergmann", |
7573 | "type": "github" | 7927 | "type": "github" |
7574 | } | 7928 | } |
7575 | ], | 7929 | ], |
7576 | "time": "2021-12-02T12:48:52+00:00" | 7930 | "time": "2021-12-02T12:48:52+00:00" |
7577 | }, | 7931 | }, |
7578 | { | 7932 | { |
7579 | "name": "phpunit/php-invoker", | 7933 | "name": "phpunit/php-invoker", |
7580 | "version": "3.1.1", | 7934 | "version": "3.1.1", |
7581 | "source": { | 7935 | "source": { |
7582 | "type": "git", | 7936 | "type": "git", |
7583 | "url": "https://github.com/sebastianbergmann/php-invoker.git", | 7937 | "url": "https://github.com/sebastianbergmann/php-invoker.git", |
7584 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" | 7938 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" |
7585 | }, | 7939 | }, |
7586 | "dist": { | 7940 | "dist": { |
7587 | "type": "zip", | 7941 | "type": "zip", |
7588 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", | 7942 | "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", |
7589 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", | 7943 | "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", |
7590 | "shasum": "" | 7944 | "shasum": "" |
7591 | }, | 7945 | }, |
7592 | "require": { | 7946 | "require": { |
7593 | "php": ">=7.3" | 7947 | "php": ">=7.3" |
7594 | }, | 7948 | }, |
7595 | "require-dev": { | 7949 | "require-dev": { |
7596 | "ext-pcntl": "*", | 7950 | "ext-pcntl": "*", |
7597 | "phpunit/phpunit": "^9.3" | 7951 | "phpunit/phpunit": "^9.3" |
7598 | }, | 7952 | }, |
7599 | "suggest": { | 7953 | "suggest": { |
7600 | "ext-pcntl": "*" | 7954 | "ext-pcntl": "*" |
7601 | }, | 7955 | }, |
7602 | "type": "library", | 7956 | "type": "library", |
7603 | "extra": { | 7957 | "extra": { |
7604 | "branch-alias": { | 7958 | "branch-alias": { |
7605 | "dev-master": "3.1-dev" | 7959 | "dev-master": "3.1-dev" |
7606 | } | 7960 | } |
7607 | }, | 7961 | }, |
7608 | "autoload": { | 7962 | "autoload": { |
7609 | "classmap": [ | 7963 | "classmap": [ |
7610 | "src/" | 7964 | "src/" |
7611 | ] | 7965 | ] |
7612 | }, | 7966 | }, |
7613 | "notification-url": "https://packagist.org/downloads/", | 7967 | "notification-url": "https://packagist.org/downloads/", |
7614 | "license": [ | 7968 | "license": [ |
7615 | "BSD-3-Clause" | 7969 | "BSD-3-Clause" |
7616 | ], | 7970 | ], |
7617 | "authors": [ | 7971 | "authors": [ |
7618 | { | 7972 | { |
7619 | "name": "Sebastian Bergmann", | 7973 | "name": "Sebastian Bergmann", |
7620 | "email": "sebastian@phpunit.de", | 7974 | "email": "sebastian@phpunit.de", |
7621 | "role": "lead" | 7975 | "role": "lead" |
7622 | } | 7976 | } |
7623 | ], | 7977 | ], |
7624 | "description": "Invoke callables with a timeout", | 7978 | "description": "Invoke callables with a timeout", |
7625 | "homepage": "https://github.com/sebastianbergmann/php-invoker/", | 7979 | "homepage": "https://github.com/sebastianbergmann/php-invoker/", |
7626 | "keywords": [ | 7980 | "keywords": [ |
7627 | "process" | 7981 | "process" |
7628 | ], | 7982 | ], |
7629 | "support": { | 7983 | "support": { |
7630 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues", | 7984 | "issues": "https://github.com/sebastianbergmann/php-invoker/issues", |
7631 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" | 7985 | "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" |
7632 | }, | 7986 | }, |
7633 | "funding": [ | 7987 | "funding": [ |
7634 | { | 7988 | { |
7635 | "url": "https://github.com/sebastianbergmann", | 7989 | "url": "https://github.com/sebastianbergmann", |
7636 | "type": "github" | 7990 | "type": "github" |
7637 | } | 7991 | } |
7638 | ], | 7992 | ], |
7639 | "time": "2020-09-28T05:58:55+00:00" | 7993 | "time": "2020-09-28T05:58:55+00:00" |
7640 | }, | 7994 | }, |
7641 | { | 7995 | { |
7642 | "name": "phpunit/php-text-template", | 7996 | "name": "phpunit/php-text-template", |
7643 | "version": "2.0.4", | 7997 | "version": "2.0.4", |
7644 | "source": { | 7998 | "source": { |
7645 | "type": "git", | 7999 | "type": "git", |
7646 | "url": "https://github.com/sebastianbergmann/php-text-template.git", | 8000 | "url": "https://github.com/sebastianbergmann/php-text-template.git", |
7647 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" | 8001 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" |
7648 | }, | 8002 | }, |
7649 | "dist": { | 8003 | "dist": { |
7650 | "type": "zip", | 8004 | "type": "zip", |
7651 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", | 8005 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", |
7652 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", | 8006 | "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", |
7653 | "shasum": "" | 8007 | "shasum": "" |
7654 | }, | 8008 | }, |
7655 | "require": { | 8009 | "require": { |
7656 | "php": ">=7.3" | 8010 | "php": ">=7.3" |
7657 | }, | 8011 | }, |
7658 | "require-dev": { | 8012 | "require-dev": { |
7659 | "phpunit/phpunit": "^9.3" | 8013 | "phpunit/phpunit": "^9.3" |
7660 | }, | 8014 | }, |
7661 | "type": "library", | 8015 | "type": "library", |
7662 | "extra": { | 8016 | "extra": { |
7663 | "branch-alias": { | 8017 | "branch-alias": { |
7664 | "dev-master": "2.0-dev" | 8018 | "dev-master": "2.0-dev" |
7665 | } | 8019 | } |
7666 | }, | 8020 | }, |
7667 | "autoload": { | 8021 | "autoload": { |
7668 | "classmap": [ | 8022 | "classmap": [ |
7669 | "src/" | 8023 | "src/" |
7670 | ] | 8024 | ] |
7671 | }, | 8025 | }, |
7672 | "notification-url": "https://packagist.org/downloads/", | 8026 | "notification-url": "https://packagist.org/downloads/", |
7673 | "license": [ | 8027 | "license": [ |
7674 | "BSD-3-Clause" | 8028 | "BSD-3-Clause" |
7675 | ], | 8029 | ], |
7676 | "authors": [ | 8030 | "authors": [ |
7677 | { | 8031 | { |
7678 | "name": "Sebastian Bergmann", | 8032 | "name": "Sebastian Bergmann", |
7679 | "email": "sebastian@phpunit.de", | 8033 | "email": "sebastian@phpunit.de", |
7680 | "role": "lead" | 8034 | "role": "lead" |
7681 | } | 8035 | } |
7682 | ], | 8036 | ], |
7683 | "description": "Simple template engine.", | 8037 | "description": "Simple template engine.", |
7684 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", | 8038 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", |
7685 | "keywords": [ | 8039 | "keywords": [ |
7686 | "template" | 8040 | "template" |
7687 | ], | 8041 | ], |
7688 | "support": { | 8042 | "support": { |
7689 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues", | 8043 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues", |
7690 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" | 8044 | "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" |
7691 | }, | 8045 | }, |
7692 | "funding": [ | 8046 | "funding": [ |
7693 | { | 8047 | { |
7694 | "url": "https://github.com/sebastianbergmann", | 8048 | "url": "https://github.com/sebastianbergmann", |
7695 | "type": "github" | 8049 | "type": "github" |
7696 | } | 8050 | } |
7697 | ], | 8051 | ], |
7698 | "time": "2020-10-26T05:33:50+00:00" | 8052 | "time": "2020-10-26T05:33:50+00:00" |
7699 | }, | 8053 | }, |
7700 | { | 8054 | { |
7701 | "name": "phpunit/php-timer", | 8055 | "name": "phpunit/php-timer", |
7702 | "version": "5.0.3", | 8056 | "version": "5.0.3", |
7703 | "source": { | 8057 | "source": { |
7704 | "type": "git", | 8058 | "type": "git", |
7705 | "url": "https://github.com/sebastianbergmann/php-timer.git", | 8059 | "url": "https://github.com/sebastianbergmann/php-timer.git", |
7706 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" | 8060 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" |
7707 | }, | 8061 | }, |
7708 | "dist": { | 8062 | "dist": { |
7709 | "type": "zip", | 8063 | "type": "zip", |
7710 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", | 8064 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", |
7711 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", | 8065 | "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", |
7712 | "shasum": "" | 8066 | "shasum": "" |
7713 | }, | 8067 | }, |
7714 | "require": { | 8068 | "require": { |
7715 | "php": ">=7.3" | 8069 | "php": ">=7.3" |
7716 | }, | 8070 | }, |
7717 | "require-dev": { | 8071 | "require-dev": { |
7718 | "phpunit/phpunit": "^9.3" | 8072 | "phpunit/phpunit": "^9.3" |
7719 | }, | 8073 | }, |
7720 | "type": "library", | 8074 | "type": "library", |
7721 | "extra": { | 8075 | "extra": { |
7722 | "branch-alias": { | 8076 | "branch-alias": { |
7723 | "dev-master": "5.0-dev" | 8077 | "dev-master": "5.0-dev" |
7724 | } | 8078 | } |
7725 | }, | 8079 | }, |
7726 | "autoload": { | 8080 | "autoload": { |
7727 | "classmap": [ | 8081 | "classmap": [ |
7728 | "src/" | 8082 | "src/" |
7729 | ] | 8083 | ] |
7730 | }, | 8084 | }, |
7731 | "notification-url": "https://packagist.org/downloads/", | 8085 | "notification-url": "https://packagist.org/downloads/", |
7732 | "license": [ | 8086 | "license": [ |
7733 | "BSD-3-Clause" | 8087 | "BSD-3-Clause" |
7734 | ], | 8088 | ], |
7735 | "authors": [ | 8089 | "authors": [ |
7736 | { | 8090 | { |
7737 | "name": "Sebastian Bergmann", | 8091 | "name": "Sebastian Bergmann", |
7738 | "email": "sebastian@phpunit.de", | 8092 | "email": "sebastian@phpunit.de", |
7739 | "role": "lead" | 8093 | "role": "lead" |
7740 | } | 8094 | } |
7741 | ], | 8095 | ], |
7742 | "description": "Utility class for timing", | 8096 | "description": "Utility class for timing", |
7743 | "homepage": "https://github.com/sebastianbergmann/php-timer/", | 8097 | "homepage": "https://github.com/sebastianbergmann/php-timer/", |
7744 | "keywords": [ | 8098 | "keywords": [ |
7745 | "timer" | 8099 | "timer" |
7746 | ], | 8100 | ], |
7747 | "support": { | 8101 | "support": { |
7748 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", | 8102 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", |
7749 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" | 8103 | "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" |
7750 | }, | 8104 | }, |
7751 | "funding": [ | 8105 | "funding": [ |
7752 | { | 8106 | { |
7753 | "url": "https://github.com/sebastianbergmann", | 8107 | "url": "https://github.com/sebastianbergmann", |
7754 | "type": "github" | 8108 | "type": "github" |
7755 | } | 8109 | } |
7756 | ], | 8110 | ], |
7757 | "time": "2020-10-26T13:16:10+00:00" | 8111 | "time": "2020-10-26T13:16:10+00:00" |
7758 | }, | 8112 | }, |
7759 | { | 8113 | { |
7760 | "name": "phpunit/phpunit", | 8114 | "name": "phpunit/phpunit", |
7761 | "version": "9.6.8", | 8115 | "version": "9.6.8", |
7762 | "source": { | 8116 | "source": { |
7763 | "type": "git", | 8117 | "type": "git", |
7764 | "url": "https://github.com/sebastianbergmann/phpunit.git", | 8118 | "url": "https://github.com/sebastianbergmann/phpunit.git", |
7765 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e" | 8119 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e" |
7766 | }, | 8120 | }, |
7767 | "dist": { | 8121 | "dist": { |
7768 | "type": "zip", | 8122 | "type": "zip", |
7769 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/17d621b3aff84d0c8b62539e269e87d8d5baa76e", | 8123 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/17d621b3aff84d0c8b62539e269e87d8d5baa76e", |
7770 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e", | 8124 | "reference": "17d621b3aff84d0c8b62539e269e87d8d5baa76e", |
7771 | "shasum": "" | 8125 | "shasum": "" |
7772 | }, | 8126 | }, |
7773 | "require": { | 8127 | "require": { |
7774 | "doctrine/instantiator": "^1.3.1 || ^2", | 8128 | "doctrine/instantiator": "^1.3.1 || ^2", |
7775 | "ext-dom": "*", | 8129 | "ext-dom": "*", |
7776 | "ext-json": "*", | 8130 | "ext-json": "*", |
7777 | "ext-libxml": "*", | 8131 | "ext-libxml": "*", |
7778 | "ext-mbstring": "*", | 8132 | "ext-mbstring": "*", |
7779 | "ext-xml": "*", | 8133 | "ext-xml": "*", |
7780 | "ext-xmlwriter": "*", | 8134 | "ext-xmlwriter": "*", |
7781 | "myclabs/deep-copy": "^1.10.1", | 8135 | "myclabs/deep-copy": "^1.10.1", |
7782 | "phar-io/manifest": "^2.0.3", | 8136 | "phar-io/manifest": "^2.0.3", |
7783 | "phar-io/version": "^3.0.2", | 8137 | "phar-io/version": "^3.0.2", |
7784 | "php": ">=7.3", | 8138 | "php": ">=7.3", |
7785 | "phpunit/php-code-coverage": "^9.2.13", | 8139 | "phpunit/php-code-coverage": "^9.2.13", |
7786 | "phpunit/php-file-iterator": "^3.0.5", | 8140 | "phpunit/php-file-iterator": "^3.0.5", |
7787 | "phpunit/php-invoker": "^3.1.1", | 8141 | "phpunit/php-invoker": "^3.1.1", |
7788 | "phpunit/php-text-template": "^2.0.3", | 8142 | "phpunit/php-text-template": "^2.0.3", |
7789 | "phpunit/php-timer": "^5.0.2", | 8143 | "phpunit/php-timer": "^5.0.2", |
7790 | "sebastian/cli-parser": "^1.0.1", | 8144 | "sebastian/cli-parser": "^1.0.1", |
7791 | "sebastian/code-unit": "^1.0.6", | 8145 | "sebastian/code-unit": "^1.0.6", |
7792 | "sebastian/comparator": "^4.0.8", | 8146 | "sebastian/comparator": "^4.0.8", |
7793 | "sebastian/diff": "^4.0.3", | 8147 | "sebastian/diff": "^4.0.3", |
7794 | "sebastian/environment": "^5.1.3", | 8148 | "sebastian/environment": "^5.1.3", |
7795 | "sebastian/exporter": "^4.0.5", | 8149 | "sebastian/exporter": "^4.0.5", |
7796 | "sebastian/global-state": "^5.0.1", | 8150 | "sebastian/global-state": "^5.0.1", |
7797 | "sebastian/object-enumerator": "^4.0.3", | 8151 | "sebastian/object-enumerator": "^4.0.3", |
7798 | "sebastian/resource-operations": "^3.0.3", | 8152 | "sebastian/resource-operations": "^3.0.3", |
7799 | "sebastian/type": "^3.2", | 8153 | "sebastian/type": "^3.2", |
7800 | "sebastian/version": "^3.0.2" | 8154 | "sebastian/version": "^3.0.2" |
7801 | }, | 8155 | }, |
7802 | "suggest": { | 8156 | "suggest": { |
7803 | "ext-soap": "To be able to generate mocks based on WSDL files", | 8157 | "ext-soap": "To be able to generate mocks based on WSDL files", |
7804 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" | 8158 | "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" |
7805 | }, | 8159 | }, |
7806 | "bin": [ | 8160 | "bin": [ |
7807 | "phpunit" | 8161 | "phpunit" |
7808 | ], | 8162 | ], |
7809 | "type": "library", | 8163 | "type": "library", |
7810 | "extra": { | 8164 | "extra": { |
7811 | "branch-alias": { | 8165 | "branch-alias": { |
7812 | "dev-master": "9.6-dev" | 8166 | "dev-master": "9.6-dev" |
7813 | } | 8167 | } |
7814 | }, | 8168 | }, |
7815 | "autoload": { | 8169 | "autoload": { |
7816 | "files": [ | 8170 | "files": [ |
7817 | "src/Framework/Assert/Functions.php" | 8171 | "src/Framework/Assert/Functions.php" |
7818 | ], | 8172 | ], |
7819 | "classmap": [ | 8173 | "classmap": [ |
7820 | "src/" | 8174 | "src/" |
7821 | ] | 8175 | ] |
7822 | }, | 8176 | }, |
7823 | "notification-url": "https://packagist.org/downloads/", | 8177 | "notification-url": "https://packagist.org/downloads/", |
7824 | "license": [ | 8178 | "license": [ |
7825 | "BSD-3-Clause" | 8179 | "BSD-3-Clause" |
7826 | ], | 8180 | ], |
7827 | "authors": [ | 8181 | "authors": [ |
7828 | { | 8182 | { |
7829 | "name": "Sebastian Bergmann", | 8183 | "name": "Sebastian Bergmann", |
7830 | "email": "sebastian@phpunit.de", | 8184 | "email": "sebastian@phpunit.de", |
7831 | "role": "lead" | 8185 | "role": "lead" |
7832 | } | 8186 | } |
7833 | ], | 8187 | ], |
7834 | "description": "The PHP Unit Testing framework.", | 8188 | "description": "The PHP Unit Testing framework.", |
7835 | "homepage": "https://phpunit.de/", | 8189 | "homepage": "https://phpunit.de/", |
7836 | "keywords": [ | 8190 | "keywords": [ |
7837 | "phpunit", | 8191 | "phpunit", |
7838 | "testing", | 8192 | "testing", |
7839 | "xunit" | 8193 | "xunit" |
7840 | ], | 8194 | ], |
7841 | "support": { | 8195 | "support": { |
7842 | "issues": "https://github.com/sebastianbergmann/phpunit/issues", | 8196 | "issues": "https://github.com/sebastianbergmann/phpunit/issues", |
7843 | "security": "https://github.com/sebastianbergmann/phpunit/security/policy", | 8197 | "security": "https://github.com/sebastianbergmann/phpunit/security/policy", |
7844 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.8" | 8198 | "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.8" |
7845 | }, | 8199 | }, |
7846 | "funding": [ | 8200 | "funding": [ |
7847 | { | 8201 | { |
7848 | "url": "https://phpunit.de/sponsors.html", | 8202 | "url": "https://phpunit.de/sponsors.html", |
7849 | "type": "custom" | 8203 | "type": "custom" |
7850 | }, | 8204 | }, |
7851 | { | 8205 | { |
7852 | "url": "https://github.com/sebastianbergmann", | 8206 | "url": "https://github.com/sebastianbergmann", |
7853 | "type": "github" | 8207 | "type": "github" |
7854 | }, | 8208 | }, |
7855 | { | 8209 | { |
7856 | "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", | 8210 | "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", |
7857 | "type": "tidelift" | 8211 | "type": "tidelift" |
7858 | } | 8212 | } |
7859 | ], | 8213 | ], |
7860 | "time": "2023-05-11T05:14:45+00:00" | 8214 | "time": "2023-05-11T05:14:45+00:00" |
7861 | }, | 8215 | }, |
7862 | { | 8216 | { |
7863 | "name": "sebastian/cli-parser", | 8217 | "name": "sebastian/cli-parser", |
7864 | "version": "1.0.1", | 8218 | "version": "1.0.1", |
7865 | "source": { | 8219 | "source": { |
7866 | "type": "git", | 8220 | "type": "git", |
7867 | "url": "https://github.com/sebastianbergmann/cli-parser.git", | 8221 | "url": "https://github.com/sebastianbergmann/cli-parser.git", |
7868 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" | 8222 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" |
7869 | }, | 8223 | }, |
7870 | "dist": { | 8224 | "dist": { |
7871 | "type": "zip", | 8225 | "type": "zip", |
7872 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", | 8226 | "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", |
7873 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", | 8227 | "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", |
7874 | "shasum": "" | 8228 | "shasum": "" |
7875 | }, | 8229 | }, |
7876 | "require": { | 8230 | "require": { |
7877 | "php": ">=7.3" | 8231 | "php": ">=7.3" |
7878 | }, | 8232 | }, |
7879 | "require-dev": { | 8233 | "require-dev": { |
7880 | "phpunit/phpunit": "^9.3" | 8234 | "phpunit/phpunit": "^9.3" |
7881 | }, | 8235 | }, |
7882 | "type": "library", | 8236 | "type": "library", |
7883 | "extra": { | 8237 | "extra": { |
7884 | "branch-alias": { | 8238 | "branch-alias": { |
7885 | "dev-master": "1.0-dev" | 8239 | "dev-master": "1.0-dev" |
7886 | } | 8240 | } |
7887 | }, | 8241 | }, |
7888 | "autoload": { | 8242 | "autoload": { |
7889 | "classmap": [ | 8243 | "classmap": [ |
7890 | "src/" | 8244 | "src/" |
7891 | ] | 8245 | ] |
7892 | }, | 8246 | }, |
7893 | "notification-url": "https://packagist.org/downloads/", | 8247 | "notification-url": "https://packagist.org/downloads/", |
7894 | "license": [ | 8248 | "license": [ |
7895 | "BSD-3-Clause" | 8249 | "BSD-3-Clause" |
7896 | ], | 8250 | ], |
7897 | "authors": [ | 8251 | "authors": [ |
7898 | { | 8252 | { |
7899 | "name": "Sebastian Bergmann", | 8253 | "name": "Sebastian Bergmann", |
7900 | "email": "sebastian@phpunit.de", | 8254 | "email": "sebastian@phpunit.de", |
7901 | "role": "lead" | 8255 | "role": "lead" |
7902 | } | 8256 | } |
7903 | ], | 8257 | ], |
7904 | "description": "Library for parsing CLI options", | 8258 | "description": "Library for parsing CLI options", |
7905 | "homepage": "https://github.com/sebastianbergmann/cli-parser", | 8259 | "homepage": "https://github.com/sebastianbergmann/cli-parser", |
7906 | "support": { | 8260 | "support": { |
7907 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues", | 8261 | "issues": "https://github.com/sebastianbergmann/cli-parser/issues", |
7908 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" | 8262 | "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" |
7909 | }, | 8263 | }, |
7910 | "funding": [ | 8264 | "funding": [ |
7911 | { | 8265 | { |
7912 | "url": "https://github.com/sebastianbergmann", | 8266 | "url": "https://github.com/sebastianbergmann", |
7913 | "type": "github" | 8267 | "type": "github" |
7914 | } | 8268 | } |
7915 | ], | 8269 | ], |
7916 | "time": "2020-09-28T06:08:49+00:00" | 8270 | "time": "2020-09-28T06:08:49+00:00" |
7917 | }, | 8271 | }, |
7918 | { | 8272 | { |
7919 | "name": "sebastian/code-unit", | 8273 | "name": "sebastian/code-unit", |
7920 | "version": "1.0.8", | 8274 | "version": "1.0.8", |
7921 | "source": { | 8275 | "source": { |
7922 | "type": "git", | 8276 | "type": "git", |
7923 | "url": "https://github.com/sebastianbergmann/code-unit.git", | 8277 | "url": "https://github.com/sebastianbergmann/code-unit.git", |
7924 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" | 8278 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" |
7925 | }, | 8279 | }, |
7926 | "dist": { | 8280 | "dist": { |
7927 | "type": "zip", | 8281 | "type": "zip", |
7928 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", | 8282 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", |
7929 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", | 8283 | "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", |
7930 | "shasum": "" | 8284 | "shasum": "" |
7931 | }, | 8285 | }, |
7932 | "require": { | 8286 | "require": { |
7933 | "php": ">=7.3" | 8287 | "php": ">=7.3" |
7934 | }, | 8288 | }, |
7935 | "require-dev": { | 8289 | "require-dev": { |
7936 | "phpunit/phpunit": "^9.3" | 8290 | "phpunit/phpunit": "^9.3" |
7937 | }, | 8291 | }, |
7938 | "type": "library", | 8292 | "type": "library", |
7939 | "extra": { | 8293 | "extra": { |
7940 | "branch-alias": { | 8294 | "branch-alias": { |
7941 | "dev-master": "1.0-dev" | 8295 | "dev-master": "1.0-dev" |
7942 | } | 8296 | } |
7943 | }, | 8297 | }, |
7944 | "autoload": { | 8298 | "autoload": { |
7945 | "classmap": [ | 8299 | "classmap": [ |
7946 | "src/" | 8300 | "src/" |
7947 | ] | 8301 | ] |
7948 | }, | 8302 | }, |
7949 | "notification-url": "https://packagist.org/downloads/", | 8303 | "notification-url": "https://packagist.org/downloads/", |
7950 | "license": [ | 8304 | "license": [ |
7951 | "BSD-3-Clause" | 8305 | "BSD-3-Clause" |
7952 | ], | 8306 | ], |
7953 | "authors": [ | 8307 | "authors": [ |
7954 | { | 8308 | { |
7955 | "name": "Sebastian Bergmann", | 8309 | "name": "Sebastian Bergmann", |
7956 | "email": "sebastian@phpunit.de", | 8310 | "email": "sebastian@phpunit.de", |
7957 | "role": "lead" | 8311 | "role": "lead" |
7958 | } | 8312 | } |
7959 | ], | 8313 | ], |
7960 | "description": "Collection of value objects that represent the PHP code units", | 8314 | "description": "Collection of value objects that represent the PHP code units", |
7961 | "homepage": "https://github.com/sebastianbergmann/code-unit", | 8315 | "homepage": "https://github.com/sebastianbergmann/code-unit", |
7962 | "support": { | 8316 | "support": { |
7963 | "issues": "https://github.com/sebastianbergmann/code-unit/issues", | 8317 | "issues": "https://github.com/sebastianbergmann/code-unit/issues", |
7964 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" | 8318 | "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" |
7965 | }, | 8319 | }, |
7966 | "funding": [ | 8320 | "funding": [ |
7967 | { | 8321 | { |
7968 | "url": "https://github.com/sebastianbergmann", | 8322 | "url": "https://github.com/sebastianbergmann", |
7969 | "type": "github" | 8323 | "type": "github" |
7970 | } | 8324 | } |
7971 | ], | 8325 | ], |
7972 | "time": "2020-10-26T13:08:54+00:00" | 8326 | "time": "2020-10-26T13:08:54+00:00" |
7973 | }, | 8327 | }, |
7974 | { | 8328 | { |
7975 | "name": "sebastian/code-unit-reverse-lookup", | 8329 | "name": "sebastian/code-unit-reverse-lookup", |
7976 | "version": "2.0.3", | 8330 | "version": "2.0.3", |
7977 | "source": { | 8331 | "source": { |
7978 | "type": "git", | 8332 | "type": "git", |
7979 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", | 8333 | "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", |
7980 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" | 8334 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" |
7981 | }, | 8335 | }, |
7982 | "dist": { | 8336 | "dist": { |
7983 | "type": "zip", | 8337 | "type": "zip", |
7984 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", | 8338 | "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", |
7985 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", | 8339 | "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", |
7986 | "shasum": "" | 8340 | "shasum": "" |
7987 | }, | 8341 | }, |
7988 | "require": { | 8342 | "require": { |
7989 | "php": ">=7.3" | 8343 | "php": ">=7.3" |
7990 | }, | 8344 | }, |
7991 | "require-dev": { | 8345 | "require-dev": { |
7992 | "phpunit/phpunit": "^9.3" | 8346 | "phpunit/phpunit": "^9.3" |
7993 | }, | 8347 | }, |
7994 | "type": "library", | 8348 | "type": "library", |
7995 | "extra": { | 8349 | "extra": { |
7996 | "branch-alias": { | 8350 | "branch-alias": { |
7997 | "dev-master": "2.0-dev" | 8351 | "dev-master": "2.0-dev" |
7998 | } | 8352 | } |
7999 | }, | 8353 | }, |
8000 | "autoload": { | 8354 | "autoload": { |
8001 | "classmap": [ | 8355 | "classmap": [ |
8002 | "src/" | 8356 | "src/" |
8003 | ] | 8357 | ] |
8004 | }, | 8358 | }, |
8005 | "notification-url": "https://packagist.org/downloads/", | 8359 | "notification-url": "https://packagist.org/downloads/", |
8006 | "license": [ | 8360 | "license": [ |
8007 | "BSD-3-Clause" | 8361 | "BSD-3-Clause" |
8008 | ], | 8362 | ], |
8009 | "authors": [ | 8363 | "authors": [ |
8010 | { | 8364 | { |
8011 | "name": "Sebastian Bergmann", | 8365 | "name": "Sebastian Bergmann", |
8012 | "email": "sebastian@phpunit.de" | 8366 | "email": "sebastian@phpunit.de" |
8013 | } | 8367 | } |
8014 | ], | 8368 | ], |
8015 | "description": "Looks up which function or method a line of code belongs to", | 8369 | "description": "Looks up which function or method a line of code belongs to", |
8016 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", | 8370 | "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", |
8017 | "support": { | 8371 | "support": { |
8018 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", | 8372 | "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", |
8019 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" | 8373 | "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" |
8020 | }, | 8374 | }, |
8021 | "funding": [ | 8375 | "funding": [ |
8022 | { | 8376 | { |
8023 | "url": "https://github.com/sebastianbergmann", | 8377 | "url": "https://github.com/sebastianbergmann", |
8024 | "type": "github" | 8378 | "type": "github" |
8025 | } | 8379 | } |
8026 | ], | 8380 | ], |
8027 | "time": "2020-09-28T05:30:19+00:00" | 8381 | "time": "2020-09-28T05:30:19+00:00" |
8028 | }, | 8382 | }, |
8029 | { | 8383 | { |
8030 | "name": "sebastian/comparator", | 8384 | "name": "sebastian/comparator", |
8031 | "version": "4.0.8", | 8385 | "version": "4.0.8", |
8032 | "source": { | 8386 | "source": { |
8033 | "type": "git", | 8387 | "type": "git", |
8034 | "url": "https://github.com/sebastianbergmann/comparator.git", | 8388 | "url": "https://github.com/sebastianbergmann/comparator.git", |
8035 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a" | 8389 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a" |
8036 | }, | 8390 | }, |
8037 | "dist": { | 8391 | "dist": { |
8038 | "type": "zip", | 8392 | "type": "zip", |
8039 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", | 8393 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", |
8040 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a", | 8394 | "reference": "fa0f136dd2334583309d32b62544682ee972b51a", |
8041 | "shasum": "" | 8395 | "shasum": "" |
8042 | }, | 8396 | }, |
8043 | "require": { | 8397 | "require": { |
8044 | "php": ">=7.3", | 8398 | "php": ">=7.3", |
8045 | "sebastian/diff": "^4.0", | 8399 | "sebastian/diff": "^4.0", |
8046 | "sebastian/exporter": "^4.0" | 8400 | "sebastian/exporter": "^4.0" |
8047 | }, | 8401 | }, |
8048 | "require-dev": { | 8402 | "require-dev": { |
8049 | "phpunit/phpunit": "^9.3" | 8403 | "phpunit/phpunit": "^9.3" |
8050 | }, | 8404 | }, |
8051 | "type": "library", | 8405 | "type": "library", |
8052 | "extra": { | 8406 | "extra": { |
8053 | "branch-alias": { | 8407 | "branch-alias": { |
8054 | "dev-master": "4.0-dev" | 8408 | "dev-master": "4.0-dev" |
8055 | } | 8409 | } |
8056 | }, | 8410 | }, |
8057 | "autoload": { | 8411 | "autoload": { |
8058 | "classmap": [ | 8412 | "classmap": [ |
8059 | "src/" | 8413 | "src/" |
8060 | ] | 8414 | ] |
8061 | }, | 8415 | }, |
8062 | "notification-url": "https://packagist.org/downloads/", | 8416 | "notification-url": "https://packagist.org/downloads/", |
8063 | "license": [ | 8417 | "license": [ |
8064 | "BSD-3-Clause" | 8418 | "BSD-3-Clause" |
8065 | ], | 8419 | ], |
8066 | "authors": [ | 8420 | "authors": [ |
8067 | { | 8421 | { |
8068 | "name": "Sebastian Bergmann", | 8422 | "name": "Sebastian Bergmann", |
8069 | "email": "sebastian@phpunit.de" | 8423 | "email": "sebastian@phpunit.de" |
8070 | }, | 8424 | }, |
8071 | { | 8425 | { |
8072 | "name": "Jeff Welch", | 8426 | "name": "Jeff Welch", |
8073 | "email": "whatthejeff@gmail.com" | 8427 | "email": "whatthejeff@gmail.com" |
8074 | }, | 8428 | }, |
8075 | { | 8429 | { |
8076 | "name": "Volker Dusch", | 8430 | "name": "Volker Dusch", |
8077 | "email": "github@wallbash.com" | 8431 | "email": "github@wallbash.com" |
8078 | }, | 8432 | }, |
8079 | { | 8433 | { |
8080 | "name": "Bernhard Schussek", | 8434 | "name": "Bernhard Schussek", |
8081 | "email": "bschussek@2bepublished.at" | 8435 | "email": "bschussek@2bepublished.at" |
8082 | } | 8436 | } |
8083 | ], | 8437 | ], |
8084 | "description": "Provides the functionality to compare PHP values for equality", | 8438 | "description": "Provides the functionality to compare PHP values for equality", |
8085 | "homepage": "https://github.com/sebastianbergmann/comparator", | 8439 | "homepage": "https://github.com/sebastianbergmann/comparator", |
8086 | "keywords": [ | 8440 | "keywords": [ |
8087 | "comparator", | 8441 | "comparator", |
8088 | "compare", | 8442 | "compare", |
8089 | "equality" | 8443 | "equality" |
8090 | ], | 8444 | ], |
8091 | "support": { | 8445 | "support": { |
8092 | "issues": "https://github.com/sebastianbergmann/comparator/issues", | 8446 | "issues": "https://github.com/sebastianbergmann/comparator/issues", |
8093 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" | 8447 | "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" |
8094 | }, | 8448 | }, |
8095 | "funding": [ | 8449 | "funding": [ |
8096 | { | 8450 | { |
8097 | "url": "https://github.com/sebastianbergmann", | 8451 | "url": "https://github.com/sebastianbergmann", |
8098 | "type": "github" | 8452 | "type": "github" |
8099 | } | 8453 | } |
8100 | ], | 8454 | ], |
8101 | "time": "2022-09-14T12:41:17+00:00" | 8455 | "time": "2022-09-14T12:41:17+00:00" |
8102 | }, | 8456 | }, |
8103 | { | 8457 | { |
8104 | "name": "sebastian/complexity", | 8458 | "name": "sebastian/complexity", |
8105 | "version": "2.0.2", | 8459 | "version": "2.0.2", |
8106 | "source": { | 8460 | "source": { |
8107 | "type": "git", | 8461 | "type": "git", |
8108 | "url": "https://github.com/sebastianbergmann/complexity.git", | 8462 | "url": "https://github.com/sebastianbergmann/complexity.git", |
8109 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" | 8463 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" |
8110 | }, | 8464 | }, |
8111 | "dist": { | 8465 | "dist": { |
8112 | "type": "zip", | 8466 | "type": "zip", |
8113 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", | 8467 | "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", |
8114 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", | 8468 | "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", |
8115 | "shasum": "" | 8469 | "shasum": "" |
8116 | }, | 8470 | }, |
8117 | "require": { | 8471 | "require": { |
8118 | "nikic/php-parser": "^4.7", | 8472 | "nikic/php-parser": "^4.7", |
8119 | "php": ">=7.3" | 8473 | "php": ">=7.3" |
8120 | }, | 8474 | }, |
8121 | "require-dev": { | 8475 | "require-dev": { |
8122 | "phpunit/phpunit": "^9.3" | 8476 | "phpunit/phpunit": "^9.3" |
8123 | }, | 8477 | }, |
8124 | "type": "library", | 8478 | "type": "library", |
8125 | "extra": { | 8479 | "extra": { |
8126 | "branch-alias": { | 8480 | "branch-alias": { |
8127 | "dev-master": "2.0-dev" | 8481 | "dev-master": "2.0-dev" |
8128 | } | 8482 | } |
8129 | }, | 8483 | }, |
8130 | "autoload": { | 8484 | "autoload": { |
8131 | "classmap": [ | 8485 | "classmap": [ |
8132 | "src/" | 8486 | "src/" |
8133 | ] | 8487 | ] |
8134 | }, | 8488 | }, |
8135 | "notification-url": "https://packagist.org/downloads/", | 8489 | "notification-url": "https://packagist.org/downloads/", |
8136 | "license": [ | 8490 | "license": [ |
8137 | "BSD-3-Clause" | 8491 | "BSD-3-Clause" |
8138 | ], | 8492 | ], |
8139 | "authors": [ | 8493 | "authors": [ |
8140 | { | 8494 | { |
8141 | "name": "Sebastian Bergmann", | 8495 | "name": "Sebastian Bergmann", |
8142 | "email": "sebastian@phpunit.de", | 8496 | "email": "sebastian@phpunit.de", |
8143 | "role": "lead" | 8497 | "role": "lead" |
8144 | } | 8498 | } |
8145 | ], | 8499 | ], |
8146 | "description": "Library for calculating the complexity of PHP code units", | 8500 | "description": "Library for calculating the complexity of PHP code units", |
8147 | "homepage": "https://github.com/sebastianbergmann/complexity", | 8501 | "homepage": "https://github.com/sebastianbergmann/complexity", |
8148 | "support": { | 8502 | "support": { |
8149 | "issues": "https://github.com/sebastianbergmann/complexity/issues", | 8503 | "issues": "https://github.com/sebastianbergmann/complexity/issues", |
8150 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" | 8504 | "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" |
8151 | }, | 8505 | }, |
8152 | "funding": [ | 8506 | "funding": [ |
8153 | { | 8507 | { |
8154 | "url": "https://github.com/sebastianbergmann", | 8508 | "url": "https://github.com/sebastianbergmann", |
8155 | "type": "github" | 8509 | "type": "github" |
8156 | } | 8510 | } |
8157 | ], | 8511 | ], |
8158 | "time": "2020-10-26T15:52:27+00:00" | 8512 | "time": "2020-10-26T15:52:27+00:00" |
8159 | }, | 8513 | }, |
8160 | { | 8514 | { |
8161 | "name": "sebastian/diff", | 8515 | "name": "sebastian/diff", |
8162 | "version": "4.0.5", | 8516 | "version": "4.0.5", |
8163 | "source": { | 8517 | "source": { |
8164 | "type": "git", | 8518 | "type": "git", |
8165 | "url": "https://github.com/sebastianbergmann/diff.git", | 8519 | "url": "https://github.com/sebastianbergmann/diff.git", |
8166 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" | 8520 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" |
8167 | }, | 8521 | }, |
8168 | "dist": { | 8522 | "dist": { |
8169 | "type": "zip", | 8523 | "type": "zip", |
8170 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", | 8524 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", |
8171 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", | 8525 | "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", |
8172 | "shasum": "" | 8526 | "shasum": "" |
8173 | }, | 8527 | }, |
8174 | "require": { | 8528 | "require": { |
8175 | "php": ">=7.3" | 8529 | "php": ">=7.3" |
8176 | }, | 8530 | }, |
8177 | "require-dev": { | 8531 | "require-dev": { |
8178 | "phpunit/phpunit": "^9.3", | 8532 | "phpunit/phpunit": "^9.3", |
8179 | "symfony/process": "^4.2 || ^5" | 8533 | "symfony/process": "^4.2 || ^5" |
8180 | }, | 8534 | }, |
8181 | "type": "library", | 8535 | "type": "library", |
8182 | "extra": { | 8536 | "extra": { |
8183 | "branch-alias": { | 8537 | "branch-alias": { |
8184 | "dev-master": "4.0-dev" | 8538 | "dev-master": "4.0-dev" |
8185 | } | 8539 | } |
8186 | }, | 8540 | }, |
8187 | "autoload": { | 8541 | "autoload": { |
8188 | "classmap": [ | 8542 | "classmap": [ |
8189 | "src/" | 8543 | "src/" |
8190 | ] | 8544 | ] |
8191 | }, | 8545 | }, |
8192 | "notification-url": "https://packagist.org/downloads/", | 8546 | "notification-url": "https://packagist.org/downloads/", |
8193 | "license": [ | 8547 | "license": [ |
8194 | "BSD-3-Clause" | 8548 | "BSD-3-Clause" |
8195 | ], | 8549 | ], |
8196 | "authors": [ | 8550 | "authors": [ |
8197 | { | 8551 | { |
8198 | "name": "Sebastian Bergmann", | 8552 | "name": "Sebastian Bergmann", |
8199 | "email": "sebastian@phpunit.de" | 8553 | "email": "sebastian@phpunit.de" |
8200 | }, | 8554 | }, |
8201 | { | 8555 | { |
8202 | "name": "Kore Nordmann", | 8556 | "name": "Kore Nordmann", |
8203 | "email": "mail@kore-nordmann.de" | 8557 | "email": "mail@kore-nordmann.de" |
8204 | } | 8558 | } |
8205 | ], | 8559 | ], |
8206 | "description": "Diff implementation", | 8560 | "description": "Diff implementation", |
8207 | "homepage": "https://github.com/sebastianbergmann/diff", | 8561 | "homepage": "https://github.com/sebastianbergmann/diff", |
8208 | "keywords": [ | 8562 | "keywords": [ |
8209 | "diff", | 8563 | "diff", |
8210 | "udiff", | 8564 | "udiff", |
8211 | "unidiff", | 8565 | "unidiff", |
8212 | "unified diff" | 8566 | "unified diff" |
8213 | ], | 8567 | ], |
8214 | "support": { | 8568 | "support": { |
8215 | "issues": "https://github.com/sebastianbergmann/diff/issues", | 8569 | "issues": "https://github.com/sebastianbergmann/diff/issues", |
8216 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" | 8570 | "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" |
8217 | }, | 8571 | }, |
8218 | "funding": [ | 8572 | "funding": [ |
8219 | { | 8573 | { |
8220 | "url": "https://github.com/sebastianbergmann", | 8574 | "url": "https://github.com/sebastianbergmann", |
8221 | "type": "github" | 8575 | "type": "github" |
8222 | } | 8576 | } |
8223 | ], | 8577 | ], |
8224 | "time": "2023-05-07T05:35:17+00:00" | 8578 | "time": "2023-05-07T05:35:17+00:00" |
8225 | }, | 8579 | }, |
8226 | { | 8580 | { |
8227 | "name": "sebastian/environment", | 8581 | "name": "sebastian/environment", |
8228 | "version": "5.1.5", | 8582 | "version": "5.1.5", |
8229 | "source": { | 8583 | "source": { |
8230 | "type": "git", | 8584 | "type": "git", |
8231 | "url": "https://github.com/sebastianbergmann/environment.git", | 8585 | "url": "https://github.com/sebastianbergmann/environment.git", |
8232 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" | 8586 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" |
8233 | }, | 8587 | }, |
8234 | "dist": { | 8588 | "dist": { |
8235 | "type": "zip", | 8589 | "type": "zip", |
8236 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", | 8590 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", |
8237 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", | 8591 | "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", |
8238 | "shasum": "" | 8592 | "shasum": "" |
8239 | }, | 8593 | }, |
8240 | "require": { | 8594 | "require": { |
8241 | "php": ">=7.3" | 8595 | "php": ">=7.3" |
8242 | }, | 8596 | }, |
8243 | "require-dev": { | 8597 | "require-dev": { |
8244 | "phpunit/phpunit": "^9.3" | 8598 | "phpunit/phpunit": "^9.3" |
8245 | }, | 8599 | }, |
8246 | "suggest": { | 8600 | "suggest": { |
8247 | "ext-posix": "*" | 8601 | "ext-posix": "*" |
8248 | }, | 8602 | }, |
8249 | "type": "library", | 8603 | "type": "library", |
8250 | "extra": { | 8604 | "extra": { |
8251 | "branch-alias": { | 8605 | "branch-alias": { |
8252 | "dev-master": "5.1-dev" | 8606 | "dev-master": "5.1-dev" |
8253 | } | 8607 | } |
8254 | }, | 8608 | }, |
8255 | "autoload": { | 8609 | "autoload": { |
8256 | "classmap": [ | 8610 | "classmap": [ |
8257 | "src/" | 8611 | "src/" |
8258 | ] | 8612 | ] |
8259 | }, | 8613 | }, |
8260 | "notification-url": "https://packagist.org/downloads/", | 8614 | "notification-url": "https://packagist.org/downloads/", |
8261 | "license": [ | 8615 | "license": [ |
8262 | "BSD-3-Clause" | 8616 | "BSD-3-Clause" |
8263 | ], | 8617 | ], |
8264 | "authors": [ | 8618 | "authors": [ |
8265 | { | 8619 | { |
8266 | "name": "Sebastian Bergmann", | 8620 | "name": "Sebastian Bergmann", |
8267 | "email": "sebastian@phpunit.de" | 8621 | "email": "sebastian@phpunit.de" |
8268 | } | 8622 | } |
8269 | ], | 8623 | ], |
8270 | "description": "Provides functionality to handle HHVM/PHP environments", | 8624 | "description": "Provides functionality to handle HHVM/PHP environments", |
8271 | "homepage": "http://www.github.com/sebastianbergmann/environment", | 8625 | "homepage": "http://www.github.com/sebastianbergmann/environment", |
8272 | "keywords": [ | 8626 | "keywords": [ |
8273 | "Xdebug", | 8627 | "Xdebug", |
8274 | "environment", | 8628 | "environment", |
8275 | "hhvm" | 8629 | "hhvm" |
8276 | ], | 8630 | ], |
8277 | "support": { | 8631 | "support": { |
8278 | "issues": "https://github.com/sebastianbergmann/environment/issues", | 8632 | "issues": "https://github.com/sebastianbergmann/environment/issues", |
8279 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" | 8633 | "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" |
8280 | }, | 8634 | }, |
8281 | "funding": [ | 8635 | "funding": [ |
8282 | { | 8636 | { |
8283 | "url": "https://github.com/sebastianbergmann", | 8637 | "url": "https://github.com/sebastianbergmann", |
8284 | "type": "github" | 8638 | "type": "github" |
8285 | } | 8639 | } |
8286 | ], | 8640 | ], |
8287 | "time": "2023-02-03T06:03:51+00:00" | 8641 | "time": "2023-02-03T06:03:51+00:00" |
8288 | }, | 8642 | }, |
8289 | { | 8643 | { |
8290 | "name": "sebastian/exporter", | 8644 | "name": "sebastian/exporter", |
8291 | "version": "4.0.5", | 8645 | "version": "4.0.5", |
8292 | "source": { | 8646 | "source": { |
8293 | "type": "git", | 8647 | "type": "git", |
8294 | "url": "https://github.com/sebastianbergmann/exporter.git", | 8648 | "url": "https://github.com/sebastianbergmann/exporter.git", |
8295 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" | 8649 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d" |
8296 | }, | 8650 | }, |
8297 | "dist": { | 8651 | "dist": { |
8298 | "type": "zip", | 8652 | "type": "zip", |
8299 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", | 8653 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", |
8300 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", | 8654 | "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d", |
8301 | "shasum": "" | 8655 | "shasum": "" |
8302 | }, | 8656 | }, |
8303 | "require": { | 8657 | "require": { |
8304 | "php": ">=7.3", | 8658 | "php": ">=7.3", |
8305 | "sebastian/recursion-context": "^4.0" | 8659 | "sebastian/recursion-context": "^4.0" |
8306 | }, | 8660 | }, |
8307 | "require-dev": { | 8661 | "require-dev": { |
8308 | "ext-mbstring": "*", | 8662 | "ext-mbstring": "*", |
8309 | "phpunit/phpunit": "^9.3" | 8663 | "phpunit/phpunit": "^9.3" |
8310 | }, | 8664 | }, |
8311 | "type": "library", | 8665 | "type": "library", |
8312 | "extra": { | 8666 | "extra": { |
8313 | "branch-alias": { | 8667 | "branch-alias": { |
8314 | "dev-master": "4.0-dev" | 8668 | "dev-master": "4.0-dev" |
8315 | } | 8669 | } |
8316 | }, | 8670 | }, |
8317 | "autoload": { | 8671 | "autoload": { |
8318 | "classmap": [ | 8672 | "classmap": [ |
8319 | "src/" | 8673 | "src/" |
8320 | ] | 8674 | ] |
8321 | }, | 8675 | }, |
8322 | "notification-url": "https://packagist.org/downloads/", | 8676 | "notification-url": "https://packagist.org/downloads/", |
8323 | "license": [ | 8677 | "license": [ |
8324 | "BSD-3-Clause" | 8678 | "BSD-3-Clause" |
8325 | ], | 8679 | ], |
8326 | "authors": [ | 8680 | "authors": [ |
8327 | { | 8681 | { |
8328 | "name": "Sebastian Bergmann", | 8682 | "name": "Sebastian Bergmann", |
8329 | "email": "sebastian@phpunit.de" | 8683 | "email": "sebastian@phpunit.de" |
8330 | }, | 8684 | }, |
8331 | { | 8685 | { |
8332 | "name": "Jeff Welch", | 8686 | "name": "Jeff Welch", |
8333 | "email": "whatthejeff@gmail.com" | 8687 | "email": "whatthejeff@gmail.com" |
8334 | }, | 8688 | }, |
8335 | { | 8689 | { |
8336 | "name": "Volker Dusch", | 8690 | "name": "Volker Dusch", |
8337 | "email": "github@wallbash.com" | 8691 | "email": "github@wallbash.com" |
8338 | }, | 8692 | }, |
8339 | { | 8693 | { |
8340 | "name": "Adam Harvey", | 8694 | "name": "Adam Harvey", |
8341 | "email": "aharvey@php.net" | 8695 | "email": "aharvey@php.net" |
8342 | }, | 8696 | }, |
8343 | { | 8697 | { |
8344 | "name": "Bernhard Schussek", | 8698 | "name": "Bernhard Schussek", |
8345 | "email": "bschussek@gmail.com" | 8699 | "email": "bschussek@gmail.com" |
8346 | } | 8700 | } |
8347 | ], | 8701 | ], |
8348 | "description": "Provides the functionality to export PHP variables for visualization", | 8702 | "description": "Provides the functionality to export PHP variables for visualization", |
8349 | "homepage": "https://www.github.com/sebastianbergmann/exporter", | 8703 | "homepage": "https://www.github.com/sebastianbergmann/exporter", |
8350 | "keywords": [ | 8704 | "keywords": [ |
8351 | "export", | 8705 | "export", |
8352 | "exporter" | 8706 | "exporter" |
8353 | ], | 8707 | ], |
8354 | "support": { | 8708 | "support": { |
8355 | "issues": "https://github.com/sebastianbergmann/exporter/issues", | 8709 | "issues": "https://github.com/sebastianbergmann/exporter/issues", |
8356 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" | 8710 | "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5" |
8357 | }, | 8711 | }, |
8358 | "funding": [ | 8712 | "funding": [ |
8359 | { | 8713 | { |
8360 | "url": "https://github.com/sebastianbergmann", | 8714 | "url": "https://github.com/sebastianbergmann", |
8361 | "type": "github" | 8715 | "type": "github" |
8362 | } | 8716 | } |
8363 | ], | 8717 | ], |
8364 | "time": "2022-09-14T06:03:37+00:00" | 8718 | "time": "2022-09-14T06:03:37+00:00" |
8365 | }, | 8719 | }, |
8366 | { | 8720 | { |
8367 | "name": "sebastian/global-state", | 8721 | "name": "sebastian/global-state", |
8368 | "version": "5.0.5", | 8722 | "version": "5.0.5", |
8369 | "source": { | 8723 | "source": { |
8370 | "type": "git", | 8724 | "type": "git", |
8371 | "url": "https://github.com/sebastianbergmann/global-state.git", | 8725 | "url": "https://github.com/sebastianbergmann/global-state.git", |
8372 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" | 8726 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" |
8373 | }, | 8727 | }, |
8374 | "dist": { | 8728 | "dist": { |
8375 | "type": "zip", | 8729 | "type": "zip", |
8376 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", | 8730 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", |
8377 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", | 8731 | "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", |
8378 | "shasum": "" | 8732 | "shasum": "" |
8379 | }, | 8733 | }, |
8380 | "require": { | 8734 | "require": { |
8381 | "php": ">=7.3", | 8735 | "php": ">=7.3", |
8382 | "sebastian/object-reflector": "^2.0", | 8736 | "sebastian/object-reflector": "^2.0", |
8383 | "sebastian/recursion-context": "^4.0" | 8737 | "sebastian/recursion-context": "^4.0" |
8384 | }, | 8738 | }, |
8385 | "require-dev": { | 8739 | "require-dev": { |
8386 | "ext-dom": "*", | 8740 | "ext-dom": "*", |
8387 | "phpunit/phpunit": "^9.3" | 8741 | "phpunit/phpunit": "^9.3" |
8388 | }, | 8742 | }, |
8389 | "suggest": { | 8743 | "suggest": { |
8390 | "ext-uopz": "*" | 8744 | "ext-uopz": "*" |
8391 | }, | 8745 | }, |
8392 | "type": "library", | 8746 | "type": "library", |
8393 | "extra": { | 8747 | "extra": { |
8394 | "branch-alias": { | 8748 | "branch-alias": { |
8395 | "dev-master": "5.0-dev" | 8749 | "dev-master": "5.0-dev" |
8396 | } | 8750 | } |
8397 | }, | 8751 | }, |
8398 | "autoload": { | 8752 | "autoload": { |
8399 | "classmap": [ | 8753 | "classmap": [ |
8400 | "src/" | 8754 | "src/" |
8401 | ] | 8755 | ] |
8402 | }, | 8756 | }, |
8403 | "notification-url": "https://packagist.org/downloads/", | 8757 | "notification-url": "https://packagist.org/downloads/", |
8404 | "license": [ | 8758 | "license": [ |
8405 | "BSD-3-Clause" | 8759 | "BSD-3-Clause" |
8406 | ], | 8760 | ], |
8407 | "authors": [ | 8761 | "authors": [ |
8408 | { | 8762 | { |
8409 | "name": "Sebastian Bergmann", | 8763 | "name": "Sebastian Bergmann", |
8410 | "email": "sebastian@phpunit.de" | 8764 | "email": "sebastian@phpunit.de" |
8411 | } | 8765 | } |
8412 | ], | 8766 | ], |
8413 | "description": "Snapshotting of global state", | 8767 | "description": "Snapshotting of global state", |
8414 | "homepage": "http://www.github.com/sebastianbergmann/global-state", | 8768 | "homepage": "http://www.github.com/sebastianbergmann/global-state", |
8415 | "keywords": [ | 8769 | "keywords": [ |
8416 | "global state" | 8770 | "global state" |
8417 | ], | 8771 | ], |
8418 | "support": { | 8772 | "support": { |
8419 | "issues": "https://github.com/sebastianbergmann/global-state/issues", | 8773 | "issues": "https://github.com/sebastianbergmann/global-state/issues", |
8420 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" | 8774 | "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" |
8421 | }, | 8775 | }, |
8422 | "funding": [ | 8776 | "funding": [ |
8423 | { | 8777 | { |
8424 | "url": "https://github.com/sebastianbergmann", | 8778 | "url": "https://github.com/sebastianbergmann", |
8425 | "type": "github" | 8779 | "type": "github" |
8426 | } | 8780 | } |
8427 | ], | 8781 | ], |
8428 | "time": "2022-02-14T08:28:10+00:00" | 8782 | "time": "2022-02-14T08:28:10+00:00" |
8429 | }, | 8783 | }, |
8430 | { | 8784 | { |
8431 | "name": "sebastian/lines-of-code", | 8785 | "name": "sebastian/lines-of-code", |
8432 | "version": "1.0.3", | 8786 | "version": "1.0.3", |
8433 | "source": { | 8787 | "source": { |
8434 | "type": "git", | 8788 | "type": "git", |
8435 | "url": "https://github.com/sebastianbergmann/lines-of-code.git", | 8789 | "url": "https://github.com/sebastianbergmann/lines-of-code.git", |
8436 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" | 8790 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" |
8437 | }, | 8791 | }, |
8438 | "dist": { | 8792 | "dist": { |
8439 | "type": "zip", | 8793 | "type": "zip", |
8440 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", | 8794 | "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", |
8441 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", | 8795 | "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", |
8442 | "shasum": "" | 8796 | "shasum": "" |
8443 | }, | 8797 | }, |
8444 | "require": { | 8798 | "require": { |
8445 | "nikic/php-parser": "^4.6", | 8799 | "nikic/php-parser": "^4.6", |
8446 | "php": ">=7.3" | 8800 | "php": ">=7.3" |
8447 | }, | 8801 | }, |
8448 | "require-dev": { | 8802 | "require-dev": { |
8449 | "phpunit/phpunit": "^9.3" | 8803 | "phpunit/phpunit": "^9.3" |
8450 | }, | 8804 | }, |
8451 | "type": "library", | 8805 | "type": "library", |
8452 | "extra": { | 8806 | "extra": { |
8453 | "branch-alias": { | 8807 | "branch-alias": { |
8454 | "dev-master": "1.0-dev" | 8808 | "dev-master": "1.0-dev" |
8455 | } | 8809 | } |
8456 | }, | 8810 | }, |
8457 | "autoload": { | 8811 | "autoload": { |
8458 | "classmap": [ | 8812 | "classmap": [ |
8459 | "src/" | 8813 | "src/" |
8460 | ] | 8814 | ] |
8461 | }, | 8815 | }, |
8462 | "notification-url": "https://packagist.org/downloads/", | 8816 | "notification-url": "https://packagist.org/downloads/", |
8463 | "license": [ | 8817 | "license": [ |
8464 | "BSD-3-Clause" | 8818 | "BSD-3-Clause" |
8465 | ], | 8819 | ], |
8466 | "authors": [ | 8820 | "authors": [ |
8467 | { | 8821 | { |
8468 | "name": "Sebastian Bergmann", | 8822 | "name": "Sebastian Bergmann", |
8469 | "email": "sebastian@phpunit.de", | 8823 | "email": "sebastian@phpunit.de", |
8470 | "role": "lead" | 8824 | "role": "lead" |
8471 | } | 8825 | } |
8472 | ], | 8826 | ], |
8473 | "description": "Library for counting the lines of code in PHP source code", | 8827 | "description": "Library for counting the lines of code in PHP source code", |
8474 | "homepage": "https://github.com/sebastianbergmann/lines-of-code", | 8828 | "homepage": "https://github.com/sebastianbergmann/lines-of-code", |
8475 | "support": { | 8829 | "support": { |
8476 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", | 8830 | "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", |
8477 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" | 8831 | "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" |
8478 | }, | 8832 | }, |
8479 | "funding": [ | 8833 | "funding": [ |
8480 | { | 8834 | { |
8481 | "url": "https://github.com/sebastianbergmann", | 8835 | "url": "https://github.com/sebastianbergmann", |
8482 | "type": "github" | 8836 | "type": "github" |
8483 | } | 8837 | } |
8484 | ], | 8838 | ], |
8485 | "time": "2020-11-28T06:42:11+00:00" | 8839 | "time": "2020-11-28T06:42:11+00:00" |
8486 | }, | 8840 | }, |
8487 | { | 8841 | { |
8488 | "name": "sebastian/object-enumerator", | 8842 | "name": "sebastian/object-enumerator", |
8489 | "version": "4.0.4", | 8843 | "version": "4.0.4", |
8490 | "source": { | 8844 | "source": { |
8491 | "type": "git", | 8845 | "type": "git", |
8492 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", | 8846 | "url": "https://github.com/sebastianbergmann/object-enumerator.git", |
8493 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" | 8847 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" |
8494 | }, | 8848 | }, |
8495 | "dist": { | 8849 | "dist": { |
8496 | "type": "zip", | 8850 | "type": "zip", |
8497 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", | 8851 | "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", |
8498 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", | 8852 | "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", |
8499 | "shasum": "" | 8853 | "shasum": "" |
8500 | }, | 8854 | }, |
8501 | "require": { | 8855 | "require": { |
8502 | "php": ">=7.3", | 8856 | "php": ">=7.3", |
8503 | "sebastian/object-reflector": "^2.0", | 8857 | "sebastian/object-reflector": "^2.0", |
8504 | "sebastian/recursion-context": "^4.0" | 8858 | "sebastian/recursion-context": "^4.0" |
8505 | }, | 8859 | }, |
8506 | "require-dev": { | 8860 | "require-dev": { |
8507 | "phpunit/phpunit": "^9.3" | 8861 | "phpunit/phpunit": "^9.3" |
8508 | }, | 8862 | }, |
8509 | "type": "library", | 8863 | "type": "library", |
8510 | "extra": { | 8864 | "extra": { |
8511 | "branch-alias": { | 8865 | "branch-alias": { |
8512 | "dev-master": "4.0-dev" | 8866 | "dev-master": "4.0-dev" |
8513 | } | 8867 | } |
8514 | }, | 8868 | }, |
8515 | "autoload": { | 8869 | "autoload": { |
8516 | "classmap": [ | 8870 | "classmap": [ |
8517 | "src/" | 8871 | "src/" |
8518 | ] | 8872 | ] |
8519 | }, | 8873 | }, |
8520 | "notification-url": "https://packagist.org/downloads/", | 8874 | "notification-url": "https://packagist.org/downloads/", |
8521 | "license": [ | 8875 | "license": [ |
8522 | "BSD-3-Clause" | 8876 | "BSD-3-Clause" |
8523 | ], | 8877 | ], |
8524 | "authors": [ | 8878 | "authors": [ |
8525 | { | 8879 | { |
8526 | "name": "Sebastian Bergmann", | 8880 | "name": "Sebastian Bergmann", |
8527 | "email": "sebastian@phpunit.de" | 8881 | "email": "sebastian@phpunit.de" |
8528 | } | 8882 | } |
8529 | ], | 8883 | ], |
8530 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", | 8884 | "description": "Traverses array structures and object graphs to enumerate all referenced objects", |
8531 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", | 8885 | "homepage": "https://github.com/sebastianbergmann/object-enumerator/", |
8532 | "support": { | 8886 | "support": { |
8533 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", | 8887 | "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", |
8534 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" | 8888 | "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" |
8535 | }, | 8889 | }, |
8536 | "funding": [ | 8890 | "funding": [ |
8537 | { | 8891 | { |
8538 | "url": "https://github.com/sebastianbergmann", | 8892 | "url": "https://github.com/sebastianbergmann", |
8539 | "type": "github" | 8893 | "type": "github" |
8540 | } | 8894 | } |
8541 | ], | 8895 | ], |
8542 | "time": "2020-10-26T13:12:34+00:00" | 8896 | "time": "2020-10-26T13:12:34+00:00" |
8543 | }, | 8897 | }, |
8544 | { | 8898 | { |
8545 | "name": "sebastian/object-reflector", | 8899 | "name": "sebastian/object-reflector", |
8546 | "version": "2.0.4", | 8900 | "version": "2.0.4", |
8547 | "source": { | 8901 | "source": { |
8548 | "type": "git", | 8902 | "type": "git", |
8549 | "url": "https://github.com/sebastianbergmann/object-reflector.git", | 8903 | "url": "https://github.com/sebastianbergmann/object-reflector.git", |
8550 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" | 8904 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" |
8551 | }, | 8905 | }, |
8552 | "dist": { | 8906 | "dist": { |
8553 | "type": "zip", | 8907 | "type": "zip", |
8554 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", | 8908 | "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", |
8555 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", | 8909 | "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", |
8556 | "shasum": "" | 8910 | "shasum": "" |
8557 | }, | 8911 | }, |
8558 | "require": { | 8912 | "require": { |
8559 | "php": ">=7.3" | 8913 | "php": ">=7.3" |
8560 | }, | 8914 | }, |
8561 | "require-dev": { | 8915 | "require-dev": { |
8562 | "phpunit/phpunit": "^9.3" | 8916 | "phpunit/phpunit": "^9.3" |
8563 | }, | 8917 | }, |
8564 | "type": "library", | 8918 | "type": "library", |
8565 | "extra": { | 8919 | "extra": { |
8566 | "branch-alias": { | 8920 | "branch-alias": { |
8567 | "dev-master": "2.0-dev" | 8921 | "dev-master": "2.0-dev" |
8568 | } | 8922 | } |
8569 | }, | 8923 | }, |
8570 | "autoload": { | 8924 | "autoload": { |
8571 | "classmap": [ | 8925 | "classmap": [ |
8572 | "src/" | 8926 | "src/" |
8573 | ] | 8927 | ] |
8574 | }, | 8928 | }, |
8575 | "notification-url": "https://packagist.org/downloads/", | 8929 | "notification-url": "https://packagist.org/downloads/", |
8576 | "license": [ | 8930 | "license": [ |
8577 | "BSD-3-Clause" | 8931 | "BSD-3-Clause" |
8578 | ], | 8932 | ], |
8579 | "authors": [ | 8933 | "authors": [ |
8580 | { | 8934 | { |
8581 | "name": "Sebastian Bergmann", | 8935 | "name": "Sebastian Bergmann", |
8582 | "email": "sebastian@phpunit.de" | 8936 | "email": "sebastian@phpunit.de" |
8583 | } | 8937 | } |
8584 | ], | 8938 | ], |
8585 | "description": "Allows reflection of object attributes, including inherited and non-public ones", | 8939 | "description": "Allows reflection of object attributes, including inherited and non-public ones", |
8586 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", | 8940 | "homepage": "https://github.com/sebastianbergmann/object-reflector/", |
8587 | "support": { | 8941 | "support": { |
8588 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues", | 8942 | "issues": "https://github.com/sebastianbergmann/object-reflector/issues", |
8589 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" | 8943 | "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" |
8590 | }, | 8944 | }, |
8591 | "funding": [ | 8945 | "funding": [ |
8592 | { | 8946 | { |
8593 | "url": "https://github.com/sebastianbergmann", | 8947 | "url": "https://github.com/sebastianbergmann", |
8594 | "type": "github" | 8948 | "type": "github" |
8595 | } | 8949 | } |
8596 | ], | 8950 | ], |
8597 | "time": "2020-10-26T13:14:26+00:00" | 8951 | "time": "2020-10-26T13:14:26+00:00" |
8598 | }, | 8952 | }, |
8599 | { | 8953 | { |
8600 | "name": "sebastian/recursion-context", | 8954 | "name": "sebastian/recursion-context", |
8601 | "version": "4.0.5", | 8955 | "version": "4.0.5", |
8602 | "source": { | 8956 | "source": { |
8603 | "type": "git", | 8957 | "type": "git", |
8604 | "url": "https://github.com/sebastianbergmann/recursion-context.git", | 8958 | "url": "https://github.com/sebastianbergmann/recursion-context.git", |
8605 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" | 8959 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" |
8606 | }, | 8960 | }, |
8607 | "dist": { | 8961 | "dist": { |
8608 | "type": "zip", | 8962 | "type": "zip", |
8609 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", | 8963 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", |
8610 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", | 8964 | "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", |
8611 | "shasum": "" | 8965 | "shasum": "" |
8612 | }, | 8966 | }, |
8613 | "require": { | 8967 | "require": { |
8614 | "php": ">=7.3" | 8968 | "php": ">=7.3" |
8615 | }, | 8969 | }, |
8616 | "require-dev": { | 8970 | "require-dev": { |
8617 | "phpunit/phpunit": "^9.3" | 8971 | "phpunit/phpunit": "^9.3" |
8618 | }, | 8972 | }, |
8619 | "type": "library", | 8973 | "type": "library", |
8620 | "extra": { | 8974 | "extra": { |
8621 | "branch-alias": { | 8975 | "branch-alias": { |
8622 | "dev-master": "4.0-dev" | 8976 | "dev-master": "4.0-dev" |
8623 | } | 8977 | } |
8624 | }, | 8978 | }, |
8625 | "autoload": { | 8979 | "autoload": { |
8626 | "classmap": [ | 8980 | "classmap": [ |
8627 | "src/" | 8981 | "src/" |
8628 | ] | 8982 | ] |
8629 | }, | 8983 | }, |
8630 | "notification-url": "https://packagist.org/downloads/", | 8984 | "notification-url": "https://packagist.org/downloads/", |
8631 | "license": [ | 8985 | "license": [ |
8632 | "BSD-3-Clause" | 8986 | "BSD-3-Clause" |
8633 | ], | 8987 | ], |
8634 | "authors": [ | 8988 | "authors": [ |
8635 | { | 8989 | { |
8636 | "name": "Sebastian Bergmann", | 8990 | "name": "Sebastian Bergmann", |
8637 | "email": "sebastian@phpunit.de" | 8991 | "email": "sebastian@phpunit.de" |
8638 | }, | 8992 | }, |
8639 | { | 8993 | { |
8640 | "name": "Jeff Welch", | 8994 | "name": "Jeff Welch", |
8641 | "email": "whatthejeff@gmail.com" | 8995 | "email": "whatthejeff@gmail.com" |
8642 | }, | 8996 | }, |
8643 | { | 8997 | { |
8644 | "name": "Adam Harvey", | 8998 | "name": "Adam Harvey", |
8645 | "email": "aharvey@php.net" | 8999 | "email": "aharvey@php.net" |
8646 | } | 9000 | } |
8647 | ], | 9001 | ], |
8648 | "description": "Provides functionality to recursively process PHP variables", | 9002 | "description": "Provides functionality to recursively process PHP variables", |
8649 | "homepage": "https://github.com/sebastianbergmann/recursion-context", | 9003 | "homepage": "https://github.com/sebastianbergmann/recursion-context", |
8650 | "support": { | 9004 | "support": { |
8651 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues", | 9005 | "issues": "https://github.com/sebastianbergmann/recursion-context/issues", |
8652 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" | 9006 | "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" |
8653 | }, | 9007 | }, |
8654 | "funding": [ | 9008 | "funding": [ |
8655 | { | 9009 | { |
8656 | "url": "https://github.com/sebastianbergmann", | 9010 | "url": "https://github.com/sebastianbergmann", |
8657 | "type": "github" | 9011 | "type": "github" |
8658 | } | 9012 | } |
8659 | ], | 9013 | ], |
8660 | "time": "2023-02-03T06:07:39+00:00" | 9014 | "time": "2023-02-03T06:07:39+00:00" |
8661 | }, | 9015 | }, |
8662 | { | 9016 | { |
8663 | "name": "sebastian/resource-operations", | 9017 | "name": "sebastian/resource-operations", |
8664 | "version": "3.0.3", | 9018 | "version": "3.0.3", |
8665 | "source": { | 9019 | "source": { |
8666 | "type": "git", | 9020 | "type": "git", |
8667 | "url": "https://github.com/sebastianbergmann/resource-operations.git", | 9021 | "url": "https://github.com/sebastianbergmann/resource-operations.git", |
8668 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" | 9022 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" |
8669 | }, | 9023 | }, |
8670 | "dist": { | 9024 | "dist": { |
8671 | "type": "zip", | 9025 | "type": "zip", |
8672 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", | 9026 | "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", |
8673 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", | 9027 | "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", |
8674 | "shasum": "" | 9028 | "shasum": "" |
8675 | }, | 9029 | }, |
8676 | "require": { | 9030 | "require": { |
8677 | "php": ">=7.3" | 9031 | "php": ">=7.3" |
8678 | }, | 9032 | }, |
8679 | "require-dev": { | 9033 | "require-dev": { |
8680 | "phpunit/phpunit": "^9.0" | 9034 | "phpunit/phpunit": "^9.0" |
8681 | }, | 9035 | }, |
8682 | "type": "library", | 9036 | "type": "library", |
8683 | "extra": { | 9037 | "extra": { |
8684 | "branch-alias": { | 9038 | "branch-alias": { |
8685 | "dev-master": "3.0-dev" | 9039 | "dev-master": "3.0-dev" |
8686 | } | 9040 | } |
8687 | }, | 9041 | }, |
8688 | "autoload": { | 9042 | "autoload": { |
8689 | "classmap": [ | 9043 | "classmap": [ |
8690 | "src/" | 9044 | "src/" |
8691 | ] | 9045 | ] |
8692 | }, | 9046 | }, |
8693 | "notification-url": "https://packagist.org/downloads/", | 9047 | "notification-url": "https://packagist.org/downloads/", |
8694 | "license": [ | 9048 | "license": [ |
8695 | "BSD-3-Clause" | 9049 | "BSD-3-Clause" |
8696 | ], | 9050 | ], |
8697 | "authors": [ | 9051 | "authors": [ |
8698 | { | 9052 | { |
8699 | "name": "Sebastian Bergmann", | 9053 | "name": "Sebastian Bergmann", |
8700 | "email": "sebastian@phpunit.de" | 9054 | "email": "sebastian@phpunit.de" |
8701 | } | 9055 | } |
8702 | ], | 9056 | ], |
8703 | "description": "Provides a list of PHP built-in functions that operate on resources", | 9057 | "description": "Provides a list of PHP built-in functions that operate on resources", |
8704 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", | 9058 | "homepage": "https://www.github.com/sebastianbergmann/resource-operations", |
8705 | "support": { | 9059 | "support": { |
8706 | "issues": "https://github.com/sebastianbergmann/resource-operations/issues", | 9060 | "issues": "https://github.com/sebastianbergmann/resource-operations/issues", |
8707 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" | 9061 | "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" |
8708 | }, | 9062 | }, |
8709 | "funding": [ | 9063 | "funding": [ |
8710 | { | 9064 | { |
8711 | "url": "https://github.com/sebastianbergmann", | 9065 | "url": "https://github.com/sebastianbergmann", |
8712 | "type": "github" | 9066 | "type": "github" |
8713 | } | 9067 | } |
8714 | ], | 9068 | ], |
8715 | "time": "2020-09-28T06:45:17+00:00" | 9069 | "time": "2020-09-28T06:45:17+00:00" |
8716 | }, | 9070 | }, |
8717 | { | 9071 | { |
8718 | "name": "sebastian/type", | 9072 | "name": "sebastian/type", |
8719 | "version": "3.2.1", | 9073 | "version": "3.2.1", |
8720 | "source": { | 9074 | "source": { |
8721 | "type": "git", | 9075 | "type": "git", |
8722 | "url": "https://github.com/sebastianbergmann/type.git", | 9076 | "url": "https://github.com/sebastianbergmann/type.git", |
8723 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" | 9077 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" |
8724 | }, | 9078 | }, |
8725 | "dist": { | 9079 | "dist": { |
8726 | "type": "zip", | 9080 | "type": "zip", |
8727 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", | 9081 | "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", |
8728 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", | 9082 | "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", |
8729 | "shasum": "" | 9083 | "shasum": "" |
8730 | }, | 9084 | }, |
8731 | "require": { | 9085 | "require": { |
8732 | "php": ">=7.3" | 9086 | "php": ">=7.3" |
8733 | }, | 9087 | }, |
8734 | "require-dev": { | 9088 | "require-dev": { |
8735 | "phpunit/phpunit": "^9.5" | 9089 | "phpunit/phpunit": "^9.5" |
8736 | }, | 9090 | }, |
8737 | "type": "library", | 9091 | "type": "library", |
8738 | "extra": { | 9092 | "extra": { |
8739 | "branch-alias": { | 9093 | "branch-alias": { |
8740 | "dev-master": "3.2-dev" | 9094 | "dev-master": "3.2-dev" |
8741 | } | 9095 | } |
8742 | }, | 9096 | }, |
8743 | "autoload": { | 9097 | "autoload": { |
8744 | "classmap": [ | 9098 | "classmap": [ |
8745 | "src/" | 9099 | "src/" |
8746 | ] | 9100 | ] |
8747 | }, | 9101 | }, |
8748 | "notification-url": "https://packagist.org/downloads/", | 9102 | "notification-url": "https://packagist.org/downloads/", |
8749 | "license": [ | 9103 | "license": [ |
8750 | "BSD-3-Clause" | 9104 | "BSD-3-Clause" |
8751 | ], | 9105 | ], |
8752 | "authors": [ | 9106 | "authors": [ |
8753 | { | 9107 | { |
8754 | "name": "Sebastian Bergmann", | 9108 | "name": "Sebastian Bergmann", |
8755 | "email": "sebastian@phpunit.de", | 9109 | "email": "sebastian@phpunit.de", |
8756 | "role": "lead" | 9110 | "role": "lead" |
8757 | } | 9111 | } |
8758 | ], | 9112 | ], |
8759 | "description": "Collection of value objects that represent the types of the PHP type system", | 9113 | "description": "Collection of value objects that represent the types of the PHP type system", |
8760 | "homepage": "https://github.com/sebastianbergmann/type", | 9114 | "homepage": "https://github.com/sebastianbergmann/type", |
8761 | "support": { | 9115 | "support": { |
8762 | "issues": "https://github.com/sebastianbergmann/type/issues", | 9116 | "issues": "https://github.com/sebastianbergmann/type/issues", |
8763 | "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" | 9117 | "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" |
8764 | }, | 9118 | }, |
8765 | "funding": [ | 9119 | "funding": [ |
8766 | { | 9120 | { |
8767 | "url": "https://github.com/sebastianbergmann", | 9121 | "url": "https://github.com/sebastianbergmann", |
8768 | "type": "github" | 9122 | "type": "github" |
8769 | } | 9123 | } |
8770 | ], | 9124 | ], |
8771 | "time": "2023-02-03T06:13:03+00:00" | 9125 | "time": "2023-02-03T06:13:03+00:00" |
8772 | }, | 9126 | }, |
8773 | { | 9127 | { |
8774 | "name": "sebastian/version", | 9128 | "name": "sebastian/version", |
8775 | "version": "3.0.2", | 9129 | "version": "3.0.2", |
8776 | "source": { | 9130 | "source": { |
8777 | "type": "git", | 9131 | "type": "git", |
8778 | "url": "https://github.com/sebastianbergmann/version.git", | 9132 | "url": "https://github.com/sebastianbergmann/version.git", |
8779 | "reference": "c6c1022351a901512170118436c764e473f6de8c" | 9133 | "reference": "c6c1022351a901512170118436c764e473f6de8c" |
8780 | }, | 9134 | }, |
8781 | "dist": { | 9135 | "dist": { |
8782 | "type": "zip", | 9136 | "type": "zip", |
8783 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", | 9137 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", |
8784 | "reference": "c6c1022351a901512170118436c764e473f6de8c", | 9138 | "reference": "c6c1022351a901512170118436c764e473f6de8c", |
8785 | "shasum": "" | 9139 | "shasum": "" |
8786 | }, | 9140 | }, |
8787 | "require": { | 9141 | "require": { |
8788 | "php": ">=7.3" | 9142 | "php": ">=7.3" |
8789 | }, | 9143 | }, |
8790 | "type": "library", | 9144 | "type": "library", |
8791 | "extra": { | 9145 | "extra": { |
8792 | "branch-alias": { | 9146 | "branch-alias": { |
8793 | "dev-master": "3.0-dev" | 9147 | "dev-master": "3.0-dev" |
8794 | } | 9148 | } |
8795 | }, | 9149 | }, |
8796 | "autoload": { | 9150 | "autoload": { |
8797 | "classmap": [ | 9151 | "classmap": [ |
8798 | "src/" | 9152 | "src/" |
8799 | ] | 9153 | ] |
8800 | }, | 9154 | }, |
8801 | "notification-url": "https://packagist.org/downloads/", | 9155 | "notification-url": "https://packagist.org/downloads/", |
8802 | "license": [ | 9156 | "license": [ |
8803 | "BSD-3-Clause" | 9157 | "BSD-3-Clause" |
8804 | ], | 9158 | ], |
8805 | "authors": [ | 9159 | "authors": [ |
8806 | { | 9160 | { |
8807 | "name": "Sebastian Bergmann", | 9161 | "name": "Sebastian Bergmann", |
8808 | "email": "sebastian@phpunit.de", | 9162 | "email": "sebastian@phpunit.de", |
8809 | "role": "lead" | 9163 | "role": "lead" |
8810 | } | 9164 | } |
8811 | ], | 9165 | ], |
8812 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", | 9166 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", |
8813 | "homepage": "https://github.com/sebastianbergmann/version", | 9167 | "homepage": "https://github.com/sebastianbergmann/version", |
8814 | "support": { | 9168 | "support": { |
8815 | "issues": "https://github.com/sebastianbergmann/version/issues", | 9169 | "issues": "https://github.com/sebastianbergmann/version/issues", |
8816 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" | 9170 | "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" |
8817 | }, | 9171 | }, |
8818 | "funding": [ | 9172 | "funding": [ |
8819 | { | 9173 | { |
8820 | "url": "https://github.com/sebastianbergmann", | 9174 | "url": "https://github.com/sebastianbergmann", |
8821 | "type": "github" | 9175 | "type": "github" |
8822 | } | 9176 | } |
8823 | ], | 9177 | ], |
8824 | "time": "2020-09-28T06:39:44+00:00" | 9178 | "time": "2020-09-28T06:39:44+00:00" |
8825 | }, | 9179 | }, |
8826 | { | 9180 | { |
8827 | "name": "spatie/backtrace", | 9181 | "name": "spatie/backtrace", |
8828 | "version": "1.4.0", | 9182 | "version": "1.4.0", |
8829 | "source": { | 9183 | "source": { |
8830 | "type": "git", | 9184 | "type": "git", |
8831 | "url": "https://github.com/spatie/backtrace.git", | 9185 | "url": "https://github.com/spatie/backtrace.git", |
8832 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c" | 9186 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c" |
8833 | }, | 9187 | }, |
8834 | "dist": { | 9188 | "dist": { |
8835 | "type": "zip", | 9189 | "type": "zip", |
8836 | "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c", | 9190 | "url": "https://api.github.com/repos/spatie/backtrace/zipball/ec4dd16476b802dbdc6b4467f84032837e316b8c", |
8837 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c", | 9191 | "reference": "ec4dd16476b802dbdc6b4467f84032837e316b8c", |
8838 | "shasum": "" | 9192 | "shasum": "" |
8839 | }, | 9193 | }, |
8840 | "require": { | 9194 | "require": { |
8841 | "php": "^7.3|^8.0" | 9195 | "php": "^7.3|^8.0" |
8842 | }, | 9196 | }, |
8843 | "require-dev": { | 9197 | "require-dev": { |
8844 | "ext-json": "*", | 9198 | "ext-json": "*", |
8845 | "phpunit/phpunit": "^9.3", | 9199 | "phpunit/phpunit": "^9.3", |
8846 | "spatie/phpunit-snapshot-assertions": "^4.2", | 9200 | "spatie/phpunit-snapshot-assertions": "^4.2", |
8847 | "symfony/var-dumper": "^5.1" | 9201 | "symfony/var-dumper": "^5.1" |
8848 | }, | 9202 | }, |
8849 | "type": "library", | 9203 | "type": "library", |
8850 | "autoload": { | 9204 | "autoload": { |
8851 | "psr-4": { | 9205 | "psr-4": { |
8852 | "Spatie\\Backtrace\\": "src" | 9206 | "Spatie\\Backtrace\\": "src" |
8853 | } | 9207 | } |
8854 | }, | 9208 | }, |
8855 | "notification-url": "https://packagist.org/downloads/", | 9209 | "notification-url": "https://packagist.org/downloads/", |
8856 | "license": [ | 9210 | "license": [ |
8857 | "MIT" | 9211 | "MIT" |
8858 | ], | 9212 | ], |
8859 | "authors": [ | 9213 | "authors": [ |
8860 | { | 9214 | { |
8861 | "name": "Freek Van de Herten", | 9215 | "name": "Freek Van de Herten", |
8862 | "email": "freek@spatie.be", | 9216 | "email": "freek@spatie.be", |
8863 | "homepage": "https://spatie.be", | 9217 | "homepage": "https://spatie.be", |
8864 | "role": "Developer" | 9218 | "role": "Developer" |
8865 | } | 9219 | } |
8866 | ], | 9220 | ], |
8867 | "description": "A better backtrace", | 9221 | "description": "A better backtrace", |
8868 | "homepage": "https://github.com/spatie/backtrace", | 9222 | "homepage": "https://github.com/spatie/backtrace", |
8869 | "keywords": [ | 9223 | "keywords": [ |
8870 | "Backtrace", | 9224 | "Backtrace", |
8871 | "spatie" | 9225 | "spatie" |
8872 | ], | 9226 | ], |
8873 | "support": { | 9227 | "support": { |
8874 | "source": "https://github.com/spatie/backtrace/tree/1.4.0" | 9228 | "source": "https://github.com/spatie/backtrace/tree/1.4.0" |
8875 | }, | 9229 | }, |
8876 | "funding": [ | 9230 | "funding": [ |
8877 | { | 9231 | { |
8878 | "url": "https://github.com/sponsors/spatie", | 9232 | "url": "https://github.com/sponsors/spatie", |
8879 | "type": "github" | 9233 | "type": "github" |
8880 | }, | 9234 | }, |
8881 | { | 9235 | { |
8882 | "url": "https://spatie.be/open-source/support-us", | 9236 | "url": "https://spatie.be/open-source/support-us", |
8883 | "type": "other" | 9237 | "type": "other" |
8884 | } | 9238 | } |
8885 | ], | 9239 | ], |
8886 | "time": "2023-03-04T08:57:24+00:00" | 9240 | "time": "2023-03-04T08:57:24+00:00" |
8887 | }, | 9241 | }, |
8888 | { | 9242 | { |
8889 | "name": "spatie/flare-client-php", | 9243 | "name": "spatie/flare-client-php", |
8890 | "version": "1.3.6", | 9244 | "version": "1.3.6", |
8891 | "source": { | 9245 | "source": { |
8892 | "type": "git", | 9246 | "type": "git", |
8893 | "url": "https://github.com/spatie/flare-client-php.git", | 9247 | "url": "https://github.com/spatie/flare-client-php.git", |
8894 | "reference": "530ac81255af79f114344286e4275f8869c671e2" | 9248 | "reference": "530ac81255af79f114344286e4275f8869c671e2" |
8895 | }, | 9249 | }, |
8896 | "dist": { | 9250 | "dist": { |
8897 | "type": "zip", | 9251 | "type": "zip", |
8898 | "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2", | 9252 | "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/530ac81255af79f114344286e4275f8869c671e2", |
8899 | "reference": "530ac81255af79f114344286e4275f8869c671e2", | 9253 | "reference": "530ac81255af79f114344286e4275f8869c671e2", |
8900 | "shasum": "" | 9254 | "shasum": "" |
8901 | }, | 9255 | }, |
8902 | "require": { | 9256 | "require": { |
8903 | "illuminate/pipeline": "^8.0|^9.0|^10.0", | 9257 | "illuminate/pipeline": "^8.0|^9.0|^10.0", |
8904 | "php": "^8.0", | 9258 | "php": "^8.0", |
8905 | "spatie/backtrace": "^1.2", | 9259 | "spatie/backtrace": "^1.2", |
8906 | "symfony/http-foundation": "^5.0|^6.0", | 9260 | "symfony/http-foundation": "^5.0|^6.0", |
8907 | "symfony/mime": "^5.2|^6.0", | 9261 | "symfony/mime": "^5.2|^6.0", |
8908 | "symfony/process": "^5.2|^6.0", | 9262 | "symfony/process": "^5.2|^6.0", |
8909 | "symfony/var-dumper": "^5.2|^6.0" | 9263 | "symfony/var-dumper": "^5.2|^6.0" |
8910 | }, | 9264 | }, |
8911 | "require-dev": { | 9265 | "require-dev": { |
8912 | "dms/phpunit-arraysubset-asserts": "^0.3.0", | 9266 | "dms/phpunit-arraysubset-asserts": "^0.3.0", |
8913 | "pestphp/pest": "^1.20", | 9267 | "pestphp/pest": "^1.20", |
8914 | "phpstan/extension-installer": "^1.1", | 9268 | "phpstan/extension-installer": "^1.1", |
8915 | "phpstan/phpstan-deprecation-rules": "^1.0", | 9269 | "phpstan/phpstan-deprecation-rules": "^1.0", |
8916 | "phpstan/phpstan-phpunit": "^1.0", | 9270 | "phpstan/phpstan-phpunit": "^1.0", |
8917 | "spatie/phpunit-snapshot-assertions": "^4.0" | 9271 | "spatie/phpunit-snapshot-assertions": "^4.0" |
8918 | }, | 9272 | }, |
8919 | "type": "library", | 9273 | "type": "library", |
8920 | "extra": { | 9274 | "extra": { |
8921 | "branch-alias": { | 9275 | "branch-alias": { |
8922 | "dev-main": "1.1.x-dev" | 9276 | "dev-main": "1.1.x-dev" |
8923 | } | 9277 | } |
8924 | }, | 9278 | }, |
8925 | "autoload": { | 9279 | "autoload": { |
8926 | "files": [ | 9280 | "files": [ |
8927 | "src/helpers.php" | 9281 | "src/helpers.php" |
8928 | ], | 9282 | ], |
8929 | "psr-4": { | 9283 | "psr-4": { |
8930 | "Spatie\\FlareClient\\": "src" | 9284 | "Spatie\\FlareClient\\": "src" |
8931 | } | 9285 | } |
8932 | }, | 9286 | }, |
8933 | "notification-url": "https://packagist.org/downloads/", | 9287 | "notification-url": "https://packagist.org/downloads/", |
8934 | "license": [ | 9288 | "license": [ |
8935 | "MIT" | 9289 | "MIT" |
8936 | ], | 9290 | ], |
8937 | "description": "Send PHP errors to Flare", | 9291 | "description": "Send PHP errors to Flare", |
8938 | "homepage": "https://github.com/spatie/flare-client-php", | 9292 | "homepage": "https://github.com/spatie/flare-client-php", |
8939 | "keywords": [ | 9293 | "keywords": [ |
8940 | "exception", | 9294 | "exception", |
8941 | "flare", | 9295 | "flare", |
8942 | "reporting", | 9296 | "reporting", |
8943 | "spatie" | 9297 | "spatie" |
8944 | ], | 9298 | ], |
8945 | "support": { | 9299 | "support": { |
8946 | "issues": "https://github.com/spatie/flare-client-php/issues", | 9300 | "issues": "https://github.com/spatie/flare-client-php/issues", |
8947 | "source": "https://github.com/spatie/flare-client-php/tree/1.3.6" | 9301 | "source": "https://github.com/spatie/flare-client-php/tree/1.3.6" |
8948 | }, | 9302 | }, |
8949 | "funding": [ | 9303 | "funding": [ |
8950 | { | 9304 | { |
8951 | "url": "https://github.com/spatie", | 9305 | "url": "https://github.com/spatie", |
8952 | "type": "github" | 9306 | "type": "github" |
8953 | } | 9307 | } |
8954 | ], | 9308 | ], |
8955 | "time": "2023-04-12T07:57:12+00:00" | 9309 | "time": "2023-04-12T07:57:12+00:00" |
8956 | }, | 9310 | }, |
8957 | { | 9311 | { |
8958 | "name": "spatie/ignition", | 9312 | "name": "spatie/ignition", |
8959 | "version": "1.7.0", | 9313 | "version": "1.7.0", |
8960 | "source": { | 9314 | "source": { |
8961 | "type": "git", | 9315 | "type": "git", |
8962 | "url": "https://github.com/spatie/ignition.git", | 9316 | "url": "https://github.com/spatie/ignition.git", |
8963 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78" | 9317 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78" |
8964 | }, | 9318 | }, |
8965 | "dist": { | 9319 | "dist": { |
8966 | "type": "zip", | 9320 | "type": "zip", |
8967 | "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", | 9321 | "url": "https://api.github.com/repos/spatie/ignition/zipball/f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", |
8968 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", | 9322 | "reference": "f747d83c6d7cb6229b462f3ddbb3a82dc0db0f78", |
8969 | "shasum": "" | 9323 | "shasum": "" |
8970 | }, | 9324 | }, |
8971 | "require": { | 9325 | "require": { |
8972 | "ext-json": "*", | 9326 | "ext-json": "*", |
8973 | "ext-mbstring": "*", | 9327 | "ext-mbstring": "*", |
8974 | "php": "^8.0", | 9328 | "php": "^8.0", |
8975 | "spatie/backtrace": "^1.4", | 9329 | "spatie/backtrace": "^1.4", |
8976 | "spatie/flare-client-php": "^1.1", | 9330 | "spatie/flare-client-php": "^1.1", |
8977 | "symfony/console": "^5.4|^6.0", | 9331 | "symfony/console": "^5.4|^6.0", |
8978 | "symfony/var-dumper": "^5.4|^6.0" | 9332 | "symfony/var-dumper": "^5.4|^6.0" |
8979 | }, | 9333 | }, |
8980 | "require-dev": { | 9334 | "require-dev": { |
8981 | "illuminate/cache": "^9.52", | 9335 | "illuminate/cache": "^9.52", |
8982 | "mockery/mockery": "^1.4", | 9336 | "mockery/mockery": "^1.4", |
8983 | "pestphp/pest": "^1.20", | 9337 | "pestphp/pest": "^1.20", |
8984 | "phpstan/extension-installer": "^1.1", | 9338 | "phpstan/extension-installer": "^1.1", |
8985 | "phpstan/phpstan-deprecation-rules": "^1.0", | 9339 | "phpstan/phpstan-deprecation-rules": "^1.0", |
8986 | "phpstan/phpstan-phpunit": "^1.0", | 9340 | "phpstan/phpstan-phpunit": "^1.0", |
8987 | "psr/simple-cache-implementation": "*", | 9341 | "psr/simple-cache-implementation": "*", |
8988 | "symfony/cache": "^6.2", | 9342 | "symfony/cache": "^6.2", |
8989 | "symfony/process": "^5.4|^6.0", | 9343 | "symfony/process": "^5.4|^6.0", |
8990 | "vlucas/phpdotenv": "^5.5" | 9344 | "vlucas/phpdotenv": "^5.5" |
8991 | }, | 9345 | }, |
8992 | "suggest": { | 9346 | "suggest": { |
8993 | "openai-php/client": "Require get solutions from OpenAI", | 9347 | "openai-php/client": "Require get solutions from OpenAI", |
8994 | "simple-cache-implementation": "To cache solutions from OpenAI" | 9348 | "simple-cache-implementation": "To cache solutions from OpenAI" |
8995 | }, | 9349 | }, |
8996 | "type": "library", | 9350 | "type": "library", |
8997 | "extra": { | 9351 | "extra": { |
8998 | "branch-alias": { | 9352 | "branch-alias": { |
8999 | "dev-main": "1.5.x-dev" | 9353 | "dev-main": "1.5.x-dev" |
9000 | } | 9354 | } |
9001 | }, | 9355 | }, |
9002 | "autoload": { | 9356 | "autoload": { |
9003 | "psr-4": { | 9357 | "psr-4": { |
9004 | "Spatie\\Ignition\\": "src" | 9358 | "Spatie\\Ignition\\": "src" |
9005 | } | 9359 | } |
9006 | }, | 9360 | }, |
9007 | "notification-url": "https://packagist.org/downloads/", | 9361 | "notification-url": "https://packagist.org/downloads/", |
9008 | "license": [ | 9362 | "license": [ |
9009 | "MIT" | 9363 | "MIT" |
9010 | ], | 9364 | ], |
9011 | "authors": [ | 9365 | "authors": [ |
9012 | { | 9366 | { |
9013 | "name": "Spatie", | 9367 | "name": "Spatie", |
9014 | "email": "info@spatie.be", | 9368 | "email": "info@spatie.be", |
9015 | "role": "Developer" | 9369 | "role": "Developer" |
9016 | } | 9370 | } |
9017 | ], | 9371 | ], |
9018 | "description": "A beautiful error page for PHP applications.", | 9372 | "description": "A beautiful error page for PHP applications.", |
9019 | "homepage": "https://flareapp.io/ignition", | 9373 | "homepage": "https://flareapp.io/ignition", |
9020 | "keywords": [ | 9374 | "keywords": [ |
9021 | "error", | 9375 | "error", |
9022 | "flare", | 9376 | "flare", |
9023 | "laravel", | 9377 | "laravel", |
9024 | "page" | 9378 | "page" |
9025 | ], | 9379 | ], |
9026 | "support": { | 9380 | "support": { |
9027 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", | 9381 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", |
9028 | "forum": "https://twitter.com/flareappio", | 9382 | "forum": "https://twitter.com/flareappio", |
9029 | "issues": "https://github.com/spatie/ignition/issues", | 9383 | "issues": "https://github.com/spatie/ignition/issues", |
9030 | "source": "https://github.com/spatie/ignition" | 9384 | "source": "https://github.com/spatie/ignition" |
9031 | }, | 9385 | }, |
9032 | "funding": [ | 9386 | "funding": [ |
9033 | { | 9387 | { |
9034 | "url": "https://github.com/spatie", | 9388 | "url": "https://github.com/spatie", |
9035 | "type": "github" | 9389 | "type": "github" |
9036 | } | 9390 | } |
9037 | ], | 9391 | ], |
9038 | "time": "2023-05-04T13:20:26+00:00" | 9392 | "time": "2023-05-04T13:20:26+00:00" |
9039 | }, | 9393 | }, |
9040 | { | 9394 | { |
9041 | "name": "spatie/laravel-ignition", | 9395 | "name": "spatie/laravel-ignition", |
9042 | "version": "1.6.4", | 9396 | "version": "1.6.4", |
9043 | "source": { | 9397 | "source": { |
9044 | "type": "git", | 9398 | "type": "git", |
9045 | "url": "https://github.com/spatie/laravel-ignition.git", | 9399 | "url": "https://github.com/spatie/laravel-ignition.git", |
9046 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc" | 9400 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc" |
9047 | }, | 9401 | }, |
9048 | "dist": { | 9402 | "dist": { |
9049 | "type": "zip", | 9403 | "type": "zip", |
9050 | "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", | 9404 | "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", |
9051 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", | 9405 | "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", |
9052 | "shasum": "" | 9406 | "shasum": "" |
9053 | }, | 9407 | }, |
9054 | "require": { | 9408 | "require": { |
9055 | "ext-curl": "*", | 9409 | "ext-curl": "*", |
9056 | "ext-json": "*", | 9410 | "ext-json": "*", |
9057 | "ext-mbstring": "*", | 9411 | "ext-mbstring": "*", |
9058 | "illuminate/support": "^8.77|^9.27", | 9412 | "illuminate/support": "^8.77|^9.27", |
9059 | "monolog/monolog": "^2.3", | 9413 | "monolog/monolog": "^2.3", |
9060 | "php": "^8.0", | 9414 | "php": "^8.0", |
9061 | "spatie/flare-client-php": "^1.0.1", | 9415 | "spatie/flare-client-php": "^1.0.1", |
9062 | "spatie/ignition": "^1.4.1", | 9416 | "spatie/ignition": "^1.4.1", |
9063 | "symfony/console": "^5.0|^6.0", | 9417 | "symfony/console": "^5.0|^6.0", |
9064 | "symfony/var-dumper": "^5.0|^6.0" | 9418 | "symfony/var-dumper": "^5.0|^6.0" |
9065 | }, | 9419 | }, |
9066 | "require-dev": { | 9420 | "require-dev": { |
9067 | "filp/whoops": "^2.14", | 9421 | "filp/whoops": "^2.14", |
9068 | "livewire/livewire": "^2.8|dev-develop", | 9422 | "livewire/livewire": "^2.8|dev-develop", |
9069 | "mockery/mockery": "^1.4", | 9423 | "mockery/mockery": "^1.4", |
9070 | "nunomaduro/larastan": "^1.0", | 9424 | "nunomaduro/larastan": "^1.0", |
9071 | "orchestra/testbench": "^6.23|^7.0", | 9425 | "orchestra/testbench": "^6.23|^7.0", |
9072 | "pestphp/pest": "^1.20", | 9426 | "pestphp/pest": "^1.20", |
9073 | "phpstan/extension-installer": "^1.1", | 9427 | "phpstan/extension-installer": "^1.1", |
9074 | "phpstan/phpstan-deprecation-rules": "^1.0", | 9428 | "phpstan/phpstan-deprecation-rules": "^1.0", |
9075 | "phpstan/phpstan-phpunit": "^1.0", | 9429 | "phpstan/phpstan-phpunit": "^1.0", |
9076 | "spatie/laravel-ray": "^1.27" | 9430 | "spatie/laravel-ray": "^1.27" |
9077 | }, | 9431 | }, |
9078 | "type": "library", | 9432 | "type": "library", |
9079 | "extra": { | 9433 | "extra": { |
9080 | "laravel": { | 9434 | "laravel": { |
9081 | "providers": [ | 9435 | "providers": [ |
9082 | "Spatie\\LaravelIgnition\\IgnitionServiceProvider" | 9436 | "Spatie\\LaravelIgnition\\IgnitionServiceProvider" |
9083 | ], | 9437 | ], |
9084 | "aliases": { | 9438 | "aliases": { |
9085 | "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" | 9439 | "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare" |
9086 | } | 9440 | } |
9087 | } | 9441 | } |
9088 | }, | 9442 | }, |
9089 | "autoload": { | 9443 | "autoload": { |
9090 | "files": [ | 9444 | "files": [ |
9091 | "src/helpers.php" | 9445 | "src/helpers.php" |
9092 | ], | 9446 | ], |
9093 | "psr-4": { | 9447 | "psr-4": { |
9094 | "Spatie\\LaravelIgnition\\": "src" | 9448 | "Spatie\\LaravelIgnition\\": "src" |
9095 | } | 9449 | } |
9096 | }, | 9450 | }, |
9097 | "notification-url": "https://packagist.org/downloads/", | 9451 | "notification-url": "https://packagist.org/downloads/", |
9098 | "license": [ | 9452 | "license": [ |
9099 | "MIT" | 9453 | "MIT" |
9100 | ], | 9454 | ], |
9101 | "authors": [ | 9455 | "authors": [ |
9102 | { | 9456 | { |
9103 | "name": "Spatie", | 9457 | "name": "Spatie", |
9104 | "email": "info@spatie.be", | 9458 | "email": "info@spatie.be", |
9105 | "role": "Developer" | 9459 | "role": "Developer" |
9106 | } | 9460 | } |
9107 | ], | 9461 | ], |
9108 | "description": "A beautiful error page for Laravel applications.", | 9462 | "description": "A beautiful error page for Laravel applications.", |
9109 | "homepage": "https://flareapp.io/ignition", | 9463 | "homepage": "https://flareapp.io/ignition", |
9110 | "keywords": [ | 9464 | "keywords": [ |
9111 | "error", | 9465 | "error", |
9112 | "flare", | 9466 | "flare", |
9113 | "laravel", | 9467 | "laravel", |
9114 | "page" | 9468 | "page" |
9115 | ], | 9469 | ], |
9116 | "support": { | 9470 | "support": { |
9117 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", | 9471 | "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction", |
9118 | "forum": "https://twitter.com/flareappio", | 9472 | "forum": "https://twitter.com/flareappio", |
9119 | "issues": "https://github.com/spatie/laravel-ignition/issues", | 9473 | "issues": "https://github.com/spatie/laravel-ignition/issues", |
9120 | "source": "https://github.com/spatie/laravel-ignition" | 9474 | "source": "https://github.com/spatie/laravel-ignition" |
9121 | }, | 9475 | }, |
9122 | "funding": [ | 9476 | "funding": [ |
9123 | { | 9477 | { |
9124 | "url": "https://github.com/spatie", | 9478 | "url": "https://github.com/spatie", |
9125 | "type": "github" | 9479 | "type": "github" |
9126 | } | 9480 | } |
9127 | ], | 9481 | ], |
9128 | "time": "2023-01-03T19:28:04+00:00" | 9482 | "time": "2023-01-03T19:28:04+00:00" |
9129 | }, | 9483 | }, |
9130 | { | 9484 | { |
9131 | "name": "symfony/yaml", | 9485 | "name": "symfony/yaml", |
9132 | "version": "v6.0.19", | 9486 | "version": "v6.0.19", |
9133 | "source": { | 9487 | "source": { |
9134 | "type": "git", | 9488 | "type": "git", |
9135 | "url": "https://github.com/symfony/yaml.git", | 9489 | "url": "https://github.com/symfony/yaml.git", |
9136 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884" | 9490 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884" |
9137 | }, | 9491 | }, |
9138 | "dist": { | 9492 | "dist": { |
9139 | "type": "zip", | 9493 | "type": "zip", |
9140 | "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884", | 9494 | "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884", |
9141 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884", | 9495 | "reference": "deec3a812a0305a50db8ae689b183f43d915c884", |
9142 | "shasum": "" | 9496 | "shasum": "" |
9143 | }, | 9497 | }, |
9144 | "require": { | 9498 | "require": { |
9145 | "php": ">=8.0.2", | 9499 | "php": ">=8.0.2", |
9146 | "symfony/polyfill-ctype": "^1.8" | 9500 | "symfony/polyfill-ctype": "^1.8" |
9147 | }, | 9501 | }, |
9148 | "conflict": { | 9502 | "conflict": { |
9149 | "symfony/console": "<5.4" | 9503 | "symfony/console": "<5.4" |
9150 | }, | 9504 | }, |
9151 | "require-dev": { | 9505 | "require-dev": { |
9152 | "symfony/console": "^5.4|^6.0" | 9506 | "symfony/console": "^5.4|^6.0" |
9153 | }, | 9507 | }, |
9154 | "suggest": { | 9508 | "suggest": { |
9155 | "symfony/console": "For validating YAML files using the lint command" | 9509 | "symfony/console": "For validating YAML files using the lint command" |
9156 | }, | 9510 | }, |
9157 | "bin": [ | 9511 | "bin": [ |
9158 | "Resources/bin/yaml-lint" | 9512 | "Resources/bin/yaml-lint" |
9159 | ], | 9513 | ], |
9160 | "type": "library", | 9514 | "type": "library", |
9161 | "autoload": { | 9515 | "autoload": { |
9162 | "psr-4": { | 9516 | "psr-4": { |
9163 | "Symfony\\Component\\Yaml\\": "" | 9517 | "Symfony\\Component\\Yaml\\": "" |
9164 | }, | 9518 | }, |
9165 | "exclude-from-classmap": [ | 9519 | "exclude-from-classmap": [ |
9166 | "/Tests/" | 9520 | "/Tests/" |
9167 | ] | 9521 | ] |
9168 | }, | 9522 | }, |
9169 | "notification-url": "https://packagist.org/downloads/", | 9523 | "notification-url": "https://packagist.org/downloads/", |
9170 | "license": [ | 9524 | "license": [ |
9171 | "MIT" | 9525 | "MIT" |
9172 | ], | 9526 | ], |
9173 | "authors": [ | 9527 | "authors": [ |
9174 | { | 9528 | { |
9175 | "name": "Fabien Potencier", | 9529 | "name": "Fabien Potencier", |
9176 | "email": "fabien@symfony.com" | 9530 | "email": "fabien@symfony.com" |
9177 | }, | 9531 | }, |
9178 | { | 9532 | { |
9179 | "name": "Symfony Community", | 9533 | "name": "Symfony Community", |
9180 | "homepage": "https://symfony.com/contributors" | 9534 | "homepage": "https://symfony.com/contributors" |
9181 | } | 9535 | } |
9182 | ], | 9536 | ], |
9183 | "description": "Loads and dumps YAML files", | 9537 | "description": "Loads and dumps YAML files", |
9184 | "homepage": "https://symfony.com", | 9538 | "homepage": "https://symfony.com", |
9185 | "support": { | 9539 | "support": { |
9186 | "source": "https://github.com/symfony/yaml/tree/v6.0.19" | 9540 | "source": "https://github.com/symfony/yaml/tree/v6.0.19" |
9187 | }, | 9541 | }, |
9188 | "funding": [ | 9542 | "funding": [ |
9189 | { | 9543 | { |
9190 | "url": "https://symfony.com/sponsor", | 9544 | "url": "https://symfony.com/sponsor", |
9191 | "type": "custom" | 9545 | "type": "custom" |
9192 | }, | 9546 | }, |
9193 | { | 9547 | { |
9194 | "url": "https://github.com/fabpot", | 9548 | "url": "https://github.com/fabpot", |
9195 | "type": "github" | 9549 | "type": "github" |
9196 | }, | 9550 | }, |
9197 | { | 9551 | { |
9198 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", | 9552 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", |
9199 | "type": "tidelift" | 9553 | "type": "tidelift" |
9200 | } | 9554 | } |
9201 | ], | 9555 | ], |
9202 | "time": "2023-01-11T11:50:03+00:00" | 9556 | "time": "2023-01-11T11:50:03+00:00" |
9203 | }, | 9557 | }, |
9204 | { | 9558 | { |
9205 | "name": "theseer/tokenizer", | 9559 | "name": "theseer/tokenizer", |
9206 | "version": "1.2.1", | 9560 | "version": "1.2.1", |
9207 | "source": { | 9561 | "source": { |
9208 | "type": "git", | 9562 | "type": "git", |
9209 | "url": "https://github.com/theseer/tokenizer.git", | 9563 | "url": "https://github.com/theseer/tokenizer.git", |
9210 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" | 9564 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" |
9211 | }, | 9565 | }, |
9212 | "dist": { | 9566 | "dist": { |
9213 | "type": "zip", | 9567 | "type": "zip", |
9214 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", | 9568 | "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", |
9215 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", | 9569 | "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", |
9216 | "shasum": "" | 9570 | "shasum": "" |
9217 | }, | 9571 | }, |
9218 | "require": { | 9572 | "require": { |
9219 | "ext-dom": "*", | 9573 | "ext-dom": "*", |
9220 | "ext-tokenizer": "*", | 9574 | "ext-tokenizer": "*", |
9221 | "ext-xmlwriter": "*", | 9575 | "ext-xmlwriter": "*", |
9222 | "php": "^7.2 || ^8.0" | 9576 | "php": "^7.2 || ^8.0" |
9223 | }, | 9577 | }, |
9224 | "type": "library", | 9578 | "type": "library", |
9225 | "autoload": { | 9579 | "autoload": { |
9226 | "classmap": [ | 9580 | "classmap": [ |
9227 | "src/" | 9581 | "src/" |
9228 | ] | 9582 | ] |
9229 | }, | 9583 | }, |
9230 | "notification-url": "https://packagist.org/downloads/", | 9584 | "notification-url": "https://packagist.org/downloads/", |
9231 | "license": [ | 9585 | "license": [ |
9232 | "BSD-3-Clause" | 9586 | "BSD-3-Clause" |
9233 | ], | 9587 | ], |
9234 | "authors": [ | 9588 | "authors": [ |
9235 | { | 9589 | { |
9236 | "name": "Arne Blankerts", | 9590 | "name": "Arne Blankerts", |
9237 | "email": "arne@blankerts.de", | 9591 | "email": "arne@blankerts.de", |
9238 | "role": "Developer" | 9592 | "role": "Developer" |
9239 | } | 9593 | } |
9240 | ], | 9594 | ], |
9241 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", | 9595 | "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", |
9242 | "support": { | 9596 | "support": { |
9243 | "issues": "https://github.com/theseer/tokenizer/issues", | 9597 | "issues": "https://github.com/theseer/tokenizer/issues", |
9244 | "source": "https://github.com/theseer/tokenizer/tree/1.2.1" | 9598 | "source": "https://github.com/theseer/tokenizer/tree/1.2.1" |
9245 | }, | 9599 | }, |
9246 | "funding": [ | 9600 | "funding": [ |
9247 | { | 9601 | { |
9248 | "url": "https://github.com/theseer", | 9602 | "url": "https://github.com/theseer", |
9249 | "type": "github" | 9603 | "type": "github" |
9250 | } | 9604 | } |
9251 | ], | 9605 | ], |
9252 | "time": "2021-07-28T10:34:58+00:00" | 9606 | "time": "2021-07-28T10:34:58+00:00" |
9253 | } | 9607 | } |
9254 | ], | 9608 | ], |
9255 | "aliases": [], | 9609 | "aliases": [], |
9256 | "minimum-stability": "stable", | 9610 | "minimum-stability": "stable", |
9257 | "stability-flags": [], | 9611 | "stability-flags": [], |
9258 | "prefer-stable": true, | 9612 | "prefer-stable": true, |
9259 | "prefer-lowest": false, | 9613 | "prefer-lowest": false, |
9260 | "platform": { | 9614 | "platform": { |
9261 | "php": "^8.0.2" | 9615 | "php": "^8.0.2" |
9262 | }, | 9616 | }, |
9263 | "platform-dev": [], | 9617 | "platform-dev": [], |
9264 | "plugin-api-version": "2.3.0" | 9618 | "plugin-api-version": "2.3.0" |
9265 | } | 9619 | } |
9266 | 9620 |
public/hello_world.xlsx
No preview for this file type
routes/web.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use App\Http\Controllers\Admin\AdminController; | 3 | use App\Http\Controllers\Admin\AdminController; |
4 | use App\Http\Controllers\Admin\CategoryController; | 4 | use App\Http\Controllers\Admin\CategoryController; |
5 | use App\Http\Controllers\Admin\CategoryEmpController; | 5 | use App\Http\Controllers\Admin\CategoryEmpController; |
6 | use App\Http\Controllers\Admin\EducationController; | 6 | use App\Http\Controllers\Admin\EducationController; |
7 | use App\Http\Controllers\Admin\EmployersController; | 7 | use App\Http\Controllers\Admin\EmployersController; |
8 | use App\Http\Controllers\Admin\InfoBloksController; | 8 | use App\Http\Controllers\Admin\InfoBloksController; |
9 | use App\Http\Controllers\Admin\JobTitlesController; | 9 | use App\Http\Controllers\Admin\JobTitlesController; |
10 | use App\Http\Controllers\Admin\UsersController; | 10 | use App\Http\Controllers\Admin\UsersController; |
11 | use App\Http\Controllers\Admin\WorkersController; | 11 | use App\Http\Controllers\Admin\WorkersController; |
12 | use App\Http\Controllers\Auth\ForgotPasswordController; | 12 | use App\Http\Controllers\Auth\ForgotPasswordController; |
13 | use App\Http\Controllers\Auth\LoginController; | 13 | use App\Http\Controllers\Auth\LoginController; |
14 | use App\Http\Controllers\Auth\RegisterController; | 14 | use App\Http\Controllers\Auth\RegisterController; |
15 | use App\Http\Controllers\CKEditorController; | 15 | use App\Http\Controllers\CKEditorController; |
16 | use App\Models\User; | 16 | use App\Models\User; |
17 | use App\Http\Controllers\MainController; | 17 | use App\Http\Controllers\MainController; |
18 | use App\Http\Controllers\HomeController; | 18 | use App\Http\Controllers\HomeController; |
19 | use Illuminate\Support\Facades\Route; | 19 | use Illuminate\Support\Facades\Route; |
20 | use App\Http\Controllers\Admin\CompanyController; | 20 | use App\Http\Controllers\Admin\CompanyController; |
21 | use App\Http\Controllers\Admin\Ad_EmployersController; | 21 | use App\Http\Controllers\Admin\Ad_EmployersController; |
22 | use App\Http\Controllers\Admin\MsgAnswersController; | 22 | use App\Http\Controllers\Admin\MsgAnswersController; |
23 | use App\Http\Controllers\Admin\GroupsController; | 23 | use App\Http\Controllers\Admin\GroupsController; |
24 | use App\Http\Controllers\PagesController; | 24 | use App\Http\Controllers\PagesController; |
25 | use Illuminate\Support\Facades\Storage; | 25 | use Illuminate\Support\Facades\Storage; |
26 | 26 | ||
27 | 27 | ||
28 | /* | 28 | /* |
29 | |-------------------------------------------------------------------------- | 29 | |-------------------------------------------------------------------------- |
30 | | Web Routes | 30 | | Web Routes |
31 | |-------------------------------------------------------------------------- | 31 | |-------------------------------------------------------------------------- |
32 | | | 32 | | |
33 | | Here is where you can register web routes for your application. These | 33 | | Here is where you can register web routes for your application. These |
34 | | routes are loaded by the RouteServiceProvider within a group which | 34 | | routes are loaded by the RouteServiceProvider within a group which |
35 | | contains the "web" middleware group. Now create something great! | 35 | | contains the "web" middleware group. Now create something great! |
36 | | | 36 | | |
37 | */ | 37 | */ |
38 | /* | 38 | /* |
39 | Route::get('/', function () { | 39 | Route::get('/', function () { |
40 | return view('welcome'); | 40 | return view('welcome'); |
41 | })->name('index'); | 41 | })->name('index'); |
42 | */ | 42 | */ |
43 | Route::get('/', [MainController::class, 'index'])->name('index'); | 43 | Route::get('/', [MainController::class, 'index'])->name('index'); |
44 | 44 | ||
45 | //Роуты авторизации, регистрации, восстановления, аутентификации | 45 | //Роуты авторизации, регистрации, восстановления, аутентификации |
46 | Auth::routes(['verify' => true]); | 46 | Auth::routes(['verify' => true]); |
47 | 47 | ||
48 | // роуты регистрации, авторизации, восстановления пароля, верификации почты | 48 | // роуты регистрации, авторизации, восстановления пароля, верификации почты |
49 | /*Route::group([ | 49 | /*Route::group([ |
50 | 'as' => 'auth.', //имя маршрута, например auth.index | 50 | 'as' => 'auth.', //имя маршрута, например auth.index |
51 | 'prefix' => 'auth', // префикс маршрута, например, auth/index | 51 | 'prefix' => 'auth', // префикс маршрута, например, auth/index |
52 | ], function () { | 52 | ], function () { |
53 | //форма регистрации | 53 | //форма регистрации |
54 | Route::get('register', [RegisterController::class, 'register'])->name('register'); | 54 | Route::get('register', [RegisterController::class, 'register'])->name('register'); |
55 | 55 | ||
56 | //создание пользователя | 56 | //создание пользователя |
57 | Route::post('register', [RegisterController::class, 'create'])->name('create'); | 57 | Route::post('register', [RegisterController::class, 'create'])->name('create'); |
58 | 58 | ||
59 | //форма входа авторизации | 59 | //форма входа авторизации |
60 | Route::get('login', [LoginController::class, 'login'])->name('login'); | 60 | Route::get('login', [LoginController::class, 'login'])->name('login'); |
61 | 61 | ||
62 | //аутентификация | 62 | //аутентификация |
63 | Route::post('login', [LoginController::class, 'authenticate'])->name('auth'); | 63 | Route::post('login', [LoginController::class, 'authenticate'])->name('auth'); |
64 | 64 | ||
65 | //выход | 65 | //выход |
66 | Route::get('logout', [LoginController::class, 'logout'])->name('logout'); | 66 | Route::get('logout', [LoginController::class, 'logout'])->name('logout'); |
67 | 67 | ||
68 | //форма ввода адреса почты | 68 | //форма ввода адреса почты |
69 | Route::get('forgot-password', [ForgotPasswordController::class, 'form'])->name('forgot-form'); | 69 | Route::get('forgot-password', [ForgotPasswordController::class, 'form'])->name('forgot-form'); |
70 | 70 | ||
71 | //письмо на почту | 71 | //письмо на почту |
72 | Route::post('forgot-password', [ForgotPasswordController::class, 'mail'])->name('forgot-mail'); | 72 | Route::post('forgot-password', [ForgotPasswordController::class, 'mail'])->name('forgot-mail'); |
73 | 73 | ||
74 | //форма восстановления пароля | 74 | //форма восстановления пароля |
75 | Route::get('reset-password/token/{token}/email/{email}', | 75 | Route::get('reset-password/token/{token}/email/{email}', |
76 | [ResetPasswordController::class, 'form'] | 76 | [ResetPasswordController::class, 'form'] |
77 | )->name('reset-form'); | 77 | )->name('reset-form'); |
78 | 78 | ||
79 | //восстановление пароля | 79 | //восстановление пароля |
80 | Route::post('reset-password', | 80 | Route::post('reset-password', |
81 | [ResetPasswordController::class, 'reset'] | 81 | [ResetPasswordController::class, 'reset'] |
82 | )->name('reset-password'); | 82 | )->name('reset-password'); |
83 | 83 | ||
84 | //сообщение о необходимости проверки адреса почты | 84 | //сообщение о необходимости проверки адреса почты |
85 | Route::get('verify-message', [VerifyEmailController::class, 'message'])->name('verify-message'); | 85 | Route::get('verify-message', [VerifyEmailController::class, 'message'])->name('verify-message'); |
86 | 86 | ||
87 | //подтверждение адреса почты нового пользователя | 87 | //подтверждение адреса почты нового пользователя |
88 | Route::get('verify-email/token/{token}/id/{id}', [VerifyEmailController::class, 'verify']) | 88 | Route::get('verify-email/token/{token}/id/{id}', [VerifyEmailController::class, 'verify']) |
89 | ->where('token', '[a-f0-9]{32}') | 89 | ->where('token', '[a-f0-9]{32}') |
90 | ->where('id', '[0-9]+') | 90 | ->where('id', '[0-9]+') |
91 | ->name('verify-email'); | 91 | ->name('verify-email'); |
92 | });*/ | 92 | });*/ |
93 | 93 | ||
94 | //Личный кабинет пользователя | 94 | //Личный кабинет пользователя |
95 | Route::get('/home', [HomeController::class, 'index'])->name('home'); | 95 | Route::get('/home', [HomeController::class, 'index'])->name('home'); |
96 | 96 | ||
97 | /* | 97 | /* |
98 | Route::post('resend/verification-email', function (\Illuminate\Http\Request $request) { | 98 | Route::post('resend/verification-email', function (\Illuminate\Http\Request $request) { |
99 | $user = User::where('email',$request->input('email'))->first(); | 99 | $user = User::where('email',$request->input('email'))->first(); |
100 | 100 | ||
101 | $user->sendEmailVerificationNotification(); | 101 | $user->sendEmailVerificationNotification(); |
102 | 102 | ||
103 | return 'your response'; | 103 | return 'your response'; |
104 | })->middleware('throttle:6,1')->name('verification.resend'); | 104 | })->middleware('throttle:6,1')->name('verification.resend'); |
105 | */ | 105 | */ |
106 | 106 | ||
107 | // Авторизация, регистрация в админку | 107 | // Авторизация, регистрация в админку |
108 | Route::group([ | 108 | Route::group([ |
109 | 'as' => 'admin.', // имя маршрута, например auth.index | 109 | 'as' => 'admin.', // имя маршрута, например auth.index |
110 | 'prefix' => 'admin', // префикс маршрута, например auth/index | 110 | 'prefix' => 'admin', // префикс маршрута, например auth/index |
111 | 'middleware' => ['guest'], | 111 | 'middleware' => ['guest'], |
112 | ], function () { | 112 | ], function () { |
113 | // Форма регистрации | 113 | // Форма регистрации |
114 | Route::get('register', [AdminController::class, 'register'])->name('register'); | 114 | Route::get('register', [AdminController::class, 'register'])->name('register'); |
115 | 115 | ||
116 | // Создание пользователя | 116 | // Создание пользователя |
117 | Route::post('register', [AdminController::class, 'create'])->name('create'); | 117 | Route::post('register', [AdminController::class, 'create'])->name('create'); |
118 | //Форма входа | 118 | //Форма входа |
119 | Route::get('login', [AdminController::class, 'login'])->name('login'); | 119 | Route::get('login', [AdminController::class, 'login'])->name('login'); |
120 | 120 | ||
121 | // аутентификация | 121 | // аутентификация |
122 | Route::post('login', [AdminController::class, 'autenticate'])->name('auth'); | 122 | Route::post('login', [AdminController::class, 'autenticate'])->name('auth'); |
123 | 123 | ||
124 | }); | 124 | }); |
125 | 125 | ||
126 | // Личный кабинет админки | 126 | // Личный кабинет админки |
127 | Route::group([ | 127 | Route::group([ |
128 | 'as' => 'admin.', // имя маршрута, например auth.index | 128 | 'as' => 'admin.', // имя маршрута, например auth.index |
129 | 'prefix' => 'admin', // префикс маршрута, например auth/index | 129 | 'prefix' => 'admin', // префикс маршрута, например auth/index |
130 | 'middleware' => ['auth'], ['admin'], | 130 | 'middleware' => ['auth'], ['admin'], |
131 | ], function() { | 131 | ], function() { |
132 | 132 | ||
133 | // выход | 133 | // выход |
134 | Route::get('logout', [AdminController::class, 'logout'])->name('logout'); | 134 | Route::get('logout', [AdminController::class, 'logout'])->name('logout'); |
135 | 135 | ||
136 | // кабинет главная страница | 136 | // кабинет главная страница |
137 | Route::get('cabinet', [AdminController::class, 'index'])->name('index'); | 137 | Route::get('cabinet', [AdminController::class, 'index'])->name('index'); |
138 | 138 | ||
139 | // кабинет профиль админа - форма | 139 | // кабинет профиль админа - форма |
140 | Route::get('profile', [AdminController::class, 'profile'])->name('profile'); | 140 | Route::get('profile', [AdminController::class, 'profile'])->name('profile'); |
141 | // кабинет профиль админа - сохранение формы | 141 | // кабинет профиль админа - сохранение формы |
142 | Route::post('profile', [AdminController::class, 'store_profile'])->name('store_profile'); | 142 | Route::post('profile', [AdminController::class, 'store_profile'])->name('store_profile'); |
143 | 143 | ||
144 | //кабинет сообщения админа | 144 | //кабинет сообщения админа |
145 | //Route::get('messages', [AdminController::class, 'profile'])->name('profile'); | 145 | //Route::get('messages', [AdminController::class, 'profile'])->name('profile'); |
146 | 146 | ||
147 | 147 | ||
148 | // кабинет профиль - форма пароли | 148 | // кабинет профиль - форма пароли |
149 | Route::get('password', [AdminController::class, 'profile_password'])->name('password'); | 149 | Route::get('password', [AdminController::class, 'profile_password'])->name('password'); |
150 | // кабинет профиль - сохранение формы пароля | 150 | // кабинет профиль - сохранение формы пароля |
151 | Route::post('password', [AdminController::class, 'profile_password_new'])->name('password'); | 151 | Route::post('password', [AdminController::class, 'profile_password_new'])->name('password'); |
152 | 152 | ||
153 | 153 | ||
154 | // кабинет профиль пользователя - форма | 154 | // кабинет профиль пользователя - форма |
155 | Route::get('user-profile/{user}', [AdminController::class, 'profile_user'])->name('user-profile'); | 155 | Route::get('user-profile/{user}', [AdminController::class, 'profile_user'])->name('user-profile'); |
156 | // кабинет профиль пользователя - сохранение формы | 156 | // кабинет профиль пользователя - сохранение формы |
157 | Route::post('user-profile/{user}', [AdminController::class, 'store_profile_user'])->name('user-store_profile'); | 157 | Route::post('user-profile/{user}', [AdminController::class, 'store_profile_user'])->name('user-store_profile'); |
158 | 158 | ||
159 | // кабинет профиль работодатель - форма | 159 | // кабинет профиль работодатель - форма |
160 | Route::get('employer-profile/{employer}', [EmployersController::class, 'form_update_employer'])->name('employer-profile'); | 160 | Route::get('employer-profile/{employer}', [EmployersController::class, 'form_update_employer'])->name('employer-profile'); |
161 | // кабинет профиль работодатель - сохранение формы | 161 | // кабинет профиль работодатель - сохранение формы |
162 | Route::post('employer-profile/{employer}', [EmployersController::class, 'update_employer'])->name('update-employer-profile'); | 162 | Route::post('employer-profile/{employer}', [EmployersController::class, 'update_employer'])->name('update-employer-profile'); |
163 | // кабинет удаление профиль работодателя и юзера | 163 | // кабинет удаление профиль работодателя и юзера |
164 | Route::delete('employers/delete/{employer}/{user}', [EmployersController::class, 'delete_employer'])->name('delete-employer'); | 164 | Route::delete('employers/delete/{employer}/{user}', [EmployersController::class, 'delete_employer'])->name('delete-employer'); |
165 | 165 | ||
166 | // кабинет профиль работник - форма | 166 | // кабинет профиль работник - форма |
167 | Route::get('worker-profile/{worker}', [WorkersController::class, 'form_edit_worker'])->name('worker-profile-edit'); | 167 | Route::get('worker-profile/{worker}', [WorkersController::class, 'form_edit_worker'])->name('worker-profile-edit'); |
168 | // кабинет профиль работник - сохранение формы | 168 | // кабинет профиль работник - сохранение формы |
169 | Route::post('worker-profile/{worker}', [WorkersController::class, 'form_update_worker'])->name('worker-profile-update'); | 169 | Route::post('worker-profile/{worker}', [WorkersController::class, 'form_update_worker'])->name('worker-profile-update'); |
170 | 170 | ||
171 | 171 | ||
172 | // кабинет настройки сайта - форма | 172 | // кабинет настройки сайта - форма |
173 | Route::get('config', [AdminController::class, 'config_form'])->name('config'); | 173 | Route::get('config', [AdminController::class, 'config_form'])->name('config'); |
174 | // кабинет настройки сайта сохранение формы | 174 | // кабинет настройки сайта сохранение формы |
175 | Route::post('config', [AdminController::class, 'store_config'])->name('store_config'); | 175 | Route::post('config', [AdminController::class, 'store_config'])->name('store_config'); |
176 | 176 | ||
177 | // кабинет - пользователи | 177 | // кабинет - пользователи |
178 | Route::get('users', [UsersController::class, 'index'])->name('users'); | 178 | Route::get('users', [UsersController::class, 'index'])->name('users'); |
179 | 179 | ||
180 | // кабинет - пользователи | 180 | // кабинет - пользователи |
181 | Route::get('admin-users', [AdminController::class, 'index_admin'])->name('admin-users'); | 181 | Route::get('admin-users', [AdminController::class, 'index_admin'])->name('admin-users'); |
182 | 182 | ||
183 | // кабинет - работодатели | 183 | // кабинет - работодатели |
184 | Route::get('employers', [EmployersController::class, 'index'])->name('employers'); | 184 | Route::get('employers', [EmployersController::class, 'index'])->name('employers'); |
185 | 185 | ||
186 | // кабинет - соискатели | 186 | // кабинет - соискатели |
187 | Route::get('workers', [WorkersController::class, 'index'])->name('workers'); | 187 | Route::get('workers', [WorkersController::class, 'index'])->name('workers'); |
188 | 188 | ||
189 | // кабинет - вакансии | 189 | // кабинет - вакансии |
190 | Route::get('ad-employers', [Ad_EmployersController::class, 'index'])->name('ad-employers'); | 190 | Route::get('ad-employers', [Ad_EmployersController::class, 'index'])->name('ad-employers'); |
191 | Route::get('ad-employers/edit/{ad_employer}', [Ad_EmployersController::class, 'edit'])->name('edit-ad-employers'); | 191 | Route::get('ad-employers/edit/{ad_employer}', [Ad_EmployersController::class, 'edit'])->name('edit-ad-employers'); |
192 | Route::post('ad-employers/edit/{ad_employer}', [Ad_EmployersController::class, 'update'])->name('update-ad-employers'); | 192 | Route::post('ad-employers/edit/{ad_employer}', [Ad_EmployersController::class, 'update'])->name('update-ad-employers'); |
193 | 193 | ||
194 | // кабинет - категории | 194 | // кабинет - категории |
195 | //Route::get('categories', [AdminController::class, 'index'])->name('categories'); | 195 | //Route::get('categories', [AdminController::class, 'index'])->name('categories'); |
196 | /* | 196 | /* |
197 | * CRUD-операции над Справочником Категории | 197 | * CRUD-операции над Справочником Категории |
198 | */ | 198 | */ |
199 | Route::resource('categories', CategoryController::class, ['except' => ['show']]); | 199 | Route::resource('categories', CategoryController::class, ['except' => ['show']]); |
200 | 200 | ||
201 | // CRUD-операции над справочником Категории для работодателей | 201 | // CRUD-операции над справочником Категории для работодателей |
202 | Route::resource('category-emp', CategoryEmpController::class, ['except' => ['show']]); | 202 | Route::resource('category-emp', CategoryEmpController::class, ['except' => ['show']]); |
203 | 203 | ||
204 | // CRUD-операции над справочником Образование | 204 | // CRUD-операции над справочником Образование |
205 | Route::resource('education', EducationController::class, ['except' => ['show']]); | 205 | Route::resource('education', EducationController::class, ['except' => ['show']]); |
206 | 206 | ||
207 | //Route::get('job-titles', [AdminController::class, 'index'])->name('job-titles'); | 207 | //Route::get('job-titles', [AdminController::class, 'index'])->name('job-titles'); |
208 | /* | 208 | /* |
209 | * кабинет - CRUD-операции по справочнику должности | 209 | * кабинет - CRUD-операции по справочнику должности |
210 | * | 210 | * |
211 | */ | 211 | */ |
212 | Route::resource('job-titles', JobTitlesController::class, ['except' => ['show']]); | 212 | Route::resource('job-titles', JobTitlesController::class, ['except' => ['show']]); |
213 | 213 | ||
214 | // кабинет - сообщения (чтение чужих) | 214 | // кабинет - сообщения (чтение чужих) |
215 | Route::get('messages', [MsgAnswersController::class, 'messages'])->name('messages'); | 215 | Route::get('messages', [MsgAnswersController::class, 'messages'])->name('messages'); |
216 | // кабинет - просмотр сообщения чужого (чтение) | 216 | // кабинет - просмотр сообщения чужого (чтение) |
217 | Route::get('messages/{message}', [MsgAnswersController::class, 'read_message'])->name('read-message'); | 217 | Route::get('messages/{message}', [MsgAnswersController::class, 'read_message'])->name('read-message'); |
218 | 218 | ||
219 | // кабинет - сообщения (админские) | 219 | // кабинет - сообщения (админские) |
220 | Route::get('admin-messages', [MsgAnswersController::class, 'admin_messages'])->name('admin-messages'); | 220 | Route::get('admin-messages', [MsgAnswersController::class, 'admin_messages'])->name('admin-messages'); |
221 | // кабинет - сообщения (админские) | 221 | // кабинет - сообщения (админские) |
222 | Route::post('admin-messages', [MsgAnswersController::class, 'admin_messages_post'])->name('admin-messages-post'); | 222 | Route::post('admin-messages', [MsgAnswersController::class, 'admin_messages_post'])->name('admin-messages-post'); |
223 | // кабинет - sql - конструкция запросов | 223 | // кабинет - sql - конструкция запросов |
224 | Route::get('messages-sql', [MsgAnswersController::class, 'messages_sql'])->name('messages-sql'); | 224 | Route::get('messages-sql', [MsgAnswersController::class, 'messages_sql'])->name('messages-sql'); |
225 | 225 | ||
226 | /* | 226 | /* |
227 | * Расписанный подход в описании каждой директорий групп пользователей. | 227 | * Расписанный подход в описании каждой директорий групп пользователей. |
228 | */ | 228 | */ |
229 | // кабинет - группы пользователей | 229 | // кабинет - группы пользователей |
230 | Route::get('groups', [GroupsController::class, 'index'])->name('groups'); | 230 | Route::get('groups', [GroupsController::class, 'index'])->name('groups'); |
231 | // кабинет - добавление форма группы пользователей | 231 | // кабинет - добавление форма группы пользователей |
232 | Route::get('groups/add', [GroupsController::class, 'add'])->name('add-group'); | 232 | Route::get('groups/add', [GroupsController::class, 'add'])->name('add-group'); |
233 | // кабинет - сохранение формы группы пользователей | 233 | // кабинет - сохранение формы группы пользователей |
234 | Route::post('groups/add', [GroupsController::class, 'store'])->name('add-group-store'); | 234 | Route::post('groups/add', [GroupsController::class, 'store'])->name('add-group-store'); |
235 | // кабинет - редактирование форма группы пользователей | 235 | // кабинет - редактирование форма группы пользователей |
236 | Route::get('groups/edit/{group}', [GroupsController::class, 'edit'])->name('edit-group'); | 236 | Route::get('groups/edit/{group}', [GroupsController::class, 'edit'])->name('edit-group'); |
237 | // кабинет - сохранение редактированной формы группы пользователей | 237 | // кабинет - сохранение редактированной формы группы пользователей |
238 | Route::post('groups/edit/{group}', [GroupsController::class, 'update'])->name('update-group'); | 238 | Route::post('groups/edit/{group}', [GroupsController::class, 'update'])->name('update-group'); |
239 | // кабинет - удаление группы пользователей | 239 | // кабинет - удаление группы пользователей |
240 | Route::delete('groups/delete/{group}', [GroupsController::class, 'destroy'])->name('delete-group'); | 240 | Route::delete('groups/delete/{group}', [GroupsController::class, 'destroy'])->name('delete-group'); |
241 | 241 | ||
242 | 242 | ||
243 | // кабинет - список админов | 243 | // кабинет - список админов |
244 | Route::get('group-admin', [AdminController::class, 'index'])->name('group-admin'); | 244 | Route::get('group-admin', [AdminController::class, 'index'])->name('group-admin'); |
245 | 245 | ||
246 | 246 | ||
247 | /////редактор////// кабинет - редактор сайта//////////////////////// | 247 | /////редактор////// кабинет - редактор сайта//////////////////////// |
248 | Route::get('editor-site', function() { | 248 | Route::get('editor-site', function() { |
249 | return view('admin.editor.index'); | 249 | return view('admin.editor.index'); |
250 | })->name('editor-site'); | 250 | })->name('editor-site'); |
251 | 251 | ||
252 | 252 | ||
253 | // кабинет - редактор шапки-футера сайта | 253 | // кабинет - редактор шапки-футера сайта |
254 | Route::get('edit-blocks', [CompanyController::class, 'editblocks'])->name('edit-blocks'); | 254 | Route::get('edit-blocks', [CompanyController::class, 'editblocks'])->name('edit-blocks'); |
255 | Route::get('edit-bloks/add', [CompanyController::class, 'editblock_add'])->name('add-block'); | 255 | Route::get('edit-bloks/add', [CompanyController::class, 'editblock_add'])->name('add-block'); |
256 | Route::post('edit-bloks/add', [CompanyController::class, 'editblock_store'])->name('add-block-store'); | 256 | Route::post('edit-bloks/add', [CompanyController::class, 'editblock_store'])->name('add-block-store'); |
257 | Route::get('edit-bloks/ajax', [CompanyController::class, 'editblock_ajax'])->name('ajax.block'); | 257 | Route::get('edit-bloks/ajax', [CompanyController::class, 'editblock_ajax'])->name('ajax.block'); |
258 | Route::get('edit-bloks/edit/{block}', [CompanyController::class, 'editblock_edit'])->name('edit-block'); | 258 | Route::get('edit-bloks/edit/{block}', [CompanyController::class, 'editblock_edit'])->name('edit-block'); |
259 | Route::put('edit-bloks/edit/{block}', [CompanyController::class, 'editblock_update'])->name('update-block'); | 259 | Route::put('edit-bloks/edit/{block}', [CompanyController::class, 'editblock_update'])->name('update-block'); |
260 | Route::delete('edit-bloks/delete/{block}', [CompanyController::class, 'editblock_destroy'])->name('delete-block'); | 260 | Route::delete('edit-bloks/delete/{block}', [CompanyController::class, 'editblock_destroy'])->name('delete-block'); |
261 | 261 | ||
262 | 262 | ||
263 | // кабинет - редактор должности на главной | 263 | // кабинет - редактор должности на главной |
264 | Route::get('job-titles-main', [CompanyController::class, 'job_titles_main'])->name('job-titles-main'); | 264 | Route::get('job-titles-main', [CompanyController::class, 'job_titles_main'])->name('job-titles-main'); |
265 | 265 | ||
266 | // кабинет - редактор работодатели на главной | 266 | // кабинет - редактор работодатели на главной |
267 | Route::get('employers-main', [CompanyController::class, 'employers_main'])->name('employers-main'); | 267 | Route::get('employers-main', [CompanyController::class, 'employers_main'])->name('employers-main'); |
268 | 268 | ||
269 | 269 | ||
270 | // кабинет - редактор seo-сайта | 270 | // кабинет - редактор seo-сайта |
271 | Route::get('editor-seo', [CompanyController::class, 'editor_seo'])->name('editor-seo'); | 271 | Route::get('editor-seo', [CompanyController::class, 'editor_seo'])->name('editor-seo'); |
272 | Route::get('editor-seo/add', [CompanyController::class, 'editor_seo_add'])->name('add-seo'); | 272 | Route::get('editor-seo/add', [CompanyController::class, 'editor_seo_add'])->name('add-seo'); |
273 | Route::post('editor-seo/add', [CompanyController::class, 'editor_seo_store'])->name('add-seo-store'); | 273 | Route::post('editor-seo/add', [CompanyController::class, 'editor_seo_store'])->name('add-seo-store'); |
274 | Route::get('editor-seo/ajax', [CompanyController::class, 'editor_seo_ajax'])->name('ajax.seo'); | 274 | Route::get('editor-seo/ajax', [CompanyController::class, 'editor_seo_ajax'])->name('ajax.seo'); |
275 | Route::get('editor-seo/edit/{page}', [CompanyController::class, 'editor_seo_edit'])->name('edit-seo'); | 275 | Route::get('editor-seo/edit/{page}', [CompanyController::class, 'editor_seo_edit'])->name('edit-seo'); |
276 | Route::put('editor-seo/edit/{page}', [CompanyController::class, 'editor_seo_update'])->name('update-seo'); | 276 | Route::put('editor-seo/edit/{page}', [CompanyController::class, 'editor_seo_update'])->name('update-seo'); |
277 | Route::delete('editor-seo/delete/{page}', [CompanyController::class, 'editor_seo_destroy'])->name('delete-seo'); | 277 | Route::delete('editor-seo/delete/{page}', [CompanyController::class, 'editor_seo_destroy'])->name('delete-seo'); |
278 | 278 | ||
279 | 279 | ||
280 | // кабинет - редактор страниц | 280 | // кабинет - редактор страниц |
281 | Route::get('editor-pages', [CompanyController::class, 'editor_pages'])->name('editor-pages'); | 281 | Route::get('editor-pages', [CompanyController::class, 'editor_pages'])->name('editor-pages'); |
282 | // кабинет - добавление страницы | 282 | // кабинет - добавление страницы |
283 | Route::get('editor-pages/add', [CompanyController::class, 'editor_pages_add'])->name('add-page'); | 283 | Route::get('editor-pages/add', [CompanyController::class, 'editor_pages_add'])->name('add-page'); |
284 | // кабинет - сохранение формы страницы | 284 | // кабинет - сохранение формы страницы |
285 | Route::post('editor-page/add', [CompanyController::class, 'editor_pages_store'])->name('add-page-store'); | 285 | Route::post('editor-page/add', [CompanyController::class, 'editor_pages_store'])->name('add-page-store'); |
286 | // кабинет - редактирование форма страницы | 286 | // кабинет - редактирование форма страницы |
287 | Route::get('editor-pages/edit/{page}', [CompanyController::class, 'editor_pages_edit'])->name('edit-page'); | 287 | Route::get('editor-pages/edit/{page}', [CompanyController::class, 'editor_pages_edit'])->name('edit-page'); |
288 | // кабинет - сохранение редактированной формы страницы | 288 | // кабинет - сохранение редактированной формы страницы |
289 | Route::put('editor-pages/edit/{page}', [CompanyController::class, 'editor_pages_update'])->name('update-page'); | 289 | Route::put('editor-pages/edit/{page}', [CompanyController::class, 'editor_pages_update'])->name('update-page'); |
290 | // кабинет - удаление страницы | 290 | // кабинет - удаление страницы |
291 | Route::delete('editor-pages/delete/{page}', [CompanyController::class, 'editor_pages_destroy'])->name('delete-page'); | 291 | Route::delete('editor-pages/delete/{page}', [CompanyController::class, 'editor_pages_destroy'])->name('delete-page'); |
292 | 292 | ||
293 | 293 | ||
294 | // кабинет - реклама сайта | 294 | // кабинет - реклама сайта |
295 | Route::get('reclames', [CompanyController::class, 'reclames'])->name('reclames'); | 295 | Route::get('reclames', [CompanyController::class, 'reclames'])->name('reclames'); |
296 | Route::get('reclames/add', [CompanyController::class, 'reclames_add'])->name('add-reclames'); | 296 | Route::get('reclames/add', [CompanyController::class, 'reclames_add'])->name('add-reclames'); |
297 | Route::post('reclames/add', [CompanyController::class, 'reclames_store'])->name('add-reclames-store'); | 297 | Route::post('reclames/add', [CompanyController::class, 'reclames_store'])->name('add-reclames-store'); |
298 | Route::get('reclames/edit/{reclame}', [CompanyController::class, 'reclames_edit'])->name('edit-reclames'); | 298 | Route::get('reclames/edit/{reclame}', [CompanyController::class, 'reclames_edit'])->name('edit-reclames'); |
299 | Route::put('reclames/edit/{reclame}', [CompanyController::class, 'reclames_update'])->name('update-reclames'); | 299 | Route::put('reclames/edit/{reclame}', [CompanyController::class, 'reclames_update'])->name('update-reclames'); |
300 | Route::delete('reclames/delete/{reclame}', [CompanyController::class, 'reclames_destroy'])->name('delete-reclames'); | 300 | Route::delete('reclames/delete/{reclame}', [CompanyController::class, 'reclames_destroy'])->name('delete-reclames'); |
301 | //////////////////////////////////////////////////////////////////////// | 301 | //////////////////////////////////////////////////////////////////////// |
302 | 302 | ||
303 | 303 | ||
304 | // кабинет - отзывы о работодателе для модерации | 304 | // кабинет - отзывы о работодателе для модерации |
305 | Route::get('answers', [EmployersController::class, 'answers'])->name('answers'); | 305 | Route::get('answers', [EmployersController::class, 'answers'])->name('answers'); |
306 | 306 | ||
307 | // Общая страница статистики | 307 | // Общая страница статистики |
308 | Route::get('statics', function () { | 308 | Route::get('statics', function () { |
309 | return view('admin.static.index'); | 309 | return view('admin.static.index'); |
310 | })->name('statics'); | 310 | })->name('statics'); |
311 | 311 | ||
312 | // кабинет - статистика работников | 312 | // кабинет - статистика работников |
313 | Route::get('static-workers', [WorkersController::class, 'static_workers'])->name('static-workers'); | 313 | Route::get('static-workers', [WorkersController::class, 'static_workers'])->name('static-workers'); |
314 | 314 | ||
315 | // кабинет - статистика вакансий работодателя | 315 | // кабинет - статистика вакансий работодателя |
316 | Route::get('static-ads', [EmployersController::class, 'static_ads'])->name('static-ads'); | 316 | Route::get('static-ads', [EmployersController::class, 'static_ads'])->name('static-ads'); |
317 | 317 | ||
318 | // кабинет - справочник - блоки информации (дипломы и документы) для резюме работника | 318 | // кабинет - справочник - блоки информации (дипломы и документы) для резюме работника |
319 | /* | 319 | /* |
320 | * CRUD-операции над справочником дипломы и документы | 320 | * CRUD-операции над справочником дипломы и документы |
321 | */ | 321 | */ |
322 | //Route::get('infobloks', [WorkersController::class, 'infobloks'])->name('infobloks'); | 322 | //Route::get('infobloks', [WorkersController::class, 'infobloks'])->name('infobloks'); |
323 | Route::resource('infobloks', InfoBloksController::class, ['except' => ['show']]); | 323 | Route::resource('infobloks', InfoBloksController::class, ['except' => ['show']]); |
324 | 324 | ||
325 | // кабинет - роли пользователя | 325 | // кабинет - роли пользователя |
326 | Route::get('roles', [UsersController::class, 'roles'])->name('roles'); | 326 | Route::get('roles', [UsersController::class, 'roles'])->name('roles'); |
327 | 327 | ||
328 | Route::get('logs', function() { | 328 | Route::get('logs', function() { |
329 | $files = Storage::files('logs/laravel.log'); | 329 | $files = Storage::files('logs/laravel.log'); |
330 | print_r($files); | 330 | print_r($files); |
331 | })->name('logs'); | 331 | })->name('logs'); |
332 | 332 | ||
333 | }); | 333 | }); |
334 | 334 | ||
335 | Route::post('ckeditor/upload', [CKEditorController::class, 'upload'])->name('ckeditor.image-upload'); | 335 | Route::post('ckeditor/upload', [CKEditorController::class, 'upload'])->name('ckeditor.image-upload'); |
336 | 336 | ||
337 | Route::get('pages/{pages:slug}', [PagesController::class, 'pages'])->name('page'); | 337 | Route::get('pages/{pages:slug}', [PagesController::class, 'pages'])->name('page'); |
338 | 338 | ||
339 | Route::get('redis/', [PagesController::class, 'redis'])->name('redis'); | 339 | Route::get('redis/', [PagesController::class, 'redis'])->name('redis'); |
340 | |||
341 | Route::get('excel/', [PagesController::class, 'excel'])->name('excel'); | ||
340 | 342 |