composer.lock 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285
  1. {
  2. "_readme": [
  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",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "2ea4ea325e1eaad9d30be82c874afb48",
  8. "packages": [
  9. {
  10. "name": "doctrine/inflector",
  11. "version": "2.0.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/inflector.git",
  15. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  20. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2 || ^8.0"
  25. },
  26. "require-dev": {
  27. "doctrine/coding-standard": "^8.2",
  28. "phpstan/phpstan": "^0.12",
  29. "phpstan/phpstan-phpunit": "^0.12",
  30. "phpstan/phpstan-strict-rules": "^0.12",
  31. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  32. "vimeo/psalm": "^4.10"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Guilherme Blanco",
  47. "email": "guilhermeblanco@gmail.com"
  48. },
  49. {
  50. "name": "Roman Borschel",
  51. "email": "roman@code-factory.org"
  52. },
  53. {
  54. "name": "Benjamin Eberlei",
  55. "email": "kontakt@beberlei.de"
  56. },
  57. {
  58. "name": "Jonathan Wage",
  59. "email": "jonwage@gmail.com"
  60. },
  61. {
  62. "name": "Johannes Schmitt",
  63. "email": "schmittjoh@gmail.com"
  64. }
  65. ],
  66. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  67. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  68. "keywords": [
  69. "inflection",
  70. "inflector",
  71. "lowercase",
  72. "manipulation",
  73. "php",
  74. "plural",
  75. "singular",
  76. "strings",
  77. "uppercase",
  78. "words"
  79. ],
  80. "support": {
  81. "issues": "https://github.com/doctrine/inflector/issues",
  82. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  83. },
  84. "funding": [
  85. {
  86. "url": "https://www.doctrine-project.org/sponsorship.html",
  87. "type": "custom"
  88. },
  89. {
  90. "url": "https://www.patreon.com/phpdoctrine",
  91. "type": "patreon"
  92. },
  93. {
  94. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  95. "type": "tidelift"
  96. }
  97. ],
  98. "time": "2021-10-22T20:16:43+00:00"
  99. },
  100. {
  101. "name": "doctrine/lexer",
  102. "version": "1.2.2",
  103. "source": {
  104. "type": "git",
  105. "url": "https://github.com/doctrine/lexer.git",
  106. "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c"
  107. },
  108. "dist": {
  109. "type": "zip",
  110. "url": "https://api.github.com/repos/doctrine/lexer/zipball/9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
  111. "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
  112. "shasum": ""
  113. },
  114. "require": {
  115. "php": "^7.1 || ^8.0"
  116. },
  117. "require-dev": {
  118. "doctrine/coding-standard": "^9.0",
  119. "phpstan/phpstan": "1.3",
  120. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  121. "vimeo/psalm": "^4.11"
  122. },
  123. "type": "library",
  124. "autoload": {
  125. "psr-4": {
  126. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  127. }
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "MIT"
  132. ],
  133. "authors": [
  134. {
  135. "name": "Guilherme Blanco",
  136. "email": "guilhermeblanco@gmail.com"
  137. },
  138. {
  139. "name": "Roman Borschel",
  140. "email": "roman@code-factory.org"
  141. },
  142. {
  143. "name": "Johannes Schmitt",
  144. "email": "schmittjoh@gmail.com"
  145. }
  146. ],
  147. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  148. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  149. "keywords": [
  150. "annotations",
  151. "docblock",
  152. "lexer",
  153. "parser",
  154. "php"
  155. ],
  156. "support": {
  157. "issues": "https://github.com/doctrine/lexer/issues",
  158. "source": "https://github.com/doctrine/lexer/tree/1.2.2"
  159. },
  160. "funding": [
  161. {
  162. "url": "https://www.doctrine-project.org/sponsorship.html",
  163. "type": "custom"
  164. },
  165. {
  166. "url": "https://www.patreon.com/phpdoctrine",
  167. "type": "patreon"
  168. },
  169. {
  170. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  171. "type": "tidelift"
  172. }
  173. ],
  174. "time": "2022-01-12T08:27:12+00:00"
  175. },
  176. {
  177. "name": "egulias/email-validator",
  178. "version": "3.1.2",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/egulias/EmailValidator.git",
  182. "reference": "ee0db30118f661fb166bcffbf5d82032df484697"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697",
  187. "reference": "ee0db30118f661fb166bcffbf5d82032df484697",
  188. "shasum": ""
  189. },
  190. "require": {
  191. "doctrine/lexer": "^1.2",
  192. "php": ">=7.2",
  193. "symfony/polyfill-intl-idn": "^1.15"
  194. },
  195. "require-dev": {
  196. "php-coveralls/php-coveralls": "^2.2",
  197. "phpunit/phpunit": "^8.5.8|^9.3.3",
  198. "vimeo/psalm": "^4"
  199. },
  200. "suggest": {
  201. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  202. },
  203. "type": "library",
  204. "extra": {
  205. "branch-alias": {
  206. "dev-master": "3.0.x-dev"
  207. }
  208. },
  209. "autoload": {
  210. "psr-4": {
  211. "Egulias\\EmailValidator\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "MIT"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Eduardo Gulias Davis"
  221. }
  222. ],
  223. "description": "A library for validating emails against several RFCs",
  224. "homepage": "https://github.com/egulias/EmailValidator",
  225. "keywords": [
  226. "email",
  227. "emailvalidation",
  228. "emailvalidator",
  229. "validation",
  230. "validator"
  231. ],
  232. "support": {
  233. "issues": "https://github.com/egulias/EmailValidator/issues",
  234. "source": "https://github.com/egulias/EmailValidator/tree/3.1.2"
  235. },
  236. "funding": [
  237. {
  238. "url": "https://github.com/egulias",
  239. "type": "github"
  240. }
  241. ],
  242. "time": "2021-10-11T09:18:27+00:00"
  243. },
  244. {
  245. "name": "illuminate/collections",
  246. "version": "v9.0.2",
  247. "source": {
  248. "type": "git",
  249. "url": "https://github.com/illuminate/collections.git",
  250. "reference": "707ab36191228b1a4cf322985796ff7aab5578c1"
  251. },
  252. "dist": {
  253. "type": "zip",
  254. "url": "https://api.github.com/repos/illuminate/collections/zipball/707ab36191228b1a4cf322985796ff7aab5578c1",
  255. "reference": "707ab36191228b1a4cf322985796ff7aab5578c1",
  256. "shasum": ""
  257. },
  258. "require": {
  259. "illuminate/conditionable": "^9.0",
  260. "illuminate/contracts": "^9.0",
  261. "illuminate/macroable": "^9.0",
  262. "php": "^8.0.2"
  263. },
  264. "suggest": {
  265. "symfony/var-dumper": "Required to use the dump method (^6.0)."
  266. },
  267. "type": "library",
  268. "extra": {
  269. "branch-alias": {
  270. "dev-master": "9.x-dev"
  271. }
  272. },
  273. "autoload": {
  274. "files": [
  275. "helpers.php"
  276. ],
  277. "psr-4": {
  278. "Illuminate\\Support\\": ""
  279. }
  280. },
  281. "notification-url": "https://packagist.org/downloads/",
  282. "license": [
  283. "MIT"
  284. ],
  285. "authors": [
  286. {
  287. "name": "Taylor Otwell",
  288. "email": "taylor@laravel.com"
  289. }
  290. ],
  291. "description": "The Illuminate Collections package.",
  292. "homepage": "https://laravel.com",
  293. "support": {
  294. "issues": "https://github.com/laravel/framework/issues",
  295. "source": "https://github.com/laravel/framework"
  296. },
  297. "time": "2022-02-09T21:49:11+00:00"
  298. },
  299. {
  300. "name": "illuminate/conditionable",
  301. "version": "v9.0.2",
  302. "source": {
  303. "type": "git",
  304. "url": "https://github.com/illuminate/conditionable.git",
  305. "reference": "4f7e3d67ceda9a6188757501748982ea9ed5f69a"
  306. },
  307. "dist": {
  308. "type": "zip",
  309. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/4f7e3d67ceda9a6188757501748982ea9ed5f69a",
  310. "reference": "4f7e3d67ceda9a6188757501748982ea9ed5f69a",
  311. "shasum": ""
  312. },
  313. "require": {
  314. "php": "^8.0.2"
  315. },
  316. "type": "library",
  317. "extra": {
  318. "branch-alias": {
  319. "dev-master": "9.x-dev"
  320. }
  321. },
  322. "autoload": {
  323. "psr-4": {
  324. "Illuminate\\Support\\": ""
  325. }
  326. },
  327. "notification-url": "https://packagist.org/downloads/",
  328. "license": [
  329. "MIT"
  330. ],
  331. "authors": [
  332. {
  333. "name": "Taylor Otwell",
  334. "email": "taylor@laravel.com"
  335. }
  336. ],
  337. "description": "The Illuminate Conditionable package.",
  338. "homepage": "https://laravel.com",
  339. "support": {
  340. "issues": "https://github.com/laravel/framework/issues",
  341. "source": "https://github.com/laravel/framework"
  342. },
  343. "time": "2022-02-09T14:26:32+00:00"
  344. },
  345. {
  346. "name": "illuminate/config",
  347. "version": "v9.0.2",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/illuminate/config.git",
  351. "reference": "d2dc74fdcc89239e1910a8d08b2b2e5ad26a043c"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/illuminate/config/zipball/d2dc74fdcc89239e1910a8d08b2b2e5ad26a043c",
  356. "reference": "d2dc74fdcc89239e1910a8d08b2b2e5ad26a043c",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "illuminate/collections": "^9.0",
  361. "illuminate/contracts": "^9.0",
  362. "php": "^8.0.2"
  363. },
  364. "type": "library",
  365. "extra": {
  366. "branch-alias": {
  367. "dev-master": "9.x-dev"
  368. }
  369. },
  370. "autoload": {
  371. "psr-4": {
  372. "Illuminate\\Config\\": ""
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "MIT"
  378. ],
  379. "authors": [
  380. {
  381. "name": "Taylor Otwell",
  382. "email": "taylor@laravel.com"
  383. }
  384. ],
  385. "description": "The Illuminate Config package.",
  386. "homepage": "https://laravel.com",
  387. "support": {
  388. "issues": "https://github.com/laravel/framework/issues",
  389. "source": "https://github.com/laravel/framework"
  390. },
  391. "time": "2022-02-01T16:16:50+00:00"
  392. },
  393. {
  394. "name": "illuminate/console",
  395. "version": "v9.0.2",
  396. "source": {
  397. "type": "git",
  398. "url": "https://github.com/illuminate/console.git",
  399. "reference": "cb3486758b07ae824bc763592d414973a17658b7"
  400. },
  401. "dist": {
  402. "type": "zip",
  403. "url": "https://api.github.com/repos/illuminate/console/zipball/cb3486758b07ae824bc763592d414973a17658b7",
  404. "reference": "cb3486758b07ae824bc763592d414973a17658b7",
  405. "shasum": ""
  406. },
  407. "require": {
  408. "illuminate/collections": "^9.0",
  409. "illuminate/contracts": "^9.0",
  410. "illuminate/macroable": "^9.0",
  411. "illuminate/support": "^9.0",
  412. "php": "^8.0.2",
  413. "symfony/console": "^6.0",
  414. "symfony/process": "^6.0"
  415. },
  416. "suggest": {
  417. "dragonmantank/cron-expression": "Required to use scheduler (^3.1).",
  418. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^7.2).",
  419. "illuminate/bus": "Required to use the scheduled job dispatcher (^9.0).",
  420. "illuminate/container": "Required to use the scheduler (^9.0).",
  421. "illuminate/filesystem": "Required to use the generator command (^9.0).",
  422. "illuminate/queue": "Required to use closures for scheduled jobs (^9.0)."
  423. },
  424. "type": "library",
  425. "extra": {
  426. "branch-alias": {
  427. "dev-master": "9.x-dev"
  428. }
  429. },
  430. "autoload": {
  431. "psr-4": {
  432. "Illuminate\\Console\\": ""
  433. }
  434. },
  435. "notification-url": "https://packagist.org/downloads/",
  436. "license": [
  437. "MIT"
  438. ],
  439. "authors": [
  440. {
  441. "name": "Taylor Otwell",
  442. "email": "taylor@laravel.com"
  443. }
  444. ],
  445. "description": "The Illuminate Console package.",
  446. "homepage": "https://laravel.com",
  447. "support": {
  448. "issues": "https://github.com/laravel/framework/issues",
  449. "source": "https://github.com/laravel/framework"
  450. },
  451. "time": "2022-02-01T14:44:21+00:00"
  452. },
  453. {
  454. "name": "illuminate/container",
  455. "version": "v9.0.2",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/illuminate/container.git",
  459. "reference": "b249d566e8f93b9255d84f4c06a8cc7db24c900c"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/illuminate/container/zipball/b249d566e8f93b9255d84f4c06a8cc7db24c900c",
  464. "reference": "b249d566e8f93b9255d84f4c06a8cc7db24c900c",
  465. "shasum": ""
  466. },
  467. "require": {
  468. "illuminate/contracts": "^9.0",
  469. "php": "^8.0.2",
  470. "psr/container": "^1.1.1|^2.0.1"
  471. },
  472. "provide": {
  473. "psr/container-implementation": "1.1|2.0"
  474. },
  475. "type": "library",
  476. "extra": {
  477. "branch-alias": {
  478. "dev-master": "9.x-dev"
  479. }
  480. },
  481. "autoload": {
  482. "psr-4": {
  483. "Illuminate\\Container\\": ""
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Taylor Otwell",
  493. "email": "taylor@laravel.com"
  494. }
  495. ],
  496. "description": "The Illuminate Container package.",
  497. "homepage": "https://laravel.com",
  498. "support": {
  499. "issues": "https://github.com/laravel/framework/issues",
  500. "source": "https://github.com/laravel/framework"
  501. },
  502. "time": "2022-02-05T18:02:43+00:00"
  503. },
  504. {
  505. "name": "illuminate/contracts",
  506. "version": "v9.0.2",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/illuminate/contracts.git",
  510. "reference": "a6e356b03c62e96561072e569bdb3e15fe118d3f"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/illuminate/contracts/zipball/a6e356b03c62e96561072e569bdb3e15fe118d3f",
  515. "reference": "a6e356b03c62e96561072e569bdb3e15fe118d3f",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "php": "^8.0.2",
  520. "psr/container": "^1.1.1|^2.0.1",
  521. "psr/simple-cache": "^1.0|^2.0|^3.0"
  522. },
  523. "type": "library",
  524. "extra": {
  525. "branch-alias": {
  526. "dev-master": "9.x-dev"
  527. }
  528. },
  529. "autoload": {
  530. "psr-4": {
  531. "Illuminate\\Contracts\\": ""
  532. }
  533. },
  534. "notification-url": "https://packagist.org/downloads/",
  535. "license": [
  536. "MIT"
  537. ],
  538. "authors": [
  539. {
  540. "name": "Taylor Otwell",
  541. "email": "taylor@laravel.com"
  542. }
  543. ],
  544. "description": "The Illuminate Contracts package.",
  545. "homepage": "https://laravel.com",
  546. "support": {
  547. "issues": "https://github.com/laravel/framework/issues",
  548. "source": "https://github.com/laravel/framework"
  549. },
  550. "time": "2022-02-01T14:44:21+00:00"
  551. },
  552. {
  553. "name": "illuminate/database",
  554. "version": "v9.0.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/illuminate/database.git",
  558. "reference": "23be1a5e1d6179cfd25c2174c5c0149d110fb628"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/illuminate/database/zipball/23be1a5e1d6179cfd25c2174c5c0149d110fb628",
  563. "reference": "23be1a5e1d6179cfd25c2174c5c0149d110fb628",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "ext-json": "*",
  568. "illuminate/collections": "^9.0",
  569. "illuminate/container": "^9.0",
  570. "illuminate/contracts": "^9.0",
  571. "illuminate/macroable": "^9.0",
  572. "illuminate/support": "^9.0",
  573. "php": "^8.0.2",
  574. "symfony/console": "^6.0"
  575. },
  576. "suggest": {
  577. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  578. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  579. "illuminate/console": "Required to use the database commands (^9.0).",
  580. "illuminate/events": "Required to use the observers with Eloquent (^9.0).",
  581. "illuminate/filesystem": "Required to use the migrations (^9.0).",
  582. "illuminate/pagination": "Required to paginate the result set (^9.0).",
  583. "symfony/finder": "Required to use Eloquent model factories (^6.0)."
  584. },
  585. "type": "library",
  586. "extra": {
  587. "branch-alias": {
  588. "dev-master": "9.x-dev"
  589. }
  590. },
  591. "autoload": {
  592. "psr-4": {
  593. "Illuminate\\Database\\": ""
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Taylor Otwell",
  603. "email": "taylor@laravel.com"
  604. }
  605. ],
  606. "description": "The Illuminate Database package.",
  607. "homepage": "https://laravel.com",
  608. "keywords": [
  609. "database",
  610. "laravel",
  611. "orm",
  612. "sql"
  613. ],
  614. "support": {
  615. "issues": "https://github.com/laravel/framework/issues",
  616. "source": "https://github.com/laravel/framework"
  617. },
  618. "time": "2022-02-09T21:49:11+00:00"
  619. },
  620. {
  621. "name": "illuminate/filesystem",
  622. "version": "v9.0.2",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/illuminate/filesystem.git",
  626. "reference": "2c74846fcd65df0fd5c2355b67bacfb94689fa32"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/2c74846fcd65df0fd5c2355b67bacfb94689fa32",
  631. "reference": "2c74846fcd65df0fd5c2355b67bacfb94689fa32",
  632. "shasum": ""
  633. },
  634. "require": {
  635. "illuminate/collections": "^9.0",
  636. "illuminate/contracts": "^9.0",
  637. "illuminate/macroable": "^9.0",
  638. "illuminate/support": "^9.0",
  639. "php": "^8.0.2",
  640. "symfony/finder": "^6.0"
  641. },
  642. "suggest": {
  643. "ext-ftp": "Required to use the Flysystem FTP driver.",
  644. "illuminate/http": "Required for handling uploaded files (^7.0).",
  645. "league/flysystem": "Required to use the Flysystem local driver (^3.0).",
  646. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  647. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  648. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  649. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  650. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  651. "symfony/mime": "Required to enable support for guessing extensions (^6.0)."
  652. },
  653. "type": "library",
  654. "extra": {
  655. "branch-alias": {
  656. "dev-master": "9.x-dev"
  657. }
  658. },
  659. "autoload": {
  660. "psr-4": {
  661. "Illuminate\\Filesystem\\": ""
  662. }
  663. },
  664. "notification-url": "https://packagist.org/downloads/",
  665. "license": [
  666. "MIT"
  667. ],
  668. "authors": [
  669. {
  670. "name": "Taylor Otwell",
  671. "email": "taylor@laravel.com"
  672. }
  673. ],
  674. "description": "The Illuminate Filesystem package.",
  675. "homepage": "https://laravel.com",
  676. "support": {
  677. "issues": "https://github.com/laravel/framework/issues",
  678. "source": "https://github.com/laravel/framework"
  679. },
  680. "time": "2022-02-05T18:03:05+00:00"
  681. },
  682. {
  683. "name": "illuminate/http",
  684. "version": "v9.0.2",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/illuminate/http.git",
  688. "reference": "04d650e70e4fef9e2c3364b740aac1d95abc8e0e"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/illuminate/http/zipball/04d650e70e4fef9e2c3364b740aac1d95abc8e0e",
  693. "reference": "04d650e70e4fef9e2c3364b740aac1d95abc8e0e",
  694. "shasum": ""
  695. },
  696. "require": {
  697. "ext-json": "*",
  698. "illuminate/collections": "^9.0",
  699. "illuminate/macroable": "^9.0",
  700. "illuminate/session": "^9.0",
  701. "illuminate/support": "^9.0",
  702. "php": "^8.0.2",
  703. "symfony/http-foundation": "^6.0",
  704. "symfony/http-kernel": "^6.0",
  705. "symfony/mime": "^6.0"
  706. },
  707. "suggest": {
  708. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  709. "guzzlehttp/guzzle": "Required to use the HTTP Client (^7.2)."
  710. },
  711. "type": "library",
  712. "extra": {
  713. "branch-alias": {
  714. "dev-master": "9.x-dev"
  715. }
  716. },
  717. "autoload": {
  718. "psr-4": {
  719. "Illuminate\\Http\\": ""
  720. }
  721. },
  722. "notification-url": "https://packagist.org/downloads/",
  723. "license": [
  724. "MIT"
  725. ],
  726. "authors": [
  727. {
  728. "name": "Taylor Otwell",
  729. "email": "taylor@laravel.com"
  730. }
  731. ],
  732. "description": "The Illuminate Http package.",
  733. "homepage": "https://laravel.com",
  734. "support": {
  735. "issues": "https://github.com/laravel/framework/issues",
  736. "source": "https://github.com/laravel/framework"
  737. },
  738. "time": "2022-02-10T15:03:13+00:00"
  739. },
  740. {
  741. "name": "illuminate/macroable",
  742. "version": "v9.0.2",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/illuminate/macroable.git",
  746. "reference": "25a2c6dac2b7541ecbadef952702e84ae15f5354"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/illuminate/macroable/zipball/25a2c6dac2b7541ecbadef952702e84ae15f5354",
  751. "reference": "25a2c6dac2b7541ecbadef952702e84ae15f5354",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "php": "^8.0.2"
  756. },
  757. "type": "library",
  758. "extra": {
  759. "branch-alias": {
  760. "dev-master": "9.x-dev"
  761. }
  762. },
  763. "autoload": {
  764. "psr-4": {
  765. "Illuminate\\Support\\": ""
  766. }
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Taylor Otwell",
  775. "email": "taylor@laravel.com"
  776. }
  777. ],
  778. "description": "The Illuminate Macroable package.",
  779. "homepage": "https://laravel.com",
  780. "support": {
  781. "issues": "https://github.com/laravel/framework/issues",
  782. "source": "https://github.com/laravel/framework"
  783. },
  784. "time": "2022-02-01T14:44:21+00:00"
  785. },
  786. {
  787. "name": "illuminate/pagination",
  788. "version": "v9.0.2",
  789. "source": {
  790. "type": "git",
  791. "url": "https://github.com/illuminate/pagination.git",
  792. "reference": "d645356dfc73ad90d8219a9c0fb43b62af6b793e"
  793. },
  794. "dist": {
  795. "type": "zip",
  796. "url": "https://api.github.com/repos/illuminate/pagination/zipball/d645356dfc73ad90d8219a9c0fb43b62af6b793e",
  797. "reference": "d645356dfc73ad90d8219a9c0fb43b62af6b793e",
  798. "shasum": ""
  799. },
  800. "require": {
  801. "ext-json": "*",
  802. "illuminate/collections": "^9.0",
  803. "illuminate/contracts": "^9.0",
  804. "illuminate/support": "^9.0",
  805. "php": "^8.0.2"
  806. },
  807. "type": "library",
  808. "extra": {
  809. "branch-alias": {
  810. "dev-master": "9.x-dev"
  811. }
  812. },
  813. "autoload": {
  814. "psr-4": {
  815. "Illuminate\\Pagination\\": ""
  816. }
  817. },
  818. "notification-url": "https://packagist.org/downloads/",
  819. "license": [
  820. "MIT"
  821. ],
  822. "authors": [
  823. {
  824. "name": "Taylor Otwell",
  825. "email": "taylor@laravel.com"
  826. }
  827. ],
  828. "description": "The Illuminate Pagination package.",
  829. "homepage": "https://laravel.com",
  830. "support": {
  831. "issues": "https://github.com/laravel/framework/issues",
  832. "source": "https://github.com/laravel/framework"
  833. },
  834. "time": "2022-02-01T14:44:21+00:00"
  835. },
  836. {
  837. "name": "illuminate/session",
  838. "version": "v9.0.2",
  839. "source": {
  840. "type": "git",
  841. "url": "https://github.com/illuminate/session.git",
  842. "reference": "bbda6e9c6fbb61c522fcd5e0a196735b0c628ae5"
  843. },
  844. "dist": {
  845. "type": "zip",
  846. "url": "https://api.github.com/repos/illuminate/session/zipball/bbda6e9c6fbb61c522fcd5e0a196735b0c628ae5",
  847. "reference": "bbda6e9c6fbb61c522fcd5e0a196735b0c628ae5",
  848. "shasum": ""
  849. },
  850. "require": {
  851. "ext-json": "*",
  852. "illuminate/collections": "^9.0",
  853. "illuminate/contracts": "^9.0",
  854. "illuminate/filesystem": "^9.0",
  855. "illuminate/support": "^9.0",
  856. "php": "^8.0.2",
  857. "symfony/finder": "^6.0",
  858. "symfony/http-foundation": "^6.0"
  859. },
  860. "suggest": {
  861. "illuminate/console": "Required to use the session:table command (^9.0)."
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "9.x-dev"
  867. }
  868. },
  869. "autoload": {
  870. "psr-4": {
  871. "Illuminate\\Session\\": ""
  872. }
  873. },
  874. "notification-url": "https://packagist.org/downloads/",
  875. "license": [
  876. "MIT"
  877. ],
  878. "authors": [
  879. {
  880. "name": "Taylor Otwell",
  881. "email": "taylor@laravel.com"
  882. }
  883. ],
  884. "description": "The Illuminate Session package.",
  885. "homepage": "https://laravel.com",
  886. "support": {
  887. "issues": "https://github.com/laravel/framework/issues",
  888. "source": "https://github.com/laravel/framework"
  889. },
  890. "time": "2022-02-01T14:44:21+00:00"
  891. },
  892. {
  893. "name": "illuminate/support",
  894. "version": "v9.0.2",
  895. "source": {
  896. "type": "git",
  897. "url": "https://github.com/illuminate/support.git",
  898. "reference": "7fe407a1cf5e300546bbbd5284cc9a752a659366"
  899. },
  900. "dist": {
  901. "type": "zip",
  902. "url": "https://api.github.com/repos/illuminate/support/zipball/7fe407a1cf5e300546bbbd5284cc9a752a659366",
  903. "reference": "7fe407a1cf5e300546bbbd5284cc9a752a659366",
  904. "shasum": ""
  905. },
  906. "require": {
  907. "doctrine/inflector": "^2.0",
  908. "ext-json": "*",
  909. "ext-mbstring": "*",
  910. "illuminate/collections": "^9.0",
  911. "illuminate/conditionable": "^9.0",
  912. "illuminate/contracts": "^9.0",
  913. "illuminate/macroable": "^9.0",
  914. "nesbot/carbon": "^2.53.1",
  915. "php": "^8.0.2",
  916. "voku/portable-ascii": "^2.0"
  917. },
  918. "conflict": {
  919. "tightenco/collect": "<5.5.33"
  920. },
  921. "suggest": {
  922. "illuminate/filesystem": "Required to use the composer class (^9.0).",
  923. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  924. "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).",
  925. "symfony/process": "Required to use the composer class (^6.0).",
  926. "symfony/var-dumper": "Required to use the dd function (^6.0).",
  927. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  928. },
  929. "type": "library",
  930. "extra": {
  931. "branch-alias": {
  932. "dev-master": "9.x-dev"
  933. }
  934. },
  935. "autoload": {
  936. "files": [
  937. "helpers.php"
  938. ],
  939. "psr-4": {
  940. "Illuminate\\Support\\": ""
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Taylor Otwell",
  950. "email": "taylor@laravel.com"
  951. }
  952. ],
  953. "description": "The Illuminate Support package.",
  954. "homepage": "https://laravel.com",
  955. "support": {
  956. "issues": "https://github.com/laravel/framework/issues",
  957. "source": "https://github.com/laravel/framework"
  958. },
  959. "time": "2022-02-08T14:51:36+00:00"
  960. },
  961. {
  962. "name": "illuminate/translation",
  963. "version": "v9.0.2",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/illuminate/translation.git",
  967. "reference": "8bdac1ceea6be67e8f1c93ad68ac4abe1f91df3f"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/illuminate/translation/zipball/8bdac1ceea6be67e8f1c93ad68ac4abe1f91df3f",
  972. "reference": "8bdac1ceea6be67e8f1c93ad68ac4abe1f91df3f",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "ext-json": "*",
  977. "illuminate/collections": "^9.0",
  978. "illuminate/contracts": "^9.0",
  979. "illuminate/filesystem": "^9.0",
  980. "illuminate/macroable": "^9.0",
  981. "illuminate/support": "^9.0",
  982. "php": "^8.0.2"
  983. },
  984. "type": "library",
  985. "extra": {
  986. "branch-alias": {
  987. "dev-master": "9.x-dev"
  988. }
  989. },
  990. "autoload": {
  991. "psr-4": {
  992. "Illuminate\\Translation\\": ""
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Taylor Otwell",
  1002. "email": "taylor@laravel.com"
  1003. }
  1004. ],
  1005. "description": "The Illuminate Translation package.",
  1006. "homepage": "https://laravel.com",
  1007. "support": {
  1008. "issues": "https://github.com/laravel/framework/issues",
  1009. "source": "https://github.com/laravel/framework"
  1010. },
  1011. "time": "2022-02-01T14:44:21+00:00"
  1012. },
  1013. {
  1014. "name": "illuminate/validation",
  1015. "version": "v9.0.2",
  1016. "source": {
  1017. "type": "git",
  1018. "url": "https://github.com/illuminate/validation.git",
  1019. "reference": "81c77a578871775a7ec23fa639666bcca6a6e7e5"
  1020. },
  1021. "dist": {
  1022. "type": "zip",
  1023. "url": "https://api.github.com/repos/illuminate/validation/zipball/81c77a578871775a7ec23fa639666bcca6a6e7e5",
  1024. "reference": "81c77a578871775a7ec23fa639666bcca6a6e7e5",
  1025. "shasum": ""
  1026. },
  1027. "require": {
  1028. "egulias/email-validator": "^3.1",
  1029. "ext-json": "*",
  1030. "illuminate/collections": "^9.0",
  1031. "illuminate/container": "^9.0",
  1032. "illuminate/contracts": "^9.0",
  1033. "illuminate/macroable": "^9.0",
  1034. "illuminate/support": "^9.0",
  1035. "illuminate/translation": "^9.0",
  1036. "php": "^8.0.2",
  1037. "symfony/http-foundation": "^6.0",
  1038. "symfony/mime": "^6.0"
  1039. },
  1040. "suggest": {
  1041. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1042. "illuminate/database": "Required to use the database presence verifier (^9.0)."
  1043. },
  1044. "type": "library",
  1045. "extra": {
  1046. "branch-alias": {
  1047. "dev-master": "9.x-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "psr-4": {
  1052. "Illuminate\\Validation\\": ""
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Taylor Otwell",
  1062. "email": "taylor@laravel.com"
  1063. }
  1064. ],
  1065. "description": "The Illuminate Validation package.",
  1066. "homepage": "https://laravel.com",
  1067. "support": {
  1068. "issues": "https://github.com/laravel/framework/issues",
  1069. "source": "https://github.com/laravel/framework"
  1070. },
  1071. "time": "2022-02-10T14:48:35+00:00"
  1072. },
  1073. {
  1074. "name": "nesbot/carbon",
  1075. "version": "2.56.0",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/briannesbitt/Carbon.git",
  1079. "reference": "626ec8cbb724cd3c3400c3ed8f730545b744e3f4"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/626ec8cbb724cd3c3400c3ed8f730545b744e3f4",
  1084. "reference": "626ec8cbb724cd3c3400c3ed8f730545b744e3f4",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "ext-json": "*",
  1089. "php": "^7.1.8 || ^8.0",
  1090. "symfony/polyfill-mbstring": "^1.0",
  1091. "symfony/polyfill-php80": "^1.16",
  1092. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1093. },
  1094. "require-dev": {
  1095. "doctrine/dbal": "^2.0 || ^3.0",
  1096. "doctrine/orm": "^2.7",
  1097. "friendsofphp/php-cs-fixer": "^3.0",
  1098. "kylekatarnls/multi-tester": "^2.0",
  1099. "phpmd/phpmd": "^2.9",
  1100. "phpstan/extension-installer": "^1.0",
  1101. "phpstan/phpstan": "^0.12.54 || ^1.0",
  1102. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  1103. "squizlabs/php_codesniffer": "^3.4"
  1104. },
  1105. "bin": [
  1106. "bin/carbon"
  1107. ],
  1108. "type": "library",
  1109. "extra": {
  1110. "branch-alias": {
  1111. "dev-3.x": "3.x-dev",
  1112. "dev-master": "2.x-dev"
  1113. },
  1114. "laravel": {
  1115. "providers": [
  1116. "Carbon\\Laravel\\ServiceProvider"
  1117. ]
  1118. },
  1119. "phpstan": {
  1120. "includes": [
  1121. "extension.neon"
  1122. ]
  1123. }
  1124. },
  1125. "autoload": {
  1126. "psr-4": {
  1127. "Carbon\\": "src/Carbon/"
  1128. }
  1129. },
  1130. "notification-url": "https://packagist.org/downloads/",
  1131. "license": [
  1132. "MIT"
  1133. ],
  1134. "authors": [
  1135. {
  1136. "name": "Brian Nesbitt",
  1137. "email": "brian@nesbot.com",
  1138. "homepage": "https://markido.com"
  1139. },
  1140. {
  1141. "name": "kylekatarnls",
  1142. "homepage": "https://github.com/kylekatarnls"
  1143. }
  1144. ],
  1145. "description": "An API extension for DateTime that supports 281 different languages.",
  1146. "homepage": "https://carbon.nesbot.com",
  1147. "keywords": [
  1148. "date",
  1149. "datetime",
  1150. "time"
  1151. ],
  1152. "support": {
  1153. "docs": "https://carbon.nesbot.com/docs",
  1154. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1155. "source": "https://github.com/briannesbitt/Carbon"
  1156. },
  1157. "funding": [
  1158. {
  1159. "url": "https://opencollective.com/Carbon",
  1160. "type": "open_collective"
  1161. },
  1162. {
  1163. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1164. "type": "tidelift"
  1165. }
  1166. ],
  1167. "time": "2022-01-21T17:08:38+00:00"
  1168. },
  1169. {
  1170. "name": "prettus/laravel-validation",
  1171. "version": "1.4.0",
  1172. "dist": {
  1173. "type": "path",
  1174. "url": "/home/sam/Projects/laravel-validator",
  1175. "reference": "3bca9e0480e708bf06dd0863a3bf2a543629e734"
  1176. },
  1177. "require": {
  1178. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0",
  1179. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0",
  1180. "php": ">=5.4.0"
  1181. },
  1182. "type": "library",
  1183. "autoload": {
  1184. "psr-4": {
  1185. "Prettus\\Validator\\": "src/Prettus/Validator/"
  1186. }
  1187. },
  1188. "authors": [
  1189. {
  1190. "name": "Anderson Andrade",
  1191. "homepage": "http://andersonandra.de",
  1192. "email": "contato@andersonandra.de",
  1193. "role": "Developer"
  1194. }
  1195. ],
  1196. "description": "Laravel Validation Service",
  1197. "homepage": "http://andersao.github.io/laravel-validation",
  1198. "keywords": [
  1199. "laravel",
  1200. "service",
  1201. "validation"
  1202. ],
  1203. "support": {
  1204. "email": "contato@andersonandra.de",
  1205. "issues": "https://github.com/andersao/laravel-validation/issues",
  1206. "wiki": "https://github.com/andersao/laravel-validation",
  1207. "source": "https://github.com/andersao/laravel-validation",
  1208. "docs": "http://andersao.github.io/laravel-validation"
  1209. },
  1210. "transport-options": {
  1211. "relative": false
  1212. }
  1213. },
  1214. {
  1215. "name": "psr/container",
  1216. "version": "2.0.2",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/php-fig/container.git",
  1220. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1225. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "php": ">=7.4.0"
  1230. },
  1231. "type": "library",
  1232. "extra": {
  1233. "branch-alias": {
  1234. "dev-master": "2.0.x-dev"
  1235. }
  1236. },
  1237. "autoload": {
  1238. "psr-4": {
  1239. "Psr\\Container\\": "src/"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "PHP-FIG",
  1249. "homepage": "https://www.php-fig.org/"
  1250. }
  1251. ],
  1252. "description": "Common Container Interface (PHP FIG PSR-11)",
  1253. "homepage": "https://github.com/php-fig/container",
  1254. "keywords": [
  1255. "PSR-11",
  1256. "container",
  1257. "container-interface",
  1258. "container-interop",
  1259. "psr"
  1260. ],
  1261. "support": {
  1262. "issues": "https://github.com/php-fig/container/issues",
  1263. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1264. },
  1265. "time": "2021-11-05T16:47:00+00:00"
  1266. },
  1267. {
  1268. "name": "psr/event-dispatcher",
  1269. "version": "1.0.0",
  1270. "source": {
  1271. "type": "git",
  1272. "url": "https://github.com/php-fig/event-dispatcher.git",
  1273. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1274. },
  1275. "dist": {
  1276. "type": "zip",
  1277. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1278. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1279. "shasum": ""
  1280. },
  1281. "require": {
  1282. "php": ">=7.2.0"
  1283. },
  1284. "type": "library",
  1285. "extra": {
  1286. "branch-alias": {
  1287. "dev-master": "1.0.x-dev"
  1288. }
  1289. },
  1290. "autoload": {
  1291. "psr-4": {
  1292. "Psr\\EventDispatcher\\": "src/"
  1293. }
  1294. },
  1295. "notification-url": "https://packagist.org/downloads/",
  1296. "license": [
  1297. "MIT"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "PHP-FIG",
  1302. "homepage": "http://www.php-fig.org/"
  1303. }
  1304. ],
  1305. "description": "Standard interfaces for event handling.",
  1306. "keywords": [
  1307. "events",
  1308. "psr",
  1309. "psr-14"
  1310. ],
  1311. "support": {
  1312. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1313. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1314. },
  1315. "time": "2019-01-08T18:20:26+00:00"
  1316. },
  1317. {
  1318. "name": "psr/log",
  1319. "version": "3.0.0",
  1320. "source": {
  1321. "type": "git",
  1322. "url": "https://github.com/php-fig/log.git",
  1323. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  1324. },
  1325. "dist": {
  1326. "type": "zip",
  1327. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1328. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1329. "shasum": ""
  1330. },
  1331. "require": {
  1332. "php": ">=8.0.0"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "branch-alias": {
  1337. "dev-master": "3.x-dev"
  1338. }
  1339. },
  1340. "autoload": {
  1341. "psr-4": {
  1342. "Psr\\Log\\": "src"
  1343. }
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "MIT"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "PHP-FIG",
  1352. "homepage": "https://www.php-fig.org/"
  1353. }
  1354. ],
  1355. "description": "Common interface for logging libraries",
  1356. "homepage": "https://github.com/php-fig/log",
  1357. "keywords": [
  1358. "log",
  1359. "psr",
  1360. "psr-3"
  1361. ],
  1362. "support": {
  1363. "source": "https://github.com/php-fig/log/tree/3.0.0"
  1364. },
  1365. "time": "2021-07-14T16:46:02+00:00"
  1366. },
  1367. {
  1368. "name": "psr/simple-cache",
  1369. "version": "3.0.0",
  1370. "source": {
  1371. "type": "git",
  1372. "url": "https://github.com/php-fig/simple-cache.git",
  1373. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  1374. },
  1375. "dist": {
  1376. "type": "zip",
  1377. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1378. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1379. "shasum": ""
  1380. },
  1381. "require": {
  1382. "php": ">=8.0.0"
  1383. },
  1384. "type": "library",
  1385. "extra": {
  1386. "branch-alias": {
  1387. "dev-master": "3.0.x-dev"
  1388. }
  1389. },
  1390. "autoload": {
  1391. "psr-4": {
  1392. "Psr\\SimpleCache\\": "src/"
  1393. }
  1394. },
  1395. "notification-url": "https://packagist.org/downloads/",
  1396. "license": [
  1397. "MIT"
  1398. ],
  1399. "authors": [
  1400. {
  1401. "name": "PHP-FIG",
  1402. "homepage": "https://www.php-fig.org/"
  1403. }
  1404. ],
  1405. "description": "Common interfaces for simple caching",
  1406. "keywords": [
  1407. "cache",
  1408. "caching",
  1409. "psr",
  1410. "psr-16",
  1411. "simple-cache"
  1412. ],
  1413. "support": {
  1414. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  1415. },
  1416. "time": "2021-10-29T13:26:27+00:00"
  1417. },
  1418. {
  1419. "name": "symfony/console",
  1420. "version": "v6.0.3",
  1421. "source": {
  1422. "type": "git",
  1423. "url": "https://github.com/symfony/console.git",
  1424. "reference": "22e8efd019c3270c4f79376234a3f8752cd25490"
  1425. },
  1426. "dist": {
  1427. "type": "zip",
  1428. "url": "https://api.github.com/repos/symfony/console/zipball/22e8efd019c3270c4f79376234a3f8752cd25490",
  1429. "reference": "22e8efd019c3270c4f79376234a3f8752cd25490",
  1430. "shasum": ""
  1431. },
  1432. "require": {
  1433. "php": ">=8.0.2",
  1434. "symfony/polyfill-mbstring": "~1.0",
  1435. "symfony/service-contracts": "^1.1|^2|^3",
  1436. "symfony/string": "^5.4|^6.0"
  1437. },
  1438. "conflict": {
  1439. "symfony/dependency-injection": "<5.4",
  1440. "symfony/dotenv": "<5.4",
  1441. "symfony/event-dispatcher": "<5.4",
  1442. "symfony/lock": "<5.4",
  1443. "symfony/process": "<5.4"
  1444. },
  1445. "provide": {
  1446. "psr/log-implementation": "1.0|2.0|3.0"
  1447. },
  1448. "require-dev": {
  1449. "psr/log": "^1|^2|^3",
  1450. "symfony/config": "^5.4|^6.0",
  1451. "symfony/dependency-injection": "^5.4|^6.0",
  1452. "symfony/event-dispatcher": "^5.4|^6.0",
  1453. "symfony/lock": "^5.4|^6.0",
  1454. "symfony/process": "^5.4|^6.0",
  1455. "symfony/var-dumper": "^5.4|^6.0"
  1456. },
  1457. "suggest": {
  1458. "psr/log": "For using the console logger",
  1459. "symfony/event-dispatcher": "",
  1460. "symfony/lock": "",
  1461. "symfony/process": ""
  1462. },
  1463. "type": "library",
  1464. "autoload": {
  1465. "psr-4": {
  1466. "Symfony\\Component\\Console\\": ""
  1467. },
  1468. "exclude-from-classmap": [
  1469. "/Tests/"
  1470. ]
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Fabien Potencier",
  1479. "email": "fabien@symfony.com"
  1480. },
  1481. {
  1482. "name": "Symfony Community",
  1483. "homepage": "https://symfony.com/contributors"
  1484. }
  1485. ],
  1486. "description": "Eases the creation of beautiful and testable command line interfaces",
  1487. "homepage": "https://symfony.com",
  1488. "keywords": [
  1489. "cli",
  1490. "command line",
  1491. "console",
  1492. "terminal"
  1493. ],
  1494. "support": {
  1495. "source": "https://github.com/symfony/console/tree/v6.0.3"
  1496. },
  1497. "funding": [
  1498. {
  1499. "url": "https://symfony.com/sponsor",
  1500. "type": "custom"
  1501. },
  1502. {
  1503. "url": "https://github.com/fabpot",
  1504. "type": "github"
  1505. },
  1506. {
  1507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1508. "type": "tidelift"
  1509. }
  1510. ],
  1511. "time": "2022-01-26T17:23:29+00:00"
  1512. },
  1513. {
  1514. "name": "symfony/deprecation-contracts",
  1515. "version": "v3.0.0",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/symfony/deprecation-contracts.git",
  1519. "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
  1524. "reference": "c726b64c1ccfe2896cb7df2e1331c357ad1c8ced",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "php": ">=8.0.2"
  1529. },
  1530. "type": "library",
  1531. "extra": {
  1532. "branch-alias": {
  1533. "dev-main": "3.0-dev"
  1534. },
  1535. "thanks": {
  1536. "name": "symfony/contracts",
  1537. "url": "https://github.com/symfony/contracts"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "files": [
  1542. "function.php"
  1543. ]
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Nicolas Grekas",
  1552. "email": "p@tchwork.com"
  1553. },
  1554. {
  1555. "name": "Symfony Community",
  1556. "homepage": "https://symfony.com/contributors"
  1557. }
  1558. ],
  1559. "description": "A generic function and convention to trigger deprecation notices",
  1560. "homepage": "https://symfony.com",
  1561. "support": {
  1562. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.0"
  1563. },
  1564. "funding": [
  1565. {
  1566. "url": "https://symfony.com/sponsor",
  1567. "type": "custom"
  1568. },
  1569. {
  1570. "url": "https://github.com/fabpot",
  1571. "type": "github"
  1572. },
  1573. {
  1574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1575. "type": "tidelift"
  1576. }
  1577. ],
  1578. "time": "2021-11-01T23:48:49+00:00"
  1579. },
  1580. {
  1581. "name": "symfony/error-handler",
  1582. "version": "v6.0.3",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/symfony/error-handler.git",
  1586. "reference": "20343b3bad7ebafa38138ddcb97290a24722b57b"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/symfony/error-handler/zipball/20343b3bad7ebafa38138ddcb97290a24722b57b",
  1591. "reference": "20343b3bad7ebafa38138ddcb97290a24722b57b",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "php": ">=8.0.2",
  1596. "psr/log": "^1|^2|^3",
  1597. "symfony/var-dumper": "^5.4|^6.0"
  1598. },
  1599. "require-dev": {
  1600. "symfony/deprecation-contracts": "^2.1|^3",
  1601. "symfony/http-kernel": "^5.4|^6.0",
  1602. "symfony/serializer": "^5.4|^6.0"
  1603. },
  1604. "bin": [
  1605. "Resources/bin/patch-type-declarations"
  1606. ],
  1607. "type": "library",
  1608. "autoload": {
  1609. "psr-4": {
  1610. "Symfony\\Component\\ErrorHandler\\": ""
  1611. },
  1612. "exclude-from-classmap": [
  1613. "/Tests/"
  1614. ]
  1615. },
  1616. "notification-url": "https://packagist.org/downloads/",
  1617. "license": [
  1618. "MIT"
  1619. ],
  1620. "authors": [
  1621. {
  1622. "name": "Fabien Potencier",
  1623. "email": "fabien@symfony.com"
  1624. },
  1625. {
  1626. "name": "Symfony Community",
  1627. "homepage": "https://symfony.com/contributors"
  1628. }
  1629. ],
  1630. "description": "Provides tools to manage errors and ease debugging PHP code",
  1631. "homepage": "https://symfony.com",
  1632. "support": {
  1633. "source": "https://github.com/symfony/error-handler/tree/v6.0.3"
  1634. },
  1635. "funding": [
  1636. {
  1637. "url": "https://symfony.com/sponsor",
  1638. "type": "custom"
  1639. },
  1640. {
  1641. "url": "https://github.com/fabpot",
  1642. "type": "github"
  1643. },
  1644. {
  1645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1646. "type": "tidelift"
  1647. }
  1648. ],
  1649. "time": "2022-01-02T09:55:41+00:00"
  1650. },
  1651. {
  1652. "name": "symfony/event-dispatcher",
  1653. "version": "v6.0.3",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/symfony/event-dispatcher.git",
  1657. "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6472ea2dd415e925b90ca82be64b8bc6157f3934",
  1662. "reference": "6472ea2dd415e925b90ca82be64b8bc6157f3934",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "php": ">=8.0.2",
  1667. "symfony/event-dispatcher-contracts": "^2|^3"
  1668. },
  1669. "conflict": {
  1670. "symfony/dependency-injection": "<5.4"
  1671. },
  1672. "provide": {
  1673. "psr/event-dispatcher-implementation": "1.0",
  1674. "symfony/event-dispatcher-implementation": "2.0|3.0"
  1675. },
  1676. "require-dev": {
  1677. "psr/log": "^1|^2|^3",
  1678. "symfony/config": "^5.4|^6.0",
  1679. "symfony/dependency-injection": "^5.4|^6.0",
  1680. "symfony/error-handler": "^5.4|^6.0",
  1681. "symfony/expression-language": "^5.4|^6.0",
  1682. "symfony/http-foundation": "^5.4|^6.0",
  1683. "symfony/service-contracts": "^1.1|^2|^3",
  1684. "symfony/stopwatch": "^5.4|^6.0"
  1685. },
  1686. "suggest": {
  1687. "symfony/dependency-injection": "",
  1688. "symfony/http-kernel": ""
  1689. },
  1690. "type": "library",
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Symfony\\Component\\EventDispatcher\\": ""
  1694. },
  1695. "exclude-from-classmap": [
  1696. "/Tests/"
  1697. ]
  1698. },
  1699. "notification-url": "https://packagist.org/downloads/",
  1700. "license": [
  1701. "MIT"
  1702. ],
  1703. "authors": [
  1704. {
  1705. "name": "Fabien Potencier",
  1706. "email": "fabien@symfony.com"
  1707. },
  1708. {
  1709. "name": "Symfony Community",
  1710. "homepage": "https://symfony.com/contributors"
  1711. }
  1712. ],
  1713. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  1714. "homepage": "https://symfony.com",
  1715. "support": {
  1716. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.3"
  1717. },
  1718. "funding": [
  1719. {
  1720. "url": "https://symfony.com/sponsor",
  1721. "type": "custom"
  1722. },
  1723. {
  1724. "url": "https://github.com/fabpot",
  1725. "type": "github"
  1726. },
  1727. {
  1728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1729. "type": "tidelift"
  1730. }
  1731. ],
  1732. "time": "2022-01-02T09:55:41+00:00"
  1733. },
  1734. {
  1735. "name": "symfony/event-dispatcher-contracts",
  1736. "version": "v3.0.0",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1740. "reference": "aa5422287b75594b90ee9cd807caf8f0df491385"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/aa5422287b75594b90ee9cd807caf8f0df491385",
  1745. "reference": "aa5422287b75594b90ee9cd807caf8f0df491385",
  1746. "shasum": ""
  1747. },
  1748. "require": {
  1749. "php": ">=8.0.2",
  1750. "psr/event-dispatcher": "^1"
  1751. },
  1752. "suggest": {
  1753. "symfony/event-dispatcher-implementation": ""
  1754. },
  1755. "type": "library",
  1756. "extra": {
  1757. "branch-alias": {
  1758. "dev-main": "3.0-dev"
  1759. },
  1760. "thanks": {
  1761. "name": "symfony/contracts",
  1762. "url": "https://github.com/symfony/contracts"
  1763. }
  1764. },
  1765. "autoload": {
  1766. "psr-4": {
  1767. "Symfony\\Contracts\\EventDispatcher\\": ""
  1768. }
  1769. },
  1770. "notification-url": "https://packagist.org/downloads/",
  1771. "license": [
  1772. "MIT"
  1773. ],
  1774. "authors": [
  1775. {
  1776. "name": "Nicolas Grekas",
  1777. "email": "p@tchwork.com"
  1778. },
  1779. {
  1780. "name": "Symfony Community",
  1781. "homepage": "https://symfony.com/contributors"
  1782. }
  1783. ],
  1784. "description": "Generic abstractions related to dispatching event",
  1785. "homepage": "https://symfony.com",
  1786. "keywords": [
  1787. "abstractions",
  1788. "contracts",
  1789. "decoupling",
  1790. "interfaces",
  1791. "interoperability",
  1792. "standards"
  1793. ],
  1794. "support": {
  1795. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.0"
  1796. },
  1797. "funding": [
  1798. {
  1799. "url": "https://symfony.com/sponsor",
  1800. "type": "custom"
  1801. },
  1802. {
  1803. "url": "https://github.com/fabpot",
  1804. "type": "github"
  1805. },
  1806. {
  1807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1808. "type": "tidelift"
  1809. }
  1810. ],
  1811. "time": "2021-07-15T12:33:35+00:00"
  1812. },
  1813. {
  1814. "name": "symfony/finder",
  1815. "version": "v6.0.3",
  1816. "source": {
  1817. "type": "git",
  1818. "url": "https://github.com/symfony/finder.git",
  1819. "reference": "8661b74dbabc23223f38c9b99d3f8ade71170430"
  1820. },
  1821. "dist": {
  1822. "type": "zip",
  1823. "url": "https://api.github.com/repos/symfony/finder/zipball/8661b74dbabc23223f38c9b99d3f8ade71170430",
  1824. "reference": "8661b74dbabc23223f38c9b99d3f8ade71170430",
  1825. "shasum": ""
  1826. },
  1827. "require": {
  1828. "php": ">=8.0.2"
  1829. },
  1830. "type": "library",
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Symfony\\Component\\Finder\\": ""
  1834. },
  1835. "exclude-from-classmap": [
  1836. "/Tests/"
  1837. ]
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT"
  1842. ],
  1843. "authors": [
  1844. {
  1845. "name": "Fabien Potencier",
  1846. "email": "fabien@symfony.com"
  1847. },
  1848. {
  1849. "name": "Symfony Community",
  1850. "homepage": "https://symfony.com/contributors"
  1851. }
  1852. ],
  1853. "description": "Finds files and directories via an intuitive fluent interface",
  1854. "homepage": "https://symfony.com",
  1855. "support": {
  1856. "source": "https://github.com/symfony/finder/tree/v6.0.3"
  1857. },
  1858. "funding": [
  1859. {
  1860. "url": "https://symfony.com/sponsor",
  1861. "type": "custom"
  1862. },
  1863. {
  1864. "url": "https://github.com/fabpot",
  1865. "type": "github"
  1866. },
  1867. {
  1868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1869. "type": "tidelift"
  1870. }
  1871. ],
  1872. "time": "2022-01-26T17:23:29+00:00"
  1873. },
  1874. {
  1875. "name": "symfony/http-foundation",
  1876. "version": "v6.0.3",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/symfony/http-foundation.git",
  1880. "reference": "ad157299ced81a637fade1efcadd688d6deba5c1"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ad157299ced81a637fade1efcadd688d6deba5c1",
  1885. "reference": "ad157299ced81a637fade1efcadd688d6deba5c1",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "php": ">=8.0.2",
  1890. "symfony/deprecation-contracts": "^2.1|^3",
  1891. "symfony/polyfill-mbstring": "~1.1"
  1892. },
  1893. "require-dev": {
  1894. "predis/predis": "~1.0",
  1895. "symfony/cache": "^5.4|^6.0",
  1896. "symfony/expression-language": "^5.4|^6.0",
  1897. "symfony/mime": "^5.4|^6.0"
  1898. },
  1899. "suggest": {
  1900. "symfony/mime": "To use the file extension guesser"
  1901. },
  1902. "type": "library",
  1903. "autoload": {
  1904. "psr-4": {
  1905. "Symfony\\Component\\HttpFoundation\\": ""
  1906. },
  1907. "exclude-from-classmap": [
  1908. "/Tests/"
  1909. ]
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Fabien Potencier",
  1918. "email": "fabien@symfony.com"
  1919. },
  1920. {
  1921. "name": "Symfony Community",
  1922. "homepage": "https://symfony.com/contributors"
  1923. }
  1924. ],
  1925. "description": "Defines an object-oriented layer for the HTTP specification",
  1926. "homepage": "https://symfony.com",
  1927. "support": {
  1928. "source": "https://github.com/symfony/http-foundation/tree/v6.0.3"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://symfony.com/sponsor",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://github.com/fabpot",
  1937. "type": "github"
  1938. },
  1939. {
  1940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1941. "type": "tidelift"
  1942. }
  1943. ],
  1944. "time": "2022-01-02T09:55:41+00:00"
  1945. },
  1946. {
  1947. "name": "symfony/http-kernel",
  1948. "version": "v6.0.4",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/symfony/http-kernel.git",
  1952. "reference": "9dce179ce52b0f4f669c07fd5e465e5d809a5d3b"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9dce179ce52b0f4f669c07fd5e465e5d809a5d3b",
  1957. "reference": "9dce179ce52b0f4f669c07fd5e465e5d809a5d3b",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "php": ">=8.0.2",
  1962. "psr/log": "^1|^2|^3",
  1963. "symfony/error-handler": "^5.4|^6.0",
  1964. "symfony/event-dispatcher": "^5.4|^6.0",
  1965. "symfony/http-foundation": "^5.4|^6.0",
  1966. "symfony/polyfill-ctype": "^1.8"
  1967. },
  1968. "conflict": {
  1969. "symfony/browser-kit": "<5.4",
  1970. "symfony/cache": "<5.4",
  1971. "symfony/config": "<5.4",
  1972. "symfony/console": "<5.4",
  1973. "symfony/dependency-injection": "<5.4",
  1974. "symfony/doctrine-bridge": "<5.4",
  1975. "symfony/form": "<5.4",
  1976. "symfony/http-client": "<5.4",
  1977. "symfony/mailer": "<5.4",
  1978. "symfony/messenger": "<5.4",
  1979. "symfony/translation": "<5.4",
  1980. "symfony/twig-bridge": "<5.4",
  1981. "symfony/validator": "<5.4",
  1982. "twig/twig": "<2.13"
  1983. },
  1984. "provide": {
  1985. "psr/log-implementation": "1.0|2.0|3.0"
  1986. },
  1987. "require-dev": {
  1988. "psr/cache": "^1.0|^2.0|^3.0",
  1989. "symfony/browser-kit": "^5.4|^6.0",
  1990. "symfony/config": "^5.4|^6.0",
  1991. "symfony/console": "^5.4|^6.0",
  1992. "symfony/css-selector": "^5.4|^6.0",
  1993. "symfony/dependency-injection": "^5.4|^6.0",
  1994. "symfony/dom-crawler": "^5.4|^6.0",
  1995. "symfony/expression-language": "^5.4|^6.0",
  1996. "symfony/finder": "^5.4|^6.0",
  1997. "symfony/http-client-contracts": "^1.1|^2|^3",
  1998. "symfony/process": "^5.4|^6.0",
  1999. "symfony/routing": "^5.4|^6.0",
  2000. "symfony/stopwatch": "^5.4|^6.0",
  2001. "symfony/translation": "^5.4|^6.0",
  2002. "symfony/translation-contracts": "^1.1|^2|^3",
  2003. "twig/twig": "^2.13|^3.0.4"
  2004. },
  2005. "suggest": {
  2006. "symfony/browser-kit": "",
  2007. "symfony/config": "",
  2008. "symfony/console": "",
  2009. "symfony/dependency-injection": ""
  2010. },
  2011. "type": "library",
  2012. "autoload": {
  2013. "psr-4": {
  2014. "Symfony\\Component\\HttpKernel\\": ""
  2015. },
  2016. "exclude-from-classmap": [
  2017. "/Tests/"
  2018. ]
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Fabien Potencier",
  2027. "email": "fabien@symfony.com"
  2028. },
  2029. {
  2030. "name": "Symfony Community",
  2031. "homepage": "https://symfony.com/contributors"
  2032. }
  2033. ],
  2034. "description": "Provides a structured process for converting a Request into a Response",
  2035. "homepage": "https://symfony.com",
  2036. "support": {
  2037. "source": "https://github.com/symfony/http-kernel/tree/v6.0.4"
  2038. },
  2039. "funding": [
  2040. {
  2041. "url": "https://symfony.com/sponsor",
  2042. "type": "custom"
  2043. },
  2044. {
  2045. "url": "https://github.com/fabpot",
  2046. "type": "github"
  2047. },
  2048. {
  2049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2050. "type": "tidelift"
  2051. }
  2052. ],
  2053. "time": "2022-01-29T18:12:46+00:00"
  2054. },
  2055. {
  2056. "name": "symfony/mime",
  2057. "version": "v6.0.3",
  2058. "source": {
  2059. "type": "git",
  2060. "url": "https://github.com/symfony/mime.git",
  2061. "reference": "2cd9601efd040e56f43360daa68f3c6b0534923a"
  2062. },
  2063. "dist": {
  2064. "type": "zip",
  2065. "url": "https://api.github.com/repos/symfony/mime/zipball/2cd9601efd040e56f43360daa68f3c6b0534923a",
  2066. "reference": "2cd9601efd040e56f43360daa68f3c6b0534923a",
  2067. "shasum": ""
  2068. },
  2069. "require": {
  2070. "php": ">=8.0.2",
  2071. "symfony/polyfill-intl-idn": "^1.10",
  2072. "symfony/polyfill-mbstring": "^1.0"
  2073. },
  2074. "conflict": {
  2075. "egulias/email-validator": "~3.0.0",
  2076. "phpdocumentor/reflection-docblock": "<3.2.2",
  2077. "phpdocumentor/type-resolver": "<1.4.0",
  2078. "symfony/mailer": "<5.4"
  2079. },
  2080. "require-dev": {
  2081. "egulias/email-validator": "^2.1.10|^3.1",
  2082. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  2083. "symfony/dependency-injection": "^5.4|^6.0",
  2084. "symfony/property-access": "^5.4|^6.0",
  2085. "symfony/property-info": "^5.4|^6.0",
  2086. "symfony/serializer": "^5.4|^6.0"
  2087. },
  2088. "type": "library",
  2089. "autoload": {
  2090. "psr-4": {
  2091. "Symfony\\Component\\Mime\\": ""
  2092. },
  2093. "exclude-from-classmap": [
  2094. "/Tests/"
  2095. ]
  2096. },
  2097. "notification-url": "https://packagist.org/downloads/",
  2098. "license": [
  2099. "MIT"
  2100. ],
  2101. "authors": [
  2102. {
  2103. "name": "Fabien Potencier",
  2104. "email": "fabien@symfony.com"
  2105. },
  2106. {
  2107. "name": "Symfony Community",
  2108. "homepage": "https://symfony.com/contributors"
  2109. }
  2110. ],
  2111. "description": "Allows manipulating MIME messages",
  2112. "homepage": "https://symfony.com",
  2113. "keywords": [
  2114. "mime",
  2115. "mime-type"
  2116. ],
  2117. "support": {
  2118. "source": "https://github.com/symfony/mime/tree/v6.0.3"
  2119. },
  2120. "funding": [
  2121. {
  2122. "url": "https://symfony.com/sponsor",
  2123. "type": "custom"
  2124. },
  2125. {
  2126. "url": "https://github.com/fabpot",
  2127. "type": "github"
  2128. },
  2129. {
  2130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2131. "type": "tidelift"
  2132. }
  2133. ],
  2134. "time": "2022-01-02T09:55:41+00:00"
  2135. },
  2136. {
  2137. "name": "symfony/polyfill-ctype",
  2138. "version": "v1.24.0",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/symfony/polyfill-ctype.git",
  2142. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  2147. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "php": ">=7.1"
  2152. },
  2153. "provide": {
  2154. "ext-ctype": "*"
  2155. },
  2156. "suggest": {
  2157. "ext-ctype": "For best performance"
  2158. },
  2159. "type": "library",
  2160. "extra": {
  2161. "branch-alias": {
  2162. "dev-main": "1.23-dev"
  2163. },
  2164. "thanks": {
  2165. "name": "symfony/polyfill",
  2166. "url": "https://github.com/symfony/polyfill"
  2167. }
  2168. },
  2169. "autoload": {
  2170. "psr-4": {
  2171. "Symfony\\Polyfill\\Ctype\\": ""
  2172. },
  2173. "files": [
  2174. "bootstrap.php"
  2175. ]
  2176. },
  2177. "notification-url": "https://packagist.org/downloads/",
  2178. "license": [
  2179. "MIT"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "Gert de Pagter",
  2184. "email": "BackEndTea@gmail.com"
  2185. },
  2186. {
  2187. "name": "Symfony Community",
  2188. "homepage": "https://symfony.com/contributors"
  2189. }
  2190. ],
  2191. "description": "Symfony polyfill for ctype functions",
  2192. "homepage": "https://symfony.com",
  2193. "keywords": [
  2194. "compatibility",
  2195. "ctype",
  2196. "polyfill",
  2197. "portable"
  2198. ],
  2199. "support": {
  2200. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  2201. },
  2202. "funding": [
  2203. {
  2204. "url": "https://symfony.com/sponsor",
  2205. "type": "custom"
  2206. },
  2207. {
  2208. "url": "https://github.com/fabpot",
  2209. "type": "github"
  2210. },
  2211. {
  2212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2213. "type": "tidelift"
  2214. }
  2215. ],
  2216. "time": "2021-10-20T20:35:02+00:00"
  2217. },
  2218. {
  2219. "name": "symfony/polyfill-intl-grapheme",
  2220. "version": "v1.24.0",
  2221. "source": {
  2222. "type": "git",
  2223. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  2224. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  2225. },
  2226. "dist": {
  2227. "type": "zip",
  2228. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  2229. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  2230. "shasum": ""
  2231. },
  2232. "require": {
  2233. "php": ">=7.1"
  2234. },
  2235. "suggest": {
  2236. "ext-intl": "For best performance"
  2237. },
  2238. "type": "library",
  2239. "extra": {
  2240. "branch-alias": {
  2241. "dev-main": "1.23-dev"
  2242. },
  2243. "thanks": {
  2244. "name": "symfony/polyfill",
  2245. "url": "https://github.com/symfony/polyfill"
  2246. }
  2247. },
  2248. "autoload": {
  2249. "files": [
  2250. "bootstrap.php"
  2251. ],
  2252. "psr-4": {
  2253. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2254. }
  2255. },
  2256. "notification-url": "https://packagist.org/downloads/",
  2257. "license": [
  2258. "MIT"
  2259. ],
  2260. "authors": [
  2261. {
  2262. "name": "Nicolas Grekas",
  2263. "email": "p@tchwork.com"
  2264. },
  2265. {
  2266. "name": "Symfony Community",
  2267. "homepage": "https://symfony.com/contributors"
  2268. }
  2269. ],
  2270. "description": "Symfony polyfill for intl's grapheme_* functions",
  2271. "homepage": "https://symfony.com",
  2272. "keywords": [
  2273. "compatibility",
  2274. "grapheme",
  2275. "intl",
  2276. "polyfill",
  2277. "portable",
  2278. "shim"
  2279. ],
  2280. "support": {
  2281. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.24.0"
  2282. },
  2283. "funding": [
  2284. {
  2285. "url": "https://symfony.com/sponsor",
  2286. "type": "custom"
  2287. },
  2288. {
  2289. "url": "https://github.com/fabpot",
  2290. "type": "github"
  2291. },
  2292. {
  2293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2294. "type": "tidelift"
  2295. }
  2296. ],
  2297. "time": "2021-11-23T21:10:46+00:00"
  2298. },
  2299. {
  2300. "name": "symfony/polyfill-intl-idn",
  2301. "version": "v1.24.0",
  2302. "source": {
  2303. "type": "git",
  2304. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2305. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  2306. },
  2307. "dist": {
  2308. "type": "zip",
  2309. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  2310. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  2311. "shasum": ""
  2312. },
  2313. "require": {
  2314. "php": ">=7.1",
  2315. "symfony/polyfill-intl-normalizer": "^1.10",
  2316. "symfony/polyfill-php72": "^1.10"
  2317. },
  2318. "suggest": {
  2319. "ext-intl": "For best performance"
  2320. },
  2321. "type": "library",
  2322. "extra": {
  2323. "branch-alias": {
  2324. "dev-main": "1.23-dev"
  2325. },
  2326. "thanks": {
  2327. "name": "symfony/polyfill",
  2328. "url": "https://github.com/symfony/polyfill"
  2329. }
  2330. },
  2331. "autoload": {
  2332. "files": [
  2333. "bootstrap.php"
  2334. ],
  2335. "psr-4": {
  2336. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "MIT"
  2342. ],
  2343. "authors": [
  2344. {
  2345. "name": "Laurent Bassin",
  2346. "email": "laurent@bassin.info"
  2347. },
  2348. {
  2349. "name": "Trevor Rowbotham",
  2350. "email": "trevor.rowbotham@pm.me"
  2351. },
  2352. {
  2353. "name": "Symfony Community",
  2354. "homepage": "https://symfony.com/contributors"
  2355. }
  2356. ],
  2357. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2358. "homepage": "https://symfony.com",
  2359. "keywords": [
  2360. "compatibility",
  2361. "idn",
  2362. "intl",
  2363. "polyfill",
  2364. "portable",
  2365. "shim"
  2366. ],
  2367. "support": {
  2368. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.24.0"
  2369. },
  2370. "funding": [
  2371. {
  2372. "url": "https://symfony.com/sponsor",
  2373. "type": "custom"
  2374. },
  2375. {
  2376. "url": "https://github.com/fabpot",
  2377. "type": "github"
  2378. },
  2379. {
  2380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2381. "type": "tidelift"
  2382. }
  2383. ],
  2384. "time": "2021-09-14T14:02:44+00:00"
  2385. },
  2386. {
  2387. "name": "symfony/polyfill-intl-normalizer",
  2388. "version": "v1.24.0",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2392. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  2393. },
  2394. "dist": {
  2395. "type": "zip",
  2396. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  2397. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  2398. "shasum": ""
  2399. },
  2400. "require": {
  2401. "php": ">=7.1"
  2402. },
  2403. "suggest": {
  2404. "ext-intl": "For best performance"
  2405. },
  2406. "type": "library",
  2407. "extra": {
  2408. "branch-alias": {
  2409. "dev-main": "1.23-dev"
  2410. },
  2411. "thanks": {
  2412. "name": "symfony/polyfill",
  2413. "url": "https://github.com/symfony/polyfill"
  2414. }
  2415. },
  2416. "autoload": {
  2417. "files": [
  2418. "bootstrap.php"
  2419. ],
  2420. "psr-4": {
  2421. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2422. },
  2423. "classmap": [
  2424. "Resources/stubs"
  2425. ]
  2426. },
  2427. "notification-url": "https://packagist.org/downloads/",
  2428. "license": [
  2429. "MIT"
  2430. ],
  2431. "authors": [
  2432. {
  2433. "name": "Nicolas Grekas",
  2434. "email": "p@tchwork.com"
  2435. },
  2436. {
  2437. "name": "Symfony Community",
  2438. "homepage": "https://symfony.com/contributors"
  2439. }
  2440. ],
  2441. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2442. "homepage": "https://symfony.com",
  2443. "keywords": [
  2444. "compatibility",
  2445. "intl",
  2446. "normalizer",
  2447. "polyfill",
  2448. "portable",
  2449. "shim"
  2450. ],
  2451. "support": {
  2452. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.24.0"
  2453. },
  2454. "funding": [
  2455. {
  2456. "url": "https://symfony.com/sponsor",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://github.com/fabpot",
  2461. "type": "github"
  2462. },
  2463. {
  2464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2465. "type": "tidelift"
  2466. }
  2467. ],
  2468. "time": "2021-02-19T12:13:01+00:00"
  2469. },
  2470. {
  2471. "name": "symfony/polyfill-mbstring",
  2472. "version": "v1.24.0",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2476. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  2481. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "php": ">=7.1"
  2486. },
  2487. "provide": {
  2488. "ext-mbstring": "*"
  2489. },
  2490. "suggest": {
  2491. "ext-mbstring": "For best performance"
  2492. },
  2493. "type": "library",
  2494. "extra": {
  2495. "branch-alias": {
  2496. "dev-main": "1.23-dev"
  2497. },
  2498. "thanks": {
  2499. "name": "symfony/polyfill",
  2500. "url": "https://github.com/symfony/polyfill"
  2501. }
  2502. },
  2503. "autoload": {
  2504. "psr-4": {
  2505. "Symfony\\Polyfill\\Mbstring\\": ""
  2506. },
  2507. "files": [
  2508. "bootstrap.php"
  2509. ]
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Nicolas Grekas",
  2518. "email": "p@tchwork.com"
  2519. },
  2520. {
  2521. "name": "Symfony Community",
  2522. "homepage": "https://symfony.com/contributors"
  2523. }
  2524. ],
  2525. "description": "Symfony polyfill for the Mbstring extension",
  2526. "homepage": "https://symfony.com",
  2527. "keywords": [
  2528. "compatibility",
  2529. "mbstring",
  2530. "polyfill",
  2531. "portable",
  2532. "shim"
  2533. ],
  2534. "support": {
  2535. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"
  2536. },
  2537. "funding": [
  2538. {
  2539. "url": "https://symfony.com/sponsor",
  2540. "type": "custom"
  2541. },
  2542. {
  2543. "url": "https://github.com/fabpot",
  2544. "type": "github"
  2545. },
  2546. {
  2547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2548. "type": "tidelift"
  2549. }
  2550. ],
  2551. "time": "2021-11-30T18:21:41+00:00"
  2552. },
  2553. {
  2554. "name": "symfony/polyfill-php72",
  2555. "version": "v1.24.0",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://github.com/symfony/polyfill-php72.git",
  2559. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  2564. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  2565. "shasum": ""
  2566. },
  2567. "require": {
  2568. "php": ">=7.1"
  2569. },
  2570. "type": "library",
  2571. "extra": {
  2572. "branch-alias": {
  2573. "dev-main": "1.23-dev"
  2574. },
  2575. "thanks": {
  2576. "name": "symfony/polyfill",
  2577. "url": "https://github.com/symfony/polyfill"
  2578. }
  2579. },
  2580. "autoload": {
  2581. "files": [
  2582. "bootstrap.php"
  2583. ],
  2584. "psr-4": {
  2585. "Symfony\\Polyfill\\Php72\\": ""
  2586. }
  2587. },
  2588. "notification-url": "https://packagist.org/downloads/",
  2589. "license": [
  2590. "MIT"
  2591. ],
  2592. "authors": [
  2593. {
  2594. "name": "Nicolas Grekas",
  2595. "email": "p@tchwork.com"
  2596. },
  2597. {
  2598. "name": "Symfony Community",
  2599. "homepage": "https://symfony.com/contributors"
  2600. }
  2601. ],
  2602. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2603. "homepage": "https://symfony.com",
  2604. "keywords": [
  2605. "compatibility",
  2606. "polyfill",
  2607. "portable",
  2608. "shim"
  2609. ],
  2610. "support": {
  2611. "source": "https://github.com/symfony/polyfill-php72/tree/v1.24.0"
  2612. },
  2613. "funding": [
  2614. {
  2615. "url": "https://symfony.com/sponsor",
  2616. "type": "custom"
  2617. },
  2618. {
  2619. "url": "https://github.com/fabpot",
  2620. "type": "github"
  2621. },
  2622. {
  2623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2624. "type": "tidelift"
  2625. }
  2626. ],
  2627. "time": "2021-05-27T09:17:38+00:00"
  2628. },
  2629. {
  2630. "name": "symfony/polyfill-php80",
  2631. "version": "v1.24.0",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/symfony/polyfill-php80.git",
  2635. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",
  2640. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "php": ">=7.1"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-main": "1.23-dev"
  2650. },
  2651. "thanks": {
  2652. "name": "symfony/polyfill",
  2653. "url": "https://github.com/symfony/polyfill"
  2654. }
  2655. },
  2656. "autoload": {
  2657. "files": [
  2658. "bootstrap.php"
  2659. ],
  2660. "psr-4": {
  2661. "Symfony\\Polyfill\\Php80\\": ""
  2662. },
  2663. "classmap": [
  2664. "Resources/stubs"
  2665. ]
  2666. },
  2667. "notification-url": "https://packagist.org/downloads/",
  2668. "license": [
  2669. "MIT"
  2670. ],
  2671. "authors": [
  2672. {
  2673. "name": "Ion Bazan",
  2674. "email": "ion.bazan@gmail.com"
  2675. },
  2676. {
  2677. "name": "Nicolas Grekas",
  2678. "email": "p@tchwork.com"
  2679. },
  2680. {
  2681. "name": "Symfony Community",
  2682. "homepage": "https://symfony.com/contributors"
  2683. }
  2684. ],
  2685. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2686. "homepage": "https://symfony.com",
  2687. "keywords": [
  2688. "compatibility",
  2689. "polyfill",
  2690. "portable",
  2691. "shim"
  2692. ],
  2693. "support": {
  2694. "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0"
  2695. },
  2696. "funding": [
  2697. {
  2698. "url": "https://symfony.com/sponsor",
  2699. "type": "custom"
  2700. },
  2701. {
  2702. "url": "https://github.com/fabpot",
  2703. "type": "github"
  2704. },
  2705. {
  2706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2707. "type": "tidelift"
  2708. }
  2709. ],
  2710. "time": "2021-09-13T13:58:33+00:00"
  2711. },
  2712. {
  2713. "name": "symfony/process",
  2714. "version": "v6.0.3",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/symfony/process.git",
  2718. "reference": "298ed357274c1868c20a0061df256a1250a6c4af"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/symfony/process/zipball/298ed357274c1868c20a0061df256a1250a6c4af",
  2723. "reference": "298ed357274c1868c20a0061df256a1250a6c4af",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "php": ">=8.0.2"
  2728. },
  2729. "type": "library",
  2730. "autoload": {
  2731. "psr-4": {
  2732. "Symfony\\Component\\Process\\": ""
  2733. },
  2734. "exclude-from-classmap": [
  2735. "/Tests/"
  2736. ]
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "MIT"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "Fabien Potencier",
  2745. "email": "fabien@symfony.com"
  2746. },
  2747. {
  2748. "name": "Symfony Community",
  2749. "homepage": "https://symfony.com/contributors"
  2750. }
  2751. ],
  2752. "description": "Executes commands in sub-processes",
  2753. "homepage": "https://symfony.com",
  2754. "support": {
  2755. "source": "https://github.com/symfony/process/tree/v6.0.3"
  2756. },
  2757. "funding": [
  2758. {
  2759. "url": "https://symfony.com/sponsor",
  2760. "type": "custom"
  2761. },
  2762. {
  2763. "url": "https://github.com/fabpot",
  2764. "type": "github"
  2765. },
  2766. {
  2767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2768. "type": "tidelift"
  2769. }
  2770. ],
  2771. "time": "2022-01-26T17:23:29+00:00"
  2772. },
  2773. {
  2774. "name": "symfony/service-contracts",
  2775. "version": "v3.0.0",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/symfony/service-contracts.git",
  2779. "reference": "36715ebf9fb9db73db0cb24263c79077c6fe8603"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/36715ebf9fb9db73db0cb24263c79077c6fe8603",
  2784. "reference": "36715ebf9fb9db73db0cb24263c79077c6fe8603",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "php": ">=8.0.2",
  2789. "psr/container": "^2.0"
  2790. },
  2791. "conflict": {
  2792. "ext-psr": "<1.1|>=2"
  2793. },
  2794. "suggest": {
  2795. "symfony/service-implementation": ""
  2796. },
  2797. "type": "library",
  2798. "extra": {
  2799. "branch-alias": {
  2800. "dev-main": "3.0-dev"
  2801. },
  2802. "thanks": {
  2803. "name": "symfony/contracts",
  2804. "url": "https://github.com/symfony/contracts"
  2805. }
  2806. },
  2807. "autoload": {
  2808. "psr-4": {
  2809. "Symfony\\Contracts\\Service\\": ""
  2810. }
  2811. },
  2812. "notification-url": "https://packagist.org/downloads/",
  2813. "license": [
  2814. "MIT"
  2815. ],
  2816. "authors": [
  2817. {
  2818. "name": "Nicolas Grekas",
  2819. "email": "p@tchwork.com"
  2820. },
  2821. {
  2822. "name": "Symfony Community",
  2823. "homepage": "https://symfony.com/contributors"
  2824. }
  2825. ],
  2826. "description": "Generic abstractions related to writing services",
  2827. "homepage": "https://symfony.com",
  2828. "keywords": [
  2829. "abstractions",
  2830. "contracts",
  2831. "decoupling",
  2832. "interfaces",
  2833. "interoperability",
  2834. "standards"
  2835. ],
  2836. "support": {
  2837. "source": "https://github.com/symfony/service-contracts/tree/v3.0.0"
  2838. },
  2839. "funding": [
  2840. {
  2841. "url": "https://symfony.com/sponsor",
  2842. "type": "custom"
  2843. },
  2844. {
  2845. "url": "https://github.com/fabpot",
  2846. "type": "github"
  2847. },
  2848. {
  2849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2850. "type": "tidelift"
  2851. }
  2852. ],
  2853. "time": "2021-11-04T17:53:12+00:00"
  2854. },
  2855. {
  2856. "name": "symfony/string",
  2857. "version": "v6.0.3",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/symfony/string.git",
  2861. "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://api.github.com/repos/symfony/string/zipball/522144f0c4c004c80d56fa47e40e17028e2eefc2",
  2866. "reference": "522144f0c4c004c80d56fa47e40e17028e2eefc2",
  2867. "shasum": ""
  2868. },
  2869. "require": {
  2870. "php": ">=8.0.2",
  2871. "symfony/polyfill-ctype": "~1.8",
  2872. "symfony/polyfill-intl-grapheme": "~1.0",
  2873. "symfony/polyfill-intl-normalizer": "~1.0",
  2874. "symfony/polyfill-mbstring": "~1.0"
  2875. },
  2876. "conflict": {
  2877. "symfony/translation-contracts": "<2.0"
  2878. },
  2879. "require-dev": {
  2880. "symfony/error-handler": "^5.4|^6.0",
  2881. "symfony/http-client": "^5.4|^6.0",
  2882. "symfony/translation-contracts": "^2.0|^3.0",
  2883. "symfony/var-exporter": "^5.4|^6.0"
  2884. },
  2885. "type": "library",
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Symfony\\Component\\String\\": ""
  2889. },
  2890. "files": [
  2891. "Resources/functions.php"
  2892. ],
  2893. "exclude-from-classmap": [
  2894. "/Tests/"
  2895. ]
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "authors": [
  2902. {
  2903. "name": "Nicolas Grekas",
  2904. "email": "p@tchwork.com"
  2905. },
  2906. {
  2907. "name": "Symfony Community",
  2908. "homepage": "https://symfony.com/contributors"
  2909. }
  2910. ],
  2911. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  2912. "homepage": "https://symfony.com",
  2913. "keywords": [
  2914. "grapheme",
  2915. "i18n",
  2916. "string",
  2917. "unicode",
  2918. "utf-8",
  2919. "utf8"
  2920. ],
  2921. "support": {
  2922. "source": "https://github.com/symfony/string/tree/v6.0.3"
  2923. },
  2924. "funding": [
  2925. {
  2926. "url": "https://symfony.com/sponsor",
  2927. "type": "custom"
  2928. },
  2929. {
  2930. "url": "https://github.com/fabpot",
  2931. "type": "github"
  2932. },
  2933. {
  2934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2935. "type": "tidelift"
  2936. }
  2937. ],
  2938. "time": "2022-01-02T09:55:41+00:00"
  2939. },
  2940. {
  2941. "name": "symfony/translation",
  2942. "version": "v6.0.3",
  2943. "source": {
  2944. "type": "git",
  2945. "url": "https://github.com/symfony/translation.git",
  2946. "reference": "71bb15335798f8c4da110911bcf2d2fead7a430d"
  2947. },
  2948. "dist": {
  2949. "type": "zip",
  2950. "url": "https://api.github.com/repos/symfony/translation/zipball/71bb15335798f8c4da110911bcf2d2fead7a430d",
  2951. "reference": "71bb15335798f8c4da110911bcf2d2fead7a430d",
  2952. "shasum": ""
  2953. },
  2954. "require": {
  2955. "php": ">=8.0.2",
  2956. "symfony/polyfill-mbstring": "~1.0",
  2957. "symfony/translation-contracts": "^2.3|^3.0"
  2958. },
  2959. "conflict": {
  2960. "symfony/config": "<5.4",
  2961. "symfony/console": "<5.4",
  2962. "symfony/dependency-injection": "<5.4",
  2963. "symfony/http-kernel": "<5.4",
  2964. "symfony/twig-bundle": "<5.4",
  2965. "symfony/yaml": "<5.4"
  2966. },
  2967. "provide": {
  2968. "symfony/translation-implementation": "2.3|3.0"
  2969. },
  2970. "require-dev": {
  2971. "psr/log": "^1|^2|^3",
  2972. "symfony/config": "^5.4|^6.0",
  2973. "symfony/console": "^5.4|^6.0",
  2974. "symfony/dependency-injection": "^5.4|^6.0",
  2975. "symfony/finder": "^5.4|^6.0",
  2976. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  2977. "symfony/http-kernel": "^5.4|^6.0",
  2978. "symfony/intl": "^5.4|^6.0",
  2979. "symfony/polyfill-intl-icu": "^1.21",
  2980. "symfony/service-contracts": "^1.1.2|^2|^3",
  2981. "symfony/yaml": "^5.4|^6.0"
  2982. },
  2983. "suggest": {
  2984. "psr/log-implementation": "To use logging capability in translator",
  2985. "symfony/config": "",
  2986. "symfony/yaml": ""
  2987. },
  2988. "type": "library",
  2989. "autoload": {
  2990. "files": [
  2991. "Resources/functions.php"
  2992. ],
  2993. "psr-4": {
  2994. "Symfony\\Component\\Translation\\": ""
  2995. },
  2996. "exclude-from-classmap": [
  2997. "/Tests/"
  2998. ]
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "Fabien Potencier",
  3007. "email": "fabien@symfony.com"
  3008. },
  3009. {
  3010. "name": "Symfony Community",
  3011. "homepage": "https://symfony.com/contributors"
  3012. }
  3013. ],
  3014. "description": "Provides tools to internationalize your application",
  3015. "homepage": "https://symfony.com",
  3016. "support": {
  3017. "source": "https://github.com/symfony/translation/tree/v6.0.3"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://symfony.com/sponsor",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://github.com/fabpot",
  3026. "type": "github"
  3027. },
  3028. {
  3029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3030. "type": "tidelift"
  3031. }
  3032. ],
  3033. "time": "2022-01-07T00:29:03+00:00"
  3034. },
  3035. {
  3036. "name": "symfony/translation-contracts",
  3037. "version": "v3.0.0",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://github.com/symfony/translation-contracts.git",
  3041. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  3046. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  3047. "shasum": ""
  3048. },
  3049. "require": {
  3050. "php": ">=8.0.2"
  3051. },
  3052. "suggest": {
  3053. "symfony/translation-implementation": ""
  3054. },
  3055. "type": "library",
  3056. "extra": {
  3057. "branch-alias": {
  3058. "dev-main": "3.0-dev"
  3059. },
  3060. "thanks": {
  3061. "name": "symfony/contracts",
  3062. "url": "https://github.com/symfony/contracts"
  3063. }
  3064. },
  3065. "autoload": {
  3066. "psr-4": {
  3067. "Symfony\\Contracts\\Translation\\": ""
  3068. }
  3069. },
  3070. "notification-url": "https://packagist.org/downloads/",
  3071. "license": [
  3072. "MIT"
  3073. ],
  3074. "authors": [
  3075. {
  3076. "name": "Nicolas Grekas",
  3077. "email": "p@tchwork.com"
  3078. },
  3079. {
  3080. "name": "Symfony Community",
  3081. "homepage": "https://symfony.com/contributors"
  3082. }
  3083. ],
  3084. "description": "Generic abstractions related to translation",
  3085. "homepage": "https://symfony.com",
  3086. "keywords": [
  3087. "abstractions",
  3088. "contracts",
  3089. "decoupling",
  3090. "interfaces",
  3091. "interoperability",
  3092. "standards"
  3093. ],
  3094. "support": {
  3095. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.0"
  3096. },
  3097. "funding": [
  3098. {
  3099. "url": "https://symfony.com/sponsor",
  3100. "type": "custom"
  3101. },
  3102. {
  3103. "url": "https://github.com/fabpot",
  3104. "type": "github"
  3105. },
  3106. {
  3107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3108. "type": "tidelift"
  3109. }
  3110. ],
  3111. "time": "2021-09-07T12:43:40+00:00"
  3112. },
  3113. {
  3114. "name": "symfony/var-dumper",
  3115. "version": "v6.0.3",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://github.com/symfony/var-dumper.git",
  3119. "reference": "7b701676fc64f9ef11f9b4870f16b48f66be4834"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7b701676fc64f9ef11f9b4870f16b48f66be4834",
  3124. "reference": "7b701676fc64f9ef11f9b4870f16b48f66be4834",
  3125. "shasum": ""
  3126. },
  3127. "require": {
  3128. "php": ">=8.0.2",
  3129. "symfony/polyfill-mbstring": "~1.0"
  3130. },
  3131. "conflict": {
  3132. "phpunit/phpunit": "<5.4.3",
  3133. "symfony/console": "<5.4"
  3134. },
  3135. "require-dev": {
  3136. "ext-iconv": "*",
  3137. "symfony/console": "^5.4|^6.0",
  3138. "symfony/process": "^5.4|^6.0",
  3139. "symfony/uid": "^5.4|^6.0",
  3140. "twig/twig": "^2.13|^3.0.4"
  3141. },
  3142. "suggest": {
  3143. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3144. "ext-intl": "To show region name in time zone dump",
  3145. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3146. },
  3147. "bin": [
  3148. "Resources/bin/var-dump-server"
  3149. ],
  3150. "type": "library",
  3151. "autoload": {
  3152. "files": [
  3153. "Resources/functions/dump.php"
  3154. ],
  3155. "psr-4": {
  3156. "Symfony\\Component\\VarDumper\\": ""
  3157. },
  3158. "exclude-from-classmap": [
  3159. "/Tests/"
  3160. ]
  3161. },
  3162. "notification-url": "https://packagist.org/downloads/",
  3163. "license": [
  3164. "MIT"
  3165. ],
  3166. "authors": [
  3167. {
  3168. "name": "Nicolas Grekas",
  3169. "email": "p@tchwork.com"
  3170. },
  3171. {
  3172. "name": "Symfony Community",
  3173. "homepage": "https://symfony.com/contributors"
  3174. }
  3175. ],
  3176. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3177. "homepage": "https://symfony.com",
  3178. "keywords": [
  3179. "debug",
  3180. "dump"
  3181. ],
  3182. "support": {
  3183. "source": "https://github.com/symfony/var-dumper/tree/v6.0.3"
  3184. },
  3185. "funding": [
  3186. {
  3187. "url": "https://symfony.com/sponsor",
  3188. "type": "custom"
  3189. },
  3190. {
  3191. "url": "https://github.com/fabpot",
  3192. "type": "github"
  3193. },
  3194. {
  3195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3196. "type": "tidelift"
  3197. }
  3198. ],
  3199. "time": "2022-01-17T16:30:44+00:00"
  3200. },
  3201. {
  3202. "name": "voku/portable-ascii",
  3203. "version": "2.0.0",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/voku/portable-ascii.git",
  3207. "reference": "9bd89e83cecdf8c37b64909454249eaed98b2c89"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/9bd89e83cecdf8c37b64909454249eaed98b2c89",
  3212. "reference": "9bd89e83cecdf8c37b64909454249eaed98b2c89",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "php": ">=7.0.0"
  3217. },
  3218. "require-dev": {
  3219. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  3220. },
  3221. "suggest": {
  3222. "ext-intl": "Use Intl for transliterator_transliterate() support"
  3223. },
  3224. "type": "library",
  3225. "autoload": {
  3226. "psr-4": {
  3227. "voku\\": "src/voku/"
  3228. }
  3229. },
  3230. "notification-url": "https://packagist.org/downloads/",
  3231. "license": [
  3232. "MIT"
  3233. ],
  3234. "authors": [
  3235. {
  3236. "name": "Lars Moelleken",
  3237. "homepage": "http://www.moelleken.org/"
  3238. }
  3239. ],
  3240. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  3241. "homepage": "https://github.com/voku/portable-ascii",
  3242. "keywords": [
  3243. "ascii",
  3244. "clean",
  3245. "php"
  3246. ],
  3247. "support": {
  3248. "issues": "https://github.com/voku/portable-ascii/issues",
  3249. "source": "https://github.com/voku/portable-ascii/tree/2.0.0"
  3250. },
  3251. "funding": [
  3252. {
  3253. "url": "https://www.paypal.me/moelleken",
  3254. "type": "custom"
  3255. },
  3256. {
  3257. "url": "https://github.com/voku",
  3258. "type": "github"
  3259. },
  3260. {
  3261. "url": "https://opencollective.com/portable-ascii",
  3262. "type": "open_collective"
  3263. },
  3264. {
  3265. "url": "https://www.patreon.com/voku",
  3266. "type": "patreon"
  3267. },
  3268. {
  3269. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  3270. "type": "tidelift"
  3271. }
  3272. ],
  3273. "time": "2022-01-24T18:59:03+00:00"
  3274. }
  3275. ],
  3276. "packages-dev": [],
  3277. "aliases": [],
  3278. "minimum-stability": "stable",
  3279. "stability-flags": [],
  3280. "prefer-stable": false,
  3281. "prefer-lowest": false,
  3282. "platform": [],
  3283. "platform-dev": [],
  3284. "plugin-api-version": "2.2.0"
  3285. }