composer.lock 204 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673
  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": "59db6224b52df69de8a6a3b40295d802",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.9.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  20. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^7.1 || ^8.0"
  32. },
  33. "require-dev": {
  34. "php-coveralls/php-coveralls": "^2.2",
  35. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  36. "vimeo/psalm": "4.9.2"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "Brick\\Math\\": "src/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "description": "Arbitrary-precision arithmetic library",
  49. "keywords": [
  50. "Arbitrary-precision",
  51. "BigInteger",
  52. "BigRational",
  53. "arithmetic",
  54. "bigdecimal",
  55. "bignum",
  56. "brick",
  57. "math"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/brick/math/issues",
  61. "source": "https://github.com/brick/math/tree/0.9.3"
  62. },
  63. "funding": [
  64. {
  65. "url": "https://github.com/BenMorel",
  66. "type": "github"
  67. },
  68. {
  69. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  70. "type": "tidelift"
  71. }
  72. ],
  73. "time": "2021-08-15T20:50:18+00:00"
  74. },
  75. {
  76. "name": "dingo/api",
  77. "version": "v3.0.8",
  78. "source": {
  79. "type": "git",
  80. "url": "https://github.com/dingo/api.git",
  81. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea"
  82. },
  83. "dist": {
  84. "type": "zip",
  85. "url": "https://api.github.com/repos/dingo/api/zipball/42b6afa6e20a27f938a45e676665e57d26422cea",
  86. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea",
  87. "shasum": "",
  88. "mirrors": [
  89. {
  90. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  91. "preferred": true
  92. }
  93. ]
  94. },
  95. "require": {
  96. "dingo/blueprint": "^0.4",
  97. "illuminate/routing": "^7.0|^8.0",
  98. "illuminate/support": "^7.0|^8.0",
  99. "league/fractal": "^0.19",
  100. "php": "^7.2.5|^8.0"
  101. },
  102. "require-dev": {
  103. "friendsofphp/php-cs-fixer": "~2",
  104. "illuminate/auth": "^7.0|^8.0",
  105. "illuminate/cache": "^7.0|^8.0",
  106. "illuminate/console": "^7.0|^8.0",
  107. "illuminate/database": "^7.0|^8.0",
  108. "illuminate/events": "^7.0|^8.0",
  109. "illuminate/filesystem": "^7.0|^8.0",
  110. "illuminate/log": "^7.0|^8.0",
  111. "illuminate/pagination": "^7.0|^8.0",
  112. "laravel/lumen-framework": "^7.0|^8.0",
  113. "mockery/mockery": "~1.0",
  114. "phpunit/phpunit": "^8.5|^9.0",
  115. "squizlabs/php_codesniffer": "~2.0",
  116. "tymon/jwt-auth": "1.0.*"
  117. },
  118. "suggest": {
  119. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  120. },
  121. "type": "library",
  122. "extra": {
  123. "branch-alias": {
  124. "dev-master": "2.0-dev"
  125. },
  126. "laravel": {
  127. "providers": [
  128. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  129. ],
  130. "aliases": {
  131. "API": "Dingo\\Api\\Facade\\API"
  132. }
  133. }
  134. },
  135. "autoload": {
  136. "psr-4": {
  137. "Dingo\\Api\\": "src/"
  138. },
  139. "files": [
  140. "src/helpers.php"
  141. ]
  142. },
  143. "notification-url": "https://packagist.org/downloads/",
  144. "license": [
  145. "BSD-3-Clause"
  146. ],
  147. "authors": [
  148. {
  149. "name": "Jason Lewis",
  150. "email": "jason.lewis1991@gmail.com"
  151. }
  152. ],
  153. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  154. "keywords": [
  155. "api",
  156. "dingo",
  157. "laravel",
  158. "restful"
  159. ],
  160. "support": {
  161. "issues": "https://github.com/dingo/api/issues",
  162. "source": "https://github.com/dingo/api/tree/v3.0.8"
  163. },
  164. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  165. "time": "2022-01-27T15:11:20+00:00"
  166. },
  167. {
  168. "name": "dingo/blueprint",
  169. "version": "v0.4.3",
  170. "source": {
  171. "type": "git",
  172. "url": "https://github.com/dingo/blueprint.git",
  173. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  174. },
  175. "dist": {
  176. "type": "zip",
  177. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  178. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  179. "shasum": "",
  180. "mirrors": [
  181. {
  182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  183. "preferred": true
  184. }
  185. ]
  186. },
  187. "require": {
  188. "doctrine/annotations": "~1.2",
  189. "illuminate/filesystem": "^7.0|^8.0",
  190. "illuminate/support": "^7.0|^8.0",
  191. "php": "^7.2.5|^8.0",
  192. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  193. },
  194. "require-dev": {
  195. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  196. "squizlabs/php_codesniffer": "~2.0"
  197. },
  198. "type": "library",
  199. "extra": {
  200. "branch-alias": {
  201. "dev-master": "0.2-dev"
  202. }
  203. },
  204. "autoload": {
  205. "psr-4": {
  206. "Dingo\\Blueprint\\": "src"
  207. }
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "BSD-3-Clause"
  212. ],
  213. "authors": [
  214. {
  215. "name": "Jason Lewis",
  216. "email": "jason.lewis1991@gmail.com"
  217. }
  218. ],
  219. "description": "API Blueprint documentation generator.",
  220. "keywords": [
  221. "api",
  222. "blueprint",
  223. "dingo",
  224. "docs",
  225. "laravel"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/dingo/blueprint/issues",
  229. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  230. },
  231. "time": "2021-04-30T11:20:38+00:00"
  232. },
  233. {
  234. "name": "doctrine/annotations",
  235. "version": "1.13.3",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/annotations.git",
  239. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  244. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  245. "shasum": "",
  246. "mirrors": [
  247. {
  248. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  249. "preferred": true
  250. }
  251. ]
  252. },
  253. "require": {
  254. "doctrine/lexer": "1.*",
  255. "ext-tokenizer": "*",
  256. "php": "^7.1 || ^8.0",
  257. "psr/cache": "^1 || ^2 || ^3"
  258. },
  259. "require-dev": {
  260. "doctrine/cache": "^1.11 || ^2.0",
  261. "doctrine/coding-standard": "^6.0 || ^8.1",
  262. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  263. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  264. "symfony/cache": "^4.4 || ^5.2",
  265. "vimeo/psalm": "^4.10"
  266. },
  267. "type": "library",
  268. "autoload": {
  269. "psr-4": {
  270. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  271. }
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "MIT"
  276. ],
  277. "authors": [
  278. {
  279. "name": "Guilherme Blanco",
  280. "email": "guilhermeblanco@gmail.com"
  281. },
  282. {
  283. "name": "Roman Borschel",
  284. "email": "roman@code-factory.org"
  285. },
  286. {
  287. "name": "Benjamin Eberlei",
  288. "email": "kontakt@beberlei.de"
  289. },
  290. {
  291. "name": "Jonathan Wage",
  292. "email": "jonwage@gmail.com"
  293. },
  294. {
  295. "name": "Johannes Schmitt",
  296. "email": "schmittjoh@gmail.com"
  297. }
  298. ],
  299. "description": "Docblock Annotations Parser",
  300. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  301. "keywords": [
  302. "annotations",
  303. "docblock",
  304. "parser"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/doctrine/annotations/issues",
  308. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  309. },
  310. "time": "2022-07-02T10:48:51+00:00"
  311. },
  312. {
  313. "name": "doctrine/inflector",
  314. "version": "2.0.4",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/doctrine/inflector.git",
  318. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  323. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  324. "shasum": "",
  325. "mirrors": [
  326. {
  327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  328. "preferred": true
  329. }
  330. ]
  331. },
  332. "require": {
  333. "php": "^7.2 || ^8.0"
  334. },
  335. "require-dev": {
  336. "doctrine/coding-standard": "^8.2",
  337. "phpstan/phpstan": "^0.12",
  338. "phpstan/phpstan-phpunit": "^0.12",
  339. "phpstan/phpstan-strict-rules": "^0.12",
  340. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  341. "vimeo/psalm": "^4.10"
  342. },
  343. "type": "library",
  344. "autoload": {
  345. "psr-4": {
  346. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  347. }
  348. },
  349. "notification-url": "https://packagist.org/downloads/",
  350. "license": [
  351. "MIT"
  352. ],
  353. "authors": [
  354. {
  355. "name": "Guilherme Blanco",
  356. "email": "guilhermeblanco@gmail.com"
  357. },
  358. {
  359. "name": "Roman Borschel",
  360. "email": "roman@code-factory.org"
  361. },
  362. {
  363. "name": "Benjamin Eberlei",
  364. "email": "kontakt@beberlei.de"
  365. },
  366. {
  367. "name": "Jonathan Wage",
  368. "email": "jonwage@gmail.com"
  369. },
  370. {
  371. "name": "Johannes Schmitt",
  372. "email": "schmittjoh@gmail.com"
  373. }
  374. ],
  375. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  376. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  377. "keywords": [
  378. "inflection",
  379. "inflector",
  380. "lowercase",
  381. "manipulation",
  382. "php",
  383. "plural",
  384. "singular",
  385. "strings",
  386. "uppercase",
  387. "words"
  388. ],
  389. "support": {
  390. "issues": "https://github.com/doctrine/inflector/issues",
  391. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  392. },
  393. "funding": [
  394. {
  395. "url": "https://www.doctrine-project.org/sponsorship.html",
  396. "type": "custom"
  397. },
  398. {
  399. "url": "https://www.patreon.com/phpdoctrine",
  400. "type": "patreon"
  401. },
  402. {
  403. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  404. "type": "tidelift"
  405. }
  406. ],
  407. "time": "2021-10-22T20:16:43+00:00"
  408. },
  409. {
  410. "name": "doctrine/lexer",
  411. "version": "1.2.3",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/doctrine/lexer.git",
  415. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  420. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  421. "shasum": "",
  422. "mirrors": [
  423. {
  424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  425. "preferred": true
  426. }
  427. ]
  428. },
  429. "require": {
  430. "php": "^7.1 || ^8.0"
  431. },
  432. "require-dev": {
  433. "doctrine/coding-standard": "^9.0",
  434. "phpstan/phpstan": "^1.3",
  435. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  436. "vimeo/psalm": "^4.11"
  437. },
  438. "type": "library",
  439. "autoload": {
  440. "psr-4": {
  441. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  442. }
  443. },
  444. "notification-url": "https://packagist.org/downloads/",
  445. "license": [
  446. "MIT"
  447. ],
  448. "authors": [
  449. {
  450. "name": "Guilherme Blanco",
  451. "email": "guilhermeblanco@gmail.com"
  452. },
  453. {
  454. "name": "Roman Borschel",
  455. "email": "roman@code-factory.org"
  456. },
  457. {
  458. "name": "Johannes Schmitt",
  459. "email": "schmittjoh@gmail.com"
  460. }
  461. ],
  462. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  463. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  464. "keywords": [
  465. "annotations",
  466. "docblock",
  467. "lexer",
  468. "parser",
  469. "php"
  470. ],
  471. "support": {
  472. "issues": "https://github.com/doctrine/lexer/issues",
  473. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  474. },
  475. "funding": [
  476. {
  477. "url": "https://www.doctrine-project.org/sponsorship.html",
  478. "type": "custom"
  479. },
  480. {
  481. "url": "https://www.patreon.com/phpdoctrine",
  482. "type": "patreon"
  483. },
  484. {
  485. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  486. "type": "tidelift"
  487. }
  488. ],
  489. "time": "2022-02-28T11:07:21+00:00"
  490. },
  491. {
  492. "name": "illuminate/auth",
  493. "version": "v8.83.21",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/illuminate/auth.git",
  497. "reference": "0dbc23985ce85d55b443b3cf09ea2704f7478c9e"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/illuminate/auth/zipball/0dbc23985ce85d55b443b3cf09ea2704f7478c9e",
  502. "reference": "0dbc23985ce85d55b443b3cf09ea2704f7478c9e",
  503. "shasum": "",
  504. "mirrors": [
  505. {
  506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  507. "preferred": true
  508. }
  509. ]
  510. },
  511. "require": {
  512. "illuminate/collections": "^8.0",
  513. "illuminate/contracts": "^8.0",
  514. "illuminate/http": "^8.0",
  515. "illuminate/macroable": "^8.0",
  516. "illuminate/queue": "^8.0",
  517. "illuminate/support": "^8.0",
  518. "php": "^7.3|^8.0"
  519. },
  520. "suggest": {
  521. "illuminate/console": "Required to use the auth:clear-resets command (^8.0).",
  522. "illuminate/queue": "Required to fire login / logout events (^8.0).",
  523. "illuminate/session": "Required to use the session based guard (^8.0)."
  524. },
  525. "type": "library",
  526. "extra": {
  527. "branch-alias": {
  528. "dev-master": "8.x-dev"
  529. }
  530. },
  531. "autoload": {
  532. "psr-4": {
  533. "Illuminate\\Auth\\": ""
  534. }
  535. },
  536. "notification-url": "https://packagist.org/downloads/",
  537. "license": [
  538. "MIT"
  539. ],
  540. "authors": [
  541. {
  542. "name": "Taylor Otwell",
  543. "email": "taylor@laravel.com"
  544. }
  545. ],
  546. "description": "The Illuminate Auth package.",
  547. "homepage": "https://laravel.com",
  548. "support": {
  549. "issues": "https://github.com/laravel/framework/issues",
  550. "source": "https://github.com/laravel/framework"
  551. },
  552. "time": "2022-07-19T13:56:28+00:00"
  553. },
  554. {
  555. "name": "illuminate/collections",
  556. "version": "v8.83.22",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/illuminate/collections.git",
  560. "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/illuminate/collections/zipball/705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
  565. "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
  566. "shasum": "",
  567. "mirrors": [
  568. {
  569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  570. "preferred": true
  571. }
  572. ]
  573. },
  574. "require": {
  575. "illuminate/contracts": "^8.0",
  576. "illuminate/macroable": "^8.0",
  577. "php": "^7.3|^8.0"
  578. },
  579. "suggest": {
  580. "symfony/var-dumper": "Required to use the dump method (^5.4)."
  581. },
  582. "type": "library",
  583. "extra": {
  584. "branch-alias": {
  585. "dev-master": "8.x-dev"
  586. }
  587. },
  588. "autoload": {
  589. "files": [
  590. "helpers.php"
  591. ],
  592. "psr-4": {
  593. "Illuminate\\Support\\": ""
  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 Collections package.",
  607. "homepage": "https://laravel.com",
  608. "support": {
  609. "issues": "https://github.com/laravel/framework/issues",
  610. "source": "https://github.com/laravel/framework"
  611. },
  612. "time": "2022-06-23T15:29:49+00:00"
  613. },
  614. {
  615. "name": "illuminate/console",
  616. "version": "v8.83.22",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/illuminate/console.git",
  620. "reference": "4aaa93223eb3bd8119157c95f58c022967826035"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/illuminate/console/zipball/4aaa93223eb3bd8119157c95f58c022967826035",
  625. "reference": "4aaa93223eb3bd8119157c95f58c022967826035",
  626. "shasum": "",
  627. "mirrors": [
  628. {
  629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  630. "preferred": true
  631. }
  632. ]
  633. },
  634. "require": {
  635. "illuminate/collections": "^8.0",
  636. "illuminate/contracts": "^8.0",
  637. "illuminate/macroable": "^8.0",
  638. "illuminate/support": "^8.0",
  639. "php": "^7.3|^8.0",
  640. "symfony/console": "^5.4",
  641. "symfony/process": "^5.4"
  642. },
  643. "suggest": {
  644. "dragonmantank/cron-expression": "Required to use scheduler (^3.0.2).",
  645. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^6.5.5|^7.0.1).",
  646. "illuminate/bus": "Required to use the scheduled job dispatcher (^8.0).",
  647. "illuminate/container": "Required to use the scheduler (^8.0).",
  648. "illuminate/filesystem": "Required to use the generator command (^8.0).",
  649. "illuminate/queue": "Required to use closures for scheduled jobs (^8.0)."
  650. },
  651. "type": "library",
  652. "extra": {
  653. "branch-alias": {
  654. "dev-master": "8.x-dev"
  655. }
  656. },
  657. "autoload": {
  658. "psr-4": {
  659. "Illuminate\\Console\\": ""
  660. }
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "MIT"
  665. ],
  666. "authors": [
  667. {
  668. "name": "Taylor Otwell",
  669. "email": "taylor@laravel.com"
  670. }
  671. ],
  672. "description": "The Illuminate Console package.",
  673. "homepage": "https://laravel.com",
  674. "support": {
  675. "issues": "https://github.com/laravel/framework/issues",
  676. "source": "https://github.com/laravel/framework"
  677. },
  678. "time": "2022-04-21T22:14:18+00:00"
  679. },
  680. {
  681. "name": "illuminate/container",
  682. "version": "v8.83.22",
  683. "source": {
  684. "type": "git",
  685. "url": "https://github.com/illuminate/container.git",
  686. "reference": "14062628d05f75047c5a1360b9350028427d568e"
  687. },
  688. "dist": {
  689. "type": "zip",
  690. "url": "https://api.github.com/repos/illuminate/container/zipball/14062628d05f75047c5a1360b9350028427d568e",
  691. "reference": "14062628d05f75047c5a1360b9350028427d568e",
  692. "shasum": "",
  693. "mirrors": [
  694. {
  695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  696. "preferred": true
  697. }
  698. ]
  699. },
  700. "require": {
  701. "illuminate/contracts": "^8.0",
  702. "php": "^7.3|^8.0",
  703. "psr/container": "^1.0"
  704. },
  705. "provide": {
  706. "psr/container-implementation": "1.0"
  707. },
  708. "type": "library",
  709. "extra": {
  710. "branch-alias": {
  711. "dev-master": "8.x-dev"
  712. }
  713. },
  714. "autoload": {
  715. "psr-4": {
  716. "Illuminate\\Container\\": ""
  717. }
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "MIT"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Taylor Otwell",
  726. "email": "taylor@laravel.com"
  727. }
  728. ],
  729. "description": "The Illuminate Container package.",
  730. "homepage": "https://laravel.com",
  731. "support": {
  732. "issues": "https://github.com/laravel/framework/issues",
  733. "source": "https://github.com/laravel/framework"
  734. },
  735. "time": "2022-02-02T21:03:35+00:00"
  736. },
  737. {
  738. "name": "illuminate/contracts",
  739. "version": "v8.83.22",
  740. "source": {
  741. "type": "git",
  742. "url": "https://github.com/illuminate/contracts.git",
  743. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d"
  744. },
  745. "dist": {
  746. "type": "zip",
  747. "url": "https://api.github.com/repos/illuminate/contracts/zipball/5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  748. "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
  749. "shasum": "",
  750. "mirrors": [
  751. {
  752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  753. "preferred": true
  754. }
  755. ]
  756. },
  757. "require": {
  758. "php": "^7.3|^8.0",
  759. "psr/container": "^1.0",
  760. "psr/simple-cache": "^1.0"
  761. },
  762. "type": "library",
  763. "extra": {
  764. "branch-alias": {
  765. "dev-master": "8.x-dev"
  766. }
  767. },
  768. "autoload": {
  769. "psr-4": {
  770. "Illuminate\\Contracts\\": ""
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "authors": [
  778. {
  779. "name": "Taylor Otwell",
  780. "email": "taylor@laravel.com"
  781. }
  782. ],
  783. "description": "The Illuminate Contracts package.",
  784. "homepage": "https://laravel.com",
  785. "support": {
  786. "issues": "https://github.com/laravel/framework/issues",
  787. "source": "https://github.com/laravel/framework"
  788. },
  789. "time": "2022-01-13T14:47:47+00:00"
  790. },
  791. {
  792. "name": "illuminate/database",
  793. "version": "v8.83.22",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/illuminate/database.git",
  797. "reference": "9c056fddf7c2a5cf30d3ffac3c7e50fcc5f8a322"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/illuminate/database/zipball/9c056fddf7c2a5cf30d3ffac3c7e50fcc5f8a322",
  802. "reference": "9c056fddf7c2a5cf30d3ffac3c7e50fcc5f8a322",
  803. "shasum": "",
  804. "mirrors": [
  805. {
  806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  807. "preferred": true
  808. }
  809. ]
  810. },
  811. "require": {
  812. "ext-json": "*",
  813. "illuminate/collections": "^8.0",
  814. "illuminate/container": "^8.0",
  815. "illuminate/contracts": "^8.0",
  816. "illuminate/macroable": "^8.0",
  817. "illuminate/support": "^8.0",
  818. "php": "^7.3|^8.0",
  819. "symfony/console": "^5.4"
  820. },
  821. "suggest": {
  822. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  823. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  824. "illuminate/console": "Required to use the database commands (^8.0).",
  825. "illuminate/events": "Required to use the observers with Eloquent (^8.0).",
  826. "illuminate/filesystem": "Required to use the migrations (^8.0).",
  827. "illuminate/pagination": "Required to paginate the result set (^8.0).",
  828. "symfony/finder": "Required to use Eloquent model factories (^5.4)."
  829. },
  830. "type": "library",
  831. "extra": {
  832. "branch-alias": {
  833. "dev-master": "8.x-dev"
  834. }
  835. },
  836. "autoload": {
  837. "psr-4": {
  838. "Illuminate\\Database\\": ""
  839. }
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Taylor Otwell",
  848. "email": "taylor@laravel.com"
  849. }
  850. ],
  851. "description": "The Illuminate Database package.",
  852. "homepage": "https://laravel.com",
  853. "keywords": [
  854. "database",
  855. "laravel",
  856. "orm",
  857. "sql"
  858. ],
  859. "support": {
  860. "issues": "https://github.com/laravel/framework/issues",
  861. "source": "https://github.com/laravel/framework"
  862. },
  863. "time": "2022-07-14T14:03:49+00:00"
  864. },
  865. {
  866. "name": "illuminate/filesystem",
  867. "version": "v8.83.22",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/illuminate/filesystem.git",
  871. "reference": "73db3e9a233ed587ba54f52ab8580f3c7bc872b2"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/73db3e9a233ed587ba54f52ab8580f3c7bc872b2",
  876. "reference": "73db3e9a233ed587ba54f52ab8580f3c7bc872b2",
  877. "shasum": "",
  878. "mirrors": [
  879. {
  880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  881. "preferred": true
  882. }
  883. ]
  884. },
  885. "require": {
  886. "illuminate/collections": "^8.0",
  887. "illuminate/contracts": "^8.0",
  888. "illuminate/macroable": "^8.0",
  889. "illuminate/support": "^8.0",
  890. "php": "^7.3|^8.0",
  891. "symfony/finder": "^5.4"
  892. },
  893. "suggest": {
  894. "ext-ftp": "Required to use the Flysystem FTP driver.",
  895. "illuminate/http": "Required for handling uploaded files (^7.0).",
  896. "league/flysystem": "Required to use the Flysystem local and FTP drivers (^1.1).",
  897. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  898. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  899. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  900. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  901. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  902. "symfony/mime": "Required to enable support for guessing extensions (^5.4)."
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "8.x-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "Illuminate\\Filesystem\\": ""
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Taylor Otwell",
  922. "email": "taylor@laravel.com"
  923. }
  924. ],
  925. "description": "The Illuminate Filesystem package.",
  926. "homepage": "https://laravel.com",
  927. "support": {
  928. "issues": "https://github.com/laravel/framework/issues",
  929. "source": "https://github.com/laravel/framework"
  930. },
  931. "time": "2022-01-15T15:00:40+00:00"
  932. },
  933. {
  934. "name": "illuminate/http",
  935. "version": "v8.83.22",
  936. "source": {
  937. "type": "git",
  938. "url": "https://github.com/illuminate/http.git",
  939. "reference": "38b8b0c8ca5d5231df9c515f3a3e7aac5f0da9f4"
  940. },
  941. "dist": {
  942. "type": "zip",
  943. "url": "https://api.github.com/repos/illuminate/http/zipball/38b8b0c8ca5d5231df9c515f3a3e7aac5f0da9f4",
  944. "reference": "38b8b0c8ca5d5231df9c515f3a3e7aac5f0da9f4",
  945. "shasum": "",
  946. "mirrors": [
  947. {
  948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  949. "preferred": true
  950. }
  951. ]
  952. },
  953. "require": {
  954. "ext-json": "*",
  955. "illuminate/collections": "^8.0",
  956. "illuminate/macroable": "^8.0",
  957. "illuminate/session": "^8.0",
  958. "illuminate/support": "^8.0",
  959. "php": "^7.3|^8.0",
  960. "symfony/http-foundation": "^5.4",
  961. "symfony/http-kernel": "^5.4",
  962. "symfony/mime": "^5.4"
  963. },
  964. "suggest": {
  965. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  966. "guzzlehttp/guzzle": "Required to use the HTTP Client (^6.5.5|^7.0.1)."
  967. },
  968. "type": "library",
  969. "extra": {
  970. "branch-alias": {
  971. "dev-master": "8.x-dev"
  972. }
  973. },
  974. "autoload": {
  975. "psr-4": {
  976. "Illuminate\\Http\\": ""
  977. }
  978. },
  979. "notification-url": "https://packagist.org/downloads/",
  980. "license": [
  981. "MIT"
  982. ],
  983. "authors": [
  984. {
  985. "name": "Taylor Otwell",
  986. "email": "taylor@laravel.com"
  987. }
  988. ],
  989. "description": "The Illuminate Http package.",
  990. "homepage": "https://laravel.com",
  991. "support": {
  992. "issues": "https://github.com/laravel/framework/issues",
  993. "source": "https://github.com/laravel/framework"
  994. },
  995. "time": "2022-06-10T18:50:29+00:00"
  996. },
  997. {
  998. "name": "illuminate/macroable",
  999. "version": "v8.83.22",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/illuminate/macroable.git",
  1003. "reference": "aed81891a6e046fdee72edd497f822190f61c162"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162",
  1008. "reference": "aed81891a6e046fdee72edd497f822190f61c162",
  1009. "shasum": "",
  1010. "mirrors": [
  1011. {
  1012. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1013. "preferred": true
  1014. }
  1015. ]
  1016. },
  1017. "require": {
  1018. "php": "^7.3|^8.0"
  1019. },
  1020. "type": "library",
  1021. "extra": {
  1022. "branch-alias": {
  1023. "dev-master": "8.x-dev"
  1024. }
  1025. },
  1026. "autoload": {
  1027. "psr-4": {
  1028. "Illuminate\\Support\\": ""
  1029. }
  1030. },
  1031. "notification-url": "https://packagist.org/downloads/",
  1032. "license": [
  1033. "MIT"
  1034. ],
  1035. "authors": [
  1036. {
  1037. "name": "Taylor Otwell",
  1038. "email": "taylor@laravel.com"
  1039. }
  1040. ],
  1041. "description": "The Illuminate Macroable package.",
  1042. "homepage": "https://laravel.com",
  1043. "support": {
  1044. "issues": "https://github.com/laravel/framework/issues",
  1045. "source": "https://github.com/laravel/framework"
  1046. },
  1047. "time": "2021-11-16T13:57:03+00:00"
  1048. },
  1049. {
  1050. "name": "illuminate/pipeline",
  1051. "version": "v8.83.22",
  1052. "source": {
  1053. "type": "git",
  1054. "url": "https://github.com/illuminate/pipeline.git",
  1055. "reference": "23aeff5b26ae4aee3f370835c76bd0f4e93f71d2"
  1056. },
  1057. "dist": {
  1058. "type": "zip",
  1059. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/23aeff5b26ae4aee3f370835c76bd0f4e93f71d2",
  1060. "reference": "23aeff5b26ae4aee3f370835c76bd0f4e93f71d2",
  1061. "shasum": "",
  1062. "mirrors": [
  1063. {
  1064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1065. "preferred": true
  1066. }
  1067. ]
  1068. },
  1069. "require": {
  1070. "illuminate/contracts": "^8.0",
  1071. "illuminate/support": "^8.0",
  1072. "php": "^7.3|^8.0"
  1073. },
  1074. "type": "library",
  1075. "extra": {
  1076. "branch-alias": {
  1077. "dev-master": "8.x-dev"
  1078. }
  1079. },
  1080. "autoload": {
  1081. "psr-4": {
  1082. "Illuminate\\Pipeline\\": ""
  1083. }
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "MIT"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "Taylor Otwell",
  1092. "email": "taylor@laravel.com"
  1093. }
  1094. ],
  1095. "description": "The Illuminate Pipeline package.",
  1096. "homepage": "https://laravel.com",
  1097. "support": {
  1098. "issues": "https://github.com/laravel/framework/issues",
  1099. "source": "https://github.com/laravel/framework"
  1100. },
  1101. "time": "2021-03-26T18:39:16+00:00"
  1102. },
  1103. {
  1104. "name": "illuminate/queue",
  1105. "version": "v8.83.22",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/illuminate/queue.git",
  1109. "reference": "0023daabf67743f7a2bd8328ca2b5537d93e4ae7"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/illuminate/queue/zipball/0023daabf67743f7a2bd8328ca2b5537d93e4ae7",
  1114. "reference": "0023daabf67743f7a2bd8328ca2b5537d93e4ae7",
  1115. "shasum": "",
  1116. "mirrors": [
  1117. {
  1118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1119. "preferred": true
  1120. }
  1121. ]
  1122. },
  1123. "require": {
  1124. "ext-json": "*",
  1125. "illuminate/collections": "^8.0",
  1126. "illuminate/console": "^8.0",
  1127. "illuminate/container": "^8.0",
  1128. "illuminate/contracts": "^8.0",
  1129. "illuminate/database": "^8.0",
  1130. "illuminate/filesystem": "^8.0",
  1131. "illuminate/pipeline": "^8.0",
  1132. "illuminate/support": "^8.0",
  1133. "laravel/serializable-closure": "^1.0",
  1134. "opis/closure": "^3.6",
  1135. "php": "^7.3|^8.0",
  1136. "ramsey/uuid": "^4.2.2",
  1137. "symfony/process": "^5.4"
  1138. },
  1139. "suggest": {
  1140. "aws/aws-sdk-php": "Required to use the SQS queue driver and DynamoDb failed job storage (^3.198.1).",
  1141. "ext-pcntl": "Required to use all features of the queue worker.",
  1142. "ext-posix": "Required to use all features of the queue worker.",
  1143. "illuminate/redis": "Required to use the Redis queue driver (^8.0).",
  1144. "pda/pheanstalk": "Required to use the Beanstalk queue driver (^4.0)."
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "branch-alias": {
  1149. "dev-master": "8.x-dev"
  1150. }
  1151. },
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Illuminate\\Queue\\": ""
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Taylor Otwell",
  1164. "email": "taylor@laravel.com"
  1165. }
  1166. ],
  1167. "description": "The Illuminate Queue package.",
  1168. "homepage": "https://laravel.com",
  1169. "support": {
  1170. "issues": "https://github.com/laravel/framework/issues",
  1171. "source": "https://github.com/laravel/framework"
  1172. },
  1173. "time": "2022-07-21T19:36:12+00:00"
  1174. },
  1175. {
  1176. "name": "illuminate/routing",
  1177. "version": "v8.83.22",
  1178. "source": {
  1179. "type": "git",
  1180. "url": "https://github.com/illuminate/routing.git",
  1181. "reference": "25e79c6d528023eaa1334df1757dcaa0769831f0"
  1182. },
  1183. "dist": {
  1184. "type": "zip",
  1185. "url": "https://api.github.com/repos/illuminate/routing/zipball/25e79c6d528023eaa1334df1757dcaa0769831f0",
  1186. "reference": "25e79c6d528023eaa1334df1757dcaa0769831f0",
  1187. "shasum": "",
  1188. "mirrors": [
  1189. {
  1190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1191. "preferred": true
  1192. }
  1193. ]
  1194. },
  1195. "require": {
  1196. "ext-json": "*",
  1197. "illuminate/collections": "^8.0",
  1198. "illuminate/container": "^8.0",
  1199. "illuminate/contracts": "^8.0",
  1200. "illuminate/http": "^8.0",
  1201. "illuminate/macroable": "^8.0",
  1202. "illuminate/pipeline": "^8.0",
  1203. "illuminate/session": "^8.0",
  1204. "illuminate/support": "^8.0",
  1205. "php": "^7.3|^8.0",
  1206. "symfony/http-foundation": "^5.4",
  1207. "symfony/http-kernel": "^5.4",
  1208. "symfony/routing": "^5.4"
  1209. },
  1210. "suggest": {
  1211. "illuminate/console": "Required to use the make commands (^8.0).",
  1212. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1213. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1214. },
  1215. "type": "library",
  1216. "extra": {
  1217. "branch-alias": {
  1218. "dev-master": "8.x-dev"
  1219. }
  1220. },
  1221. "autoload": {
  1222. "psr-4": {
  1223. "Illuminate\\Routing\\": ""
  1224. }
  1225. },
  1226. "notification-url": "https://packagist.org/downloads/",
  1227. "license": [
  1228. "MIT"
  1229. ],
  1230. "authors": [
  1231. {
  1232. "name": "Taylor Otwell",
  1233. "email": "taylor@laravel.com"
  1234. }
  1235. ],
  1236. "description": "The Illuminate Routing package.",
  1237. "homepage": "https://laravel.com",
  1238. "support": {
  1239. "issues": "https://github.com/laravel/framework/issues",
  1240. "source": "https://github.com/laravel/framework"
  1241. },
  1242. "time": "2022-05-18T15:53:54+00:00"
  1243. },
  1244. {
  1245. "name": "illuminate/session",
  1246. "version": "v8.83.22",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/illuminate/session.git",
  1250. "reference": "9c9988d7229d888c098eebbbb9fcb8c68580411c"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://api.github.com/repos/illuminate/session/zipball/9c9988d7229d888c098eebbbb9fcb8c68580411c",
  1255. "reference": "9c9988d7229d888c098eebbbb9fcb8c68580411c",
  1256. "shasum": "",
  1257. "mirrors": [
  1258. {
  1259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1260. "preferred": true
  1261. }
  1262. ]
  1263. },
  1264. "require": {
  1265. "ext-json": "*",
  1266. "illuminate/collections": "^8.0",
  1267. "illuminate/contracts": "^8.0",
  1268. "illuminate/filesystem": "^8.0",
  1269. "illuminate/support": "^8.0",
  1270. "php": "^7.3|^8.0",
  1271. "symfony/finder": "^5.4",
  1272. "symfony/http-foundation": "^5.4"
  1273. },
  1274. "suggest": {
  1275. "illuminate/console": "Required to use the session:table command (^8.0)."
  1276. },
  1277. "type": "library",
  1278. "extra": {
  1279. "branch-alias": {
  1280. "dev-master": "8.x-dev"
  1281. }
  1282. },
  1283. "autoload": {
  1284. "psr-4": {
  1285. "Illuminate\\Session\\": ""
  1286. }
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "MIT"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Taylor Otwell",
  1295. "email": "taylor@laravel.com"
  1296. }
  1297. ],
  1298. "description": "The Illuminate Session package.",
  1299. "homepage": "https://laravel.com",
  1300. "support": {
  1301. "issues": "https://github.com/laravel/framework/issues",
  1302. "source": "https://github.com/laravel/framework"
  1303. },
  1304. "time": "2022-01-13T18:28:06+00:00"
  1305. },
  1306. {
  1307. "name": "illuminate/support",
  1308. "version": "v8.83.22",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/illuminate/support.git",
  1312. "reference": "c3d643e77082786ae8a51502c757e9b1a3ee254e"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/illuminate/support/zipball/c3d643e77082786ae8a51502c757e9b1a3ee254e",
  1317. "reference": "c3d643e77082786ae8a51502c757e9b1a3ee254e",
  1318. "shasum": "",
  1319. "mirrors": [
  1320. {
  1321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1322. "preferred": true
  1323. }
  1324. ]
  1325. },
  1326. "require": {
  1327. "doctrine/inflector": "^1.4|^2.0",
  1328. "ext-json": "*",
  1329. "ext-mbstring": "*",
  1330. "illuminate/collections": "^8.0",
  1331. "illuminate/contracts": "^8.0",
  1332. "illuminate/macroable": "^8.0",
  1333. "nesbot/carbon": "^2.53.1",
  1334. "php": "^7.3|^8.0",
  1335. "voku/portable-ascii": "^1.6.1"
  1336. },
  1337. "conflict": {
  1338. "tightenco/collect": "<5.5.33"
  1339. },
  1340. "suggest": {
  1341. "illuminate/filesystem": "Required to use the composer class (^8.0).",
  1342. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^1.3|^2.0.2).",
  1343. "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).",
  1344. "symfony/process": "Required to use the composer class (^5.4).",
  1345. "symfony/var-dumper": "Required to use the dd function (^5.4).",
  1346. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  1347. },
  1348. "type": "library",
  1349. "extra": {
  1350. "branch-alias": {
  1351. "dev-master": "8.x-dev"
  1352. }
  1353. },
  1354. "autoload": {
  1355. "files": [
  1356. "helpers.php"
  1357. ],
  1358. "psr-4": {
  1359. "Illuminate\\Support\\": ""
  1360. }
  1361. },
  1362. "notification-url": "https://packagist.org/downloads/",
  1363. "license": [
  1364. "MIT"
  1365. ],
  1366. "authors": [
  1367. {
  1368. "name": "Taylor Otwell",
  1369. "email": "taylor@laravel.com"
  1370. }
  1371. ],
  1372. "description": "The Illuminate Support package.",
  1373. "homepage": "https://laravel.com",
  1374. "support": {
  1375. "issues": "https://github.com/laravel/framework/issues",
  1376. "source": "https://github.com/laravel/framework"
  1377. },
  1378. "time": "2022-06-27T13:26:30+00:00"
  1379. },
  1380. {
  1381. "name": "laravel/serializable-closure",
  1382. "version": "v1.2.0",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/laravel/serializable-closure.git",
  1386. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/09f0e9fb61829f628205b7c94906c28740ff9540",
  1391. "reference": "09f0e9fb61829f628205b7c94906c28740ff9540",
  1392. "shasum": "",
  1393. "mirrors": [
  1394. {
  1395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1396. "preferred": true
  1397. }
  1398. ]
  1399. },
  1400. "require": {
  1401. "php": "^7.3|^8.0"
  1402. },
  1403. "require-dev": {
  1404. "pestphp/pest": "^1.18",
  1405. "phpstan/phpstan": "^0.12.98",
  1406. "symfony/var-dumper": "^5.3"
  1407. },
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "1.x-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Laravel\\SerializableClosure\\": "src/"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "MIT"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "Taylor Otwell",
  1426. "email": "taylor@laravel.com"
  1427. },
  1428. {
  1429. "name": "Nuno Maduro",
  1430. "email": "nuno@laravel.com"
  1431. }
  1432. ],
  1433. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1434. "keywords": [
  1435. "closure",
  1436. "laravel",
  1437. "serializable"
  1438. ],
  1439. "support": {
  1440. "issues": "https://github.com/laravel/serializable-closure/issues",
  1441. "source": "https://github.com/laravel/serializable-closure"
  1442. },
  1443. "time": "2022-05-16T17:09:47+00:00"
  1444. },
  1445. {
  1446. "name": "lcobucci/jwt",
  1447. "version": "3.3.3",
  1448. "source": {
  1449. "type": "git",
  1450. "url": "https://github.com/lcobucci/jwt.git",
  1451. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  1452. },
  1453. "dist": {
  1454. "type": "zip",
  1455. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  1456. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  1457. "shasum": "",
  1458. "mirrors": [
  1459. {
  1460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1461. "preferred": true
  1462. }
  1463. ]
  1464. },
  1465. "require": {
  1466. "ext-mbstring": "*",
  1467. "ext-openssl": "*",
  1468. "php": "^5.6 || ^7.0"
  1469. },
  1470. "require-dev": {
  1471. "mikey179/vfsstream": "~1.5",
  1472. "phpmd/phpmd": "~2.2",
  1473. "phpunit/php-invoker": "~1.1",
  1474. "phpunit/phpunit": "^5.7 || ^7.3",
  1475. "squizlabs/php_codesniffer": "~2.3"
  1476. },
  1477. "type": "library",
  1478. "extra": {
  1479. "branch-alias": {
  1480. "dev-master": "3.1-dev"
  1481. }
  1482. },
  1483. "autoload": {
  1484. "psr-4": {
  1485. "Lcobucci\\JWT\\": "src"
  1486. }
  1487. },
  1488. "notification-url": "https://packagist.org/downloads/",
  1489. "license": [
  1490. "BSD-3-Clause"
  1491. ],
  1492. "authors": [
  1493. {
  1494. "name": "Luís Otávio Cobucci Oblonczyk",
  1495. "email": "lcobucci@gmail.com",
  1496. "role": "Developer"
  1497. }
  1498. ],
  1499. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1500. "keywords": [
  1501. "JWS",
  1502. "jwt"
  1503. ],
  1504. "support": {
  1505. "issues": "https://github.com/lcobucci/jwt/issues",
  1506. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  1507. },
  1508. "funding": [
  1509. {
  1510. "url": "https://github.com/lcobucci",
  1511. "type": "github"
  1512. },
  1513. {
  1514. "url": "https://www.patreon.com/lcobucci",
  1515. "type": "patreon"
  1516. }
  1517. ],
  1518. "time": "2020-08-20T13:22:28+00:00"
  1519. },
  1520. {
  1521. "name": "league/fractal",
  1522. "version": "0.19.2",
  1523. "source": {
  1524. "type": "git",
  1525. "url": "https://github.com/thephpleague/fractal.git",
  1526. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  1527. },
  1528. "dist": {
  1529. "type": "zip",
  1530. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  1531. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  1532. "shasum": "",
  1533. "mirrors": [
  1534. {
  1535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1536. "preferred": true
  1537. }
  1538. ]
  1539. },
  1540. "require": {
  1541. "php": ">=5.4"
  1542. },
  1543. "require-dev": {
  1544. "doctrine/orm": "^2.5",
  1545. "illuminate/contracts": "~5.0",
  1546. "mockery/mockery": "~0.9",
  1547. "pagerfanta/pagerfanta": "~1.0.0",
  1548. "phpunit/phpunit": "^4.8.35 || ^7.5",
  1549. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  1550. "zendframework/zend-paginator": "~2.3"
  1551. },
  1552. "suggest": {
  1553. "illuminate/pagination": "The Illuminate Pagination component.",
  1554. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  1555. "zendframework/zend-paginator": "Zend Framework Paginator"
  1556. },
  1557. "type": "library",
  1558. "extra": {
  1559. "branch-alias": {
  1560. "dev-master": "0.13-dev"
  1561. }
  1562. },
  1563. "autoload": {
  1564. "psr-4": {
  1565. "League\\Fractal\\": "src"
  1566. }
  1567. },
  1568. "notification-url": "https://packagist.org/downloads/",
  1569. "license": [
  1570. "MIT"
  1571. ],
  1572. "authors": [
  1573. {
  1574. "name": "Phil Sturgeon",
  1575. "email": "me@philsturgeon.uk",
  1576. "homepage": "http://philsturgeon.uk/",
  1577. "role": "Developer"
  1578. }
  1579. ],
  1580. "description": "Handle the output of complex data structures ready for API output.",
  1581. "homepage": "http://fractal.thephpleague.com/",
  1582. "keywords": [
  1583. "api",
  1584. "json",
  1585. "league",
  1586. "rest"
  1587. ],
  1588. "support": {
  1589. "issues": "https://github.com/thephpleague/fractal/issues",
  1590. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  1591. },
  1592. "time": "2020-01-24T23:17:29+00:00"
  1593. },
  1594. {
  1595. "name": "namshi/jose",
  1596. "version": "7.2.3",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/namshi/jose.git",
  1600. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  1605. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  1606. "shasum": "",
  1607. "mirrors": [
  1608. {
  1609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1610. "preferred": true
  1611. }
  1612. ]
  1613. },
  1614. "require": {
  1615. "ext-date": "*",
  1616. "ext-hash": "*",
  1617. "ext-json": "*",
  1618. "ext-pcre": "*",
  1619. "ext-spl": "*",
  1620. "php": ">=5.5",
  1621. "symfony/polyfill-php56": "^1.0"
  1622. },
  1623. "require-dev": {
  1624. "phpseclib/phpseclib": "^2.0",
  1625. "phpunit/phpunit": "^4.5|^5.0",
  1626. "satooshi/php-coveralls": "^1.0"
  1627. },
  1628. "suggest": {
  1629. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  1630. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  1631. },
  1632. "type": "library",
  1633. "autoload": {
  1634. "psr-4": {
  1635. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  1636. }
  1637. },
  1638. "notification-url": "https://packagist.org/downloads/",
  1639. "license": [
  1640. "MIT"
  1641. ],
  1642. "authors": [
  1643. {
  1644. "name": "Alessandro Nadalin",
  1645. "email": "alessandro.nadalin@gmail.com"
  1646. },
  1647. {
  1648. "name": "Alessandro Cinelli (cirpo)",
  1649. "email": "alessandro.cinelli@gmail.com"
  1650. }
  1651. ],
  1652. "description": "JSON Object Signing and Encryption library for PHP.",
  1653. "keywords": [
  1654. "JSON Web Signature",
  1655. "JSON Web Token",
  1656. "JWS",
  1657. "json",
  1658. "jwt",
  1659. "token"
  1660. ],
  1661. "support": {
  1662. "issues": "https://github.com/namshi/jose/issues",
  1663. "source": "https://github.com/namshi/jose/tree/master"
  1664. },
  1665. "time": "2016-12-05T07:27:31+00:00"
  1666. },
  1667. {
  1668. "name": "nesbot/carbon",
  1669. "version": "2.59.1",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/briannesbitt/Carbon.git",
  1673. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  1678. "reference": "a9000603ea337c8df16cc41f8b6be95a65f4d0f5",
  1679. "shasum": "",
  1680. "mirrors": [
  1681. {
  1682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1683. "preferred": true
  1684. }
  1685. ]
  1686. },
  1687. "require": {
  1688. "ext-json": "*",
  1689. "php": "^7.1.8 || ^8.0",
  1690. "symfony/polyfill-mbstring": "^1.0",
  1691. "symfony/polyfill-php80": "^1.16",
  1692. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1693. },
  1694. "require-dev": {
  1695. "doctrine/dbal": "^2.0 || ^3.0",
  1696. "doctrine/orm": "^2.7",
  1697. "friendsofphp/php-cs-fixer": "^3.0",
  1698. "kylekatarnls/multi-tester": "^2.0",
  1699. "ondrejmirtes/better-reflection": "*",
  1700. "phpmd/phpmd": "^2.9",
  1701. "phpstan/extension-installer": "^1.0",
  1702. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1703. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1704. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1705. "squizlabs/php_codesniffer": "^3.4"
  1706. },
  1707. "bin": [
  1708. "bin/carbon"
  1709. ],
  1710. "type": "library",
  1711. "extra": {
  1712. "branch-alias": {
  1713. "dev-3.x": "3.x-dev",
  1714. "dev-master": "2.x-dev"
  1715. },
  1716. "laravel": {
  1717. "providers": [
  1718. "Carbon\\Laravel\\ServiceProvider"
  1719. ]
  1720. },
  1721. "phpstan": {
  1722. "includes": [
  1723. "extension.neon"
  1724. ]
  1725. }
  1726. },
  1727. "autoload": {
  1728. "psr-4": {
  1729. "Carbon\\": "src/Carbon/"
  1730. }
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Brian Nesbitt",
  1739. "email": "brian@nesbot.com",
  1740. "homepage": "https://markido.com"
  1741. },
  1742. {
  1743. "name": "kylekatarnls",
  1744. "homepage": "https://github.com/kylekatarnls"
  1745. }
  1746. ],
  1747. "description": "An API extension for DateTime that supports 281 different languages.",
  1748. "homepage": "https://carbon.nesbot.com",
  1749. "keywords": [
  1750. "date",
  1751. "datetime",
  1752. "time"
  1753. ],
  1754. "support": {
  1755. "docs": "https://carbon.nesbot.com/docs",
  1756. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1757. "source": "https://github.com/briannesbitt/Carbon"
  1758. },
  1759. "funding": [
  1760. {
  1761. "url": "https://github.com/sponsors/kylekatarnls",
  1762. "type": "github"
  1763. },
  1764. {
  1765. "url": "https://opencollective.com/Carbon#sponsor",
  1766. "type": "opencollective"
  1767. },
  1768. {
  1769. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1770. "type": "tidelift"
  1771. }
  1772. ],
  1773. "time": "2022-06-29T21:43:55+00:00"
  1774. },
  1775. {
  1776. "name": "opis/closure",
  1777. "version": "3.6.3",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/opis/closure.git",
  1781. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  1786. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  1787. "shasum": "",
  1788. "mirrors": [
  1789. {
  1790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1791. "preferred": true
  1792. }
  1793. ]
  1794. },
  1795. "require": {
  1796. "php": "^5.4 || ^7.0 || ^8.0"
  1797. },
  1798. "require-dev": {
  1799. "jeremeamia/superclosure": "^2.0",
  1800. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1801. },
  1802. "type": "library",
  1803. "extra": {
  1804. "branch-alias": {
  1805. "dev-master": "3.6.x-dev"
  1806. }
  1807. },
  1808. "autoload": {
  1809. "files": [
  1810. "functions.php"
  1811. ],
  1812. "psr-4": {
  1813. "Opis\\Closure\\": "src/"
  1814. }
  1815. },
  1816. "notification-url": "https://packagist.org/downloads/",
  1817. "license": [
  1818. "MIT"
  1819. ],
  1820. "authors": [
  1821. {
  1822. "name": "Marius Sarca",
  1823. "email": "marius.sarca@gmail.com"
  1824. },
  1825. {
  1826. "name": "Sorin Sarca",
  1827. "email": "sarca_sorin@hotmail.com"
  1828. }
  1829. ],
  1830. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1831. "homepage": "https://opis.io/closure",
  1832. "keywords": [
  1833. "anonymous functions",
  1834. "closure",
  1835. "function",
  1836. "serializable",
  1837. "serialization",
  1838. "serialize"
  1839. ],
  1840. "support": {
  1841. "issues": "https://github.com/opis/closure/issues",
  1842. "source": "https://github.com/opis/closure/tree/3.6.3"
  1843. },
  1844. "time": "2022-01-27T09:35:39+00:00"
  1845. },
  1846. {
  1847. "name": "phpdocumentor/reflection-common",
  1848. "version": "2.2.0",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1852. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1857. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1858. "shasum": "",
  1859. "mirrors": [
  1860. {
  1861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1862. "preferred": true
  1863. }
  1864. ]
  1865. },
  1866. "require": {
  1867. "php": "^7.2 || ^8.0"
  1868. },
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-2.x": "2.x-dev"
  1873. }
  1874. },
  1875. "autoload": {
  1876. "psr-4": {
  1877. "phpDocumentor\\Reflection\\": "src/"
  1878. }
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Jaap van Otterdijk",
  1887. "email": "opensource@ijaap.nl"
  1888. }
  1889. ],
  1890. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1891. "homepage": "http://www.phpdoc.org",
  1892. "keywords": [
  1893. "FQSEN",
  1894. "phpDocumentor",
  1895. "phpdoc",
  1896. "reflection",
  1897. "static analysis"
  1898. ],
  1899. "support": {
  1900. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1901. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1902. },
  1903. "time": "2020-06-27T09:03:43+00:00"
  1904. },
  1905. {
  1906. "name": "phpdocumentor/reflection-docblock",
  1907. "version": "5.3.0",
  1908. "source": {
  1909. "type": "git",
  1910. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1911. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  1912. },
  1913. "dist": {
  1914. "type": "zip",
  1915. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  1916. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  1917. "shasum": "",
  1918. "mirrors": [
  1919. {
  1920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1921. "preferred": true
  1922. }
  1923. ]
  1924. },
  1925. "require": {
  1926. "ext-filter": "*",
  1927. "php": "^7.2 || ^8.0",
  1928. "phpdocumentor/reflection-common": "^2.2",
  1929. "phpdocumentor/type-resolver": "^1.3",
  1930. "webmozart/assert": "^1.9.1"
  1931. },
  1932. "require-dev": {
  1933. "mockery/mockery": "~1.3.2",
  1934. "psalm/phar": "^4.8"
  1935. },
  1936. "type": "library",
  1937. "extra": {
  1938. "branch-alias": {
  1939. "dev-master": "5.x-dev"
  1940. }
  1941. },
  1942. "autoload": {
  1943. "psr-4": {
  1944. "phpDocumentor\\Reflection\\": "src"
  1945. }
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "MIT"
  1950. ],
  1951. "authors": [
  1952. {
  1953. "name": "Mike van Riel",
  1954. "email": "me@mikevanriel.com"
  1955. },
  1956. {
  1957. "name": "Jaap van Otterdijk",
  1958. "email": "account@ijaap.nl"
  1959. }
  1960. ],
  1961. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1962. "support": {
  1963. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1964. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  1965. },
  1966. "time": "2021-10-19T17:43:47+00:00"
  1967. },
  1968. {
  1969. "name": "phpdocumentor/type-resolver",
  1970. "version": "1.6.1",
  1971. "source": {
  1972. "type": "git",
  1973. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1974. "reference": "77a32518733312af16a44300404e945338981de3"
  1975. },
  1976. "dist": {
  1977. "type": "zip",
  1978. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  1979. "reference": "77a32518733312af16a44300404e945338981de3",
  1980. "shasum": "",
  1981. "mirrors": [
  1982. {
  1983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1984. "preferred": true
  1985. }
  1986. ]
  1987. },
  1988. "require": {
  1989. "php": "^7.2 || ^8.0",
  1990. "phpdocumentor/reflection-common": "^2.0"
  1991. },
  1992. "require-dev": {
  1993. "ext-tokenizer": "*",
  1994. "psalm/phar": "^4.8"
  1995. },
  1996. "type": "library",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-1.x": "1.x-dev"
  2000. }
  2001. },
  2002. "autoload": {
  2003. "psr-4": {
  2004. "phpDocumentor\\Reflection\\": "src"
  2005. }
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "MIT"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Mike van Riel",
  2014. "email": "me@mikevanriel.com"
  2015. }
  2016. ],
  2017. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2018. "support": {
  2019. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2020. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  2021. },
  2022. "time": "2022-03-15T21:29:03+00:00"
  2023. },
  2024. {
  2025. "name": "psr/cache",
  2026. "version": "1.0.1",
  2027. "source": {
  2028. "type": "git",
  2029. "url": "https://github.com/php-fig/cache.git",
  2030. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2031. },
  2032. "dist": {
  2033. "type": "zip",
  2034. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2035. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2036. "shasum": "",
  2037. "mirrors": [
  2038. {
  2039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2040. "preferred": true
  2041. }
  2042. ]
  2043. },
  2044. "require": {
  2045. "php": ">=5.3.0"
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-master": "1.0.x-dev"
  2051. }
  2052. },
  2053. "autoload": {
  2054. "psr-4": {
  2055. "Psr\\Cache\\": "src/"
  2056. }
  2057. },
  2058. "notification-url": "https://packagist.org/downloads/",
  2059. "license": [
  2060. "MIT"
  2061. ],
  2062. "authors": [
  2063. {
  2064. "name": "PHP-FIG",
  2065. "homepage": "http://www.php-fig.org/"
  2066. }
  2067. ],
  2068. "description": "Common interface for caching libraries",
  2069. "keywords": [
  2070. "cache",
  2071. "psr",
  2072. "psr-6"
  2073. ],
  2074. "support": {
  2075. "source": "https://github.com/php-fig/cache/tree/master"
  2076. },
  2077. "time": "2016-08-06T20:24:11+00:00"
  2078. },
  2079. {
  2080. "name": "psr/container",
  2081. "version": "1.1.2",
  2082. "source": {
  2083. "type": "git",
  2084. "url": "https://github.com/php-fig/container.git",
  2085. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2086. },
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2090. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2091. "shasum": "",
  2092. "mirrors": [
  2093. {
  2094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2095. "preferred": true
  2096. }
  2097. ]
  2098. },
  2099. "require": {
  2100. "php": ">=7.4.0"
  2101. },
  2102. "type": "library",
  2103. "autoload": {
  2104. "psr-4": {
  2105. "Psr\\Container\\": "src/"
  2106. }
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "MIT"
  2111. ],
  2112. "authors": [
  2113. {
  2114. "name": "PHP-FIG",
  2115. "homepage": "https://www.php-fig.org/"
  2116. }
  2117. ],
  2118. "description": "Common Container Interface (PHP FIG PSR-11)",
  2119. "homepage": "https://github.com/php-fig/container",
  2120. "keywords": [
  2121. "PSR-11",
  2122. "container",
  2123. "container-interface",
  2124. "container-interop",
  2125. "psr"
  2126. ],
  2127. "support": {
  2128. "issues": "https://github.com/php-fig/container/issues",
  2129. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2130. },
  2131. "time": "2021-11-05T16:50:12+00:00"
  2132. },
  2133. {
  2134. "name": "psr/event-dispatcher",
  2135. "version": "1.0.0",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/php-fig/event-dispatcher.git",
  2139. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2144. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2145. "shasum": "",
  2146. "mirrors": [
  2147. {
  2148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2149. "preferred": true
  2150. }
  2151. ]
  2152. },
  2153. "require": {
  2154. "php": ">=7.2.0"
  2155. },
  2156. "type": "library",
  2157. "extra": {
  2158. "branch-alias": {
  2159. "dev-master": "1.0.x-dev"
  2160. }
  2161. },
  2162. "autoload": {
  2163. "psr-4": {
  2164. "Psr\\EventDispatcher\\": "src/"
  2165. }
  2166. },
  2167. "notification-url": "https://packagist.org/downloads/",
  2168. "license": [
  2169. "MIT"
  2170. ],
  2171. "authors": [
  2172. {
  2173. "name": "PHP-FIG",
  2174. "homepage": "http://www.php-fig.org/"
  2175. }
  2176. ],
  2177. "description": "Standard interfaces for event handling.",
  2178. "keywords": [
  2179. "events",
  2180. "psr",
  2181. "psr-14"
  2182. ],
  2183. "support": {
  2184. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2185. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2186. },
  2187. "time": "2019-01-08T18:20:26+00:00"
  2188. },
  2189. {
  2190. "name": "psr/log",
  2191. "version": "1.1.4",
  2192. "source": {
  2193. "type": "git",
  2194. "url": "https://github.com/php-fig/log.git",
  2195. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2196. },
  2197. "dist": {
  2198. "type": "zip",
  2199. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2200. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2201. "shasum": "",
  2202. "mirrors": [
  2203. {
  2204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2205. "preferred": true
  2206. }
  2207. ]
  2208. },
  2209. "require": {
  2210. "php": ">=5.3.0"
  2211. },
  2212. "type": "library",
  2213. "extra": {
  2214. "branch-alias": {
  2215. "dev-master": "1.1.x-dev"
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "Psr\\Log\\": "Psr/Log/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "PHP-FIG",
  2230. "homepage": "https://www.php-fig.org/"
  2231. }
  2232. ],
  2233. "description": "Common interface for logging libraries",
  2234. "homepage": "https://github.com/php-fig/log",
  2235. "keywords": [
  2236. "log",
  2237. "psr",
  2238. "psr-3"
  2239. ],
  2240. "support": {
  2241. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2242. },
  2243. "time": "2021-05-03T11:20:27+00:00"
  2244. },
  2245. {
  2246. "name": "psr/simple-cache",
  2247. "version": "1.0.1",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/php-fig/simple-cache.git",
  2251. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2256. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2257. "shasum": "",
  2258. "mirrors": [
  2259. {
  2260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2261. "preferred": true
  2262. }
  2263. ]
  2264. },
  2265. "require": {
  2266. "php": ">=5.3.0"
  2267. },
  2268. "type": "library",
  2269. "extra": {
  2270. "branch-alias": {
  2271. "dev-master": "1.0.x-dev"
  2272. }
  2273. },
  2274. "autoload": {
  2275. "psr-4": {
  2276. "Psr\\SimpleCache\\": "src/"
  2277. }
  2278. },
  2279. "notification-url": "https://packagist.org/downloads/",
  2280. "license": [
  2281. "MIT"
  2282. ],
  2283. "authors": [
  2284. {
  2285. "name": "PHP-FIG",
  2286. "homepage": "http://www.php-fig.org/"
  2287. }
  2288. ],
  2289. "description": "Common interfaces for simple caching",
  2290. "keywords": [
  2291. "cache",
  2292. "caching",
  2293. "psr",
  2294. "psr-16",
  2295. "simple-cache"
  2296. ],
  2297. "support": {
  2298. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2299. },
  2300. "time": "2017-10-23T01:57:42+00:00"
  2301. },
  2302. {
  2303. "name": "ramsey/collection",
  2304. "version": "1.2.2",
  2305. "source": {
  2306. "type": "git",
  2307. "url": "https://github.com/ramsey/collection.git",
  2308. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  2309. },
  2310. "dist": {
  2311. "type": "zip",
  2312. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2313. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  2314. "shasum": "",
  2315. "mirrors": [
  2316. {
  2317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2318. "preferred": true
  2319. }
  2320. ]
  2321. },
  2322. "require": {
  2323. "php": "^7.3 || ^8",
  2324. "symfony/polyfill-php81": "^1.23"
  2325. },
  2326. "require-dev": {
  2327. "captainhook/captainhook": "^5.3",
  2328. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2329. "ergebnis/composer-normalize": "^2.6",
  2330. "fakerphp/faker": "^1.5",
  2331. "hamcrest/hamcrest-php": "^2",
  2332. "jangregor/phpstan-prophecy": "^0.8",
  2333. "mockery/mockery": "^1.3",
  2334. "phpspec/prophecy-phpunit": "^2.0",
  2335. "phpstan/extension-installer": "^1",
  2336. "phpstan/phpstan": "^0.12.32",
  2337. "phpstan/phpstan-mockery": "^0.12.5",
  2338. "phpstan/phpstan-phpunit": "^0.12.11",
  2339. "phpunit/phpunit": "^8.5 || ^9",
  2340. "psy/psysh": "^0.10.4",
  2341. "slevomat/coding-standard": "^6.3",
  2342. "squizlabs/php_codesniffer": "^3.5",
  2343. "vimeo/psalm": "^4.4"
  2344. },
  2345. "type": "library",
  2346. "autoload": {
  2347. "psr-4": {
  2348. "Ramsey\\Collection\\": "src/"
  2349. }
  2350. },
  2351. "notification-url": "https://packagist.org/downloads/",
  2352. "license": [
  2353. "MIT"
  2354. ],
  2355. "authors": [
  2356. {
  2357. "name": "Ben Ramsey",
  2358. "email": "ben@benramsey.com",
  2359. "homepage": "https://benramsey.com"
  2360. }
  2361. ],
  2362. "description": "A PHP library for representing and manipulating collections.",
  2363. "keywords": [
  2364. "array",
  2365. "collection",
  2366. "hash",
  2367. "map",
  2368. "queue",
  2369. "set"
  2370. ],
  2371. "support": {
  2372. "issues": "https://github.com/ramsey/collection/issues",
  2373. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  2374. },
  2375. "funding": [
  2376. {
  2377. "url": "https://github.com/ramsey",
  2378. "type": "github"
  2379. },
  2380. {
  2381. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  2382. "type": "tidelift"
  2383. }
  2384. ],
  2385. "time": "2021-10-10T03:01:02+00:00"
  2386. },
  2387. {
  2388. "name": "ramsey/uuid",
  2389. "version": "4.2.3",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/ramsey/uuid.git",
  2393. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2398. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  2399. "shasum": "",
  2400. "mirrors": [
  2401. {
  2402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2403. "preferred": true
  2404. }
  2405. ]
  2406. },
  2407. "require": {
  2408. "brick/math": "^0.8 || ^0.9",
  2409. "ext-json": "*",
  2410. "php": "^7.2 || ^8.0",
  2411. "ramsey/collection": "^1.0",
  2412. "symfony/polyfill-ctype": "^1.8",
  2413. "symfony/polyfill-php80": "^1.14"
  2414. },
  2415. "replace": {
  2416. "rhumsaa/uuid": "self.version"
  2417. },
  2418. "require-dev": {
  2419. "captainhook/captainhook": "^5.10",
  2420. "captainhook/plugin-composer": "^5.3",
  2421. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2422. "doctrine/annotations": "^1.8",
  2423. "ergebnis/composer-normalize": "^2.15",
  2424. "mockery/mockery": "^1.3",
  2425. "moontoast/math": "^1.1",
  2426. "paragonie/random-lib": "^2",
  2427. "php-mock/php-mock": "^2.2",
  2428. "php-mock/php-mock-mockery": "^1.3",
  2429. "php-parallel-lint/php-parallel-lint": "^1.1",
  2430. "phpbench/phpbench": "^1.0",
  2431. "phpstan/extension-installer": "^1.0",
  2432. "phpstan/phpstan": "^0.12",
  2433. "phpstan/phpstan-mockery": "^0.12",
  2434. "phpstan/phpstan-phpunit": "^0.12",
  2435. "phpunit/phpunit": "^8.5 || ^9",
  2436. "slevomat/coding-standard": "^7.0",
  2437. "squizlabs/php_codesniffer": "^3.5",
  2438. "vimeo/psalm": "^4.9"
  2439. },
  2440. "suggest": {
  2441. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2442. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2443. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2444. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2445. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2446. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2447. },
  2448. "type": "library",
  2449. "extra": {
  2450. "branch-alias": {
  2451. "dev-main": "4.x-dev"
  2452. },
  2453. "captainhook": {
  2454. "force-install": true
  2455. }
  2456. },
  2457. "autoload": {
  2458. "files": [
  2459. "src/functions.php"
  2460. ],
  2461. "psr-4": {
  2462. "Ramsey\\Uuid\\": "src/"
  2463. }
  2464. },
  2465. "notification-url": "https://packagist.org/downloads/",
  2466. "license": [
  2467. "MIT"
  2468. ],
  2469. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2470. "keywords": [
  2471. "guid",
  2472. "identifier",
  2473. "uuid"
  2474. ],
  2475. "support": {
  2476. "issues": "https://github.com/ramsey/uuid/issues",
  2477. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  2478. },
  2479. "funding": [
  2480. {
  2481. "url": "https://github.com/ramsey",
  2482. "type": "github"
  2483. },
  2484. {
  2485. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2486. "type": "tidelift"
  2487. }
  2488. ],
  2489. "time": "2021-09-25T23:10:38+00:00"
  2490. },
  2491. {
  2492. "name": "symfony/console",
  2493. "version": "v5.4.10",
  2494. "source": {
  2495. "type": "git",
  2496. "url": "https://github.com/symfony/console.git",
  2497. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  2498. },
  2499. "dist": {
  2500. "type": "zip",
  2501. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  2502. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  2503. "shasum": "",
  2504. "mirrors": [
  2505. {
  2506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2507. "preferred": true
  2508. }
  2509. ]
  2510. },
  2511. "require": {
  2512. "php": ">=7.2.5",
  2513. "symfony/deprecation-contracts": "^2.1|^3",
  2514. "symfony/polyfill-mbstring": "~1.0",
  2515. "symfony/polyfill-php73": "^1.9",
  2516. "symfony/polyfill-php80": "^1.16",
  2517. "symfony/service-contracts": "^1.1|^2|^3",
  2518. "symfony/string": "^5.1|^6.0"
  2519. },
  2520. "conflict": {
  2521. "psr/log": ">=3",
  2522. "symfony/dependency-injection": "<4.4",
  2523. "symfony/dotenv": "<5.1",
  2524. "symfony/event-dispatcher": "<4.4",
  2525. "symfony/lock": "<4.4",
  2526. "symfony/process": "<4.4"
  2527. },
  2528. "provide": {
  2529. "psr/log-implementation": "1.0|2.0"
  2530. },
  2531. "require-dev": {
  2532. "psr/log": "^1|^2",
  2533. "symfony/config": "^4.4|^5.0|^6.0",
  2534. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2535. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  2536. "symfony/lock": "^4.4|^5.0|^6.0",
  2537. "symfony/process": "^4.4|^5.0|^6.0",
  2538. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2539. },
  2540. "suggest": {
  2541. "psr/log": "For using the console logger",
  2542. "symfony/event-dispatcher": "",
  2543. "symfony/lock": "",
  2544. "symfony/process": ""
  2545. },
  2546. "type": "library",
  2547. "autoload": {
  2548. "psr-4": {
  2549. "Symfony\\Component\\Console\\": ""
  2550. },
  2551. "exclude-from-classmap": [
  2552. "/Tests/"
  2553. ]
  2554. },
  2555. "notification-url": "https://packagist.org/downloads/",
  2556. "license": [
  2557. "MIT"
  2558. ],
  2559. "authors": [
  2560. {
  2561. "name": "Fabien Potencier",
  2562. "email": "fabien@symfony.com"
  2563. },
  2564. {
  2565. "name": "Symfony Community",
  2566. "homepage": "https://symfony.com/contributors"
  2567. }
  2568. ],
  2569. "description": "Eases the creation of beautiful and testable command line interfaces",
  2570. "homepage": "https://symfony.com",
  2571. "keywords": [
  2572. "cli",
  2573. "command line",
  2574. "console",
  2575. "terminal"
  2576. ],
  2577. "support": {
  2578. "source": "https://github.com/symfony/console/tree/v5.4.10"
  2579. },
  2580. "funding": [
  2581. {
  2582. "url": "https://symfony.com/sponsor",
  2583. "type": "custom"
  2584. },
  2585. {
  2586. "url": "https://github.com/fabpot",
  2587. "type": "github"
  2588. },
  2589. {
  2590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2591. "type": "tidelift"
  2592. }
  2593. ],
  2594. "time": "2022-06-26T13:00:04+00:00"
  2595. },
  2596. {
  2597. "name": "symfony/deprecation-contracts",
  2598. "version": "v2.5.2",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/symfony/deprecation-contracts.git",
  2602. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2607. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2608. "shasum": "",
  2609. "mirrors": [
  2610. {
  2611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2612. "preferred": true
  2613. }
  2614. ]
  2615. },
  2616. "require": {
  2617. "php": ">=7.1"
  2618. },
  2619. "type": "library",
  2620. "extra": {
  2621. "branch-alias": {
  2622. "dev-main": "2.5-dev"
  2623. },
  2624. "thanks": {
  2625. "name": "symfony/contracts",
  2626. "url": "https://github.com/symfony/contracts"
  2627. }
  2628. },
  2629. "autoload": {
  2630. "files": [
  2631. "function.php"
  2632. ]
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "MIT"
  2637. ],
  2638. "authors": [
  2639. {
  2640. "name": "Nicolas Grekas",
  2641. "email": "p@tchwork.com"
  2642. },
  2643. {
  2644. "name": "Symfony Community",
  2645. "homepage": "https://symfony.com/contributors"
  2646. }
  2647. ],
  2648. "description": "A generic function and convention to trigger deprecation notices",
  2649. "homepage": "https://symfony.com",
  2650. "support": {
  2651. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2652. },
  2653. "funding": [
  2654. {
  2655. "url": "https://symfony.com/sponsor",
  2656. "type": "custom"
  2657. },
  2658. {
  2659. "url": "https://github.com/fabpot",
  2660. "type": "github"
  2661. },
  2662. {
  2663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2664. "type": "tidelift"
  2665. }
  2666. ],
  2667. "time": "2022-01-02T09:53:40+00:00"
  2668. },
  2669. {
  2670. "name": "symfony/error-handler",
  2671. "version": "v5.4.9",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/symfony/error-handler.git",
  2675. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  2680. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  2681. "shasum": "",
  2682. "mirrors": [
  2683. {
  2684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2685. "preferred": true
  2686. }
  2687. ]
  2688. },
  2689. "require": {
  2690. "php": ">=7.2.5",
  2691. "psr/log": "^1|^2|^3",
  2692. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2693. },
  2694. "require-dev": {
  2695. "symfony/deprecation-contracts": "^2.1|^3",
  2696. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2697. "symfony/serializer": "^4.4|^5.0|^6.0"
  2698. },
  2699. "bin": [
  2700. "Resources/bin/patch-type-declarations"
  2701. ],
  2702. "type": "library",
  2703. "autoload": {
  2704. "psr-4": {
  2705. "Symfony\\Component\\ErrorHandler\\": ""
  2706. },
  2707. "exclude-from-classmap": [
  2708. "/Tests/"
  2709. ]
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "MIT"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Fabien Potencier",
  2718. "email": "fabien@symfony.com"
  2719. },
  2720. {
  2721. "name": "Symfony Community",
  2722. "homepage": "https://symfony.com/contributors"
  2723. }
  2724. ],
  2725. "description": "Provides tools to manage errors and ease debugging PHP code",
  2726. "homepage": "https://symfony.com",
  2727. "support": {
  2728. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  2729. },
  2730. "funding": [
  2731. {
  2732. "url": "https://symfony.com/sponsor",
  2733. "type": "custom"
  2734. },
  2735. {
  2736. "url": "https://github.com/fabpot",
  2737. "type": "github"
  2738. },
  2739. {
  2740. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2741. "type": "tidelift"
  2742. }
  2743. ],
  2744. "time": "2022-05-21T13:57:48+00:00"
  2745. },
  2746. {
  2747. "name": "symfony/event-dispatcher",
  2748. "version": "v5.4.9",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/symfony/event-dispatcher.git",
  2752. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  2757. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  2758. "shasum": "",
  2759. "mirrors": [
  2760. {
  2761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2762. "preferred": true
  2763. }
  2764. ]
  2765. },
  2766. "require": {
  2767. "php": ">=7.2.5",
  2768. "symfony/deprecation-contracts": "^2.1|^3",
  2769. "symfony/event-dispatcher-contracts": "^2|^3",
  2770. "symfony/polyfill-php80": "^1.16"
  2771. },
  2772. "conflict": {
  2773. "symfony/dependency-injection": "<4.4"
  2774. },
  2775. "provide": {
  2776. "psr/event-dispatcher-implementation": "1.0",
  2777. "symfony/event-dispatcher-implementation": "2.0"
  2778. },
  2779. "require-dev": {
  2780. "psr/log": "^1|^2|^3",
  2781. "symfony/config": "^4.4|^5.0|^6.0",
  2782. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2783. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2784. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2785. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  2786. "symfony/service-contracts": "^1.1|^2|^3",
  2787. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  2788. },
  2789. "suggest": {
  2790. "symfony/dependency-injection": "",
  2791. "symfony/http-kernel": ""
  2792. },
  2793. "type": "library",
  2794. "autoload": {
  2795. "psr-4": {
  2796. "Symfony\\Component\\EventDispatcher\\": ""
  2797. },
  2798. "exclude-from-classmap": [
  2799. "/Tests/"
  2800. ]
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "authors": [
  2807. {
  2808. "name": "Fabien Potencier",
  2809. "email": "fabien@symfony.com"
  2810. },
  2811. {
  2812. "name": "Symfony Community",
  2813. "homepage": "https://symfony.com/contributors"
  2814. }
  2815. ],
  2816. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2817. "homepage": "https://symfony.com",
  2818. "support": {
  2819. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  2820. },
  2821. "funding": [
  2822. {
  2823. "url": "https://symfony.com/sponsor",
  2824. "type": "custom"
  2825. },
  2826. {
  2827. "url": "https://github.com/fabpot",
  2828. "type": "github"
  2829. },
  2830. {
  2831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2832. "type": "tidelift"
  2833. }
  2834. ],
  2835. "time": "2022-05-05T16:45:39+00:00"
  2836. },
  2837. {
  2838. "name": "symfony/event-dispatcher-contracts",
  2839. "version": "v2.5.2",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2843. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  2848. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  2849. "shasum": "",
  2850. "mirrors": [
  2851. {
  2852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2853. "preferred": true
  2854. }
  2855. ]
  2856. },
  2857. "require": {
  2858. "php": ">=7.2.5",
  2859. "psr/event-dispatcher": "^1"
  2860. },
  2861. "suggest": {
  2862. "symfony/event-dispatcher-implementation": ""
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-main": "2.5-dev"
  2868. },
  2869. "thanks": {
  2870. "name": "symfony/contracts",
  2871. "url": "https://github.com/symfony/contracts"
  2872. }
  2873. },
  2874. "autoload": {
  2875. "psr-4": {
  2876. "Symfony\\Contracts\\EventDispatcher\\": ""
  2877. }
  2878. },
  2879. "notification-url": "https://packagist.org/downloads/",
  2880. "license": [
  2881. "MIT"
  2882. ],
  2883. "authors": [
  2884. {
  2885. "name": "Nicolas Grekas",
  2886. "email": "p@tchwork.com"
  2887. },
  2888. {
  2889. "name": "Symfony Community",
  2890. "homepage": "https://symfony.com/contributors"
  2891. }
  2892. ],
  2893. "description": "Generic abstractions related to dispatching event",
  2894. "homepage": "https://symfony.com",
  2895. "keywords": [
  2896. "abstractions",
  2897. "contracts",
  2898. "decoupling",
  2899. "interfaces",
  2900. "interoperability",
  2901. "standards"
  2902. ],
  2903. "support": {
  2904. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  2905. },
  2906. "funding": [
  2907. {
  2908. "url": "https://symfony.com/sponsor",
  2909. "type": "custom"
  2910. },
  2911. {
  2912. "url": "https://github.com/fabpot",
  2913. "type": "github"
  2914. },
  2915. {
  2916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2917. "type": "tidelift"
  2918. }
  2919. ],
  2920. "time": "2022-01-02T09:53:40+00:00"
  2921. },
  2922. {
  2923. "name": "symfony/finder",
  2924. "version": "v5.4.8",
  2925. "source": {
  2926. "type": "git",
  2927. "url": "https://github.com/symfony/finder.git",
  2928. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  2929. },
  2930. "dist": {
  2931. "type": "zip",
  2932. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  2933. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  2934. "shasum": "",
  2935. "mirrors": [
  2936. {
  2937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2938. "preferred": true
  2939. }
  2940. ]
  2941. },
  2942. "require": {
  2943. "php": ">=7.2.5",
  2944. "symfony/deprecation-contracts": "^2.1|^3",
  2945. "symfony/polyfill-php80": "^1.16"
  2946. },
  2947. "type": "library",
  2948. "autoload": {
  2949. "psr-4": {
  2950. "Symfony\\Component\\Finder\\": ""
  2951. },
  2952. "exclude-from-classmap": [
  2953. "/Tests/"
  2954. ]
  2955. },
  2956. "notification-url": "https://packagist.org/downloads/",
  2957. "license": [
  2958. "MIT"
  2959. ],
  2960. "authors": [
  2961. {
  2962. "name": "Fabien Potencier",
  2963. "email": "fabien@symfony.com"
  2964. },
  2965. {
  2966. "name": "Symfony Community",
  2967. "homepage": "https://symfony.com/contributors"
  2968. }
  2969. ],
  2970. "description": "Finds files and directories via an intuitive fluent interface",
  2971. "homepage": "https://symfony.com",
  2972. "support": {
  2973. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  2974. },
  2975. "funding": [
  2976. {
  2977. "url": "https://symfony.com/sponsor",
  2978. "type": "custom"
  2979. },
  2980. {
  2981. "url": "https://github.com/fabpot",
  2982. "type": "github"
  2983. },
  2984. {
  2985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2986. "type": "tidelift"
  2987. }
  2988. ],
  2989. "time": "2022-04-15T08:07:45+00:00"
  2990. },
  2991. {
  2992. "name": "symfony/http-foundation",
  2993. "version": "v5.4.10",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/symfony/http-foundation.git",
  2997. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3002. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3003. "shasum": "",
  3004. "mirrors": [
  3005. {
  3006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3007. "preferred": true
  3008. }
  3009. ]
  3010. },
  3011. "require": {
  3012. "php": ">=7.2.5",
  3013. "symfony/deprecation-contracts": "^2.1|^3",
  3014. "symfony/polyfill-mbstring": "~1.1",
  3015. "symfony/polyfill-php80": "^1.16"
  3016. },
  3017. "require-dev": {
  3018. "predis/predis": "~1.0",
  3019. "symfony/cache": "^4.4|^5.0|^6.0",
  3020. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3021. "symfony/mime": "^4.4|^5.0|^6.0"
  3022. },
  3023. "suggest": {
  3024. "symfony/mime": "To use the file extension guesser"
  3025. },
  3026. "type": "library",
  3027. "autoload": {
  3028. "psr-4": {
  3029. "Symfony\\Component\\HttpFoundation\\": ""
  3030. },
  3031. "exclude-from-classmap": [
  3032. "/Tests/"
  3033. ]
  3034. },
  3035. "notification-url": "https://packagist.org/downloads/",
  3036. "license": [
  3037. "MIT"
  3038. ],
  3039. "authors": [
  3040. {
  3041. "name": "Fabien Potencier",
  3042. "email": "fabien@symfony.com"
  3043. },
  3044. {
  3045. "name": "Symfony Community",
  3046. "homepage": "https://symfony.com/contributors"
  3047. }
  3048. ],
  3049. "description": "Defines an object-oriented layer for the HTTP specification",
  3050. "homepage": "https://symfony.com",
  3051. "support": {
  3052. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  3053. },
  3054. "funding": [
  3055. {
  3056. "url": "https://symfony.com/sponsor",
  3057. "type": "custom"
  3058. },
  3059. {
  3060. "url": "https://github.com/fabpot",
  3061. "type": "github"
  3062. },
  3063. {
  3064. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3065. "type": "tidelift"
  3066. }
  3067. ],
  3068. "time": "2022-06-19T13:13:40+00:00"
  3069. },
  3070. {
  3071. "name": "symfony/http-kernel",
  3072. "version": "v5.4.10",
  3073. "source": {
  3074. "type": "git",
  3075. "url": "https://github.com/symfony/http-kernel.git",
  3076. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948"
  3077. },
  3078. "dist": {
  3079. "type": "zip",
  3080. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/255ae3b0a488d78fbb34da23d3e0c059874b5948",
  3081. "reference": "255ae3b0a488d78fbb34da23d3e0c059874b5948",
  3082. "shasum": "",
  3083. "mirrors": [
  3084. {
  3085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3086. "preferred": true
  3087. }
  3088. ]
  3089. },
  3090. "require": {
  3091. "php": ">=7.2.5",
  3092. "psr/log": "^1|^2",
  3093. "symfony/deprecation-contracts": "^2.1|^3",
  3094. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3095. "symfony/event-dispatcher": "^5.0|^6.0",
  3096. "symfony/http-foundation": "^5.3.7|^6.0",
  3097. "symfony/polyfill-ctype": "^1.8",
  3098. "symfony/polyfill-php73": "^1.9",
  3099. "symfony/polyfill-php80": "^1.16"
  3100. },
  3101. "conflict": {
  3102. "symfony/browser-kit": "<5.4",
  3103. "symfony/cache": "<5.0",
  3104. "symfony/config": "<5.0",
  3105. "symfony/console": "<4.4",
  3106. "symfony/dependency-injection": "<5.3",
  3107. "symfony/doctrine-bridge": "<5.0",
  3108. "symfony/form": "<5.0",
  3109. "symfony/http-client": "<5.0",
  3110. "symfony/mailer": "<5.0",
  3111. "symfony/messenger": "<5.0",
  3112. "symfony/translation": "<5.0",
  3113. "symfony/twig-bridge": "<5.0",
  3114. "symfony/validator": "<5.0",
  3115. "twig/twig": "<2.13"
  3116. },
  3117. "provide": {
  3118. "psr/log-implementation": "1.0|2.0"
  3119. },
  3120. "require-dev": {
  3121. "psr/cache": "^1.0|^2.0|^3.0",
  3122. "symfony/browser-kit": "^5.4|^6.0",
  3123. "symfony/config": "^5.0|^6.0",
  3124. "symfony/console": "^4.4|^5.0|^6.0",
  3125. "symfony/css-selector": "^4.4|^5.0|^6.0",
  3126. "symfony/dependency-injection": "^5.3|^6.0",
  3127. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  3128. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3129. "symfony/finder": "^4.4|^5.0|^6.0",
  3130. "symfony/http-client-contracts": "^1.1|^2|^3",
  3131. "symfony/process": "^4.4|^5.0|^6.0",
  3132. "symfony/routing": "^4.4|^5.0|^6.0",
  3133. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  3134. "symfony/translation": "^4.4|^5.0|^6.0",
  3135. "symfony/translation-contracts": "^1.1|^2|^3",
  3136. "twig/twig": "^2.13|^3.0.4"
  3137. },
  3138. "suggest": {
  3139. "symfony/browser-kit": "",
  3140. "symfony/config": "",
  3141. "symfony/console": "",
  3142. "symfony/dependency-injection": ""
  3143. },
  3144. "type": "library",
  3145. "autoload": {
  3146. "psr-4": {
  3147. "Symfony\\Component\\HttpKernel\\": ""
  3148. },
  3149. "exclude-from-classmap": [
  3150. "/Tests/"
  3151. ]
  3152. },
  3153. "notification-url": "https://packagist.org/downloads/",
  3154. "license": [
  3155. "MIT"
  3156. ],
  3157. "authors": [
  3158. {
  3159. "name": "Fabien Potencier",
  3160. "email": "fabien@symfony.com"
  3161. },
  3162. {
  3163. "name": "Symfony Community",
  3164. "homepage": "https://symfony.com/contributors"
  3165. }
  3166. ],
  3167. "description": "Provides a structured process for converting a Request into a Response",
  3168. "homepage": "https://symfony.com",
  3169. "support": {
  3170. "source": "https://github.com/symfony/http-kernel/tree/v5.4.10"
  3171. },
  3172. "funding": [
  3173. {
  3174. "url": "https://symfony.com/sponsor",
  3175. "type": "custom"
  3176. },
  3177. {
  3178. "url": "https://github.com/fabpot",
  3179. "type": "github"
  3180. },
  3181. {
  3182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3183. "type": "tidelift"
  3184. }
  3185. ],
  3186. "time": "2022-06-26T16:57:59+00:00"
  3187. },
  3188. {
  3189. "name": "symfony/mime",
  3190. "version": "v5.4.10",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/symfony/mime.git",
  3194. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/symfony/mime/zipball/02265e1e5111c3cd7480387af25e82378b7ab9cc",
  3199. "reference": "02265e1e5111c3cd7480387af25e82378b7ab9cc",
  3200. "shasum": "",
  3201. "mirrors": [
  3202. {
  3203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3204. "preferred": true
  3205. }
  3206. ]
  3207. },
  3208. "require": {
  3209. "php": ">=7.2.5",
  3210. "symfony/deprecation-contracts": "^2.1|^3",
  3211. "symfony/polyfill-intl-idn": "^1.10",
  3212. "symfony/polyfill-mbstring": "^1.0",
  3213. "symfony/polyfill-php80": "^1.16"
  3214. },
  3215. "conflict": {
  3216. "egulias/email-validator": "~3.0.0",
  3217. "phpdocumentor/reflection-docblock": "<3.2.2",
  3218. "phpdocumentor/type-resolver": "<1.4.0",
  3219. "symfony/mailer": "<4.4"
  3220. },
  3221. "require-dev": {
  3222. "egulias/email-validator": "^2.1.10|^3.1",
  3223. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3224. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3225. "symfony/property-access": "^4.4|^5.1|^6.0",
  3226. "symfony/property-info": "^4.4|^5.1|^6.0",
  3227. "symfony/serializer": "^5.2|^6.0"
  3228. },
  3229. "type": "library",
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Symfony\\Component\\Mime\\": ""
  3233. },
  3234. "exclude-from-classmap": [
  3235. "/Tests/"
  3236. ]
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "MIT"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Fabien Potencier",
  3245. "email": "fabien@symfony.com"
  3246. },
  3247. {
  3248. "name": "Symfony Community",
  3249. "homepage": "https://symfony.com/contributors"
  3250. }
  3251. ],
  3252. "description": "Allows manipulating MIME messages",
  3253. "homepage": "https://symfony.com",
  3254. "keywords": [
  3255. "mime",
  3256. "mime-type"
  3257. ],
  3258. "support": {
  3259. "source": "https://github.com/symfony/mime/tree/v5.4.10"
  3260. },
  3261. "funding": [
  3262. {
  3263. "url": "https://symfony.com/sponsor",
  3264. "type": "custom"
  3265. },
  3266. {
  3267. "url": "https://github.com/fabpot",
  3268. "type": "github"
  3269. },
  3270. {
  3271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3272. "type": "tidelift"
  3273. }
  3274. ],
  3275. "time": "2022-06-09T12:22:40+00:00"
  3276. },
  3277. {
  3278. "name": "symfony/polyfill-ctype",
  3279. "version": "v1.26.0",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/symfony/polyfill-ctype.git",
  3283. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3288. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3289. "shasum": "",
  3290. "mirrors": [
  3291. {
  3292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3293. "preferred": true
  3294. }
  3295. ]
  3296. },
  3297. "require": {
  3298. "php": ">=7.1"
  3299. },
  3300. "provide": {
  3301. "ext-ctype": "*"
  3302. },
  3303. "suggest": {
  3304. "ext-ctype": "For best performance"
  3305. },
  3306. "type": "library",
  3307. "extra": {
  3308. "branch-alias": {
  3309. "dev-main": "1.26-dev"
  3310. },
  3311. "thanks": {
  3312. "name": "symfony/polyfill",
  3313. "url": "https://github.com/symfony/polyfill"
  3314. }
  3315. },
  3316. "autoload": {
  3317. "files": [
  3318. "bootstrap.php"
  3319. ],
  3320. "psr-4": {
  3321. "Symfony\\Polyfill\\Ctype\\": ""
  3322. }
  3323. },
  3324. "notification-url": "https://packagist.org/downloads/",
  3325. "license": [
  3326. "MIT"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "Gert de Pagter",
  3331. "email": "BackEndTea@gmail.com"
  3332. },
  3333. {
  3334. "name": "Symfony Community",
  3335. "homepage": "https://symfony.com/contributors"
  3336. }
  3337. ],
  3338. "description": "Symfony polyfill for ctype functions",
  3339. "homepage": "https://symfony.com",
  3340. "keywords": [
  3341. "compatibility",
  3342. "ctype",
  3343. "polyfill",
  3344. "portable"
  3345. ],
  3346. "support": {
  3347. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  3348. },
  3349. "funding": [
  3350. {
  3351. "url": "https://symfony.com/sponsor",
  3352. "type": "custom"
  3353. },
  3354. {
  3355. "url": "https://github.com/fabpot",
  3356. "type": "github"
  3357. },
  3358. {
  3359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3360. "type": "tidelift"
  3361. }
  3362. ],
  3363. "time": "2022-05-24T11:49:31+00:00"
  3364. },
  3365. {
  3366. "name": "symfony/polyfill-intl-grapheme",
  3367. "version": "v1.26.0",
  3368. "source": {
  3369. "type": "git",
  3370. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3371. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  3372. },
  3373. "dist": {
  3374. "type": "zip",
  3375. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  3376. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  3377. "shasum": "",
  3378. "mirrors": [
  3379. {
  3380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3381. "preferred": true
  3382. }
  3383. ]
  3384. },
  3385. "require": {
  3386. "php": ">=7.1"
  3387. },
  3388. "suggest": {
  3389. "ext-intl": "For best performance"
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "branch-alias": {
  3394. "dev-main": "1.26-dev"
  3395. },
  3396. "thanks": {
  3397. "name": "symfony/polyfill",
  3398. "url": "https://github.com/symfony/polyfill"
  3399. }
  3400. },
  3401. "autoload": {
  3402. "files": [
  3403. "bootstrap.php"
  3404. ],
  3405. "psr-4": {
  3406. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3407. }
  3408. },
  3409. "notification-url": "https://packagist.org/downloads/",
  3410. "license": [
  3411. "MIT"
  3412. ],
  3413. "authors": [
  3414. {
  3415. "name": "Nicolas Grekas",
  3416. "email": "p@tchwork.com"
  3417. },
  3418. {
  3419. "name": "Symfony Community",
  3420. "homepage": "https://symfony.com/contributors"
  3421. }
  3422. ],
  3423. "description": "Symfony polyfill for intl's grapheme_* functions",
  3424. "homepage": "https://symfony.com",
  3425. "keywords": [
  3426. "compatibility",
  3427. "grapheme",
  3428. "intl",
  3429. "polyfill",
  3430. "portable",
  3431. "shim"
  3432. ],
  3433. "support": {
  3434. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  3435. },
  3436. "funding": [
  3437. {
  3438. "url": "https://symfony.com/sponsor",
  3439. "type": "custom"
  3440. },
  3441. {
  3442. "url": "https://github.com/fabpot",
  3443. "type": "github"
  3444. },
  3445. {
  3446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3447. "type": "tidelift"
  3448. }
  3449. ],
  3450. "time": "2022-05-24T11:49:31+00:00"
  3451. },
  3452. {
  3453. "name": "symfony/polyfill-intl-idn",
  3454. "version": "v1.26.0",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3458. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  3463. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  3464. "shasum": "",
  3465. "mirrors": [
  3466. {
  3467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3468. "preferred": true
  3469. }
  3470. ]
  3471. },
  3472. "require": {
  3473. "php": ">=7.1",
  3474. "symfony/polyfill-intl-normalizer": "^1.10",
  3475. "symfony/polyfill-php72": "^1.10"
  3476. },
  3477. "suggest": {
  3478. "ext-intl": "For best performance"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-main": "1.26-dev"
  3484. },
  3485. "thanks": {
  3486. "name": "symfony/polyfill",
  3487. "url": "https://github.com/symfony/polyfill"
  3488. }
  3489. },
  3490. "autoload": {
  3491. "files": [
  3492. "bootstrap.php"
  3493. ],
  3494. "psr-4": {
  3495. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3496. }
  3497. },
  3498. "notification-url": "https://packagist.org/downloads/",
  3499. "license": [
  3500. "MIT"
  3501. ],
  3502. "authors": [
  3503. {
  3504. "name": "Laurent Bassin",
  3505. "email": "laurent@bassin.info"
  3506. },
  3507. {
  3508. "name": "Trevor Rowbotham",
  3509. "email": "trevor.rowbotham@pm.me"
  3510. },
  3511. {
  3512. "name": "Symfony Community",
  3513. "homepage": "https://symfony.com/contributors"
  3514. }
  3515. ],
  3516. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3517. "homepage": "https://symfony.com",
  3518. "keywords": [
  3519. "compatibility",
  3520. "idn",
  3521. "intl",
  3522. "polyfill",
  3523. "portable",
  3524. "shim"
  3525. ],
  3526. "support": {
  3527. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  3528. },
  3529. "funding": [
  3530. {
  3531. "url": "https://symfony.com/sponsor",
  3532. "type": "custom"
  3533. },
  3534. {
  3535. "url": "https://github.com/fabpot",
  3536. "type": "github"
  3537. },
  3538. {
  3539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3540. "type": "tidelift"
  3541. }
  3542. ],
  3543. "time": "2022-05-24T11:49:31+00:00"
  3544. },
  3545. {
  3546. "name": "symfony/polyfill-intl-normalizer",
  3547. "version": "v1.26.0",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3551. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  3556. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  3557. "shasum": "",
  3558. "mirrors": [
  3559. {
  3560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3561. "preferred": true
  3562. }
  3563. ]
  3564. },
  3565. "require": {
  3566. "php": ">=7.1"
  3567. },
  3568. "suggest": {
  3569. "ext-intl": "For best performance"
  3570. },
  3571. "type": "library",
  3572. "extra": {
  3573. "branch-alias": {
  3574. "dev-main": "1.26-dev"
  3575. },
  3576. "thanks": {
  3577. "name": "symfony/polyfill",
  3578. "url": "https://github.com/symfony/polyfill"
  3579. }
  3580. },
  3581. "autoload": {
  3582. "files": [
  3583. "bootstrap.php"
  3584. ],
  3585. "psr-4": {
  3586. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3587. },
  3588. "classmap": [
  3589. "Resources/stubs"
  3590. ]
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Nicolas Grekas",
  3599. "email": "p@tchwork.com"
  3600. },
  3601. {
  3602. "name": "Symfony Community",
  3603. "homepage": "https://symfony.com/contributors"
  3604. }
  3605. ],
  3606. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3607. "homepage": "https://symfony.com",
  3608. "keywords": [
  3609. "compatibility",
  3610. "intl",
  3611. "normalizer",
  3612. "polyfill",
  3613. "portable",
  3614. "shim"
  3615. ],
  3616. "support": {
  3617. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://symfony.com/sponsor",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://github.com/fabpot",
  3626. "type": "github"
  3627. },
  3628. {
  3629. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3630. "type": "tidelift"
  3631. }
  3632. ],
  3633. "time": "2022-05-24T11:49:31+00:00"
  3634. },
  3635. {
  3636. "name": "symfony/polyfill-mbstring",
  3637. "version": "v1.26.0",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3641. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3646. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3647. "shasum": "",
  3648. "mirrors": [
  3649. {
  3650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3651. "preferred": true
  3652. }
  3653. ]
  3654. },
  3655. "require": {
  3656. "php": ">=7.1"
  3657. },
  3658. "provide": {
  3659. "ext-mbstring": "*"
  3660. },
  3661. "suggest": {
  3662. "ext-mbstring": "For best performance"
  3663. },
  3664. "type": "library",
  3665. "extra": {
  3666. "branch-alias": {
  3667. "dev-main": "1.26-dev"
  3668. },
  3669. "thanks": {
  3670. "name": "symfony/polyfill",
  3671. "url": "https://github.com/symfony/polyfill"
  3672. }
  3673. },
  3674. "autoload": {
  3675. "files": [
  3676. "bootstrap.php"
  3677. ],
  3678. "psr-4": {
  3679. "Symfony\\Polyfill\\Mbstring\\": ""
  3680. }
  3681. },
  3682. "notification-url": "https://packagist.org/downloads/",
  3683. "license": [
  3684. "MIT"
  3685. ],
  3686. "authors": [
  3687. {
  3688. "name": "Nicolas Grekas",
  3689. "email": "p@tchwork.com"
  3690. },
  3691. {
  3692. "name": "Symfony Community",
  3693. "homepage": "https://symfony.com/contributors"
  3694. }
  3695. ],
  3696. "description": "Symfony polyfill for the Mbstring extension",
  3697. "homepage": "https://symfony.com",
  3698. "keywords": [
  3699. "compatibility",
  3700. "mbstring",
  3701. "polyfill",
  3702. "portable",
  3703. "shim"
  3704. ],
  3705. "support": {
  3706. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  3707. },
  3708. "funding": [
  3709. {
  3710. "url": "https://symfony.com/sponsor",
  3711. "type": "custom"
  3712. },
  3713. {
  3714. "url": "https://github.com/fabpot",
  3715. "type": "github"
  3716. },
  3717. {
  3718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3719. "type": "tidelift"
  3720. }
  3721. ],
  3722. "time": "2022-05-24T11:49:31+00:00"
  3723. },
  3724. {
  3725. "name": "symfony/polyfill-php56",
  3726. "version": "v1.20.0",
  3727. "source": {
  3728. "type": "git",
  3729. "url": "https://github.com/symfony/polyfill-php56.git",
  3730. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  3731. },
  3732. "dist": {
  3733. "type": "zip",
  3734. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  3735. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  3736. "shasum": "",
  3737. "mirrors": [
  3738. {
  3739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3740. "preferred": true
  3741. }
  3742. ]
  3743. },
  3744. "require": {
  3745. "php": ">=7.1"
  3746. },
  3747. "type": "metapackage",
  3748. "extra": {
  3749. "branch-alias": {
  3750. "dev-main": "1.20-dev"
  3751. },
  3752. "thanks": {
  3753. "name": "symfony/polyfill",
  3754. "url": "https://github.com/symfony/polyfill"
  3755. }
  3756. },
  3757. "notification-url": "https://packagist.org/downloads/",
  3758. "license": [
  3759. "MIT"
  3760. ],
  3761. "authors": [
  3762. {
  3763. "name": "Nicolas Grekas",
  3764. "email": "p@tchwork.com"
  3765. },
  3766. {
  3767. "name": "Symfony Community",
  3768. "homepage": "https://symfony.com/contributors"
  3769. }
  3770. ],
  3771. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3772. "homepage": "https://symfony.com",
  3773. "keywords": [
  3774. "compatibility",
  3775. "polyfill",
  3776. "portable",
  3777. "shim"
  3778. ],
  3779. "support": {
  3780. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  3781. },
  3782. "funding": [
  3783. {
  3784. "url": "https://symfony.com/sponsor",
  3785. "type": "custom"
  3786. },
  3787. {
  3788. "url": "https://github.com/fabpot",
  3789. "type": "github"
  3790. },
  3791. {
  3792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3793. "type": "tidelift"
  3794. }
  3795. ],
  3796. "time": "2020-10-23T14:02:19+00:00"
  3797. },
  3798. {
  3799. "name": "symfony/polyfill-php72",
  3800. "version": "v1.26.0",
  3801. "source": {
  3802. "type": "git",
  3803. "url": "https://github.com/symfony/polyfill-php72.git",
  3804. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  3805. },
  3806. "dist": {
  3807. "type": "zip",
  3808. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  3809. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  3810. "shasum": "",
  3811. "mirrors": [
  3812. {
  3813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3814. "preferred": true
  3815. }
  3816. ]
  3817. },
  3818. "require": {
  3819. "php": ">=7.1"
  3820. },
  3821. "type": "library",
  3822. "extra": {
  3823. "branch-alias": {
  3824. "dev-main": "1.26-dev"
  3825. },
  3826. "thanks": {
  3827. "name": "symfony/polyfill",
  3828. "url": "https://github.com/symfony/polyfill"
  3829. }
  3830. },
  3831. "autoload": {
  3832. "files": [
  3833. "bootstrap.php"
  3834. ],
  3835. "psr-4": {
  3836. "Symfony\\Polyfill\\Php72\\": ""
  3837. }
  3838. },
  3839. "notification-url": "https://packagist.org/downloads/",
  3840. "license": [
  3841. "MIT"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "Nicolas Grekas",
  3846. "email": "p@tchwork.com"
  3847. },
  3848. {
  3849. "name": "Symfony Community",
  3850. "homepage": "https://symfony.com/contributors"
  3851. }
  3852. ],
  3853. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3854. "homepage": "https://symfony.com",
  3855. "keywords": [
  3856. "compatibility",
  3857. "polyfill",
  3858. "portable",
  3859. "shim"
  3860. ],
  3861. "support": {
  3862. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  3863. },
  3864. "funding": [
  3865. {
  3866. "url": "https://symfony.com/sponsor",
  3867. "type": "custom"
  3868. },
  3869. {
  3870. "url": "https://github.com/fabpot",
  3871. "type": "github"
  3872. },
  3873. {
  3874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3875. "type": "tidelift"
  3876. }
  3877. ],
  3878. "time": "2022-05-24T11:49:31+00:00"
  3879. },
  3880. {
  3881. "name": "symfony/polyfill-php73",
  3882. "version": "v1.26.0",
  3883. "source": {
  3884. "type": "git",
  3885. "url": "https://github.com/symfony/polyfill-php73.git",
  3886. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  3887. },
  3888. "dist": {
  3889. "type": "zip",
  3890. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3891. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  3892. "shasum": "",
  3893. "mirrors": [
  3894. {
  3895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3896. "preferred": true
  3897. }
  3898. ]
  3899. },
  3900. "require": {
  3901. "php": ">=7.1"
  3902. },
  3903. "type": "library",
  3904. "extra": {
  3905. "branch-alias": {
  3906. "dev-main": "1.26-dev"
  3907. },
  3908. "thanks": {
  3909. "name": "symfony/polyfill",
  3910. "url": "https://github.com/symfony/polyfill"
  3911. }
  3912. },
  3913. "autoload": {
  3914. "files": [
  3915. "bootstrap.php"
  3916. ],
  3917. "psr-4": {
  3918. "Symfony\\Polyfill\\Php73\\": ""
  3919. },
  3920. "classmap": [
  3921. "Resources/stubs"
  3922. ]
  3923. },
  3924. "notification-url": "https://packagist.org/downloads/",
  3925. "license": [
  3926. "MIT"
  3927. ],
  3928. "authors": [
  3929. {
  3930. "name": "Nicolas Grekas",
  3931. "email": "p@tchwork.com"
  3932. },
  3933. {
  3934. "name": "Symfony Community",
  3935. "homepage": "https://symfony.com/contributors"
  3936. }
  3937. ],
  3938. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3939. "homepage": "https://symfony.com",
  3940. "keywords": [
  3941. "compatibility",
  3942. "polyfill",
  3943. "portable",
  3944. "shim"
  3945. ],
  3946. "support": {
  3947. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  3948. },
  3949. "funding": [
  3950. {
  3951. "url": "https://symfony.com/sponsor",
  3952. "type": "custom"
  3953. },
  3954. {
  3955. "url": "https://github.com/fabpot",
  3956. "type": "github"
  3957. },
  3958. {
  3959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3960. "type": "tidelift"
  3961. }
  3962. ],
  3963. "time": "2022-05-24T11:49:31+00:00"
  3964. },
  3965. {
  3966. "name": "symfony/polyfill-php80",
  3967. "version": "v1.26.0",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://github.com/symfony/polyfill-php80.git",
  3971. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3976. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  3977. "shasum": "",
  3978. "mirrors": [
  3979. {
  3980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3981. "preferred": true
  3982. }
  3983. ]
  3984. },
  3985. "require": {
  3986. "php": ">=7.1"
  3987. },
  3988. "type": "library",
  3989. "extra": {
  3990. "branch-alias": {
  3991. "dev-main": "1.26-dev"
  3992. },
  3993. "thanks": {
  3994. "name": "symfony/polyfill",
  3995. "url": "https://github.com/symfony/polyfill"
  3996. }
  3997. },
  3998. "autoload": {
  3999. "files": [
  4000. "bootstrap.php"
  4001. ],
  4002. "psr-4": {
  4003. "Symfony\\Polyfill\\Php80\\": ""
  4004. },
  4005. "classmap": [
  4006. "Resources/stubs"
  4007. ]
  4008. },
  4009. "notification-url": "https://packagist.org/downloads/",
  4010. "license": [
  4011. "MIT"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "Ion Bazan",
  4016. "email": "ion.bazan@gmail.com"
  4017. },
  4018. {
  4019. "name": "Nicolas Grekas",
  4020. "email": "p@tchwork.com"
  4021. },
  4022. {
  4023. "name": "Symfony Community",
  4024. "homepage": "https://symfony.com/contributors"
  4025. }
  4026. ],
  4027. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4028. "homepage": "https://symfony.com",
  4029. "keywords": [
  4030. "compatibility",
  4031. "polyfill",
  4032. "portable",
  4033. "shim"
  4034. ],
  4035. "support": {
  4036. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  4037. },
  4038. "funding": [
  4039. {
  4040. "url": "https://symfony.com/sponsor",
  4041. "type": "custom"
  4042. },
  4043. {
  4044. "url": "https://github.com/fabpot",
  4045. "type": "github"
  4046. },
  4047. {
  4048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4049. "type": "tidelift"
  4050. }
  4051. ],
  4052. "time": "2022-05-10T07:21:04+00:00"
  4053. },
  4054. {
  4055. "name": "symfony/polyfill-php81",
  4056. "version": "v1.26.0",
  4057. "source": {
  4058. "type": "git",
  4059. "url": "https://github.com/symfony/polyfill-php81.git",
  4060. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  4061. },
  4062. "dist": {
  4063. "type": "zip",
  4064. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  4065. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  4066. "shasum": "",
  4067. "mirrors": [
  4068. {
  4069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4070. "preferred": true
  4071. }
  4072. ]
  4073. },
  4074. "require": {
  4075. "php": ">=7.1"
  4076. },
  4077. "type": "library",
  4078. "extra": {
  4079. "branch-alias": {
  4080. "dev-main": "1.26-dev"
  4081. },
  4082. "thanks": {
  4083. "name": "symfony/polyfill",
  4084. "url": "https://github.com/symfony/polyfill"
  4085. }
  4086. },
  4087. "autoload": {
  4088. "files": [
  4089. "bootstrap.php"
  4090. ],
  4091. "psr-4": {
  4092. "Symfony\\Polyfill\\Php81\\": ""
  4093. },
  4094. "classmap": [
  4095. "Resources/stubs"
  4096. ]
  4097. },
  4098. "notification-url": "https://packagist.org/downloads/",
  4099. "license": [
  4100. "MIT"
  4101. ],
  4102. "authors": [
  4103. {
  4104. "name": "Nicolas Grekas",
  4105. "email": "p@tchwork.com"
  4106. },
  4107. {
  4108. "name": "Symfony Community",
  4109. "homepage": "https://symfony.com/contributors"
  4110. }
  4111. ],
  4112. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  4113. "homepage": "https://symfony.com",
  4114. "keywords": [
  4115. "compatibility",
  4116. "polyfill",
  4117. "portable",
  4118. "shim"
  4119. ],
  4120. "support": {
  4121. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  4122. },
  4123. "funding": [
  4124. {
  4125. "url": "https://symfony.com/sponsor",
  4126. "type": "custom"
  4127. },
  4128. {
  4129. "url": "https://github.com/fabpot",
  4130. "type": "github"
  4131. },
  4132. {
  4133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4134. "type": "tidelift"
  4135. }
  4136. ],
  4137. "time": "2022-05-24T11:49:31+00:00"
  4138. },
  4139. {
  4140. "name": "symfony/process",
  4141. "version": "v5.4.8",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/symfony/process.git",
  4145. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  4150. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  4151. "shasum": "",
  4152. "mirrors": [
  4153. {
  4154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4155. "preferred": true
  4156. }
  4157. ]
  4158. },
  4159. "require": {
  4160. "php": ">=7.2.5",
  4161. "symfony/polyfill-php80": "^1.16"
  4162. },
  4163. "type": "library",
  4164. "autoload": {
  4165. "psr-4": {
  4166. "Symfony\\Component\\Process\\": ""
  4167. },
  4168. "exclude-from-classmap": [
  4169. "/Tests/"
  4170. ]
  4171. },
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "MIT"
  4175. ],
  4176. "authors": [
  4177. {
  4178. "name": "Fabien Potencier",
  4179. "email": "fabien@symfony.com"
  4180. },
  4181. {
  4182. "name": "Symfony Community",
  4183. "homepage": "https://symfony.com/contributors"
  4184. }
  4185. ],
  4186. "description": "Executes commands in sub-processes",
  4187. "homepage": "https://symfony.com",
  4188. "support": {
  4189. "source": "https://github.com/symfony/process/tree/v5.4.8"
  4190. },
  4191. "funding": [
  4192. {
  4193. "url": "https://symfony.com/sponsor",
  4194. "type": "custom"
  4195. },
  4196. {
  4197. "url": "https://github.com/fabpot",
  4198. "type": "github"
  4199. },
  4200. {
  4201. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4202. "type": "tidelift"
  4203. }
  4204. ],
  4205. "time": "2022-04-08T05:07:18+00:00"
  4206. },
  4207. {
  4208. "name": "symfony/routing",
  4209. "version": "v5.4.8",
  4210. "source": {
  4211. "type": "git",
  4212. "url": "https://github.com/symfony/routing.git",
  4213. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  4214. },
  4215. "dist": {
  4216. "type": "zip",
  4217. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  4218. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  4219. "shasum": "",
  4220. "mirrors": [
  4221. {
  4222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4223. "preferred": true
  4224. }
  4225. ]
  4226. },
  4227. "require": {
  4228. "php": ">=7.2.5",
  4229. "symfony/deprecation-contracts": "^2.1|^3",
  4230. "symfony/polyfill-php80": "^1.16"
  4231. },
  4232. "conflict": {
  4233. "doctrine/annotations": "<1.12",
  4234. "symfony/config": "<5.3",
  4235. "symfony/dependency-injection": "<4.4",
  4236. "symfony/yaml": "<4.4"
  4237. },
  4238. "require-dev": {
  4239. "doctrine/annotations": "^1.12",
  4240. "psr/log": "^1|^2|^3",
  4241. "symfony/config": "^5.3|^6.0",
  4242. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4243. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4244. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  4245. "symfony/yaml": "^4.4|^5.0|^6.0"
  4246. },
  4247. "suggest": {
  4248. "symfony/config": "For using the all-in-one router or any loader",
  4249. "symfony/expression-language": "For using expression matching",
  4250. "symfony/http-foundation": "For using a Symfony Request object",
  4251. "symfony/yaml": "For using the YAML loader"
  4252. },
  4253. "type": "library",
  4254. "autoload": {
  4255. "psr-4": {
  4256. "Symfony\\Component\\Routing\\": ""
  4257. },
  4258. "exclude-from-classmap": [
  4259. "/Tests/"
  4260. ]
  4261. },
  4262. "notification-url": "https://packagist.org/downloads/",
  4263. "license": [
  4264. "MIT"
  4265. ],
  4266. "authors": [
  4267. {
  4268. "name": "Fabien Potencier",
  4269. "email": "fabien@symfony.com"
  4270. },
  4271. {
  4272. "name": "Symfony Community",
  4273. "homepage": "https://symfony.com/contributors"
  4274. }
  4275. ],
  4276. "description": "Maps an HTTP request to a set of configuration variables",
  4277. "homepage": "https://symfony.com",
  4278. "keywords": [
  4279. "router",
  4280. "routing",
  4281. "uri",
  4282. "url"
  4283. ],
  4284. "support": {
  4285. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  4286. },
  4287. "funding": [
  4288. {
  4289. "url": "https://symfony.com/sponsor",
  4290. "type": "custom"
  4291. },
  4292. {
  4293. "url": "https://github.com/fabpot",
  4294. "type": "github"
  4295. },
  4296. {
  4297. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4298. "type": "tidelift"
  4299. }
  4300. ],
  4301. "time": "2022-04-18T21:45:37+00:00"
  4302. },
  4303. {
  4304. "name": "symfony/service-contracts",
  4305. "version": "v2.5.2",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://github.com/symfony/service-contracts.git",
  4309. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4314. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  4315. "shasum": "",
  4316. "mirrors": [
  4317. {
  4318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4319. "preferred": true
  4320. }
  4321. ]
  4322. },
  4323. "require": {
  4324. "php": ">=7.2.5",
  4325. "psr/container": "^1.1",
  4326. "symfony/deprecation-contracts": "^2.1|^3"
  4327. },
  4328. "conflict": {
  4329. "ext-psr": "<1.1|>=2"
  4330. },
  4331. "suggest": {
  4332. "symfony/service-implementation": ""
  4333. },
  4334. "type": "library",
  4335. "extra": {
  4336. "branch-alias": {
  4337. "dev-main": "2.5-dev"
  4338. },
  4339. "thanks": {
  4340. "name": "symfony/contracts",
  4341. "url": "https://github.com/symfony/contracts"
  4342. }
  4343. },
  4344. "autoload": {
  4345. "psr-4": {
  4346. "Symfony\\Contracts\\Service\\": ""
  4347. }
  4348. },
  4349. "notification-url": "https://packagist.org/downloads/",
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "Nicolas Grekas",
  4356. "email": "p@tchwork.com"
  4357. },
  4358. {
  4359. "name": "Symfony Community",
  4360. "homepage": "https://symfony.com/contributors"
  4361. }
  4362. ],
  4363. "description": "Generic abstractions related to writing services",
  4364. "homepage": "https://symfony.com",
  4365. "keywords": [
  4366. "abstractions",
  4367. "contracts",
  4368. "decoupling",
  4369. "interfaces",
  4370. "interoperability",
  4371. "standards"
  4372. ],
  4373. "support": {
  4374. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  4375. },
  4376. "funding": [
  4377. {
  4378. "url": "https://symfony.com/sponsor",
  4379. "type": "custom"
  4380. },
  4381. {
  4382. "url": "https://github.com/fabpot",
  4383. "type": "github"
  4384. },
  4385. {
  4386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4387. "type": "tidelift"
  4388. }
  4389. ],
  4390. "time": "2022-05-30T19:17:29+00:00"
  4391. },
  4392. {
  4393. "name": "symfony/string",
  4394. "version": "v5.4.10",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/symfony/string.git",
  4398. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
  4403. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
  4404. "shasum": "",
  4405. "mirrors": [
  4406. {
  4407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4408. "preferred": true
  4409. }
  4410. ]
  4411. },
  4412. "require": {
  4413. "php": ">=7.2.5",
  4414. "symfony/polyfill-ctype": "~1.8",
  4415. "symfony/polyfill-intl-grapheme": "~1.0",
  4416. "symfony/polyfill-intl-normalizer": "~1.0",
  4417. "symfony/polyfill-mbstring": "~1.0",
  4418. "symfony/polyfill-php80": "~1.15"
  4419. },
  4420. "conflict": {
  4421. "symfony/translation-contracts": ">=3.0"
  4422. },
  4423. "require-dev": {
  4424. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4425. "symfony/http-client": "^4.4|^5.0|^6.0",
  4426. "symfony/translation-contracts": "^1.1|^2",
  4427. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4428. },
  4429. "type": "library",
  4430. "autoload": {
  4431. "files": [
  4432. "Resources/functions.php"
  4433. ],
  4434. "psr-4": {
  4435. "Symfony\\Component\\String\\": ""
  4436. },
  4437. "exclude-from-classmap": [
  4438. "/Tests/"
  4439. ]
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "Nicolas Grekas",
  4448. "email": "p@tchwork.com"
  4449. },
  4450. {
  4451. "name": "Symfony Community",
  4452. "homepage": "https://symfony.com/contributors"
  4453. }
  4454. ],
  4455. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4456. "homepage": "https://symfony.com",
  4457. "keywords": [
  4458. "grapheme",
  4459. "i18n",
  4460. "string",
  4461. "unicode",
  4462. "utf-8",
  4463. "utf8"
  4464. ],
  4465. "support": {
  4466. "source": "https://github.com/symfony/string/tree/v5.4.10"
  4467. },
  4468. "funding": [
  4469. {
  4470. "url": "https://symfony.com/sponsor",
  4471. "type": "custom"
  4472. },
  4473. {
  4474. "url": "https://github.com/fabpot",
  4475. "type": "github"
  4476. },
  4477. {
  4478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4479. "type": "tidelift"
  4480. }
  4481. ],
  4482. "time": "2022-06-26T15:57:47+00:00"
  4483. },
  4484. {
  4485. "name": "symfony/translation",
  4486. "version": "v5.4.9",
  4487. "source": {
  4488. "type": "git",
  4489. "url": "https://github.com/symfony/translation.git",
  4490. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
  4491. },
  4492. "dist": {
  4493. "type": "zip",
  4494. "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
  4495. "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
  4496. "shasum": "",
  4497. "mirrors": [
  4498. {
  4499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4500. "preferred": true
  4501. }
  4502. ]
  4503. },
  4504. "require": {
  4505. "php": ">=7.2.5",
  4506. "symfony/deprecation-contracts": "^2.1|^3",
  4507. "symfony/polyfill-mbstring": "~1.0",
  4508. "symfony/polyfill-php80": "^1.16",
  4509. "symfony/translation-contracts": "^2.3"
  4510. },
  4511. "conflict": {
  4512. "symfony/config": "<4.4",
  4513. "symfony/console": "<5.3",
  4514. "symfony/dependency-injection": "<5.0",
  4515. "symfony/http-kernel": "<5.0",
  4516. "symfony/twig-bundle": "<5.0",
  4517. "symfony/yaml": "<4.4"
  4518. },
  4519. "provide": {
  4520. "symfony/translation-implementation": "2.3"
  4521. },
  4522. "require-dev": {
  4523. "psr/log": "^1|^2|^3",
  4524. "symfony/config": "^4.4|^5.0|^6.0",
  4525. "symfony/console": "^5.4|^6.0",
  4526. "symfony/dependency-injection": "^5.0|^6.0",
  4527. "symfony/finder": "^4.4|^5.0|^6.0",
  4528. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4529. "symfony/http-kernel": "^5.0|^6.0",
  4530. "symfony/intl": "^4.4|^5.0|^6.0",
  4531. "symfony/polyfill-intl-icu": "^1.21",
  4532. "symfony/service-contracts": "^1.1.2|^2|^3",
  4533. "symfony/yaml": "^4.4|^5.0|^6.0"
  4534. },
  4535. "suggest": {
  4536. "psr/log-implementation": "To use logging capability in translator",
  4537. "symfony/config": "",
  4538. "symfony/yaml": ""
  4539. },
  4540. "type": "library",
  4541. "autoload": {
  4542. "files": [
  4543. "Resources/functions.php"
  4544. ],
  4545. "psr-4": {
  4546. "Symfony\\Component\\Translation\\": ""
  4547. },
  4548. "exclude-from-classmap": [
  4549. "/Tests/"
  4550. ]
  4551. },
  4552. "notification-url": "https://packagist.org/downloads/",
  4553. "license": [
  4554. "MIT"
  4555. ],
  4556. "authors": [
  4557. {
  4558. "name": "Fabien Potencier",
  4559. "email": "fabien@symfony.com"
  4560. },
  4561. {
  4562. "name": "Symfony Community",
  4563. "homepage": "https://symfony.com/contributors"
  4564. }
  4565. ],
  4566. "description": "Provides tools to internationalize your application",
  4567. "homepage": "https://symfony.com",
  4568. "support": {
  4569. "source": "https://github.com/symfony/translation/tree/v5.4.9"
  4570. },
  4571. "funding": [
  4572. {
  4573. "url": "https://symfony.com/sponsor",
  4574. "type": "custom"
  4575. },
  4576. {
  4577. "url": "https://github.com/fabpot",
  4578. "type": "github"
  4579. },
  4580. {
  4581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4582. "type": "tidelift"
  4583. }
  4584. ],
  4585. "time": "2022-05-06T12:33:37+00:00"
  4586. },
  4587. {
  4588. "name": "symfony/translation-contracts",
  4589. "version": "v2.5.2",
  4590. "source": {
  4591. "type": "git",
  4592. "url": "https://github.com/symfony/translation-contracts.git",
  4593. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  4594. },
  4595. "dist": {
  4596. "type": "zip",
  4597. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4598. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  4599. "shasum": "",
  4600. "mirrors": [
  4601. {
  4602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4603. "preferred": true
  4604. }
  4605. ]
  4606. },
  4607. "require": {
  4608. "php": ">=7.2.5"
  4609. },
  4610. "suggest": {
  4611. "symfony/translation-implementation": ""
  4612. },
  4613. "type": "library",
  4614. "extra": {
  4615. "branch-alias": {
  4616. "dev-main": "2.5-dev"
  4617. },
  4618. "thanks": {
  4619. "name": "symfony/contracts",
  4620. "url": "https://github.com/symfony/contracts"
  4621. }
  4622. },
  4623. "autoload": {
  4624. "psr-4": {
  4625. "Symfony\\Contracts\\Translation\\": ""
  4626. }
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "MIT"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "Nicolas Grekas",
  4635. "email": "p@tchwork.com"
  4636. },
  4637. {
  4638. "name": "Symfony Community",
  4639. "homepage": "https://symfony.com/contributors"
  4640. }
  4641. ],
  4642. "description": "Generic abstractions related to translation",
  4643. "homepage": "https://symfony.com",
  4644. "keywords": [
  4645. "abstractions",
  4646. "contracts",
  4647. "decoupling",
  4648. "interfaces",
  4649. "interoperability",
  4650. "standards"
  4651. ],
  4652. "support": {
  4653. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  4654. },
  4655. "funding": [
  4656. {
  4657. "url": "https://symfony.com/sponsor",
  4658. "type": "custom"
  4659. },
  4660. {
  4661. "url": "https://github.com/fabpot",
  4662. "type": "github"
  4663. },
  4664. {
  4665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4666. "type": "tidelift"
  4667. }
  4668. ],
  4669. "time": "2022-06-27T16:58:25+00:00"
  4670. },
  4671. {
  4672. "name": "symfony/var-dumper",
  4673. "version": "v5.4.9",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/symfony/var-dumper.git",
  4677. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  4682. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  4683. "shasum": "",
  4684. "mirrors": [
  4685. {
  4686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4687. "preferred": true
  4688. }
  4689. ]
  4690. },
  4691. "require": {
  4692. "php": ">=7.2.5",
  4693. "symfony/polyfill-mbstring": "~1.0",
  4694. "symfony/polyfill-php80": "^1.16"
  4695. },
  4696. "conflict": {
  4697. "phpunit/phpunit": "<5.4.3",
  4698. "symfony/console": "<4.4"
  4699. },
  4700. "require-dev": {
  4701. "ext-iconv": "*",
  4702. "symfony/console": "^4.4|^5.0|^6.0",
  4703. "symfony/process": "^4.4|^5.0|^6.0",
  4704. "symfony/uid": "^5.1|^6.0",
  4705. "twig/twig": "^2.13|^3.0.4"
  4706. },
  4707. "suggest": {
  4708. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4709. "ext-intl": "To show region name in time zone dump",
  4710. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4711. },
  4712. "bin": [
  4713. "Resources/bin/var-dump-server"
  4714. ],
  4715. "type": "library",
  4716. "autoload": {
  4717. "files": [
  4718. "Resources/functions/dump.php"
  4719. ],
  4720. "psr-4": {
  4721. "Symfony\\Component\\VarDumper\\": ""
  4722. },
  4723. "exclude-from-classmap": [
  4724. "/Tests/"
  4725. ]
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Nicolas Grekas",
  4734. "email": "p@tchwork.com"
  4735. },
  4736. {
  4737. "name": "Symfony Community",
  4738. "homepage": "https://symfony.com/contributors"
  4739. }
  4740. ],
  4741. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4742. "homepage": "https://symfony.com",
  4743. "keywords": [
  4744. "debug",
  4745. "dump"
  4746. ],
  4747. "support": {
  4748. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  4749. },
  4750. "funding": [
  4751. {
  4752. "url": "https://symfony.com/sponsor",
  4753. "type": "custom"
  4754. },
  4755. {
  4756. "url": "https://github.com/fabpot",
  4757. "type": "github"
  4758. },
  4759. {
  4760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4761. "type": "tidelift"
  4762. }
  4763. ],
  4764. "time": "2022-05-21T10:24:18+00:00"
  4765. },
  4766. {
  4767. "name": "tymon/jwt-auth",
  4768. "version": "1.0.2",
  4769. "source": {
  4770. "type": "git",
  4771. "url": "https://github.com/tymondesigns/jwt-auth.git",
  4772. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  4773. },
  4774. "dist": {
  4775. "type": "zip",
  4776. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  4777. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  4778. "shasum": "",
  4779. "mirrors": [
  4780. {
  4781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4782. "preferred": true
  4783. }
  4784. ]
  4785. },
  4786. "require": {
  4787. "illuminate/auth": "^5.2|^6|^7|^8",
  4788. "illuminate/contracts": "^5.2|^6|^7|^8",
  4789. "illuminate/http": "^5.2|^6|^7|^8",
  4790. "illuminate/support": "^5.2|^6|^7|^8",
  4791. "lcobucci/jwt": "<3.4",
  4792. "namshi/jose": "^7.0",
  4793. "nesbot/carbon": "^1.0|^2.0",
  4794. "php": "^5.5.9|^7.0"
  4795. },
  4796. "require-dev": {
  4797. "illuminate/console": "^5.2|^6|^7|^8",
  4798. "illuminate/database": "^5.2|^6|^7|^8",
  4799. "illuminate/routing": "^5.2|^6|^7|^8",
  4800. "mockery/mockery": ">=0.9.9",
  4801. "phpunit/phpunit": "~4.8|~6.0"
  4802. },
  4803. "type": "library",
  4804. "extra": {
  4805. "branch-alias": {
  4806. "dev-develop": "1.0-dev"
  4807. },
  4808. "laravel": {
  4809. "aliases": {
  4810. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  4811. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  4812. },
  4813. "providers": [
  4814. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  4815. ]
  4816. }
  4817. },
  4818. "autoload": {
  4819. "psr-4": {
  4820. "Tymon\\JWTAuth\\": "src/"
  4821. }
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "authors": [
  4828. {
  4829. "name": "Sean Tymon",
  4830. "email": "tymon148@gmail.com",
  4831. "homepage": "https://tymon.xyz",
  4832. "role": "Developer"
  4833. }
  4834. ],
  4835. "description": "JSON Web Token Authentication for Laravel and Lumen",
  4836. "homepage": "https://github.com/tymondesigns/jwt-auth",
  4837. "keywords": [
  4838. "Authentication",
  4839. "JSON Web Token",
  4840. "auth",
  4841. "jwt",
  4842. "laravel"
  4843. ],
  4844. "support": {
  4845. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  4846. "source": "https://github.com/tymondesigns/jwt-auth"
  4847. },
  4848. "funding": [
  4849. {
  4850. "url": "https://www.patreon.com/seantymon",
  4851. "type": "patreon"
  4852. }
  4853. ],
  4854. "time": "2020-11-27T12:32:42+00:00"
  4855. },
  4856. {
  4857. "name": "voku/portable-ascii",
  4858. "version": "1.6.1",
  4859. "source": {
  4860. "type": "git",
  4861. "url": "https://github.com/voku/portable-ascii.git",
  4862. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  4863. },
  4864. "dist": {
  4865. "type": "zip",
  4866. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  4867. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  4868. "shasum": "",
  4869. "mirrors": [
  4870. {
  4871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4872. "preferred": true
  4873. }
  4874. ]
  4875. },
  4876. "require": {
  4877. "php": ">=7.0.0"
  4878. },
  4879. "require-dev": {
  4880. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4881. },
  4882. "suggest": {
  4883. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4884. },
  4885. "type": "library",
  4886. "autoload": {
  4887. "psr-4": {
  4888. "voku\\": "src/voku/"
  4889. }
  4890. },
  4891. "notification-url": "https://packagist.org/downloads/",
  4892. "license": [
  4893. "MIT"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "Lars Moelleken",
  4898. "homepage": "http://www.moelleken.org/"
  4899. }
  4900. ],
  4901. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4902. "homepage": "https://github.com/voku/portable-ascii",
  4903. "keywords": [
  4904. "ascii",
  4905. "clean",
  4906. "php"
  4907. ],
  4908. "support": {
  4909. "issues": "https://github.com/voku/portable-ascii/issues",
  4910. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  4911. },
  4912. "funding": [
  4913. {
  4914. "url": "https://www.paypal.me/moelleken",
  4915. "type": "custom"
  4916. },
  4917. {
  4918. "url": "https://github.com/voku",
  4919. "type": "github"
  4920. },
  4921. {
  4922. "url": "https://opencollective.com/portable-ascii",
  4923. "type": "open_collective"
  4924. },
  4925. {
  4926. "url": "https://www.patreon.com/voku",
  4927. "type": "patreon"
  4928. },
  4929. {
  4930. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  4931. "type": "tidelift"
  4932. }
  4933. ],
  4934. "time": "2022-01-24T18:55:24+00:00"
  4935. },
  4936. {
  4937. "name": "webmozart/assert",
  4938. "version": "1.11.0",
  4939. "source": {
  4940. "type": "git",
  4941. "url": "https://github.com/webmozarts/assert.git",
  4942. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  4943. },
  4944. "dist": {
  4945. "type": "zip",
  4946. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  4947. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  4948. "shasum": "",
  4949. "mirrors": [
  4950. {
  4951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4952. "preferred": true
  4953. }
  4954. ]
  4955. },
  4956. "require": {
  4957. "ext-ctype": "*",
  4958. "php": "^7.2 || ^8.0"
  4959. },
  4960. "conflict": {
  4961. "phpstan/phpstan": "<0.12.20",
  4962. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4963. },
  4964. "require-dev": {
  4965. "phpunit/phpunit": "^8.5.13"
  4966. },
  4967. "type": "library",
  4968. "extra": {
  4969. "branch-alias": {
  4970. "dev-master": "1.10-dev"
  4971. }
  4972. },
  4973. "autoload": {
  4974. "psr-4": {
  4975. "Webmozart\\Assert\\": "src/"
  4976. }
  4977. },
  4978. "notification-url": "https://packagist.org/downloads/",
  4979. "license": [
  4980. "MIT"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "Bernhard Schussek",
  4985. "email": "bschussek@gmail.com"
  4986. }
  4987. ],
  4988. "description": "Assertions to validate method input/output with nice error messages.",
  4989. "keywords": [
  4990. "assert",
  4991. "check",
  4992. "validate"
  4993. ],
  4994. "support": {
  4995. "issues": "https://github.com/webmozarts/assert/issues",
  4996. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  4997. },
  4998. "time": "2022-06-03T18:03:27+00:00"
  4999. }
  5000. ],
  5001. "packages-dev": [
  5002. {
  5003. "name": "barryvdh/laravel-ide-helper",
  5004. "version": "v2.12.3",
  5005. "source": {
  5006. "type": "git",
  5007. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  5008. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  5009. },
  5010. "dist": {
  5011. "type": "zip",
  5012. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  5013. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  5014. "shasum": "",
  5015. "mirrors": [
  5016. {
  5017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5018. "preferred": true
  5019. }
  5020. ]
  5021. },
  5022. "require": {
  5023. "barryvdh/reflection-docblock": "^2.0.6",
  5024. "composer/pcre": "^1 || ^2 || ^3",
  5025. "doctrine/dbal": "^2.6 || ^3",
  5026. "ext-json": "*",
  5027. "illuminate/console": "^8 || ^9",
  5028. "illuminate/filesystem": "^8 || ^9",
  5029. "illuminate/support": "^8 || ^9",
  5030. "nikic/php-parser": "^4.7",
  5031. "php": "^7.3 || ^8.0",
  5032. "phpdocumentor/type-resolver": "^1.1.0"
  5033. },
  5034. "require-dev": {
  5035. "ext-pdo_sqlite": "*",
  5036. "friendsofphp/php-cs-fixer": "^2",
  5037. "illuminate/config": "^8 || ^9",
  5038. "illuminate/view": "^8 || ^9",
  5039. "mockery/mockery": "^1.4",
  5040. "orchestra/testbench": "^6 || ^7",
  5041. "phpunit/phpunit": "^8.5 || ^9",
  5042. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  5043. "vimeo/psalm": "^3.12"
  5044. },
  5045. "suggest": {
  5046. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  5047. },
  5048. "type": "library",
  5049. "extra": {
  5050. "branch-alias": {
  5051. "dev-master": "2.12-dev"
  5052. },
  5053. "laravel": {
  5054. "providers": [
  5055. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  5056. ]
  5057. }
  5058. },
  5059. "autoload": {
  5060. "psr-4": {
  5061. "Barryvdh\\LaravelIdeHelper\\": "src"
  5062. }
  5063. },
  5064. "notification-url": "https://packagist.org/downloads/",
  5065. "license": [
  5066. "MIT"
  5067. ],
  5068. "authors": [
  5069. {
  5070. "name": "Barry vd. Heuvel",
  5071. "email": "barryvdh@gmail.com"
  5072. }
  5073. ],
  5074. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  5075. "keywords": [
  5076. "autocomplete",
  5077. "codeintel",
  5078. "helper",
  5079. "ide",
  5080. "laravel",
  5081. "netbeans",
  5082. "phpdoc",
  5083. "phpstorm",
  5084. "sublime"
  5085. ],
  5086. "support": {
  5087. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  5088. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  5089. },
  5090. "funding": [
  5091. {
  5092. "url": "https://fruitcake.nl",
  5093. "type": "custom"
  5094. },
  5095. {
  5096. "url": "https://github.com/barryvdh",
  5097. "type": "github"
  5098. }
  5099. ],
  5100. "time": "2022-03-06T14:33:42+00:00"
  5101. },
  5102. {
  5103. "name": "barryvdh/reflection-docblock",
  5104. "version": "v2.0.6",
  5105. "source": {
  5106. "type": "git",
  5107. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  5108. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  5109. },
  5110. "dist": {
  5111. "type": "zip",
  5112. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  5113. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  5114. "shasum": "",
  5115. "mirrors": [
  5116. {
  5117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5118. "preferred": true
  5119. }
  5120. ]
  5121. },
  5122. "require": {
  5123. "php": ">=5.3.3"
  5124. },
  5125. "require-dev": {
  5126. "phpunit/phpunit": "~4.0,<4.5"
  5127. },
  5128. "suggest": {
  5129. "dflydev/markdown": "~1.0",
  5130. "erusev/parsedown": "~1.0"
  5131. },
  5132. "type": "library",
  5133. "extra": {
  5134. "branch-alias": {
  5135. "dev-master": "2.0.x-dev"
  5136. }
  5137. },
  5138. "autoload": {
  5139. "psr-0": {
  5140. "Barryvdh": [
  5141. "src/"
  5142. ]
  5143. }
  5144. },
  5145. "notification-url": "https://packagist.org/downloads/",
  5146. "license": [
  5147. "MIT"
  5148. ],
  5149. "authors": [
  5150. {
  5151. "name": "Mike van Riel",
  5152. "email": "mike.vanriel@naenius.com"
  5153. }
  5154. ],
  5155. "support": {
  5156. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  5157. },
  5158. "time": "2018-12-13T10:34:14+00:00"
  5159. },
  5160. {
  5161. "name": "composer/pcre",
  5162. "version": "3.0.0",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/composer/pcre.git",
  5166. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  5171. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  5172. "shasum": "",
  5173. "mirrors": [
  5174. {
  5175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5176. "preferred": true
  5177. }
  5178. ]
  5179. },
  5180. "require": {
  5181. "php": "^7.4 || ^8.0"
  5182. },
  5183. "require-dev": {
  5184. "phpstan/phpstan": "^1.3",
  5185. "phpstan/phpstan-strict-rules": "^1.1",
  5186. "symfony/phpunit-bridge": "^5"
  5187. },
  5188. "type": "library",
  5189. "extra": {
  5190. "branch-alias": {
  5191. "dev-main": "3.x-dev"
  5192. }
  5193. },
  5194. "autoload": {
  5195. "psr-4": {
  5196. "Composer\\Pcre\\": "src"
  5197. }
  5198. },
  5199. "notification-url": "https://packagist.org/downloads/",
  5200. "license": [
  5201. "MIT"
  5202. ],
  5203. "authors": [
  5204. {
  5205. "name": "Jordi Boggiano",
  5206. "email": "j.boggiano@seld.be",
  5207. "homepage": "http://seld.be"
  5208. }
  5209. ],
  5210. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  5211. "keywords": [
  5212. "PCRE",
  5213. "preg",
  5214. "regex",
  5215. "regular expression"
  5216. ],
  5217. "support": {
  5218. "issues": "https://github.com/composer/pcre/issues",
  5219. "source": "https://github.com/composer/pcre/tree/3.0.0"
  5220. },
  5221. "funding": [
  5222. {
  5223. "url": "https://packagist.com",
  5224. "type": "custom"
  5225. },
  5226. {
  5227. "url": "https://github.com/composer",
  5228. "type": "github"
  5229. },
  5230. {
  5231. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  5232. "type": "tidelift"
  5233. }
  5234. ],
  5235. "time": "2022-02-25T20:21:48+00:00"
  5236. },
  5237. {
  5238. "name": "doctrine/cache",
  5239. "version": "2.2.0",
  5240. "source": {
  5241. "type": "git",
  5242. "url": "https://github.com/doctrine/cache.git",
  5243. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  5244. },
  5245. "dist": {
  5246. "type": "zip",
  5247. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  5248. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  5249. "shasum": "",
  5250. "mirrors": [
  5251. {
  5252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5253. "preferred": true
  5254. }
  5255. ]
  5256. },
  5257. "require": {
  5258. "php": "~7.1 || ^8.0"
  5259. },
  5260. "conflict": {
  5261. "doctrine/common": ">2.2,<2.4"
  5262. },
  5263. "require-dev": {
  5264. "cache/integration-tests": "dev-master",
  5265. "doctrine/coding-standard": "^9",
  5266. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  5267. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  5268. "symfony/cache": "^4.4 || ^5.4 || ^6",
  5269. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  5270. },
  5271. "type": "library",
  5272. "autoload": {
  5273. "psr-4": {
  5274. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  5275. }
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "MIT"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Guilherme Blanco",
  5284. "email": "guilhermeblanco@gmail.com"
  5285. },
  5286. {
  5287. "name": "Roman Borschel",
  5288. "email": "roman@code-factory.org"
  5289. },
  5290. {
  5291. "name": "Benjamin Eberlei",
  5292. "email": "kontakt@beberlei.de"
  5293. },
  5294. {
  5295. "name": "Jonathan Wage",
  5296. "email": "jonwage@gmail.com"
  5297. },
  5298. {
  5299. "name": "Johannes Schmitt",
  5300. "email": "schmittjoh@gmail.com"
  5301. }
  5302. ],
  5303. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  5304. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  5305. "keywords": [
  5306. "abstraction",
  5307. "apcu",
  5308. "cache",
  5309. "caching",
  5310. "couchdb",
  5311. "memcached",
  5312. "php",
  5313. "redis",
  5314. "xcache"
  5315. ],
  5316. "support": {
  5317. "issues": "https://github.com/doctrine/cache/issues",
  5318. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  5319. },
  5320. "funding": [
  5321. {
  5322. "url": "https://www.doctrine-project.org/sponsorship.html",
  5323. "type": "custom"
  5324. },
  5325. {
  5326. "url": "https://www.patreon.com/phpdoctrine",
  5327. "type": "patreon"
  5328. },
  5329. {
  5330. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  5331. "type": "tidelift"
  5332. }
  5333. ],
  5334. "time": "2022-05-20T20:07:39+00:00"
  5335. },
  5336. {
  5337. "name": "doctrine/dbal",
  5338. "version": "3.3.7",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://github.com/doctrine/dbal.git",
  5342. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a"
  5343. },
  5344. "dist": {
  5345. "type": "zip",
  5346. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  5347. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  5348. "shasum": "",
  5349. "mirrors": [
  5350. {
  5351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5352. "preferred": true
  5353. }
  5354. ]
  5355. },
  5356. "require": {
  5357. "composer-runtime-api": "^2",
  5358. "doctrine/cache": "^1.11|^2.0",
  5359. "doctrine/deprecations": "^0.5.3|^1",
  5360. "doctrine/event-manager": "^1.0",
  5361. "php": "^7.3 || ^8.0",
  5362. "psr/cache": "^1|^2|^3",
  5363. "psr/log": "^1|^2|^3"
  5364. },
  5365. "require-dev": {
  5366. "doctrine/coding-standard": "9.0.0",
  5367. "jetbrains/phpstorm-stubs": "2022.1",
  5368. "phpstan/phpstan": "1.7.13",
  5369. "phpstan/phpstan-strict-rules": "^1.2",
  5370. "phpunit/phpunit": "9.5.20",
  5371. "psalm/plugin-phpunit": "0.16.1",
  5372. "squizlabs/php_codesniffer": "3.7.0",
  5373. "symfony/cache": "^5.2|^6.0",
  5374. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  5375. "vimeo/psalm": "4.23.0"
  5376. },
  5377. "suggest": {
  5378. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  5379. },
  5380. "bin": [
  5381. "bin/doctrine-dbal"
  5382. ],
  5383. "type": "library",
  5384. "autoload": {
  5385. "psr-4": {
  5386. "Doctrine\\DBAL\\": "src"
  5387. }
  5388. },
  5389. "notification-url": "https://packagist.org/downloads/",
  5390. "license": [
  5391. "MIT"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "Guilherme Blanco",
  5396. "email": "guilhermeblanco@gmail.com"
  5397. },
  5398. {
  5399. "name": "Roman Borschel",
  5400. "email": "roman@code-factory.org"
  5401. },
  5402. {
  5403. "name": "Benjamin Eberlei",
  5404. "email": "kontakt@beberlei.de"
  5405. },
  5406. {
  5407. "name": "Jonathan Wage",
  5408. "email": "jonwage@gmail.com"
  5409. }
  5410. ],
  5411. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  5412. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  5413. "keywords": [
  5414. "abstraction",
  5415. "database",
  5416. "db2",
  5417. "dbal",
  5418. "mariadb",
  5419. "mssql",
  5420. "mysql",
  5421. "oci8",
  5422. "oracle",
  5423. "pdo",
  5424. "pgsql",
  5425. "postgresql",
  5426. "queryobject",
  5427. "sasql",
  5428. "sql",
  5429. "sqlite",
  5430. "sqlserver",
  5431. "sqlsrv"
  5432. ],
  5433. "support": {
  5434. "issues": "https://github.com/doctrine/dbal/issues",
  5435. "source": "https://github.com/doctrine/dbal/tree/3.3.7"
  5436. },
  5437. "funding": [
  5438. {
  5439. "url": "https://www.doctrine-project.org/sponsorship.html",
  5440. "type": "custom"
  5441. },
  5442. {
  5443. "url": "https://www.patreon.com/phpdoctrine",
  5444. "type": "patreon"
  5445. },
  5446. {
  5447. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  5448. "type": "tidelift"
  5449. }
  5450. ],
  5451. "time": "2022-06-13T21:43:03+00:00"
  5452. },
  5453. {
  5454. "name": "doctrine/deprecations",
  5455. "version": "v1.0.0",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/doctrine/deprecations.git",
  5459. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  5464. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  5465. "shasum": "",
  5466. "mirrors": [
  5467. {
  5468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5469. "preferred": true
  5470. }
  5471. ]
  5472. },
  5473. "require": {
  5474. "php": "^7.1|^8.0"
  5475. },
  5476. "require-dev": {
  5477. "doctrine/coding-standard": "^9",
  5478. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  5479. "psr/log": "^1|^2|^3"
  5480. },
  5481. "suggest": {
  5482. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  5483. },
  5484. "type": "library",
  5485. "autoload": {
  5486. "psr-4": {
  5487. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  5488. }
  5489. },
  5490. "notification-url": "https://packagist.org/downloads/",
  5491. "license": [
  5492. "MIT"
  5493. ],
  5494. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  5495. "homepage": "https://www.doctrine-project.org/",
  5496. "support": {
  5497. "issues": "https://github.com/doctrine/deprecations/issues",
  5498. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  5499. },
  5500. "time": "2022-05-02T15:47:09+00:00"
  5501. },
  5502. {
  5503. "name": "doctrine/event-manager",
  5504. "version": "1.1.1",
  5505. "source": {
  5506. "type": "git",
  5507. "url": "https://github.com/doctrine/event-manager.git",
  5508. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  5509. },
  5510. "dist": {
  5511. "type": "zip",
  5512. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  5513. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  5514. "shasum": "",
  5515. "mirrors": [
  5516. {
  5517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5518. "preferred": true
  5519. }
  5520. ]
  5521. },
  5522. "require": {
  5523. "php": "^7.1 || ^8.0"
  5524. },
  5525. "conflict": {
  5526. "doctrine/common": "<2.9@dev"
  5527. },
  5528. "require-dev": {
  5529. "doctrine/coding-standard": "^6.0",
  5530. "phpunit/phpunit": "^7.0"
  5531. },
  5532. "type": "library",
  5533. "extra": {
  5534. "branch-alias": {
  5535. "dev-master": "1.0.x-dev"
  5536. }
  5537. },
  5538. "autoload": {
  5539. "psr-4": {
  5540. "Doctrine\\Common\\": "lib/Doctrine/Common"
  5541. }
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "license": [
  5545. "MIT"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "Guilherme Blanco",
  5550. "email": "guilhermeblanco@gmail.com"
  5551. },
  5552. {
  5553. "name": "Roman Borschel",
  5554. "email": "roman@code-factory.org"
  5555. },
  5556. {
  5557. "name": "Benjamin Eberlei",
  5558. "email": "kontakt@beberlei.de"
  5559. },
  5560. {
  5561. "name": "Jonathan Wage",
  5562. "email": "jonwage@gmail.com"
  5563. },
  5564. {
  5565. "name": "Johannes Schmitt",
  5566. "email": "schmittjoh@gmail.com"
  5567. },
  5568. {
  5569. "name": "Marco Pivetta",
  5570. "email": "ocramius@gmail.com"
  5571. }
  5572. ],
  5573. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  5574. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  5575. "keywords": [
  5576. "event",
  5577. "event dispatcher",
  5578. "event manager",
  5579. "event system",
  5580. "events"
  5581. ],
  5582. "support": {
  5583. "issues": "https://github.com/doctrine/event-manager/issues",
  5584. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  5585. },
  5586. "funding": [
  5587. {
  5588. "url": "https://www.doctrine-project.org/sponsorship.html",
  5589. "type": "custom"
  5590. },
  5591. {
  5592. "url": "https://www.patreon.com/phpdoctrine",
  5593. "type": "patreon"
  5594. },
  5595. {
  5596. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  5597. "type": "tidelift"
  5598. }
  5599. ],
  5600. "time": "2020-05-29T18:28:51+00:00"
  5601. },
  5602. {
  5603. "name": "nikic/php-parser",
  5604. "version": "v4.14.0",
  5605. "source": {
  5606. "type": "git",
  5607. "url": "https://github.com/nikic/PHP-Parser.git",
  5608. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
  5609. },
  5610. "dist": {
  5611. "type": "zip",
  5612. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
  5613. "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
  5614. "shasum": "",
  5615. "mirrors": [
  5616. {
  5617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5618. "preferred": true
  5619. }
  5620. ]
  5621. },
  5622. "require": {
  5623. "ext-tokenizer": "*",
  5624. "php": ">=7.0"
  5625. },
  5626. "require-dev": {
  5627. "ircmaxell/php-yacc": "^0.0.7",
  5628. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5629. },
  5630. "bin": [
  5631. "bin/php-parse"
  5632. ],
  5633. "type": "library",
  5634. "extra": {
  5635. "branch-alias": {
  5636. "dev-master": "4.9-dev"
  5637. }
  5638. },
  5639. "autoload": {
  5640. "psr-4": {
  5641. "PhpParser\\": "lib/PhpParser"
  5642. }
  5643. },
  5644. "notification-url": "https://packagist.org/downloads/",
  5645. "license": [
  5646. "BSD-3-Clause"
  5647. ],
  5648. "authors": [
  5649. {
  5650. "name": "Nikita Popov"
  5651. }
  5652. ],
  5653. "description": "A PHP parser written in PHP",
  5654. "keywords": [
  5655. "parser",
  5656. "php"
  5657. ],
  5658. "support": {
  5659. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5660. "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
  5661. },
  5662. "time": "2022-05-31T20:59:12+00:00"
  5663. }
  5664. ],
  5665. "aliases": [],
  5666. "minimum-stability": "stable",
  5667. "stability-flags": [],
  5668. "prefer-stable": false,
  5669. "prefer-lowest": false,
  5670. "platform": [],
  5671. "platform-dev": [],
  5672. "plugin-api-version": "2.3.0"
  5673. }