composer.lock 376 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461
  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": "0569fe65bebd55bd7e10b338e8c5c98d",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  20. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  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. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  65. },
  66. "time": "2021-06-18T13:26:35+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.3",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  79. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.9.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.3"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/BenMorel",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  129. "type": "tidelift"
  130. }
  131. ],
  132. "time": "2021-08-15T20:50:18+00:00"
  133. },
  134. {
  135. "name": "cakephp/chronos",
  136. "version": "2.2.0",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/cakephp/chronos.git",
  140. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/cakephp/chronos/zipball/556e14da67307ffc2e68beeb7df0694dc8d1207d",
  145. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d",
  146. "shasum": "",
  147. "mirrors": [
  148. {
  149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  150. "preferred": true
  151. }
  152. ]
  153. },
  154. "require": {
  155. "php": ">=7.2"
  156. },
  157. "require-dev": {
  158. "cakephp/cakephp-codesniffer": "^4.5",
  159. "phpunit/phpunit": "^8.0 || ^9.0"
  160. },
  161. "type": "library",
  162. "autoload": {
  163. "psr-4": {
  164. "Cake\\Chronos\\": "src/"
  165. },
  166. "files": [
  167. "src/carbon_compat.php"
  168. ]
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "MIT"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Brian Nesbitt",
  177. "email": "brian@nesbot.com",
  178. "homepage": "http://nesbot.com"
  179. },
  180. {
  181. "name": "The CakePHP Team",
  182. "homepage": "http://cakephp.org"
  183. }
  184. ],
  185. "description": "A simple API extension for DateTime.",
  186. "homepage": "http://cakephp.org",
  187. "keywords": [
  188. "date",
  189. "datetime",
  190. "time"
  191. ],
  192. "support": {
  193. "irc": "irc://irc.freenode.org/cakephp",
  194. "issues": "https://github.com/cakephp/chronos/issues",
  195. "source": "https://github.com/cakephp/chronos"
  196. },
  197. "time": "2021-06-17T13:49:10+00:00"
  198. },
  199. {
  200. "name": "dasprid/enum",
  201. "version": "1.0.3",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/DASPRiD/Enum.git",
  205. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  210. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  211. "shasum": "",
  212. "mirrors": [
  213. {
  214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  215. "preferred": true
  216. }
  217. ]
  218. },
  219. "require-dev": {
  220. "phpunit/phpunit": "^7 | ^8 | ^9",
  221. "squizlabs/php_codesniffer": "^3.4"
  222. },
  223. "type": "library",
  224. "autoload": {
  225. "psr-4": {
  226. "DASPRiD\\Enum\\": "src/"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "BSD-2-Clause"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Ben Scholzen 'DASPRiD'",
  236. "email": "mail@dasprids.de",
  237. "homepage": "https://dasprids.de/",
  238. "role": "Developer"
  239. }
  240. ],
  241. "description": "PHP 7.1 enum implementation",
  242. "keywords": [
  243. "enum",
  244. "map"
  245. ],
  246. "support": {
  247. "issues": "https://github.com/DASPRiD/Enum/issues",
  248. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  249. },
  250. "time": "2020-10-02T16:03:48+00:00"
  251. },
  252. {
  253. "name": "doctrine/cache",
  254. "version": "2.1.1",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/doctrine/cache.git",
  258. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  263. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  264. "shasum": "",
  265. "mirrors": [
  266. {
  267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  268. "preferred": true
  269. }
  270. ]
  271. },
  272. "require": {
  273. "php": "~7.1 || ^8.0"
  274. },
  275. "conflict": {
  276. "doctrine/common": ">2.2,<2.4"
  277. },
  278. "require-dev": {
  279. "alcaeus/mongo-php-adapter": "^1.1",
  280. "cache/integration-tests": "dev-master",
  281. "doctrine/coding-standard": "^8.0",
  282. "mongodb/mongodb": "^1.1",
  283. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  284. "predis/predis": "~1.0",
  285. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  286. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  287. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  288. },
  289. "suggest": {
  290. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "MIT"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Guilherme Blanco",
  305. "email": "guilhermeblanco@gmail.com"
  306. },
  307. {
  308. "name": "Roman Borschel",
  309. "email": "roman@code-factory.org"
  310. },
  311. {
  312. "name": "Benjamin Eberlei",
  313. "email": "kontakt@beberlei.de"
  314. },
  315. {
  316. "name": "Jonathan Wage",
  317. "email": "jonwage@gmail.com"
  318. },
  319. {
  320. "name": "Johannes Schmitt",
  321. "email": "schmittjoh@gmail.com"
  322. }
  323. ],
  324. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  325. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  326. "keywords": [
  327. "abstraction",
  328. "apcu",
  329. "cache",
  330. "caching",
  331. "couchdb",
  332. "memcached",
  333. "php",
  334. "redis",
  335. "xcache"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/doctrine/cache/issues",
  339. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://www.doctrine-project.org/sponsorship.html",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://www.patreon.com/phpdoctrine",
  348. "type": "patreon"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2021-07-17T14:49:29+00:00"
  356. },
  357. {
  358. "name": "doctrine/dbal",
  359. "version": "2.13.2",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/doctrine/dbal.git",
  363. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/doctrine/dbal/zipball/8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  368. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  369. "shasum": "",
  370. "mirrors": [
  371. {
  372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  373. "preferred": true
  374. }
  375. ]
  376. },
  377. "require": {
  378. "doctrine/cache": "^1.0|^2.0",
  379. "doctrine/deprecations": "^0.5.3",
  380. "doctrine/event-manager": "^1.0",
  381. "ext-pdo": "*",
  382. "php": "^7.1 || ^8"
  383. },
  384. "require-dev": {
  385. "doctrine/coding-standard": "9.0.0",
  386. "jetbrains/phpstorm-stubs": "2020.2",
  387. "phpstan/phpstan": "0.12.81",
  388. "phpunit/phpunit": "^7.5.20|^8.5|9.5.5",
  389. "squizlabs/php_codesniffer": "3.6.0",
  390. "symfony/cache": "^4.4",
  391. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  392. "vimeo/psalm": "4.6.4"
  393. },
  394. "suggest": {
  395. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  396. },
  397. "bin": [
  398. "bin/doctrine-dbal"
  399. ],
  400. "type": "library",
  401. "autoload": {
  402. "psr-4": {
  403. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  404. }
  405. },
  406. "notification-url": "https://packagist.org/downloads/",
  407. "license": [
  408. "MIT"
  409. ],
  410. "authors": [
  411. {
  412. "name": "Guilherme Blanco",
  413. "email": "guilhermeblanco@gmail.com"
  414. },
  415. {
  416. "name": "Roman Borschel",
  417. "email": "roman@code-factory.org"
  418. },
  419. {
  420. "name": "Benjamin Eberlei",
  421. "email": "kontakt@beberlei.de"
  422. },
  423. {
  424. "name": "Jonathan Wage",
  425. "email": "jonwage@gmail.com"
  426. }
  427. ],
  428. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  429. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  430. "keywords": [
  431. "abstraction",
  432. "database",
  433. "db2",
  434. "dbal",
  435. "mariadb",
  436. "mssql",
  437. "mysql",
  438. "oci8",
  439. "oracle",
  440. "pdo",
  441. "pgsql",
  442. "postgresql",
  443. "queryobject",
  444. "sasql",
  445. "sql",
  446. "sqlanywhere",
  447. "sqlite",
  448. "sqlserver",
  449. "sqlsrv"
  450. ],
  451. "support": {
  452. "issues": "https://github.com/doctrine/dbal/issues",
  453. "source": "https://github.com/doctrine/dbal/tree/2.13.2"
  454. },
  455. "funding": [
  456. {
  457. "url": "https://www.doctrine-project.org/sponsorship.html",
  458. "type": "custom"
  459. },
  460. {
  461. "url": "https://www.patreon.com/phpdoctrine",
  462. "type": "patreon"
  463. },
  464. {
  465. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  466. "type": "tidelift"
  467. }
  468. ],
  469. "time": "2021-06-18T21:48:39+00:00"
  470. },
  471. {
  472. "name": "doctrine/deprecations",
  473. "version": "v0.5.3",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/doctrine/deprecations.git",
  477. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  482. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  483. "shasum": "",
  484. "mirrors": [
  485. {
  486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  487. "preferred": true
  488. }
  489. ]
  490. },
  491. "require": {
  492. "php": "^7.1|^8.0"
  493. },
  494. "require-dev": {
  495. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  496. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  497. "psr/log": "^1.0"
  498. },
  499. "suggest": {
  500. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  501. },
  502. "type": "library",
  503. "autoload": {
  504. "psr-4": {
  505. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  506. }
  507. },
  508. "notification-url": "https://packagist.org/downloads/",
  509. "license": [
  510. "MIT"
  511. ],
  512. "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.",
  513. "homepage": "https://www.doctrine-project.org/",
  514. "support": {
  515. "issues": "https://github.com/doctrine/deprecations/issues",
  516. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  517. },
  518. "time": "2021-03-21T12:59:47+00:00"
  519. },
  520. {
  521. "name": "doctrine/event-manager",
  522. "version": "1.1.1",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/doctrine/event-manager.git",
  526. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  531. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  532. "shasum": "",
  533. "mirrors": [
  534. {
  535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  536. "preferred": true
  537. }
  538. ]
  539. },
  540. "require": {
  541. "php": "^7.1 || ^8.0"
  542. },
  543. "conflict": {
  544. "doctrine/common": "<2.9@dev"
  545. },
  546. "require-dev": {
  547. "doctrine/coding-standard": "^6.0",
  548. "phpunit/phpunit": "^7.0"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "1.0.x-dev"
  554. }
  555. },
  556. "autoload": {
  557. "psr-4": {
  558. "Doctrine\\Common\\": "lib/Doctrine/Common"
  559. }
  560. },
  561. "notification-url": "https://packagist.org/downloads/",
  562. "license": [
  563. "MIT"
  564. ],
  565. "authors": [
  566. {
  567. "name": "Guilherme Blanco",
  568. "email": "guilhermeblanco@gmail.com"
  569. },
  570. {
  571. "name": "Roman Borschel",
  572. "email": "roman@code-factory.org"
  573. },
  574. {
  575. "name": "Benjamin Eberlei",
  576. "email": "kontakt@beberlei.de"
  577. },
  578. {
  579. "name": "Jonathan Wage",
  580. "email": "jonwage@gmail.com"
  581. },
  582. {
  583. "name": "Johannes Schmitt",
  584. "email": "schmittjoh@gmail.com"
  585. },
  586. {
  587. "name": "Marco Pivetta",
  588. "email": "ocramius@gmail.com"
  589. }
  590. ],
  591. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  592. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  593. "keywords": [
  594. "event",
  595. "event dispatcher",
  596. "event manager",
  597. "event system",
  598. "events"
  599. ],
  600. "support": {
  601. "issues": "https://github.com/doctrine/event-manager/issues",
  602. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  603. },
  604. "funding": [
  605. {
  606. "url": "https://www.doctrine-project.org/sponsorship.html",
  607. "type": "custom"
  608. },
  609. {
  610. "url": "https://www.patreon.com/phpdoctrine",
  611. "type": "patreon"
  612. },
  613. {
  614. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  615. "type": "tidelift"
  616. }
  617. ],
  618. "time": "2020-05-29T18:28:51+00:00"
  619. },
  620. {
  621. "name": "doctrine/inflector",
  622. "version": "2.0.3",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/doctrine/inflector.git",
  626. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  631. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  632. "shasum": "",
  633. "mirrors": [
  634. {
  635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  636. "preferred": true
  637. }
  638. ]
  639. },
  640. "require": {
  641. "php": "^7.2 || ^8.0"
  642. },
  643. "require-dev": {
  644. "doctrine/coding-standard": "^7.0",
  645. "phpstan/phpstan": "^0.11",
  646. "phpstan/phpstan-phpunit": "^0.11",
  647. "phpstan/phpstan-strict-rules": "^0.11",
  648. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  649. },
  650. "type": "library",
  651. "extra": {
  652. "branch-alias": {
  653. "dev-master": "2.0.x-dev"
  654. }
  655. },
  656. "autoload": {
  657. "psr-4": {
  658. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  659. }
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "MIT"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Guilherme Blanco",
  668. "email": "guilhermeblanco@gmail.com"
  669. },
  670. {
  671. "name": "Roman Borschel",
  672. "email": "roman@code-factory.org"
  673. },
  674. {
  675. "name": "Benjamin Eberlei",
  676. "email": "kontakt@beberlei.de"
  677. },
  678. {
  679. "name": "Jonathan Wage",
  680. "email": "jonwage@gmail.com"
  681. },
  682. {
  683. "name": "Johannes Schmitt",
  684. "email": "schmittjoh@gmail.com"
  685. }
  686. ],
  687. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  688. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  689. "keywords": [
  690. "inflection",
  691. "inflector",
  692. "lowercase",
  693. "manipulation",
  694. "php",
  695. "plural",
  696. "singular",
  697. "strings",
  698. "uppercase",
  699. "words"
  700. ],
  701. "support": {
  702. "issues": "https://github.com/doctrine/inflector/issues",
  703. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  704. },
  705. "funding": [
  706. {
  707. "url": "https://www.doctrine-project.org/sponsorship.html",
  708. "type": "custom"
  709. },
  710. {
  711. "url": "https://www.patreon.com/phpdoctrine",
  712. "type": "patreon"
  713. },
  714. {
  715. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  716. "type": "tidelift"
  717. }
  718. ],
  719. "time": "2020-05-29T15:13:26+00:00"
  720. },
  721. {
  722. "name": "doctrine/lexer",
  723. "version": "1.2.1",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/doctrine/lexer.git",
  727. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  732. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  733. "shasum": "",
  734. "mirrors": [
  735. {
  736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  737. "preferred": true
  738. }
  739. ]
  740. },
  741. "require": {
  742. "php": "^7.2 || ^8.0"
  743. },
  744. "require-dev": {
  745. "doctrine/coding-standard": "^6.0",
  746. "phpstan/phpstan": "^0.11.8",
  747. "phpunit/phpunit": "^8.2"
  748. },
  749. "type": "library",
  750. "extra": {
  751. "branch-alias": {
  752. "dev-master": "1.2.x-dev"
  753. }
  754. },
  755. "autoload": {
  756. "psr-4": {
  757. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Guilherme Blanco",
  767. "email": "guilhermeblanco@gmail.com"
  768. },
  769. {
  770. "name": "Roman Borschel",
  771. "email": "roman@code-factory.org"
  772. },
  773. {
  774. "name": "Johannes Schmitt",
  775. "email": "schmittjoh@gmail.com"
  776. }
  777. ],
  778. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  779. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  780. "keywords": [
  781. "annotations",
  782. "docblock",
  783. "lexer",
  784. "parser",
  785. "php"
  786. ],
  787. "support": {
  788. "issues": "https://github.com/doctrine/lexer/issues",
  789. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  790. },
  791. "funding": [
  792. {
  793. "url": "https://www.doctrine-project.org/sponsorship.html",
  794. "type": "custom"
  795. },
  796. {
  797. "url": "https://www.patreon.com/phpdoctrine",
  798. "type": "patreon"
  799. },
  800. {
  801. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  802. "type": "tidelift"
  803. }
  804. ],
  805. "time": "2020-05-25T17:44:05+00:00"
  806. },
  807. {
  808. "name": "dragonmantank/cron-expression",
  809. "version": "v2.3.1",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/dragonmantank/cron-expression.git",
  813. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  818. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  819. "shasum": "",
  820. "mirrors": [
  821. {
  822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  823. "preferred": true
  824. }
  825. ]
  826. },
  827. "require": {
  828. "php": "^7.0|^8.0"
  829. },
  830. "require-dev": {
  831. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  832. },
  833. "type": "library",
  834. "extra": {
  835. "branch-alias": {
  836. "dev-master": "2.3-dev"
  837. }
  838. },
  839. "autoload": {
  840. "psr-4": {
  841. "Cron\\": "src/Cron/"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Michael Dowling",
  851. "email": "mtdowling@gmail.com",
  852. "homepage": "https://github.com/mtdowling"
  853. },
  854. {
  855. "name": "Chris Tankersley",
  856. "email": "chris@ctankersley.com",
  857. "homepage": "https://github.com/dragonmantank"
  858. }
  859. ],
  860. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  861. "keywords": [
  862. "cron",
  863. "schedule"
  864. ],
  865. "support": {
  866. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  867. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  868. },
  869. "funding": [
  870. {
  871. "url": "https://github.com/dragonmantank",
  872. "type": "github"
  873. }
  874. ],
  875. "time": "2020-10-13T00:52:37+00:00"
  876. },
  877. {
  878. "name": "egulias/email-validator",
  879. "version": "2.1.25",
  880. "source": {
  881. "type": "git",
  882. "url": "https://github.com/egulias/EmailValidator.git",
  883. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  884. },
  885. "dist": {
  886. "type": "zip",
  887. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  888. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  889. "shasum": "",
  890. "mirrors": [
  891. {
  892. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  893. "preferred": true
  894. }
  895. ]
  896. },
  897. "require": {
  898. "doctrine/lexer": "^1.0.1",
  899. "php": ">=5.5",
  900. "symfony/polyfill-intl-idn": "^1.10"
  901. },
  902. "require-dev": {
  903. "dominicsayers/isemail": "^3.0.7",
  904. "phpunit/phpunit": "^4.8.36|^7.5.15",
  905. "satooshi/php-coveralls": "^1.0.1"
  906. },
  907. "suggest": {
  908. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  909. },
  910. "type": "library",
  911. "extra": {
  912. "branch-alias": {
  913. "dev-master": "2.1.x-dev"
  914. }
  915. },
  916. "autoload": {
  917. "psr-4": {
  918. "Egulias\\EmailValidator\\": "src"
  919. }
  920. },
  921. "notification-url": "https://packagist.org/downloads/",
  922. "license": [
  923. "MIT"
  924. ],
  925. "authors": [
  926. {
  927. "name": "Eduardo Gulias Davis"
  928. }
  929. ],
  930. "description": "A library for validating emails against several RFCs",
  931. "homepage": "https://github.com/egulias/EmailValidator",
  932. "keywords": [
  933. "email",
  934. "emailvalidation",
  935. "emailvalidator",
  936. "validation",
  937. "validator"
  938. ],
  939. "support": {
  940. "issues": "https://github.com/egulias/EmailValidator/issues",
  941. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  942. },
  943. "funding": [
  944. {
  945. "url": "https://github.com/egulias",
  946. "type": "github"
  947. }
  948. ],
  949. "time": "2020-12-29T14:50:06+00:00"
  950. },
  951. {
  952. "name": "endroid/qr-code",
  953. "version": "3.9.7",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/endroid/qr-code.git",
  957. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  962. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  963. "shasum": "",
  964. "mirrors": [
  965. {
  966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  967. "preferred": true
  968. }
  969. ]
  970. },
  971. "require": {
  972. "bacon/bacon-qr-code": "^2.0",
  973. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  974. "myclabs/php-enum": "^1.5",
  975. "php": "^7.3||^8.0",
  976. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  977. "symfony/property-access": "^3.4||^4.4||^5.0"
  978. },
  979. "require-dev": {
  980. "endroid/quality": "^1.5.2",
  981. "setasign/fpdf": "^1.8"
  982. },
  983. "suggest": {
  984. "ext-gd": "Required for generating PNG images",
  985. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  986. "setasign/fpdf": "Required to use the FPDF writer.",
  987. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  988. },
  989. "type": "library",
  990. "extra": {
  991. "branch-alias": {
  992. "dev-master": "3.x-dev"
  993. }
  994. },
  995. "autoload": {
  996. "psr-4": {
  997. "Endroid\\QrCode\\": "src/"
  998. }
  999. },
  1000. "notification-url": "https://packagist.org/downloads/",
  1001. "license": [
  1002. "MIT"
  1003. ],
  1004. "authors": [
  1005. {
  1006. "name": "Jeroen van den Enden",
  1007. "email": "info@endroid.nl"
  1008. }
  1009. ],
  1010. "description": "Endroid QR Code",
  1011. "homepage": "https://github.com/endroid/qr-code",
  1012. "keywords": [
  1013. "bundle",
  1014. "code",
  1015. "endroid",
  1016. "php",
  1017. "qr",
  1018. "qrcode"
  1019. ],
  1020. "support": {
  1021. "issues": "https://github.com/endroid/qr-code/issues",
  1022. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1023. },
  1024. "funding": [
  1025. {
  1026. "url": "https://github.com/endroid",
  1027. "type": "github"
  1028. }
  1029. ],
  1030. "time": "2021-04-20T19:10:54+00:00"
  1031. },
  1032. {
  1033. "name": "ezyang/htmlpurifier",
  1034. "version": "v4.13.0",
  1035. "source": {
  1036. "type": "git",
  1037. "url": "https://github.com/ezyang/htmlpurifier.git",
  1038. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1039. },
  1040. "dist": {
  1041. "type": "zip",
  1042. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1043. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1044. "shasum": "",
  1045. "mirrors": [
  1046. {
  1047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1048. "preferred": true
  1049. }
  1050. ]
  1051. },
  1052. "require": {
  1053. "php": ">=5.2"
  1054. },
  1055. "require-dev": {
  1056. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1057. },
  1058. "type": "library",
  1059. "autoload": {
  1060. "psr-0": {
  1061. "HTMLPurifier": "library/"
  1062. },
  1063. "files": [
  1064. "library/HTMLPurifier.composer.php"
  1065. ],
  1066. "exclude-from-classmap": [
  1067. "/library/HTMLPurifier/Language/"
  1068. ]
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "LGPL-2.1-or-later"
  1073. ],
  1074. "authors": [
  1075. {
  1076. "name": "Edward Z. Yang",
  1077. "email": "admin@htmlpurifier.org",
  1078. "homepage": "http://ezyang.com"
  1079. }
  1080. ],
  1081. "description": "Standards compliant HTML filter written in PHP",
  1082. "homepage": "http://htmlpurifier.org/",
  1083. "keywords": [
  1084. "html"
  1085. ],
  1086. "support": {
  1087. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1088. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1089. },
  1090. "time": "2020-06-29T00:56:53+00:00"
  1091. },
  1092. {
  1093. "name": "facade/flare-client-php",
  1094. "version": "1.8.1",
  1095. "source": {
  1096. "type": "git",
  1097. "url": "https://github.com/facade/flare-client-php.git",
  1098. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  1099. },
  1100. "dist": {
  1101. "type": "zip",
  1102. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1103. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1104. "shasum": "",
  1105. "mirrors": [
  1106. {
  1107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1108. "preferred": true
  1109. }
  1110. ]
  1111. },
  1112. "require": {
  1113. "facade/ignition-contracts": "~1.0",
  1114. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1115. "php": "^7.1|^8.0",
  1116. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1117. "symfony/mime": "^3.4|^4.0|^5.1",
  1118. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1119. },
  1120. "require-dev": {
  1121. "friendsofphp/php-cs-fixer": "^2.14",
  1122. "phpunit/phpunit": "^7.5.16",
  1123. "spatie/phpunit-snapshot-assertions": "^2.0"
  1124. },
  1125. "type": "library",
  1126. "extra": {
  1127. "branch-alias": {
  1128. "dev-master": "1.0-dev"
  1129. }
  1130. },
  1131. "autoload": {
  1132. "psr-4": {
  1133. "Facade\\FlareClient\\": "src"
  1134. },
  1135. "files": [
  1136. "src/helpers.php"
  1137. ]
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "description": "Send PHP errors to Flare",
  1144. "homepage": "https://github.com/facade/flare-client-php",
  1145. "keywords": [
  1146. "exception",
  1147. "facade",
  1148. "flare",
  1149. "reporting"
  1150. ],
  1151. "support": {
  1152. "issues": "https://github.com/facade/flare-client-php/issues",
  1153. "source": "https://github.com/facade/flare-client-php/tree/1.8.1"
  1154. },
  1155. "funding": [
  1156. {
  1157. "url": "https://github.com/spatie",
  1158. "type": "github"
  1159. }
  1160. ],
  1161. "time": "2021-05-31T19:23:29+00:00"
  1162. },
  1163. {
  1164. "name": "facade/ignition",
  1165. "version": "2.12.0",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/facade/ignition.git",
  1169. "reference": "74dcc32a2895a126d1e5f2cd3bbab499cac66db1"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/facade/ignition/zipball/74dcc32a2895a126d1e5f2cd3bbab499cac66db1",
  1174. "reference": "74dcc32a2895a126d1e5f2cd3bbab499cac66db1",
  1175. "shasum": "",
  1176. "mirrors": [
  1177. {
  1178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1179. "preferred": true
  1180. }
  1181. ]
  1182. },
  1183. "require": {
  1184. "ext-json": "*",
  1185. "ext-mbstring": "*",
  1186. "facade/flare-client-php": "^1.6",
  1187. "facade/ignition-contracts": "^1.0.2",
  1188. "illuminate/support": "^7.0|^8.0",
  1189. "monolog/monolog": "^2.0",
  1190. "php": "^7.2.5|^8.0",
  1191. "symfony/console": "^5.0",
  1192. "symfony/var-dumper": "^5.0"
  1193. },
  1194. "require-dev": {
  1195. "friendsofphp/php-cs-fixer": "^2.14",
  1196. "mockery/mockery": "^1.3",
  1197. "orchestra/testbench": "^5.0|^6.0",
  1198. "psalm/plugin-laravel": "^1.2"
  1199. },
  1200. "suggest": {
  1201. "laravel/telescope": "^3.1"
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "2.x-dev"
  1207. },
  1208. "laravel": {
  1209. "providers": [
  1210. "Facade\\Ignition\\IgnitionServiceProvider"
  1211. ],
  1212. "aliases": {
  1213. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1214. }
  1215. }
  1216. },
  1217. "autoload": {
  1218. "psr-4": {
  1219. "Facade\\Ignition\\": "src"
  1220. },
  1221. "files": [
  1222. "src/helpers.php"
  1223. ]
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "description": "A beautiful error page for Laravel applications.",
  1230. "homepage": "https://github.com/facade/ignition",
  1231. "keywords": [
  1232. "error",
  1233. "flare",
  1234. "laravel",
  1235. "page"
  1236. ],
  1237. "support": {
  1238. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1239. "forum": "https://twitter.com/flareappio",
  1240. "issues": "https://github.com/facade/ignition/issues",
  1241. "source": "https://github.com/facade/ignition"
  1242. },
  1243. "time": "2021-08-24T09:53:54+00:00"
  1244. },
  1245. {
  1246. "name": "facade/ignition-contracts",
  1247. "version": "1.0.2",
  1248. "source": {
  1249. "type": "git",
  1250. "url": "https://github.com/facade/ignition-contracts.git",
  1251. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1252. },
  1253. "dist": {
  1254. "type": "zip",
  1255. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1256. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1257. "shasum": "",
  1258. "mirrors": [
  1259. {
  1260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1261. "preferred": true
  1262. }
  1263. ]
  1264. },
  1265. "require": {
  1266. "php": "^7.3|^8.0"
  1267. },
  1268. "require-dev": {
  1269. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1270. "phpunit/phpunit": "^9.3.11",
  1271. "vimeo/psalm": "^3.17.1"
  1272. },
  1273. "type": "library",
  1274. "autoload": {
  1275. "psr-4": {
  1276. "Facade\\IgnitionContracts\\": "src"
  1277. }
  1278. },
  1279. "notification-url": "https://packagist.org/downloads/",
  1280. "license": [
  1281. "MIT"
  1282. ],
  1283. "authors": [
  1284. {
  1285. "name": "Freek Van der Herten",
  1286. "email": "freek@spatie.be",
  1287. "homepage": "https://flareapp.io",
  1288. "role": "Developer"
  1289. }
  1290. ],
  1291. "description": "Solution contracts for Ignition",
  1292. "homepage": "https://github.com/facade/ignition-contracts",
  1293. "keywords": [
  1294. "contracts",
  1295. "flare",
  1296. "ignition"
  1297. ],
  1298. "support": {
  1299. "issues": "https://github.com/facade/ignition-contracts/issues",
  1300. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1301. },
  1302. "time": "2020-10-16T08:27:54+00:00"
  1303. },
  1304. {
  1305. "name": "fideloper/proxy",
  1306. "version": "4.4.1",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/fideloper/TrustedProxy.git",
  1310. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1315. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1316. "shasum": "",
  1317. "mirrors": [
  1318. {
  1319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1320. "preferred": true
  1321. }
  1322. ]
  1323. },
  1324. "require": {
  1325. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1326. "php": ">=5.4.0"
  1327. },
  1328. "require-dev": {
  1329. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1330. "mockery/mockery": "^1.0",
  1331. "phpunit/phpunit": "^6.0"
  1332. },
  1333. "type": "library",
  1334. "extra": {
  1335. "laravel": {
  1336. "providers": [
  1337. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1338. ]
  1339. }
  1340. },
  1341. "autoload": {
  1342. "psr-4": {
  1343. "Fideloper\\Proxy\\": "src/"
  1344. }
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "MIT"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "Chris Fidao",
  1353. "email": "fideloper@gmail.com"
  1354. }
  1355. ],
  1356. "description": "Set trusted proxies for Laravel",
  1357. "keywords": [
  1358. "load balancing",
  1359. "proxy",
  1360. "trusted proxy"
  1361. ],
  1362. "support": {
  1363. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1364. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1365. },
  1366. "time": "2020-10-22T13:48:01+00:00"
  1367. },
  1368. {
  1369. "name": "firebase/php-jwt",
  1370. "version": "v5.4.0",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/firebase/php-jwt.git",
  1374. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1379. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1380. "shasum": "",
  1381. "mirrors": [
  1382. {
  1383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1384. "preferred": true
  1385. }
  1386. ]
  1387. },
  1388. "require": {
  1389. "php": ">=5.3.0"
  1390. },
  1391. "require-dev": {
  1392. "phpunit/phpunit": ">=4.8 <=9"
  1393. },
  1394. "suggest": {
  1395. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1396. },
  1397. "type": "library",
  1398. "autoload": {
  1399. "psr-4": {
  1400. "Firebase\\JWT\\": "src"
  1401. }
  1402. },
  1403. "notification-url": "https://packagist.org/downloads/",
  1404. "license": [
  1405. "BSD-3-Clause"
  1406. ],
  1407. "authors": [
  1408. {
  1409. "name": "Neuman Vong",
  1410. "email": "neuman+pear@twilio.com",
  1411. "role": "Developer"
  1412. },
  1413. {
  1414. "name": "Anant Narayanan",
  1415. "email": "anant@php.net",
  1416. "role": "Developer"
  1417. }
  1418. ],
  1419. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1420. "homepage": "https://github.com/firebase/php-jwt",
  1421. "keywords": [
  1422. "jwt",
  1423. "php"
  1424. ],
  1425. "support": {
  1426. "issues": "https://github.com/firebase/php-jwt/issues",
  1427. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1428. },
  1429. "time": "2021-06-23T19:00:23+00:00"
  1430. },
  1431. {
  1432. "name": "guzzlehttp/guzzle",
  1433. "version": "6.5.5",
  1434. "source": {
  1435. "type": "git",
  1436. "url": "https://github.com/guzzle/guzzle.git",
  1437. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1438. },
  1439. "dist": {
  1440. "type": "zip",
  1441. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1442. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1443. "shasum": "",
  1444. "mirrors": [
  1445. {
  1446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1447. "preferred": true
  1448. }
  1449. ]
  1450. },
  1451. "require": {
  1452. "ext-json": "*",
  1453. "guzzlehttp/promises": "^1.0",
  1454. "guzzlehttp/psr7": "^1.6.1",
  1455. "php": ">=5.5",
  1456. "symfony/polyfill-intl-idn": "^1.17.0"
  1457. },
  1458. "require-dev": {
  1459. "ext-curl": "*",
  1460. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1461. "psr/log": "^1.1"
  1462. },
  1463. "suggest": {
  1464. "psr/log": "Required for using the Log middleware"
  1465. },
  1466. "type": "library",
  1467. "extra": {
  1468. "branch-alias": {
  1469. "dev-master": "6.5-dev"
  1470. }
  1471. },
  1472. "autoload": {
  1473. "psr-4": {
  1474. "GuzzleHttp\\": "src/"
  1475. },
  1476. "files": [
  1477. "src/functions_include.php"
  1478. ]
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Michael Dowling",
  1487. "email": "mtdowling@gmail.com",
  1488. "homepage": "https://github.com/mtdowling"
  1489. }
  1490. ],
  1491. "description": "Guzzle is a PHP HTTP client library",
  1492. "homepage": "http://guzzlephp.org/",
  1493. "keywords": [
  1494. "client",
  1495. "curl",
  1496. "framework",
  1497. "http",
  1498. "http client",
  1499. "rest",
  1500. "web service"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/guzzle/guzzle/issues",
  1504. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1505. },
  1506. "time": "2020-06-16T21:01:06+00:00"
  1507. },
  1508. {
  1509. "name": "guzzlehttp/promises",
  1510. "version": "1.4.1",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/guzzle/promises.git",
  1514. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1519. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1520. "shasum": "",
  1521. "mirrors": [
  1522. {
  1523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1524. "preferred": true
  1525. }
  1526. ]
  1527. },
  1528. "require": {
  1529. "php": ">=5.5"
  1530. },
  1531. "require-dev": {
  1532. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "1.4-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "GuzzleHttp\\Promise\\": "src/"
  1543. },
  1544. "files": [
  1545. "src/functions_include.php"
  1546. ]
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "MIT"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Michael Dowling",
  1555. "email": "mtdowling@gmail.com",
  1556. "homepage": "https://github.com/mtdowling"
  1557. }
  1558. ],
  1559. "description": "Guzzle promises library",
  1560. "keywords": [
  1561. "promise"
  1562. ],
  1563. "support": {
  1564. "issues": "https://github.com/guzzle/promises/issues",
  1565. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1566. },
  1567. "time": "2021-03-07T09:25:29+00:00"
  1568. },
  1569. {
  1570. "name": "guzzlehttp/psr7",
  1571. "version": "1.8.2",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/guzzle/psr7.git",
  1575. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1580. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1581. "shasum": "",
  1582. "mirrors": [
  1583. {
  1584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1585. "preferred": true
  1586. }
  1587. ]
  1588. },
  1589. "require": {
  1590. "php": ">=5.4.0",
  1591. "psr/http-message": "~1.0",
  1592. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1593. },
  1594. "provide": {
  1595. "psr/http-message-implementation": "1.0"
  1596. },
  1597. "require-dev": {
  1598. "ext-zlib": "*",
  1599. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1600. },
  1601. "suggest": {
  1602. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1603. },
  1604. "type": "library",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-master": "1.7-dev"
  1608. }
  1609. },
  1610. "autoload": {
  1611. "psr-4": {
  1612. "GuzzleHttp\\Psr7\\": "src/"
  1613. },
  1614. "files": [
  1615. "src/functions_include.php"
  1616. ]
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "MIT"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Michael Dowling",
  1625. "email": "mtdowling@gmail.com",
  1626. "homepage": "https://github.com/mtdowling"
  1627. },
  1628. {
  1629. "name": "Tobias Schultze",
  1630. "homepage": "https://github.com/Tobion"
  1631. }
  1632. ],
  1633. "description": "PSR-7 message implementation that also provides common utility methods",
  1634. "keywords": [
  1635. "http",
  1636. "message",
  1637. "psr-7",
  1638. "request",
  1639. "response",
  1640. "stream",
  1641. "uri",
  1642. "url"
  1643. ],
  1644. "support": {
  1645. "issues": "https://github.com/guzzle/psr7/issues",
  1646. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1647. },
  1648. "time": "2021-04-26T09:17:50+00:00"
  1649. },
  1650. {
  1651. "name": "intervention/image",
  1652. "version": "2.6.1",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/Intervention/image.git",
  1656. "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/Intervention/image/zipball/0925f10b259679b5d8ca58f3a2add9255ffcda45",
  1661. "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45",
  1662. "shasum": "",
  1663. "mirrors": [
  1664. {
  1665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1666. "preferred": true
  1667. }
  1668. ]
  1669. },
  1670. "require": {
  1671. "ext-fileinfo": "*",
  1672. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1673. "php": ">=5.4.0"
  1674. },
  1675. "require-dev": {
  1676. "mockery/mockery": "~0.9.2",
  1677. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1678. },
  1679. "suggest": {
  1680. "ext-gd": "to use GD library based image processing.",
  1681. "ext-imagick": "to use Imagick based image processing.",
  1682. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1683. },
  1684. "type": "library",
  1685. "extra": {
  1686. "branch-alias": {
  1687. "dev-master": "2.4-dev"
  1688. },
  1689. "laravel": {
  1690. "providers": [
  1691. "Intervention\\Image\\ImageServiceProvider"
  1692. ],
  1693. "aliases": {
  1694. "Image": "Intervention\\Image\\Facades\\Image"
  1695. }
  1696. }
  1697. },
  1698. "autoload": {
  1699. "psr-4": {
  1700. "Intervention\\Image\\": "src/Intervention/Image"
  1701. }
  1702. },
  1703. "notification-url": "https://packagist.org/downloads/",
  1704. "license": [
  1705. "MIT"
  1706. ],
  1707. "authors": [
  1708. {
  1709. "name": "Oliver Vogel",
  1710. "email": "oliver@olivervogel.com",
  1711. "homepage": "http://olivervogel.com/"
  1712. }
  1713. ],
  1714. "description": "Image handling and manipulation library with support for Laravel integration",
  1715. "homepage": "http://image.intervention.io/",
  1716. "keywords": [
  1717. "gd",
  1718. "image",
  1719. "imagick",
  1720. "laravel",
  1721. "thumbnail",
  1722. "watermark"
  1723. ],
  1724. "support": {
  1725. "issues": "https://github.com/Intervention/image/issues",
  1726. "source": "https://github.com/Intervention/image/tree/2.6.1"
  1727. },
  1728. "funding": [
  1729. {
  1730. "url": "https://www.paypal.me/interventionphp",
  1731. "type": "custom"
  1732. },
  1733. {
  1734. "url": "https://github.com/Intervention",
  1735. "type": "github"
  1736. }
  1737. ],
  1738. "time": "2021-07-22T14:31:53+00:00"
  1739. },
  1740. {
  1741. "name": "khanamiryan/qrcode-detector-decoder",
  1742. "version": "1.0.5.2",
  1743. "source": {
  1744. "type": "git",
  1745. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1746. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1747. },
  1748. "dist": {
  1749. "type": "zip",
  1750. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1751. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1752. "shasum": "",
  1753. "mirrors": [
  1754. {
  1755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1756. "preferred": true
  1757. }
  1758. ]
  1759. },
  1760. "require": {
  1761. "php": ">=5.6"
  1762. },
  1763. "require-dev": {
  1764. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1765. },
  1766. "type": "library",
  1767. "autoload": {
  1768. "psr-4": {
  1769. "Zxing\\": "lib/"
  1770. },
  1771. "files": [
  1772. "lib/Common/customFunctions.php"
  1773. ]
  1774. },
  1775. "notification-url": "https://packagist.org/downloads/",
  1776. "license": [
  1777. "MIT",
  1778. "Apache-2.0"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "Ashot Khanamiryan",
  1783. "email": "a.khanamiryan@gmail.com",
  1784. "homepage": "https://github.com/khanamiryan",
  1785. "role": "Developer"
  1786. }
  1787. ],
  1788. "description": "QR code decoder / reader",
  1789. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1790. "keywords": [
  1791. "barcode",
  1792. "qr",
  1793. "zxing"
  1794. ],
  1795. "support": {
  1796. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1797. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  1798. },
  1799. "time": "2021-07-13T18:46:38+00:00"
  1800. },
  1801. {
  1802. "name": "kitetail/zttp",
  1803. "version": "v0.6.0",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/kitetail/zttp.git",
  1807. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1812. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1813. "shasum": "",
  1814. "mirrors": [
  1815. {
  1816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1817. "preferred": true
  1818. }
  1819. ]
  1820. },
  1821. "require": {
  1822. "guzzlehttp/guzzle": "^6.0",
  1823. "php": ">=7.0",
  1824. "tightenco/collect": "^5.4"
  1825. },
  1826. "require-dev": {
  1827. "laravel/lumen-framework": "5.5.*",
  1828. "phpunit/phpunit": "^6.0"
  1829. },
  1830. "type": "library",
  1831. "autoload": {
  1832. "files": [
  1833. "src/Zttp.php"
  1834. ]
  1835. },
  1836. "notification-url": "https://packagist.org/downloads/",
  1837. "license": [
  1838. "MIT"
  1839. ],
  1840. "authors": [
  1841. {
  1842. "name": "Adam Wathan",
  1843. "email": "adam.wathan@gmail.com"
  1844. }
  1845. ],
  1846. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1847. "keywords": [
  1848. "Guzzle",
  1849. "http"
  1850. ],
  1851. "support": {
  1852. "issues": "https://github.com/kitetail/zttp/issues",
  1853. "source": "https://github.com/kitetail/zttp/tree/master"
  1854. },
  1855. "time": "2019-06-10T12:18:52+00:00"
  1856. },
  1857. {
  1858. "name": "laravel/framework",
  1859. "version": "v7.30.4",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/laravel/framework.git",
  1863. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1868. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1869. "shasum": "",
  1870. "mirrors": [
  1871. {
  1872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1873. "preferred": true
  1874. }
  1875. ]
  1876. },
  1877. "require": {
  1878. "doctrine/inflector": "^1.4|^2.0",
  1879. "dragonmantank/cron-expression": "^2.3.1",
  1880. "egulias/email-validator": "^2.1.10",
  1881. "ext-json": "*",
  1882. "ext-mbstring": "*",
  1883. "ext-openssl": "*",
  1884. "league/commonmark": "^1.3",
  1885. "league/flysystem": "^1.1",
  1886. "monolog/monolog": "^2.0",
  1887. "nesbot/carbon": "^2.31",
  1888. "opis/closure": "^3.6",
  1889. "php": "^7.2.5|^8.0",
  1890. "psr/container": "^1.0",
  1891. "psr/simple-cache": "^1.0",
  1892. "ramsey/uuid": "^3.7|^4.0",
  1893. "swiftmailer/swiftmailer": "^6.0",
  1894. "symfony/console": "^5.0",
  1895. "symfony/error-handler": "^5.0",
  1896. "symfony/finder": "^5.0",
  1897. "symfony/http-foundation": "^5.0",
  1898. "symfony/http-kernel": "^5.0",
  1899. "symfony/mime": "^5.0",
  1900. "symfony/polyfill-php73": "^1.17",
  1901. "symfony/process": "^5.0",
  1902. "symfony/routing": "^5.0",
  1903. "symfony/var-dumper": "^5.0",
  1904. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1905. "vlucas/phpdotenv": "^4.0",
  1906. "voku/portable-ascii": "^1.4.8"
  1907. },
  1908. "conflict": {
  1909. "tightenco/collect": "<5.5.33"
  1910. },
  1911. "provide": {
  1912. "psr/container-implementation": "1.0"
  1913. },
  1914. "replace": {
  1915. "illuminate/auth": "self.version",
  1916. "illuminate/broadcasting": "self.version",
  1917. "illuminate/bus": "self.version",
  1918. "illuminate/cache": "self.version",
  1919. "illuminate/config": "self.version",
  1920. "illuminate/console": "self.version",
  1921. "illuminate/container": "self.version",
  1922. "illuminate/contracts": "self.version",
  1923. "illuminate/cookie": "self.version",
  1924. "illuminate/database": "self.version",
  1925. "illuminate/encryption": "self.version",
  1926. "illuminate/events": "self.version",
  1927. "illuminate/filesystem": "self.version",
  1928. "illuminate/hashing": "self.version",
  1929. "illuminate/http": "self.version",
  1930. "illuminate/log": "self.version",
  1931. "illuminate/mail": "self.version",
  1932. "illuminate/notifications": "self.version",
  1933. "illuminate/pagination": "self.version",
  1934. "illuminate/pipeline": "self.version",
  1935. "illuminate/queue": "self.version",
  1936. "illuminate/redis": "self.version",
  1937. "illuminate/routing": "self.version",
  1938. "illuminate/session": "self.version",
  1939. "illuminate/support": "self.version",
  1940. "illuminate/testing": "self.version",
  1941. "illuminate/translation": "self.version",
  1942. "illuminate/validation": "self.version",
  1943. "illuminate/view": "self.version"
  1944. },
  1945. "require-dev": {
  1946. "aws/aws-sdk-php": "^3.155",
  1947. "doctrine/dbal": "^2.6",
  1948. "filp/whoops": "^2.8",
  1949. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1950. "league/flysystem-cached-adapter": "^1.0",
  1951. "mockery/mockery": "~1.3.3|^1.4.2",
  1952. "moontoast/math": "^1.1",
  1953. "orchestra/testbench-core": "^5.8",
  1954. "pda/pheanstalk": "^4.0",
  1955. "phpunit/phpunit": "^8.4|^9.3.3",
  1956. "predis/predis": "^1.1.1",
  1957. "symfony/cache": "^5.0"
  1958. },
  1959. "suggest": {
  1960. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1961. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1962. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1963. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1964. "ext-memcached": "Required to use the memcache cache driver.",
  1965. "ext-pcntl": "Required to use all features of the queue worker.",
  1966. "ext-posix": "Required to use all features of the queue worker.",
  1967. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1968. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1969. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1970. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1971. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1972. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1973. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1974. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1975. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1976. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1977. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1978. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1979. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1980. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1981. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1982. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1983. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1984. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1985. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1986. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1987. },
  1988. "type": "library",
  1989. "extra": {
  1990. "branch-alias": {
  1991. "dev-master": "7.x-dev"
  1992. }
  1993. },
  1994. "autoload": {
  1995. "files": [
  1996. "src/Illuminate/Foundation/helpers.php",
  1997. "src/Illuminate/Support/helpers.php"
  1998. ],
  1999. "psr-4": {
  2000. "Illuminate\\": "src/Illuminate/"
  2001. }
  2002. },
  2003. "notification-url": "https://packagist.org/downloads/",
  2004. "license": [
  2005. "MIT"
  2006. ],
  2007. "authors": [
  2008. {
  2009. "name": "Taylor Otwell",
  2010. "email": "taylor@laravel.com"
  2011. }
  2012. ],
  2013. "description": "The Laravel Framework.",
  2014. "homepage": "https://laravel.com",
  2015. "keywords": [
  2016. "framework",
  2017. "laravel"
  2018. ],
  2019. "support": {
  2020. "issues": "https://github.com/laravel/framework/issues",
  2021. "source": "https://github.com/laravel/framework"
  2022. },
  2023. "time": "2021-01-21T14:10:48+00:00"
  2024. },
  2025. {
  2026. "name": "laravel/horizon",
  2027. "version": "v4.3.5",
  2028. "source": {
  2029. "type": "git",
  2030. "url": "https://github.com/laravel/horizon.git",
  2031. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2032. },
  2033. "dist": {
  2034. "type": "zip",
  2035. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2036. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2037. "shasum": "",
  2038. "mirrors": [
  2039. {
  2040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2041. "preferred": true
  2042. }
  2043. ]
  2044. },
  2045. "require": {
  2046. "cakephp/chronos": "^2.0",
  2047. "ext-json": "*",
  2048. "ext-pcntl": "*",
  2049. "ext-posix": "*",
  2050. "illuminate/contracts": "^7.0",
  2051. "illuminate/queue": "^7.0",
  2052. "illuminate/support": "^7.0",
  2053. "php": "^7.2",
  2054. "ramsey/uuid": "^3.5|^4.0",
  2055. "symfony/error-handler": "^5.0",
  2056. "symfony/process": "^5.0"
  2057. },
  2058. "require-dev": {
  2059. "mockery/mockery": "^1.0",
  2060. "orchestra/testbench": "^5.0",
  2061. "phpunit/phpunit": "^8.0",
  2062. "predis/predis": "^1.1"
  2063. },
  2064. "suggest": {
  2065. "ext-redis": "Required to use the Redis PHP driver.",
  2066. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2067. },
  2068. "type": "library",
  2069. "extra": {
  2070. "branch-alias": {
  2071. "dev-master": "4.x-dev"
  2072. },
  2073. "laravel": {
  2074. "providers": [
  2075. "Laravel\\Horizon\\HorizonServiceProvider"
  2076. ],
  2077. "aliases": {
  2078. "Horizon": "Laravel\\Horizon\\Horizon"
  2079. }
  2080. }
  2081. },
  2082. "autoload": {
  2083. "psr-4": {
  2084. "Laravel\\Horizon\\": "src/"
  2085. }
  2086. },
  2087. "notification-url": "https://packagist.org/downloads/",
  2088. "license": [
  2089. "MIT"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "Taylor Otwell",
  2094. "email": "taylor@laravel.com"
  2095. }
  2096. ],
  2097. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2098. "keywords": [
  2099. "laravel",
  2100. "queue"
  2101. ],
  2102. "support": {
  2103. "issues": "https://github.com/laravel/horizon/issues",
  2104. "source": "https://github.com/laravel/horizon/tree/4.x"
  2105. },
  2106. "time": "2020-09-08T13:19:23+00:00"
  2107. },
  2108. {
  2109. "name": "laravel/tinker",
  2110. "version": "v2.6.1",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/laravel/tinker.git",
  2114. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2119. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2120. "shasum": "",
  2121. "mirrors": [
  2122. {
  2123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2124. "preferred": true
  2125. }
  2126. ]
  2127. },
  2128. "require": {
  2129. "illuminate/console": "^6.0|^7.0|^8.0",
  2130. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2131. "illuminate/support": "^6.0|^7.0|^8.0",
  2132. "php": "^7.2.5|^8.0",
  2133. "psy/psysh": "^0.10.4",
  2134. "symfony/var-dumper": "^4.3.4|^5.0"
  2135. },
  2136. "require-dev": {
  2137. "mockery/mockery": "~1.3.3|^1.4.2",
  2138. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2139. },
  2140. "suggest": {
  2141. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2142. },
  2143. "type": "library",
  2144. "extra": {
  2145. "branch-alias": {
  2146. "dev-master": "2.x-dev"
  2147. },
  2148. "laravel": {
  2149. "providers": [
  2150. "Laravel\\Tinker\\TinkerServiceProvider"
  2151. ]
  2152. }
  2153. },
  2154. "autoload": {
  2155. "psr-4": {
  2156. "Laravel\\Tinker\\": "src/"
  2157. }
  2158. },
  2159. "notification-url": "https://packagist.org/downloads/",
  2160. "license": [
  2161. "MIT"
  2162. ],
  2163. "authors": [
  2164. {
  2165. "name": "Taylor Otwell",
  2166. "email": "taylor@laravel.com"
  2167. }
  2168. ],
  2169. "description": "Powerful REPL for the Laravel framework.",
  2170. "keywords": [
  2171. "REPL",
  2172. "Tinker",
  2173. "laravel",
  2174. "psysh"
  2175. ],
  2176. "support": {
  2177. "issues": "https://github.com/laravel/tinker/issues",
  2178. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2179. },
  2180. "time": "2021-03-02T16:53:12+00:00"
  2181. },
  2182. {
  2183. "name": "laravel/ui",
  2184. "version": "v2.5.0",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/laravel/ui.git",
  2188. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2193. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2194. "shasum": "",
  2195. "mirrors": [
  2196. {
  2197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2198. "preferred": true
  2199. }
  2200. ]
  2201. },
  2202. "require": {
  2203. "illuminate/console": "^7.0",
  2204. "illuminate/filesystem": "^7.0",
  2205. "illuminate/support": "^7.0",
  2206. "php": "^7.2.5|^8.0"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "laravel": {
  2211. "providers": [
  2212. "Laravel\\Ui\\UiServiceProvider"
  2213. ]
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Laravel\\Ui\\": "src/",
  2219. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "Taylor Otwell",
  2229. "email": "taylor@laravel.com"
  2230. }
  2231. ],
  2232. "description": "Laravel UI utilities and presets.",
  2233. "keywords": [
  2234. "laravel",
  2235. "ui"
  2236. ],
  2237. "support": {
  2238. "issues": "https://github.com/laravel/ui/issues",
  2239. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2240. },
  2241. "time": "2020-11-03T19:45:19+00:00"
  2242. },
  2243. {
  2244. "name": "league/commonmark",
  2245. "version": "1.6.6",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/thephpleague/commonmark.git",
  2249. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2254. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2255. "shasum": "",
  2256. "mirrors": [
  2257. {
  2258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2259. "preferred": true
  2260. }
  2261. ]
  2262. },
  2263. "require": {
  2264. "ext-mbstring": "*",
  2265. "php": "^7.1 || ^8.0"
  2266. },
  2267. "conflict": {
  2268. "scrutinizer/ocular": "1.7.*"
  2269. },
  2270. "require-dev": {
  2271. "cebe/markdown": "~1.0",
  2272. "commonmark/commonmark.js": "0.29.2",
  2273. "erusev/parsedown": "~1.0",
  2274. "ext-json": "*",
  2275. "github/gfm": "0.29.0",
  2276. "michelf/php-markdown": "~1.4",
  2277. "mikehaertl/php-shellcommand": "^1.4",
  2278. "phpstan/phpstan": "^0.12.90",
  2279. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2280. "scrutinizer/ocular": "^1.5",
  2281. "symfony/finder": "^4.2"
  2282. },
  2283. "bin": [
  2284. "bin/commonmark"
  2285. ],
  2286. "type": "library",
  2287. "autoload": {
  2288. "psr-4": {
  2289. "League\\CommonMark\\": "src"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "BSD-3-Clause"
  2295. ],
  2296. "authors": [
  2297. {
  2298. "name": "Colin O'Dell",
  2299. "email": "colinodell@gmail.com",
  2300. "homepage": "https://www.colinodell.com",
  2301. "role": "Lead Developer"
  2302. }
  2303. ],
  2304. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2305. "homepage": "https://commonmark.thephpleague.com",
  2306. "keywords": [
  2307. "commonmark",
  2308. "flavored",
  2309. "gfm",
  2310. "github",
  2311. "github-flavored",
  2312. "markdown",
  2313. "md",
  2314. "parser"
  2315. ],
  2316. "support": {
  2317. "docs": "https://commonmark.thephpleague.com/",
  2318. "issues": "https://github.com/thephpleague/commonmark/issues",
  2319. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2320. "source": "https://github.com/thephpleague/commonmark"
  2321. },
  2322. "funding": [
  2323. {
  2324. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2325. "type": "custom"
  2326. },
  2327. {
  2328. "url": "https://www.colinodell.com/sponsor",
  2329. "type": "custom"
  2330. },
  2331. {
  2332. "url": "https://www.paypal.me/colinpodell/10.00",
  2333. "type": "custom"
  2334. },
  2335. {
  2336. "url": "https://github.com/colinodell",
  2337. "type": "github"
  2338. },
  2339. {
  2340. "url": "https://www.patreon.com/colinodell",
  2341. "type": "patreon"
  2342. },
  2343. {
  2344. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2345. "type": "tidelift"
  2346. }
  2347. ],
  2348. "time": "2021-07-17T17:13:23+00:00"
  2349. },
  2350. {
  2351. "name": "league/flysystem",
  2352. "version": "1.1.5",
  2353. "source": {
  2354. "type": "git",
  2355. "url": "https://github.com/thephpleague/flysystem.git",
  2356. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
  2357. },
  2358. "dist": {
  2359. "type": "zip",
  2360. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
  2361. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
  2362. "shasum": "",
  2363. "mirrors": [
  2364. {
  2365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2366. "preferred": true
  2367. }
  2368. ]
  2369. },
  2370. "require": {
  2371. "ext-fileinfo": "*",
  2372. "league/mime-type-detection": "^1.3",
  2373. "php": "^7.2.5 || ^8.0"
  2374. },
  2375. "conflict": {
  2376. "league/flysystem-sftp": "<1.0.6"
  2377. },
  2378. "require-dev": {
  2379. "phpspec/prophecy": "^1.11.1",
  2380. "phpunit/phpunit": "^8.5.8"
  2381. },
  2382. "suggest": {
  2383. "ext-ftp": "Allows you to use FTP server storage",
  2384. "ext-openssl": "Allows you to use FTPS server storage",
  2385. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2386. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2387. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2388. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2389. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2390. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2391. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2392. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2393. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2394. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2395. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2396. },
  2397. "type": "library",
  2398. "extra": {
  2399. "branch-alias": {
  2400. "dev-master": "1.1-dev"
  2401. }
  2402. },
  2403. "autoload": {
  2404. "psr-4": {
  2405. "League\\Flysystem\\": "src/"
  2406. }
  2407. },
  2408. "notification-url": "https://packagist.org/downloads/",
  2409. "license": [
  2410. "MIT"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "Frank de Jonge",
  2415. "email": "info@frenky.net"
  2416. }
  2417. ],
  2418. "description": "Filesystem abstraction: Many filesystems, one API.",
  2419. "keywords": [
  2420. "Cloud Files",
  2421. "WebDAV",
  2422. "abstraction",
  2423. "aws",
  2424. "cloud",
  2425. "copy.com",
  2426. "dropbox",
  2427. "file systems",
  2428. "files",
  2429. "filesystem",
  2430. "filesystems",
  2431. "ftp",
  2432. "rackspace",
  2433. "remote",
  2434. "s3",
  2435. "sftp",
  2436. "storage"
  2437. ],
  2438. "support": {
  2439. "issues": "https://github.com/thephpleague/flysystem/issues",
  2440. "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
  2441. },
  2442. "funding": [
  2443. {
  2444. "url": "https://offset.earth/frankdejonge",
  2445. "type": "other"
  2446. }
  2447. ],
  2448. "time": "2021-08-17T13:49:42+00:00"
  2449. },
  2450. {
  2451. "name": "league/mime-type-detection",
  2452. "version": "1.7.0",
  2453. "source": {
  2454. "type": "git",
  2455. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2456. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2457. },
  2458. "dist": {
  2459. "type": "zip",
  2460. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2461. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2462. "shasum": "",
  2463. "mirrors": [
  2464. {
  2465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2466. "preferred": true
  2467. }
  2468. ]
  2469. },
  2470. "require": {
  2471. "ext-fileinfo": "*",
  2472. "php": "^7.2 || ^8.0"
  2473. },
  2474. "require-dev": {
  2475. "friendsofphp/php-cs-fixer": "^2.18",
  2476. "phpstan/phpstan": "^0.12.68",
  2477. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2478. },
  2479. "type": "library",
  2480. "autoload": {
  2481. "psr-4": {
  2482. "League\\MimeTypeDetection\\": "src"
  2483. }
  2484. },
  2485. "notification-url": "https://packagist.org/downloads/",
  2486. "license": [
  2487. "MIT"
  2488. ],
  2489. "authors": [
  2490. {
  2491. "name": "Frank de Jonge",
  2492. "email": "info@frankdejonge.nl"
  2493. }
  2494. ],
  2495. "description": "Mime-type detection for Flysystem",
  2496. "support": {
  2497. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2498. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2499. },
  2500. "funding": [
  2501. {
  2502. "url": "https://github.com/frankdejonge",
  2503. "type": "github"
  2504. },
  2505. {
  2506. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2507. "type": "tidelift"
  2508. }
  2509. ],
  2510. "time": "2021-01-18T20:58:21+00:00"
  2511. },
  2512. {
  2513. "name": "maatwebsite/excel",
  2514. "version": "3.1.32",
  2515. "source": {
  2516. "type": "git",
  2517. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2518. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf"
  2519. },
  2520. "dist": {
  2521. "type": "zip",
  2522. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2523. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2524. "shasum": "",
  2525. "mirrors": [
  2526. {
  2527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2528. "preferred": true
  2529. }
  2530. ]
  2531. },
  2532. "require": {
  2533. "ext-json": "*",
  2534. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2535. "php": "^7.0|^8.0",
  2536. "phpoffice/phpspreadsheet": "^1.18"
  2537. },
  2538. "require-dev": {
  2539. "orchestra/testbench": "^6.0",
  2540. "predis/predis": "^1.1"
  2541. },
  2542. "type": "library",
  2543. "extra": {
  2544. "laravel": {
  2545. "providers": [
  2546. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2547. ],
  2548. "aliases": {
  2549. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2550. }
  2551. }
  2552. },
  2553. "autoload": {
  2554. "psr-4": {
  2555. "Maatwebsite\\Excel\\": "src/"
  2556. }
  2557. },
  2558. "notification-url": "https://packagist.org/downloads/",
  2559. "license": [
  2560. "MIT"
  2561. ],
  2562. "authors": [
  2563. {
  2564. "name": "Patrick Brouwers",
  2565. "email": "patrick@maatwebsite.nl"
  2566. }
  2567. ],
  2568. "description": "Supercharged Excel exports and imports in Laravel",
  2569. "keywords": [
  2570. "PHPExcel",
  2571. "batch",
  2572. "csv",
  2573. "excel",
  2574. "export",
  2575. "import",
  2576. "laravel",
  2577. "php",
  2578. "phpspreadsheet"
  2579. ],
  2580. "support": {
  2581. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2582. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32"
  2583. },
  2584. "funding": [
  2585. {
  2586. "url": "https://laravel-excel.com/commercial-support",
  2587. "type": "custom"
  2588. },
  2589. {
  2590. "url": "https://github.com/patrickbrouwers",
  2591. "type": "github"
  2592. }
  2593. ],
  2594. "time": "2021-07-08T10:11:21+00:00"
  2595. },
  2596. {
  2597. "name": "maennchen/zipstream-php",
  2598. "version": "2.1.0",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2602. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2607. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  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. "myclabs/php-enum": "^1.5",
  2618. "php": ">= 7.1",
  2619. "psr/http-message": "^1.0",
  2620. "symfony/polyfill-mbstring": "^1.0"
  2621. },
  2622. "require-dev": {
  2623. "ext-zip": "*",
  2624. "guzzlehttp/guzzle": ">= 6.3",
  2625. "mikey179/vfsstream": "^1.6",
  2626. "phpunit/phpunit": ">= 7.5"
  2627. },
  2628. "type": "library",
  2629. "autoload": {
  2630. "psr-4": {
  2631. "ZipStream\\": "src/"
  2632. }
  2633. },
  2634. "notification-url": "https://packagist.org/downloads/",
  2635. "license": [
  2636. "MIT"
  2637. ],
  2638. "authors": [
  2639. {
  2640. "name": "Paul Duncan",
  2641. "email": "pabs@pablotron.org"
  2642. },
  2643. {
  2644. "name": "Jonatan Männchen",
  2645. "email": "jonatan@maennchen.ch"
  2646. },
  2647. {
  2648. "name": "Jesse Donat",
  2649. "email": "donatj@gmail.com"
  2650. },
  2651. {
  2652. "name": "András Kolesár",
  2653. "email": "kolesar@kolesar.hu"
  2654. }
  2655. ],
  2656. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2657. "keywords": [
  2658. "stream",
  2659. "zip"
  2660. ],
  2661. "support": {
  2662. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2663. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2664. },
  2665. "funding": [
  2666. {
  2667. "url": "https://opencollective.com/zipstream",
  2668. "type": "open_collective"
  2669. }
  2670. ],
  2671. "time": "2020-05-30T13:11:16+00:00"
  2672. },
  2673. {
  2674. "name": "markbaker/complex",
  2675. "version": "2.0.3",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2679. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2684. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2685. "shasum": "",
  2686. "mirrors": [
  2687. {
  2688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2689. "preferred": true
  2690. }
  2691. ]
  2692. },
  2693. "require": {
  2694. "php": "^7.2 || ^8.0"
  2695. },
  2696. "require-dev": {
  2697. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2698. "phpcompatibility/php-compatibility": "^9.0",
  2699. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2700. "squizlabs/php_codesniffer": "^3.4"
  2701. },
  2702. "type": "library",
  2703. "autoload": {
  2704. "psr-4": {
  2705. "Complex\\": "classes/src/"
  2706. },
  2707. "files": [
  2708. "classes/src/functions/abs.php",
  2709. "classes/src/functions/acos.php",
  2710. "classes/src/functions/acosh.php",
  2711. "classes/src/functions/acot.php",
  2712. "classes/src/functions/acoth.php",
  2713. "classes/src/functions/acsc.php",
  2714. "classes/src/functions/acsch.php",
  2715. "classes/src/functions/argument.php",
  2716. "classes/src/functions/asec.php",
  2717. "classes/src/functions/asech.php",
  2718. "classes/src/functions/asin.php",
  2719. "classes/src/functions/asinh.php",
  2720. "classes/src/functions/atan.php",
  2721. "classes/src/functions/atanh.php",
  2722. "classes/src/functions/conjugate.php",
  2723. "classes/src/functions/cos.php",
  2724. "classes/src/functions/cosh.php",
  2725. "classes/src/functions/cot.php",
  2726. "classes/src/functions/coth.php",
  2727. "classes/src/functions/csc.php",
  2728. "classes/src/functions/csch.php",
  2729. "classes/src/functions/exp.php",
  2730. "classes/src/functions/inverse.php",
  2731. "classes/src/functions/ln.php",
  2732. "classes/src/functions/log2.php",
  2733. "classes/src/functions/log10.php",
  2734. "classes/src/functions/negative.php",
  2735. "classes/src/functions/pow.php",
  2736. "classes/src/functions/rho.php",
  2737. "classes/src/functions/sec.php",
  2738. "classes/src/functions/sech.php",
  2739. "classes/src/functions/sin.php",
  2740. "classes/src/functions/sinh.php",
  2741. "classes/src/functions/sqrt.php",
  2742. "classes/src/functions/tan.php",
  2743. "classes/src/functions/tanh.php",
  2744. "classes/src/functions/theta.php",
  2745. "classes/src/operations/add.php",
  2746. "classes/src/operations/subtract.php",
  2747. "classes/src/operations/multiply.php",
  2748. "classes/src/operations/divideby.php",
  2749. "classes/src/operations/divideinto.php"
  2750. ]
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "MIT"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Mark Baker",
  2759. "email": "mark@lange.demon.co.uk"
  2760. }
  2761. ],
  2762. "description": "PHP Class for working with complex numbers",
  2763. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2764. "keywords": [
  2765. "complex",
  2766. "mathematics"
  2767. ],
  2768. "support": {
  2769. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2770. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2771. },
  2772. "time": "2021-06-02T09:44:11+00:00"
  2773. },
  2774. {
  2775. "name": "markbaker/matrix",
  2776. "version": "2.1.3",
  2777. "source": {
  2778. "type": "git",
  2779. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2780. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2781. },
  2782. "dist": {
  2783. "type": "zip",
  2784. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2785. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2786. "shasum": "",
  2787. "mirrors": [
  2788. {
  2789. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2790. "preferred": true
  2791. }
  2792. ]
  2793. },
  2794. "require": {
  2795. "php": "^7.1 || ^8.0"
  2796. },
  2797. "require-dev": {
  2798. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2799. "phpcompatibility/php-compatibility": "^9.0",
  2800. "phpdocumentor/phpdocumentor": "2.*",
  2801. "phploc/phploc": "^4.0",
  2802. "phpmd/phpmd": "2.*",
  2803. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2804. "sebastian/phpcpd": "^4.0",
  2805. "squizlabs/php_codesniffer": "^3.4"
  2806. },
  2807. "type": "library",
  2808. "autoload": {
  2809. "psr-4": {
  2810. "Matrix\\": "classes/src/"
  2811. },
  2812. "files": [
  2813. "classes/src/Functions/adjoint.php",
  2814. "classes/src/Functions/antidiagonal.php",
  2815. "classes/src/Functions/cofactors.php",
  2816. "classes/src/Functions/determinant.php",
  2817. "classes/src/Functions/diagonal.php",
  2818. "classes/src/Functions/identity.php",
  2819. "classes/src/Functions/inverse.php",
  2820. "classes/src/Functions/minors.php",
  2821. "classes/src/Functions/trace.php",
  2822. "classes/src/Functions/transpose.php",
  2823. "classes/src/Operations/add.php",
  2824. "classes/src/Operations/directsum.php",
  2825. "classes/src/Operations/subtract.php",
  2826. "classes/src/Operations/multiply.php",
  2827. "classes/src/Operations/divideby.php",
  2828. "classes/src/Operations/divideinto.php"
  2829. ]
  2830. },
  2831. "notification-url": "https://packagist.org/downloads/",
  2832. "license": [
  2833. "MIT"
  2834. ],
  2835. "authors": [
  2836. {
  2837. "name": "Mark Baker",
  2838. "email": "mark@demon-angel.eu"
  2839. }
  2840. ],
  2841. "description": "PHP Class for working with matrices",
  2842. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2843. "keywords": [
  2844. "mathematics",
  2845. "matrix",
  2846. "vector"
  2847. ],
  2848. "support": {
  2849. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2850. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2851. },
  2852. "time": "2021-05-25T15:42:17+00:00"
  2853. },
  2854. {
  2855. "name": "monolog/monolog",
  2856. "version": "2.3.2",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://github.com/Seldaek/monolog.git",
  2860. "reference": "71312564759a7db5b789296369c1a264efc43aad"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad",
  2865. "reference": "71312564759a7db5b789296369c1a264efc43aad",
  2866. "shasum": "",
  2867. "mirrors": [
  2868. {
  2869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2870. "preferred": true
  2871. }
  2872. ]
  2873. },
  2874. "require": {
  2875. "php": ">=7.2",
  2876. "psr/log": "^1.0.1"
  2877. },
  2878. "provide": {
  2879. "psr/log-implementation": "1.0.0"
  2880. },
  2881. "require-dev": {
  2882. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2883. "doctrine/couchdb": "~1.0@dev",
  2884. "elasticsearch/elasticsearch": "^7",
  2885. "graylog2/gelf-php": "^1.4.2",
  2886. "mongodb/mongodb": "^1.8",
  2887. "php-amqplib/php-amqplib": "~2.4",
  2888. "php-console/php-console": "^3.1.3",
  2889. "phpspec/prophecy": "^1.6.1",
  2890. "phpstan/phpstan": "^0.12.91",
  2891. "phpunit/phpunit": "^8.5",
  2892. "predis/predis": "^1.1",
  2893. "rollbar/rollbar": "^1.3",
  2894. "ruflin/elastica": ">=0.90 <7.0.1",
  2895. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2896. },
  2897. "suggest": {
  2898. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2899. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2900. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2901. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2902. "ext-mbstring": "Allow to work properly with unicode symbols",
  2903. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2904. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2905. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2906. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2907. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2908. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2909. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2910. },
  2911. "type": "library",
  2912. "extra": {
  2913. "branch-alias": {
  2914. "dev-main": "2.x-dev"
  2915. }
  2916. },
  2917. "autoload": {
  2918. "psr-4": {
  2919. "Monolog\\": "src/Monolog"
  2920. }
  2921. },
  2922. "notification-url": "https://packagist.org/downloads/",
  2923. "license": [
  2924. "MIT"
  2925. ],
  2926. "authors": [
  2927. {
  2928. "name": "Jordi Boggiano",
  2929. "email": "j.boggiano@seld.be",
  2930. "homepage": "https://seld.be"
  2931. }
  2932. ],
  2933. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2934. "homepage": "https://github.com/Seldaek/monolog",
  2935. "keywords": [
  2936. "log",
  2937. "logging",
  2938. "psr-3"
  2939. ],
  2940. "support": {
  2941. "issues": "https://github.com/Seldaek/monolog/issues",
  2942. "source": "https://github.com/Seldaek/monolog/tree/2.3.2"
  2943. },
  2944. "funding": [
  2945. {
  2946. "url": "https://github.com/Seldaek",
  2947. "type": "github"
  2948. },
  2949. {
  2950. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2951. "type": "tidelift"
  2952. }
  2953. ],
  2954. "time": "2021-07-23T07:42:52+00:00"
  2955. },
  2956. {
  2957. "name": "myclabs/php-enum",
  2958. "version": "1.8.3",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/myclabs/php-enum.git",
  2962. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2967. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2968. "shasum": "",
  2969. "mirrors": [
  2970. {
  2971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2972. "preferred": true
  2973. }
  2974. ]
  2975. },
  2976. "require": {
  2977. "ext-json": "*",
  2978. "php": "^7.3 || ^8.0"
  2979. },
  2980. "require-dev": {
  2981. "phpunit/phpunit": "^9.5",
  2982. "squizlabs/php_codesniffer": "1.*",
  2983. "vimeo/psalm": "^4.6.2"
  2984. },
  2985. "type": "library",
  2986. "autoload": {
  2987. "psr-4": {
  2988. "MyCLabs\\Enum\\": "src/"
  2989. }
  2990. },
  2991. "notification-url": "https://packagist.org/downloads/",
  2992. "license": [
  2993. "MIT"
  2994. ],
  2995. "authors": [
  2996. {
  2997. "name": "PHP Enum contributors",
  2998. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2999. }
  3000. ],
  3001. "description": "PHP Enum implementation",
  3002. "homepage": "http://github.com/myclabs/php-enum",
  3003. "keywords": [
  3004. "enum"
  3005. ],
  3006. "support": {
  3007. "issues": "https://github.com/myclabs/php-enum/issues",
  3008. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3009. },
  3010. "funding": [
  3011. {
  3012. "url": "https://github.com/mnapoli",
  3013. "type": "github"
  3014. },
  3015. {
  3016. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3017. "type": "tidelift"
  3018. }
  3019. ],
  3020. "time": "2021-07-05T08:18:36+00:00"
  3021. },
  3022. {
  3023. "name": "nesbot/carbon",
  3024. "version": "2.52.0",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/briannesbitt/Carbon.git",
  3028. "reference": "369c0e2737c56a0f39c946dd261855255a6fccbe"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/369c0e2737c56a0f39c946dd261855255a6fccbe",
  3033. "reference": "369c0e2737c56a0f39c946dd261855255a6fccbe",
  3034. "shasum": "",
  3035. "mirrors": [
  3036. {
  3037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3038. "preferred": true
  3039. }
  3040. ]
  3041. },
  3042. "require": {
  3043. "ext-json": "*",
  3044. "php": "^7.1.8 || ^8.0",
  3045. "symfony/polyfill-mbstring": "^1.0",
  3046. "symfony/polyfill-php80": "^1.16",
  3047. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3048. },
  3049. "require-dev": {
  3050. "doctrine/orm": "^2.7",
  3051. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3052. "kylekatarnls/multi-tester": "^2.0",
  3053. "phpmd/phpmd": "^2.9",
  3054. "phpstan/extension-installer": "^1.0",
  3055. "phpstan/phpstan": "^0.12.54",
  3056. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3057. "squizlabs/php_codesniffer": "^3.4"
  3058. },
  3059. "bin": [
  3060. "bin/carbon"
  3061. ],
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-3.x": "3.x-dev",
  3066. "dev-master": "2.x-dev"
  3067. },
  3068. "laravel": {
  3069. "providers": [
  3070. "Carbon\\Laravel\\ServiceProvider"
  3071. ]
  3072. },
  3073. "phpstan": {
  3074. "includes": [
  3075. "extension.neon"
  3076. ]
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Carbon\\": "src/Carbon/"
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Brian Nesbitt",
  3091. "email": "brian@nesbot.com",
  3092. "homepage": "https://markido.com"
  3093. },
  3094. {
  3095. "name": "kylekatarnls",
  3096. "homepage": "https://github.com/kylekatarnls"
  3097. }
  3098. ],
  3099. "description": "An API extension for DateTime that supports 281 different languages.",
  3100. "homepage": "https://carbon.nesbot.com",
  3101. "keywords": [
  3102. "date",
  3103. "datetime",
  3104. "time"
  3105. ],
  3106. "support": {
  3107. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3108. "source": "https://github.com/briannesbitt/Carbon"
  3109. },
  3110. "funding": [
  3111. {
  3112. "url": "https://opencollective.com/Carbon",
  3113. "type": "open_collective"
  3114. },
  3115. {
  3116. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3117. "type": "tidelift"
  3118. }
  3119. ],
  3120. "time": "2021-08-14T19:10:52+00:00"
  3121. },
  3122. {
  3123. "name": "nikic/php-parser",
  3124. "version": "v4.12.0",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/nikic/PHP-Parser.git",
  3128. "reference": "6608f01670c3cc5079e18c1dab1104e002579143"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143",
  3133. "reference": "6608f01670c3cc5079e18c1dab1104e002579143",
  3134. "shasum": "",
  3135. "mirrors": [
  3136. {
  3137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3138. "preferred": true
  3139. }
  3140. ]
  3141. },
  3142. "require": {
  3143. "ext-tokenizer": "*",
  3144. "php": ">=7.0"
  3145. },
  3146. "require-dev": {
  3147. "ircmaxell/php-yacc": "^0.0.7",
  3148. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3149. },
  3150. "bin": [
  3151. "bin/php-parse"
  3152. ],
  3153. "type": "library",
  3154. "extra": {
  3155. "branch-alias": {
  3156. "dev-master": "4.9-dev"
  3157. }
  3158. },
  3159. "autoload": {
  3160. "psr-4": {
  3161. "PhpParser\\": "lib/PhpParser"
  3162. }
  3163. },
  3164. "notification-url": "https://packagist.org/downloads/",
  3165. "license": [
  3166. "BSD-3-Clause"
  3167. ],
  3168. "authors": [
  3169. {
  3170. "name": "Nikita Popov"
  3171. }
  3172. ],
  3173. "description": "A PHP parser written in PHP",
  3174. "keywords": [
  3175. "parser",
  3176. "php"
  3177. ],
  3178. "support": {
  3179. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3180. "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0"
  3181. },
  3182. "time": "2021-07-21T10:44:31+00:00"
  3183. },
  3184. {
  3185. "name": "opis/closure",
  3186. "version": "3.6.2",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/opis/closure.git",
  3190. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3195. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3196. "shasum": "",
  3197. "mirrors": [
  3198. {
  3199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3200. "preferred": true
  3201. }
  3202. ]
  3203. },
  3204. "require": {
  3205. "php": "^5.4 || ^7.0 || ^8.0"
  3206. },
  3207. "require-dev": {
  3208. "jeremeamia/superclosure": "^2.0",
  3209. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-master": "3.6.x-dev"
  3215. }
  3216. },
  3217. "autoload": {
  3218. "psr-4": {
  3219. "Opis\\Closure\\": "src/"
  3220. },
  3221. "files": [
  3222. "functions.php"
  3223. ]
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "authors": [
  3230. {
  3231. "name": "Marius Sarca",
  3232. "email": "marius.sarca@gmail.com"
  3233. },
  3234. {
  3235. "name": "Sorin Sarca",
  3236. "email": "sarca_sorin@hotmail.com"
  3237. }
  3238. ],
  3239. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3240. "homepage": "https://opis.io/closure",
  3241. "keywords": [
  3242. "anonymous functions",
  3243. "closure",
  3244. "function",
  3245. "serializable",
  3246. "serialization",
  3247. "serialize"
  3248. ],
  3249. "support": {
  3250. "issues": "https://github.com/opis/closure/issues",
  3251. "source": "https://github.com/opis/closure/tree/3.6.2"
  3252. },
  3253. "time": "2021-04-09T13:42:10+00:00"
  3254. },
  3255. {
  3256. "name": "oursdreams/export",
  3257. "version": "0.0.7",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/oursdreams/export.git",
  3261. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3266. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3267. "shasum": "",
  3268. "mirrors": [
  3269. {
  3270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3271. "preferred": true
  3272. }
  3273. ]
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "laravel": {
  3278. "providers": [
  3279. "Oursdreams\\Export\\ExportServiceProvider"
  3280. ]
  3281. }
  3282. },
  3283. "autoload": {
  3284. "psr-4": {
  3285. "Oursdreams\\Export\\": "./src"
  3286. }
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "oursdreams",
  3295. "email": "z1792524653@163.com"
  3296. }
  3297. ],
  3298. "description": "A simple export plug-in",
  3299. "support": {
  3300. "issues": "https://github.com/oursdreams/export/issues",
  3301. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3302. },
  3303. "time": "2021-06-01T03:01:13+00:00"
  3304. },
  3305. {
  3306. "name": "overtrue/laravel-pinyin",
  3307. "version": "4.0.0",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3311. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3316. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3317. "shasum": "",
  3318. "mirrors": [
  3319. {
  3320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3321. "preferred": true
  3322. }
  3323. ]
  3324. },
  3325. "require": {
  3326. "overtrue/pinyin": "~4.0"
  3327. },
  3328. "type": "library",
  3329. "extra": {
  3330. "laravel": {
  3331. "providers": [
  3332. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3333. ],
  3334. "aliases": {
  3335. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3336. }
  3337. }
  3338. },
  3339. "autoload": {
  3340. "psr-4": {
  3341. "Overtrue\\LaravelPinyin\\": "src/"
  3342. },
  3343. "files": [
  3344. "src/helpers.php"
  3345. ]
  3346. },
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "overtrue",
  3354. "email": "anzhengchao@gmail.com"
  3355. }
  3356. ],
  3357. "description": "Chinese to Pinyin translator.",
  3358. "keywords": [
  3359. "Chinese",
  3360. "Pinyin",
  3361. "laravel",
  3362. "overtrue"
  3363. ],
  3364. "support": {
  3365. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3366. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3367. },
  3368. "time": "2018-10-10T09:02:46+00:00"
  3369. },
  3370. {
  3371. "name": "overtrue/pinyin",
  3372. "version": "4.0.8",
  3373. "source": {
  3374. "type": "git",
  3375. "url": "https://github.com/overtrue/pinyin.git",
  3376. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  3377. },
  3378. "dist": {
  3379. "type": "zip",
  3380. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3381. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3382. "shasum": "",
  3383. "mirrors": [
  3384. {
  3385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3386. "preferred": true
  3387. }
  3388. ]
  3389. },
  3390. "require": {
  3391. "php": ">=7.1"
  3392. },
  3393. "require-dev": {
  3394. "brainmaestro/composer-git-hooks": "^2.7",
  3395. "friendsofphp/php-cs-fixer": "^2.16",
  3396. "phpunit/phpunit": "~8.0"
  3397. },
  3398. "type": "library",
  3399. "extra": {
  3400. "hooks": {
  3401. "pre-commit": [
  3402. "composer test",
  3403. "composer fix-style"
  3404. ],
  3405. "pre-push": [
  3406. "composer test",
  3407. "composer check-style"
  3408. ]
  3409. }
  3410. },
  3411. "autoload": {
  3412. "psr-4": {
  3413. "Overtrue\\Pinyin\\": "src/"
  3414. },
  3415. "files": [
  3416. "src/const.php"
  3417. ]
  3418. },
  3419. "notification-url": "https://packagist.org/downloads/",
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "authors": [
  3424. {
  3425. "name": "overtrue",
  3426. "email": "anzhengchao@gmail.com",
  3427. "homepage": "http://github.com/overtrue"
  3428. }
  3429. ],
  3430. "description": "Chinese to pinyin translator.",
  3431. "homepage": "https://github.com/overtrue/pinyin",
  3432. "keywords": [
  3433. "Chinese",
  3434. "Pinyin",
  3435. "cn2pinyin"
  3436. ],
  3437. "support": {
  3438. "issues": "https://github.com/overtrue/pinyin/issues",
  3439. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  3440. },
  3441. "funding": [
  3442. {
  3443. "url": "https://www.patreon.com/overtrue",
  3444. "type": "patreon"
  3445. }
  3446. ],
  3447. "time": "2021-07-19T03:43:32+00:00"
  3448. },
  3449. {
  3450. "name": "paragonie/random_compat",
  3451. "version": "v9.99.100",
  3452. "source": {
  3453. "type": "git",
  3454. "url": "https://github.com/paragonie/random_compat.git",
  3455. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3456. },
  3457. "dist": {
  3458. "type": "zip",
  3459. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3460. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3461. "shasum": "",
  3462. "mirrors": [
  3463. {
  3464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3465. "preferred": true
  3466. }
  3467. ]
  3468. },
  3469. "require": {
  3470. "php": ">= 7"
  3471. },
  3472. "require-dev": {
  3473. "phpunit/phpunit": "4.*|5.*",
  3474. "vimeo/psalm": "^1"
  3475. },
  3476. "suggest": {
  3477. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3478. },
  3479. "type": "library",
  3480. "notification-url": "https://packagist.org/downloads/",
  3481. "license": [
  3482. "MIT"
  3483. ],
  3484. "authors": [
  3485. {
  3486. "name": "Paragon Initiative Enterprises",
  3487. "email": "security@paragonie.com",
  3488. "homepage": "https://paragonie.com"
  3489. }
  3490. ],
  3491. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3492. "keywords": [
  3493. "csprng",
  3494. "polyfill",
  3495. "pseudorandom",
  3496. "random"
  3497. ],
  3498. "support": {
  3499. "email": "info@paragonie.com",
  3500. "issues": "https://github.com/paragonie/random_compat/issues",
  3501. "source": "https://github.com/paragonie/random_compat"
  3502. },
  3503. "time": "2020-10-15T08:29:30+00:00"
  3504. },
  3505. {
  3506. "name": "paragonie/sodium_compat",
  3507. "version": "v1.17.0",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://github.com/paragonie/sodium_compat.git",
  3511. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321",
  3516. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321",
  3517. "shasum": "",
  3518. "mirrors": [
  3519. {
  3520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3521. "preferred": true
  3522. }
  3523. ]
  3524. },
  3525. "require": {
  3526. "paragonie/random_compat": ">=1",
  3527. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3528. },
  3529. "require-dev": {
  3530. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3531. },
  3532. "suggest": {
  3533. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3534. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3535. },
  3536. "type": "library",
  3537. "autoload": {
  3538. "files": [
  3539. "autoload.php"
  3540. ]
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "ISC"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "Paragon Initiative Enterprises",
  3549. "email": "security@paragonie.com"
  3550. },
  3551. {
  3552. "name": "Frank Denis",
  3553. "email": "jedisct1@pureftpd.org"
  3554. }
  3555. ],
  3556. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3557. "keywords": [
  3558. "Authentication",
  3559. "BLAKE2b",
  3560. "ChaCha20",
  3561. "ChaCha20-Poly1305",
  3562. "Chapoly",
  3563. "Curve25519",
  3564. "Ed25519",
  3565. "EdDSA",
  3566. "Edwards-curve Digital Signature Algorithm",
  3567. "Elliptic Curve Diffie-Hellman",
  3568. "Poly1305",
  3569. "Pure-PHP cryptography",
  3570. "RFC 7748",
  3571. "RFC 8032",
  3572. "Salpoly",
  3573. "Salsa20",
  3574. "X25519",
  3575. "XChaCha20-Poly1305",
  3576. "XSalsa20-Poly1305",
  3577. "Xchacha20",
  3578. "Xsalsa20",
  3579. "aead",
  3580. "cryptography",
  3581. "ecdh",
  3582. "elliptic curve",
  3583. "elliptic curve cryptography",
  3584. "encryption",
  3585. "libsodium",
  3586. "php",
  3587. "public-key cryptography",
  3588. "secret-key cryptography",
  3589. "side-channel resistant"
  3590. ],
  3591. "support": {
  3592. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3593. "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0"
  3594. },
  3595. "time": "2021-08-10T02:43:50+00:00"
  3596. },
  3597. {
  3598. "name": "phpoffice/phpspreadsheet",
  3599. "version": "1.18.0",
  3600. "source": {
  3601. "type": "git",
  3602. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3603. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3604. },
  3605. "dist": {
  3606. "type": "zip",
  3607. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3608. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3609. "shasum": "",
  3610. "mirrors": [
  3611. {
  3612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3613. "preferred": true
  3614. }
  3615. ]
  3616. },
  3617. "require": {
  3618. "ext-ctype": "*",
  3619. "ext-dom": "*",
  3620. "ext-fileinfo": "*",
  3621. "ext-gd": "*",
  3622. "ext-iconv": "*",
  3623. "ext-libxml": "*",
  3624. "ext-mbstring": "*",
  3625. "ext-simplexml": "*",
  3626. "ext-xml": "*",
  3627. "ext-xmlreader": "*",
  3628. "ext-xmlwriter": "*",
  3629. "ext-zip": "*",
  3630. "ext-zlib": "*",
  3631. "ezyang/htmlpurifier": "^4.13",
  3632. "maennchen/zipstream-php": "^2.1",
  3633. "markbaker/complex": "^2.0",
  3634. "markbaker/matrix": "^2.0",
  3635. "php": "^7.2 || ^8.0",
  3636. "psr/http-client": "^1.0",
  3637. "psr/http-factory": "^1.0",
  3638. "psr/simple-cache": "^1.0"
  3639. },
  3640. "require-dev": {
  3641. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3642. "dompdf/dompdf": "^1.0",
  3643. "friendsofphp/php-cs-fixer": "^2.18",
  3644. "jpgraph/jpgraph": "^4.0",
  3645. "mpdf/mpdf": "^8.0",
  3646. "phpcompatibility/php-compatibility": "^9.3",
  3647. "phpstan/phpstan": "^0.12.82",
  3648. "phpstan/phpstan-phpunit": "^0.12.18",
  3649. "phpunit/phpunit": "^8.5",
  3650. "squizlabs/php_codesniffer": "^3.5",
  3651. "tecnickcom/tcpdf": "^6.3"
  3652. },
  3653. "suggest": {
  3654. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3655. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3656. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3657. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3658. },
  3659. "type": "library",
  3660. "autoload": {
  3661. "psr-4": {
  3662. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3663. }
  3664. },
  3665. "notification-url": "https://packagist.org/downloads/",
  3666. "license": [
  3667. "MIT"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Maarten Balliauw",
  3672. "homepage": "https://blog.maartenballiauw.be"
  3673. },
  3674. {
  3675. "name": "Mark Baker",
  3676. "homepage": "https://markbakeruk.net"
  3677. },
  3678. {
  3679. "name": "Franck Lefevre",
  3680. "homepage": "https://rootslabs.net"
  3681. },
  3682. {
  3683. "name": "Erik Tilt"
  3684. },
  3685. {
  3686. "name": "Adrien Crivelli"
  3687. }
  3688. ],
  3689. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3690. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3691. "keywords": [
  3692. "OpenXML",
  3693. "excel",
  3694. "gnumeric",
  3695. "ods",
  3696. "php",
  3697. "spreadsheet",
  3698. "xls",
  3699. "xlsx"
  3700. ],
  3701. "support": {
  3702. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3703. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3704. },
  3705. "time": "2021-05-31T18:21:15+00:00"
  3706. },
  3707. {
  3708. "name": "phpoption/phpoption",
  3709. "version": "1.8.0",
  3710. "source": {
  3711. "type": "git",
  3712. "url": "https://github.com/schmittjoh/php-option.git",
  3713. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28"
  3714. },
  3715. "dist": {
  3716. "type": "zip",
  3717. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3718. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3719. "shasum": "",
  3720. "mirrors": [
  3721. {
  3722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3723. "preferred": true
  3724. }
  3725. ]
  3726. },
  3727. "require": {
  3728. "php": "^7.0 || ^8.0"
  3729. },
  3730. "require-dev": {
  3731. "bamarni/composer-bin-plugin": "^1.4.1",
  3732. "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8"
  3733. },
  3734. "type": "library",
  3735. "extra": {
  3736. "branch-alias": {
  3737. "dev-master": "1.8-dev"
  3738. }
  3739. },
  3740. "autoload": {
  3741. "psr-4": {
  3742. "PhpOption\\": "src/PhpOption/"
  3743. }
  3744. },
  3745. "notification-url": "https://packagist.org/downloads/",
  3746. "license": [
  3747. "Apache-2.0"
  3748. ],
  3749. "authors": [
  3750. {
  3751. "name": "Johannes M. Schmitt",
  3752. "email": "schmittjoh@gmail.com"
  3753. },
  3754. {
  3755. "name": "Graham Campbell",
  3756. "email": "hello@gjcampbell.co.uk"
  3757. }
  3758. ],
  3759. "description": "Option Type for PHP",
  3760. "keywords": [
  3761. "language",
  3762. "option",
  3763. "php",
  3764. "type"
  3765. ],
  3766. "support": {
  3767. "issues": "https://github.com/schmittjoh/php-option/issues",
  3768. "source": "https://github.com/schmittjoh/php-option/tree/1.8.0"
  3769. },
  3770. "funding": [
  3771. {
  3772. "url": "https://github.com/GrahamCampbell",
  3773. "type": "github"
  3774. },
  3775. {
  3776. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3777. "type": "tidelift"
  3778. }
  3779. ],
  3780. "time": "2021-08-28T21:27:29+00:00"
  3781. },
  3782. {
  3783. "name": "picqer/php-barcode-generator",
  3784. "version": "v2.2.0",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/picqer/php-barcode-generator.git",
  3788. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3793. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3794. "shasum": "",
  3795. "mirrors": [
  3796. {
  3797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3798. "preferred": true
  3799. }
  3800. ]
  3801. },
  3802. "require": {
  3803. "ext-mbstring": "*",
  3804. "php": "^7.3|^8.0"
  3805. },
  3806. "require-dev": {
  3807. "phpunit/phpunit": "^9.5"
  3808. },
  3809. "suggest": {
  3810. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3811. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3812. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3813. },
  3814. "type": "library",
  3815. "autoload": {
  3816. "psr-4": {
  3817. "Picqer\\Barcode\\": "src"
  3818. }
  3819. },
  3820. "notification-url": "https://packagist.org/downloads/",
  3821. "license": [
  3822. "LGPL-3.0-or-later"
  3823. ],
  3824. "authors": [
  3825. {
  3826. "name": "Nicola Asuni",
  3827. "email": "info@tecnick.com",
  3828. "homepage": "http://nicolaasuni.tecnick.com"
  3829. },
  3830. {
  3831. "name": "Casper Bakker",
  3832. "email": "info@picqer.com",
  3833. "homepage": "https://picqer.com"
  3834. }
  3835. ],
  3836. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  3837. "homepage": "https://github.com/picqer/php-barcode-generator",
  3838. "keywords": [
  3839. "CODABAR",
  3840. "Code11",
  3841. "Code93",
  3842. "EAN13",
  3843. "KIX",
  3844. "KIXCODE",
  3845. "MSI",
  3846. "POSTNET",
  3847. "Pharma",
  3848. "Standard 2 of 5",
  3849. "barcode",
  3850. "barcode generator",
  3851. "code128",
  3852. "code39",
  3853. "ean",
  3854. "html",
  3855. "jpeg",
  3856. "jpg",
  3857. "php",
  3858. "png",
  3859. "svg",
  3860. "upc"
  3861. ],
  3862. "support": {
  3863. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  3864. "source": "https://github.com/picqer/php-barcode-generator/tree/v2.2.0"
  3865. },
  3866. "funding": [
  3867. {
  3868. "url": "https://github.com/casperbakker",
  3869. "type": "github"
  3870. }
  3871. ],
  3872. "time": "2021-03-27T09:06:22+00:00"
  3873. },
  3874. {
  3875. "name": "predis/predis",
  3876. "version": "v1.1.7",
  3877. "source": {
  3878. "type": "git",
  3879. "url": "https://github.com/predis/predis.git",
  3880. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3881. },
  3882. "dist": {
  3883. "type": "zip",
  3884. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3885. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3886. "shasum": "",
  3887. "mirrors": [
  3888. {
  3889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3890. "preferred": true
  3891. }
  3892. ]
  3893. },
  3894. "require": {
  3895. "php": ">=5.3.9"
  3896. },
  3897. "require-dev": {
  3898. "phpunit/phpunit": "~4.8"
  3899. },
  3900. "suggest": {
  3901. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3902. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3903. },
  3904. "type": "library",
  3905. "autoload": {
  3906. "psr-4": {
  3907. "Predis\\": "src/"
  3908. }
  3909. },
  3910. "notification-url": "https://packagist.org/downloads/",
  3911. "license": [
  3912. "MIT"
  3913. ],
  3914. "authors": [
  3915. {
  3916. "name": "Daniele Alessandri",
  3917. "email": "suppakilla@gmail.com",
  3918. "homepage": "http://clorophilla.net",
  3919. "role": "Creator & Maintainer"
  3920. },
  3921. {
  3922. "name": "Till Krüss",
  3923. "homepage": "https://till.im",
  3924. "role": "Maintainer"
  3925. }
  3926. ],
  3927. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3928. "homepage": "http://github.com/predis/predis",
  3929. "keywords": [
  3930. "nosql",
  3931. "predis",
  3932. "redis"
  3933. ],
  3934. "support": {
  3935. "issues": "https://github.com/predis/predis/issues",
  3936. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3937. },
  3938. "funding": [
  3939. {
  3940. "url": "https://github.com/sponsors/tillkruss",
  3941. "type": "github"
  3942. }
  3943. ],
  3944. "time": "2021-04-04T19:34:46+00:00"
  3945. },
  3946. {
  3947. "name": "psr/container",
  3948. "version": "1.1.1",
  3949. "source": {
  3950. "type": "git",
  3951. "url": "https://github.com/php-fig/container.git",
  3952. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3953. },
  3954. "dist": {
  3955. "type": "zip",
  3956. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3957. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3958. "shasum": "",
  3959. "mirrors": [
  3960. {
  3961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3962. "preferred": true
  3963. }
  3964. ]
  3965. },
  3966. "require": {
  3967. "php": ">=7.2.0"
  3968. },
  3969. "type": "library",
  3970. "autoload": {
  3971. "psr-4": {
  3972. "Psr\\Container\\": "src/"
  3973. }
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "MIT"
  3978. ],
  3979. "authors": [
  3980. {
  3981. "name": "PHP-FIG",
  3982. "homepage": "https://www.php-fig.org/"
  3983. }
  3984. ],
  3985. "description": "Common Container Interface (PHP FIG PSR-11)",
  3986. "homepage": "https://github.com/php-fig/container",
  3987. "keywords": [
  3988. "PSR-11",
  3989. "container",
  3990. "container-interface",
  3991. "container-interop",
  3992. "psr"
  3993. ],
  3994. "support": {
  3995. "issues": "https://github.com/php-fig/container/issues",
  3996. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3997. },
  3998. "time": "2021-03-05T17:36:06+00:00"
  3999. },
  4000. {
  4001. "name": "psr/event-dispatcher",
  4002. "version": "1.0.0",
  4003. "source": {
  4004. "type": "git",
  4005. "url": "https://github.com/php-fig/event-dispatcher.git",
  4006. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4007. },
  4008. "dist": {
  4009. "type": "zip",
  4010. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4011. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4012. "shasum": "",
  4013. "mirrors": [
  4014. {
  4015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4016. "preferred": true
  4017. }
  4018. ]
  4019. },
  4020. "require": {
  4021. "php": ">=7.2.0"
  4022. },
  4023. "type": "library",
  4024. "extra": {
  4025. "branch-alias": {
  4026. "dev-master": "1.0.x-dev"
  4027. }
  4028. },
  4029. "autoload": {
  4030. "psr-4": {
  4031. "Psr\\EventDispatcher\\": "src/"
  4032. }
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "PHP-FIG",
  4041. "homepage": "http://www.php-fig.org/"
  4042. }
  4043. ],
  4044. "description": "Standard interfaces for event handling.",
  4045. "keywords": [
  4046. "events",
  4047. "psr",
  4048. "psr-14"
  4049. ],
  4050. "support": {
  4051. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4052. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4053. },
  4054. "time": "2019-01-08T18:20:26+00:00"
  4055. },
  4056. {
  4057. "name": "psr/http-client",
  4058. "version": "1.0.1",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/php-fig/http-client.git",
  4062. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4067. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4068. "shasum": "",
  4069. "mirrors": [
  4070. {
  4071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4072. "preferred": true
  4073. }
  4074. ]
  4075. },
  4076. "require": {
  4077. "php": "^7.0 || ^8.0",
  4078. "psr/http-message": "^1.0"
  4079. },
  4080. "type": "library",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-master": "1.0.x-dev"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "Psr\\Http\\Client\\": "src/"
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "PHP-FIG",
  4098. "homepage": "http://www.php-fig.org/"
  4099. }
  4100. ],
  4101. "description": "Common interface for HTTP clients",
  4102. "homepage": "https://github.com/php-fig/http-client",
  4103. "keywords": [
  4104. "http",
  4105. "http-client",
  4106. "psr",
  4107. "psr-18"
  4108. ],
  4109. "support": {
  4110. "source": "https://github.com/php-fig/http-client/tree/master"
  4111. },
  4112. "time": "2020-06-29T06:28:15+00:00"
  4113. },
  4114. {
  4115. "name": "psr/http-factory",
  4116. "version": "1.0.1",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/php-fig/http-factory.git",
  4120. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4125. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4126. "shasum": "",
  4127. "mirrors": [
  4128. {
  4129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4130. "preferred": true
  4131. }
  4132. ]
  4133. },
  4134. "require": {
  4135. "php": ">=7.0.0",
  4136. "psr/http-message": "^1.0"
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "1.0.x-dev"
  4142. }
  4143. },
  4144. "autoload": {
  4145. "psr-4": {
  4146. "Psr\\Http\\Message\\": "src/"
  4147. }
  4148. },
  4149. "notification-url": "https://packagist.org/downloads/",
  4150. "license": [
  4151. "MIT"
  4152. ],
  4153. "authors": [
  4154. {
  4155. "name": "PHP-FIG",
  4156. "homepage": "http://www.php-fig.org/"
  4157. }
  4158. ],
  4159. "description": "Common interfaces for PSR-7 HTTP message factories",
  4160. "keywords": [
  4161. "factory",
  4162. "http",
  4163. "message",
  4164. "psr",
  4165. "psr-17",
  4166. "psr-7",
  4167. "request",
  4168. "response"
  4169. ],
  4170. "support": {
  4171. "source": "https://github.com/php-fig/http-factory/tree/master"
  4172. },
  4173. "time": "2019-04-30T12:38:16+00:00"
  4174. },
  4175. {
  4176. "name": "psr/http-message",
  4177. "version": "1.0.1",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/php-fig/http-message.git",
  4181. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4186. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4187. "shasum": "",
  4188. "mirrors": [
  4189. {
  4190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4191. "preferred": true
  4192. }
  4193. ]
  4194. },
  4195. "require": {
  4196. "php": ">=5.3.0"
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-master": "1.0.x-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "psr-4": {
  4206. "Psr\\Http\\Message\\": "src/"
  4207. }
  4208. },
  4209. "notification-url": "https://packagist.org/downloads/",
  4210. "license": [
  4211. "MIT"
  4212. ],
  4213. "authors": [
  4214. {
  4215. "name": "PHP-FIG",
  4216. "homepage": "http://www.php-fig.org/"
  4217. }
  4218. ],
  4219. "description": "Common interface for HTTP messages",
  4220. "homepage": "https://github.com/php-fig/http-message",
  4221. "keywords": [
  4222. "http",
  4223. "http-message",
  4224. "psr",
  4225. "psr-7",
  4226. "request",
  4227. "response"
  4228. ],
  4229. "support": {
  4230. "source": "https://github.com/php-fig/http-message/tree/master"
  4231. },
  4232. "time": "2016-08-06T14:39:51+00:00"
  4233. },
  4234. {
  4235. "name": "psr/log",
  4236. "version": "1.1.4",
  4237. "source": {
  4238. "type": "git",
  4239. "url": "https://github.com/php-fig/log.git",
  4240. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4241. },
  4242. "dist": {
  4243. "type": "zip",
  4244. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4245. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4246. "shasum": "",
  4247. "mirrors": [
  4248. {
  4249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4250. "preferred": true
  4251. }
  4252. ]
  4253. },
  4254. "require": {
  4255. "php": ">=5.3.0"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "1.1.x-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "psr-4": {
  4265. "Psr\\Log\\": "Psr/Log/"
  4266. }
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "MIT"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "PHP-FIG",
  4275. "homepage": "https://www.php-fig.org/"
  4276. }
  4277. ],
  4278. "description": "Common interface for logging libraries",
  4279. "homepage": "https://github.com/php-fig/log",
  4280. "keywords": [
  4281. "log",
  4282. "psr",
  4283. "psr-3"
  4284. ],
  4285. "support": {
  4286. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4287. },
  4288. "time": "2021-05-03T11:20:27+00:00"
  4289. },
  4290. {
  4291. "name": "psr/simple-cache",
  4292. "version": "1.0.1",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://github.com/php-fig/simple-cache.git",
  4296. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4297. },
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4301. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4302. "shasum": "",
  4303. "mirrors": [
  4304. {
  4305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4306. "preferred": true
  4307. }
  4308. ]
  4309. },
  4310. "require": {
  4311. "php": ">=5.3.0"
  4312. },
  4313. "type": "library",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-master": "1.0.x-dev"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "psr-4": {
  4321. "Psr\\SimpleCache\\": "src/"
  4322. }
  4323. },
  4324. "notification-url": "https://packagist.org/downloads/",
  4325. "license": [
  4326. "MIT"
  4327. ],
  4328. "authors": [
  4329. {
  4330. "name": "PHP-FIG",
  4331. "homepage": "http://www.php-fig.org/"
  4332. }
  4333. ],
  4334. "description": "Common interfaces for simple caching",
  4335. "keywords": [
  4336. "cache",
  4337. "caching",
  4338. "psr",
  4339. "psr-16",
  4340. "simple-cache"
  4341. ],
  4342. "support": {
  4343. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4344. },
  4345. "time": "2017-10-23T01:57:42+00:00"
  4346. },
  4347. {
  4348. "name": "psy/psysh",
  4349. "version": "v0.10.8",
  4350. "source": {
  4351. "type": "git",
  4352. "url": "https://github.com/bobthecow/psysh.git",
  4353. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4354. },
  4355. "dist": {
  4356. "type": "zip",
  4357. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4358. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4359. "shasum": "",
  4360. "mirrors": [
  4361. {
  4362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4363. "preferred": true
  4364. }
  4365. ]
  4366. },
  4367. "require": {
  4368. "ext-json": "*",
  4369. "ext-tokenizer": "*",
  4370. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4371. "php": "^8.0 || ^7.0 || ^5.5.9",
  4372. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4373. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4374. },
  4375. "require-dev": {
  4376. "bamarni/composer-bin-plugin": "^1.2",
  4377. "hoa/console": "3.17.*"
  4378. },
  4379. "suggest": {
  4380. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4381. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4382. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4383. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4384. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4385. },
  4386. "bin": [
  4387. "bin/psysh"
  4388. ],
  4389. "type": "library",
  4390. "extra": {
  4391. "branch-alias": {
  4392. "dev-main": "0.10.x-dev"
  4393. }
  4394. },
  4395. "autoload": {
  4396. "files": [
  4397. "src/functions.php"
  4398. ],
  4399. "psr-4": {
  4400. "Psy\\": "src/"
  4401. }
  4402. },
  4403. "notification-url": "https://packagist.org/downloads/",
  4404. "license": [
  4405. "MIT"
  4406. ],
  4407. "authors": [
  4408. {
  4409. "name": "Justin Hileman",
  4410. "email": "justin@justinhileman.info",
  4411. "homepage": "http://justinhileman.com"
  4412. }
  4413. ],
  4414. "description": "An interactive shell for modern PHP.",
  4415. "homepage": "http://psysh.org",
  4416. "keywords": [
  4417. "REPL",
  4418. "console",
  4419. "interactive",
  4420. "shell"
  4421. ],
  4422. "support": {
  4423. "issues": "https://github.com/bobthecow/psysh/issues",
  4424. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4425. },
  4426. "time": "2021-04-10T16:23:39+00:00"
  4427. },
  4428. {
  4429. "name": "pusher/pusher-php-server",
  4430. "version": "v4.1.5",
  4431. "source": {
  4432. "type": "git",
  4433. "url": "https://github.com/pusher/pusher-http-php.git",
  4434. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4435. },
  4436. "dist": {
  4437. "type": "zip",
  4438. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4439. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4440. "shasum": "",
  4441. "mirrors": [
  4442. {
  4443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4444. "preferred": true
  4445. }
  4446. ]
  4447. },
  4448. "require": {
  4449. "ext-curl": "*",
  4450. "paragonie/sodium_compat": "^1.6",
  4451. "php": "^7.1|^8.0",
  4452. "psr/log": "^1.0"
  4453. },
  4454. "require-dev": {
  4455. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4456. },
  4457. "type": "library",
  4458. "extra": {
  4459. "branch-alias": {
  4460. "dev-master": "3.4-dev"
  4461. }
  4462. },
  4463. "autoload": {
  4464. "psr-4": {
  4465. "Pusher\\": "src/"
  4466. }
  4467. },
  4468. "notification-url": "https://packagist.org/downloads/",
  4469. "license": [
  4470. "MIT"
  4471. ],
  4472. "description": "Library for interacting with the Pusher REST API",
  4473. "keywords": [
  4474. "events",
  4475. "messaging",
  4476. "php-pusher-server",
  4477. "publish",
  4478. "push",
  4479. "pusher",
  4480. "real time",
  4481. "real-time",
  4482. "realtime",
  4483. "rest",
  4484. "trigger"
  4485. ],
  4486. "support": {
  4487. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4488. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4489. },
  4490. "time": "2020-12-09T09:38:19+00:00"
  4491. },
  4492. {
  4493. "name": "ralouphie/getallheaders",
  4494. "version": "3.0.3",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://github.com/ralouphie/getallheaders.git",
  4498. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4503. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4504. "shasum": "",
  4505. "mirrors": [
  4506. {
  4507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4508. "preferred": true
  4509. }
  4510. ]
  4511. },
  4512. "require": {
  4513. "php": ">=5.6"
  4514. },
  4515. "require-dev": {
  4516. "php-coveralls/php-coveralls": "^2.1",
  4517. "phpunit/phpunit": "^5 || ^6.5"
  4518. },
  4519. "type": "library",
  4520. "autoload": {
  4521. "files": [
  4522. "src/getallheaders.php"
  4523. ]
  4524. },
  4525. "notification-url": "https://packagist.org/downloads/",
  4526. "license": [
  4527. "MIT"
  4528. ],
  4529. "authors": [
  4530. {
  4531. "name": "Ralph Khattar",
  4532. "email": "ralph.khattar@gmail.com"
  4533. }
  4534. ],
  4535. "description": "A polyfill for getallheaders.",
  4536. "support": {
  4537. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4538. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4539. },
  4540. "time": "2019-03-08T08:55:37+00:00"
  4541. },
  4542. {
  4543. "name": "ramsey/collection",
  4544. "version": "1.2.1",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/ramsey/collection.git",
  4548. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/ramsey/collection/zipball/eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4553. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4554. "shasum": "",
  4555. "mirrors": [
  4556. {
  4557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4558. "preferred": true
  4559. }
  4560. ]
  4561. },
  4562. "require": {
  4563. "php": "^7.3 || ^8",
  4564. "symfony/polyfill-php81": "^1.23"
  4565. },
  4566. "require-dev": {
  4567. "captainhook/captainhook": "^5.3",
  4568. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4569. "ergebnis/composer-normalize": "^2.6",
  4570. "fakerphp/faker": "^1.5",
  4571. "hamcrest/hamcrest-php": "^2",
  4572. "jangregor/phpstan-prophecy": "^0.8",
  4573. "mockery/mockery": "^1.3",
  4574. "phpspec/prophecy-phpunit": "^2.0",
  4575. "phpstan/extension-installer": "^1",
  4576. "phpstan/phpstan": "^0.12.32",
  4577. "phpstan/phpstan-mockery": "^0.12.5",
  4578. "phpstan/phpstan-phpunit": "^0.12.11",
  4579. "phpunit/phpunit": "^8.5 || ^9",
  4580. "psy/psysh": "^0.10.4",
  4581. "slevomat/coding-standard": "^6.3",
  4582. "squizlabs/php_codesniffer": "^3.5",
  4583. "vimeo/psalm": "^4.4"
  4584. },
  4585. "type": "library",
  4586. "autoload": {
  4587. "psr-4": {
  4588. "Ramsey\\Collection\\": "src/"
  4589. }
  4590. },
  4591. "notification-url": "https://packagist.org/downloads/",
  4592. "license": [
  4593. "MIT"
  4594. ],
  4595. "authors": [
  4596. {
  4597. "name": "Ben Ramsey",
  4598. "email": "ben@benramsey.com",
  4599. "homepage": "https://benramsey.com"
  4600. }
  4601. ],
  4602. "description": "A PHP library for representing and manipulating collections.",
  4603. "keywords": [
  4604. "array",
  4605. "collection",
  4606. "hash",
  4607. "map",
  4608. "queue",
  4609. "set"
  4610. ],
  4611. "support": {
  4612. "issues": "https://github.com/ramsey/collection/issues",
  4613. "source": "https://github.com/ramsey/collection/tree/1.2.1"
  4614. },
  4615. "funding": [
  4616. {
  4617. "url": "https://github.com/ramsey",
  4618. "type": "github"
  4619. },
  4620. {
  4621. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4622. "type": "tidelift"
  4623. }
  4624. ],
  4625. "time": "2021-08-06T03:41:06+00:00"
  4626. },
  4627. {
  4628. "name": "ramsey/uuid",
  4629. "version": "4.2.1",
  4630. "source": {
  4631. "type": "git",
  4632. "url": "https://github.com/ramsey/uuid.git",
  4633. "reference": "fe665a03df4f056aa65af552a96e1976df8c8dae"
  4634. },
  4635. "dist": {
  4636. "type": "zip",
  4637. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fe665a03df4f056aa65af552a96e1976df8c8dae",
  4638. "reference": "fe665a03df4f056aa65af552a96e1976df8c8dae",
  4639. "shasum": "",
  4640. "mirrors": [
  4641. {
  4642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4643. "preferred": true
  4644. }
  4645. ]
  4646. },
  4647. "require": {
  4648. "brick/math": "^0.8 || ^0.9",
  4649. "ext-json": "*",
  4650. "php": "^7.2 || ^8",
  4651. "ramsey/collection": "^1.0",
  4652. "symfony/polyfill-ctype": "^1.8"
  4653. },
  4654. "replace": {
  4655. "rhumsaa/uuid": "self.version"
  4656. },
  4657. "require-dev": {
  4658. "captainhook/captainhook": "^5.10",
  4659. "captainhook/plugin-composer": "^5.3",
  4660. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4661. "doctrine/annotations": "^1.8",
  4662. "ergebnis/composer-normalize": "^2.15",
  4663. "mockery/mockery": "^1.3",
  4664. "moontoast/math": "^1.1",
  4665. "paragonie/random-lib": "^2",
  4666. "php-mock/php-mock": "^2.2",
  4667. "php-mock/php-mock-mockery": "^1.3",
  4668. "php-parallel-lint/php-parallel-lint": "^1.1",
  4669. "phpbench/phpbench": "^1.0",
  4670. "phpstan/extension-installer": "^1.0",
  4671. "phpstan/phpstan": "^0.12",
  4672. "phpstan/phpstan-mockery": "^0.12",
  4673. "phpstan/phpstan-phpunit": "^0.12",
  4674. "phpunit/phpunit": "^8.5 || ^9",
  4675. "slevomat/coding-standard": "^7.0",
  4676. "squizlabs/php_codesniffer": "^3.5",
  4677. "vimeo/psalm": "^4.9"
  4678. },
  4679. "suggest": {
  4680. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4681. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4682. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4683. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4684. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4685. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4686. },
  4687. "type": "library",
  4688. "extra": {
  4689. "branch-alias": {
  4690. "dev-main": "4.x-dev"
  4691. },
  4692. "captainhook": {
  4693. "force-install": true
  4694. }
  4695. },
  4696. "autoload": {
  4697. "psr-4": {
  4698. "Ramsey\\Uuid\\": "src/"
  4699. },
  4700. "files": [
  4701. "src/functions.php"
  4702. ]
  4703. },
  4704. "notification-url": "https://packagist.org/downloads/",
  4705. "license": [
  4706. "MIT"
  4707. ],
  4708. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4709. "keywords": [
  4710. "guid",
  4711. "identifier",
  4712. "uuid"
  4713. ],
  4714. "support": {
  4715. "issues": "https://github.com/ramsey/uuid/issues",
  4716. "source": "https://github.com/ramsey/uuid/tree/4.2.1"
  4717. },
  4718. "funding": [
  4719. {
  4720. "url": "https://github.com/ramsey",
  4721. "type": "github"
  4722. },
  4723. {
  4724. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4725. "type": "tidelift"
  4726. }
  4727. ],
  4728. "time": "2021-08-11T01:06:55+00:00"
  4729. },
  4730. {
  4731. "name": "swiftmailer/swiftmailer",
  4732. "version": "v6.2.7",
  4733. "source": {
  4734. "type": "git",
  4735. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4736. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4737. },
  4738. "dist": {
  4739. "type": "zip",
  4740. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4741. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4742. "shasum": "",
  4743. "mirrors": [
  4744. {
  4745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4746. "preferred": true
  4747. }
  4748. ]
  4749. },
  4750. "require": {
  4751. "egulias/email-validator": "^2.0|^3.1",
  4752. "php": ">=7.0.0",
  4753. "symfony/polyfill-iconv": "^1.0",
  4754. "symfony/polyfill-intl-idn": "^1.10",
  4755. "symfony/polyfill-mbstring": "^1.0"
  4756. },
  4757. "require-dev": {
  4758. "mockery/mockery": "^1.0",
  4759. "symfony/phpunit-bridge": "^4.4|^5.0"
  4760. },
  4761. "suggest": {
  4762. "ext-intl": "Needed to support internationalized email addresses"
  4763. },
  4764. "type": "library",
  4765. "extra": {
  4766. "branch-alias": {
  4767. "dev-master": "6.2-dev"
  4768. }
  4769. },
  4770. "autoload": {
  4771. "files": [
  4772. "lib/swift_required.php"
  4773. ]
  4774. },
  4775. "notification-url": "https://packagist.org/downloads/",
  4776. "license": [
  4777. "MIT"
  4778. ],
  4779. "authors": [
  4780. {
  4781. "name": "Chris Corbyn"
  4782. },
  4783. {
  4784. "name": "Fabien Potencier",
  4785. "email": "fabien@symfony.com"
  4786. }
  4787. ],
  4788. "description": "Swiftmailer, free feature-rich PHP mailer",
  4789. "homepage": "https://swiftmailer.symfony.com",
  4790. "keywords": [
  4791. "email",
  4792. "mail",
  4793. "mailer"
  4794. ],
  4795. "support": {
  4796. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4797. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4798. },
  4799. "funding": [
  4800. {
  4801. "url": "https://github.com/fabpot",
  4802. "type": "github"
  4803. },
  4804. {
  4805. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4806. "type": "tidelift"
  4807. }
  4808. ],
  4809. "time": "2021-03-09T12:30:35+00:00"
  4810. },
  4811. {
  4812. "name": "symfony/console",
  4813. "version": "v5.3.7",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/symfony/console.git",
  4817. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/symfony/console/zipball/8b1008344647462ae6ec57559da166c2bfa5e16a",
  4822. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a",
  4823. "shasum": "",
  4824. "mirrors": [
  4825. {
  4826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4827. "preferred": true
  4828. }
  4829. ]
  4830. },
  4831. "require": {
  4832. "php": ">=7.2.5",
  4833. "symfony/deprecation-contracts": "^2.1",
  4834. "symfony/polyfill-mbstring": "~1.0",
  4835. "symfony/polyfill-php73": "^1.8",
  4836. "symfony/polyfill-php80": "^1.16",
  4837. "symfony/service-contracts": "^1.1|^2",
  4838. "symfony/string": "^5.1"
  4839. },
  4840. "conflict": {
  4841. "psr/log": ">=3",
  4842. "symfony/dependency-injection": "<4.4",
  4843. "symfony/dotenv": "<5.1",
  4844. "symfony/event-dispatcher": "<4.4",
  4845. "symfony/lock": "<4.4",
  4846. "symfony/process": "<4.4"
  4847. },
  4848. "provide": {
  4849. "psr/log-implementation": "1.0|2.0"
  4850. },
  4851. "require-dev": {
  4852. "psr/log": "^1|^2",
  4853. "symfony/config": "^4.4|^5.0",
  4854. "symfony/dependency-injection": "^4.4|^5.0",
  4855. "symfony/event-dispatcher": "^4.4|^5.0",
  4856. "symfony/lock": "^4.4|^5.0",
  4857. "symfony/process": "^4.4|^5.0",
  4858. "symfony/var-dumper": "^4.4|^5.0"
  4859. },
  4860. "suggest": {
  4861. "psr/log": "For using the console logger",
  4862. "symfony/event-dispatcher": "",
  4863. "symfony/lock": "",
  4864. "symfony/process": ""
  4865. },
  4866. "type": "library",
  4867. "autoload": {
  4868. "psr-4": {
  4869. "Symfony\\Component\\Console\\": ""
  4870. },
  4871. "exclude-from-classmap": [
  4872. "/Tests/"
  4873. ]
  4874. },
  4875. "notification-url": "https://packagist.org/downloads/",
  4876. "license": [
  4877. "MIT"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Fabien Potencier",
  4882. "email": "fabien@symfony.com"
  4883. },
  4884. {
  4885. "name": "Symfony Community",
  4886. "homepage": "https://symfony.com/contributors"
  4887. }
  4888. ],
  4889. "description": "Eases the creation of beautiful and testable command line interfaces",
  4890. "homepage": "https://symfony.com",
  4891. "keywords": [
  4892. "cli",
  4893. "command line",
  4894. "console",
  4895. "terminal"
  4896. ],
  4897. "support": {
  4898. "source": "https://github.com/symfony/console/tree/v5.3.7"
  4899. },
  4900. "funding": [
  4901. {
  4902. "url": "https://symfony.com/sponsor",
  4903. "type": "custom"
  4904. },
  4905. {
  4906. "url": "https://github.com/fabpot",
  4907. "type": "github"
  4908. },
  4909. {
  4910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4911. "type": "tidelift"
  4912. }
  4913. ],
  4914. "time": "2021-08-25T20:02:16+00:00"
  4915. },
  4916. {
  4917. "name": "symfony/css-selector",
  4918. "version": "v5.3.4",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/symfony/css-selector.git",
  4922. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  4927. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  4928. "shasum": "",
  4929. "mirrors": [
  4930. {
  4931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4932. "preferred": true
  4933. }
  4934. ]
  4935. },
  4936. "require": {
  4937. "php": ">=7.2.5",
  4938. "symfony/polyfill-php80": "^1.16"
  4939. },
  4940. "type": "library",
  4941. "autoload": {
  4942. "psr-4": {
  4943. "Symfony\\Component\\CssSelector\\": ""
  4944. },
  4945. "exclude-from-classmap": [
  4946. "/Tests/"
  4947. ]
  4948. },
  4949. "notification-url": "https://packagist.org/downloads/",
  4950. "license": [
  4951. "MIT"
  4952. ],
  4953. "authors": [
  4954. {
  4955. "name": "Fabien Potencier",
  4956. "email": "fabien@symfony.com"
  4957. },
  4958. {
  4959. "name": "Jean-François Simon",
  4960. "email": "jeanfrancois.simon@sensiolabs.com"
  4961. },
  4962. {
  4963. "name": "Symfony Community",
  4964. "homepage": "https://symfony.com/contributors"
  4965. }
  4966. ],
  4967. "description": "Converts CSS selectors to XPath expressions",
  4968. "homepage": "https://symfony.com",
  4969. "support": {
  4970. "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
  4971. },
  4972. "funding": [
  4973. {
  4974. "url": "https://symfony.com/sponsor",
  4975. "type": "custom"
  4976. },
  4977. {
  4978. "url": "https://github.com/fabpot",
  4979. "type": "github"
  4980. },
  4981. {
  4982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4983. "type": "tidelift"
  4984. }
  4985. ],
  4986. "time": "2021-07-21T12:38:00+00:00"
  4987. },
  4988. {
  4989. "name": "symfony/deprecation-contracts",
  4990. "version": "v2.4.0",
  4991. "source": {
  4992. "type": "git",
  4993. "url": "https://github.com/symfony/deprecation-contracts.git",
  4994. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4995. },
  4996. "dist": {
  4997. "type": "zip",
  4998. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4999. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5000. "shasum": "",
  5001. "mirrors": [
  5002. {
  5003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5004. "preferred": true
  5005. }
  5006. ]
  5007. },
  5008. "require": {
  5009. "php": ">=7.1"
  5010. },
  5011. "type": "library",
  5012. "extra": {
  5013. "branch-alias": {
  5014. "dev-main": "2.4-dev"
  5015. },
  5016. "thanks": {
  5017. "name": "symfony/contracts",
  5018. "url": "https://github.com/symfony/contracts"
  5019. }
  5020. },
  5021. "autoload": {
  5022. "files": [
  5023. "function.php"
  5024. ]
  5025. },
  5026. "notification-url": "https://packagist.org/downloads/",
  5027. "license": [
  5028. "MIT"
  5029. ],
  5030. "authors": [
  5031. {
  5032. "name": "Nicolas Grekas",
  5033. "email": "p@tchwork.com"
  5034. },
  5035. {
  5036. "name": "Symfony Community",
  5037. "homepage": "https://symfony.com/contributors"
  5038. }
  5039. ],
  5040. "description": "A generic function and convention to trigger deprecation notices",
  5041. "homepage": "https://symfony.com",
  5042. "support": {
  5043. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5044. },
  5045. "funding": [
  5046. {
  5047. "url": "https://symfony.com/sponsor",
  5048. "type": "custom"
  5049. },
  5050. {
  5051. "url": "https://github.com/fabpot",
  5052. "type": "github"
  5053. },
  5054. {
  5055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5056. "type": "tidelift"
  5057. }
  5058. ],
  5059. "time": "2021-03-23T23:28:01+00:00"
  5060. },
  5061. {
  5062. "name": "symfony/error-handler",
  5063. "version": "v5.3.7",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://github.com/symfony/error-handler.git",
  5067. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://api.github.com/repos/symfony/error-handler/zipball/3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5072. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5073. "shasum": "",
  5074. "mirrors": [
  5075. {
  5076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5077. "preferred": true
  5078. }
  5079. ]
  5080. },
  5081. "require": {
  5082. "php": ">=7.2.5",
  5083. "psr/log": "^1|^2|^3",
  5084. "symfony/var-dumper": "^4.4|^5.0"
  5085. },
  5086. "require-dev": {
  5087. "symfony/deprecation-contracts": "^2.1",
  5088. "symfony/http-kernel": "^4.4|^5.0",
  5089. "symfony/serializer": "^4.4|^5.0"
  5090. },
  5091. "type": "library",
  5092. "autoload": {
  5093. "psr-4": {
  5094. "Symfony\\Component\\ErrorHandler\\": ""
  5095. },
  5096. "exclude-from-classmap": [
  5097. "/Tests/"
  5098. ]
  5099. },
  5100. "notification-url": "https://packagist.org/downloads/",
  5101. "license": [
  5102. "MIT"
  5103. ],
  5104. "authors": [
  5105. {
  5106. "name": "Fabien Potencier",
  5107. "email": "fabien@symfony.com"
  5108. },
  5109. {
  5110. "name": "Symfony Community",
  5111. "homepage": "https://symfony.com/contributors"
  5112. }
  5113. ],
  5114. "description": "Provides tools to manage errors and ease debugging PHP code",
  5115. "homepage": "https://symfony.com",
  5116. "support": {
  5117. "source": "https://github.com/symfony/error-handler/tree/v5.3.7"
  5118. },
  5119. "funding": [
  5120. {
  5121. "url": "https://symfony.com/sponsor",
  5122. "type": "custom"
  5123. },
  5124. {
  5125. "url": "https://github.com/fabpot",
  5126. "type": "github"
  5127. },
  5128. {
  5129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5130. "type": "tidelift"
  5131. }
  5132. ],
  5133. "time": "2021-08-28T15:07:08+00:00"
  5134. },
  5135. {
  5136. "name": "symfony/event-dispatcher",
  5137. "version": "v5.3.7",
  5138. "source": {
  5139. "type": "git",
  5140. "url": "https://github.com/symfony/event-dispatcher.git",
  5141. "reference": "ce7b20d69c66a20939d8952b617506a44d102130"
  5142. },
  5143. "dist": {
  5144. "type": "zip",
  5145. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ce7b20d69c66a20939d8952b617506a44d102130",
  5146. "reference": "ce7b20d69c66a20939d8952b617506a44d102130",
  5147. "shasum": "",
  5148. "mirrors": [
  5149. {
  5150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5151. "preferred": true
  5152. }
  5153. ]
  5154. },
  5155. "require": {
  5156. "php": ">=7.2.5",
  5157. "symfony/deprecation-contracts": "^2.1",
  5158. "symfony/event-dispatcher-contracts": "^2",
  5159. "symfony/polyfill-php80": "^1.16"
  5160. },
  5161. "conflict": {
  5162. "symfony/dependency-injection": "<4.4"
  5163. },
  5164. "provide": {
  5165. "psr/event-dispatcher-implementation": "1.0",
  5166. "symfony/event-dispatcher-implementation": "2.0"
  5167. },
  5168. "require-dev": {
  5169. "psr/log": "^1|^2|^3",
  5170. "symfony/config": "^4.4|^5.0",
  5171. "symfony/dependency-injection": "^4.4|^5.0",
  5172. "symfony/error-handler": "^4.4|^5.0",
  5173. "symfony/expression-language": "^4.4|^5.0",
  5174. "symfony/http-foundation": "^4.4|^5.0",
  5175. "symfony/service-contracts": "^1.1|^2",
  5176. "symfony/stopwatch": "^4.4|^5.0"
  5177. },
  5178. "suggest": {
  5179. "symfony/dependency-injection": "",
  5180. "symfony/http-kernel": ""
  5181. },
  5182. "type": "library",
  5183. "autoload": {
  5184. "psr-4": {
  5185. "Symfony\\Component\\EventDispatcher\\": ""
  5186. },
  5187. "exclude-from-classmap": [
  5188. "/Tests/"
  5189. ]
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "MIT"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Fabien Potencier",
  5198. "email": "fabien@symfony.com"
  5199. },
  5200. {
  5201. "name": "Symfony Community",
  5202. "homepage": "https://symfony.com/contributors"
  5203. }
  5204. ],
  5205. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5206. "homepage": "https://symfony.com",
  5207. "support": {
  5208. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.7"
  5209. },
  5210. "funding": [
  5211. {
  5212. "url": "https://symfony.com/sponsor",
  5213. "type": "custom"
  5214. },
  5215. {
  5216. "url": "https://github.com/fabpot",
  5217. "type": "github"
  5218. },
  5219. {
  5220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5221. "type": "tidelift"
  5222. }
  5223. ],
  5224. "time": "2021-08-04T21:20:46+00:00"
  5225. },
  5226. {
  5227. "name": "symfony/event-dispatcher-contracts",
  5228. "version": "v2.4.0",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5232. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5237. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5238. "shasum": "",
  5239. "mirrors": [
  5240. {
  5241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5242. "preferred": true
  5243. }
  5244. ]
  5245. },
  5246. "require": {
  5247. "php": ">=7.2.5",
  5248. "psr/event-dispatcher": "^1"
  5249. },
  5250. "suggest": {
  5251. "symfony/event-dispatcher-implementation": ""
  5252. },
  5253. "type": "library",
  5254. "extra": {
  5255. "branch-alias": {
  5256. "dev-main": "2.4-dev"
  5257. },
  5258. "thanks": {
  5259. "name": "symfony/contracts",
  5260. "url": "https://github.com/symfony/contracts"
  5261. }
  5262. },
  5263. "autoload": {
  5264. "psr-4": {
  5265. "Symfony\\Contracts\\EventDispatcher\\": ""
  5266. }
  5267. },
  5268. "notification-url": "https://packagist.org/downloads/",
  5269. "license": [
  5270. "MIT"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Nicolas Grekas",
  5275. "email": "p@tchwork.com"
  5276. },
  5277. {
  5278. "name": "Symfony Community",
  5279. "homepage": "https://symfony.com/contributors"
  5280. }
  5281. ],
  5282. "description": "Generic abstractions related to dispatching event",
  5283. "homepage": "https://symfony.com",
  5284. "keywords": [
  5285. "abstractions",
  5286. "contracts",
  5287. "decoupling",
  5288. "interfaces",
  5289. "interoperability",
  5290. "standards"
  5291. ],
  5292. "support": {
  5293. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://symfony.com/sponsor",
  5298. "type": "custom"
  5299. },
  5300. {
  5301. "url": "https://github.com/fabpot",
  5302. "type": "github"
  5303. },
  5304. {
  5305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5306. "type": "tidelift"
  5307. }
  5308. ],
  5309. "time": "2021-03-23T23:28:01+00:00"
  5310. },
  5311. {
  5312. "name": "symfony/finder",
  5313. "version": "v5.3.7",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/symfony/finder.git",
  5317. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5322. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5323. "shasum": "",
  5324. "mirrors": [
  5325. {
  5326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5327. "preferred": true
  5328. }
  5329. ]
  5330. },
  5331. "require": {
  5332. "php": ">=7.2.5",
  5333. "symfony/polyfill-php80": "^1.16"
  5334. },
  5335. "type": "library",
  5336. "autoload": {
  5337. "psr-4": {
  5338. "Symfony\\Component\\Finder\\": ""
  5339. },
  5340. "exclude-from-classmap": [
  5341. "/Tests/"
  5342. ]
  5343. },
  5344. "notification-url": "https://packagist.org/downloads/",
  5345. "license": [
  5346. "MIT"
  5347. ],
  5348. "authors": [
  5349. {
  5350. "name": "Fabien Potencier",
  5351. "email": "fabien@symfony.com"
  5352. },
  5353. {
  5354. "name": "Symfony Community",
  5355. "homepage": "https://symfony.com/contributors"
  5356. }
  5357. ],
  5358. "description": "Finds files and directories via an intuitive fluent interface",
  5359. "homepage": "https://symfony.com",
  5360. "support": {
  5361. "source": "https://github.com/symfony/finder/tree/v5.3.7"
  5362. },
  5363. "funding": [
  5364. {
  5365. "url": "https://symfony.com/sponsor",
  5366. "type": "custom"
  5367. },
  5368. {
  5369. "url": "https://github.com/fabpot",
  5370. "type": "github"
  5371. },
  5372. {
  5373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5374. "type": "tidelift"
  5375. }
  5376. ],
  5377. "time": "2021-08-04T21:20:46+00:00"
  5378. },
  5379. {
  5380. "name": "symfony/http-client-contracts",
  5381. "version": "v2.4.0",
  5382. "source": {
  5383. "type": "git",
  5384. "url": "https://github.com/symfony/http-client-contracts.git",
  5385. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5386. },
  5387. "dist": {
  5388. "type": "zip",
  5389. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5390. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5391. "shasum": "",
  5392. "mirrors": [
  5393. {
  5394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5395. "preferred": true
  5396. }
  5397. ]
  5398. },
  5399. "require": {
  5400. "php": ">=7.2.5"
  5401. },
  5402. "suggest": {
  5403. "symfony/http-client-implementation": ""
  5404. },
  5405. "type": "library",
  5406. "extra": {
  5407. "branch-alias": {
  5408. "dev-main": "2.4-dev"
  5409. },
  5410. "thanks": {
  5411. "name": "symfony/contracts",
  5412. "url": "https://github.com/symfony/contracts"
  5413. }
  5414. },
  5415. "autoload": {
  5416. "psr-4": {
  5417. "Symfony\\Contracts\\HttpClient\\": ""
  5418. }
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "Nicolas Grekas",
  5427. "email": "p@tchwork.com"
  5428. },
  5429. {
  5430. "name": "Symfony Community",
  5431. "homepage": "https://symfony.com/contributors"
  5432. }
  5433. ],
  5434. "description": "Generic abstractions related to HTTP clients",
  5435. "homepage": "https://symfony.com",
  5436. "keywords": [
  5437. "abstractions",
  5438. "contracts",
  5439. "decoupling",
  5440. "interfaces",
  5441. "interoperability",
  5442. "standards"
  5443. ],
  5444. "support": {
  5445. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5446. },
  5447. "funding": [
  5448. {
  5449. "url": "https://symfony.com/sponsor",
  5450. "type": "custom"
  5451. },
  5452. {
  5453. "url": "https://github.com/fabpot",
  5454. "type": "github"
  5455. },
  5456. {
  5457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5458. "type": "tidelift"
  5459. }
  5460. ],
  5461. "time": "2021-04-11T23:07:08+00:00"
  5462. },
  5463. {
  5464. "name": "symfony/http-foundation",
  5465. "version": "v5.3.7",
  5466. "source": {
  5467. "type": "git",
  5468. "url": "https://github.com/symfony/http-foundation.git",
  5469. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5"
  5470. },
  5471. "dist": {
  5472. "type": "zip",
  5473. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5474. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5475. "shasum": "",
  5476. "mirrors": [
  5477. {
  5478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5479. "preferred": true
  5480. }
  5481. ]
  5482. },
  5483. "require": {
  5484. "php": ">=7.2.5",
  5485. "symfony/deprecation-contracts": "^2.1",
  5486. "symfony/polyfill-mbstring": "~1.1",
  5487. "symfony/polyfill-php80": "^1.16"
  5488. },
  5489. "require-dev": {
  5490. "predis/predis": "~1.0",
  5491. "symfony/cache": "^4.4|^5.0",
  5492. "symfony/expression-language": "^4.4|^5.0",
  5493. "symfony/mime": "^4.4|^5.0"
  5494. },
  5495. "suggest": {
  5496. "symfony/mime": "To use the file extension guesser"
  5497. },
  5498. "type": "library",
  5499. "autoload": {
  5500. "psr-4": {
  5501. "Symfony\\Component\\HttpFoundation\\": ""
  5502. },
  5503. "exclude-from-classmap": [
  5504. "/Tests/"
  5505. ]
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Fabien Potencier",
  5514. "email": "fabien@symfony.com"
  5515. },
  5516. {
  5517. "name": "Symfony Community",
  5518. "homepage": "https://symfony.com/contributors"
  5519. }
  5520. ],
  5521. "description": "Defines an object-oriented layer for the HTTP specification",
  5522. "homepage": "https://symfony.com",
  5523. "support": {
  5524. "source": "https://github.com/symfony/http-foundation/tree/v5.3.7"
  5525. },
  5526. "funding": [
  5527. {
  5528. "url": "https://symfony.com/sponsor",
  5529. "type": "custom"
  5530. },
  5531. {
  5532. "url": "https://github.com/fabpot",
  5533. "type": "github"
  5534. },
  5535. {
  5536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5537. "type": "tidelift"
  5538. }
  5539. ],
  5540. "time": "2021-08-27T11:20:35+00:00"
  5541. },
  5542. {
  5543. "name": "symfony/http-kernel",
  5544. "version": "v5.3.7",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://github.com/symfony/http-kernel.git",
  5548. "reference": "a3a78e37935a527b50376c22ac1cec35b57fe787"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a3a78e37935a527b50376c22ac1cec35b57fe787",
  5553. "reference": "a3a78e37935a527b50376c22ac1cec35b57fe787",
  5554. "shasum": "",
  5555. "mirrors": [
  5556. {
  5557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5558. "preferred": true
  5559. }
  5560. ]
  5561. },
  5562. "require": {
  5563. "php": ">=7.2.5",
  5564. "psr/log": "^1|^2",
  5565. "symfony/deprecation-contracts": "^2.1",
  5566. "symfony/error-handler": "^4.4|^5.0",
  5567. "symfony/event-dispatcher": "^5.0",
  5568. "symfony/http-client-contracts": "^1.1|^2",
  5569. "symfony/http-foundation": "^5.3.7",
  5570. "symfony/polyfill-ctype": "^1.8",
  5571. "symfony/polyfill-php73": "^1.9",
  5572. "symfony/polyfill-php80": "^1.16"
  5573. },
  5574. "conflict": {
  5575. "symfony/browser-kit": "<4.4",
  5576. "symfony/cache": "<5.0",
  5577. "symfony/config": "<5.0",
  5578. "symfony/console": "<4.4",
  5579. "symfony/dependency-injection": "<5.3",
  5580. "symfony/doctrine-bridge": "<5.0",
  5581. "symfony/form": "<5.0",
  5582. "symfony/http-client": "<5.0",
  5583. "symfony/mailer": "<5.0",
  5584. "symfony/messenger": "<5.0",
  5585. "symfony/translation": "<5.0",
  5586. "symfony/twig-bridge": "<5.0",
  5587. "symfony/validator": "<5.0",
  5588. "twig/twig": "<2.13"
  5589. },
  5590. "provide": {
  5591. "psr/log-implementation": "1.0|2.0"
  5592. },
  5593. "require-dev": {
  5594. "psr/cache": "^1.0|^2.0|^3.0",
  5595. "symfony/browser-kit": "^4.4|^5.0",
  5596. "symfony/config": "^5.0",
  5597. "symfony/console": "^4.4|^5.0",
  5598. "symfony/css-selector": "^4.4|^5.0",
  5599. "symfony/dependency-injection": "^5.3",
  5600. "symfony/dom-crawler": "^4.4|^5.0",
  5601. "symfony/expression-language": "^4.4|^5.0",
  5602. "symfony/finder": "^4.4|^5.0",
  5603. "symfony/process": "^4.4|^5.0",
  5604. "symfony/routing": "^4.4|^5.0",
  5605. "symfony/stopwatch": "^4.4|^5.0",
  5606. "symfony/translation": "^4.4|^5.0",
  5607. "symfony/translation-contracts": "^1.1|^2",
  5608. "twig/twig": "^2.13|^3.0.4"
  5609. },
  5610. "suggest": {
  5611. "symfony/browser-kit": "",
  5612. "symfony/config": "",
  5613. "symfony/console": "",
  5614. "symfony/dependency-injection": ""
  5615. },
  5616. "type": "library",
  5617. "autoload": {
  5618. "psr-4": {
  5619. "Symfony\\Component\\HttpKernel\\": ""
  5620. },
  5621. "exclude-from-classmap": [
  5622. "/Tests/"
  5623. ]
  5624. },
  5625. "notification-url": "https://packagist.org/downloads/",
  5626. "license": [
  5627. "MIT"
  5628. ],
  5629. "authors": [
  5630. {
  5631. "name": "Fabien Potencier",
  5632. "email": "fabien@symfony.com"
  5633. },
  5634. {
  5635. "name": "Symfony Community",
  5636. "homepage": "https://symfony.com/contributors"
  5637. }
  5638. ],
  5639. "description": "Provides a structured process for converting a Request into a Response",
  5640. "homepage": "https://symfony.com",
  5641. "support": {
  5642. "source": "https://github.com/symfony/http-kernel/tree/v5.3.7"
  5643. },
  5644. "funding": [
  5645. {
  5646. "url": "https://symfony.com/sponsor",
  5647. "type": "custom"
  5648. },
  5649. {
  5650. "url": "https://github.com/fabpot",
  5651. "type": "github"
  5652. },
  5653. {
  5654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5655. "type": "tidelift"
  5656. }
  5657. ],
  5658. "time": "2021-08-30T12:37:19+00:00"
  5659. },
  5660. {
  5661. "name": "symfony/mime",
  5662. "version": "v5.3.7",
  5663. "source": {
  5664. "type": "git",
  5665. "url": "https://github.com/symfony/mime.git",
  5666. "reference": "ae887cb3b044658676129f5e97aeb7e9eb69c2d8"
  5667. },
  5668. "dist": {
  5669. "type": "zip",
  5670. "url": "https://api.github.com/repos/symfony/mime/zipball/ae887cb3b044658676129f5e97aeb7e9eb69c2d8",
  5671. "reference": "ae887cb3b044658676129f5e97aeb7e9eb69c2d8",
  5672. "shasum": "",
  5673. "mirrors": [
  5674. {
  5675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5676. "preferred": true
  5677. }
  5678. ]
  5679. },
  5680. "require": {
  5681. "php": ">=7.2.5",
  5682. "symfony/deprecation-contracts": "^2.1",
  5683. "symfony/polyfill-intl-idn": "^1.10",
  5684. "symfony/polyfill-mbstring": "^1.0",
  5685. "symfony/polyfill-php80": "^1.16"
  5686. },
  5687. "conflict": {
  5688. "egulias/email-validator": "~3.0.0",
  5689. "phpdocumentor/reflection-docblock": "<3.2.2",
  5690. "phpdocumentor/type-resolver": "<1.4.0",
  5691. "symfony/mailer": "<4.4"
  5692. },
  5693. "require-dev": {
  5694. "egulias/email-validator": "^2.1.10|^3.1",
  5695. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5696. "symfony/dependency-injection": "^4.4|^5.0",
  5697. "symfony/property-access": "^4.4|^5.1",
  5698. "symfony/property-info": "^4.4|^5.1",
  5699. "symfony/serializer": "^5.2"
  5700. },
  5701. "type": "library",
  5702. "autoload": {
  5703. "psr-4": {
  5704. "Symfony\\Component\\Mime\\": ""
  5705. },
  5706. "exclude-from-classmap": [
  5707. "/Tests/"
  5708. ]
  5709. },
  5710. "notification-url": "https://packagist.org/downloads/",
  5711. "license": [
  5712. "MIT"
  5713. ],
  5714. "authors": [
  5715. {
  5716. "name": "Fabien Potencier",
  5717. "email": "fabien@symfony.com"
  5718. },
  5719. {
  5720. "name": "Symfony Community",
  5721. "homepage": "https://symfony.com/contributors"
  5722. }
  5723. ],
  5724. "description": "Allows manipulating MIME messages",
  5725. "homepage": "https://symfony.com",
  5726. "keywords": [
  5727. "mime",
  5728. "mime-type"
  5729. ],
  5730. "support": {
  5731. "source": "https://github.com/symfony/mime/tree/v5.3.7"
  5732. },
  5733. "funding": [
  5734. {
  5735. "url": "https://symfony.com/sponsor",
  5736. "type": "custom"
  5737. },
  5738. {
  5739. "url": "https://github.com/fabpot",
  5740. "type": "github"
  5741. },
  5742. {
  5743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5744. "type": "tidelift"
  5745. }
  5746. ],
  5747. "time": "2021-08-20T11:40:01+00:00"
  5748. },
  5749. {
  5750. "name": "symfony/options-resolver",
  5751. "version": "v5.3.7",
  5752. "source": {
  5753. "type": "git",
  5754. "url": "https://github.com/symfony/options-resolver.git",
  5755. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e"
  5756. },
  5757. "dist": {
  5758. "type": "zip",
  5759. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5760. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5761. "shasum": "",
  5762. "mirrors": [
  5763. {
  5764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5765. "preferred": true
  5766. }
  5767. ]
  5768. },
  5769. "require": {
  5770. "php": ">=7.2.5",
  5771. "symfony/deprecation-contracts": "^2.1",
  5772. "symfony/polyfill-php73": "~1.0",
  5773. "symfony/polyfill-php80": "^1.16"
  5774. },
  5775. "type": "library",
  5776. "autoload": {
  5777. "psr-4": {
  5778. "Symfony\\Component\\OptionsResolver\\": ""
  5779. },
  5780. "exclude-from-classmap": [
  5781. "/Tests/"
  5782. ]
  5783. },
  5784. "notification-url": "https://packagist.org/downloads/",
  5785. "license": [
  5786. "MIT"
  5787. ],
  5788. "authors": [
  5789. {
  5790. "name": "Fabien Potencier",
  5791. "email": "fabien@symfony.com"
  5792. },
  5793. {
  5794. "name": "Symfony Community",
  5795. "homepage": "https://symfony.com/contributors"
  5796. }
  5797. ],
  5798. "description": "Provides an improved replacement for the array_replace PHP function",
  5799. "homepage": "https://symfony.com",
  5800. "keywords": [
  5801. "config",
  5802. "configuration",
  5803. "options"
  5804. ],
  5805. "support": {
  5806. "source": "https://github.com/symfony/options-resolver/tree/v5.3.7"
  5807. },
  5808. "funding": [
  5809. {
  5810. "url": "https://symfony.com/sponsor",
  5811. "type": "custom"
  5812. },
  5813. {
  5814. "url": "https://github.com/fabpot",
  5815. "type": "github"
  5816. },
  5817. {
  5818. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5819. "type": "tidelift"
  5820. }
  5821. ],
  5822. "time": "2021-08-04T21:20:46+00:00"
  5823. },
  5824. {
  5825. "name": "symfony/polyfill-ctype",
  5826. "version": "v1.23.0",
  5827. "source": {
  5828. "type": "git",
  5829. "url": "https://github.com/symfony/polyfill-ctype.git",
  5830. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5831. },
  5832. "dist": {
  5833. "type": "zip",
  5834. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5835. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5836. "shasum": "",
  5837. "mirrors": [
  5838. {
  5839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5840. "preferred": true
  5841. }
  5842. ]
  5843. },
  5844. "require": {
  5845. "php": ">=7.1"
  5846. },
  5847. "suggest": {
  5848. "ext-ctype": "For best performance"
  5849. },
  5850. "type": "library",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-main": "1.23-dev"
  5854. },
  5855. "thanks": {
  5856. "name": "symfony/polyfill",
  5857. "url": "https://github.com/symfony/polyfill"
  5858. }
  5859. },
  5860. "autoload": {
  5861. "psr-4": {
  5862. "Symfony\\Polyfill\\Ctype\\": ""
  5863. },
  5864. "files": [
  5865. "bootstrap.php"
  5866. ]
  5867. },
  5868. "notification-url": "https://packagist.org/downloads/",
  5869. "license": [
  5870. "MIT"
  5871. ],
  5872. "authors": [
  5873. {
  5874. "name": "Gert de Pagter",
  5875. "email": "BackEndTea@gmail.com"
  5876. },
  5877. {
  5878. "name": "Symfony Community",
  5879. "homepage": "https://symfony.com/contributors"
  5880. }
  5881. ],
  5882. "description": "Symfony polyfill for ctype functions",
  5883. "homepage": "https://symfony.com",
  5884. "keywords": [
  5885. "compatibility",
  5886. "ctype",
  5887. "polyfill",
  5888. "portable"
  5889. ],
  5890. "support": {
  5891. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5892. },
  5893. "funding": [
  5894. {
  5895. "url": "https://symfony.com/sponsor",
  5896. "type": "custom"
  5897. },
  5898. {
  5899. "url": "https://github.com/fabpot",
  5900. "type": "github"
  5901. },
  5902. {
  5903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5904. "type": "tidelift"
  5905. }
  5906. ],
  5907. "time": "2021-02-19T12:13:01+00:00"
  5908. },
  5909. {
  5910. "name": "symfony/polyfill-iconv",
  5911. "version": "v1.23.0",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/symfony/polyfill-iconv.git",
  5915. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5920. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5921. "shasum": "",
  5922. "mirrors": [
  5923. {
  5924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5925. "preferred": true
  5926. }
  5927. ]
  5928. },
  5929. "require": {
  5930. "php": ">=7.1"
  5931. },
  5932. "suggest": {
  5933. "ext-iconv": "For best performance"
  5934. },
  5935. "type": "library",
  5936. "extra": {
  5937. "branch-alias": {
  5938. "dev-main": "1.23-dev"
  5939. },
  5940. "thanks": {
  5941. "name": "symfony/polyfill",
  5942. "url": "https://github.com/symfony/polyfill"
  5943. }
  5944. },
  5945. "autoload": {
  5946. "psr-4": {
  5947. "Symfony\\Polyfill\\Iconv\\": ""
  5948. },
  5949. "files": [
  5950. "bootstrap.php"
  5951. ]
  5952. },
  5953. "notification-url": "https://packagist.org/downloads/",
  5954. "license": [
  5955. "MIT"
  5956. ],
  5957. "authors": [
  5958. {
  5959. "name": "Nicolas Grekas",
  5960. "email": "p@tchwork.com"
  5961. },
  5962. {
  5963. "name": "Symfony Community",
  5964. "homepage": "https://symfony.com/contributors"
  5965. }
  5966. ],
  5967. "description": "Symfony polyfill for the Iconv extension",
  5968. "homepage": "https://symfony.com",
  5969. "keywords": [
  5970. "compatibility",
  5971. "iconv",
  5972. "polyfill",
  5973. "portable",
  5974. "shim"
  5975. ],
  5976. "support": {
  5977. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://symfony.com/sponsor",
  5982. "type": "custom"
  5983. },
  5984. {
  5985. "url": "https://github.com/fabpot",
  5986. "type": "github"
  5987. },
  5988. {
  5989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5990. "type": "tidelift"
  5991. }
  5992. ],
  5993. "time": "2021-05-27T09:27:20+00:00"
  5994. },
  5995. {
  5996. "name": "symfony/polyfill-intl-grapheme",
  5997. "version": "v1.23.1",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6001. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  6006. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  6007. "shasum": "",
  6008. "mirrors": [
  6009. {
  6010. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6011. "preferred": true
  6012. }
  6013. ]
  6014. },
  6015. "require": {
  6016. "php": ">=7.1"
  6017. },
  6018. "suggest": {
  6019. "ext-intl": "For best performance"
  6020. },
  6021. "type": "library",
  6022. "extra": {
  6023. "branch-alias": {
  6024. "dev-main": "1.23-dev"
  6025. },
  6026. "thanks": {
  6027. "name": "symfony/polyfill",
  6028. "url": "https://github.com/symfony/polyfill"
  6029. }
  6030. },
  6031. "autoload": {
  6032. "psr-4": {
  6033. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6034. },
  6035. "files": [
  6036. "bootstrap.php"
  6037. ]
  6038. },
  6039. "notification-url": "https://packagist.org/downloads/",
  6040. "license": [
  6041. "MIT"
  6042. ],
  6043. "authors": [
  6044. {
  6045. "name": "Nicolas Grekas",
  6046. "email": "p@tchwork.com"
  6047. },
  6048. {
  6049. "name": "Symfony Community",
  6050. "homepage": "https://symfony.com/contributors"
  6051. }
  6052. ],
  6053. "description": "Symfony polyfill for intl's grapheme_* functions",
  6054. "homepage": "https://symfony.com",
  6055. "keywords": [
  6056. "compatibility",
  6057. "grapheme",
  6058. "intl",
  6059. "polyfill",
  6060. "portable",
  6061. "shim"
  6062. ],
  6063. "support": {
  6064. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  6065. },
  6066. "funding": [
  6067. {
  6068. "url": "https://symfony.com/sponsor",
  6069. "type": "custom"
  6070. },
  6071. {
  6072. "url": "https://github.com/fabpot",
  6073. "type": "github"
  6074. },
  6075. {
  6076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6077. "type": "tidelift"
  6078. }
  6079. ],
  6080. "time": "2021-05-27T12:26:48+00:00"
  6081. },
  6082. {
  6083. "name": "symfony/polyfill-intl-idn",
  6084. "version": "v1.23.0",
  6085. "source": {
  6086. "type": "git",
  6087. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6088. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6089. },
  6090. "dist": {
  6091. "type": "zip",
  6092. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6093. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6094. "shasum": "",
  6095. "mirrors": [
  6096. {
  6097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6098. "preferred": true
  6099. }
  6100. ]
  6101. },
  6102. "require": {
  6103. "php": ">=7.1",
  6104. "symfony/polyfill-intl-normalizer": "^1.10",
  6105. "symfony/polyfill-php72": "^1.10"
  6106. },
  6107. "suggest": {
  6108. "ext-intl": "For best performance"
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-main": "1.23-dev"
  6114. },
  6115. "thanks": {
  6116. "name": "symfony/polyfill",
  6117. "url": "https://github.com/symfony/polyfill"
  6118. }
  6119. },
  6120. "autoload": {
  6121. "psr-4": {
  6122. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6123. },
  6124. "files": [
  6125. "bootstrap.php"
  6126. ]
  6127. },
  6128. "notification-url": "https://packagist.org/downloads/",
  6129. "license": [
  6130. "MIT"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "Laurent Bassin",
  6135. "email": "laurent@bassin.info"
  6136. },
  6137. {
  6138. "name": "Trevor Rowbotham",
  6139. "email": "trevor.rowbotham@pm.me"
  6140. },
  6141. {
  6142. "name": "Symfony Community",
  6143. "homepage": "https://symfony.com/contributors"
  6144. }
  6145. ],
  6146. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6147. "homepage": "https://symfony.com",
  6148. "keywords": [
  6149. "compatibility",
  6150. "idn",
  6151. "intl",
  6152. "polyfill",
  6153. "portable",
  6154. "shim"
  6155. ],
  6156. "support": {
  6157. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6158. },
  6159. "funding": [
  6160. {
  6161. "url": "https://symfony.com/sponsor",
  6162. "type": "custom"
  6163. },
  6164. {
  6165. "url": "https://github.com/fabpot",
  6166. "type": "github"
  6167. },
  6168. {
  6169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6170. "type": "tidelift"
  6171. }
  6172. ],
  6173. "time": "2021-05-27T09:27:20+00:00"
  6174. },
  6175. {
  6176. "name": "symfony/polyfill-intl-normalizer",
  6177. "version": "v1.23.0",
  6178. "source": {
  6179. "type": "git",
  6180. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6181. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6182. },
  6183. "dist": {
  6184. "type": "zip",
  6185. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6186. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6187. "shasum": "",
  6188. "mirrors": [
  6189. {
  6190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6191. "preferred": true
  6192. }
  6193. ]
  6194. },
  6195. "require": {
  6196. "php": ">=7.1"
  6197. },
  6198. "suggest": {
  6199. "ext-intl": "For best performance"
  6200. },
  6201. "type": "library",
  6202. "extra": {
  6203. "branch-alias": {
  6204. "dev-main": "1.23-dev"
  6205. },
  6206. "thanks": {
  6207. "name": "symfony/polyfill",
  6208. "url": "https://github.com/symfony/polyfill"
  6209. }
  6210. },
  6211. "autoload": {
  6212. "psr-4": {
  6213. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6214. },
  6215. "files": [
  6216. "bootstrap.php"
  6217. ],
  6218. "classmap": [
  6219. "Resources/stubs"
  6220. ]
  6221. },
  6222. "notification-url": "https://packagist.org/downloads/",
  6223. "license": [
  6224. "MIT"
  6225. ],
  6226. "authors": [
  6227. {
  6228. "name": "Nicolas Grekas",
  6229. "email": "p@tchwork.com"
  6230. },
  6231. {
  6232. "name": "Symfony Community",
  6233. "homepage": "https://symfony.com/contributors"
  6234. }
  6235. ],
  6236. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6237. "homepage": "https://symfony.com",
  6238. "keywords": [
  6239. "compatibility",
  6240. "intl",
  6241. "normalizer",
  6242. "polyfill",
  6243. "portable",
  6244. "shim"
  6245. ],
  6246. "support": {
  6247. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6248. },
  6249. "funding": [
  6250. {
  6251. "url": "https://symfony.com/sponsor",
  6252. "type": "custom"
  6253. },
  6254. {
  6255. "url": "https://github.com/fabpot",
  6256. "type": "github"
  6257. },
  6258. {
  6259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6260. "type": "tidelift"
  6261. }
  6262. ],
  6263. "time": "2021-02-19T12:13:01+00:00"
  6264. },
  6265. {
  6266. "name": "symfony/polyfill-mbstring",
  6267. "version": "v1.23.1",
  6268. "source": {
  6269. "type": "git",
  6270. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6271. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  6272. },
  6273. "dist": {
  6274. "type": "zip",
  6275. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6276. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6277. "shasum": "",
  6278. "mirrors": [
  6279. {
  6280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6281. "preferred": true
  6282. }
  6283. ]
  6284. },
  6285. "require": {
  6286. "php": ">=7.1"
  6287. },
  6288. "suggest": {
  6289. "ext-mbstring": "For best performance"
  6290. },
  6291. "type": "library",
  6292. "extra": {
  6293. "branch-alias": {
  6294. "dev-main": "1.23-dev"
  6295. },
  6296. "thanks": {
  6297. "name": "symfony/polyfill",
  6298. "url": "https://github.com/symfony/polyfill"
  6299. }
  6300. },
  6301. "autoload": {
  6302. "psr-4": {
  6303. "Symfony\\Polyfill\\Mbstring\\": ""
  6304. },
  6305. "files": [
  6306. "bootstrap.php"
  6307. ]
  6308. },
  6309. "notification-url": "https://packagist.org/downloads/",
  6310. "license": [
  6311. "MIT"
  6312. ],
  6313. "authors": [
  6314. {
  6315. "name": "Nicolas Grekas",
  6316. "email": "p@tchwork.com"
  6317. },
  6318. {
  6319. "name": "Symfony Community",
  6320. "homepage": "https://symfony.com/contributors"
  6321. }
  6322. ],
  6323. "description": "Symfony polyfill for the Mbstring extension",
  6324. "homepage": "https://symfony.com",
  6325. "keywords": [
  6326. "compatibility",
  6327. "mbstring",
  6328. "polyfill",
  6329. "portable",
  6330. "shim"
  6331. ],
  6332. "support": {
  6333. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://symfony.com/sponsor",
  6338. "type": "custom"
  6339. },
  6340. {
  6341. "url": "https://github.com/fabpot",
  6342. "type": "github"
  6343. },
  6344. {
  6345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6346. "type": "tidelift"
  6347. }
  6348. ],
  6349. "time": "2021-05-27T12:26:48+00:00"
  6350. },
  6351. {
  6352. "name": "symfony/polyfill-php72",
  6353. "version": "v1.23.0",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/symfony/polyfill-php72.git",
  6357. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6362. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6363. "shasum": "",
  6364. "mirrors": [
  6365. {
  6366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6367. "preferred": true
  6368. }
  6369. ]
  6370. },
  6371. "require": {
  6372. "php": ">=7.1"
  6373. },
  6374. "type": "library",
  6375. "extra": {
  6376. "branch-alias": {
  6377. "dev-main": "1.23-dev"
  6378. },
  6379. "thanks": {
  6380. "name": "symfony/polyfill",
  6381. "url": "https://github.com/symfony/polyfill"
  6382. }
  6383. },
  6384. "autoload": {
  6385. "psr-4": {
  6386. "Symfony\\Polyfill\\Php72\\": ""
  6387. },
  6388. "files": [
  6389. "bootstrap.php"
  6390. ]
  6391. },
  6392. "notification-url": "https://packagist.org/downloads/",
  6393. "license": [
  6394. "MIT"
  6395. ],
  6396. "authors": [
  6397. {
  6398. "name": "Nicolas Grekas",
  6399. "email": "p@tchwork.com"
  6400. },
  6401. {
  6402. "name": "Symfony Community",
  6403. "homepage": "https://symfony.com/contributors"
  6404. }
  6405. ],
  6406. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6407. "homepage": "https://symfony.com",
  6408. "keywords": [
  6409. "compatibility",
  6410. "polyfill",
  6411. "portable",
  6412. "shim"
  6413. ],
  6414. "support": {
  6415. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6416. },
  6417. "funding": [
  6418. {
  6419. "url": "https://symfony.com/sponsor",
  6420. "type": "custom"
  6421. },
  6422. {
  6423. "url": "https://github.com/fabpot",
  6424. "type": "github"
  6425. },
  6426. {
  6427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6428. "type": "tidelift"
  6429. }
  6430. ],
  6431. "time": "2021-05-27T09:17:38+00:00"
  6432. },
  6433. {
  6434. "name": "symfony/polyfill-php73",
  6435. "version": "v1.23.0",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/symfony/polyfill-php73.git",
  6439. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6444. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6445. "shasum": "",
  6446. "mirrors": [
  6447. {
  6448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6449. "preferred": true
  6450. }
  6451. ]
  6452. },
  6453. "require": {
  6454. "php": ">=7.1"
  6455. },
  6456. "type": "library",
  6457. "extra": {
  6458. "branch-alias": {
  6459. "dev-main": "1.23-dev"
  6460. },
  6461. "thanks": {
  6462. "name": "symfony/polyfill",
  6463. "url": "https://github.com/symfony/polyfill"
  6464. }
  6465. },
  6466. "autoload": {
  6467. "psr-4": {
  6468. "Symfony\\Polyfill\\Php73\\": ""
  6469. },
  6470. "files": [
  6471. "bootstrap.php"
  6472. ],
  6473. "classmap": [
  6474. "Resources/stubs"
  6475. ]
  6476. },
  6477. "notification-url": "https://packagist.org/downloads/",
  6478. "license": [
  6479. "MIT"
  6480. ],
  6481. "authors": [
  6482. {
  6483. "name": "Nicolas Grekas",
  6484. "email": "p@tchwork.com"
  6485. },
  6486. {
  6487. "name": "Symfony Community",
  6488. "homepage": "https://symfony.com/contributors"
  6489. }
  6490. ],
  6491. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6492. "homepage": "https://symfony.com",
  6493. "keywords": [
  6494. "compatibility",
  6495. "polyfill",
  6496. "portable",
  6497. "shim"
  6498. ],
  6499. "support": {
  6500. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6501. },
  6502. "funding": [
  6503. {
  6504. "url": "https://symfony.com/sponsor",
  6505. "type": "custom"
  6506. },
  6507. {
  6508. "url": "https://github.com/fabpot",
  6509. "type": "github"
  6510. },
  6511. {
  6512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6513. "type": "tidelift"
  6514. }
  6515. ],
  6516. "time": "2021-02-19T12:13:01+00:00"
  6517. },
  6518. {
  6519. "name": "symfony/polyfill-php80",
  6520. "version": "v1.23.1",
  6521. "source": {
  6522. "type": "git",
  6523. "url": "https://github.com/symfony/polyfill-php80.git",
  6524. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6525. },
  6526. "dist": {
  6527. "type": "zip",
  6528. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6529. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6530. "shasum": "",
  6531. "mirrors": [
  6532. {
  6533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6534. "preferred": true
  6535. }
  6536. ]
  6537. },
  6538. "require": {
  6539. "php": ">=7.1"
  6540. },
  6541. "type": "library",
  6542. "extra": {
  6543. "branch-alias": {
  6544. "dev-main": "1.23-dev"
  6545. },
  6546. "thanks": {
  6547. "name": "symfony/polyfill",
  6548. "url": "https://github.com/symfony/polyfill"
  6549. }
  6550. },
  6551. "autoload": {
  6552. "psr-4": {
  6553. "Symfony\\Polyfill\\Php80\\": ""
  6554. },
  6555. "files": [
  6556. "bootstrap.php"
  6557. ],
  6558. "classmap": [
  6559. "Resources/stubs"
  6560. ]
  6561. },
  6562. "notification-url": "https://packagist.org/downloads/",
  6563. "license": [
  6564. "MIT"
  6565. ],
  6566. "authors": [
  6567. {
  6568. "name": "Ion Bazan",
  6569. "email": "ion.bazan@gmail.com"
  6570. },
  6571. {
  6572. "name": "Nicolas Grekas",
  6573. "email": "p@tchwork.com"
  6574. },
  6575. {
  6576. "name": "Symfony Community",
  6577. "homepage": "https://symfony.com/contributors"
  6578. }
  6579. ],
  6580. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6581. "homepage": "https://symfony.com",
  6582. "keywords": [
  6583. "compatibility",
  6584. "polyfill",
  6585. "portable",
  6586. "shim"
  6587. ],
  6588. "support": {
  6589. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  6590. },
  6591. "funding": [
  6592. {
  6593. "url": "https://symfony.com/sponsor",
  6594. "type": "custom"
  6595. },
  6596. {
  6597. "url": "https://github.com/fabpot",
  6598. "type": "github"
  6599. },
  6600. {
  6601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6602. "type": "tidelift"
  6603. }
  6604. ],
  6605. "time": "2021-07-28T13:41:28+00:00"
  6606. },
  6607. {
  6608. "name": "symfony/polyfill-php81",
  6609. "version": "v1.23.0",
  6610. "source": {
  6611. "type": "git",
  6612. "url": "https://github.com/symfony/polyfill-php81.git",
  6613. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  6614. },
  6615. "dist": {
  6616. "type": "zip",
  6617. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  6618. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  6619. "shasum": "",
  6620. "mirrors": [
  6621. {
  6622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6623. "preferred": true
  6624. }
  6625. ]
  6626. },
  6627. "require": {
  6628. "php": ">=7.1"
  6629. },
  6630. "type": "library",
  6631. "extra": {
  6632. "branch-alias": {
  6633. "dev-main": "1.23-dev"
  6634. },
  6635. "thanks": {
  6636. "name": "symfony/polyfill",
  6637. "url": "https://github.com/symfony/polyfill"
  6638. }
  6639. },
  6640. "autoload": {
  6641. "psr-4": {
  6642. "Symfony\\Polyfill\\Php81\\": ""
  6643. },
  6644. "files": [
  6645. "bootstrap.php"
  6646. ],
  6647. "classmap": [
  6648. "Resources/stubs"
  6649. ]
  6650. },
  6651. "notification-url": "https://packagist.org/downloads/",
  6652. "license": [
  6653. "MIT"
  6654. ],
  6655. "authors": [
  6656. {
  6657. "name": "Nicolas Grekas",
  6658. "email": "p@tchwork.com"
  6659. },
  6660. {
  6661. "name": "Symfony Community",
  6662. "homepage": "https://symfony.com/contributors"
  6663. }
  6664. ],
  6665. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6666. "homepage": "https://symfony.com",
  6667. "keywords": [
  6668. "compatibility",
  6669. "polyfill",
  6670. "portable",
  6671. "shim"
  6672. ],
  6673. "support": {
  6674. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  6675. },
  6676. "funding": [
  6677. {
  6678. "url": "https://symfony.com/sponsor",
  6679. "type": "custom"
  6680. },
  6681. {
  6682. "url": "https://github.com/fabpot",
  6683. "type": "github"
  6684. },
  6685. {
  6686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6687. "type": "tidelift"
  6688. }
  6689. ],
  6690. "time": "2021-05-21T13:25:03+00:00"
  6691. },
  6692. {
  6693. "name": "symfony/process",
  6694. "version": "v5.3.7",
  6695. "source": {
  6696. "type": "git",
  6697. "url": "https://github.com/symfony/process.git",
  6698. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967"
  6699. },
  6700. "dist": {
  6701. "type": "zip",
  6702. "url": "https://api.github.com/repos/symfony/process/zipball/38f26c7d6ed535217ea393e05634cb0b244a1967",
  6703. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967",
  6704. "shasum": "",
  6705. "mirrors": [
  6706. {
  6707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6708. "preferred": true
  6709. }
  6710. ]
  6711. },
  6712. "require": {
  6713. "php": ">=7.2.5",
  6714. "symfony/polyfill-php80": "^1.16"
  6715. },
  6716. "type": "library",
  6717. "autoload": {
  6718. "psr-4": {
  6719. "Symfony\\Component\\Process\\": ""
  6720. },
  6721. "exclude-from-classmap": [
  6722. "/Tests/"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Fabien Potencier",
  6732. "email": "fabien@symfony.com"
  6733. },
  6734. {
  6735. "name": "Symfony Community",
  6736. "homepage": "https://symfony.com/contributors"
  6737. }
  6738. ],
  6739. "description": "Executes commands in sub-processes",
  6740. "homepage": "https://symfony.com",
  6741. "support": {
  6742. "source": "https://github.com/symfony/process/tree/v5.3.7"
  6743. },
  6744. "funding": [
  6745. {
  6746. "url": "https://symfony.com/sponsor",
  6747. "type": "custom"
  6748. },
  6749. {
  6750. "url": "https://github.com/fabpot",
  6751. "type": "github"
  6752. },
  6753. {
  6754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6755. "type": "tidelift"
  6756. }
  6757. ],
  6758. "time": "2021-08-04T21:20:46+00:00"
  6759. },
  6760. {
  6761. "name": "symfony/property-access",
  6762. "version": "v5.3.7",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/symfony/property-access.git",
  6766. "reference": "a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/symfony/property-access/zipball/a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589",
  6771. "reference": "a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589",
  6772. "shasum": "",
  6773. "mirrors": [
  6774. {
  6775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6776. "preferred": true
  6777. }
  6778. ]
  6779. },
  6780. "require": {
  6781. "php": ">=7.2.5",
  6782. "symfony/deprecation-contracts": "^2.1",
  6783. "symfony/polyfill-php80": "^1.16",
  6784. "symfony/property-info": "^5.2"
  6785. },
  6786. "require-dev": {
  6787. "symfony/cache": "^4.4|^5.0"
  6788. },
  6789. "suggest": {
  6790. "psr/cache-implementation": "To cache access methods."
  6791. },
  6792. "type": "library",
  6793. "autoload": {
  6794. "psr-4": {
  6795. "Symfony\\Component\\PropertyAccess\\": ""
  6796. },
  6797. "exclude-from-classmap": [
  6798. "/Tests/"
  6799. ]
  6800. },
  6801. "notification-url": "https://packagist.org/downloads/",
  6802. "license": [
  6803. "MIT"
  6804. ],
  6805. "authors": [
  6806. {
  6807. "name": "Fabien Potencier",
  6808. "email": "fabien@symfony.com"
  6809. },
  6810. {
  6811. "name": "Symfony Community",
  6812. "homepage": "https://symfony.com/contributors"
  6813. }
  6814. ],
  6815. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6816. "homepage": "https://symfony.com",
  6817. "keywords": [
  6818. "access",
  6819. "array",
  6820. "extraction",
  6821. "index",
  6822. "injection",
  6823. "object",
  6824. "property",
  6825. "property path",
  6826. "reflection"
  6827. ],
  6828. "support": {
  6829. "source": "https://github.com/symfony/property-access/tree/v5.3.7"
  6830. },
  6831. "funding": [
  6832. {
  6833. "url": "https://symfony.com/sponsor",
  6834. "type": "custom"
  6835. },
  6836. {
  6837. "url": "https://github.com/fabpot",
  6838. "type": "github"
  6839. },
  6840. {
  6841. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6842. "type": "tidelift"
  6843. }
  6844. ],
  6845. "time": "2021-08-09T12:23:10+00:00"
  6846. },
  6847. {
  6848. "name": "symfony/property-info",
  6849. "version": "v5.3.7",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/symfony/property-info.git",
  6853. "reference": "7202b6c93a07df5df83eb58e3757dffb77fc5d90"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/symfony/property-info/zipball/7202b6c93a07df5df83eb58e3757dffb77fc5d90",
  6858. "reference": "7202b6c93a07df5df83eb58e3757dffb77fc5d90",
  6859. "shasum": "",
  6860. "mirrors": [
  6861. {
  6862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6863. "preferred": true
  6864. }
  6865. ]
  6866. },
  6867. "require": {
  6868. "php": ">=7.2.5",
  6869. "symfony/deprecation-contracts": "^2.1",
  6870. "symfony/polyfill-php80": "^1.16",
  6871. "symfony/string": "^5.1"
  6872. },
  6873. "conflict": {
  6874. "phpdocumentor/reflection-docblock": "<3.2.2",
  6875. "phpdocumentor/type-resolver": "<1.4.0",
  6876. "symfony/dependency-injection": "<4.4"
  6877. },
  6878. "require-dev": {
  6879. "doctrine/annotations": "^1.10.4",
  6880. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6881. "symfony/cache": "^4.4|^5.0",
  6882. "symfony/dependency-injection": "^4.4|^5.0",
  6883. "symfony/serializer": "^4.4|^5.0"
  6884. },
  6885. "suggest": {
  6886. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6887. "psr/cache-implementation": "To cache results",
  6888. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6889. "symfony/serializer": "To use Serializer metadata"
  6890. },
  6891. "type": "library",
  6892. "autoload": {
  6893. "psr-4": {
  6894. "Symfony\\Component\\PropertyInfo\\": ""
  6895. },
  6896. "exclude-from-classmap": [
  6897. "/Tests/"
  6898. ]
  6899. },
  6900. "notification-url": "https://packagist.org/downloads/",
  6901. "license": [
  6902. "MIT"
  6903. ],
  6904. "authors": [
  6905. {
  6906. "name": "Kévin Dunglas",
  6907. "email": "dunglas@gmail.com"
  6908. },
  6909. {
  6910. "name": "Symfony Community",
  6911. "homepage": "https://symfony.com/contributors"
  6912. }
  6913. ],
  6914. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6915. "homepage": "https://symfony.com",
  6916. "keywords": [
  6917. "doctrine",
  6918. "phpdoc",
  6919. "property",
  6920. "symfony",
  6921. "type",
  6922. "validator"
  6923. ],
  6924. "support": {
  6925. "source": "https://github.com/symfony/property-info/tree/v5.3.7"
  6926. },
  6927. "funding": [
  6928. {
  6929. "url": "https://symfony.com/sponsor",
  6930. "type": "custom"
  6931. },
  6932. {
  6933. "url": "https://github.com/fabpot",
  6934. "type": "github"
  6935. },
  6936. {
  6937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6938. "type": "tidelift"
  6939. }
  6940. ],
  6941. "time": "2021-08-23T12:57:24+00:00"
  6942. },
  6943. {
  6944. "name": "symfony/routing",
  6945. "version": "v5.3.7",
  6946. "source": {
  6947. "type": "git",
  6948. "url": "https://github.com/symfony/routing.git",
  6949. "reference": "be865017746fe869007d94220ad3f5297951811b"
  6950. },
  6951. "dist": {
  6952. "type": "zip",
  6953. "url": "https://api.github.com/repos/symfony/routing/zipball/be865017746fe869007d94220ad3f5297951811b",
  6954. "reference": "be865017746fe869007d94220ad3f5297951811b",
  6955. "shasum": "",
  6956. "mirrors": [
  6957. {
  6958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6959. "preferred": true
  6960. }
  6961. ]
  6962. },
  6963. "require": {
  6964. "php": ">=7.2.5",
  6965. "symfony/deprecation-contracts": "^2.1",
  6966. "symfony/polyfill-php80": "^1.16"
  6967. },
  6968. "conflict": {
  6969. "doctrine/annotations": "<1.12",
  6970. "symfony/config": "<5.3",
  6971. "symfony/dependency-injection": "<4.4",
  6972. "symfony/yaml": "<4.4"
  6973. },
  6974. "require-dev": {
  6975. "doctrine/annotations": "^1.12",
  6976. "psr/log": "^1|^2|^3",
  6977. "symfony/config": "^5.3",
  6978. "symfony/dependency-injection": "^4.4|^5.0",
  6979. "symfony/expression-language": "^4.4|^5.0",
  6980. "symfony/http-foundation": "^4.4|^5.0",
  6981. "symfony/yaml": "^4.4|^5.0"
  6982. },
  6983. "suggest": {
  6984. "symfony/config": "For using the all-in-one router or any loader",
  6985. "symfony/expression-language": "For using expression matching",
  6986. "symfony/http-foundation": "For using a Symfony Request object",
  6987. "symfony/yaml": "For using the YAML loader"
  6988. },
  6989. "type": "library",
  6990. "autoload": {
  6991. "psr-4": {
  6992. "Symfony\\Component\\Routing\\": ""
  6993. },
  6994. "exclude-from-classmap": [
  6995. "/Tests/"
  6996. ]
  6997. },
  6998. "notification-url": "https://packagist.org/downloads/",
  6999. "license": [
  7000. "MIT"
  7001. ],
  7002. "authors": [
  7003. {
  7004. "name": "Fabien Potencier",
  7005. "email": "fabien@symfony.com"
  7006. },
  7007. {
  7008. "name": "Symfony Community",
  7009. "homepage": "https://symfony.com/contributors"
  7010. }
  7011. ],
  7012. "description": "Maps an HTTP request to a set of configuration variables",
  7013. "homepage": "https://symfony.com",
  7014. "keywords": [
  7015. "router",
  7016. "routing",
  7017. "uri",
  7018. "url"
  7019. ],
  7020. "support": {
  7021. "source": "https://github.com/symfony/routing/tree/v5.3.7"
  7022. },
  7023. "funding": [
  7024. {
  7025. "url": "https://symfony.com/sponsor",
  7026. "type": "custom"
  7027. },
  7028. {
  7029. "url": "https://github.com/fabpot",
  7030. "type": "github"
  7031. },
  7032. {
  7033. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7034. "type": "tidelift"
  7035. }
  7036. ],
  7037. "time": "2021-08-04T21:42:42+00:00"
  7038. },
  7039. {
  7040. "name": "symfony/service-contracts",
  7041. "version": "v2.4.0",
  7042. "source": {
  7043. "type": "git",
  7044. "url": "https://github.com/symfony/service-contracts.git",
  7045. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7046. },
  7047. "dist": {
  7048. "type": "zip",
  7049. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7050. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7051. "shasum": "",
  7052. "mirrors": [
  7053. {
  7054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7055. "preferred": true
  7056. }
  7057. ]
  7058. },
  7059. "require": {
  7060. "php": ">=7.2.5",
  7061. "psr/container": "^1.1"
  7062. },
  7063. "suggest": {
  7064. "symfony/service-implementation": ""
  7065. },
  7066. "type": "library",
  7067. "extra": {
  7068. "branch-alias": {
  7069. "dev-main": "2.4-dev"
  7070. },
  7071. "thanks": {
  7072. "name": "symfony/contracts",
  7073. "url": "https://github.com/symfony/contracts"
  7074. }
  7075. },
  7076. "autoload": {
  7077. "psr-4": {
  7078. "Symfony\\Contracts\\Service\\": ""
  7079. }
  7080. },
  7081. "notification-url": "https://packagist.org/downloads/",
  7082. "license": [
  7083. "MIT"
  7084. ],
  7085. "authors": [
  7086. {
  7087. "name": "Nicolas Grekas",
  7088. "email": "p@tchwork.com"
  7089. },
  7090. {
  7091. "name": "Symfony Community",
  7092. "homepage": "https://symfony.com/contributors"
  7093. }
  7094. ],
  7095. "description": "Generic abstractions related to writing services",
  7096. "homepage": "https://symfony.com",
  7097. "keywords": [
  7098. "abstractions",
  7099. "contracts",
  7100. "decoupling",
  7101. "interfaces",
  7102. "interoperability",
  7103. "standards"
  7104. ],
  7105. "support": {
  7106. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7107. },
  7108. "funding": [
  7109. {
  7110. "url": "https://symfony.com/sponsor",
  7111. "type": "custom"
  7112. },
  7113. {
  7114. "url": "https://github.com/fabpot",
  7115. "type": "github"
  7116. },
  7117. {
  7118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7119. "type": "tidelift"
  7120. }
  7121. ],
  7122. "time": "2021-04-01T10:43:52+00:00"
  7123. },
  7124. {
  7125. "name": "symfony/string",
  7126. "version": "v5.3.7",
  7127. "source": {
  7128. "type": "git",
  7129. "url": "https://github.com/symfony/string.git",
  7130. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5"
  7131. },
  7132. "dist": {
  7133. "type": "zip",
  7134. "url": "https://api.github.com/repos/symfony/string/zipball/8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7135. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7136. "shasum": "",
  7137. "mirrors": [
  7138. {
  7139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7140. "preferred": true
  7141. }
  7142. ]
  7143. },
  7144. "require": {
  7145. "php": ">=7.2.5",
  7146. "symfony/polyfill-ctype": "~1.8",
  7147. "symfony/polyfill-intl-grapheme": "~1.0",
  7148. "symfony/polyfill-intl-normalizer": "~1.0",
  7149. "symfony/polyfill-mbstring": "~1.0",
  7150. "symfony/polyfill-php80": "~1.15"
  7151. },
  7152. "require-dev": {
  7153. "symfony/error-handler": "^4.4|^5.0",
  7154. "symfony/http-client": "^4.4|^5.0",
  7155. "symfony/translation-contracts": "^1.1|^2",
  7156. "symfony/var-exporter": "^4.4|^5.0"
  7157. },
  7158. "type": "library",
  7159. "autoload": {
  7160. "psr-4": {
  7161. "Symfony\\Component\\String\\": ""
  7162. },
  7163. "files": [
  7164. "Resources/functions.php"
  7165. ],
  7166. "exclude-from-classmap": [
  7167. "/Tests/"
  7168. ]
  7169. },
  7170. "notification-url": "https://packagist.org/downloads/",
  7171. "license": [
  7172. "MIT"
  7173. ],
  7174. "authors": [
  7175. {
  7176. "name": "Nicolas Grekas",
  7177. "email": "p@tchwork.com"
  7178. },
  7179. {
  7180. "name": "Symfony Community",
  7181. "homepage": "https://symfony.com/contributors"
  7182. }
  7183. ],
  7184. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7185. "homepage": "https://symfony.com",
  7186. "keywords": [
  7187. "grapheme",
  7188. "i18n",
  7189. "string",
  7190. "unicode",
  7191. "utf-8",
  7192. "utf8"
  7193. ],
  7194. "support": {
  7195. "source": "https://github.com/symfony/string/tree/v5.3.7"
  7196. },
  7197. "funding": [
  7198. {
  7199. "url": "https://symfony.com/sponsor",
  7200. "type": "custom"
  7201. },
  7202. {
  7203. "url": "https://github.com/fabpot",
  7204. "type": "github"
  7205. },
  7206. {
  7207. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7208. "type": "tidelift"
  7209. }
  7210. ],
  7211. "time": "2021-08-26T08:00:08+00:00"
  7212. },
  7213. {
  7214. "name": "symfony/translation",
  7215. "version": "v5.3.7",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/symfony/translation.git",
  7219. "reference": "4d595a6d15fd3a2c67f6f31d14d15d3b7356d7a6"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/symfony/translation/zipball/4d595a6d15fd3a2c67f6f31d14d15d3b7356d7a6",
  7224. "reference": "4d595a6d15fd3a2c67f6f31d14d15d3b7356d7a6",
  7225. "shasum": "",
  7226. "mirrors": [
  7227. {
  7228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7229. "preferred": true
  7230. }
  7231. ]
  7232. },
  7233. "require": {
  7234. "php": ">=7.2.5",
  7235. "symfony/deprecation-contracts": "^2.1",
  7236. "symfony/polyfill-mbstring": "~1.0",
  7237. "symfony/polyfill-php80": "^1.16",
  7238. "symfony/translation-contracts": "^2.3"
  7239. },
  7240. "conflict": {
  7241. "symfony/config": "<4.4",
  7242. "symfony/dependency-injection": "<5.0",
  7243. "symfony/http-kernel": "<5.0",
  7244. "symfony/twig-bundle": "<5.0",
  7245. "symfony/yaml": "<4.4"
  7246. },
  7247. "provide": {
  7248. "symfony/translation-implementation": "2.3"
  7249. },
  7250. "require-dev": {
  7251. "psr/log": "^1|^2|^3",
  7252. "symfony/config": "^4.4|^5.0",
  7253. "symfony/console": "^4.4|^5.0",
  7254. "symfony/dependency-injection": "^5.0",
  7255. "symfony/finder": "^4.4|^5.0",
  7256. "symfony/http-kernel": "^5.0",
  7257. "symfony/intl": "^4.4|^5.0",
  7258. "symfony/polyfill-intl-icu": "^1.21",
  7259. "symfony/service-contracts": "^1.1.2|^2",
  7260. "symfony/yaml": "^4.4|^5.0"
  7261. },
  7262. "suggest": {
  7263. "psr/log-implementation": "To use logging capability in translator",
  7264. "symfony/config": "",
  7265. "symfony/yaml": ""
  7266. },
  7267. "type": "library",
  7268. "autoload": {
  7269. "files": [
  7270. "Resources/functions.php"
  7271. ],
  7272. "psr-4": {
  7273. "Symfony\\Component\\Translation\\": ""
  7274. },
  7275. "exclude-from-classmap": [
  7276. "/Tests/"
  7277. ]
  7278. },
  7279. "notification-url": "https://packagist.org/downloads/",
  7280. "license": [
  7281. "MIT"
  7282. ],
  7283. "authors": [
  7284. {
  7285. "name": "Fabien Potencier",
  7286. "email": "fabien@symfony.com"
  7287. },
  7288. {
  7289. "name": "Symfony Community",
  7290. "homepage": "https://symfony.com/contributors"
  7291. }
  7292. ],
  7293. "description": "Provides tools to internationalize your application",
  7294. "homepage": "https://symfony.com",
  7295. "support": {
  7296. "source": "https://github.com/symfony/translation/tree/v5.3.7"
  7297. },
  7298. "funding": [
  7299. {
  7300. "url": "https://symfony.com/sponsor",
  7301. "type": "custom"
  7302. },
  7303. {
  7304. "url": "https://github.com/fabpot",
  7305. "type": "github"
  7306. },
  7307. {
  7308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7309. "type": "tidelift"
  7310. }
  7311. ],
  7312. "time": "2021-08-26T08:22:53+00:00"
  7313. },
  7314. {
  7315. "name": "symfony/translation-contracts",
  7316. "version": "v2.4.0",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/symfony/translation-contracts.git",
  7320. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7325. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7326. "shasum": "",
  7327. "mirrors": [
  7328. {
  7329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7330. "preferred": true
  7331. }
  7332. ]
  7333. },
  7334. "require": {
  7335. "php": ">=7.2.5"
  7336. },
  7337. "suggest": {
  7338. "symfony/translation-implementation": ""
  7339. },
  7340. "type": "library",
  7341. "extra": {
  7342. "branch-alias": {
  7343. "dev-main": "2.4-dev"
  7344. },
  7345. "thanks": {
  7346. "name": "symfony/contracts",
  7347. "url": "https://github.com/symfony/contracts"
  7348. }
  7349. },
  7350. "autoload": {
  7351. "psr-4": {
  7352. "Symfony\\Contracts\\Translation\\": ""
  7353. }
  7354. },
  7355. "notification-url": "https://packagist.org/downloads/",
  7356. "license": [
  7357. "MIT"
  7358. ],
  7359. "authors": [
  7360. {
  7361. "name": "Nicolas Grekas",
  7362. "email": "p@tchwork.com"
  7363. },
  7364. {
  7365. "name": "Symfony Community",
  7366. "homepage": "https://symfony.com/contributors"
  7367. }
  7368. ],
  7369. "description": "Generic abstractions related to translation",
  7370. "homepage": "https://symfony.com",
  7371. "keywords": [
  7372. "abstractions",
  7373. "contracts",
  7374. "decoupling",
  7375. "interfaces",
  7376. "interoperability",
  7377. "standards"
  7378. ],
  7379. "support": {
  7380. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7381. },
  7382. "funding": [
  7383. {
  7384. "url": "https://symfony.com/sponsor",
  7385. "type": "custom"
  7386. },
  7387. {
  7388. "url": "https://github.com/fabpot",
  7389. "type": "github"
  7390. },
  7391. {
  7392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7393. "type": "tidelift"
  7394. }
  7395. ],
  7396. "time": "2021-03-23T23:28:01+00:00"
  7397. },
  7398. {
  7399. "name": "symfony/var-dumper",
  7400. "version": "v5.3.7",
  7401. "source": {
  7402. "type": "git",
  7403. "url": "https://github.com/symfony/var-dumper.git",
  7404. "reference": "3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f"
  7405. },
  7406. "dist": {
  7407. "type": "zip",
  7408. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f",
  7409. "reference": "3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f",
  7410. "shasum": "",
  7411. "mirrors": [
  7412. {
  7413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7414. "preferred": true
  7415. }
  7416. ]
  7417. },
  7418. "require": {
  7419. "php": ">=7.2.5",
  7420. "symfony/polyfill-mbstring": "~1.0",
  7421. "symfony/polyfill-php80": "^1.16"
  7422. },
  7423. "conflict": {
  7424. "phpunit/phpunit": "<5.4.3",
  7425. "symfony/console": "<4.4"
  7426. },
  7427. "require-dev": {
  7428. "ext-iconv": "*",
  7429. "symfony/console": "^4.4|^5.0",
  7430. "symfony/process": "^4.4|^5.0",
  7431. "twig/twig": "^2.13|^3.0.4"
  7432. },
  7433. "suggest": {
  7434. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7435. "ext-intl": "To show region name in time zone dump",
  7436. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7437. },
  7438. "bin": [
  7439. "Resources/bin/var-dump-server"
  7440. ],
  7441. "type": "library",
  7442. "autoload": {
  7443. "files": [
  7444. "Resources/functions/dump.php"
  7445. ],
  7446. "psr-4": {
  7447. "Symfony\\Component\\VarDumper\\": ""
  7448. },
  7449. "exclude-from-classmap": [
  7450. "/Tests/"
  7451. ]
  7452. },
  7453. "notification-url": "https://packagist.org/downloads/",
  7454. "license": [
  7455. "MIT"
  7456. ],
  7457. "authors": [
  7458. {
  7459. "name": "Nicolas Grekas",
  7460. "email": "p@tchwork.com"
  7461. },
  7462. {
  7463. "name": "Symfony Community",
  7464. "homepage": "https://symfony.com/contributors"
  7465. }
  7466. ],
  7467. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7468. "homepage": "https://symfony.com",
  7469. "keywords": [
  7470. "debug",
  7471. "dump"
  7472. ],
  7473. "support": {
  7474. "source": "https://github.com/symfony/var-dumper/tree/v5.3.7"
  7475. },
  7476. "funding": [
  7477. {
  7478. "url": "https://symfony.com/sponsor",
  7479. "type": "custom"
  7480. },
  7481. {
  7482. "url": "https://github.com/fabpot",
  7483. "type": "github"
  7484. },
  7485. {
  7486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7487. "type": "tidelift"
  7488. }
  7489. ],
  7490. "time": "2021-08-04T23:19:25+00:00"
  7491. },
  7492. {
  7493. "name": "te7a-houdini/laravel-trix",
  7494. "version": "2.0.4",
  7495. "source": {
  7496. "type": "git",
  7497. "url": "https://github.com/amaelftah/laravel-trix.git",
  7498. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7499. },
  7500. "dist": {
  7501. "type": "zip",
  7502. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7503. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7504. "shasum": "",
  7505. "mirrors": [
  7506. {
  7507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7508. "preferred": true
  7509. }
  7510. ]
  7511. },
  7512. "require": {
  7513. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7514. "php": "^7.1"
  7515. },
  7516. "require-dev": {
  7517. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7518. },
  7519. "type": "library",
  7520. "extra": {
  7521. "laravel": {
  7522. "providers": [
  7523. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7524. ]
  7525. }
  7526. },
  7527. "autoload": {
  7528. "psr-4": {
  7529. "Te7aHoudini\\LaravelTrix\\": "src"
  7530. }
  7531. },
  7532. "notification-url": "https://packagist.org/downloads/",
  7533. "license": [
  7534. "MIT"
  7535. ],
  7536. "authors": [
  7537. {
  7538. "name": "Ahmed Abd El Ftah",
  7539. "email": "ahmedabdelftah95165@gmail.com",
  7540. "role": "Developer"
  7541. }
  7542. ],
  7543. "description": "trix editor for laravel inspired by ActionText for rails",
  7544. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7545. "keywords": [
  7546. "laravel-trix",
  7547. "te7a-houdini"
  7548. ],
  7549. "support": {
  7550. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7551. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7552. },
  7553. "time": "2020-11-12T10:48:06+00:00"
  7554. },
  7555. {
  7556. "name": "tightenco/collect",
  7557. "version": "v5.6.33",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/tighten/collect.git",
  7561. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7566. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7567. "shasum": "",
  7568. "mirrors": [
  7569. {
  7570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7571. "preferred": true
  7572. }
  7573. ]
  7574. },
  7575. "require": {
  7576. "php": ">=7.1.3",
  7577. "symfony/var-dumper": ">=3.1.10"
  7578. },
  7579. "require-dev": {
  7580. "mockery/mockery": "~1.0",
  7581. "nesbot/carbon": "~1.20",
  7582. "phpunit/phpunit": "~7.0"
  7583. },
  7584. "type": "library",
  7585. "autoload": {
  7586. "files": [
  7587. "src/Collect/Support/helpers.php",
  7588. "src/Collect/Support/alias.php"
  7589. ],
  7590. "psr-4": {
  7591. "Tightenco\\Collect\\": "src/Collect"
  7592. }
  7593. },
  7594. "notification-url": "https://packagist.org/downloads/",
  7595. "license": [
  7596. "MIT"
  7597. ],
  7598. "authors": [
  7599. {
  7600. "name": "Taylor Otwell",
  7601. "email": "taylorotwell@gmail.com"
  7602. }
  7603. ],
  7604. "description": "Collect - Illuminate Collections as a separate package.",
  7605. "keywords": [
  7606. "collection",
  7607. "laravel"
  7608. ],
  7609. "support": {
  7610. "issues": "https://github.com/tighten/collect/issues",
  7611. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7612. },
  7613. "time": "2018-08-09T16:56:26+00:00"
  7614. },
  7615. {
  7616. "name": "tijsverkoyen/css-to-inline-styles",
  7617. "version": "2.2.3",
  7618. "source": {
  7619. "type": "git",
  7620. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7621. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7622. },
  7623. "dist": {
  7624. "type": "zip",
  7625. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7626. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7627. "shasum": "",
  7628. "mirrors": [
  7629. {
  7630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7631. "preferred": true
  7632. }
  7633. ]
  7634. },
  7635. "require": {
  7636. "ext-dom": "*",
  7637. "ext-libxml": "*",
  7638. "php": "^5.5 || ^7.0 || ^8.0",
  7639. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7640. },
  7641. "require-dev": {
  7642. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7643. },
  7644. "type": "library",
  7645. "extra": {
  7646. "branch-alias": {
  7647. "dev-master": "2.2.x-dev"
  7648. }
  7649. },
  7650. "autoload": {
  7651. "psr-4": {
  7652. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7653. }
  7654. },
  7655. "notification-url": "https://packagist.org/downloads/",
  7656. "license": [
  7657. "BSD-3-Clause"
  7658. ],
  7659. "authors": [
  7660. {
  7661. "name": "Tijs Verkoyen",
  7662. "email": "css_to_inline_styles@verkoyen.eu",
  7663. "role": "Developer"
  7664. }
  7665. ],
  7666. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7667. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7668. "support": {
  7669. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7670. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7671. },
  7672. "time": "2020-07-13T06:12:54+00:00"
  7673. },
  7674. {
  7675. "name": "vlucas/phpdotenv",
  7676. "version": "v4.2.0",
  7677. "source": {
  7678. "type": "git",
  7679. "url": "https://github.com/vlucas/phpdotenv.git",
  7680. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7681. },
  7682. "dist": {
  7683. "type": "zip",
  7684. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7685. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7686. "shasum": "",
  7687. "mirrors": [
  7688. {
  7689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7690. "preferred": true
  7691. }
  7692. ]
  7693. },
  7694. "require": {
  7695. "php": "^5.5.9 || ^7.0 || ^8.0",
  7696. "phpoption/phpoption": "^1.7.3",
  7697. "symfony/polyfill-ctype": "^1.17"
  7698. },
  7699. "require-dev": {
  7700. "bamarni/composer-bin-plugin": "^1.4.1",
  7701. "ext-filter": "*",
  7702. "ext-pcre": "*",
  7703. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7704. },
  7705. "suggest": {
  7706. "ext-filter": "Required to use the boolean validator.",
  7707. "ext-pcre": "Required to use most of the library."
  7708. },
  7709. "type": "library",
  7710. "extra": {
  7711. "branch-alias": {
  7712. "dev-master": "4.1-dev"
  7713. }
  7714. },
  7715. "autoload": {
  7716. "psr-4": {
  7717. "Dotenv\\": "src/"
  7718. }
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "BSD-3-Clause"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Graham Campbell",
  7727. "email": "graham@alt-three.com",
  7728. "homepage": "https://gjcampbell.co.uk/"
  7729. },
  7730. {
  7731. "name": "Vance Lucas",
  7732. "email": "vance@vancelucas.com",
  7733. "homepage": "https://vancelucas.com/"
  7734. }
  7735. ],
  7736. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7737. "keywords": [
  7738. "dotenv",
  7739. "env",
  7740. "environment"
  7741. ],
  7742. "support": {
  7743. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7744. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7745. },
  7746. "funding": [
  7747. {
  7748. "url": "https://github.com/GrahamCampbell",
  7749. "type": "github"
  7750. },
  7751. {
  7752. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7753. "type": "tidelift"
  7754. }
  7755. ],
  7756. "time": "2021-01-20T15:11:48+00:00"
  7757. },
  7758. {
  7759. "name": "voku/portable-ascii",
  7760. "version": "1.5.6",
  7761. "source": {
  7762. "type": "git",
  7763. "url": "https://github.com/voku/portable-ascii.git",
  7764. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7765. },
  7766. "dist": {
  7767. "type": "zip",
  7768. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7769. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7770. "shasum": "",
  7771. "mirrors": [
  7772. {
  7773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7774. "preferred": true
  7775. }
  7776. ]
  7777. },
  7778. "require": {
  7779. "php": ">=7.0.0"
  7780. },
  7781. "require-dev": {
  7782. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7783. },
  7784. "suggest": {
  7785. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7786. },
  7787. "type": "library",
  7788. "autoload": {
  7789. "psr-4": {
  7790. "voku\\": "src/voku/"
  7791. }
  7792. },
  7793. "notification-url": "https://packagist.org/downloads/",
  7794. "license": [
  7795. "MIT"
  7796. ],
  7797. "authors": [
  7798. {
  7799. "name": "Lars Moelleken",
  7800. "homepage": "http://www.moelleken.org/"
  7801. }
  7802. ],
  7803. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7804. "homepage": "https://github.com/voku/portable-ascii",
  7805. "keywords": [
  7806. "ascii",
  7807. "clean",
  7808. "php"
  7809. ],
  7810. "support": {
  7811. "issues": "https://github.com/voku/portable-ascii/issues",
  7812. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7813. },
  7814. "funding": [
  7815. {
  7816. "url": "https://www.paypal.me/moelleken",
  7817. "type": "custom"
  7818. },
  7819. {
  7820. "url": "https://github.com/voku",
  7821. "type": "github"
  7822. },
  7823. {
  7824. "url": "https://opencollective.com/portable-ascii",
  7825. "type": "open_collective"
  7826. },
  7827. {
  7828. "url": "https://www.patreon.com/voku",
  7829. "type": "patreon"
  7830. },
  7831. {
  7832. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7833. "type": "tidelift"
  7834. }
  7835. ],
  7836. "time": "2020-11-12T00:07:28+00:00"
  7837. },
  7838. {
  7839. "name": "yajra/laravel-oci8",
  7840. "version": "v7.0.0",
  7841. "source": {
  7842. "type": "git",
  7843. "url": "https://github.com/yajra/laravel-oci8.git",
  7844. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7845. },
  7846. "dist": {
  7847. "type": "zip",
  7848. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7849. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7850. "shasum": "",
  7851. "mirrors": [
  7852. {
  7853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7854. "preferred": true
  7855. }
  7856. ]
  7857. },
  7858. "require": {
  7859. "ext-oci8": ">=2.0.0",
  7860. "ext-pdo": "*",
  7861. "illuminate/database": "^7",
  7862. "illuminate/support": "^7",
  7863. "php": "^7.2.5",
  7864. "yajra/laravel-pdo-via-oci8": "^2"
  7865. },
  7866. "require-dev": {
  7867. "mockery/mockery": "^1.3.1",
  7868. "phpunit/phpunit": "^8.4|^9.0",
  7869. "scrutinizer/ocular": "~1.1"
  7870. },
  7871. "type": "library",
  7872. "extra": {
  7873. "branch-alias": {
  7874. "dev-master": "7.x-dev"
  7875. },
  7876. "laravel": {
  7877. "providers": [
  7878. "Yajra\\Oci8\\Oci8ServiceProvider"
  7879. ]
  7880. }
  7881. },
  7882. "autoload": {
  7883. "files": [
  7884. "src/helper.php"
  7885. ],
  7886. "psr-4": {
  7887. "Yajra\\": "src/"
  7888. }
  7889. },
  7890. "notification-url": "https://packagist.org/downloads/",
  7891. "license": [
  7892. "MIT"
  7893. ],
  7894. "authors": [
  7895. {
  7896. "name": "Arjay Angeles",
  7897. "email": "aqangeles@gmail.com"
  7898. }
  7899. ],
  7900. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7901. "keywords": [
  7902. "laravel",
  7903. "oci8",
  7904. "oracle",
  7905. "pdo_oci"
  7906. ],
  7907. "support": {
  7908. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7909. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7910. },
  7911. "funding": [
  7912. {
  7913. "url": "https://www.paypal.me/yajra",
  7914. "type": "custom"
  7915. },
  7916. {
  7917. "url": "https://www.patreon.com/yajra",
  7918. "type": "patreon"
  7919. }
  7920. ],
  7921. "time": "2020-03-04T02:15:19+00:00"
  7922. },
  7923. {
  7924. "name": "yajra/laravel-pdo-via-oci8",
  7925. "version": "v2.2.0",
  7926. "source": {
  7927. "type": "git",
  7928. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7929. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7930. },
  7931. "dist": {
  7932. "type": "zip",
  7933. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7934. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7935. "shasum": "",
  7936. "mirrors": [
  7937. {
  7938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7939. "preferred": true
  7940. }
  7941. ]
  7942. },
  7943. "require-dev": {
  7944. "phpunit/phpunit": "^6.4"
  7945. },
  7946. "type": "library",
  7947. "extra": {
  7948. "branch-alias": {
  7949. "dev-master": "2.0-dev"
  7950. }
  7951. },
  7952. "autoload": {
  7953. "psr-4": {
  7954. "Yajra\\": "src/"
  7955. }
  7956. },
  7957. "notification-url": "https://packagist.org/downloads/",
  7958. "license": [
  7959. "MIT"
  7960. ],
  7961. "authors": [
  7962. {
  7963. "name": "Arjay Angeles",
  7964. "email": "aqangeles@gmail.com"
  7965. }
  7966. ],
  7967. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7968. "support": {
  7969. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7970. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7971. },
  7972. "time": "2020-12-11T12:29:18+00:00"
  7973. }
  7974. ],
  7975. "packages-dev": [
  7976. {
  7977. "name": "barryvdh/laravel-debugbar",
  7978. "version": "v3.6.2",
  7979. "source": {
  7980. "type": "git",
  7981. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7982. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a"
  7983. },
  7984. "dist": {
  7985. "type": "zip",
  7986. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7987. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7988. "shasum": "",
  7989. "mirrors": [
  7990. {
  7991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7992. "preferred": true
  7993. }
  7994. ]
  7995. },
  7996. "require": {
  7997. "illuminate/routing": "^6|^7|^8",
  7998. "illuminate/session": "^6|^7|^8",
  7999. "illuminate/support": "^6|^7|^8",
  8000. "maximebf/debugbar": "^1.16.3",
  8001. "php": ">=7.2",
  8002. "symfony/debug": "^4.3|^5",
  8003. "symfony/finder": "^4.3|^5"
  8004. },
  8005. "require-dev": {
  8006. "mockery/mockery": "^1.3.3",
  8007. "orchestra/testbench-dusk": "^4|^5|^6",
  8008. "phpunit/phpunit": "^8.5|^9.0",
  8009. "squizlabs/php_codesniffer": "^3.5"
  8010. },
  8011. "type": "library",
  8012. "extra": {
  8013. "branch-alias": {
  8014. "dev-master": "3.5-dev"
  8015. },
  8016. "laravel": {
  8017. "providers": [
  8018. "Barryvdh\\Debugbar\\ServiceProvider"
  8019. ],
  8020. "aliases": {
  8021. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8022. }
  8023. }
  8024. },
  8025. "autoload": {
  8026. "psr-4": {
  8027. "Barryvdh\\Debugbar\\": "src/"
  8028. },
  8029. "files": [
  8030. "src/helpers.php"
  8031. ]
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "MIT"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "Barry vd. Heuvel",
  8040. "email": "barryvdh@gmail.com"
  8041. }
  8042. ],
  8043. "description": "PHP Debugbar integration for Laravel",
  8044. "keywords": [
  8045. "debug",
  8046. "debugbar",
  8047. "laravel",
  8048. "profiler",
  8049. "webprofiler"
  8050. ],
  8051. "support": {
  8052. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8053. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.2"
  8054. },
  8055. "funding": [
  8056. {
  8057. "url": "https://fruitcake.nl",
  8058. "type": "custom"
  8059. },
  8060. {
  8061. "url": "https://github.com/barryvdh",
  8062. "type": "github"
  8063. }
  8064. ],
  8065. "time": "2021-06-14T14:29:26+00:00"
  8066. },
  8067. {
  8068. "name": "doctrine/instantiator",
  8069. "version": "1.4.0",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/doctrine/instantiator.git",
  8073. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8078. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8079. "shasum": "",
  8080. "mirrors": [
  8081. {
  8082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8083. "preferred": true
  8084. }
  8085. ]
  8086. },
  8087. "require": {
  8088. "php": "^7.1 || ^8.0"
  8089. },
  8090. "require-dev": {
  8091. "doctrine/coding-standard": "^8.0",
  8092. "ext-pdo": "*",
  8093. "ext-phar": "*",
  8094. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8095. "phpstan/phpstan": "^0.12",
  8096. "phpstan/phpstan-phpunit": "^0.12",
  8097. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8098. },
  8099. "type": "library",
  8100. "autoload": {
  8101. "psr-4": {
  8102. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8103. }
  8104. },
  8105. "notification-url": "https://packagist.org/downloads/",
  8106. "license": [
  8107. "MIT"
  8108. ],
  8109. "authors": [
  8110. {
  8111. "name": "Marco Pivetta",
  8112. "email": "ocramius@gmail.com",
  8113. "homepage": "https://ocramius.github.io/"
  8114. }
  8115. ],
  8116. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8117. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8118. "keywords": [
  8119. "constructor",
  8120. "instantiate"
  8121. ],
  8122. "support": {
  8123. "issues": "https://github.com/doctrine/instantiator/issues",
  8124. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8125. },
  8126. "funding": [
  8127. {
  8128. "url": "https://www.doctrine-project.org/sponsorship.html",
  8129. "type": "custom"
  8130. },
  8131. {
  8132. "url": "https://www.patreon.com/phpdoctrine",
  8133. "type": "patreon"
  8134. },
  8135. {
  8136. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8137. "type": "tidelift"
  8138. }
  8139. ],
  8140. "time": "2020-11-10T18:47:58+00:00"
  8141. },
  8142. {
  8143. "name": "filp/whoops",
  8144. "version": "2.14.1",
  8145. "source": {
  8146. "type": "git",
  8147. "url": "https://github.com/filp/whoops.git",
  8148. "reference": "15ead64e9828f0fc90932114429c4f7923570cb1"
  8149. },
  8150. "dist": {
  8151. "type": "zip",
  8152. "url": "https://api.github.com/repos/filp/whoops/zipball/15ead64e9828f0fc90932114429c4f7923570cb1",
  8153. "reference": "15ead64e9828f0fc90932114429c4f7923570cb1",
  8154. "shasum": "",
  8155. "mirrors": [
  8156. {
  8157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8158. "preferred": true
  8159. }
  8160. ]
  8161. },
  8162. "require": {
  8163. "php": "^5.5.9 || ^7.0 || ^8.0",
  8164. "psr/log": "^1.0.1"
  8165. },
  8166. "require-dev": {
  8167. "mockery/mockery": "^0.9 || ^1.0",
  8168. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8169. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8170. },
  8171. "suggest": {
  8172. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8173. "whoops/soap": "Formats errors as SOAP responses"
  8174. },
  8175. "type": "library",
  8176. "extra": {
  8177. "branch-alias": {
  8178. "dev-master": "2.7-dev"
  8179. }
  8180. },
  8181. "autoload": {
  8182. "psr-4": {
  8183. "Whoops\\": "src/Whoops/"
  8184. }
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "MIT"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "Filipe Dobreira",
  8193. "homepage": "https://github.com/filp",
  8194. "role": "Developer"
  8195. }
  8196. ],
  8197. "description": "php error handling for cool kids",
  8198. "homepage": "https://filp.github.io/whoops/",
  8199. "keywords": [
  8200. "error",
  8201. "exception",
  8202. "handling",
  8203. "library",
  8204. "throwable",
  8205. "whoops"
  8206. ],
  8207. "support": {
  8208. "issues": "https://github.com/filp/whoops/issues",
  8209. "source": "https://github.com/filp/whoops/tree/2.14.1"
  8210. },
  8211. "funding": [
  8212. {
  8213. "url": "https://github.com/denis-sokolov",
  8214. "type": "github"
  8215. }
  8216. ],
  8217. "time": "2021-08-29T12:00:00+00:00"
  8218. },
  8219. {
  8220. "name": "fzaninotto/faker",
  8221. "version": "v1.9.2",
  8222. "source": {
  8223. "type": "git",
  8224. "url": "https://github.com/fzaninotto/Faker.git",
  8225. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8226. },
  8227. "dist": {
  8228. "type": "zip",
  8229. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8230. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8231. "shasum": "",
  8232. "mirrors": [
  8233. {
  8234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8235. "preferred": true
  8236. }
  8237. ]
  8238. },
  8239. "require": {
  8240. "php": "^5.3.3 || ^7.0"
  8241. },
  8242. "require-dev": {
  8243. "ext-intl": "*",
  8244. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8245. "squizlabs/php_codesniffer": "^2.9.2"
  8246. },
  8247. "type": "library",
  8248. "extra": {
  8249. "branch-alias": {
  8250. "dev-master": "1.9-dev"
  8251. }
  8252. },
  8253. "autoload": {
  8254. "psr-4": {
  8255. "Faker\\": "src/Faker/"
  8256. }
  8257. },
  8258. "notification-url": "https://packagist.org/downloads/",
  8259. "license": [
  8260. "MIT"
  8261. ],
  8262. "authors": [
  8263. {
  8264. "name": "François Zaninotto"
  8265. }
  8266. ],
  8267. "description": "Faker is a PHP library that generates fake data for you.",
  8268. "keywords": [
  8269. "data",
  8270. "faker",
  8271. "fixtures"
  8272. ],
  8273. "support": {
  8274. "issues": "https://github.com/fzaninotto/Faker/issues",
  8275. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8276. },
  8277. "abandoned": true,
  8278. "time": "2020-12-11T09:56:16+00:00"
  8279. },
  8280. {
  8281. "name": "hamcrest/hamcrest-php",
  8282. "version": "v2.0.1",
  8283. "source": {
  8284. "type": "git",
  8285. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8286. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8287. },
  8288. "dist": {
  8289. "type": "zip",
  8290. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8291. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8292. "shasum": "",
  8293. "mirrors": [
  8294. {
  8295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8296. "preferred": true
  8297. }
  8298. ]
  8299. },
  8300. "require": {
  8301. "php": "^5.3|^7.0|^8.0"
  8302. },
  8303. "replace": {
  8304. "cordoval/hamcrest-php": "*",
  8305. "davedevelopment/hamcrest-php": "*",
  8306. "kodova/hamcrest-php": "*"
  8307. },
  8308. "require-dev": {
  8309. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8310. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8311. },
  8312. "type": "library",
  8313. "extra": {
  8314. "branch-alias": {
  8315. "dev-master": "2.1-dev"
  8316. }
  8317. },
  8318. "autoload": {
  8319. "classmap": [
  8320. "hamcrest"
  8321. ]
  8322. },
  8323. "notification-url": "https://packagist.org/downloads/",
  8324. "license": [
  8325. "BSD-3-Clause"
  8326. ],
  8327. "description": "This is the PHP port of Hamcrest Matchers",
  8328. "keywords": [
  8329. "test"
  8330. ],
  8331. "support": {
  8332. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8333. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8334. },
  8335. "time": "2020-07-09T08:09:16+00:00"
  8336. },
  8337. {
  8338. "name": "maximebf/debugbar",
  8339. "version": "v1.17.1",
  8340. "source": {
  8341. "type": "git",
  8342. "url": "https://github.com/maximebf/php-debugbar.git",
  8343. "reference": "0a3532556be0145603f8a9de23e76dc28eed7054"
  8344. },
  8345. "dist": {
  8346. "type": "zip",
  8347. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/0a3532556be0145603f8a9de23e76dc28eed7054",
  8348. "reference": "0a3532556be0145603f8a9de23e76dc28eed7054",
  8349. "shasum": "",
  8350. "mirrors": [
  8351. {
  8352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8353. "preferred": true
  8354. }
  8355. ]
  8356. },
  8357. "require": {
  8358. "php": "^7.1|^8",
  8359. "psr/log": "^1.0",
  8360. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8361. },
  8362. "require-dev": {
  8363. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8364. },
  8365. "suggest": {
  8366. "kriswallsmith/assetic": "The best way to manage assets",
  8367. "monolog/monolog": "Log using Monolog",
  8368. "predis/predis": "Redis storage"
  8369. },
  8370. "type": "library",
  8371. "extra": {
  8372. "branch-alias": {
  8373. "dev-master": "1.17-dev"
  8374. }
  8375. },
  8376. "autoload": {
  8377. "psr-4": {
  8378. "DebugBar\\": "src/DebugBar/"
  8379. }
  8380. },
  8381. "notification-url": "https://packagist.org/downloads/",
  8382. "license": [
  8383. "MIT"
  8384. ],
  8385. "authors": [
  8386. {
  8387. "name": "Maxime Bouroumeau-Fuseau",
  8388. "email": "maxime.bouroumeau@gmail.com",
  8389. "homepage": "http://maximebf.com"
  8390. },
  8391. {
  8392. "name": "Barry vd. Heuvel",
  8393. "email": "barryvdh@gmail.com"
  8394. }
  8395. ],
  8396. "description": "Debug bar in the browser for php application",
  8397. "homepage": "https://github.com/maximebf/php-debugbar",
  8398. "keywords": [
  8399. "debug",
  8400. "debugbar"
  8401. ],
  8402. "support": {
  8403. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8404. "source": "https://github.com/maximebf/php-debugbar/tree/v1.17.1"
  8405. },
  8406. "time": "2021-08-01T09:19:02+00:00"
  8407. },
  8408. {
  8409. "name": "mockery/mockery",
  8410. "version": "1.4.3",
  8411. "source": {
  8412. "type": "git",
  8413. "url": "https://github.com/mockery/mockery.git",
  8414. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8415. },
  8416. "dist": {
  8417. "type": "zip",
  8418. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8419. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8420. "shasum": "",
  8421. "mirrors": [
  8422. {
  8423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8424. "preferred": true
  8425. }
  8426. ]
  8427. },
  8428. "require": {
  8429. "hamcrest/hamcrest-php": "^2.0.1",
  8430. "lib-pcre": ">=7.0",
  8431. "php": "^7.3 || ^8.0"
  8432. },
  8433. "conflict": {
  8434. "phpunit/phpunit": "<8.0"
  8435. },
  8436. "require-dev": {
  8437. "phpunit/phpunit": "^8.5 || ^9.3"
  8438. },
  8439. "type": "library",
  8440. "extra": {
  8441. "branch-alias": {
  8442. "dev-master": "1.4.x-dev"
  8443. }
  8444. },
  8445. "autoload": {
  8446. "psr-0": {
  8447. "Mockery": "library/"
  8448. }
  8449. },
  8450. "notification-url": "https://packagist.org/downloads/",
  8451. "license": [
  8452. "BSD-3-Clause"
  8453. ],
  8454. "authors": [
  8455. {
  8456. "name": "Pádraic Brady",
  8457. "email": "padraic.brady@gmail.com",
  8458. "homepage": "http://blog.astrumfutura.com"
  8459. },
  8460. {
  8461. "name": "Dave Marshall",
  8462. "email": "dave.marshall@atstsolutions.co.uk",
  8463. "homepage": "http://davedevelopment.co.uk"
  8464. }
  8465. ],
  8466. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8467. "homepage": "https://github.com/mockery/mockery",
  8468. "keywords": [
  8469. "BDD",
  8470. "TDD",
  8471. "library",
  8472. "mock",
  8473. "mock objects",
  8474. "mockery",
  8475. "stub",
  8476. "test",
  8477. "test double",
  8478. "testing"
  8479. ],
  8480. "support": {
  8481. "issues": "https://github.com/mockery/mockery/issues",
  8482. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8483. },
  8484. "time": "2021-02-24T09:51:49+00:00"
  8485. },
  8486. {
  8487. "name": "myclabs/deep-copy",
  8488. "version": "1.10.2",
  8489. "source": {
  8490. "type": "git",
  8491. "url": "https://github.com/myclabs/DeepCopy.git",
  8492. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8493. },
  8494. "dist": {
  8495. "type": "zip",
  8496. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8497. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8498. "shasum": "",
  8499. "mirrors": [
  8500. {
  8501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8502. "preferred": true
  8503. }
  8504. ]
  8505. },
  8506. "require": {
  8507. "php": "^7.1 || ^8.0"
  8508. },
  8509. "replace": {
  8510. "myclabs/deep-copy": "self.version"
  8511. },
  8512. "require-dev": {
  8513. "doctrine/collections": "^1.0",
  8514. "doctrine/common": "^2.6",
  8515. "phpunit/phpunit": "^7.1"
  8516. },
  8517. "type": "library",
  8518. "autoload": {
  8519. "psr-4": {
  8520. "DeepCopy\\": "src/DeepCopy/"
  8521. },
  8522. "files": [
  8523. "src/DeepCopy/deep_copy.php"
  8524. ]
  8525. },
  8526. "notification-url": "https://packagist.org/downloads/",
  8527. "license": [
  8528. "MIT"
  8529. ],
  8530. "description": "Create deep copies (clones) of your objects",
  8531. "keywords": [
  8532. "clone",
  8533. "copy",
  8534. "duplicate",
  8535. "object",
  8536. "object graph"
  8537. ],
  8538. "support": {
  8539. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8540. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8541. },
  8542. "funding": [
  8543. {
  8544. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8545. "type": "tidelift"
  8546. }
  8547. ],
  8548. "time": "2020-11-13T09:40:50+00:00"
  8549. },
  8550. {
  8551. "name": "nunomaduro/collision",
  8552. "version": "v4.3.0",
  8553. "source": {
  8554. "type": "git",
  8555. "url": "https://github.com/nunomaduro/collision.git",
  8556. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8557. },
  8558. "dist": {
  8559. "type": "zip",
  8560. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8561. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8562. "shasum": "",
  8563. "mirrors": [
  8564. {
  8565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8566. "preferred": true
  8567. }
  8568. ]
  8569. },
  8570. "require": {
  8571. "facade/ignition-contracts": "^1.0",
  8572. "filp/whoops": "^2.4",
  8573. "php": "^7.2.5 || ^8.0",
  8574. "symfony/console": "^5.0"
  8575. },
  8576. "require-dev": {
  8577. "facade/ignition": "^2.0",
  8578. "fideloper/proxy": "^4.2",
  8579. "friendsofphp/php-cs-fixer": "^2.16",
  8580. "fruitcake/laravel-cors": "^1.0",
  8581. "laravel/framework": "^7.0",
  8582. "laravel/tinker": "^2.0",
  8583. "nunomaduro/larastan": "^0.6",
  8584. "orchestra/testbench": "^5.0",
  8585. "phpstan/phpstan": "^0.12.3",
  8586. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8587. },
  8588. "type": "library",
  8589. "extra": {
  8590. "laravel": {
  8591. "providers": [
  8592. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8593. ]
  8594. }
  8595. },
  8596. "autoload": {
  8597. "psr-4": {
  8598. "NunoMaduro\\Collision\\": "src/"
  8599. }
  8600. },
  8601. "notification-url": "https://packagist.org/downloads/",
  8602. "license": [
  8603. "MIT"
  8604. ],
  8605. "authors": [
  8606. {
  8607. "name": "Nuno Maduro",
  8608. "email": "enunomaduro@gmail.com"
  8609. }
  8610. ],
  8611. "description": "Cli error handling for console/command-line PHP applications.",
  8612. "keywords": [
  8613. "artisan",
  8614. "cli",
  8615. "command-line",
  8616. "console",
  8617. "error",
  8618. "handling",
  8619. "laravel",
  8620. "laravel-zero",
  8621. "php",
  8622. "symfony"
  8623. ],
  8624. "support": {
  8625. "issues": "https://github.com/nunomaduro/collision/issues",
  8626. "source": "https://github.com/nunomaduro/collision"
  8627. },
  8628. "funding": [
  8629. {
  8630. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8631. "type": "custom"
  8632. },
  8633. {
  8634. "url": "https://github.com/nunomaduro",
  8635. "type": "github"
  8636. },
  8637. {
  8638. "url": "https://www.patreon.com/nunomaduro",
  8639. "type": "patreon"
  8640. }
  8641. ],
  8642. "time": "2020-10-29T15:12:23+00:00"
  8643. },
  8644. {
  8645. "name": "phar-io/manifest",
  8646. "version": "2.0.3",
  8647. "source": {
  8648. "type": "git",
  8649. "url": "https://github.com/phar-io/manifest.git",
  8650. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8651. },
  8652. "dist": {
  8653. "type": "zip",
  8654. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8655. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8656. "shasum": "",
  8657. "mirrors": [
  8658. {
  8659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8660. "preferred": true
  8661. }
  8662. ]
  8663. },
  8664. "require": {
  8665. "ext-dom": "*",
  8666. "ext-phar": "*",
  8667. "ext-xmlwriter": "*",
  8668. "phar-io/version": "^3.0.1",
  8669. "php": "^7.2 || ^8.0"
  8670. },
  8671. "type": "library",
  8672. "extra": {
  8673. "branch-alias": {
  8674. "dev-master": "2.0.x-dev"
  8675. }
  8676. },
  8677. "autoload": {
  8678. "classmap": [
  8679. "src/"
  8680. ]
  8681. },
  8682. "notification-url": "https://packagist.org/downloads/",
  8683. "license": [
  8684. "BSD-3-Clause"
  8685. ],
  8686. "authors": [
  8687. {
  8688. "name": "Arne Blankerts",
  8689. "email": "arne@blankerts.de",
  8690. "role": "Developer"
  8691. },
  8692. {
  8693. "name": "Sebastian Heuer",
  8694. "email": "sebastian@phpeople.de",
  8695. "role": "Developer"
  8696. },
  8697. {
  8698. "name": "Sebastian Bergmann",
  8699. "email": "sebastian@phpunit.de",
  8700. "role": "Developer"
  8701. }
  8702. ],
  8703. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8704. "support": {
  8705. "issues": "https://github.com/phar-io/manifest/issues",
  8706. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8707. },
  8708. "time": "2021-07-20T11:28:43+00:00"
  8709. },
  8710. {
  8711. "name": "phar-io/version",
  8712. "version": "3.1.0",
  8713. "source": {
  8714. "type": "git",
  8715. "url": "https://github.com/phar-io/version.git",
  8716. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8717. },
  8718. "dist": {
  8719. "type": "zip",
  8720. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8721. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8722. "shasum": "",
  8723. "mirrors": [
  8724. {
  8725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8726. "preferred": true
  8727. }
  8728. ]
  8729. },
  8730. "require": {
  8731. "php": "^7.2 || ^8.0"
  8732. },
  8733. "type": "library",
  8734. "autoload": {
  8735. "classmap": [
  8736. "src/"
  8737. ]
  8738. },
  8739. "notification-url": "https://packagist.org/downloads/",
  8740. "license": [
  8741. "BSD-3-Clause"
  8742. ],
  8743. "authors": [
  8744. {
  8745. "name": "Arne Blankerts",
  8746. "email": "arne@blankerts.de",
  8747. "role": "Developer"
  8748. },
  8749. {
  8750. "name": "Sebastian Heuer",
  8751. "email": "sebastian@phpeople.de",
  8752. "role": "Developer"
  8753. },
  8754. {
  8755. "name": "Sebastian Bergmann",
  8756. "email": "sebastian@phpunit.de",
  8757. "role": "Developer"
  8758. }
  8759. ],
  8760. "description": "Library for handling version information and constraints",
  8761. "support": {
  8762. "issues": "https://github.com/phar-io/version/issues",
  8763. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8764. },
  8765. "time": "2021-02-23T14:00:09+00:00"
  8766. },
  8767. {
  8768. "name": "phpdocumentor/reflection-common",
  8769. "version": "2.2.0",
  8770. "source": {
  8771. "type": "git",
  8772. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8773. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8774. },
  8775. "dist": {
  8776. "type": "zip",
  8777. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8778. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8779. "shasum": "",
  8780. "mirrors": [
  8781. {
  8782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8783. "preferred": true
  8784. }
  8785. ]
  8786. },
  8787. "require": {
  8788. "php": "^7.2 || ^8.0"
  8789. },
  8790. "type": "library",
  8791. "extra": {
  8792. "branch-alias": {
  8793. "dev-2.x": "2.x-dev"
  8794. }
  8795. },
  8796. "autoload": {
  8797. "psr-4": {
  8798. "phpDocumentor\\Reflection\\": "src/"
  8799. }
  8800. },
  8801. "notification-url": "https://packagist.org/downloads/",
  8802. "license": [
  8803. "MIT"
  8804. ],
  8805. "authors": [
  8806. {
  8807. "name": "Jaap van Otterdijk",
  8808. "email": "opensource@ijaap.nl"
  8809. }
  8810. ],
  8811. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8812. "homepage": "http://www.phpdoc.org",
  8813. "keywords": [
  8814. "FQSEN",
  8815. "phpDocumentor",
  8816. "phpdoc",
  8817. "reflection",
  8818. "static analysis"
  8819. ],
  8820. "support": {
  8821. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8822. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8823. },
  8824. "time": "2020-06-27T09:03:43+00:00"
  8825. },
  8826. {
  8827. "name": "phpdocumentor/reflection-docblock",
  8828. "version": "5.2.2",
  8829. "source": {
  8830. "type": "git",
  8831. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8832. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8833. },
  8834. "dist": {
  8835. "type": "zip",
  8836. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8837. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8838. "shasum": "",
  8839. "mirrors": [
  8840. {
  8841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8842. "preferred": true
  8843. }
  8844. ]
  8845. },
  8846. "require": {
  8847. "ext-filter": "*",
  8848. "php": "^7.2 || ^8.0",
  8849. "phpdocumentor/reflection-common": "^2.2",
  8850. "phpdocumentor/type-resolver": "^1.3",
  8851. "webmozart/assert": "^1.9.1"
  8852. },
  8853. "require-dev": {
  8854. "mockery/mockery": "~1.3.2"
  8855. },
  8856. "type": "library",
  8857. "extra": {
  8858. "branch-alias": {
  8859. "dev-master": "5.x-dev"
  8860. }
  8861. },
  8862. "autoload": {
  8863. "psr-4": {
  8864. "phpDocumentor\\Reflection\\": "src"
  8865. }
  8866. },
  8867. "notification-url": "https://packagist.org/downloads/",
  8868. "license": [
  8869. "MIT"
  8870. ],
  8871. "authors": [
  8872. {
  8873. "name": "Mike van Riel",
  8874. "email": "me@mikevanriel.com"
  8875. },
  8876. {
  8877. "name": "Jaap van Otterdijk",
  8878. "email": "account@ijaap.nl"
  8879. }
  8880. ],
  8881. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8882. "support": {
  8883. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8884. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8885. },
  8886. "time": "2020-09-03T19:13:55+00:00"
  8887. },
  8888. {
  8889. "name": "phpdocumentor/type-resolver",
  8890. "version": "1.4.0",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8894. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8899. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8900. "shasum": "",
  8901. "mirrors": [
  8902. {
  8903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8904. "preferred": true
  8905. }
  8906. ]
  8907. },
  8908. "require": {
  8909. "php": "^7.2 || ^8.0",
  8910. "phpdocumentor/reflection-common": "^2.0"
  8911. },
  8912. "require-dev": {
  8913. "ext-tokenizer": "*"
  8914. },
  8915. "type": "library",
  8916. "extra": {
  8917. "branch-alias": {
  8918. "dev-1.x": "1.x-dev"
  8919. }
  8920. },
  8921. "autoload": {
  8922. "psr-4": {
  8923. "phpDocumentor\\Reflection\\": "src"
  8924. }
  8925. },
  8926. "notification-url": "https://packagist.org/downloads/",
  8927. "license": [
  8928. "MIT"
  8929. ],
  8930. "authors": [
  8931. {
  8932. "name": "Mike van Riel",
  8933. "email": "me@mikevanriel.com"
  8934. }
  8935. ],
  8936. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8937. "support": {
  8938. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8939. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8940. },
  8941. "time": "2020-09-17T18:55:26+00:00"
  8942. },
  8943. {
  8944. "name": "phpspec/prophecy",
  8945. "version": "1.13.0",
  8946. "source": {
  8947. "type": "git",
  8948. "url": "https://github.com/phpspec/prophecy.git",
  8949. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8950. },
  8951. "dist": {
  8952. "type": "zip",
  8953. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8954. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8955. "shasum": "",
  8956. "mirrors": [
  8957. {
  8958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8959. "preferred": true
  8960. }
  8961. ]
  8962. },
  8963. "require": {
  8964. "doctrine/instantiator": "^1.2",
  8965. "php": "^7.2 || ~8.0, <8.1",
  8966. "phpdocumentor/reflection-docblock": "^5.2",
  8967. "sebastian/comparator": "^3.0 || ^4.0",
  8968. "sebastian/recursion-context": "^3.0 || ^4.0"
  8969. },
  8970. "require-dev": {
  8971. "phpspec/phpspec": "^6.0",
  8972. "phpunit/phpunit": "^8.0 || ^9.0"
  8973. },
  8974. "type": "library",
  8975. "extra": {
  8976. "branch-alias": {
  8977. "dev-master": "1.11.x-dev"
  8978. }
  8979. },
  8980. "autoload": {
  8981. "psr-4": {
  8982. "Prophecy\\": "src/Prophecy"
  8983. }
  8984. },
  8985. "notification-url": "https://packagist.org/downloads/",
  8986. "license": [
  8987. "MIT"
  8988. ],
  8989. "authors": [
  8990. {
  8991. "name": "Konstantin Kudryashov",
  8992. "email": "ever.zet@gmail.com",
  8993. "homepage": "http://everzet.com"
  8994. },
  8995. {
  8996. "name": "Marcello Duarte",
  8997. "email": "marcello.duarte@gmail.com"
  8998. }
  8999. ],
  9000. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9001. "homepage": "https://github.com/phpspec/prophecy",
  9002. "keywords": [
  9003. "Double",
  9004. "Dummy",
  9005. "fake",
  9006. "mock",
  9007. "spy",
  9008. "stub"
  9009. ],
  9010. "support": {
  9011. "issues": "https://github.com/phpspec/prophecy/issues",
  9012. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  9013. },
  9014. "time": "2021-03-17T13:42:18+00:00"
  9015. },
  9016. {
  9017. "name": "phpunit/php-code-coverage",
  9018. "version": "7.0.15",
  9019. "source": {
  9020. "type": "git",
  9021. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9022. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9023. },
  9024. "dist": {
  9025. "type": "zip",
  9026. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9027. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9028. "shasum": "",
  9029. "mirrors": [
  9030. {
  9031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9032. "preferred": true
  9033. }
  9034. ]
  9035. },
  9036. "require": {
  9037. "ext-dom": "*",
  9038. "ext-xmlwriter": "*",
  9039. "php": ">=7.2",
  9040. "phpunit/php-file-iterator": "^2.0.2",
  9041. "phpunit/php-text-template": "^1.2.1",
  9042. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9043. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9044. "sebastian/environment": "^4.2.2",
  9045. "sebastian/version": "^2.0.1",
  9046. "theseer/tokenizer": "^1.1.3"
  9047. },
  9048. "require-dev": {
  9049. "phpunit/phpunit": "^8.2.2"
  9050. },
  9051. "suggest": {
  9052. "ext-xdebug": "^2.7.2"
  9053. },
  9054. "type": "library",
  9055. "extra": {
  9056. "branch-alias": {
  9057. "dev-master": "7.0-dev"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "classmap": [
  9062. "src/"
  9063. ]
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "BSD-3-Clause"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Sebastian Bergmann",
  9072. "email": "sebastian@phpunit.de",
  9073. "role": "lead"
  9074. }
  9075. ],
  9076. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9077. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9078. "keywords": [
  9079. "coverage",
  9080. "testing",
  9081. "xunit"
  9082. ],
  9083. "support": {
  9084. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9085. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9086. },
  9087. "funding": [
  9088. {
  9089. "url": "https://github.com/sebastianbergmann",
  9090. "type": "github"
  9091. }
  9092. ],
  9093. "time": "2021-07-26T12:20:09+00:00"
  9094. },
  9095. {
  9096. "name": "phpunit/php-file-iterator",
  9097. "version": "2.0.4",
  9098. "source": {
  9099. "type": "git",
  9100. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9101. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
  9102. },
  9103. "dist": {
  9104. "type": "zip",
  9105. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
  9106. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
  9107. "shasum": "",
  9108. "mirrors": [
  9109. {
  9110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9111. "preferred": true
  9112. }
  9113. ]
  9114. },
  9115. "require": {
  9116. "php": ">=7.1"
  9117. },
  9118. "require-dev": {
  9119. "phpunit/phpunit": "^8.5"
  9120. },
  9121. "type": "library",
  9122. "extra": {
  9123. "branch-alias": {
  9124. "dev-master": "2.0.x-dev"
  9125. }
  9126. },
  9127. "autoload": {
  9128. "classmap": [
  9129. "src/"
  9130. ]
  9131. },
  9132. "notification-url": "https://packagist.org/downloads/",
  9133. "license": [
  9134. "BSD-3-Clause"
  9135. ],
  9136. "authors": [
  9137. {
  9138. "name": "Sebastian Bergmann",
  9139. "email": "sebastian@phpunit.de",
  9140. "role": "lead"
  9141. }
  9142. ],
  9143. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9144. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9145. "keywords": [
  9146. "filesystem",
  9147. "iterator"
  9148. ],
  9149. "support": {
  9150. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9151. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
  9152. },
  9153. "funding": [
  9154. {
  9155. "url": "https://github.com/sebastianbergmann",
  9156. "type": "github"
  9157. }
  9158. ],
  9159. "time": "2021-07-19T06:46:01+00:00"
  9160. },
  9161. {
  9162. "name": "phpunit/php-text-template",
  9163. "version": "1.2.1",
  9164. "source": {
  9165. "type": "git",
  9166. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9167. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9168. },
  9169. "dist": {
  9170. "type": "zip",
  9171. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9172. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9173. "shasum": "",
  9174. "mirrors": [
  9175. {
  9176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9177. "preferred": true
  9178. }
  9179. ]
  9180. },
  9181. "require": {
  9182. "php": ">=5.3.3"
  9183. },
  9184. "type": "library",
  9185. "autoload": {
  9186. "classmap": [
  9187. "src/"
  9188. ]
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "BSD-3-Clause"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Sebastian Bergmann",
  9197. "email": "sebastian@phpunit.de",
  9198. "role": "lead"
  9199. }
  9200. ],
  9201. "description": "Simple template engine.",
  9202. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9203. "keywords": [
  9204. "template"
  9205. ],
  9206. "support": {
  9207. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9208. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9209. },
  9210. "time": "2015-06-21T13:50:34+00:00"
  9211. },
  9212. {
  9213. "name": "phpunit/php-timer",
  9214. "version": "2.1.3",
  9215. "source": {
  9216. "type": "git",
  9217. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9218. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9219. },
  9220. "dist": {
  9221. "type": "zip",
  9222. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9223. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9224. "shasum": "",
  9225. "mirrors": [
  9226. {
  9227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9228. "preferred": true
  9229. }
  9230. ]
  9231. },
  9232. "require": {
  9233. "php": ">=7.1"
  9234. },
  9235. "require-dev": {
  9236. "phpunit/phpunit": "^8.5"
  9237. },
  9238. "type": "library",
  9239. "extra": {
  9240. "branch-alias": {
  9241. "dev-master": "2.1-dev"
  9242. }
  9243. },
  9244. "autoload": {
  9245. "classmap": [
  9246. "src/"
  9247. ]
  9248. },
  9249. "notification-url": "https://packagist.org/downloads/",
  9250. "license": [
  9251. "BSD-3-Clause"
  9252. ],
  9253. "authors": [
  9254. {
  9255. "name": "Sebastian Bergmann",
  9256. "email": "sebastian@phpunit.de",
  9257. "role": "lead"
  9258. }
  9259. ],
  9260. "description": "Utility class for timing",
  9261. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9262. "keywords": [
  9263. "timer"
  9264. ],
  9265. "support": {
  9266. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9267. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9268. },
  9269. "funding": [
  9270. {
  9271. "url": "https://github.com/sebastianbergmann",
  9272. "type": "github"
  9273. }
  9274. ],
  9275. "time": "2020-11-30T08:20:02+00:00"
  9276. },
  9277. {
  9278. "name": "phpunit/php-token-stream",
  9279. "version": "4.0.4",
  9280. "source": {
  9281. "type": "git",
  9282. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9283. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9284. },
  9285. "dist": {
  9286. "type": "zip",
  9287. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9288. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9289. "shasum": "",
  9290. "mirrors": [
  9291. {
  9292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9293. "preferred": true
  9294. }
  9295. ]
  9296. },
  9297. "require": {
  9298. "ext-tokenizer": "*",
  9299. "php": "^7.3 || ^8.0"
  9300. },
  9301. "require-dev": {
  9302. "phpunit/phpunit": "^9.0"
  9303. },
  9304. "type": "library",
  9305. "extra": {
  9306. "branch-alias": {
  9307. "dev-master": "4.0-dev"
  9308. }
  9309. },
  9310. "autoload": {
  9311. "classmap": [
  9312. "src/"
  9313. ]
  9314. },
  9315. "notification-url": "https://packagist.org/downloads/",
  9316. "license": [
  9317. "BSD-3-Clause"
  9318. ],
  9319. "authors": [
  9320. {
  9321. "name": "Sebastian Bergmann",
  9322. "email": "sebastian@phpunit.de"
  9323. }
  9324. ],
  9325. "description": "Wrapper around PHP's tokenizer extension.",
  9326. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9327. "keywords": [
  9328. "tokenizer"
  9329. ],
  9330. "support": {
  9331. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9332. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9333. },
  9334. "funding": [
  9335. {
  9336. "url": "https://github.com/sebastianbergmann",
  9337. "type": "github"
  9338. }
  9339. ],
  9340. "abandoned": true,
  9341. "time": "2020-08-04T08:28:15+00:00"
  9342. },
  9343. {
  9344. "name": "phpunit/phpunit",
  9345. "version": "8.5.20",
  9346. "source": {
  9347. "type": "git",
  9348. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9349. "reference": "9deefba183198398a09b927a6ac6bc1feb0b7b70"
  9350. },
  9351. "dist": {
  9352. "type": "zip",
  9353. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9deefba183198398a09b927a6ac6bc1feb0b7b70",
  9354. "reference": "9deefba183198398a09b927a6ac6bc1feb0b7b70",
  9355. "shasum": "",
  9356. "mirrors": [
  9357. {
  9358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9359. "preferred": true
  9360. }
  9361. ]
  9362. },
  9363. "require": {
  9364. "doctrine/instantiator": "^1.3.1",
  9365. "ext-dom": "*",
  9366. "ext-json": "*",
  9367. "ext-libxml": "*",
  9368. "ext-mbstring": "*",
  9369. "ext-xml": "*",
  9370. "ext-xmlwriter": "*",
  9371. "myclabs/deep-copy": "^1.10.0",
  9372. "phar-io/manifest": "^2.0.3",
  9373. "phar-io/version": "^3.0.2",
  9374. "php": ">=7.2",
  9375. "phpspec/prophecy": "^1.10.3",
  9376. "phpunit/php-code-coverage": "^7.0.12",
  9377. "phpunit/php-file-iterator": "^2.0.4",
  9378. "phpunit/php-text-template": "^1.2.1",
  9379. "phpunit/php-timer": "^2.1.2",
  9380. "sebastian/comparator": "^3.0.2",
  9381. "sebastian/diff": "^3.0.2",
  9382. "sebastian/environment": "^4.2.3",
  9383. "sebastian/exporter": "^3.1.2",
  9384. "sebastian/global-state": "^3.0.0",
  9385. "sebastian/object-enumerator": "^3.0.3",
  9386. "sebastian/resource-operations": "^2.0.1",
  9387. "sebastian/type": "^1.1.3",
  9388. "sebastian/version": "^2.0.1"
  9389. },
  9390. "require-dev": {
  9391. "ext-pdo": "*"
  9392. },
  9393. "suggest": {
  9394. "ext-soap": "*",
  9395. "ext-xdebug": "*",
  9396. "phpunit/php-invoker": "^2.0.0"
  9397. },
  9398. "bin": [
  9399. "phpunit"
  9400. ],
  9401. "type": "library",
  9402. "extra": {
  9403. "branch-alias": {
  9404. "dev-master": "8.5-dev"
  9405. }
  9406. },
  9407. "autoload": {
  9408. "classmap": [
  9409. "src/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "BSD-3-Clause"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Sebastian Bergmann",
  9419. "email": "sebastian@phpunit.de",
  9420. "role": "lead"
  9421. }
  9422. ],
  9423. "description": "The PHP Unit Testing framework.",
  9424. "homepage": "https://phpunit.de/",
  9425. "keywords": [
  9426. "phpunit",
  9427. "testing",
  9428. "xunit"
  9429. ],
  9430. "support": {
  9431. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9432. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.20"
  9433. },
  9434. "funding": [
  9435. {
  9436. "url": "https://phpunit.de/donate.html",
  9437. "type": "custom"
  9438. },
  9439. {
  9440. "url": "https://github.com/sebastianbergmann",
  9441. "type": "github"
  9442. }
  9443. ],
  9444. "time": "2021-08-31T06:44:38+00:00"
  9445. },
  9446. {
  9447. "name": "sebastian/code-unit-reverse-lookup",
  9448. "version": "1.0.2",
  9449. "source": {
  9450. "type": "git",
  9451. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9452. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9453. },
  9454. "dist": {
  9455. "type": "zip",
  9456. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9457. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9458. "shasum": "",
  9459. "mirrors": [
  9460. {
  9461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9462. "preferred": true
  9463. }
  9464. ]
  9465. },
  9466. "require": {
  9467. "php": ">=5.6"
  9468. },
  9469. "require-dev": {
  9470. "phpunit/phpunit": "^8.5"
  9471. },
  9472. "type": "library",
  9473. "extra": {
  9474. "branch-alias": {
  9475. "dev-master": "1.0.x-dev"
  9476. }
  9477. },
  9478. "autoload": {
  9479. "classmap": [
  9480. "src/"
  9481. ]
  9482. },
  9483. "notification-url": "https://packagist.org/downloads/",
  9484. "license": [
  9485. "BSD-3-Clause"
  9486. ],
  9487. "authors": [
  9488. {
  9489. "name": "Sebastian Bergmann",
  9490. "email": "sebastian@phpunit.de"
  9491. }
  9492. ],
  9493. "description": "Looks up which function or method a line of code belongs to",
  9494. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9495. "support": {
  9496. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9497. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9498. },
  9499. "funding": [
  9500. {
  9501. "url": "https://github.com/sebastianbergmann",
  9502. "type": "github"
  9503. }
  9504. ],
  9505. "time": "2020-11-30T08:15:22+00:00"
  9506. },
  9507. {
  9508. "name": "sebastian/comparator",
  9509. "version": "3.0.3",
  9510. "source": {
  9511. "type": "git",
  9512. "url": "https://github.com/sebastianbergmann/comparator.git",
  9513. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9514. },
  9515. "dist": {
  9516. "type": "zip",
  9517. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9518. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9519. "shasum": "",
  9520. "mirrors": [
  9521. {
  9522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9523. "preferred": true
  9524. }
  9525. ]
  9526. },
  9527. "require": {
  9528. "php": ">=7.1",
  9529. "sebastian/diff": "^3.0",
  9530. "sebastian/exporter": "^3.1"
  9531. },
  9532. "require-dev": {
  9533. "phpunit/phpunit": "^8.5"
  9534. },
  9535. "type": "library",
  9536. "extra": {
  9537. "branch-alias": {
  9538. "dev-master": "3.0-dev"
  9539. }
  9540. },
  9541. "autoload": {
  9542. "classmap": [
  9543. "src/"
  9544. ]
  9545. },
  9546. "notification-url": "https://packagist.org/downloads/",
  9547. "license": [
  9548. "BSD-3-Clause"
  9549. ],
  9550. "authors": [
  9551. {
  9552. "name": "Sebastian Bergmann",
  9553. "email": "sebastian@phpunit.de"
  9554. },
  9555. {
  9556. "name": "Jeff Welch",
  9557. "email": "whatthejeff@gmail.com"
  9558. },
  9559. {
  9560. "name": "Volker Dusch",
  9561. "email": "github@wallbash.com"
  9562. },
  9563. {
  9564. "name": "Bernhard Schussek",
  9565. "email": "bschussek@2bepublished.at"
  9566. }
  9567. ],
  9568. "description": "Provides the functionality to compare PHP values for equality",
  9569. "homepage": "https://github.com/sebastianbergmann/comparator",
  9570. "keywords": [
  9571. "comparator",
  9572. "compare",
  9573. "equality"
  9574. ],
  9575. "support": {
  9576. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9577. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9578. },
  9579. "funding": [
  9580. {
  9581. "url": "https://github.com/sebastianbergmann",
  9582. "type": "github"
  9583. }
  9584. ],
  9585. "time": "2020-11-30T08:04:30+00:00"
  9586. },
  9587. {
  9588. "name": "sebastian/diff",
  9589. "version": "3.0.3",
  9590. "source": {
  9591. "type": "git",
  9592. "url": "https://github.com/sebastianbergmann/diff.git",
  9593. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9594. },
  9595. "dist": {
  9596. "type": "zip",
  9597. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9598. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9599. "shasum": "",
  9600. "mirrors": [
  9601. {
  9602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9603. "preferred": true
  9604. }
  9605. ]
  9606. },
  9607. "require": {
  9608. "php": ">=7.1"
  9609. },
  9610. "require-dev": {
  9611. "phpunit/phpunit": "^7.5 || ^8.0",
  9612. "symfony/process": "^2 || ^3.3 || ^4"
  9613. },
  9614. "type": "library",
  9615. "extra": {
  9616. "branch-alias": {
  9617. "dev-master": "3.0-dev"
  9618. }
  9619. },
  9620. "autoload": {
  9621. "classmap": [
  9622. "src/"
  9623. ]
  9624. },
  9625. "notification-url": "https://packagist.org/downloads/",
  9626. "license": [
  9627. "BSD-3-Clause"
  9628. ],
  9629. "authors": [
  9630. {
  9631. "name": "Sebastian Bergmann",
  9632. "email": "sebastian@phpunit.de"
  9633. },
  9634. {
  9635. "name": "Kore Nordmann",
  9636. "email": "mail@kore-nordmann.de"
  9637. }
  9638. ],
  9639. "description": "Diff implementation",
  9640. "homepage": "https://github.com/sebastianbergmann/diff",
  9641. "keywords": [
  9642. "diff",
  9643. "udiff",
  9644. "unidiff",
  9645. "unified diff"
  9646. ],
  9647. "support": {
  9648. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9649. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9650. },
  9651. "funding": [
  9652. {
  9653. "url": "https://github.com/sebastianbergmann",
  9654. "type": "github"
  9655. }
  9656. ],
  9657. "time": "2020-11-30T07:59:04+00:00"
  9658. },
  9659. {
  9660. "name": "sebastian/environment",
  9661. "version": "4.2.4",
  9662. "source": {
  9663. "type": "git",
  9664. "url": "https://github.com/sebastianbergmann/environment.git",
  9665. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9666. },
  9667. "dist": {
  9668. "type": "zip",
  9669. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9670. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9671. "shasum": "",
  9672. "mirrors": [
  9673. {
  9674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9675. "preferred": true
  9676. }
  9677. ]
  9678. },
  9679. "require": {
  9680. "php": ">=7.1"
  9681. },
  9682. "require-dev": {
  9683. "phpunit/phpunit": "^7.5"
  9684. },
  9685. "suggest": {
  9686. "ext-posix": "*"
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "branch-alias": {
  9691. "dev-master": "4.2-dev"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "classmap": [
  9696. "src/"
  9697. ]
  9698. },
  9699. "notification-url": "https://packagist.org/downloads/",
  9700. "license": [
  9701. "BSD-3-Clause"
  9702. ],
  9703. "authors": [
  9704. {
  9705. "name": "Sebastian Bergmann",
  9706. "email": "sebastian@phpunit.de"
  9707. }
  9708. ],
  9709. "description": "Provides functionality to handle HHVM/PHP environments",
  9710. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9711. "keywords": [
  9712. "Xdebug",
  9713. "environment",
  9714. "hhvm"
  9715. ],
  9716. "support": {
  9717. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9718. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9719. },
  9720. "funding": [
  9721. {
  9722. "url": "https://github.com/sebastianbergmann",
  9723. "type": "github"
  9724. }
  9725. ],
  9726. "time": "2020-11-30T07:53:42+00:00"
  9727. },
  9728. {
  9729. "name": "sebastian/exporter",
  9730. "version": "3.1.3",
  9731. "source": {
  9732. "type": "git",
  9733. "url": "https://github.com/sebastianbergmann/exporter.git",
  9734. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9735. },
  9736. "dist": {
  9737. "type": "zip",
  9738. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9739. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9740. "shasum": "",
  9741. "mirrors": [
  9742. {
  9743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9744. "preferred": true
  9745. }
  9746. ]
  9747. },
  9748. "require": {
  9749. "php": ">=7.0",
  9750. "sebastian/recursion-context": "^3.0"
  9751. },
  9752. "require-dev": {
  9753. "ext-mbstring": "*",
  9754. "phpunit/phpunit": "^6.0"
  9755. },
  9756. "type": "library",
  9757. "extra": {
  9758. "branch-alias": {
  9759. "dev-master": "3.1.x-dev"
  9760. }
  9761. },
  9762. "autoload": {
  9763. "classmap": [
  9764. "src/"
  9765. ]
  9766. },
  9767. "notification-url": "https://packagist.org/downloads/",
  9768. "license": [
  9769. "BSD-3-Clause"
  9770. ],
  9771. "authors": [
  9772. {
  9773. "name": "Sebastian Bergmann",
  9774. "email": "sebastian@phpunit.de"
  9775. },
  9776. {
  9777. "name": "Jeff Welch",
  9778. "email": "whatthejeff@gmail.com"
  9779. },
  9780. {
  9781. "name": "Volker Dusch",
  9782. "email": "github@wallbash.com"
  9783. },
  9784. {
  9785. "name": "Adam Harvey",
  9786. "email": "aharvey@php.net"
  9787. },
  9788. {
  9789. "name": "Bernhard Schussek",
  9790. "email": "bschussek@gmail.com"
  9791. }
  9792. ],
  9793. "description": "Provides the functionality to export PHP variables for visualization",
  9794. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9795. "keywords": [
  9796. "export",
  9797. "exporter"
  9798. ],
  9799. "support": {
  9800. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9801. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9802. },
  9803. "funding": [
  9804. {
  9805. "url": "https://github.com/sebastianbergmann",
  9806. "type": "github"
  9807. }
  9808. ],
  9809. "time": "2020-11-30T07:47:53+00:00"
  9810. },
  9811. {
  9812. "name": "sebastian/global-state",
  9813. "version": "3.0.1",
  9814. "source": {
  9815. "type": "git",
  9816. "url": "https://github.com/sebastianbergmann/global-state.git",
  9817. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9818. },
  9819. "dist": {
  9820. "type": "zip",
  9821. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9822. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9823. "shasum": "",
  9824. "mirrors": [
  9825. {
  9826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9827. "preferred": true
  9828. }
  9829. ]
  9830. },
  9831. "require": {
  9832. "php": ">=7.2",
  9833. "sebastian/object-reflector": "^1.1.1",
  9834. "sebastian/recursion-context": "^3.0"
  9835. },
  9836. "require-dev": {
  9837. "ext-dom": "*",
  9838. "phpunit/phpunit": "^8.0"
  9839. },
  9840. "suggest": {
  9841. "ext-uopz": "*"
  9842. },
  9843. "type": "library",
  9844. "extra": {
  9845. "branch-alias": {
  9846. "dev-master": "3.0-dev"
  9847. }
  9848. },
  9849. "autoload": {
  9850. "classmap": [
  9851. "src/"
  9852. ]
  9853. },
  9854. "notification-url": "https://packagist.org/downloads/",
  9855. "license": [
  9856. "BSD-3-Clause"
  9857. ],
  9858. "authors": [
  9859. {
  9860. "name": "Sebastian Bergmann",
  9861. "email": "sebastian@phpunit.de"
  9862. }
  9863. ],
  9864. "description": "Snapshotting of global state",
  9865. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9866. "keywords": [
  9867. "global state"
  9868. ],
  9869. "support": {
  9870. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9871. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9872. },
  9873. "funding": [
  9874. {
  9875. "url": "https://github.com/sebastianbergmann",
  9876. "type": "github"
  9877. }
  9878. ],
  9879. "time": "2020-11-30T07:43:24+00:00"
  9880. },
  9881. {
  9882. "name": "sebastian/object-enumerator",
  9883. "version": "3.0.4",
  9884. "source": {
  9885. "type": "git",
  9886. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9887. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9888. },
  9889. "dist": {
  9890. "type": "zip",
  9891. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9892. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9893. "shasum": "",
  9894. "mirrors": [
  9895. {
  9896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9897. "preferred": true
  9898. }
  9899. ]
  9900. },
  9901. "require": {
  9902. "php": ">=7.0",
  9903. "sebastian/object-reflector": "^1.1.1",
  9904. "sebastian/recursion-context": "^3.0"
  9905. },
  9906. "require-dev": {
  9907. "phpunit/phpunit": "^6.0"
  9908. },
  9909. "type": "library",
  9910. "extra": {
  9911. "branch-alias": {
  9912. "dev-master": "3.0.x-dev"
  9913. }
  9914. },
  9915. "autoload": {
  9916. "classmap": [
  9917. "src/"
  9918. ]
  9919. },
  9920. "notification-url": "https://packagist.org/downloads/",
  9921. "license": [
  9922. "BSD-3-Clause"
  9923. ],
  9924. "authors": [
  9925. {
  9926. "name": "Sebastian Bergmann",
  9927. "email": "sebastian@phpunit.de"
  9928. }
  9929. ],
  9930. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9931. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9932. "support": {
  9933. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9934. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9935. },
  9936. "funding": [
  9937. {
  9938. "url": "https://github.com/sebastianbergmann",
  9939. "type": "github"
  9940. }
  9941. ],
  9942. "time": "2020-11-30T07:40:27+00:00"
  9943. },
  9944. {
  9945. "name": "sebastian/object-reflector",
  9946. "version": "1.1.2",
  9947. "source": {
  9948. "type": "git",
  9949. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9950. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9951. },
  9952. "dist": {
  9953. "type": "zip",
  9954. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9955. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9956. "shasum": "",
  9957. "mirrors": [
  9958. {
  9959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9960. "preferred": true
  9961. }
  9962. ]
  9963. },
  9964. "require": {
  9965. "php": ">=7.0"
  9966. },
  9967. "require-dev": {
  9968. "phpunit/phpunit": "^6.0"
  9969. },
  9970. "type": "library",
  9971. "extra": {
  9972. "branch-alias": {
  9973. "dev-master": "1.1-dev"
  9974. }
  9975. },
  9976. "autoload": {
  9977. "classmap": [
  9978. "src/"
  9979. ]
  9980. },
  9981. "notification-url": "https://packagist.org/downloads/",
  9982. "license": [
  9983. "BSD-3-Clause"
  9984. ],
  9985. "authors": [
  9986. {
  9987. "name": "Sebastian Bergmann",
  9988. "email": "sebastian@phpunit.de"
  9989. }
  9990. ],
  9991. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9992. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9993. "support": {
  9994. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9995. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9996. },
  9997. "funding": [
  9998. {
  9999. "url": "https://github.com/sebastianbergmann",
  10000. "type": "github"
  10001. }
  10002. ],
  10003. "time": "2020-11-30T07:37:18+00:00"
  10004. },
  10005. {
  10006. "name": "sebastian/recursion-context",
  10007. "version": "3.0.1",
  10008. "source": {
  10009. "type": "git",
  10010. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10011. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10012. },
  10013. "dist": {
  10014. "type": "zip",
  10015. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10016. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10017. "shasum": "",
  10018. "mirrors": [
  10019. {
  10020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10021. "preferred": true
  10022. }
  10023. ]
  10024. },
  10025. "require": {
  10026. "php": ">=7.0"
  10027. },
  10028. "require-dev": {
  10029. "phpunit/phpunit": "^6.0"
  10030. },
  10031. "type": "library",
  10032. "extra": {
  10033. "branch-alias": {
  10034. "dev-master": "3.0.x-dev"
  10035. }
  10036. },
  10037. "autoload": {
  10038. "classmap": [
  10039. "src/"
  10040. ]
  10041. },
  10042. "notification-url": "https://packagist.org/downloads/",
  10043. "license": [
  10044. "BSD-3-Clause"
  10045. ],
  10046. "authors": [
  10047. {
  10048. "name": "Sebastian Bergmann",
  10049. "email": "sebastian@phpunit.de"
  10050. },
  10051. {
  10052. "name": "Jeff Welch",
  10053. "email": "whatthejeff@gmail.com"
  10054. },
  10055. {
  10056. "name": "Adam Harvey",
  10057. "email": "aharvey@php.net"
  10058. }
  10059. ],
  10060. "description": "Provides functionality to recursively process PHP variables",
  10061. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10062. "support": {
  10063. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10064. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10065. },
  10066. "funding": [
  10067. {
  10068. "url": "https://github.com/sebastianbergmann",
  10069. "type": "github"
  10070. }
  10071. ],
  10072. "time": "2020-11-30T07:34:24+00:00"
  10073. },
  10074. {
  10075. "name": "sebastian/resource-operations",
  10076. "version": "2.0.2",
  10077. "source": {
  10078. "type": "git",
  10079. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10080. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10081. },
  10082. "dist": {
  10083. "type": "zip",
  10084. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10085. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10086. "shasum": "",
  10087. "mirrors": [
  10088. {
  10089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10090. "preferred": true
  10091. }
  10092. ]
  10093. },
  10094. "require": {
  10095. "php": ">=7.1"
  10096. },
  10097. "type": "library",
  10098. "extra": {
  10099. "branch-alias": {
  10100. "dev-master": "2.0-dev"
  10101. }
  10102. },
  10103. "autoload": {
  10104. "classmap": [
  10105. "src/"
  10106. ]
  10107. },
  10108. "notification-url": "https://packagist.org/downloads/",
  10109. "license": [
  10110. "BSD-3-Clause"
  10111. ],
  10112. "authors": [
  10113. {
  10114. "name": "Sebastian Bergmann",
  10115. "email": "sebastian@phpunit.de"
  10116. }
  10117. ],
  10118. "description": "Provides a list of PHP built-in functions that operate on resources",
  10119. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10120. "support": {
  10121. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10122. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10123. },
  10124. "funding": [
  10125. {
  10126. "url": "https://github.com/sebastianbergmann",
  10127. "type": "github"
  10128. }
  10129. ],
  10130. "time": "2020-11-30T07:30:19+00:00"
  10131. },
  10132. {
  10133. "name": "sebastian/type",
  10134. "version": "1.1.4",
  10135. "source": {
  10136. "type": "git",
  10137. "url": "https://github.com/sebastianbergmann/type.git",
  10138. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10139. },
  10140. "dist": {
  10141. "type": "zip",
  10142. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10143. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10144. "shasum": "",
  10145. "mirrors": [
  10146. {
  10147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10148. "preferred": true
  10149. }
  10150. ]
  10151. },
  10152. "require": {
  10153. "php": ">=7.2"
  10154. },
  10155. "require-dev": {
  10156. "phpunit/phpunit": "^8.2"
  10157. },
  10158. "type": "library",
  10159. "extra": {
  10160. "branch-alias": {
  10161. "dev-master": "1.1-dev"
  10162. }
  10163. },
  10164. "autoload": {
  10165. "classmap": [
  10166. "src/"
  10167. ]
  10168. },
  10169. "notification-url": "https://packagist.org/downloads/",
  10170. "license": [
  10171. "BSD-3-Clause"
  10172. ],
  10173. "authors": [
  10174. {
  10175. "name": "Sebastian Bergmann",
  10176. "email": "sebastian@phpunit.de",
  10177. "role": "lead"
  10178. }
  10179. ],
  10180. "description": "Collection of value objects that represent the types of the PHP type system",
  10181. "homepage": "https://github.com/sebastianbergmann/type",
  10182. "support": {
  10183. "issues": "https://github.com/sebastianbergmann/type/issues",
  10184. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10185. },
  10186. "funding": [
  10187. {
  10188. "url": "https://github.com/sebastianbergmann",
  10189. "type": "github"
  10190. }
  10191. ],
  10192. "time": "2020-11-30T07:25:11+00:00"
  10193. },
  10194. {
  10195. "name": "sebastian/version",
  10196. "version": "2.0.1",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/sebastianbergmann/version.git",
  10200. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10205. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10206. "shasum": "",
  10207. "mirrors": [
  10208. {
  10209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10210. "preferred": true
  10211. }
  10212. ]
  10213. },
  10214. "require": {
  10215. "php": ">=5.6"
  10216. },
  10217. "type": "library",
  10218. "extra": {
  10219. "branch-alias": {
  10220. "dev-master": "2.0.x-dev"
  10221. }
  10222. },
  10223. "autoload": {
  10224. "classmap": [
  10225. "src/"
  10226. ]
  10227. },
  10228. "notification-url": "https://packagist.org/downloads/",
  10229. "license": [
  10230. "BSD-3-Clause"
  10231. ],
  10232. "authors": [
  10233. {
  10234. "name": "Sebastian Bergmann",
  10235. "email": "sebastian@phpunit.de",
  10236. "role": "lead"
  10237. }
  10238. ],
  10239. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10240. "homepage": "https://github.com/sebastianbergmann/version",
  10241. "support": {
  10242. "issues": "https://github.com/sebastianbergmann/version/issues",
  10243. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10244. },
  10245. "time": "2016-10-03T07:35:21+00:00"
  10246. },
  10247. {
  10248. "name": "symfony/debug",
  10249. "version": "v4.4.27",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/symfony/debug.git",
  10253. "reference": "2f9160e92eb64c95da7368c867b663a8e34e980c"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/symfony/debug/zipball/2f9160e92eb64c95da7368c867b663a8e34e980c",
  10258. "reference": "2f9160e92eb64c95da7368c867b663a8e34e980c",
  10259. "shasum": "",
  10260. "mirrors": [
  10261. {
  10262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10263. "preferred": true
  10264. }
  10265. ]
  10266. },
  10267. "require": {
  10268. "php": ">=7.1.3",
  10269. "psr/log": "^1|^2|^3"
  10270. },
  10271. "conflict": {
  10272. "symfony/http-kernel": "<3.4"
  10273. },
  10274. "require-dev": {
  10275. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10276. },
  10277. "type": "library",
  10278. "autoload": {
  10279. "psr-4": {
  10280. "Symfony\\Component\\Debug\\": ""
  10281. },
  10282. "exclude-from-classmap": [
  10283. "/Tests/"
  10284. ]
  10285. },
  10286. "notification-url": "https://packagist.org/downloads/",
  10287. "license": [
  10288. "MIT"
  10289. ],
  10290. "authors": [
  10291. {
  10292. "name": "Fabien Potencier",
  10293. "email": "fabien@symfony.com"
  10294. },
  10295. {
  10296. "name": "Symfony Community",
  10297. "homepage": "https://symfony.com/contributors"
  10298. }
  10299. ],
  10300. "description": "Provides tools to ease debugging PHP code",
  10301. "homepage": "https://symfony.com",
  10302. "support": {
  10303. "source": "https://github.com/symfony/debug/tree/v4.4.27"
  10304. },
  10305. "funding": [
  10306. {
  10307. "url": "https://symfony.com/sponsor",
  10308. "type": "custom"
  10309. },
  10310. {
  10311. "url": "https://github.com/fabpot",
  10312. "type": "github"
  10313. },
  10314. {
  10315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10316. "type": "tidelift"
  10317. }
  10318. ],
  10319. "time": "2021-07-22T07:21:39+00:00"
  10320. },
  10321. {
  10322. "name": "theseer/tokenizer",
  10323. "version": "1.2.1",
  10324. "source": {
  10325. "type": "git",
  10326. "url": "https://github.com/theseer/tokenizer.git",
  10327. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10328. },
  10329. "dist": {
  10330. "type": "zip",
  10331. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10332. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10333. "shasum": "",
  10334. "mirrors": [
  10335. {
  10336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10337. "preferred": true
  10338. }
  10339. ]
  10340. },
  10341. "require": {
  10342. "ext-dom": "*",
  10343. "ext-tokenizer": "*",
  10344. "ext-xmlwriter": "*",
  10345. "php": "^7.2 || ^8.0"
  10346. },
  10347. "type": "library",
  10348. "autoload": {
  10349. "classmap": [
  10350. "src/"
  10351. ]
  10352. },
  10353. "notification-url": "https://packagist.org/downloads/",
  10354. "license": [
  10355. "BSD-3-Clause"
  10356. ],
  10357. "authors": [
  10358. {
  10359. "name": "Arne Blankerts",
  10360. "email": "arne@blankerts.de",
  10361. "role": "Developer"
  10362. }
  10363. ],
  10364. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10365. "support": {
  10366. "issues": "https://github.com/theseer/tokenizer/issues",
  10367. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10368. },
  10369. "funding": [
  10370. {
  10371. "url": "https://github.com/theseer",
  10372. "type": "github"
  10373. }
  10374. ],
  10375. "time": "2021-07-28T10:34:58+00:00"
  10376. },
  10377. {
  10378. "name": "webmozart/assert",
  10379. "version": "1.10.0",
  10380. "source": {
  10381. "type": "git",
  10382. "url": "https://github.com/webmozarts/assert.git",
  10383. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10384. },
  10385. "dist": {
  10386. "type": "zip",
  10387. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10388. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10389. "shasum": "",
  10390. "mirrors": [
  10391. {
  10392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10393. "preferred": true
  10394. }
  10395. ]
  10396. },
  10397. "require": {
  10398. "php": "^7.2 || ^8.0",
  10399. "symfony/polyfill-ctype": "^1.8"
  10400. },
  10401. "conflict": {
  10402. "phpstan/phpstan": "<0.12.20",
  10403. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10404. },
  10405. "require-dev": {
  10406. "phpunit/phpunit": "^8.5.13"
  10407. },
  10408. "type": "library",
  10409. "extra": {
  10410. "branch-alias": {
  10411. "dev-master": "1.10-dev"
  10412. }
  10413. },
  10414. "autoload": {
  10415. "psr-4": {
  10416. "Webmozart\\Assert\\": "src/"
  10417. }
  10418. },
  10419. "notification-url": "https://packagist.org/downloads/",
  10420. "license": [
  10421. "MIT"
  10422. ],
  10423. "authors": [
  10424. {
  10425. "name": "Bernhard Schussek",
  10426. "email": "bschussek@gmail.com"
  10427. }
  10428. ],
  10429. "description": "Assertions to validate method input/output with nice error messages.",
  10430. "keywords": [
  10431. "assert",
  10432. "check",
  10433. "validate"
  10434. ],
  10435. "support": {
  10436. "issues": "https://github.com/webmozarts/assert/issues",
  10437. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10438. },
  10439. "time": "2021-03-09T10:59:23+00:00"
  10440. }
  10441. ],
  10442. "aliases": [],
  10443. "minimum-stability": "dev",
  10444. "stability-flags": [],
  10445. "prefer-stable": true,
  10446. "prefer-lowest": false,
  10447. "platform": {
  10448. "php": "^7.2.14",
  10449. "ext-bcmath": "*",
  10450. "ext-json": "*",
  10451. "ext-mbstring": "*",
  10452. "ext-openssl": "*",
  10453. "ext-pdo": "*"
  10454. },
  10455. "platform-dev": [],
  10456. "platform-overrides": {
  10457. "ext-pcntl": "7.2",
  10458. "ext-posix": "7.2"
  10459. },
  10460. "plugin-api-version": "2.1.0"
  10461. }