composer.lock 328 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138
  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": "9fb48c117bc3478160f1b69ad28ec904",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  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. "time": "2020-10-30T02:02:47+00:00"
  63. },
  64. {
  65. "name": "brick/math",
  66. "version": "0.9.2",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/brick/math.git",
  70. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  75. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "ext-json": "*",
  86. "php": "^7.1 || ^8.0"
  87. },
  88. "require-dev": {
  89. "php-coveralls/php-coveralls": "^2.2",
  90. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  91. "vimeo/psalm": "4.3.2"
  92. },
  93. "type": "library",
  94. "autoload": {
  95. "psr-4": {
  96. "Brick\\Math\\": "src/"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "MIT"
  102. ],
  103. "description": "Arbitrary-precision arithmetic library",
  104. "keywords": [
  105. "Arbitrary-precision",
  106. "BigInteger",
  107. "BigRational",
  108. "arithmetic",
  109. "bigdecimal",
  110. "bignum",
  111. "brick",
  112. "math"
  113. ],
  114. "support": {
  115. "issues": "https://github.com/brick/math/issues",
  116. "source": "https://github.com/brick/math/tree/0.9.2"
  117. },
  118. "time": "2021-01-20T22:51:39+00:00"
  119. },
  120. {
  121. "name": "cakephp/chronos",
  122. "version": "2.1.2",
  123. "source": {
  124. "type": "git",
  125. "url": "https://github.com/cakephp/chronos.git",
  126. "reference": "1d187c71587c97520c00491f626e0f255144953e"
  127. },
  128. "dist": {
  129. "type": "zip",
  130. "url": "https://api.github.com/repos/cakephp/chronos/zipball/1d187c71587c97520c00491f626e0f255144953e",
  131. "reference": "1d187c71587c97520c00491f626e0f255144953e",
  132. "shasum": "",
  133. "mirrors": [
  134. {
  135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  136. "preferred": true
  137. }
  138. ]
  139. },
  140. "require": {
  141. "php": ">=7.2"
  142. },
  143. "require-dev": {
  144. "cakephp/cakephp-codesniffer": "^4.0",
  145. "phpunit/phpunit": "^8.0 || ^9.0"
  146. },
  147. "type": "library",
  148. "autoload": {
  149. "psr-4": {
  150. "Cake\\Chronos\\": "src/"
  151. },
  152. "files": [
  153. "src/carbon_compat.php"
  154. ]
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "authors": [
  161. {
  162. "name": "Brian Nesbitt",
  163. "email": "brian@nesbot.com",
  164. "homepage": "http://nesbot.com"
  165. },
  166. {
  167. "name": "The CakePHP Team",
  168. "homepage": "http://cakephp.org"
  169. }
  170. ],
  171. "description": "A simple API extension for DateTime.",
  172. "homepage": "http://cakephp.org",
  173. "keywords": [
  174. "date",
  175. "datetime",
  176. "time"
  177. ],
  178. "support": {
  179. "irc": "irc://irc.freenode.org/cakephp",
  180. "issues": "https://github.com/cakephp/chronos/issues",
  181. "source": "https://github.com/cakephp/chronos"
  182. },
  183. "time": "2021-04-07T01:06:46+00:00"
  184. },
  185. {
  186. "name": "dasprid/enum",
  187. "version": "1.0.3",
  188. "source": {
  189. "type": "git",
  190. "url": "https://github.com/DASPRiD/Enum.git",
  191. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  192. },
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  196. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  197. "shasum": "",
  198. "mirrors": [
  199. {
  200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  201. "preferred": true
  202. }
  203. ]
  204. },
  205. "require-dev": {
  206. "phpunit/phpunit": "^7 | ^8 | ^9",
  207. "squizlabs/php_codesniffer": "^3.4"
  208. },
  209. "type": "library",
  210. "autoload": {
  211. "psr-4": {
  212. "DASPRiD\\Enum\\": "src/"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "BSD-2-Clause"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Ben Scholzen 'DASPRiD'",
  222. "email": "mail@dasprids.de",
  223. "homepage": "https://dasprids.de/",
  224. "role": "Developer"
  225. }
  226. ],
  227. "description": "PHP 7.1 enum implementation",
  228. "keywords": [
  229. "enum",
  230. "map"
  231. ],
  232. "time": "2020-10-02T16:03:48+00:00"
  233. },
  234. {
  235. "name": "doctrine/cache",
  236. "version": "1.11.3",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/cache.git",
  240. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
  245. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
  246. "shasum": "",
  247. "mirrors": [
  248. {
  249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  250. "preferred": true
  251. }
  252. ]
  253. },
  254. "require": {
  255. "php": "~7.1 || ^8.0"
  256. },
  257. "conflict": {
  258. "doctrine/common": ">2.2,<2.4",
  259. "psr/cache": ">=3"
  260. },
  261. "require-dev": {
  262. "alcaeus/mongo-php-adapter": "^1.1",
  263. "cache/integration-tests": "dev-master",
  264. "doctrine/coding-standard": "^8.0",
  265. "mongodb/mongodb": "^1.1",
  266. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  267. "predis/predis": "~1.0",
  268. "psr/cache": "^1.0 || ^2.0",
  269. "symfony/cache": "^4.4 || ^5.2"
  270. },
  271. "suggest": {
  272. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  273. },
  274. "type": "library",
  275. "autoload": {
  276. "psr-4": {
  277. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  278. }
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "MIT"
  283. ],
  284. "authors": [
  285. {
  286. "name": "Guilherme Blanco",
  287. "email": "guilhermeblanco@gmail.com"
  288. },
  289. {
  290. "name": "Roman Borschel",
  291. "email": "roman@code-factory.org"
  292. },
  293. {
  294. "name": "Benjamin Eberlei",
  295. "email": "kontakt@beberlei.de"
  296. },
  297. {
  298. "name": "Jonathan Wage",
  299. "email": "jonwage@gmail.com"
  300. },
  301. {
  302. "name": "Johannes Schmitt",
  303. "email": "schmittjoh@gmail.com"
  304. }
  305. ],
  306. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  307. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  308. "keywords": [
  309. "abstraction",
  310. "apcu",
  311. "cache",
  312. "caching",
  313. "couchdb",
  314. "memcached",
  315. "php",
  316. "redis",
  317. "xcache"
  318. ],
  319. "support": {
  320. "issues": "https://github.com/doctrine/cache/issues",
  321. "source": "https://github.com/doctrine/cache/tree/1.11.3"
  322. },
  323. "time": "2021-05-25T09:01:55+00:00"
  324. },
  325. {
  326. "name": "doctrine/dbal",
  327. "version": "2.13.1",
  328. "source": {
  329. "type": "git",
  330. "url": "https://github.com/doctrine/dbal.git",
  331. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  332. },
  333. "dist": {
  334. "type": "zip",
  335. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  336. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  337. "shasum": "",
  338. "mirrors": [
  339. {
  340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  341. "preferred": true
  342. }
  343. ]
  344. },
  345. "require": {
  346. "doctrine/cache": "^1.0",
  347. "doctrine/deprecations": "^0.5.3",
  348. "doctrine/event-manager": "^1.0",
  349. "ext-pdo": "*",
  350. "php": "^7.1 || ^8"
  351. },
  352. "require-dev": {
  353. "doctrine/coding-standard": "8.2.0",
  354. "jetbrains/phpstorm-stubs": "2020.2",
  355. "phpstan/phpstan": "0.12.81",
  356. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  357. "squizlabs/php_codesniffer": "3.6.0",
  358. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  359. "vimeo/psalm": "4.6.4"
  360. },
  361. "suggest": {
  362. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  363. },
  364. "bin": [
  365. "bin/doctrine-dbal"
  366. ],
  367. "type": "library",
  368. "autoload": {
  369. "psr-4": {
  370. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  371. }
  372. },
  373. "notification-url": "https://packagist.org/downloads/",
  374. "license": [
  375. "MIT"
  376. ],
  377. "authors": [
  378. {
  379. "name": "Guilherme Blanco",
  380. "email": "guilhermeblanco@gmail.com"
  381. },
  382. {
  383. "name": "Roman Borschel",
  384. "email": "roman@code-factory.org"
  385. },
  386. {
  387. "name": "Benjamin Eberlei",
  388. "email": "kontakt@beberlei.de"
  389. },
  390. {
  391. "name": "Jonathan Wage",
  392. "email": "jonwage@gmail.com"
  393. }
  394. ],
  395. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  396. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  397. "keywords": [
  398. "abstraction",
  399. "database",
  400. "db2",
  401. "dbal",
  402. "mariadb",
  403. "mssql",
  404. "mysql",
  405. "oci8",
  406. "oracle",
  407. "pdo",
  408. "pgsql",
  409. "postgresql",
  410. "queryobject",
  411. "sasql",
  412. "sql",
  413. "sqlanywhere",
  414. "sqlite",
  415. "sqlserver",
  416. "sqlsrv"
  417. ],
  418. "support": {
  419. "issues": "https://github.com/doctrine/dbal/issues",
  420. "source": "https://github.com/doctrine/dbal/tree/2.13.1"
  421. },
  422. "time": "2021-04-17T17:30:19+00:00"
  423. },
  424. {
  425. "name": "doctrine/deprecations",
  426. "version": "v0.5.3",
  427. "source": {
  428. "type": "git",
  429. "url": "https://github.com/doctrine/deprecations.git",
  430. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  431. },
  432. "dist": {
  433. "type": "zip",
  434. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  435. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  436. "shasum": "",
  437. "mirrors": [
  438. {
  439. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  440. "preferred": true
  441. }
  442. ]
  443. },
  444. "require": {
  445. "php": "^7.1|^8.0"
  446. },
  447. "require-dev": {
  448. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  449. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  450. "psr/log": "^1.0"
  451. },
  452. "suggest": {
  453. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  454. },
  455. "type": "library",
  456. "autoload": {
  457. "psr-4": {
  458. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  459. }
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "MIT"
  464. ],
  465. "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.",
  466. "homepage": "https://www.doctrine-project.org/",
  467. "support": {
  468. "issues": "https://github.com/doctrine/deprecations/issues",
  469. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  470. },
  471. "time": "2021-03-21T12:59:47+00:00"
  472. },
  473. {
  474. "name": "doctrine/event-manager",
  475. "version": "1.1.1",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/doctrine/event-manager.git",
  479. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  484. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  485. "shasum": "",
  486. "mirrors": [
  487. {
  488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  489. "preferred": true
  490. }
  491. ]
  492. },
  493. "require": {
  494. "php": "^7.1 || ^8.0"
  495. },
  496. "conflict": {
  497. "doctrine/common": "<2.9@dev"
  498. },
  499. "require-dev": {
  500. "doctrine/coding-standard": "^6.0",
  501. "phpunit/phpunit": "^7.0"
  502. },
  503. "type": "library",
  504. "extra": {
  505. "branch-alias": {
  506. "dev-master": "1.0.x-dev"
  507. }
  508. },
  509. "autoload": {
  510. "psr-4": {
  511. "Doctrine\\Common\\": "lib/Doctrine/Common"
  512. }
  513. },
  514. "notification-url": "https://packagist.org/downloads/",
  515. "license": [
  516. "MIT"
  517. ],
  518. "authors": [
  519. {
  520. "name": "Guilherme Blanco",
  521. "email": "guilhermeblanco@gmail.com"
  522. },
  523. {
  524. "name": "Roman Borschel",
  525. "email": "roman@code-factory.org"
  526. },
  527. {
  528. "name": "Benjamin Eberlei",
  529. "email": "kontakt@beberlei.de"
  530. },
  531. {
  532. "name": "Jonathan Wage",
  533. "email": "jonwage@gmail.com"
  534. },
  535. {
  536. "name": "Johannes Schmitt",
  537. "email": "schmittjoh@gmail.com"
  538. },
  539. {
  540. "name": "Marco Pivetta",
  541. "email": "ocramius@gmail.com"
  542. }
  543. ],
  544. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  545. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  546. "keywords": [
  547. "event",
  548. "event dispatcher",
  549. "event manager",
  550. "event system",
  551. "events"
  552. ],
  553. "time": "2020-05-29T18:28:51+00:00"
  554. },
  555. {
  556. "name": "doctrine/inflector",
  557. "version": "2.0.3",
  558. "source": {
  559. "type": "git",
  560. "url": "https://github.com/doctrine/inflector.git",
  561. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  562. },
  563. "dist": {
  564. "type": "zip",
  565. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  566. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  567. "shasum": "",
  568. "mirrors": [
  569. {
  570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  571. "preferred": true
  572. }
  573. ]
  574. },
  575. "require": {
  576. "php": "^7.2 || ^8.0"
  577. },
  578. "require-dev": {
  579. "doctrine/coding-standard": "^7.0",
  580. "phpstan/phpstan": "^0.11",
  581. "phpstan/phpstan-phpunit": "^0.11",
  582. "phpstan/phpstan-strict-rules": "^0.11",
  583. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "branch-alias": {
  588. "dev-master": "2.0.x-dev"
  589. }
  590. },
  591. "autoload": {
  592. "psr-4": {
  593. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  594. }
  595. },
  596. "notification-url": "https://packagist.org/downloads/",
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Guilherme Blanco",
  603. "email": "guilhermeblanco@gmail.com"
  604. },
  605. {
  606. "name": "Roman Borschel",
  607. "email": "roman@code-factory.org"
  608. },
  609. {
  610. "name": "Benjamin Eberlei",
  611. "email": "kontakt@beberlei.de"
  612. },
  613. {
  614. "name": "Jonathan Wage",
  615. "email": "jonwage@gmail.com"
  616. },
  617. {
  618. "name": "Johannes Schmitt",
  619. "email": "schmittjoh@gmail.com"
  620. }
  621. ],
  622. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  623. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  624. "keywords": [
  625. "inflection",
  626. "inflector",
  627. "lowercase",
  628. "manipulation",
  629. "php",
  630. "plural",
  631. "singular",
  632. "strings",
  633. "uppercase",
  634. "words"
  635. ],
  636. "time": "2020-05-29T15:13:26+00:00"
  637. },
  638. {
  639. "name": "doctrine/lexer",
  640. "version": "1.2.1",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/doctrine/lexer.git",
  644. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  649. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  650. "shasum": "",
  651. "mirrors": [
  652. {
  653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  654. "preferred": true
  655. }
  656. ]
  657. },
  658. "require": {
  659. "php": "^7.2 || ^8.0"
  660. },
  661. "require-dev": {
  662. "doctrine/coding-standard": "^6.0",
  663. "phpstan/phpstan": "^0.11.8",
  664. "phpunit/phpunit": "^8.2"
  665. },
  666. "type": "library",
  667. "extra": {
  668. "branch-alias": {
  669. "dev-master": "1.2.x-dev"
  670. }
  671. },
  672. "autoload": {
  673. "psr-4": {
  674. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Guilherme Blanco",
  684. "email": "guilhermeblanco@gmail.com"
  685. },
  686. {
  687. "name": "Roman Borschel",
  688. "email": "roman@code-factory.org"
  689. },
  690. {
  691. "name": "Johannes Schmitt",
  692. "email": "schmittjoh@gmail.com"
  693. }
  694. ],
  695. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  696. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  697. "keywords": [
  698. "annotations",
  699. "docblock",
  700. "lexer",
  701. "parser",
  702. "php"
  703. ],
  704. "time": "2020-05-25T17:44:05+00:00"
  705. },
  706. {
  707. "name": "dragonmantank/cron-expression",
  708. "version": "v2.3.1",
  709. "source": {
  710. "type": "git",
  711. "url": "https://github.com/dragonmantank/cron-expression.git",
  712. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  713. },
  714. "dist": {
  715. "type": "zip",
  716. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  717. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  718. "shasum": "",
  719. "mirrors": [
  720. {
  721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  722. "preferred": true
  723. }
  724. ]
  725. },
  726. "require": {
  727. "php": "^7.0|^8.0"
  728. },
  729. "require-dev": {
  730. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-master": "2.3-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "Cron\\": "src/Cron/"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "Michael Dowling",
  750. "email": "mtdowling@gmail.com",
  751. "homepage": "https://github.com/mtdowling"
  752. },
  753. {
  754. "name": "Chris Tankersley",
  755. "email": "chris@ctankersley.com",
  756. "homepage": "https://github.com/dragonmantank"
  757. }
  758. ],
  759. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  760. "keywords": [
  761. "cron",
  762. "schedule"
  763. ],
  764. "time": "2020-10-13T00:52:37+00:00"
  765. },
  766. {
  767. "name": "egulias/email-validator",
  768. "version": "2.1.25",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/egulias/EmailValidator.git",
  772. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  777. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  778. "shasum": "",
  779. "mirrors": [
  780. {
  781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  782. "preferred": true
  783. }
  784. ]
  785. },
  786. "require": {
  787. "doctrine/lexer": "^1.0.1",
  788. "php": ">=5.5",
  789. "symfony/polyfill-intl-idn": "^1.10"
  790. },
  791. "require-dev": {
  792. "dominicsayers/isemail": "^3.0.7",
  793. "phpunit/phpunit": "^4.8.36|^7.5.15",
  794. "satooshi/php-coveralls": "^1.0.1"
  795. },
  796. "suggest": {
  797. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  798. },
  799. "type": "library",
  800. "extra": {
  801. "branch-alias": {
  802. "dev-master": "2.1.x-dev"
  803. }
  804. },
  805. "autoload": {
  806. "psr-4": {
  807. "Egulias\\EmailValidator\\": "src"
  808. }
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Eduardo Gulias Davis"
  817. }
  818. ],
  819. "description": "A library for validating emails against several RFCs",
  820. "homepage": "https://github.com/egulias/EmailValidator",
  821. "keywords": [
  822. "email",
  823. "emailvalidation",
  824. "emailvalidator",
  825. "validation",
  826. "validator"
  827. ],
  828. "support": {
  829. "issues": "https://github.com/egulias/EmailValidator/issues",
  830. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  831. },
  832. "time": "2020-12-29T14:50:06+00:00"
  833. },
  834. {
  835. "name": "endroid/qr-code",
  836. "version": "3.9.7",
  837. "source": {
  838. "type": "git",
  839. "url": "https://github.com/endroid/qr-code.git",
  840. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  841. },
  842. "dist": {
  843. "type": "zip",
  844. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  845. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  846. "shasum": "",
  847. "mirrors": [
  848. {
  849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  850. "preferred": true
  851. }
  852. ]
  853. },
  854. "require": {
  855. "bacon/bacon-qr-code": "^2.0",
  856. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  857. "myclabs/php-enum": "^1.5",
  858. "php": "^7.3||^8.0",
  859. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  860. "symfony/property-access": "^3.4||^4.4||^5.0"
  861. },
  862. "require-dev": {
  863. "endroid/quality": "^1.5.2",
  864. "setasign/fpdf": "^1.8"
  865. },
  866. "suggest": {
  867. "ext-gd": "Required for generating PNG images",
  868. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  869. "setasign/fpdf": "Required to use the FPDF writer.",
  870. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  871. },
  872. "type": "library",
  873. "extra": {
  874. "branch-alias": {
  875. "dev-master": "3.x-dev"
  876. }
  877. },
  878. "autoload": {
  879. "psr-4": {
  880. "Endroid\\QrCode\\": "src/"
  881. }
  882. },
  883. "notification-url": "https://packagist.org/downloads/",
  884. "license": [
  885. "MIT"
  886. ],
  887. "authors": [
  888. {
  889. "name": "Jeroen van den Enden",
  890. "email": "info@endroid.nl"
  891. }
  892. ],
  893. "description": "Endroid QR Code",
  894. "homepage": "https://github.com/endroid/qr-code",
  895. "keywords": [
  896. "bundle",
  897. "code",
  898. "endroid",
  899. "php",
  900. "qr",
  901. "qrcode"
  902. ],
  903. "support": {
  904. "issues": "https://github.com/endroid/qr-code/issues",
  905. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  906. },
  907. "time": "2021-04-20T19:10:54+00:00"
  908. },
  909. {
  910. "name": "ezyang/htmlpurifier",
  911. "version": "v4.13.0",
  912. "source": {
  913. "type": "git",
  914. "url": "https://github.com/ezyang/htmlpurifier.git",
  915. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  916. },
  917. "dist": {
  918. "type": "zip",
  919. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  920. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  921. "shasum": "",
  922. "mirrors": [
  923. {
  924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  925. "preferred": true
  926. }
  927. ]
  928. },
  929. "require": {
  930. "php": ">=5.2"
  931. },
  932. "require-dev": {
  933. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  934. },
  935. "type": "library",
  936. "autoload": {
  937. "psr-0": {
  938. "HTMLPurifier": "library/"
  939. },
  940. "files": [
  941. "library/HTMLPurifier.composer.php"
  942. ],
  943. "exclude-from-classmap": [
  944. "/library/HTMLPurifier/Language/"
  945. ]
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "LGPL-2.1-or-later"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Edward Z. Yang",
  954. "email": "admin@htmlpurifier.org",
  955. "homepage": "http://ezyang.com"
  956. }
  957. ],
  958. "description": "Standards compliant HTML filter written in PHP",
  959. "homepage": "http://htmlpurifier.org/",
  960. "keywords": [
  961. "html"
  962. ],
  963. "support": {
  964. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  965. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  966. },
  967. "time": "2020-06-29T00:56:53+00:00"
  968. },
  969. {
  970. "name": "facade/flare-client-php",
  971. "version": "1.8.1",
  972. "source": {
  973. "type": "git",
  974. "url": "https://github.com/facade/flare-client-php.git",
  975. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  976. },
  977. "dist": {
  978. "type": "zip",
  979. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  980. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  981. "shasum": "",
  982. "mirrors": [
  983. {
  984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  985. "preferred": true
  986. }
  987. ]
  988. },
  989. "require": {
  990. "facade/ignition-contracts": "~1.0",
  991. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  992. "php": "^7.1|^8.0",
  993. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  994. "symfony/mime": "^3.4|^4.0|^5.1",
  995. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  996. },
  997. "require-dev": {
  998. "friendsofphp/php-cs-fixer": "^2.14",
  999. "phpunit/phpunit": "^7.5.16",
  1000. "spatie/phpunit-snapshot-assertions": "^2.0"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "branch-alias": {
  1005. "dev-master": "1.0-dev"
  1006. }
  1007. },
  1008. "autoload": {
  1009. "psr-4": {
  1010. "Facade\\FlareClient\\": "src"
  1011. },
  1012. "files": [
  1013. "src/helpers.php"
  1014. ]
  1015. },
  1016. "notification-url": "https://packagist.org/downloads/",
  1017. "license": [
  1018. "MIT"
  1019. ],
  1020. "description": "Send PHP errors to Flare",
  1021. "homepage": "https://github.com/facade/flare-client-php",
  1022. "keywords": [
  1023. "exception",
  1024. "facade",
  1025. "flare",
  1026. "reporting"
  1027. ],
  1028. "time": "2021-05-31T19:23:29+00:00"
  1029. },
  1030. {
  1031. "name": "facade/ignition",
  1032. "version": "2.10.1",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/facade/ignition.git",
  1036. "reference": "508d80f91de953617977e5666f8953669b6e81f2"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/facade/ignition/zipball/508d80f91de953617977e5666f8953669b6e81f2",
  1041. "reference": "508d80f91de953617977e5666f8953669b6e81f2",
  1042. "shasum": "",
  1043. "mirrors": [
  1044. {
  1045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1046. "preferred": true
  1047. }
  1048. ]
  1049. },
  1050. "require": {
  1051. "ext-json": "*",
  1052. "ext-mbstring": "*",
  1053. "facade/flare-client-php": "^1.6",
  1054. "facade/ignition-contracts": "^1.0.2",
  1055. "filp/whoops": "^2.4",
  1056. "illuminate/support": "^7.0|^8.0",
  1057. "monolog/monolog": "^2.0",
  1058. "php": "^7.2.5|^8.0",
  1059. "symfony/console": "^5.0",
  1060. "symfony/var-dumper": "^5.0"
  1061. },
  1062. "require-dev": {
  1063. "friendsofphp/php-cs-fixer": "^2.14",
  1064. "mockery/mockery": "^1.3",
  1065. "orchestra/testbench": "^5.0|^6.0",
  1066. "psalm/plugin-laravel": "^1.2"
  1067. },
  1068. "suggest": {
  1069. "laravel/telescope": "^3.1"
  1070. },
  1071. "type": "library",
  1072. "extra": {
  1073. "branch-alias": {
  1074. "dev-master": "2.x-dev"
  1075. },
  1076. "laravel": {
  1077. "providers": [
  1078. "Facade\\Ignition\\IgnitionServiceProvider"
  1079. ],
  1080. "aliases": {
  1081. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1082. }
  1083. }
  1084. },
  1085. "autoload": {
  1086. "psr-4": {
  1087. "Facade\\Ignition\\": "src"
  1088. },
  1089. "files": [
  1090. "src/helpers.php"
  1091. ]
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "description": "A beautiful error page for Laravel applications.",
  1098. "homepage": "https://github.com/facade/ignition",
  1099. "keywords": [
  1100. "error",
  1101. "flare",
  1102. "laravel",
  1103. "page"
  1104. ],
  1105. "time": "2021-06-03T21:41:42+00:00"
  1106. },
  1107. {
  1108. "name": "facade/ignition-contracts",
  1109. "version": "1.0.2",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/facade/ignition-contracts.git",
  1113. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1118. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1119. "shasum": "",
  1120. "mirrors": [
  1121. {
  1122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1123. "preferred": true
  1124. }
  1125. ]
  1126. },
  1127. "require": {
  1128. "php": "^7.3|^8.0"
  1129. },
  1130. "require-dev": {
  1131. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1132. "phpunit/phpunit": "^9.3.11",
  1133. "vimeo/psalm": "^3.17.1"
  1134. },
  1135. "type": "library",
  1136. "autoload": {
  1137. "psr-4": {
  1138. "Facade\\IgnitionContracts\\": "src"
  1139. }
  1140. },
  1141. "notification-url": "https://packagist.org/downloads/",
  1142. "license": [
  1143. "MIT"
  1144. ],
  1145. "authors": [
  1146. {
  1147. "name": "Freek Van der Herten",
  1148. "email": "freek@spatie.be",
  1149. "homepage": "https://flareapp.io",
  1150. "role": "Developer"
  1151. }
  1152. ],
  1153. "description": "Solution contracts for Ignition",
  1154. "homepage": "https://github.com/facade/ignition-contracts",
  1155. "keywords": [
  1156. "contracts",
  1157. "flare",
  1158. "ignition"
  1159. ],
  1160. "support": {
  1161. "issues": "https://github.com/facade/ignition-contracts/issues",
  1162. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1163. },
  1164. "time": "2020-10-16T08:27:54+00:00"
  1165. },
  1166. {
  1167. "name": "fideloper/proxy",
  1168. "version": "4.4.1",
  1169. "source": {
  1170. "type": "git",
  1171. "url": "https://github.com/fideloper/TrustedProxy.git",
  1172. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1173. },
  1174. "dist": {
  1175. "type": "zip",
  1176. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1177. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1178. "shasum": "",
  1179. "mirrors": [
  1180. {
  1181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1182. "preferred": true
  1183. }
  1184. ]
  1185. },
  1186. "require": {
  1187. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1188. "php": ">=5.4.0"
  1189. },
  1190. "require-dev": {
  1191. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1192. "mockery/mockery": "^1.0",
  1193. "phpunit/phpunit": "^6.0"
  1194. },
  1195. "type": "library",
  1196. "extra": {
  1197. "laravel": {
  1198. "providers": [
  1199. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1200. ]
  1201. }
  1202. },
  1203. "autoload": {
  1204. "psr-4": {
  1205. "Fideloper\\Proxy\\": "src/"
  1206. }
  1207. },
  1208. "notification-url": "https://packagist.org/downloads/",
  1209. "license": [
  1210. "MIT"
  1211. ],
  1212. "authors": [
  1213. {
  1214. "name": "Chris Fidao",
  1215. "email": "fideloper@gmail.com"
  1216. }
  1217. ],
  1218. "description": "Set trusted proxies for Laravel",
  1219. "keywords": [
  1220. "load balancing",
  1221. "proxy",
  1222. "trusted proxy"
  1223. ],
  1224. "time": "2020-10-22T13:48:01+00:00"
  1225. },
  1226. {
  1227. "name": "filp/whoops",
  1228. "version": "2.13.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/filp/whoops.git",
  1232. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/filp/whoops/zipball/2edbc73a4687d9085c8f20f398eebade844e8424",
  1237. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424",
  1238. "shasum": "",
  1239. "mirrors": [
  1240. {
  1241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1242. "preferred": true
  1243. }
  1244. ]
  1245. },
  1246. "require": {
  1247. "php": "^5.5.9 || ^7.0 || ^8.0",
  1248. "psr/log": "^1.0.1"
  1249. },
  1250. "require-dev": {
  1251. "mockery/mockery": "^0.9 || ^1.0",
  1252. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1253. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1254. },
  1255. "suggest": {
  1256. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1257. "whoops/soap": "Formats errors as SOAP responses"
  1258. },
  1259. "type": "library",
  1260. "extra": {
  1261. "branch-alias": {
  1262. "dev-master": "2.7-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Whoops\\": "src/Whoops/"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Filipe Dobreira",
  1277. "homepage": "https://github.com/filp",
  1278. "role": "Developer"
  1279. }
  1280. ],
  1281. "description": "php error handling for cool kids",
  1282. "homepage": "https://filp.github.io/whoops/",
  1283. "keywords": [
  1284. "error",
  1285. "exception",
  1286. "handling",
  1287. "library",
  1288. "throwable",
  1289. "whoops"
  1290. ],
  1291. "time": "2021-06-04T12:00:00+00:00"
  1292. },
  1293. {
  1294. "name": "firebase/php-jwt",
  1295. "version": "v5.3.0",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/firebase/php-jwt.git",
  1299. "reference": "3c2d70f2e64e2922345e89f2ceae47d2463faae1"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/3c2d70f2e64e2922345e89f2ceae47d2463faae1",
  1304. "reference": "3c2d70f2e64e2922345e89f2ceae47d2463faae1",
  1305. "shasum": "",
  1306. "mirrors": [
  1307. {
  1308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1309. "preferred": true
  1310. }
  1311. ]
  1312. },
  1313. "require": {
  1314. "php": ">=5.3.0"
  1315. },
  1316. "require-dev": {
  1317. "phpunit/phpunit": ">=4.8 <=9"
  1318. },
  1319. "type": "library",
  1320. "autoload": {
  1321. "psr-4": {
  1322. "Firebase\\JWT\\": "src"
  1323. }
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "BSD-3-Clause"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "Neuman Vong",
  1332. "email": "neuman+pear@twilio.com",
  1333. "role": "Developer"
  1334. },
  1335. {
  1336. "name": "Anant Narayanan",
  1337. "email": "anant@php.net",
  1338. "role": "Developer"
  1339. }
  1340. ],
  1341. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1342. "homepage": "https://github.com/firebase/php-jwt",
  1343. "keywords": [
  1344. "jwt",
  1345. "php"
  1346. ],
  1347. "time": "2021-05-20T17:37:02+00:00"
  1348. },
  1349. {
  1350. "name": "guzzlehttp/guzzle",
  1351. "version": "6.5.5",
  1352. "source": {
  1353. "type": "git",
  1354. "url": "https://github.com/guzzle/guzzle.git",
  1355. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1356. },
  1357. "dist": {
  1358. "type": "zip",
  1359. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1360. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1361. "shasum": "",
  1362. "mirrors": [
  1363. {
  1364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1365. "preferred": true
  1366. }
  1367. ]
  1368. },
  1369. "require": {
  1370. "ext-json": "*",
  1371. "guzzlehttp/promises": "^1.0",
  1372. "guzzlehttp/psr7": "^1.6.1",
  1373. "php": ">=5.5",
  1374. "symfony/polyfill-intl-idn": "^1.17.0"
  1375. },
  1376. "require-dev": {
  1377. "ext-curl": "*",
  1378. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1379. "psr/log": "^1.1"
  1380. },
  1381. "suggest": {
  1382. "psr/log": "Required for using the Log middleware"
  1383. },
  1384. "type": "library",
  1385. "extra": {
  1386. "branch-alias": {
  1387. "dev-master": "6.5-dev"
  1388. }
  1389. },
  1390. "autoload": {
  1391. "psr-4": {
  1392. "GuzzleHttp\\": "src/"
  1393. },
  1394. "files": [
  1395. "src/functions_include.php"
  1396. ]
  1397. },
  1398. "notification-url": "https://packagist.org/downloads/",
  1399. "license": [
  1400. "MIT"
  1401. ],
  1402. "authors": [
  1403. {
  1404. "name": "Michael Dowling",
  1405. "email": "mtdowling@gmail.com",
  1406. "homepage": "https://github.com/mtdowling"
  1407. }
  1408. ],
  1409. "description": "Guzzle is a PHP HTTP client library",
  1410. "homepage": "http://guzzlephp.org/",
  1411. "keywords": [
  1412. "client",
  1413. "curl",
  1414. "framework",
  1415. "http",
  1416. "http client",
  1417. "rest",
  1418. "web service"
  1419. ],
  1420. "time": "2020-06-16T21:01:06+00:00"
  1421. },
  1422. {
  1423. "name": "guzzlehttp/promises",
  1424. "version": "1.4.1",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/guzzle/promises.git",
  1428. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1433. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1434. "shasum": "",
  1435. "mirrors": [
  1436. {
  1437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1438. "preferred": true
  1439. }
  1440. ]
  1441. },
  1442. "require": {
  1443. "php": ">=5.5"
  1444. },
  1445. "require-dev": {
  1446. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1447. },
  1448. "type": "library",
  1449. "extra": {
  1450. "branch-alias": {
  1451. "dev-master": "1.4-dev"
  1452. }
  1453. },
  1454. "autoload": {
  1455. "psr-4": {
  1456. "GuzzleHttp\\Promise\\": "src/"
  1457. },
  1458. "files": [
  1459. "src/functions_include.php"
  1460. ]
  1461. },
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "authors": [
  1467. {
  1468. "name": "Michael Dowling",
  1469. "email": "mtdowling@gmail.com",
  1470. "homepage": "https://github.com/mtdowling"
  1471. }
  1472. ],
  1473. "description": "Guzzle promises library",
  1474. "keywords": [
  1475. "promise"
  1476. ],
  1477. "support": {
  1478. "issues": "https://github.com/guzzle/promises/issues",
  1479. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1480. },
  1481. "time": "2021-03-07T09:25:29+00:00"
  1482. },
  1483. {
  1484. "name": "guzzlehttp/psr7",
  1485. "version": "1.8.2",
  1486. "source": {
  1487. "type": "git",
  1488. "url": "https://github.com/guzzle/psr7.git",
  1489. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1490. },
  1491. "dist": {
  1492. "type": "zip",
  1493. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1494. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1495. "shasum": "",
  1496. "mirrors": [
  1497. {
  1498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1499. "preferred": true
  1500. }
  1501. ]
  1502. },
  1503. "require": {
  1504. "php": ">=5.4.0",
  1505. "psr/http-message": "~1.0",
  1506. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1507. },
  1508. "provide": {
  1509. "psr/http-message-implementation": "1.0"
  1510. },
  1511. "require-dev": {
  1512. "ext-zlib": "*",
  1513. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1514. },
  1515. "suggest": {
  1516. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1517. },
  1518. "type": "library",
  1519. "extra": {
  1520. "branch-alias": {
  1521. "dev-master": "1.7-dev"
  1522. }
  1523. },
  1524. "autoload": {
  1525. "psr-4": {
  1526. "GuzzleHttp\\Psr7\\": "src/"
  1527. },
  1528. "files": [
  1529. "src/functions_include.php"
  1530. ]
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "MIT"
  1535. ],
  1536. "authors": [
  1537. {
  1538. "name": "Michael Dowling",
  1539. "email": "mtdowling@gmail.com",
  1540. "homepage": "https://github.com/mtdowling"
  1541. },
  1542. {
  1543. "name": "Tobias Schultze",
  1544. "homepage": "https://github.com/Tobion"
  1545. }
  1546. ],
  1547. "description": "PSR-7 message implementation that also provides common utility methods",
  1548. "keywords": [
  1549. "http",
  1550. "message",
  1551. "psr-7",
  1552. "request",
  1553. "response",
  1554. "stream",
  1555. "uri",
  1556. "url"
  1557. ],
  1558. "support": {
  1559. "issues": "https://github.com/guzzle/psr7/issues",
  1560. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1561. },
  1562. "time": "2021-04-26T09:17:50+00:00"
  1563. },
  1564. {
  1565. "name": "intervention/image",
  1566. "version": "2.5.1",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/Intervention/image.git",
  1570. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1575. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1576. "shasum": "",
  1577. "mirrors": [
  1578. {
  1579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1580. "preferred": true
  1581. }
  1582. ]
  1583. },
  1584. "require": {
  1585. "ext-fileinfo": "*",
  1586. "guzzlehttp/psr7": "~1.1",
  1587. "php": ">=5.4.0"
  1588. },
  1589. "require-dev": {
  1590. "mockery/mockery": "~0.9.2",
  1591. "phpunit/phpunit": "^4.8 || ^5.7"
  1592. },
  1593. "suggest": {
  1594. "ext-gd": "to use GD library based image processing.",
  1595. "ext-imagick": "to use Imagick based image processing.",
  1596. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1597. },
  1598. "type": "library",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "2.4-dev"
  1602. },
  1603. "laravel": {
  1604. "providers": [
  1605. "Intervention\\Image\\ImageServiceProvider"
  1606. ],
  1607. "aliases": {
  1608. "Image": "Intervention\\Image\\Facades\\Image"
  1609. }
  1610. }
  1611. },
  1612. "autoload": {
  1613. "psr-4": {
  1614. "Intervention\\Image\\": "src/Intervention/Image"
  1615. }
  1616. },
  1617. "notification-url": "https://packagist.org/downloads/",
  1618. "license": [
  1619. "MIT"
  1620. ],
  1621. "authors": [
  1622. {
  1623. "name": "Oliver Vogel",
  1624. "email": "oliver@olivervogel.com",
  1625. "homepage": "http://olivervogel.com/"
  1626. }
  1627. ],
  1628. "description": "Image handling and manipulation library with support for Laravel integration",
  1629. "homepage": "http://image.intervention.io/",
  1630. "keywords": [
  1631. "gd",
  1632. "image",
  1633. "imagick",
  1634. "laravel",
  1635. "thumbnail",
  1636. "watermark"
  1637. ],
  1638. "time": "2019-11-02T09:15:47+00:00"
  1639. },
  1640. {
  1641. "name": "khanamiryan/qrcode-detector-decoder",
  1642. "version": "1.0.5.1",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1646. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1651. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1652. "shasum": "",
  1653. "mirrors": [
  1654. {
  1655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1656. "preferred": true
  1657. }
  1658. ]
  1659. },
  1660. "require": {
  1661. "php": ">=5.6"
  1662. },
  1663. "require-dev": {
  1664. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1665. },
  1666. "type": "library",
  1667. "autoload": {
  1668. "psr-4": {
  1669. "Zxing\\": "lib/"
  1670. },
  1671. "files": [
  1672. "lib/Common/customFunctions.php"
  1673. ]
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT",
  1678. "Apache-2.0"
  1679. ],
  1680. "authors": [
  1681. {
  1682. "name": "Ashot Khanamiryan",
  1683. "email": "a.khanamiryan@gmail.com",
  1684. "homepage": "https://github.com/khanamiryan",
  1685. "role": "Developer"
  1686. }
  1687. ],
  1688. "description": "QR code decoder / reader",
  1689. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1690. "keywords": [
  1691. "barcode",
  1692. "qr",
  1693. "zxing"
  1694. ],
  1695. "support": {
  1696. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1697. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1698. },
  1699. "time": "2021-04-21T08:02:08+00:00"
  1700. },
  1701. {
  1702. "name": "kitetail/zttp",
  1703. "version": "v0.6.0",
  1704. "source": {
  1705. "type": "git",
  1706. "url": "https://github.com/kitetail/zttp.git",
  1707. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1708. },
  1709. "dist": {
  1710. "type": "zip",
  1711. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1712. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1713. "shasum": "",
  1714. "mirrors": [
  1715. {
  1716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1717. "preferred": true
  1718. }
  1719. ]
  1720. },
  1721. "require": {
  1722. "guzzlehttp/guzzle": "^6.0",
  1723. "php": ">=7.0",
  1724. "tightenco/collect": "^5.4"
  1725. },
  1726. "require-dev": {
  1727. "laravel/lumen-framework": "5.5.*",
  1728. "phpunit/phpunit": "^6.0"
  1729. },
  1730. "type": "library",
  1731. "autoload": {
  1732. "files": [
  1733. "src/Zttp.php"
  1734. ]
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "Adam Wathan",
  1743. "email": "adam.wathan@gmail.com"
  1744. }
  1745. ],
  1746. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1747. "keywords": [
  1748. "Guzzle",
  1749. "http"
  1750. ],
  1751. "time": "2019-06-10T12:18:52+00:00"
  1752. },
  1753. {
  1754. "name": "laravel/framework",
  1755. "version": "v7.30.4",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/laravel/framework.git",
  1759. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1764. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1765. "shasum": "",
  1766. "mirrors": [
  1767. {
  1768. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1769. "preferred": true
  1770. }
  1771. ]
  1772. },
  1773. "require": {
  1774. "doctrine/inflector": "^1.4|^2.0",
  1775. "dragonmantank/cron-expression": "^2.3.1",
  1776. "egulias/email-validator": "^2.1.10",
  1777. "ext-json": "*",
  1778. "ext-mbstring": "*",
  1779. "ext-openssl": "*",
  1780. "league/commonmark": "^1.3",
  1781. "league/flysystem": "^1.1",
  1782. "monolog/monolog": "^2.0",
  1783. "nesbot/carbon": "^2.31",
  1784. "opis/closure": "^3.6",
  1785. "php": "^7.2.5|^8.0",
  1786. "psr/container": "^1.0",
  1787. "psr/simple-cache": "^1.0",
  1788. "ramsey/uuid": "^3.7|^4.0",
  1789. "swiftmailer/swiftmailer": "^6.0",
  1790. "symfony/console": "^5.0",
  1791. "symfony/error-handler": "^5.0",
  1792. "symfony/finder": "^5.0",
  1793. "symfony/http-foundation": "^5.0",
  1794. "symfony/http-kernel": "^5.0",
  1795. "symfony/mime": "^5.0",
  1796. "symfony/polyfill-php73": "^1.17",
  1797. "symfony/process": "^5.0",
  1798. "symfony/routing": "^5.0",
  1799. "symfony/var-dumper": "^5.0",
  1800. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1801. "vlucas/phpdotenv": "^4.0",
  1802. "voku/portable-ascii": "^1.4.8"
  1803. },
  1804. "conflict": {
  1805. "tightenco/collect": "<5.5.33"
  1806. },
  1807. "provide": {
  1808. "psr/container-implementation": "1.0"
  1809. },
  1810. "replace": {
  1811. "illuminate/auth": "self.version",
  1812. "illuminate/broadcasting": "self.version",
  1813. "illuminate/bus": "self.version",
  1814. "illuminate/cache": "self.version",
  1815. "illuminate/config": "self.version",
  1816. "illuminate/console": "self.version",
  1817. "illuminate/container": "self.version",
  1818. "illuminate/contracts": "self.version",
  1819. "illuminate/cookie": "self.version",
  1820. "illuminate/database": "self.version",
  1821. "illuminate/encryption": "self.version",
  1822. "illuminate/events": "self.version",
  1823. "illuminate/filesystem": "self.version",
  1824. "illuminate/hashing": "self.version",
  1825. "illuminate/http": "self.version",
  1826. "illuminate/log": "self.version",
  1827. "illuminate/mail": "self.version",
  1828. "illuminate/notifications": "self.version",
  1829. "illuminate/pagination": "self.version",
  1830. "illuminate/pipeline": "self.version",
  1831. "illuminate/queue": "self.version",
  1832. "illuminate/redis": "self.version",
  1833. "illuminate/routing": "self.version",
  1834. "illuminate/session": "self.version",
  1835. "illuminate/support": "self.version",
  1836. "illuminate/testing": "self.version",
  1837. "illuminate/translation": "self.version",
  1838. "illuminate/validation": "self.version",
  1839. "illuminate/view": "self.version"
  1840. },
  1841. "require-dev": {
  1842. "aws/aws-sdk-php": "^3.155",
  1843. "doctrine/dbal": "^2.6",
  1844. "filp/whoops": "^2.8",
  1845. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1846. "league/flysystem-cached-adapter": "^1.0",
  1847. "mockery/mockery": "~1.3.3|^1.4.2",
  1848. "moontoast/math": "^1.1",
  1849. "orchestra/testbench-core": "^5.8",
  1850. "pda/pheanstalk": "^4.0",
  1851. "phpunit/phpunit": "^8.4|^9.3.3",
  1852. "predis/predis": "^1.1.1",
  1853. "symfony/cache": "^5.0"
  1854. },
  1855. "suggest": {
  1856. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1857. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1858. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1859. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1860. "ext-memcached": "Required to use the memcache cache driver.",
  1861. "ext-pcntl": "Required to use all features of the queue worker.",
  1862. "ext-posix": "Required to use all features of the queue worker.",
  1863. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1864. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1865. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1866. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1867. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1868. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1869. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1870. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1871. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1872. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1873. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1874. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1875. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1876. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1877. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1878. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1879. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1880. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1881. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1882. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1883. },
  1884. "type": "library",
  1885. "extra": {
  1886. "branch-alias": {
  1887. "dev-master": "7.x-dev"
  1888. }
  1889. },
  1890. "autoload": {
  1891. "files": [
  1892. "src/Illuminate/Foundation/helpers.php",
  1893. "src/Illuminate/Support/helpers.php"
  1894. ],
  1895. "psr-4": {
  1896. "Illuminate\\": "src/Illuminate/"
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "MIT"
  1902. ],
  1903. "authors": [
  1904. {
  1905. "name": "Taylor Otwell",
  1906. "email": "taylor@laravel.com"
  1907. }
  1908. ],
  1909. "description": "The Laravel Framework.",
  1910. "homepage": "https://laravel.com",
  1911. "keywords": [
  1912. "framework",
  1913. "laravel"
  1914. ],
  1915. "support": {
  1916. "issues": "https://github.com/laravel/framework/issues",
  1917. "source": "https://github.com/laravel/framework"
  1918. },
  1919. "time": "2021-01-21T14:10:48+00:00"
  1920. },
  1921. {
  1922. "name": "laravel/horizon",
  1923. "version": "v4.3.5",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/laravel/horizon.git",
  1927. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  1932. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  1933. "shasum": "",
  1934. "mirrors": [
  1935. {
  1936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1937. "preferred": true
  1938. }
  1939. ]
  1940. },
  1941. "require": {
  1942. "cakephp/chronos": "^2.0",
  1943. "ext-json": "*",
  1944. "ext-pcntl": "*",
  1945. "ext-posix": "*",
  1946. "illuminate/contracts": "^7.0",
  1947. "illuminate/queue": "^7.0",
  1948. "illuminate/support": "^7.0",
  1949. "php": "^7.2",
  1950. "ramsey/uuid": "^3.5|^4.0",
  1951. "symfony/error-handler": "^5.0",
  1952. "symfony/process": "^5.0"
  1953. },
  1954. "require-dev": {
  1955. "mockery/mockery": "^1.0",
  1956. "orchestra/testbench": "^5.0",
  1957. "phpunit/phpunit": "^8.0",
  1958. "predis/predis": "^1.1"
  1959. },
  1960. "suggest": {
  1961. "ext-redis": "Required to use the Redis PHP driver.",
  1962. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  1963. },
  1964. "type": "library",
  1965. "extra": {
  1966. "branch-alias": {
  1967. "dev-master": "4.x-dev"
  1968. },
  1969. "laravel": {
  1970. "providers": [
  1971. "Laravel\\Horizon\\HorizonServiceProvider"
  1972. ],
  1973. "aliases": {
  1974. "Horizon": "Laravel\\Horizon\\Horizon"
  1975. }
  1976. }
  1977. },
  1978. "autoload": {
  1979. "psr-4": {
  1980. "Laravel\\Horizon\\": "src/"
  1981. }
  1982. },
  1983. "notification-url": "https://packagist.org/downloads/",
  1984. "license": [
  1985. "MIT"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Taylor Otwell",
  1990. "email": "taylor@laravel.com"
  1991. }
  1992. ],
  1993. "description": "Dashboard and code-driven configuration for Laravel queues.",
  1994. "keywords": [
  1995. "laravel",
  1996. "queue"
  1997. ],
  1998. "support": {
  1999. "issues": "https://github.com/laravel/horizon/issues",
  2000. "source": "https://github.com/laravel/horizon/tree/4.x"
  2001. },
  2002. "time": "2020-09-08T13:19:23+00:00"
  2003. },
  2004. {
  2005. "name": "laravel/tinker",
  2006. "version": "v2.6.1",
  2007. "source": {
  2008. "type": "git",
  2009. "url": "https://github.com/laravel/tinker.git",
  2010. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2011. },
  2012. "dist": {
  2013. "type": "zip",
  2014. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2015. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2016. "shasum": "",
  2017. "mirrors": [
  2018. {
  2019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2020. "preferred": true
  2021. }
  2022. ]
  2023. },
  2024. "require": {
  2025. "illuminate/console": "^6.0|^7.0|^8.0",
  2026. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2027. "illuminate/support": "^6.0|^7.0|^8.0",
  2028. "php": "^7.2.5|^8.0",
  2029. "psy/psysh": "^0.10.4",
  2030. "symfony/var-dumper": "^4.3.4|^5.0"
  2031. },
  2032. "require-dev": {
  2033. "mockery/mockery": "~1.3.3|^1.4.2",
  2034. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2035. },
  2036. "suggest": {
  2037. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2038. },
  2039. "type": "library",
  2040. "extra": {
  2041. "branch-alias": {
  2042. "dev-master": "2.x-dev"
  2043. },
  2044. "laravel": {
  2045. "providers": [
  2046. "Laravel\\Tinker\\TinkerServiceProvider"
  2047. ]
  2048. }
  2049. },
  2050. "autoload": {
  2051. "psr-4": {
  2052. "Laravel\\Tinker\\": "src/"
  2053. }
  2054. },
  2055. "notification-url": "https://packagist.org/downloads/",
  2056. "license": [
  2057. "MIT"
  2058. ],
  2059. "authors": [
  2060. {
  2061. "name": "Taylor Otwell",
  2062. "email": "taylor@laravel.com"
  2063. }
  2064. ],
  2065. "description": "Powerful REPL for the Laravel framework.",
  2066. "keywords": [
  2067. "REPL",
  2068. "Tinker",
  2069. "laravel",
  2070. "psysh"
  2071. ],
  2072. "support": {
  2073. "issues": "https://github.com/laravel/tinker/issues",
  2074. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2075. },
  2076. "time": "2021-03-02T16:53:12+00:00"
  2077. },
  2078. {
  2079. "name": "laravel/ui",
  2080. "version": "v2.5.0",
  2081. "source": {
  2082. "type": "git",
  2083. "url": "https://github.com/laravel/ui.git",
  2084. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2085. },
  2086. "dist": {
  2087. "type": "zip",
  2088. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2089. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2090. "shasum": "",
  2091. "mirrors": [
  2092. {
  2093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2094. "preferred": true
  2095. }
  2096. ]
  2097. },
  2098. "require": {
  2099. "illuminate/console": "^7.0",
  2100. "illuminate/filesystem": "^7.0",
  2101. "illuminate/support": "^7.0",
  2102. "php": "^7.2.5|^8.0"
  2103. },
  2104. "type": "library",
  2105. "extra": {
  2106. "laravel": {
  2107. "providers": [
  2108. "Laravel\\Ui\\UiServiceProvider"
  2109. ]
  2110. }
  2111. },
  2112. "autoload": {
  2113. "psr-4": {
  2114. "Laravel\\Ui\\": "src/",
  2115. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2116. }
  2117. },
  2118. "notification-url": "https://packagist.org/downloads/",
  2119. "license": [
  2120. "MIT"
  2121. ],
  2122. "authors": [
  2123. {
  2124. "name": "Taylor Otwell",
  2125. "email": "taylor@laravel.com"
  2126. }
  2127. ],
  2128. "description": "Laravel UI utilities and presets.",
  2129. "keywords": [
  2130. "laravel",
  2131. "ui"
  2132. ],
  2133. "time": "2020-11-03T19:45:19+00:00"
  2134. },
  2135. {
  2136. "name": "league/commonmark",
  2137. "version": "1.6.2",
  2138. "source": {
  2139. "type": "git",
  2140. "url": "https://github.com/thephpleague/commonmark.git",
  2141. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb"
  2142. },
  2143. "dist": {
  2144. "type": "zip",
  2145. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/7d70d2f19c84bcc16275ea47edabee24747352eb",
  2146. "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb",
  2147. "shasum": "",
  2148. "mirrors": [
  2149. {
  2150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2151. "preferred": true
  2152. }
  2153. ]
  2154. },
  2155. "require": {
  2156. "ext-mbstring": "*",
  2157. "php": "^7.1 || ^8.0"
  2158. },
  2159. "conflict": {
  2160. "scrutinizer/ocular": "1.7.*"
  2161. },
  2162. "require-dev": {
  2163. "cebe/markdown": "~1.0",
  2164. "commonmark/commonmark.js": "0.29.2",
  2165. "erusev/parsedown": "~1.0",
  2166. "ext-json": "*",
  2167. "github/gfm": "0.29.0",
  2168. "michelf/php-markdown": "~1.4",
  2169. "mikehaertl/php-shellcommand": "^1.4",
  2170. "phpstan/phpstan": "^0.12",
  2171. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2172. "scrutinizer/ocular": "^1.5",
  2173. "symfony/finder": "^4.2"
  2174. },
  2175. "bin": [
  2176. "bin/commonmark"
  2177. ],
  2178. "type": "library",
  2179. "autoload": {
  2180. "psr-4": {
  2181. "League\\CommonMark\\": "src"
  2182. }
  2183. },
  2184. "notification-url": "https://packagist.org/downloads/",
  2185. "license": [
  2186. "BSD-3-Clause"
  2187. ],
  2188. "authors": [
  2189. {
  2190. "name": "Colin O'Dell",
  2191. "email": "colinodell@gmail.com",
  2192. "homepage": "https://www.colinodell.com",
  2193. "role": "Lead Developer"
  2194. }
  2195. ],
  2196. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2197. "homepage": "https://commonmark.thephpleague.com",
  2198. "keywords": [
  2199. "commonmark",
  2200. "flavored",
  2201. "gfm",
  2202. "github",
  2203. "github-flavored",
  2204. "markdown",
  2205. "md",
  2206. "parser"
  2207. ],
  2208. "support": {
  2209. "docs": "https://commonmark.thephpleague.com/",
  2210. "issues": "https://github.com/thephpleague/commonmark/issues",
  2211. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2212. "source": "https://github.com/thephpleague/commonmark"
  2213. },
  2214. "time": "2021-05-12T11:39:41+00:00"
  2215. },
  2216. {
  2217. "name": "league/flysystem",
  2218. "version": "1.1.3",
  2219. "source": {
  2220. "type": "git",
  2221. "url": "https://github.com/thephpleague/flysystem.git",
  2222. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2223. },
  2224. "dist": {
  2225. "type": "zip",
  2226. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2227. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2228. "shasum": "",
  2229. "mirrors": [
  2230. {
  2231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2232. "preferred": true
  2233. }
  2234. ]
  2235. },
  2236. "require": {
  2237. "ext-fileinfo": "*",
  2238. "league/mime-type-detection": "^1.3",
  2239. "php": "^7.2.5 || ^8.0"
  2240. },
  2241. "conflict": {
  2242. "league/flysystem-sftp": "<1.0.6"
  2243. },
  2244. "require-dev": {
  2245. "phpspec/prophecy": "^1.11.1",
  2246. "phpunit/phpunit": "^8.5.8"
  2247. },
  2248. "suggest": {
  2249. "ext-fileinfo": "Required for MimeType",
  2250. "ext-ftp": "Allows you to use FTP server storage",
  2251. "ext-openssl": "Allows you to use FTPS server storage",
  2252. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2253. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2254. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2255. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2256. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2257. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2258. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2259. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2260. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2261. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2262. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2263. },
  2264. "type": "library",
  2265. "extra": {
  2266. "branch-alias": {
  2267. "dev-master": "1.1-dev"
  2268. }
  2269. },
  2270. "autoload": {
  2271. "psr-4": {
  2272. "League\\Flysystem\\": "src/"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "MIT"
  2278. ],
  2279. "authors": [
  2280. {
  2281. "name": "Frank de Jonge",
  2282. "email": "info@frenky.net"
  2283. }
  2284. ],
  2285. "description": "Filesystem abstraction: Many filesystems, one API.",
  2286. "keywords": [
  2287. "Cloud Files",
  2288. "WebDAV",
  2289. "abstraction",
  2290. "aws",
  2291. "cloud",
  2292. "copy.com",
  2293. "dropbox",
  2294. "file systems",
  2295. "files",
  2296. "filesystem",
  2297. "filesystems",
  2298. "ftp",
  2299. "rackspace",
  2300. "remote",
  2301. "s3",
  2302. "sftp",
  2303. "storage"
  2304. ],
  2305. "time": "2020-08-23T07:39:11+00:00"
  2306. },
  2307. {
  2308. "name": "league/mime-type-detection",
  2309. "version": "1.7.0",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2313. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2318. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2319. "shasum": "",
  2320. "mirrors": [
  2321. {
  2322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2323. "preferred": true
  2324. }
  2325. ]
  2326. },
  2327. "require": {
  2328. "ext-fileinfo": "*",
  2329. "php": "^7.2 || ^8.0"
  2330. },
  2331. "require-dev": {
  2332. "friendsofphp/php-cs-fixer": "^2.18",
  2333. "phpstan/phpstan": "^0.12.68",
  2334. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2335. },
  2336. "type": "library",
  2337. "autoload": {
  2338. "psr-4": {
  2339. "League\\MimeTypeDetection\\": "src"
  2340. }
  2341. },
  2342. "notification-url": "https://packagist.org/downloads/",
  2343. "license": [
  2344. "MIT"
  2345. ],
  2346. "authors": [
  2347. {
  2348. "name": "Frank de Jonge",
  2349. "email": "info@frankdejonge.nl"
  2350. }
  2351. ],
  2352. "description": "Mime-type detection for Flysystem",
  2353. "support": {
  2354. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2355. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2356. },
  2357. "time": "2021-01-18T20:58:21+00:00"
  2358. },
  2359. {
  2360. "name": "maatwebsite/excel",
  2361. "version": "3.1.31",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2365. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2370. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2371. "shasum": "",
  2372. "mirrors": [
  2373. {
  2374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2375. "preferred": true
  2376. }
  2377. ]
  2378. },
  2379. "require": {
  2380. "ext-json": "*",
  2381. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2382. "php": "^7.0|^8.0",
  2383. "phpoffice/phpspreadsheet": "^1.18"
  2384. },
  2385. "require-dev": {
  2386. "orchestra/testbench": "^6.0",
  2387. "predis/predis": "^1.1"
  2388. },
  2389. "type": "library",
  2390. "extra": {
  2391. "laravel": {
  2392. "providers": [
  2393. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2394. ],
  2395. "aliases": {
  2396. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2397. }
  2398. }
  2399. },
  2400. "autoload": {
  2401. "psr-4": {
  2402. "Maatwebsite\\Excel\\": "src/"
  2403. }
  2404. },
  2405. "notification-url": "https://packagist.org/downloads/",
  2406. "license": [
  2407. "MIT"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "Patrick Brouwers",
  2412. "email": "patrick@maatwebsite.nl"
  2413. }
  2414. ],
  2415. "description": "Supercharged Excel exports and imports in Laravel",
  2416. "keywords": [
  2417. "PHPExcel",
  2418. "batch",
  2419. "csv",
  2420. "excel",
  2421. "export",
  2422. "import",
  2423. "laravel",
  2424. "php",
  2425. "phpspreadsheet"
  2426. ],
  2427. "time": "2021-06-02T17:31:29+00:00"
  2428. },
  2429. {
  2430. "name": "maennchen/zipstream-php",
  2431. "version": "2.1.0",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2435. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2440. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2441. "shasum": "",
  2442. "mirrors": [
  2443. {
  2444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2445. "preferred": true
  2446. }
  2447. ]
  2448. },
  2449. "require": {
  2450. "myclabs/php-enum": "^1.5",
  2451. "php": ">= 7.1",
  2452. "psr/http-message": "^1.0",
  2453. "symfony/polyfill-mbstring": "^1.0"
  2454. },
  2455. "require-dev": {
  2456. "ext-zip": "*",
  2457. "guzzlehttp/guzzle": ">= 6.3",
  2458. "mikey179/vfsstream": "^1.6",
  2459. "phpunit/phpunit": ">= 7.5"
  2460. },
  2461. "type": "library",
  2462. "autoload": {
  2463. "psr-4": {
  2464. "ZipStream\\": "src/"
  2465. }
  2466. },
  2467. "notification-url": "https://packagist.org/downloads/",
  2468. "license": [
  2469. "MIT"
  2470. ],
  2471. "authors": [
  2472. {
  2473. "name": "Paul Duncan",
  2474. "email": "pabs@pablotron.org"
  2475. },
  2476. {
  2477. "name": "Jonatan Männchen",
  2478. "email": "jonatan@maennchen.ch"
  2479. },
  2480. {
  2481. "name": "Jesse Donat",
  2482. "email": "donatj@gmail.com"
  2483. },
  2484. {
  2485. "name": "András Kolesár",
  2486. "email": "kolesar@kolesar.hu"
  2487. }
  2488. ],
  2489. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2490. "keywords": [
  2491. "stream",
  2492. "zip"
  2493. ],
  2494. "time": "2020-05-30T13:11:16+00:00"
  2495. },
  2496. {
  2497. "name": "markbaker/complex",
  2498. "version": "2.0.3",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2502. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2507. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2508. "shasum": "",
  2509. "mirrors": [
  2510. {
  2511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2512. "preferred": true
  2513. }
  2514. ]
  2515. },
  2516. "require": {
  2517. "php": "^7.2 || ^8.0"
  2518. },
  2519. "require-dev": {
  2520. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2521. "phpcompatibility/php-compatibility": "^9.0",
  2522. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2523. "squizlabs/php_codesniffer": "^3.4"
  2524. },
  2525. "type": "library",
  2526. "autoload": {
  2527. "psr-4": {
  2528. "Complex\\": "classes/src/"
  2529. },
  2530. "files": [
  2531. "classes/src/functions/abs.php",
  2532. "classes/src/functions/acos.php",
  2533. "classes/src/functions/acosh.php",
  2534. "classes/src/functions/acot.php",
  2535. "classes/src/functions/acoth.php",
  2536. "classes/src/functions/acsc.php",
  2537. "classes/src/functions/acsch.php",
  2538. "classes/src/functions/argument.php",
  2539. "classes/src/functions/asec.php",
  2540. "classes/src/functions/asech.php",
  2541. "classes/src/functions/asin.php",
  2542. "classes/src/functions/asinh.php",
  2543. "classes/src/functions/atan.php",
  2544. "classes/src/functions/atanh.php",
  2545. "classes/src/functions/conjugate.php",
  2546. "classes/src/functions/cos.php",
  2547. "classes/src/functions/cosh.php",
  2548. "classes/src/functions/cot.php",
  2549. "classes/src/functions/coth.php",
  2550. "classes/src/functions/csc.php",
  2551. "classes/src/functions/csch.php",
  2552. "classes/src/functions/exp.php",
  2553. "classes/src/functions/inverse.php",
  2554. "classes/src/functions/ln.php",
  2555. "classes/src/functions/log2.php",
  2556. "classes/src/functions/log10.php",
  2557. "classes/src/functions/negative.php",
  2558. "classes/src/functions/pow.php",
  2559. "classes/src/functions/rho.php",
  2560. "classes/src/functions/sec.php",
  2561. "classes/src/functions/sech.php",
  2562. "classes/src/functions/sin.php",
  2563. "classes/src/functions/sinh.php",
  2564. "classes/src/functions/sqrt.php",
  2565. "classes/src/functions/tan.php",
  2566. "classes/src/functions/tanh.php",
  2567. "classes/src/functions/theta.php",
  2568. "classes/src/operations/add.php",
  2569. "classes/src/operations/subtract.php",
  2570. "classes/src/operations/multiply.php",
  2571. "classes/src/operations/divideby.php",
  2572. "classes/src/operations/divideinto.php"
  2573. ]
  2574. },
  2575. "notification-url": "https://packagist.org/downloads/",
  2576. "license": [
  2577. "MIT"
  2578. ],
  2579. "authors": [
  2580. {
  2581. "name": "Mark Baker",
  2582. "email": "mark@lange.demon.co.uk"
  2583. }
  2584. ],
  2585. "description": "PHP Class for working with complex numbers",
  2586. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2587. "keywords": [
  2588. "complex",
  2589. "mathematics"
  2590. ],
  2591. "time": "2021-06-02T09:44:11+00:00"
  2592. },
  2593. {
  2594. "name": "markbaker/matrix",
  2595. "version": "2.1.3",
  2596. "source": {
  2597. "type": "git",
  2598. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2599. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2600. },
  2601. "dist": {
  2602. "type": "zip",
  2603. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2604. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2605. "shasum": "",
  2606. "mirrors": [
  2607. {
  2608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2609. "preferred": true
  2610. }
  2611. ]
  2612. },
  2613. "require": {
  2614. "php": "^7.1 || ^8.0"
  2615. },
  2616. "require-dev": {
  2617. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2618. "phpcompatibility/php-compatibility": "^9.0",
  2619. "phpdocumentor/phpdocumentor": "2.*",
  2620. "phploc/phploc": "^4.0",
  2621. "phpmd/phpmd": "2.*",
  2622. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2623. "sebastian/phpcpd": "^4.0",
  2624. "squizlabs/php_codesniffer": "^3.4"
  2625. },
  2626. "type": "library",
  2627. "autoload": {
  2628. "psr-4": {
  2629. "Matrix\\": "classes/src/"
  2630. },
  2631. "files": [
  2632. "classes/src/Functions/adjoint.php",
  2633. "classes/src/Functions/antidiagonal.php",
  2634. "classes/src/Functions/cofactors.php",
  2635. "classes/src/Functions/determinant.php",
  2636. "classes/src/Functions/diagonal.php",
  2637. "classes/src/Functions/identity.php",
  2638. "classes/src/Functions/inverse.php",
  2639. "classes/src/Functions/minors.php",
  2640. "classes/src/Functions/trace.php",
  2641. "classes/src/Functions/transpose.php",
  2642. "classes/src/Operations/add.php",
  2643. "classes/src/Operations/directsum.php",
  2644. "classes/src/Operations/subtract.php",
  2645. "classes/src/Operations/multiply.php",
  2646. "classes/src/Operations/divideby.php",
  2647. "classes/src/Operations/divideinto.php"
  2648. ]
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "authors": [
  2655. {
  2656. "name": "Mark Baker",
  2657. "email": "mark@demon-angel.eu"
  2658. }
  2659. ],
  2660. "description": "PHP Class for working with matrices",
  2661. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2662. "keywords": [
  2663. "mathematics",
  2664. "matrix",
  2665. "vector"
  2666. ],
  2667. "support": {
  2668. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2669. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2670. },
  2671. "time": "2021-05-25T15:42:17+00:00"
  2672. },
  2673. {
  2674. "name": "monolog/monolog",
  2675. "version": "2.2.0",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/Seldaek/monolog.git",
  2679. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2684. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  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",
  2695. "psr/log": "^1.0.1"
  2696. },
  2697. "provide": {
  2698. "psr/log-implementation": "1.0.0"
  2699. },
  2700. "require-dev": {
  2701. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2702. "doctrine/couchdb": "~1.0@dev",
  2703. "elasticsearch/elasticsearch": "^7",
  2704. "graylog2/gelf-php": "^1.4.2",
  2705. "mongodb/mongodb": "^1.8",
  2706. "php-amqplib/php-amqplib": "~2.4",
  2707. "php-console/php-console": "^3.1.3",
  2708. "phpspec/prophecy": "^1.6.1",
  2709. "phpstan/phpstan": "^0.12.59",
  2710. "phpunit/phpunit": "^8.5",
  2711. "predis/predis": "^1.1",
  2712. "rollbar/rollbar": "^1.3",
  2713. "ruflin/elastica": ">=0.90 <7.0.1",
  2714. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2715. },
  2716. "suggest": {
  2717. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2718. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2719. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2720. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2721. "ext-mbstring": "Allow to work properly with unicode symbols",
  2722. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2723. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2724. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2725. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2726. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2727. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2728. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2729. },
  2730. "type": "library",
  2731. "extra": {
  2732. "branch-alias": {
  2733. "dev-main": "2.x-dev"
  2734. }
  2735. },
  2736. "autoload": {
  2737. "psr-4": {
  2738. "Monolog\\": "src/Monolog"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "Jordi Boggiano",
  2748. "email": "j.boggiano@seld.be",
  2749. "homepage": "https://seld.be"
  2750. }
  2751. ],
  2752. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2753. "homepage": "https://github.com/Seldaek/monolog",
  2754. "keywords": [
  2755. "log",
  2756. "logging",
  2757. "psr-3"
  2758. ],
  2759. "time": "2020-12-14T13:15:25+00:00"
  2760. },
  2761. {
  2762. "name": "myclabs/php-enum",
  2763. "version": "1.8.0",
  2764. "source": {
  2765. "type": "git",
  2766. "url": "https://github.com/myclabs/php-enum.git",
  2767. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  2768. },
  2769. "dist": {
  2770. "type": "zip",
  2771. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  2772. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  2773. "shasum": "",
  2774. "mirrors": [
  2775. {
  2776. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2777. "preferred": true
  2778. }
  2779. ]
  2780. },
  2781. "require": {
  2782. "ext-json": "*",
  2783. "php": "^7.3 || ^8.0"
  2784. },
  2785. "require-dev": {
  2786. "phpunit/phpunit": "^9.5",
  2787. "squizlabs/php_codesniffer": "1.*",
  2788. "vimeo/psalm": "^4.5.1"
  2789. },
  2790. "type": "library",
  2791. "autoload": {
  2792. "psr-4": {
  2793. "MyCLabs\\Enum\\": "src/"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "PHP Enum contributors",
  2803. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2804. }
  2805. ],
  2806. "description": "PHP Enum implementation",
  2807. "homepage": "http://github.com/myclabs/php-enum",
  2808. "keywords": [
  2809. "enum"
  2810. ],
  2811. "support": {
  2812. "issues": "https://github.com/myclabs/php-enum/issues",
  2813. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  2814. },
  2815. "time": "2021-02-15T16:11:48+00:00"
  2816. },
  2817. {
  2818. "name": "nesbot/carbon",
  2819. "version": "2.49.0",
  2820. "source": {
  2821. "type": "git",
  2822. "url": "https://github.com/briannesbitt/Carbon.git",
  2823. "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee"
  2824. },
  2825. "dist": {
  2826. "type": "zip",
  2827. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/93d9db91c0235c486875d22f1e08b50bdf3e6eee",
  2828. "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee",
  2829. "shasum": "",
  2830. "mirrors": [
  2831. {
  2832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2833. "preferred": true
  2834. }
  2835. ]
  2836. },
  2837. "require": {
  2838. "ext-json": "*",
  2839. "php": "^7.1.8 || ^8.0",
  2840. "symfony/polyfill-mbstring": "^1.0",
  2841. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2842. },
  2843. "require-dev": {
  2844. "doctrine/orm": "^2.7",
  2845. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2846. "kylekatarnls/multi-tester": "^2.0",
  2847. "phpmd/phpmd": "^2.9",
  2848. "phpstan/extension-installer": "^1.0",
  2849. "phpstan/phpstan": "^0.12.54",
  2850. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  2851. "squizlabs/php_codesniffer": "^3.4"
  2852. },
  2853. "bin": [
  2854. "bin/carbon"
  2855. ],
  2856. "type": "library",
  2857. "extra": {
  2858. "branch-alias": {
  2859. "dev-master": "2.x-dev",
  2860. "dev-3.x": "3.x-dev"
  2861. },
  2862. "laravel": {
  2863. "providers": [
  2864. "Carbon\\Laravel\\ServiceProvider"
  2865. ]
  2866. },
  2867. "phpstan": {
  2868. "includes": [
  2869. "extension.neon"
  2870. ]
  2871. }
  2872. },
  2873. "autoload": {
  2874. "psr-4": {
  2875. "Carbon\\": "src/Carbon/"
  2876. }
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "MIT"
  2881. ],
  2882. "authors": [
  2883. {
  2884. "name": "Brian Nesbitt",
  2885. "email": "brian@nesbot.com",
  2886. "homepage": "http://nesbot.com"
  2887. },
  2888. {
  2889. "name": "kylekatarnls",
  2890. "homepage": "http://github.com/kylekatarnls"
  2891. }
  2892. ],
  2893. "description": "An API extension for DateTime that supports 281 different languages.",
  2894. "homepage": "http://carbon.nesbot.com",
  2895. "keywords": [
  2896. "date",
  2897. "datetime",
  2898. "time"
  2899. ],
  2900. "time": "2021-06-02T07:31:40+00:00"
  2901. },
  2902. {
  2903. "name": "nikic/php-parser",
  2904. "version": "v4.10.5",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/nikic/PHP-Parser.git",
  2908. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  2913. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  2914. "shasum": "",
  2915. "mirrors": [
  2916. {
  2917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2918. "preferred": true
  2919. }
  2920. ]
  2921. },
  2922. "require": {
  2923. "ext-tokenizer": "*",
  2924. "php": ">=7.0"
  2925. },
  2926. "require-dev": {
  2927. "ircmaxell/php-yacc": "^0.0.7",
  2928. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2929. },
  2930. "bin": [
  2931. "bin/php-parse"
  2932. ],
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "4.9-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "PhpParser\\": "lib/PhpParser"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "BSD-3-Clause"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "Nikita Popov"
  2951. }
  2952. ],
  2953. "description": "A PHP parser written in PHP",
  2954. "keywords": [
  2955. "parser",
  2956. "php"
  2957. ],
  2958. "support": {
  2959. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2960. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  2961. },
  2962. "time": "2021-05-03T19:11:20+00:00"
  2963. },
  2964. {
  2965. "name": "opis/closure",
  2966. "version": "3.6.2",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/opis/closure.git",
  2970. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  2975. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  2976. "shasum": "",
  2977. "mirrors": [
  2978. {
  2979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2980. "preferred": true
  2981. }
  2982. ]
  2983. },
  2984. "require": {
  2985. "php": "^5.4 || ^7.0 || ^8.0"
  2986. },
  2987. "require-dev": {
  2988. "jeremeamia/superclosure": "^2.0",
  2989. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2990. },
  2991. "type": "library",
  2992. "extra": {
  2993. "branch-alias": {
  2994. "dev-master": "3.6.x-dev"
  2995. }
  2996. },
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Opis\\Closure\\": "src/"
  3000. },
  3001. "files": [
  3002. "functions.php"
  3003. ]
  3004. },
  3005. "notification-url": "https://packagist.org/downloads/",
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "authors": [
  3010. {
  3011. "name": "Marius Sarca",
  3012. "email": "marius.sarca@gmail.com"
  3013. },
  3014. {
  3015. "name": "Sorin Sarca",
  3016. "email": "sarca_sorin@hotmail.com"
  3017. }
  3018. ],
  3019. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3020. "homepage": "https://opis.io/closure",
  3021. "keywords": [
  3022. "anonymous functions",
  3023. "closure",
  3024. "function",
  3025. "serializable",
  3026. "serialization",
  3027. "serialize"
  3028. ],
  3029. "support": {
  3030. "issues": "https://github.com/opis/closure/issues",
  3031. "source": "https://github.com/opis/closure/tree/3.6.2"
  3032. },
  3033. "time": "2021-04-09T13:42:10+00:00"
  3034. },
  3035. {
  3036. "name": "oursdreams/export",
  3037. "version": "0.0.7",
  3038. "source": {
  3039. "type": "git",
  3040. "url": "https://github.com/oursdreams/export.git",
  3041. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3042. },
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3046. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3047. "shasum": "",
  3048. "mirrors": [
  3049. {
  3050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3051. "preferred": true
  3052. }
  3053. ]
  3054. },
  3055. "type": "library",
  3056. "extra": {
  3057. "laravel": {
  3058. "providers": [
  3059. "Oursdreams\\Export\\ExportServiceProvider"
  3060. ]
  3061. }
  3062. },
  3063. "autoload": {
  3064. "psr-4": {
  3065. "Oursdreams\\Export\\": "./src"
  3066. }
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "oursdreams",
  3075. "email": "z1792524653@163.com"
  3076. }
  3077. ],
  3078. "description": "A simple export plug-in",
  3079. "support": {
  3080. "issues": "https://github.com/oursdreams/export/issues",
  3081. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3082. },
  3083. "time": "2021-05-28T02:57:41+00:00"
  3084. },
  3085. {
  3086. "name": "overtrue/laravel-pinyin",
  3087. "version": "4.0.0",
  3088. "source": {
  3089. "type": "git",
  3090. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3091. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3092. },
  3093. "dist": {
  3094. "type": "zip",
  3095. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3096. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3097. "shasum": "",
  3098. "mirrors": [
  3099. {
  3100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3101. "preferred": true
  3102. }
  3103. ]
  3104. },
  3105. "require": {
  3106. "overtrue/pinyin": "~4.0"
  3107. },
  3108. "type": "library",
  3109. "extra": {
  3110. "laravel": {
  3111. "providers": [
  3112. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3113. ],
  3114. "aliases": {
  3115. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3116. }
  3117. }
  3118. },
  3119. "autoload": {
  3120. "psr-4": {
  3121. "Overtrue\\LaravelPinyin\\": "src/"
  3122. },
  3123. "files": [
  3124. "src/helpers.php"
  3125. ]
  3126. },
  3127. "notification-url": "https://packagist.org/downloads/",
  3128. "license": [
  3129. "MIT"
  3130. ],
  3131. "authors": [
  3132. {
  3133. "name": "overtrue",
  3134. "email": "anzhengchao@gmail.com"
  3135. }
  3136. ],
  3137. "description": "Chinese to Pinyin translator.",
  3138. "keywords": [
  3139. "Chinese",
  3140. "Pinyin",
  3141. "laravel",
  3142. "overtrue"
  3143. ],
  3144. "time": "2018-10-10T09:02:46+00:00"
  3145. },
  3146. {
  3147. "name": "overtrue/pinyin",
  3148. "version": "4.0.7",
  3149. "source": {
  3150. "type": "git",
  3151. "url": "https://github.com/overtrue/pinyin.git",
  3152. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3153. },
  3154. "dist": {
  3155. "type": "zip",
  3156. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3157. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3158. "shasum": "",
  3159. "mirrors": [
  3160. {
  3161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3162. "preferred": true
  3163. }
  3164. ]
  3165. },
  3166. "require": {
  3167. "php": ">=7.1"
  3168. },
  3169. "require-dev": {
  3170. "brainmaestro/composer-git-hooks": "^2.7",
  3171. "friendsofphp/php-cs-fixer": "^2.16",
  3172. "phpunit/phpunit": "~8.0"
  3173. },
  3174. "type": "library",
  3175. "extra": {
  3176. "hooks": {
  3177. "pre-commit": [
  3178. "composer test",
  3179. "composer fix-style"
  3180. ],
  3181. "pre-push": [
  3182. "composer test",
  3183. "composer check-style"
  3184. ]
  3185. }
  3186. },
  3187. "autoload": {
  3188. "psr-4": {
  3189. "Overtrue\\Pinyin\\": "src/"
  3190. },
  3191. "files": [
  3192. "src/const.php"
  3193. ]
  3194. },
  3195. "notification-url": "https://packagist.org/downloads/",
  3196. "license": [
  3197. "MIT"
  3198. ],
  3199. "authors": [
  3200. {
  3201. "name": "overtrue",
  3202. "email": "anzhengchao@gmail.com",
  3203. "homepage": "http://github.com/overtrue"
  3204. }
  3205. ],
  3206. "description": "Chinese to pinyin translator.",
  3207. "homepage": "https://github.com/overtrue/pinyin",
  3208. "keywords": [
  3209. "Chinese",
  3210. "Pinyin",
  3211. "cn2pinyin"
  3212. ],
  3213. "support": {
  3214. "issues": "https://github.com/overtrue/pinyin/issues",
  3215. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3216. },
  3217. "time": "2021-04-16T11:13:48+00:00"
  3218. },
  3219. {
  3220. "name": "paragonie/random_compat",
  3221. "version": "v9.99.100",
  3222. "source": {
  3223. "type": "git",
  3224. "url": "https://github.com/paragonie/random_compat.git",
  3225. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3226. },
  3227. "dist": {
  3228. "type": "zip",
  3229. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3230. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3231. "shasum": "",
  3232. "mirrors": [
  3233. {
  3234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3235. "preferred": true
  3236. }
  3237. ]
  3238. },
  3239. "require": {
  3240. "php": ">= 7"
  3241. },
  3242. "require-dev": {
  3243. "phpunit/phpunit": "4.*|5.*",
  3244. "vimeo/psalm": "^1"
  3245. },
  3246. "suggest": {
  3247. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3248. },
  3249. "type": "library",
  3250. "notification-url": "https://packagist.org/downloads/",
  3251. "license": [
  3252. "MIT"
  3253. ],
  3254. "authors": [
  3255. {
  3256. "name": "Paragon Initiative Enterprises",
  3257. "email": "security@paragonie.com",
  3258. "homepage": "https://paragonie.com"
  3259. }
  3260. ],
  3261. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3262. "keywords": [
  3263. "csprng",
  3264. "polyfill",
  3265. "pseudorandom",
  3266. "random"
  3267. ],
  3268. "time": "2020-10-15T08:29:30+00:00"
  3269. },
  3270. {
  3271. "name": "paragonie/sodium_compat",
  3272. "version": "v1.16.1",
  3273. "source": {
  3274. "type": "git",
  3275. "url": "https://github.com/paragonie/sodium_compat.git",
  3276. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38"
  3277. },
  3278. "dist": {
  3279. "type": "zip",
  3280. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3281. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3282. "shasum": "",
  3283. "mirrors": [
  3284. {
  3285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3286. "preferred": true
  3287. }
  3288. ]
  3289. },
  3290. "require": {
  3291. "paragonie/random_compat": ">=1",
  3292. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3293. },
  3294. "require-dev": {
  3295. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3296. },
  3297. "suggest": {
  3298. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3299. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3300. },
  3301. "type": "library",
  3302. "autoload": {
  3303. "files": [
  3304. "autoload.php"
  3305. ]
  3306. },
  3307. "notification-url": "https://packagist.org/downloads/",
  3308. "license": [
  3309. "ISC"
  3310. ],
  3311. "authors": [
  3312. {
  3313. "name": "Paragon Initiative Enterprises",
  3314. "email": "security@paragonie.com"
  3315. },
  3316. {
  3317. "name": "Frank Denis",
  3318. "email": "jedisct1@pureftpd.org"
  3319. }
  3320. ],
  3321. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3322. "keywords": [
  3323. "Authentication",
  3324. "BLAKE2b",
  3325. "ChaCha20",
  3326. "ChaCha20-Poly1305",
  3327. "Chapoly",
  3328. "Curve25519",
  3329. "Ed25519",
  3330. "EdDSA",
  3331. "Edwards-curve Digital Signature Algorithm",
  3332. "Elliptic Curve Diffie-Hellman",
  3333. "Poly1305",
  3334. "Pure-PHP cryptography",
  3335. "RFC 7748",
  3336. "RFC 8032",
  3337. "Salpoly",
  3338. "Salsa20",
  3339. "X25519",
  3340. "XChaCha20-Poly1305",
  3341. "XSalsa20-Poly1305",
  3342. "Xchacha20",
  3343. "Xsalsa20",
  3344. "aead",
  3345. "cryptography",
  3346. "ecdh",
  3347. "elliptic curve",
  3348. "elliptic curve cryptography",
  3349. "encryption",
  3350. "libsodium",
  3351. "php",
  3352. "public-key cryptography",
  3353. "secret-key cryptography",
  3354. "side-channel resistant"
  3355. ],
  3356. "support": {
  3357. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3358. "source": "https://github.com/paragonie/sodium_compat/tree/v1.16.1"
  3359. },
  3360. "time": "2021-05-25T12:58:14+00:00"
  3361. },
  3362. {
  3363. "name": "phpoffice/phpspreadsheet",
  3364. "version": "1.18.0",
  3365. "source": {
  3366. "type": "git",
  3367. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3368. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3369. },
  3370. "dist": {
  3371. "type": "zip",
  3372. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3373. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3374. "shasum": "",
  3375. "mirrors": [
  3376. {
  3377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3378. "preferred": true
  3379. }
  3380. ]
  3381. },
  3382. "require": {
  3383. "ext-ctype": "*",
  3384. "ext-dom": "*",
  3385. "ext-fileinfo": "*",
  3386. "ext-gd": "*",
  3387. "ext-iconv": "*",
  3388. "ext-libxml": "*",
  3389. "ext-mbstring": "*",
  3390. "ext-simplexml": "*",
  3391. "ext-xml": "*",
  3392. "ext-xmlreader": "*",
  3393. "ext-xmlwriter": "*",
  3394. "ext-zip": "*",
  3395. "ext-zlib": "*",
  3396. "ezyang/htmlpurifier": "^4.13",
  3397. "maennchen/zipstream-php": "^2.1",
  3398. "markbaker/complex": "^2.0",
  3399. "markbaker/matrix": "^2.0",
  3400. "php": "^7.2 || ^8.0",
  3401. "psr/http-client": "^1.0",
  3402. "psr/http-factory": "^1.0",
  3403. "psr/simple-cache": "^1.0"
  3404. },
  3405. "require-dev": {
  3406. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3407. "dompdf/dompdf": "^1.0",
  3408. "friendsofphp/php-cs-fixer": "^2.18",
  3409. "jpgraph/jpgraph": "^4.0",
  3410. "mpdf/mpdf": "^8.0",
  3411. "phpcompatibility/php-compatibility": "^9.3",
  3412. "phpstan/phpstan": "^0.12.82",
  3413. "phpstan/phpstan-phpunit": "^0.12.18",
  3414. "phpunit/phpunit": "^8.5",
  3415. "squizlabs/php_codesniffer": "^3.5",
  3416. "tecnickcom/tcpdf": "^6.3"
  3417. },
  3418. "suggest": {
  3419. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3420. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3421. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3422. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3423. },
  3424. "type": "library",
  3425. "autoload": {
  3426. "psr-4": {
  3427. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3428. }
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "Maarten Balliauw",
  3437. "homepage": "https://blog.maartenballiauw.be"
  3438. },
  3439. {
  3440. "name": "Mark Baker",
  3441. "homepage": "https://markbakeruk.net"
  3442. },
  3443. {
  3444. "name": "Franck Lefevre",
  3445. "homepage": "https://rootslabs.net"
  3446. },
  3447. {
  3448. "name": "Erik Tilt"
  3449. },
  3450. {
  3451. "name": "Adrien Crivelli"
  3452. }
  3453. ],
  3454. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3455. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3456. "keywords": [
  3457. "OpenXML",
  3458. "excel",
  3459. "gnumeric",
  3460. "ods",
  3461. "php",
  3462. "spreadsheet",
  3463. "xls",
  3464. "xlsx"
  3465. ],
  3466. "time": "2021-05-31T18:21:15+00:00"
  3467. },
  3468. {
  3469. "name": "phpoption/phpoption",
  3470. "version": "1.7.5",
  3471. "source": {
  3472. "type": "git",
  3473. "url": "https://github.com/schmittjoh/php-option.git",
  3474. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3475. },
  3476. "dist": {
  3477. "type": "zip",
  3478. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3479. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3480. "shasum": "",
  3481. "mirrors": [
  3482. {
  3483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3484. "preferred": true
  3485. }
  3486. ]
  3487. },
  3488. "require": {
  3489. "php": "^5.5.9 || ^7.0 || ^8.0"
  3490. },
  3491. "require-dev": {
  3492. "bamarni/composer-bin-plugin": "^1.4.1",
  3493. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3494. },
  3495. "type": "library",
  3496. "extra": {
  3497. "branch-alias": {
  3498. "dev-master": "1.7-dev"
  3499. }
  3500. },
  3501. "autoload": {
  3502. "psr-4": {
  3503. "PhpOption\\": "src/PhpOption/"
  3504. }
  3505. },
  3506. "notification-url": "https://packagist.org/downloads/",
  3507. "license": [
  3508. "Apache-2.0"
  3509. ],
  3510. "authors": [
  3511. {
  3512. "name": "Johannes M. Schmitt",
  3513. "email": "schmittjoh@gmail.com"
  3514. },
  3515. {
  3516. "name": "Graham Campbell",
  3517. "email": "graham@alt-three.com"
  3518. }
  3519. ],
  3520. "description": "Option Type for PHP",
  3521. "keywords": [
  3522. "language",
  3523. "option",
  3524. "php",
  3525. "type"
  3526. ],
  3527. "time": "2020-07-20T17:29:33+00:00"
  3528. },
  3529. {
  3530. "name": "predis/predis",
  3531. "version": "v1.1.7",
  3532. "source": {
  3533. "type": "git",
  3534. "url": "https://github.com/predis/predis.git",
  3535. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3536. },
  3537. "dist": {
  3538. "type": "zip",
  3539. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3540. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3541. "shasum": "",
  3542. "mirrors": [
  3543. {
  3544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3545. "preferred": true
  3546. }
  3547. ]
  3548. },
  3549. "require": {
  3550. "php": ">=5.3.9"
  3551. },
  3552. "require-dev": {
  3553. "phpunit/phpunit": "~4.8"
  3554. },
  3555. "suggest": {
  3556. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3557. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3558. },
  3559. "type": "library",
  3560. "autoload": {
  3561. "psr-4": {
  3562. "Predis\\": "src/"
  3563. }
  3564. },
  3565. "notification-url": "https://packagist.org/downloads/",
  3566. "license": [
  3567. "MIT"
  3568. ],
  3569. "authors": [
  3570. {
  3571. "name": "Daniele Alessandri",
  3572. "email": "suppakilla@gmail.com",
  3573. "homepage": "http://clorophilla.net",
  3574. "role": "Creator & Maintainer"
  3575. },
  3576. {
  3577. "name": "Till Krüss",
  3578. "homepage": "https://till.im",
  3579. "role": "Maintainer"
  3580. }
  3581. ],
  3582. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3583. "homepage": "http://github.com/predis/predis",
  3584. "keywords": [
  3585. "nosql",
  3586. "predis",
  3587. "redis"
  3588. ],
  3589. "support": {
  3590. "issues": "https://github.com/predis/predis/issues",
  3591. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3592. },
  3593. "time": "2021-04-04T19:34:46+00:00"
  3594. },
  3595. {
  3596. "name": "psr/container",
  3597. "version": "1.1.1",
  3598. "source": {
  3599. "type": "git",
  3600. "url": "https://github.com/php-fig/container.git",
  3601. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3602. },
  3603. "dist": {
  3604. "type": "zip",
  3605. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3606. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3607. "shasum": "",
  3608. "mirrors": [
  3609. {
  3610. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3611. "preferred": true
  3612. }
  3613. ]
  3614. },
  3615. "require": {
  3616. "php": ">=7.2.0"
  3617. },
  3618. "type": "library",
  3619. "autoload": {
  3620. "psr-4": {
  3621. "Psr\\Container\\": "src/"
  3622. }
  3623. },
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "MIT"
  3627. ],
  3628. "authors": [
  3629. {
  3630. "name": "PHP-FIG",
  3631. "homepage": "https://www.php-fig.org/"
  3632. }
  3633. ],
  3634. "description": "Common Container Interface (PHP FIG PSR-11)",
  3635. "homepage": "https://github.com/php-fig/container",
  3636. "keywords": [
  3637. "PSR-11",
  3638. "container",
  3639. "container-interface",
  3640. "container-interop",
  3641. "psr"
  3642. ],
  3643. "support": {
  3644. "issues": "https://github.com/php-fig/container/issues",
  3645. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3646. },
  3647. "time": "2021-03-05T17:36:06+00:00"
  3648. },
  3649. {
  3650. "name": "psr/event-dispatcher",
  3651. "version": "1.0.0",
  3652. "source": {
  3653. "type": "git",
  3654. "url": "https://github.com/php-fig/event-dispatcher.git",
  3655. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3656. },
  3657. "dist": {
  3658. "type": "zip",
  3659. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3660. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3661. "shasum": "",
  3662. "mirrors": [
  3663. {
  3664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3665. "preferred": true
  3666. }
  3667. ]
  3668. },
  3669. "require": {
  3670. "php": ">=7.2.0"
  3671. },
  3672. "type": "library",
  3673. "extra": {
  3674. "branch-alias": {
  3675. "dev-master": "1.0.x-dev"
  3676. }
  3677. },
  3678. "autoload": {
  3679. "psr-4": {
  3680. "Psr\\EventDispatcher\\": "src/"
  3681. }
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "MIT"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "PHP-FIG",
  3690. "homepage": "http://www.php-fig.org/"
  3691. }
  3692. ],
  3693. "description": "Standard interfaces for event handling.",
  3694. "keywords": [
  3695. "events",
  3696. "psr",
  3697. "psr-14"
  3698. ],
  3699. "time": "2019-01-08T18:20:26+00:00"
  3700. },
  3701. {
  3702. "name": "psr/http-client",
  3703. "version": "1.0.1",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/php-fig/http-client.git",
  3707. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3712. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3713. "shasum": "",
  3714. "mirrors": [
  3715. {
  3716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3717. "preferred": true
  3718. }
  3719. ]
  3720. },
  3721. "require": {
  3722. "php": "^7.0 || ^8.0",
  3723. "psr/http-message": "^1.0"
  3724. },
  3725. "type": "library",
  3726. "extra": {
  3727. "branch-alias": {
  3728. "dev-master": "1.0.x-dev"
  3729. }
  3730. },
  3731. "autoload": {
  3732. "psr-4": {
  3733. "Psr\\Http\\Client\\": "src/"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "PHP-FIG",
  3743. "homepage": "http://www.php-fig.org/"
  3744. }
  3745. ],
  3746. "description": "Common interface for HTTP clients",
  3747. "homepage": "https://github.com/php-fig/http-client",
  3748. "keywords": [
  3749. "http",
  3750. "http-client",
  3751. "psr",
  3752. "psr-18"
  3753. ],
  3754. "time": "2020-06-29T06:28:15+00:00"
  3755. },
  3756. {
  3757. "name": "psr/http-factory",
  3758. "version": "1.0.1",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://github.com/php-fig/http-factory.git",
  3762. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3767. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3768. "shasum": "",
  3769. "mirrors": [
  3770. {
  3771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3772. "preferred": true
  3773. }
  3774. ]
  3775. },
  3776. "require": {
  3777. "php": ">=7.0.0",
  3778. "psr/http-message": "^1.0"
  3779. },
  3780. "type": "library",
  3781. "extra": {
  3782. "branch-alias": {
  3783. "dev-master": "1.0.x-dev"
  3784. }
  3785. },
  3786. "autoload": {
  3787. "psr-4": {
  3788. "Psr\\Http\\Message\\": "src/"
  3789. }
  3790. },
  3791. "notification-url": "https://packagist.org/downloads/",
  3792. "license": [
  3793. "MIT"
  3794. ],
  3795. "authors": [
  3796. {
  3797. "name": "PHP-FIG",
  3798. "homepage": "http://www.php-fig.org/"
  3799. }
  3800. ],
  3801. "description": "Common interfaces for PSR-7 HTTP message factories",
  3802. "keywords": [
  3803. "factory",
  3804. "http",
  3805. "message",
  3806. "psr",
  3807. "psr-17",
  3808. "psr-7",
  3809. "request",
  3810. "response"
  3811. ],
  3812. "time": "2019-04-30T12:38:16+00:00"
  3813. },
  3814. {
  3815. "name": "psr/http-message",
  3816. "version": "1.0.1",
  3817. "source": {
  3818. "type": "git",
  3819. "url": "https://github.com/php-fig/http-message.git",
  3820. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3821. },
  3822. "dist": {
  3823. "type": "zip",
  3824. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3825. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3826. "shasum": "",
  3827. "mirrors": [
  3828. {
  3829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3830. "preferred": true
  3831. }
  3832. ]
  3833. },
  3834. "require": {
  3835. "php": ">=5.3.0"
  3836. },
  3837. "type": "library",
  3838. "extra": {
  3839. "branch-alias": {
  3840. "dev-master": "1.0.x-dev"
  3841. }
  3842. },
  3843. "autoload": {
  3844. "psr-4": {
  3845. "Psr\\Http\\Message\\": "src/"
  3846. }
  3847. },
  3848. "notification-url": "https://packagist.org/downloads/",
  3849. "license": [
  3850. "MIT"
  3851. ],
  3852. "authors": [
  3853. {
  3854. "name": "PHP-FIG",
  3855. "homepage": "http://www.php-fig.org/"
  3856. }
  3857. ],
  3858. "description": "Common interface for HTTP messages",
  3859. "homepage": "https://github.com/php-fig/http-message",
  3860. "keywords": [
  3861. "http",
  3862. "http-message",
  3863. "psr",
  3864. "psr-7",
  3865. "request",
  3866. "response"
  3867. ],
  3868. "time": "2016-08-06T14:39:51+00:00"
  3869. },
  3870. {
  3871. "name": "psr/log",
  3872. "version": "1.1.4",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/php-fig/log.git",
  3876. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3881. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3882. "shasum": "",
  3883. "mirrors": [
  3884. {
  3885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3886. "preferred": true
  3887. }
  3888. ]
  3889. },
  3890. "require": {
  3891. "php": ">=5.3.0"
  3892. },
  3893. "type": "library",
  3894. "extra": {
  3895. "branch-alias": {
  3896. "dev-master": "1.1.x-dev"
  3897. }
  3898. },
  3899. "autoload": {
  3900. "psr-4": {
  3901. "Psr\\Log\\": "Psr/Log/"
  3902. }
  3903. },
  3904. "notification-url": "https://packagist.org/downloads/",
  3905. "license": [
  3906. "MIT"
  3907. ],
  3908. "authors": [
  3909. {
  3910. "name": "PHP-FIG",
  3911. "homepage": "https://www.php-fig.org/"
  3912. }
  3913. ],
  3914. "description": "Common interface for logging libraries",
  3915. "homepage": "https://github.com/php-fig/log",
  3916. "keywords": [
  3917. "log",
  3918. "psr",
  3919. "psr-3"
  3920. ],
  3921. "support": {
  3922. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3923. },
  3924. "time": "2021-05-03T11:20:27+00:00"
  3925. },
  3926. {
  3927. "name": "psr/simple-cache",
  3928. "version": "1.0.1",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/php-fig/simple-cache.git",
  3932. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3937. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3938. "shasum": "",
  3939. "mirrors": [
  3940. {
  3941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3942. "preferred": true
  3943. }
  3944. ]
  3945. },
  3946. "require": {
  3947. "php": ">=5.3.0"
  3948. },
  3949. "type": "library",
  3950. "extra": {
  3951. "branch-alias": {
  3952. "dev-master": "1.0.x-dev"
  3953. }
  3954. },
  3955. "autoload": {
  3956. "psr-4": {
  3957. "Psr\\SimpleCache\\": "src/"
  3958. }
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "license": [
  3962. "MIT"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "PHP-FIG",
  3967. "homepage": "http://www.php-fig.org/"
  3968. }
  3969. ],
  3970. "description": "Common interfaces for simple caching",
  3971. "keywords": [
  3972. "cache",
  3973. "caching",
  3974. "psr",
  3975. "psr-16",
  3976. "simple-cache"
  3977. ],
  3978. "time": "2017-10-23T01:57:42+00:00"
  3979. },
  3980. {
  3981. "name": "psy/psysh",
  3982. "version": "v0.10.8",
  3983. "source": {
  3984. "type": "git",
  3985. "url": "https://github.com/bobthecow/psysh.git",
  3986. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  3987. },
  3988. "dist": {
  3989. "type": "zip",
  3990. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  3991. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  3992. "shasum": "",
  3993. "mirrors": [
  3994. {
  3995. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3996. "preferred": true
  3997. }
  3998. ]
  3999. },
  4000. "require": {
  4001. "ext-json": "*",
  4002. "ext-tokenizer": "*",
  4003. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4004. "php": "^8.0 || ^7.0 || ^5.5.9",
  4005. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4006. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4007. },
  4008. "require-dev": {
  4009. "bamarni/composer-bin-plugin": "^1.2",
  4010. "hoa/console": "3.17.*"
  4011. },
  4012. "suggest": {
  4013. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4014. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4015. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4016. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4017. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4018. },
  4019. "bin": [
  4020. "bin/psysh"
  4021. ],
  4022. "type": "library",
  4023. "extra": {
  4024. "branch-alias": {
  4025. "dev-main": "0.10.x-dev"
  4026. }
  4027. },
  4028. "autoload": {
  4029. "files": [
  4030. "src/functions.php"
  4031. ],
  4032. "psr-4": {
  4033. "Psy\\": "src/"
  4034. }
  4035. },
  4036. "notification-url": "https://packagist.org/downloads/",
  4037. "license": [
  4038. "MIT"
  4039. ],
  4040. "authors": [
  4041. {
  4042. "name": "Justin Hileman",
  4043. "email": "justin@justinhileman.info",
  4044. "homepage": "http://justinhileman.com"
  4045. }
  4046. ],
  4047. "description": "An interactive shell for modern PHP.",
  4048. "homepage": "http://psysh.org",
  4049. "keywords": [
  4050. "REPL",
  4051. "console",
  4052. "interactive",
  4053. "shell"
  4054. ],
  4055. "support": {
  4056. "issues": "https://github.com/bobthecow/psysh/issues",
  4057. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4058. },
  4059. "time": "2021-04-10T16:23:39+00:00"
  4060. },
  4061. {
  4062. "name": "pusher/pusher-php-server",
  4063. "version": "v4.1.5",
  4064. "source": {
  4065. "type": "git",
  4066. "url": "https://github.com/pusher/pusher-http-php.git",
  4067. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4068. },
  4069. "dist": {
  4070. "type": "zip",
  4071. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4072. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4073. "shasum": "",
  4074. "mirrors": [
  4075. {
  4076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4077. "preferred": true
  4078. }
  4079. ]
  4080. },
  4081. "require": {
  4082. "ext-curl": "*",
  4083. "paragonie/sodium_compat": "^1.6",
  4084. "php": "^7.1|^8.0",
  4085. "psr/log": "^1.0"
  4086. },
  4087. "require-dev": {
  4088. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4089. },
  4090. "type": "library",
  4091. "extra": {
  4092. "branch-alias": {
  4093. "dev-master": "3.4-dev"
  4094. }
  4095. },
  4096. "autoload": {
  4097. "psr-4": {
  4098. "Pusher\\": "src/"
  4099. }
  4100. },
  4101. "notification-url": "https://packagist.org/downloads/",
  4102. "license": [
  4103. "MIT"
  4104. ],
  4105. "description": "Library for interacting with the Pusher REST API",
  4106. "keywords": [
  4107. "events",
  4108. "messaging",
  4109. "php-pusher-server",
  4110. "publish",
  4111. "push",
  4112. "pusher",
  4113. "real time",
  4114. "real-time",
  4115. "realtime",
  4116. "rest",
  4117. "trigger"
  4118. ],
  4119. "time": "2020-12-09T09:38:19+00:00"
  4120. },
  4121. {
  4122. "name": "ralouphie/getallheaders",
  4123. "version": "3.0.3",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/ralouphie/getallheaders.git",
  4127. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4132. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4133. "shasum": "",
  4134. "mirrors": [
  4135. {
  4136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4137. "preferred": true
  4138. }
  4139. ]
  4140. },
  4141. "require": {
  4142. "php": ">=5.6"
  4143. },
  4144. "require-dev": {
  4145. "php-coveralls/php-coveralls": "^2.1",
  4146. "phpunit/phpunit": "^5 || ^6.5"
  4147. },
  4148. "type": "library",
  4149. "autoload": {
  4150. "files": [
  4151. "src/getallheaders.php"
  4152. ]
  4153. },
  4154. "notification-url": "https://packagist.org/downloads/",
  4155. "license": [
  4156. "MIT"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "Ralph Khattar",
  4161. "email": "ralph.khattar@gmail.com"
  4162. }
  4163. ],
  4164. "description": "A polyfill for getallheaders.",
  4165. "time": "2019-03-08T08:55:37+00:00"
  4166. },
  4167. {
  4168. "name": "ramsey/collection",
  4169. "version": "1.1.3",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/ramsey/collection.git",
  4173. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4178. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4179. "shasum": "",
  4180. "mirrors": [
  4181. {
  4182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4183. "preferred": true
  4184. }
  4185. ]
  4186. },
  4187. "require": {
  4188. "php": "^7.2 || ^8"
  4189. },
  4190. "require-dev": {
  4191. "captainhook/captainhook": "^5.3",
  4192. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4193. "ergebnis/composer-normalize": "^2.6",
  4194. "fakerphp/faker": "^1.5",
  4195. "hamcrest/hamcrest-php": "^2",
  4196. "jangregor/phpstan-prophecy": "^0.8",
  4197. "mockery/mockery": "^1.3",
  4198. "phpstan/extension-installer": "^1",
  4199. "phpstan/phpstan": "^0.12.32",
  4200. "phpstan/phpstan-mockery": "^0.12.5",
  4201. "phpstan/phpstan-phpunit": "^0.12.11",
  4202. "phpunit/phpunit": "^8.5 || ^9",
  4203. "psy/psysh": "^0.10.4",
  4204. "slevomat/coding-standard": "^6.3",
  4205. "squizlabs/php_codesniffer": "^3.5",
  4206. "vimeo/psalm": "^4.4"
  4207. },
  4208. "type": "library",
  4209. "autoload": {
  4210. "psr-4": {
  4211. "Ramsey\\Collection\\": "src/"
  4212. }
  4213. },
  4214. "notification-url": "https://packagist.org/downloads/",
  4215. "license": [
  4216. "MIT"
  4217. ],
  4218. "authors": [
  4219. {
  4220. "name": "Ben Ramsey",
  4221. "email": "ben@benramsey.com",
  4222. "homepage": "https://benramsey.com"
  4223. }
  4224. ],
  4225. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4226. "keywords": [
  4227. "array",
  4228. "collection",
  4229. "hash",
  4230. "map",
  4231. "queue",
  4232. "set"
  4233. ],
  4234. "support": {
  4235. "issues": "https://github.com/ramsey/collection/issues",
  4236. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4237. },
  4238. "time": "2021-01-21T17:40:04+00:00"
  4239. },
  4240. {
  4241. "name": "ramsey/uuid",
  4242. "version": "4.1.1",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://github.com/ramsey/uuid.git",
  4246. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4251. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4252. "shasum": "",
  4253. "mirrors": [
  4254. {
  4255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4256. "preferred": true
  4257. }
  4258. ]
  4259. },
  4260. "require": {
  4261. "brick/math": "^0.8 || ^0.9",
  4262. "ext-json": "*",
  4263. "php": "^7.2 || ^8",
  4264. "ramsey/collection": "^1.0",
  4265. "symfony/polyfill-ctype": "^1.8"
  4266. },
  4267. "replace": {
  4268. "rhumsaa/uuid": "self.version"
  4269. },
  4270. "require-dev": {
  4271. "codeception/aspect-mock": "^3",
  4272. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4273. "doctrine/annotations": "^1.8",
  4274. "goaop/framework": "^2",
  4275. "mockery/mockery": "^1.3",
  4276. "moontoast/math": "^1.1",
  4277. "paragonie/random-lib": "^2",
  4278. "php-mock/php-mock-mockery": "^1.3",
  4279. "php-mock/php-mock-phpunit": "^2.5",
  4280. "php-parallel-lint/php-parallel-lint": "^1.1",
  4281. "phpbench/phpbench": "^0.17.1",
  4282. "phpstan/extension-installer": "^1.0",
  4283. "phpstan/phpstan": "^0.12",
  4284. "phpstan/phpstan-mockery": "^0.12",
  4285. "phpstan/phpstan-phpunit": "^0.12",
  4286. "phpunit/phpunit": "^8.5",
  4287. "psy/psysh": "^0.10.0",
  4288. "slevomat/coding-standard": "^6.0",
  4289. "squizlabs/php_codesniffer": "^3.5",
  4290. "vimeo/psalm": "3.9.4"
  4291. },
  4292. "suggest": {
  4293. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4294. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4295. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4296. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4297. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4298. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4299. },
  4300. "type": "library",
  4301. "extra": {
  4302. "branch-alias": {
  4303. "dev-master": "4.x-dev"
  4304. }
  4305. },
  4306. "autoload": {
  4307. "psr-4": {
  4308. "Ramsey\\Uuid\\": "src/"
  4309. },
  4310. "files": [
  4311. "src/functions.php"
  4312. ]
  4313. },
  4314. "notification-url": "https://packagist.org/downloads/",
  4315. "license": [
  4316. "MIT"
  4317. ],
  4318. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4319. "homepage": "https://github.com/ramsey/uuid",
  4320. "keywords": [
  4321. "guid",
  4322. "identifier",
  4323. "uuid"
  4324. ],
  4325. "time": "2020-08-18T17:17:46+00:00"
  4326. },
  4327. {
  4328. "name": "swiftmailer/swiftmailer",
  4329. "version": "v6.2.7",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4333. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4338. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4339. "shasum": "",
  4340. "mirrors": [
  4341. {
  4342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4343. "preferred": true
  4344. }
  4345. ]
  4346. },
  4347. "require": {
  4348. "egulias/email-validator": "^2.0|^3.1",
  4349. "php": ">=7.0.0",
  4350. "symfony/polyfill-iconv": "^1.0",
  4351. "symfony/polyfill-intl-idn": "^1.10",
  4352. "symfony/polyfill-mbstring": "^1.0"
  4353. },
  4354. "require-dev": {
  4355. "mockery/mockery": "^1.0",
  4356. "symfony/phpunit-bridge": "^4.4|^5.0"
  4357. },
  4358. "suggest": {
  4359. "ext-intl": "Needed to support internationalized email addresses"
  4360. },
  4361. "type": "library",
  4362. "extra": {
  4363. "branch-alias": {
  4364. "dev-master": "6.2-dev"
  4365. }
  4366. },
  4367. "autoload": {
  4368. "files": [
  4369. "lib/swift_required.php"
  4370. ]
  4371. },
  4372. "notification-url": "https://packagist.org/downloads/",
  4373. "license": [
  4374. "MIT"
  4375. ],
  4376. "authors": [
  4377. {
  4378. "name": "Chris Corbyn"
  4379. },
  4380. {
  4381. "name": "Fabien Potencier",
  4382. "email": "fabien@symfony.com"
  4383. }
  4384. ],
  4385. "description": "Swiftmailer, free feature-rich PHP mailer",
  4386. "homepage": "https://swiftmailer.symfony.com",
  4387. "keywords": [
  4388. "email",
  4389. "mail",
  4390. "mailer"
  4391. ],
  4392. "support": {
  4393. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4394. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4395. },
  4396. "time": "2021-03-09T12:30:35+00:00"
  4397. },
  4398. {
  4399. "name": "symfony/console",
  4400. "version": "v5.3.0",
  4401. "source": {
  4402. "type": "git",
  4403. "url": "https://github.com/symfony/console.git",
  4404. "reference": "058553870f7809087fa80fa734704a21b9bcaeb2"
  4405. },
  4406. "dist": {
  4407. "type": "zip",
  4408. "url": "https://api.github.com/repos/symfony/console/zipball/058553870f7809087fa80fa734704a21b9bcaeb2",
  4409. "reference": "058553870f7809087fa80fa734704a21b9bcaeb2",
  4410. "shasum": "",
  4411. "mirrors": [
  4412. {
  4413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4414. "preferred": true
  4415. }
  4416. ]
  4417. },
  4418. "require": {
  4419. "php": ">=7.2.5",
  4420. "symfony/deprecation-contracts": "^2.1",
  4421. "symfony/polyfill-mbstring": "~1.0",
  4422. "symfony/polyfill-php73": "^1.8",
  4423. "symfony/polyfill-php80": "^1.15",
  4424. "symfony/service-contracts": "^1.1|^2",
  4425. "symfony/string": "^5.1"
  4426. },
  4427. "conflict": {
  4428. "symfony/dependency-injection": "<4.4",
  4429. "symfony/dotenv": "<5.1",
  4430. "symfony/event-dispatcher": "<4.4",
  4431. "symfony/lock": "<4.4",
  4432. "symfony/process": "<4.4"
  4433. },
  4434. "provide": {
  4435. "psr/log-implementation": "1.0"
  4436. },
  4437. "require-dev": {
  4438. "psr/log": "~1.0",
  4439. "symfony/config": "^4.4|^5.0",
  4440. "symfony/dependency-injection": "^4.4|^5.0",
  4441. "symfony/event-dispatcher": "^4.4|^5.0",
  4442. "symfony/lock": "^4.4|^5.0",
  4443. "symfony/process": "^4.4|^5.0",
  4444. "symfony/var-dumper": "^4.4|^5.0"
  4445. },
  4446. "suggest": {
  4447. "psr/log": "For using the console logger",
  4448. "symfony/event-dispatcher": "",
  4449. "symfony/lock": "",
  4450. "symfony/process": ""
  4451. },
  4452. "type": "library",
  4453. "autoload": {
  4454. "psr-4": {
  4455. "Symfony\\Component\\Console\\": ""
  4456. },
  4457. "exclude-from-classmap": [
  4458. "/Tests/"
  4459. ]
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "MIT"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "Fabien Potencier",
  4468. "email": "fabien@symfony.com"
  4469. },
  4470. {
  4471. "name": "Symfony Community",
  4472. "homepage": "https://symfony.com/contributors"
  4473. }
  4474. ],
  4475. "description": "Eases the creation of beautiful and testable command line interfaces",
  4476. "homepage": "https://symfony.com",
  4477. "keywords": [
  4478. "cli",
  4479. "command line",
  4480. "console",
  4481. "terminal"
  4482. ],
  4483. "time": "2021-05-26T17:43:10+00:00"
  4484. },
  4485. {
  4486. "name": "symfony/css-selector",
  4487. "version": "v5.3.0",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://github.com/symfony/css-selector.git",
  4491. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4496. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4497. "shasum": "",
  4498. "mirrors": [
  4499. {
  4500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4501. "preferred": true
  4502. }
  4503. ]
  4504. },
  4505. "require": {
  4506. "php": ">=7.2.5"
  4507. },
  4508. "type": "library",
  4509. "autoload": {
  4510. "psr-4": {
  4511. "Symfony\\Component\\CssSelector\\": ""
  4512. },
  4513. "exclude-from-classmap": [
  4514. "/Tests/"
  4515. ]
  4516. },
  4517. "notification-url": "https://packagist.org/downloads/",
  4518. "license": [
  4519. "MIT"
  4520. ],
  4521. "authors": [
  4522. {
  4523. "name": "Fabien Potencier",
  4524. "email": "fabien@symfony.com"
  4525. },
  4526. {
  4527. "name": "Jean-François Simon",
  4528. "email": "jeanfrancois.simon@sensiolabs.com"
  4529. },
  4530. {
  4531. "name": "Symfony Community",
  4532. "homepage": "https://symfony.com/contributors"
  4533. }
  4534. ],
  4535. "description": "Converts CSS selectors to XPath expressions",
  4536. "homepage": "https://symfony.com",
  4537. "time": "2021-05-26T17:40:38+00:00"
  4538. },
  4539. {
  4540. "name": "symfony/deprecation-contracts",
  4541. "version": "v2.4.0",
  4542. "source": {
  4543. "type": "git",
  4544. "url": "https://github.com/symfony/deprecation-contracts.git",
  4545. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4546. },
  4547. "dist": {
  4548. "type": "zip",
  4549. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4550. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4551. "shasum": "",
  4552. "mirrors": [
  4553. {
  4554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4555. "preferred": true
  4556. }
  4557. ]
  4558. },
  4559. "require": {
  4560. "php": ">=7.1"
  4561. },
  4562. "type": "library",
  4563. "extra": {
  4564. "branch-alias": {
  4565. "dev-main": "2.4-dev"
  4566. },
  4567. "thanks": {
  4568. "name": "symfony/contracts",
  4569. "url": "https://github.com/symfony/contracts"
  4570. }
  4571. },
  4572. "autoload": {
  4573. "files": [
  4574. "function.php"
  4575. ]
  4576. },
  4577. "notification-url": "https://packagist.org/downloads/",
  4578. "license": [
  4579. "MIT"
  4580. ],
  4581. "authors": [
  4582. {
  4583. "name": "Nicolas Grekas",
  4584. "email": "p@tchwork.com"
  4585. },
  4586. {
  4587. "name": "Symfony Community",
  4588. "homepage": "https://symfony.com/contributors"
  4589. }
  4590. ],
  4591. "description": "A generic function and convention to trigger deprecation notices",
  4592. "homepage": "https://symfony.com",
  4593. "support": {
  4594. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  4595. },
  4596. "time": "2021-03-23T23:28:01+00:00"
  4597. },
  4598. {
  4599. "name": "symfony/error-handler",
  4600. "version": "v5.3.0",
  4601. "source": {
  4602. "type": "git",
  4603. "url": "https://github.com/symfony/error-handler.git",
  4604. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2"
  4605. },
  4606. "dist": {
  4607. "type": "zip",
  4608. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  4609. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  4610. "shasum": "",
  4611. "mirrors": [
  4612. {
  4613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4614. "preferred": true
  4615. }
  4616. ]
  4617. },
  4618. "require": {
  4619. "php": ">=7.2.5",
  4620. "psr/log": "^1.0",
  4621. "symfony/polyfill-php80": "^1.15",
  4622. "symfony/var-dumper": "^4.4|^5.0"
  4623. },
  4624. "require-dev": {
  4625. "symfony/deprecation-contracts": "^2.1",
  4626. "symfony/http-kernel": "^4.4|^5.0",
  4627. "symfony/serializer": "^4.4|^5.0"
  4628. },
  4629. "type": "library",
  4630. "autoload": {
  4631. "psr-4": {
  4632. "Symfony\\Component\\ErrorHandler\\": ""
  4633. },
  4634. "exclude-from-classmap": [
  4635. "/Tests/"
  4636. ]
  4637. },
  4638. "notification-url": "https://packagist.org/downloads/",
  4639. "license": [
  4640. "MIT"
  4641. ],
  4642. "authors": [
  4643. {
  4644. "name": "Fabien Potencier",
  4645. "email": "fabien@symfony.com"
  4646. },
  4647. {
  4648. "name": "Symfony Community",
  4649. "homepage": "https://symfony.com/contributors"
  4650. }
  4651. ],
  4652. "description": "Provides tools to manage errors and ease debugging PHP code",
  4653. "homepage": "https://symfony.com",
  4654. "time": "2021-05-26T17:43:10+00:00"
  4655. },
  4656. {
  4657. "name": "symfony/event-dispatcher",
  4658. "version": "v5.3.0",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/symfony/event-dispatcher.git",
  4662. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  4667. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  4668. "shasum": "",
  4669. "mirrors": [
  4670. {
  4671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4672. "preferred": true
  4673. }
  4674. ]
  4675. },
  4676. "require": {
  4677. "php": ">=7.2.5",
  4678. "symfony/deprecation-contracts": "^2.1",
  4679. "symfony/event-dispatcher-contracts": "^2",
  4680. "symfony/polyfill-php80": "^1.15"
  4681. },
  4682. "conflict": {
  4683. "symfony/dependency-injection": "<4.4"
  4684. },
  4685. "provide": {
  4686. "psr/event-dispatcher-implementation": "1.0",
  4687. "symfony/event-dispatcher-implementation": "2.0"
  4688. },
  4689. "require-dev": {
  4690. "psr/log": "~1.0",
  4691. "symfony/config": "^4.4|^5.0",
  4692. "symfony/dependency-injection": "^4.4|^5.0",
  4693. "symfony/error-handler": "^4.4|^5.0",
  4694. "symfony/expression-language": "^4.4|^5.0",
  4695. "symfony/http-foundation": "^4.4|^5.0",
  4696. "symfony/service-contracts": "^1.1|^2",
  4697. "symfony/stopwatch": "^4.4|^5.0"
  4698. },
  4699. "suggest": {
  4700. "symfony/dependency-injection": "",
  4701. "symfony/http-kernel": ""
  4702. },
  4703. "type": "library",
  4704. "autoload": {
  4705. "psr-4": {
  4706. "Symfony\\Component\\EventDispatcher\\": ""
  4707. },
  4708. "exclude-from-classmap": [
  4709. "/Tests/"
  4710. ]
  4711. },
  4712. "notification-url": "https://packagist.org/downloads/",
  4713. "license": [
  4714. "MIT"
  4715. ],
  4716. "authors": [
  4717. {
  4718. "name": "Fabien Potencier",
  4719. "email": "fabien@symfony.com"
  4720. },
  4721. {
  4722. "name": "Symfony Community",
  4723. "homepage": "https://symfony.com/contributors"
  4724. }
  4725. ],
  4726. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4727. "homepage": "https://symfony.com",
  4728. "time": "2021-05-26T17:43:10+00:00"
  4729. },
  4730. {
  4731. "name": "symfony/event-dispatcher-contracts",
  4732. "version": "v2.4.0",
  4733. "source": {
  4734. "type": "git",
  4735. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4736. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  4737. },
  4738. "dist": {
  4739. "type": "zip",
  4740. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  4741. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  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. "php": ">=7.2.5",
  4752. "psr/event-dispatcher": "^1"
  4753. },
  4754. "suggest": {
  4755. "symfony/event-dispatcher-implementation": ""
  4756. },
  4757. "type": "library",
  4758. "extra": {
  4759. "branch-alias": {
  4760. "dev-main": "2.4-dev"
  4761. },
  4762. "thanks": {
  4763. "name": "symfony/contracts",
  4764. "url": "https://github.com/symfony/contracts"
  4765. }
  4766. },
  4767. "autoload": {
  4768. "psr-4": {
  4769. "Symfony\\Contracts\\EventDispatcher\\": ""
  4770. }
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "MIT"
  4775. ],
  4776. "authors": [
  4777. {
  4778. "name": "Nicolas Grekas",
  4779. "email": "p@tchwork.com"
  4780. },
  4781. {
  4782. "name": "Symfony Community",
  4783. "homepage": "https://symfony.com/contributors"
  4784. }
  4785. ],
  4786. "description": "Generic abstractions related to dispatching event",
  4787. "homepage": "https://symfony.com",
  4788. "keywords": [
  4789. "abstractions",
  4790. "contracts",
  4791. "decoupling",
  4792. "interfaces",
  4793. "interoperability",
  4794. "standards"
  4795. ],
  4796. "support": {
  4797. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  4798. },
  4799. "time": "2021-03-23T23:28:01+00:00"
  4800. },
  4801. {
  4802. "name": "symfony/finder",
  4803. "version": "v5.3.0",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/symfony/finder.git",
  4807. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  4812. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  4813. "shasum": "",
  4814. "mirrors": [
  4815. {
  4816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4817. "preferred": true
  4818. }
  4819. ]
  4820. },
  4821. "require": {
  4822. "php": ">=7.2.5"
  4823. },
  4824. "type": "library",
  4825. "autoload": {
  4826. "psr-4": {
  4827. "Symfony\\Component\\Finder\\": ""
  4828. },
  4829. "exclude-from-classmap": [
  4830. "/Tests/"
  4831. ]
  4832. },
  4833. "notification-url": "https://packagist.org/downloads/",
  4834. "license": [
  4835. "MIT"
  4836. ],
  4837. "authors": [
  4838. {
  4839. "name": "Fabien Potencier",
  4840. "email": "fabien@symfony.com"
  4841. },
  4842. {
  4843. "name": "Symfony Community",
  4844. "homepage": "https://symfony.com/contributors"
  4845. }
  4846. ],
  4847. "description": "Finds files and directories via an intuitive fluent interface",
  4848. "homepage": "https://symfony.com",
  4849. "time": "2021-05-26T12:52:38+00:00"
  4850. },
  4851. {
  4852. "name": "symfony/http-client-contracts",
  4853. "version": "v2.4.0",
  4854. "source": {
  4855. "type": "git",
  4856. "url": "https://github.com/symfony/http-client-contracts.git",
  4857. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  4858. },
  4859. "dist": {
  4860. "type": "zip",
  4861. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  4862. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  4863. "shasum": "",
  4864. "mirrors": [
  4865. {
  4866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4867. "preferred": true
  4868. }
  4869. ]
  4870. },
  4871. "require": {
  4872. "php": ">=7.2.5"
  4873. },
  4874. "suggest": {
  4875. "symfony/http-client-implementation": ""
  4876. },
  4877. "type": "library",
  4878. "extra": {
  4879. "branch-alias": {
  4880. "dev-main": "2.4-dev"
  4881. },
  4882. "thanks": {
  4883. "name": "symfony/contracts",
  4884. "url": "https://github.com/symfony/contracts"
  4885. }
  4886. },
  4887. "autoload": {
  4888. "psr-4": {
  4889. "Symfony\\Contracts\\HttpClient\\": ""
  4890. }
  4891. },
  4892. "notification-url": "https://packagist.org/downloads/",
  4893. "license": [
  4894. "MIT"
  4895. ],
  4896. "authors": [
  4897. {
  4898. "name": "Nicolas Grekas",
  4899. "email": "p@tchwork.com"
  4900. },
  4901. {
  4902. "name": "Symfony Community",
  4903. "homepage": "https://symfony.com/contributors"
  4904. }
  4905. ],
  4906. "description": "Generic abstractions related to HTTP clients",
  4907. "homepage": "https://symfony.com",
  4908. "keywords": [
  4909. "abstractions",
  4910. "contracts",
  4911. "decoupling",
  4912. "interfaces",
  4913. "interoperability",
  4914. "standards"
  4915. ],
  4916. "support": {
  4917. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  4918. },
  4919. "time": "2021-04-11T23:07:08+00:00"
  4920. },
  4921. {
  4922. "name": "symfony/http-foundation",
  4923. "version": "v5.3.1",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://github.com/symfony/http-foundation.git",
  4927. "reference": "8827b90cf8806e467124ad476acd15216c2fceb6"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8827b90cf8806e467124ad476acd15216c2fceb6",
  4932. "reference": "8827b90cf8806e467124ad476acd15216c2fceb6",
  4933. "shasum": "",
  4934. "mirrors": [
  4935. {
  4936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4937. "preferred": true
  4938. }
  4939. ]
  4940. },
  4941. "require": {
  4942. "php": ">=7.2.5",
  4943. "symfony/deprecation-contracts": "^2.1",
  4944. "symfony/polyfill-mbstring": "~1.1",
  4945. "symfony/polyfill-php80": "^1.15"
  4946. },
  4947. "require-dev": {
  4948. "predis/predis": "~1.0",
  4949. "symfony/cache": "^4.4|^5.0",
  4950. "symfony/expression-language": "^4.4|^5.0",
  4951. "symfony/mime": "^4.4|^5.0"
  4952. },
  4953. "suggest": {
  4954. "symfony/mime": "To use the file extension guesser"
  4955. },
  4956. "type": "library",
  4957. "autoload": {
  4958. "psr-4": {
  4959. "Symfony\\Component\\HttpFoundation\\": ""
  4960. },
  4961. "exclude-from-classmap": [
  4962. "/Tests/"
  4963. ]
  4964. },
  4965. "notification-url": "https://packagist.org/downloads/",
  4966. "license": [
  4967. "MIT"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Fabien Potencier",
  4972. "email": "fabien@symfony.com"
  4973. },
  4974. {
  4975. "name": "Symfony Community",
  4976. "homepage": "https://symfony.com/contributors"
  4977. }
  4978. ],
  4979. "description": "Defines an object-oriented layer for the HTTP specification",
  4980. "homepage": "https://symfony.com",
  4981. "time": "2021-06-02T09:32:00+00:00"
  4982. },
  4983. {
  4984. "name": "symfony/http-kernel",
  4985. "version": "v5.3.1",
  4986. "source": {
  4987. "type": "git",
  4988. "url": "https://github.com/symfony/http-kernel.git",
  4989. "reference": "74eb022e3bac36b3d3a897951a98759f2b32b864"
  4990. },
  4991. "dist": {
  4992. "type": "zip",
  4993. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/74eb022e3bac36b3d3a897951a98759f2b32b864",
  4994. "reference": "74eb022e3bac36b3d3a897951a98759f2b32b864",
  4995. "shasum": "",
  4996. "mirrors": [
  4997. {
  4998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4999. "preferred": true
  5000. }
  5001. ]
  5002. },
  5003. "require": {
  5004. "php": ">=7.2.5",
  5005. "psr/log": "~1.0",
  5006. "symfony/deprecation-contracts": "^2.1",
  5007. "symfony/error-handler": "^4.4|^5.0",
  5008. "symfony/event-dispatcher": "^5.0",
  5009. "symfony/http-client-contracts": "^1.1|^2",
  5010. "symfony/http-foundation": "^5.3",
  5011. "symfony/polyfill-ctype": "^1.8",
  5012. "symfony/polyfill-php73": "^1.9",
  5013. "symfony/polyfill-php80": "^1.15"
  5014. },
  5015. "conflict": {
  5016. "symfony/browser-kit": "<4.4",
  5017. "symfony/cache": "<5.0",
  5018. "symfony/config": "<5.0",
  5019. "symfony/console": "<4.4",
  5020. "symfony/dependency-injection": "<5.3",
  5021. "symfony/doctrine-bridge": "<5.0",
  5022. "symfony/form": "<5.0",
  5023. "symfony/http-client": "<5.0",
  5024. "symfony/mailer": "<5.0",
  5025. "symfony/messenger": "<5.0",
  5026. "symfony/translation": "<5.0",
  5027. "symfony/twig-bridge": "<5.0",
  5028. "symfony/validator": "<5.0",
  5029. "twig/twig": "<2.13"
  5030. },
  5031. "provide": {
  5032. "psr/log-implementation": "1.0"
  5033. },
  5034. "require-dev": {
  5035. "psr/cache": "^1.0|^2.0|^3.0",
  5036. "symfony/browser-kit": "^4.4|^5.0",
  5037. "symfony/config": "^5.0",
  5038. "symfony/console": "^4.4|^5.0",
  5039. "symfony/css-selector": "^4.4|^5.0",
  5040. "symfony/dependency-injection": "^5.3",
  5041. "symfony/dom-crawler": "^4.4|^5.0",
  5042. "symfony/expression-language": "^4.4|^5.0",
  5043. "symfony/finder": "^4.4|^5.0",
  5044. "symfony/process": "^4.4|^5.0",
  5045. "symfony/routing": "^4.4|^5.0",
  5046. "symfony/stopwatch": "^4.4|^5.0",
  5047. "symfony/translation": "^4.4|^5.0",
  5048. "symfony/translation-contracts": "^1.1|^2",
  5049. "twig/twig": "^2.13|^3.0.4"
  5050. },
  5051. "suggest": {
  5052. "symfony/browser-kit": "",
  5053. "symfony/config": "",
  5054. "symfony/console": "",
  5055. "symfony/dependency-injection": ""
  5056. },
  5057. "type": "library",
  5058. "autoload": {
  5059. "psr-4": {
  5060. "Symfony\\Component\\HttpKernel\\": ""
  5061. },
  5062. "exclude-from-classmap": [
  5063. "/Tests/"
  5064. ]
  5065. },
  5066. "notification-url": "https://packagist.org/downloads/",
  5067. "license": [
  5068. "MIT"
  5069. ],
  5070. "authors": [
  5071. {
  5072. "name": "Fabien Potencier",
  5073. "email": "fabien@symfony.com"
  5074. },
  5075. {
  5076. "name": "Symfony Community",
  5077. "homepage": "https://symfony.com/contributors"
  5078. }
  5079. ],
  5080. "description": "Provides a structured process for converting a Request into a Response",
  5081. "homepage": "https://symfony.com",
  5082. "time": "2021-06-02T10:07:12+00:00"
  5083. },
  5084. {
  5085. "name": "symfony/mime",
  5086. "version": "v5.3.0",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://github.com/symfony/mime.git",
  5090. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852",
  5095. "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852",
  5096. "shasum": "",
  5097. "mirrors": [
  5098. {
  5099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5100. "preferred": true
  5101. }
  5102. ]
  5103. },
  5104. "require": {
  5105. "php": ">=7.2.5",
  5106. "symfony/deprecation-contracts": "^2.1",
  5107. "symfony/polyfill-intl-idn": "^1.10",
  5108. "symfony/polyfill-mbstring": "^1.0",
  5109. "symfony/polyfill-php80": "^1.15"
  5110. },
  5111. "conflict": {
  5112. "egulias/email-validator": "~3.0.0",
  5113. "phpdocumentor/reflection-docblock": "<3.2.2",
  5114. "phpdocumentor/type-resolver": "<1.4.0",
  5115. "symfony/mailer": "<4.4"
  5116. },
  5117. "require-dev": {
  5118. "egulias/email-validator": "^2.1.10|^3.1",
  5119. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5120. "symfony/dependency-injection": "^4.4|^5.0",
  5121. "symfony/property-access": "^4.4|^5.1",
  5122. "symfony/property-info": "^4.4|^5.1",
  5123. "symfony/serializer": "^5.2"
  5124. },
  5125. "type": "library",
  5126. "autoload": {
  5127. "psr-4": {
  5128. "Symfony\\Component\\Mime\\": ""
  5129. },
  5130. "exclude-from-classmap": [
  5131. "/Tests/"
  5132. ]
  5133. },
  5134. "notification-url": "https://packagist.org/downloads/",
  5135. "license": [
  5136. "MIT"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Fabien Potencier",
  5141. "email": "fabien@symfony.com"
  5142. },
  5143. {
  5144. "name": "Symfony Community",
  5145. "homepage": "https://symfony.com/contributors"
  5146. }
  5147. ],
  5148. "description": "Allows manipulating MIME messages",
  5149. "homepage": "https://symfony.com",
  5150. "keywords": [
  5151. "mime",
  5152. "mime-type"
  5153. ],
  5154. "time": "2021-05-26T17:43:10+00:00"
  5155. },
  5156. {
  5157. "name": "symfony/options-resolver",
  5158. "version": "v5.3.0",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/symfony/options-resolver.git",
  5162. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5",
  5167. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5",
  5168. "shasum": "",
  5169. "mirrors": [
  5170. {
  5171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5172. "preferred": true
  5173. }
  5174. ]
  5175. },
  5176. "require": {
  5177. "php": ">=7.2.5",
  5178. "symfony/deprecation-contracts": "^2.1",
  5179. "symfony/polyfill-php73": "~1.0",
  5180. "symfony/polyfill-php80": "^1.15"
  5181. },
  5182. "type": "library",
  5183. "autoload": {
  5184. "psr-4": {
  5185. "Symfony\\Component\\OptionsResolver\\": ""
  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 an improved replacement for the array_replace PHP function",
  5206. "homepage": "https://symfony.com",
  5207. "keywords": [
  5208. "config",
  5209. "configuration",
  5210. "options"
  5211. ],
  5212. "time": "2021-05-26T17:43:10+00:00"
  5213. },
  5214. {
  5215. "name": "symfony/polyfill-ctype",
  5216. "version": "v1.23.0",
  5217. "source": {
  5218. "type": "git",
  5219. "url": "https://github.com/symfony/polyfill-ctype.git",
  5220. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5221. },
  5222. "dist": {
  5223. "type": "zip",
  5224. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5225. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5226. "shasum": "",
  5227. "mirrors": [
  5228. {
  5229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5230. "preferred": true
  5231. }
  5232. ]
  5233. },
  5234. "require": {
  5235. "php": ">=7.1"
  5236. },
  5237. "suggest": {
  5238. "ext-ctype": "For best performance"
  5239. },
  5240. "type": "library",
  5241. "extra": {
  5242. "branch-alias": {
  5243. "dev-main": "1.23-dev"
  5244. },
  5245. "thanks": {
  5246. "name": "symfony/polyfill",
  5247. "url": "https://github.com/symfony/polyfill"
  5248. }
  5249. },
  5250. "autoload": {
  5251. "psr-4": {
  5252. "Symfony\\Polyfill\\Ctype\\": ""
  5253. },
  5254. "files": [
  5255. "bootstrap.php"
  5256. ]
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "MIT"
  5261. ],
  5262. "authors": [
  5263. {
  5264. "name": "Gert de Pagter",
  5265. "email": "BackEndTea@gmail.com"
  5266. },
  5267. {
  5268. "name": "Symfony Community",
  5269. "homepage": "https://symfony.com/contributors"
  5270. }
  5271. ],
  5272. "description": "Symfony polyfill for ctype functions",
  5273. "homepage": "https://symfony.com",
  5274. "keywords": [
  5275. "compatibility",
  5276. "ctype",
  5277. "polyfill",
  5278. "portable"
  5279. ],
  5280. "support": {
  5281. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5282. },
  5283. "time": "2021-02-19T12:13:01+00:00"
  5284. },
  5285. {
  5286. "name": "symfony/polyfill-iconv",
  5287. "version": "v1.23.0",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/symfony/polyfill-iconv.git",
  5291. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5296. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5297. "shasum": "",
  5298. "mirrors": [
  5299. {
  5300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5301. "preferred": true
  5302. }
  5303. ]
  5304. },
  5305. "require": {
  5306. "php": ">=7.1"
  5307. },
  5308. "suggest": {
  5309. "ext-iconv": "For best performance"
  5310. },
  5311. "type": "library",
  5312. "extra": {
  5313. "branch-alias": {
  5314. "dev-main": "1.23-dev"
  5315. },
  5316. "thanks": {
  5317. "name": "symfony/polyfill",
  5318. "url": "https://github.com/symfony/polyfill"
  5319. }
  5320. },
  5321. "autoload": {
  5322. "psr-4": {
  5323. "Symfony\\Polyfill\\Iconv\\": ""
  5324. },
  5325. "files": [
  5326. "bootstrap.php"
  5327. ]
  5328. },
  5329. "notification-url": "https://packagist.org/downloads/",
  5330. "license": [
  5331. "MIT"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Nicolas Grekas",
  5336. "email": "p@tchwork.com"
  5337. },
  5338. {
  5339. "name": "Symfony Community",
  5340. "homepage": "https://symfony.com/contributors"
  5341. }
  5342. ],
  5343. "description": "Symfony polyfill for the Iconv extension",
  5344. "homepage": "https://symfony.com",
  5345. "keywords": [
  5346. "compatibility",
  5347. "iconv",
  5348. "polyfill",
  5349. "portable",
  5350. "shim"
  5351. ],
  5352. "support": {
  5353. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5354. },
  5355. "time": "2021-05-27T09:27:20+00:00"
  5356. },
  5357. {
  5358. "name": "symfony/polyfill-intl-grapheme",
  5359. "version": "v1.23.0",
  5360. "source": {
  5361. "type": "git",
  5362. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5363. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  5364. },
  5365. "dist": {
  5366. "type": "zip",
  5367. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5368. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5369. "shasum": "",
  5370. "mirrors": [
  5371. {
  5372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5373. "preferred": true
  5374. }
  5375. ]
  5376. },
  5377. "require": {
  5378. "php": ">=7.1"
  5379. },
  5380. "suggest": {
  5381. "ext-intl": "For best performance"
  5382. },
  5383. "type": "library",
  5384. "extra": {
  5385. "branch-alias": {
  5386. "dev-main": "1.23-dev"
  5387. },
  5388. "thanks": {
  5389. "name": "symfony/polyfill",
  5390. "url": "https://github.com/symfony/polyfill"
  5391. }
  5392. },
  5393. "autoload": {
  5394. "psr-4": {
  5395. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5396. },
  5397. "files": [
  5398. "bootstrap.php"
  5399. ]
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "MIT"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "Nicolas Grekas",
  5408. "email": "p@tchwork.com"
  5409. },
  5410. {
  5411. "name": "Symfony Community",
  5412. "homepage": "https://symfony.com/contributors"
  5413. }
  5414. ],
  5415. "description": "Symfony polyfill for intl's grapheme_* functions",
  5416. "homepage": "https://symfony.com",
  5417. "keywords": [
  5418. "compatibility",
  5419. "grapheme",
  5420. "intl",
  5421. "polyfill",
  5422. "portable",
  5423. "shim"
  5424. ],
  5425. "support": {
  5426. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  5427. },
  5428. "time": "2021-05-27T09:17:38+00:00"
  5429. },
  5430. {
  5431. "name": "symfony/polyfill-intl-idn",
  5432. "version": "v1.23.0",
  5433. "source": {
  5434. "type": "git",
  5435. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5436. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  5437. },
  5438. "dist": {
  5439. "type": "zip",
  5440. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  5441. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  5442. "shasum": "",
  5443. "mirrors": [
  5444. {
  5445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5446. "preferred": true
  5447. }
  5448. ]
  5449. },
  5450. "require": {
  5451. "php": ">=7.1",
  5452. "symfony/polyfill-intl-normalizer": "^1.10",
  5453. "symfony/polyfill-php72": "^1.10"
  5454. },
  5455. "suggest": {
  5456. "ext-intl": "For best performance"
  5457. },
  5458. "type": "library",
  5459. "extra": {
  5460. "branch-alias": {
  5461. "dev-main": "1.23-dev"
  5462. },
  5463. "thanks": {
  5464. "name": "symfony/polyfill",
  5465. "url": "https://github.com/symfony/polyfill"
  5466. }
  5467. },
  5468. "autoload": {
  5469. "psr-4": {
  5470. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5471. },
  5472. "files": [
  5473. "bootstrap.php"
  5474. ]
  5475. },
  5476. "notification-url": "https://packagist.org/downloads/",
  5477. "license": [
  5478. "MIT"
  5479. ],
  5480. "authors": [
  5481. {
  5482. "name": "Laurent Bassin",
  5483. "email": "laurent@bassin.info"
  5484. },
  5485. {
  5486. "name": "Trevor Rowbotham",
  5487. "email": "trevor.rowbotham@pm.me"
  5488. },
  5489. {
  5490. "name": "Symfony Community",
  5491. "homepage": "https://symfony.com/contributors"
  5492. }
  5493. ],
  5494. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5495. "homepage": "https://symfony.com",
  5496. "keywords": [
  5497. "compatibility",
  5498. "idn",
  5499. "intl",
  5500. "polyfill",
  5501. "portable",
  5502. "shim"
  5503. ],
  5504. "support": {
  5505. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  5506. },
  5507. "time": "2021-05-27T09:27:20+00:00"
  5508. },
  5509. {
  5510. "name": "symfony/polyfill-intl-normalizer",
  5511. "version": "v1.23.0",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5515. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  5520. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  5521. "shasum": "",
  5522. "mirrors": [
  5523. {
  5524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5525. "preferred": true
  5526. }
  5527. ]
  5528. },
  5529. "require": {
  5530. "php": ">=7.1"
  5531. },
  5532. "suggest": {
  5533. "ext-intl": "For best performance"
  5534. },
  5535. "type": "library",
  5536. "extra": {
  5537. "branch-alias": {
  5538. "dev-main": "1.23-dev"
  5539. },
  5540. "thanks": {
  5541. "name": "symfony/polyfill",
  5542. "url": "https://github.com/symfony/polyfill"
  5543. }
  5544. },
  5545. "autoload": {
  5546. "psr-4": {
  5547. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5548. },
  5549. "files": [
  5550. "bootstrap.php"
  5551. ],
  5552. "classmap": [
  5553. "Resources/stubs"
  5554. ]
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "MIT"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "Nicolas Grekas",
  5563. "email": "p@tchwork.com"
  5564. },
  5565. {
  5566. "name": "Symfony Community",
  5567. "homepage": "https://symfony.com/contributors"
  5568. }
  5569. ],
  5570. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5571. "homepage": "https://symfony.com",
  5572. "keywords": [
  5573. "compatibility",
  5574. "intl",
  5575. "normalizer",
  5576. "polyfill",
  5577. "portable",
  5578. "shim"
  5579. ],
  5580. "support": {
  5581. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  5582. },
  5583. "time": "2021-02-19T12:13:01+00:00"
  5584. },
  5585. {
  5586. "name": "symfony/polyfill-mbstring",
  5587. "version": "v1.23.0",
  5588. "source": {
  5589. "type": "git",
  5590. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5591. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  5592. },
  5593. "dist": {
  5594. "type": "zip",
  5595. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  5596. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  5597. "shasum": "",
  5598. "mirrors": [
  5599. {
  5600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5601. "preferred": true
  5602. }
  5603. ]
  5604. },
  5605. "require": {
  5606. "php": ">=7.1"
  5607. },
  5608. "suggest": {
  5609. "ext-mbstring": "For best performance"
  5610. },
  5611. "type": "library",
  5612. "extra": {
  5613. "branch-alias": {
  5614. "dev-main": "1.23-dev"
  5615. },
  5616. "thanks": {
  5617. "name": "symfony/polyfill",
  5618. "url": "https://github.com/symfony/polyfill"
  5619. }
  5620. },
  5621. "autoload": {
  5622. "psr-4": {
  5623. "Symfony\\Polyfill\\Mbstring\\": ""
  5624. },
  5625. "files": [
  5626. "bootstrap.php"
  5627. ]
  5628. },
  5629. "notification-url": "https://packagist.org/downloads/",
  5630. "license": [
  5631. "MIT"
  5632. ],
  5633. "authors": [
  5634. {
  5635. "name": "Nicolas Grekas",
  5636. "email": "p@tchwork.com"
  5637. },
  5638. {
  5639. "name": "Symfony Community",
  5640. "homepage": "https://symfony.com/contributors"
  5641. }
  5642. ],
  5643. "description": "Symfony polyfill for the Mbstring extension",
  5644. "homepage": "https://symfony.com",
  5645. "keywords": [
  5646. "compatibility",
  5647. "mbstring",
  5648. "polyfill",
  5649. "portable",
  5650. "shim"
  5651. ],
  5652. "support": {
  5653. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  5654. },
  5655. "time": "2021-05-27T09:27:20+00:00"
  5656. },
  5657. {
  5658. "name": "symfony/polyfill-php72",
  5659. "version": "v1.23.0",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/symfony/polyfill-php72.git",
  5663. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  5668. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  5669. "shasum": "",
  5670. "mirrors": [
  5671. {
  5672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5673. "preferred": true
  5674. }
  5675. ]
  5676. },
  5677. "require": {
  5678. "php": ">=7.1"
  5679. },
  5680. "type": "library",
  5681. "extra": {
  5682. "branch-alias": {
  5683. "dev-main": "1.23-dev"
  5684. },
  5685. "thanks": {
  5686. "name": "symfony/polyfill",
  5687. "url": "https://github.com/symfony/polyfill"
  5688. }
  5689. },
  5690. "autoload": {
  5691. "psr-4": {
  5692. "Symfony\\Polyfill\\Php72\\": ""
  5693. },
  5694. "files": [
  5695. "bootstrap.php"
  5696. ]
  5697. },
  5698. "notification-url": "https://packagist.org/downloads/",
  5699. "license": [
  5700. "MIT"
  5701. ],
  5702. "authors": [
  5703. {
  5704. "name": "Nicolas Grekas",
  5705. "email": "p@tchwork.com"
  5706. },
  5707. {
  5708. "name": "Symfony Community",
  5709. "homepage": "https://symfony.com/contributors"
  5710. }
  5711. ],
  5712. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5713. "homepage": "https://symfony.com",
  5714. "keywords": [
  5715. "compatibility",
  5716. "polyfill",
  5717. "portable",
  5718. "shim"
  5719. ],
  5720. "support": {
  5721. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  5722. },
  5723. "time": "2021-05-27T09:17:38+00:00"
  5724. },
  5725. {
  5726. "name": "symfony/polyfill-php73",
  5727. "version": "v1.23.0",
  5728. "source": {
  5729. "type": "git",
  5730. "url": "https://github.com/symfony/polyfill-php73.git",
  5731. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  5732. },
  5733. "dist": {
  5734. "type": "zip",
  5735. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  5736. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  5737. "shasum": "",
  5738. "mirrors": [
  5739. {
  5740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5741. "preferred": true
  5742. }
  5743. ]
  5744. },
  5745. "require": {
  5746. "php": ">=7.1"
  5747. },
  5748. "type": "library",
  5749. "extra": {
  5750. "branch-alias": {
  5751. "dev-main": "1.23-dev"
  5752. },
  5753. "thanks": {
  5754. "name": "symfony/polyfill",
  5755. "url": "https://github.com/symfony/polyfill"
  5756. }
  5757. },
  5758. "autoload": {
  5759. "psr-4": {
  5760. "Symfony\\Polyfill\\Php73\\": ""
  5761. },
  5762. "files": [
  5763. "bootstrap.php"
  5764. ],
  5765. "classmap": [
  5766. "Resources/stubs"
  5767. ]
  5768. },
  5769. "notification-url": "https://packagist.org/downloads/",
  5770. "license": [
  5771. "MIT"
  5772. ],
  5773. "authors": [
  5774. {
  5775. "name": "Nicolas Grekas",
  5776. "email": "p@tchwork.com"
  5777. },
  5778. {
  5779. "name": "Symfony Community",
  5780. "homepage": "https://symfony.com/contributors"
  5781. }
  5782. ],
  5783. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5784. "homepage": "https://symfony.com",
  5785. "keywords": [
  5786. "compatibility",
  5787. "polyfill",
  5788. "portable",
  5789. "shim"
  5790. ],
  5791. "support": {
  5792. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  5793. },
  5794. "time": "2021-02-19T12:13:01+00:00"
  5795. },
  5796. {
  5797. "name": "symfony/polyfill-php80",
  5798. "version": "v1.23.0",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/symfony/polyfill-php80.git",
  5802. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  5807. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  5808. "shasum": "",
  5809. "mirrors": [
  5810. {
  5811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5812. "preferred": true
  5813. }
  5814. ]
  5815. },
  5816. "require": {
  5817. "php": ">=7.1"
  5818. },
  5819. "type": "library",
  5820. "extra": {
  5821. "branch-alias": {
  5822. "dev-main": "1.23-dev"
  5823. },
  5824. "thanks": {
  5825. "name": "symfony/polyfill",
  5826. "url": "https://github.com/symfony/polyfill"
  5827. }
  5828. },
  5829. "autoload": {
  5830. "psr-4": {
  5831. "Symfony\\Polyfill\\Php80\\": ""
  5832. },
  5833. "files": [
  5834. "bootstrap.php"
  5835. ],
  5836. "classmap": [
  5837. "Resources/stubs"
  5838. ]
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Ion Bazan",
  5847. "email": "ion.bazan@gmail.com"
  5848. },
  5849. {
  5850. "name": "Nicolas Grekas",
  5851. "email": "p@tchwork.com"
  5852. },
  5853. {
  5854. "name": "Symfony Community",
  5855. "homepage": "https://symfony.com/contributors"
  5856. }
  5857. ],
  5858. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5859. "homepage": "https://symfony.com",
  5860. "keywords": [
  5861. "compatibility",
  5862. "polyfill",
  5863. "portable",
  5864. "shim"
  5865. ],
  5866. "support": {
  5867. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  5868. },
  5869. "time": "2021-02-19T12:13:01+00:00"
  5870. },
  5871. {
  5872. "name": "symfony/process",
  5873. "version": "v5.3.0",
  5874. "source": {
  5875. "type": "git",
  5876. "url": "https://github.com/symfony/process.git",
  5877. "reference": "53e36cb1c160505cdaf1ef201501669c4c317191"
  5878. },
  5879. "dist": {
  5880. "type": "zip",
  5881. "url": "https://api.github.com/repos/symfony/process/zipball/53e36cb1c160505cdaf1ef201501669c4c317191",
  5882. "reference": "53e36cb1c160505cdaf1ef201501669c4c317191",
  5883. "shasum": "",
  5884. "mirrors": [
  5885. {
  5886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5887. "preferred": true
  5888. }
  5889. ]
  5890. },
  5891. "require": {
  5892. "php": ">=7.2.5",
  5893. "symfony/polyfill-php80": "^1.15"
  5894. },
  5895. "type": "library",
  5896. "autoload": {
  5897. "psr-4": {
  5898. "Symfony\\Component\\Process\\": ""
  5899. },
  5900. "exclude-from-classmap": [
  5901. "/Tests/"
  5902. ]
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "MIT"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Fabien Potencier",
  5911. "email": "fabien@symfony.com"
  5912. },
  5913. {
  5914. "name": "Symfony Community",
  5915. "homepage": "https://symfony.com/contributors"
  5916. }
  5917. ],
  5918. "description": "Executes commands in sub-processes",
  5919. "homepage": "https://symfony.com",
  5920. "time": "2021-05-26T12:52:38+00:00"
  5921. },
  5922. {
  5923. "name": "symfony/property-access",
  5924. "version": "v5.3.0",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/symfony/property-access.git",
  5928. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/symfony/property-access/zipball/8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  5933. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  5934. "shasum": "",
  5935. "mirrors": [
  5936. {
  5937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5938. "preferred": true
  5939. }
  5940. ]
  5941. },
  5942. "require": {
  5943. "php": ">=7.2.5",
  5944. "symfony/deprecation-contracts": "^2.1",
  5945. "symfony/polyfill-php80": "^1.15",
  5946. "symfony/property-info": "^5.2"
  5947. },
  5948. "require-dev": {
  5949. "symfony/cache": "^4.4|^5.0"
  5950. },
  5951. "suggest": {
  5952. "psr/cache-implementation": "To cache access methods."
  5953. },
  5954. "type": "library",
  5955. "autoload": {
  5956. "psr-4": {
  5957. "Symfony\\Component\\PropertyAccess\\": ""
  5958. },
  5959. "exclude-from-classmap": [
  5960. "/Tests/"
  5961. ]
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Fabien Potencier",
  5970. "email": "fabien@symfony.com"
  5971. },
  5972. {
  5973. "name": "Symfony Community",
  5974. "homepage": "https://symfony.com/contributors"
  5975. }
  5976. ],
  5977. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5978. "homepage": "https://symfony.com",
  5979. "keywords": [
  5980. "access",
  5981. "array",
  5982. "extraction",
  5983. "index",
  5984. "injection",
  5985. "object",
  5986. "property",
  5987. "property path",
  5988. "reflection"
  5989. ],
  5990. "time": "2021-05-26T17:43:10+00:00"
  5991. },
  5992. {
  5993. "name": "symfony/property-info",
  5994. "version": "v5.3.1",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/symfony/property-info.git",
  5998. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/symfony/property-info/zipball/6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6003. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6004. "shasum": "",
  6005. "mirrors": [
  6006. {
  6007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6008. "preferred": true
  6009. }
  6010. ]
  6011. },
  6012. "require": {
  6013. "php": ">=7.2.5",
  6014. "symfony/deprecation-contracts": "^2.1",
  6015. "symfony/polyfill-php80": "^1.15",
  6016. "symfony/string": "^5.1"
  6017. },
  6018. "conflict": {
  6019. "phpdocumentor/reflection-docblock": "<3.2.2",
  6020. "phpdocumentor/type-resolver": "<1.4.0",
  6021. "symfony/dependency-injection": "<4.4"
  6022. },
  6023. "require-dev": {
  6024. "doctrine/annotations": "^1.10.4",
  6025. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6026. "symfony/cache": "^4.4|^5.0",
  6027. "symfony/dependency-injection": "^4.4|^5.0",
  6028. "symfony/serializer": "^4.4|^5.0"
  6029. },
  6030. "suggest": {
  6031. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6032. "psr/cache-implementation": "To cache results",
  6033. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6034. "symfony/serializer": "To use Serializer metadata"
  6035. },
  6036. "type": "library",
  6037. "autoload": {
  6038. "psr-4": {
  6039. "Symfony\\Component\\PropertyInfo\\": ""
  6040. },
  6041. "exclude-from-classmap": [
  6042. "/Tests/"
  6043. ]
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "MIT"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Kévin Dunglas",
  6052. "email": "dunglas@gmail.com"
  6053. },
  6054. {
  6055. "name": "Symfony Community",
  6056. "homepage": "https://symfony.com/contributors"
  6057. }
  6058. ],
  6059. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6060. "homepage": "https://symfony.com",
  6061. "keywords": [
  6062. "doctrine",
  6063. "phpdoc",
  6064. "property",
  6065. "symfony",
  6066. "type",
  6067. "validator"
  6068. ],
  6069. "time": "2021-05-31T12:40:48+00:00"
  6070. },
  6071. {
  6072. "name": "symfony/routing",
  6073. "version": "v5.3.0",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/symfony/routing.git",
  6077. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199",
  6082. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199",
  6083. "shasum": "",
  6084. "mirrors": [
  6085. {
  6086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6087. "preferred": true
  6088. }
  6089. ]
  6090. },
  6091. "require": {
  6092. "php": ">=7.2.5",
  6093. "symfony/deprecation-contracts": "^2.1",
  6094. "symfony/polyfill-php80": "^1.15"
  6095. },
  6096. "conflict": {
  6097. "doctrine/annotations": "<1.12",
  6098. "symfony/config": "<5.3",
  6099. "symfony/dependency-injection": "<4.4",
  6100. "symfony/yaml": "<4.4"
  6101. },
  6102. "require-dev": {
  6103. "doctrine/annotations": "^1.12",
  6104. "psr/log": "~1.0",
  6105. "symfony/config": "^5.3",
  6106. "symfony/dependency-injection": "^4.4|^5.0",
  6107. "symfony/expression-language": "^4.4|^5.0",
  6108. "symfony/http-foundation": "^4.4|^5.0",
  6109. "symfony/yaml": "^4.4|^5.0"
  6110. },
  6111. "suggest": {
  6112. "symfony/config": "For using the all-in-one router or any loader",
  6113. "symfony/expression-language": "For using expression matching",
  6114. "symfony/http-foundation": "For using a Symfony Request object",
  6115. "symfony/yaml": "For using the YAML loader"
  6116. },
  6117. "type": "library",
  6118. "autoload": {
  6119. "psr-4": {
  6120. "Symfony\\Component\\Routing\\": ""
  6121. },
  6122. "exclude-from-classmap": [
  6123. "/Tests/"
  6124. ]
  6125. },
  6126. "notification-url": "https://packagist.org/downloads/",
  6127. "license": [
  6128. "MIT"
  6129. ],
  6130. "authors": [
  6131. {
  6132. "name": "Fabien Potencier",
  6133. "email": "fabien@symfony.com"
  6134. },
  6135. {
  6136. "name": "Symfony Community",
  6137. "homepage": "https://symfony.com/contributors"
  6138. }
  6139. ],
  6140. "description": "Maps an HTTP request to a set of configuration variables",
  6141. "homepage": "https://symfony.com",
  6142. "keywords": [
  6143. "router",
  6144. "routing",
  6145. "uri",
  6146. "url"
  6147. ],
  6148. "time": "2021-05-26T17:43:10+00:00"
  6149. },
  6150. {
  6151. "name": "symfony/service-contracts",
  6152. "version": "v2.4.0",
  6153. "source": {
  6154. "type": "git",
  6155. "url": "https://github.com/symfony/service-contracts.git",
  6156. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6157. },
  6158. "dist": {
  6159. "type": "zip",
  6160. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6161. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6162. "shasum": "",
  6163. "mirrors": [
  6164. {
  6165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6166. "preferred": true
  6167. }
  6168. ]
  6169. },
  6170. "require": {
  6171. "php": ">=7.2.5",
  6172. "psr/container": "^1.1"
  6173. },
  6174. "suggest": {
  6175. "symfony/service-implementation": ""
  6176. },
  6177. "type": "library",
  6178. "extra": {
  6179. "branch-alias": {
  6180. "dev-main": "2.4-dev"
  6181. },
  6182. "thanks": {
  6183. "name": "symfony/contracts",
  6184. "url": "https://github.com/symfony/contracts"
  6185. }
  6186. },
  6187. "autoload": {
  6188. "psr-4": {
  6189. "Symfony\\Contracts\\Service\\": ""
  6190. }
  6191. },
  6192. "notification-url": "https://packagist.org/downloads/",
  6193. "license": [
  6194. "MIT"
  6195. ],
  6196. "authors": [
  6197. {
  6198. "name": "Nicolas Grekas",
  6199. "email": "p@tchwork.com"
  6200. },
  6201. {
  6202. "name": "Symfony Community",
  6203. "homepage": "https://symfony.com/contributors"
  6204. }
  6205. ],
  6206. "description": "Generic abstractions related to writing services",
  6207. "homepage": "https://symfony.com",
  6208. "keywords": [
  6209. "abstractions",
  6210. "contracts",
  6211. "decoupling",
  6212. "interfaces",
  6213. "interoperability",
  6214. "standards"
  6215. ],
  6216. "support": {
  6217. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  6218. },
  6219. "time": "2021-04-01T10:43:52+00:00"
  6220. },
  6221. {
  6222. "name": "symfony/string",
  6223. "version": "v5.3.0",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/symfony/string.git",
  6227. "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/symfony/string/zipball/a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
  6232. "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
  6233. "shasum": "",
  6234. "mirrors": [
  6235. {
  6236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6237. "preferred": true
  6238. }
  6239. ]
  6240. },
  6241. "require": {
  6242. "php": ">=7.2.5",
  6243. "symfony/polyfill-ctype": "~1.8",
  6244. "symfony/polyfill-intl-grapheme": "~1.0",
  6245. "symfony/polyfill-intl-normalizer": "~1.0",
  6246. "symfony/polyfill-mbstring": "~1.0",
  6247. "symfony/polyfill-php80": "~1.15"
  6248. },
  6249. "require-dev": {
  6250. "symfony/error-handler": "^4.4|^5.0",
  6251. "symfony/http-client": "^4.4|^5.0",
  6252. "symfony/translation-contracts": "^1.1|^2",
  6253. "symfony/var-exporter": "^4.4|^5.0"
  6254. },
  6255. "type": "library",
  6256. "autoload": {
  6257. "psr-4": {
  6258. "Symfony\\Component\\String\\": ""
  6259. },
  6260. "files": [
  6261. "Resources/functions.php"
  6262. ],
  6263. "exclude-from-classmap": [
  6264. "/Tests/"
  6265. ]
  6266. },
  6267. "notification-url": "https://packagist.org/downloads/",
  6268. "license": [
  6269. "MIT"
  6270. ],
  6271. "authors": [
  6272. {
  6273. "name": "Nicolas Grekas",
  6274. "email": "p@tchwork.com"
  6275. },
  6276. {
  6277. "name": "Symfony Community",
  6278. "homepage": "https://symfony.com/contributors"
  6279. }
  6280. ],
  6281. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6282. "homepage": "https://symfony.com",
  6283. "keywords": [
  6284. "grapheme",
  6285. "i18n",
  6286. "string",
  6287. "unicode",
  6288. "utf-8",
  6289. "utf8"
  6290. ],
  6291. "time": "2021-05-26T17:43:10+00:00"
  6292. },
  6293. {
  6294. "name": "symfony/translation",
  6295. "version": "v5.3.0",
  6296. "source": {
  6297. "type": "git",
  6298. "url": "https://github.com/symfony/translation.git",
  6299. "reference": "251de0d921c42ef0a81494d8f37405421deefdf6"
  6300. },
  6301. "dist": {
  6302. "type": "zip",
  6303. "url": "https://api.github.com/repos/symfony/translation/zipball/251de0d921c42ef0a81494d8f37405421deefdf6",
  6304. "reference": "251de0d921c42ef0a81494d8f37405421deefdf6",
  6305. "shasum": "",
  6306. "mirrors": [
  6307. {
  6308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6309. "preferred": true
  6310. }
  6311. ]
  6312. },
  6313. "require": {
  6314. "php": ">=7.2.5",
  6315. "symfony/deprecation-contracts": "^2.1",
  6316. "symfony/polyfill-mbstring": "~1.0",
  6317. "symfony/polyfill-php80": "^1.15",
  6318. "symfony/translation-contracts": "^2.3"
  6319. },
  6320. "conflict": {
  6321. "symfony/config": "<4.4",
  6322. "symfony/dependency-injection": "<5.0",
  6323. "symfony/http-kernel": "<5.0",
  6324. "symfony/twig-bundle": "<5.0",
  6325. "symfony/yaml": "<4.4"
  6326. },
  6327. "provide": {
  6328. "symfony/translation-implementation": "2.3"
  6329. },
  6330. "require-dev": {
  6331. "psr/log": "~1.0",
  6332. "symfony/config": "^4.4|^5.0",
  6333. "symfony/console": "^4.4|^5.0",
  6334. "symfony/dependency-injection": "^5.0",
  6335. "symfony/finder": "^4.4|^5.0",
  6336. "symfony/http-kernel": "^5.0",
  6337. "symfony/intl": "^4.4|^5.0",
  6338. "symfony/polyfill-intl-icu": "^1.21",
  6339. "symfony/service-contracts": "^1.1.2|^2",
  6340. "symfony/yaml": "^4.4|^5.0"
  6341. },
  6342. "suggest": {
  6343. "psr/log-implementation": "To use logging capability in translator",
  6344. "symfony/config": "",
  6345. "symfony/yaml": ""
  6346. },
  6347. "type": "library",
  6348. "autoload": {
  6349. "files": [
  6350. "Resources/functions.php"
  6351. ],
  6352. "psr-4": {
  6353. "Symfony\\Component\\Translation\\": ""
  6354. },
  6355. "exclude-from-classmap": [
  6356. "/Tests/"
  6357. ]
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Fabien Potencier",
  6366. "email": "fabien@symfony.com"
  6367. },
  6368. {
  6369. "name": "Symfony Community",
  6370. "homepage": "https://symfony.com/contributors"
  6371. }
  6372. ],
  6373. "description": "Provides tools to internationalize your application",
  6374. "homepage": "https://symfony.com",
  6375. "time": "2021-05-29T22:28:28+00:00"
  6376. },
  6377. {
  6378. "name": "symfony/translation-contracts",
  6379. "version": "v2.4.0",
  6380. "source": {
  6381. "type": "git",
  6382. "url": "https://github.com/symfony/translation-contracts.git",
  6383. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  6384. },
  6385. "dist": {
  6386. "type": "zip",
  6387. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  6388. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  6389. "shasum": "",
  6390. "mirrors": [
  6391. {
  6392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6393. "preferred": true
  6394. }
  6395. ]
  6396. },
  6397. "require": {
  6398. "php": ">=7.2.5"
  6399. },
  6400. "suggest": {
  6401. "symfony/translation-implementation": ""
  6402. },
  6403. "type": "library",
  6404. "extra": {
  6405. "branch-alias": {
  6406. "dev-main": "2.4-dev"
  6407. },
  6408. "thanks": {
  6409. "name": "symfony/contracts",
  6410. "url": "https://github.com/symfony/contracts"
  6411. }
  6412. },
  6413. "autoload": {
  6414. "psr-4": {
  6415. "Symfony\\Contracts\\Translation\\": ""
  6416. }
  6417. },
  6418. "notification-url": "https://packagist.org/downloads/",
  6419. "license": [
  6420. "MIT"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "Nicolas Grekas",
  6425. "email": "p@tchwork.com"
  6426. },
  6427. {
  6428. "name": "Symfony Community",
  6429. "homepage": "https://symfony.com/contributors"
  6430. }
  6431. ],
  6432. "description": "Generic abstractions related to translation",
  6433. "homepage": "https://symfony.com",
  6434. "keywords": [
  6435. "abstractions",
  6436. "contracts",
  6437. "decoupling",
  6438. "interfaces",
  6439. "interoperability",
  6440. "standards"
  6441. ],
  6442. "support": {
  6443. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  6444. },
  6445. "time": "2021-03-23T23:28:01+00:00"
  6446. },
  6447. {
  6448. "name": "symfony/var-dumper",
  6449. "version": "v5.3.0",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/symfony/var-dumper.git",
  6453. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3",
  6458. "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3",
  6459. "shasum": "",
  6460. "mirrors": [
  6461. {
  6462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6463. "preferred": true
  6464. }
  6465. ]
  6466. },
  6467. "require": {
  6468. "php": ">=7.2.5",
  6469. "symfony/polyfill-mbstring": "~1.0",
  6470. "symfony/polyfill-php80": "^1.15"
  6471. },
  6472. "conflict": {
  6473. "phpunit/phpunit": "<5.4.3",
  6474. "symfony/console": "<4.4"
  6475. },
  6476. "require-dev": {
  6477. "ext-iconv": "*",
  6478. "symfony/console": "^4.4|^5.0",
  6479. "symfony/process": "^4.4|^5.0",
  6480. "twig/twig": "^2.13|^3.0.4"
  6481. },
  6482. "suggest": {
  6483. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6484. "ext-intl": "To show region name in time zone dump",
  6485. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6486. },
  6487. "bin": [
  6488. "Resources/bin/var-dump-server"
  6489. ],
  6490. "type": "library",
  6491. "autoload": {
  6492. "files": [
  6493. "Resources/functions/dump.php"
  6494. ],
  6495. "psr-4": {
  6496. "Symfony\\Component\\VarDumper\\": ""
  6497. },
  6498. "exclude-from-classmap": [
  6499. "/Tests/"
  6500. ]
  6501. },
  6502. "notification-url": "https://packagist.org/downloads/",
  6503. "license": [
  6504. "MIT"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Nicolas Grekas",
  6509. "email": "p@tchwork.com"
  6510. },
  6511. {
  6512. "name": "Symfony Community",
  6513. "homepage": "https://symfony.com/contributors"
  6514. }
  6515. ],
  6516. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6517. "homepage": "https://symfony.com",
  6518. "keywords": [
  6519. "debug",
  6520. "dump"
  6521. ],
  6522. "time": "2021-05-27T12:28:50+00:00"
  6523. },
  6524. {
  6525. "name": "te7a-houdini/laravel-trix",
  6526. "version": "2.0.4",
  6527. "source": {
  6528. "type": "git",
  6529. "url": "https://github.com/amaelftah/laravel-trix.git",
  6530. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  6531. },
  6532. "dist": {
  6533. "type": "zip",
  6534. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  6535. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  6536. "shasum": "",
  6537. "mirrors": [
  6538. {
  6539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6540. "preferred": true
  6541. }
  6542. ]
  6543. },
  6544. "require": {
  6545. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  6546. "php": "^7.1"
  6547. },
  6548. "require-dev": {
  6549. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  6550. },
  6551. "type": "library",
  6552. "extra": {
  6553. "laravel": {
  6554. "providers": [
  6555. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  6556. ]
  6557. }
  6558. },
  6559. "autoload": {
  6560. "psr-4": {
  6561. "Te7aHoudini\\LaravelTrix\\": "src"
  6562. }
  6563. },
  6564. "notification-url": "https://packagist.org/downloads/",
  6565. "license": [
  6566. "MIT"
  6567. ],
  6568. "authors": [
  6569. {
  6570. "name": "Ahmed Abd El Ftah",
  6571. "email": "ahmedabdelftah95165@gmail.com",
  6572. "role": "Developer"
  6573. }
  6574. ],
  6575. "description": "trix editor for laravel inspired by ActionText for rails",
  6576. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  6577. "keywords": [
  6578. "laravel-trix",
  6579. "te7a-houdini"
  6580. ],
  6581. "time": "2020-11-12T10:48:06+00:00"
  6582. },
  6583. {
  6584. "name": "tightenco/collect",
  6585. "version": "v5.6.33",
  6586. "source": {
  6587. "type": "git",
  6588. "url": "https://github.com/tighten/collect.git",
  6589. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  6590. },
  6591. "dist": {
  6592. "type": "zip",
  6593. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  6594. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  6595. "shasum": "",
  6596. "mirrors": [
  6597. {
  6598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6599. "preferred": true
  6600. }
  6601. ]
  6602. },
  6603. "require": {
  6604. "php": ">=7.1.3",
  6605. "symfony/var-dumper": ">=3.1.10"
  6606. },
  6607. "require-dev": {
  6608. "mockery/mockery": "~1.0",
  6609. "nesbot/carbon": "~1.20",
  6610. "phpunit/phpunit": "~7.0"
  6611. },
  6612. "type": "library",
  6613. "autoload": {
  6614. "files": [
  6615. "src/Collect/Support/helpers.php",
  6616. "src/Collect/Support/alias.php"
  6617. ],
  6618. "psr-4": {
  6619. "Tightenco\\Collect\\": "src/Collect"
  6620. }
  6621. },
  6622. "notification-url": "https://packagist.org/downloads/",
  6623. "license": [
  6624. "MIT"
  6625. ],
  6626. "authors": [
  6627. {
  6628. "name": "Taylor Otwell",
  6629. "email": "taylorotwell@gmail.com"
  6630. }
  6631. ],
  6632. "description": "Collect - Illuminate Collections as a separate package.",
  6633. "keywords": [
  6634. "collection",
  6635. "laravel"
  6636. ],
  6637. "time": "2018-08-09T16:56:26+00:00"
  6638. },
  6639. {
  6640. "name": "tijsverkoyen/css-to-inline-styles",
  6641. "version": "2.2.3",
  6642. "source": {
  6643. "type": "git",
  6644. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6645. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6646. },
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6650. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6651. "shasum": "",
  6652. "mirrors": [
  6653. {
  6654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6655. "preferred": true
  6656. }
  6657. ]
  6658. },
  6659. "require": {
  6660. "ext-dom": "*",
  6661. "ext-libxml": "*",
  6662. "php": "^5.5 || ^7.0 || ^8.0",
  6663. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6664. },
  6665. "require-dev": {
  6666. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6667. },
  6668. "type": "library",
  6669. "extra": {
  6670. "branch-alias": {
  6671. "dev-master": "2.2.x-dev"
  6672. }
  6673. },
  6674. "autoload": {
  6675. "psr-4": {
  6676. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6677. }
  6678. },
  6679. "notification-url": "https://packagist.org/downloads/",
  6680. "license": [
  6681. "BSD-3-Clause"
  6682. ],
  6683. "authors": [
  6684. {
  6685. "name": "Tijs Verkoyen",
  6686. "email": "css_to_inline_styles@verkoyen.eu",
  6687. "role": "Developer"
  6688. }
  6689. ],
  6690. "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.",
  6691. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6692. "time": "2020-07-13T06:12:54+00:00"
  6693. },
  6694. {
  6695. "name": "vlucas/phpdotenv",
  6696. "version": "v4.2.0",
  6697. "source": {
  6698. "type": "git",
  6699. "url": "https://github.com/vlucas/phpdotenv.git",
  6700. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  6701. },
  6702. "dist": {
  6703. "type": "zip",
  6704. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  6705. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  6706. "shasum": "",
  6707. "mirrors": [
  6708. {
  6709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6710. "preferred": true
  6711. }
  6712. ]
  6713. },
  6714. "require": {
  6715. "php": "^5.5.9 || ^7.0 || ^8.0",
  6716. "phpoption/phpoption": "^1.7.3",
  6717. "symfony/polyfill-ctype": "^1.17"
  6718. },
  6719. "require-dev": {
  6720. "bamarni/composer-bin-plugin": "^1.4.1",
  6721. "ext-filter": "*",
  6722. "ext-pcre": "*",
  6723. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  6724. },
  6725. "suggest": {
  6726. "ext-filter": "Required to use the boolean validator.",
  6727. "ext-pcre": "Required to use most of the library."
  6728. },
  6729. "type": "library",
  6730. "extra": {
  6731. "branch-alias": {
  6732. "dev-master": "4.1-dev"
  6733. }
  6734. },
  6735. "autoload": {
  6736. "psr-4": {
  6737. "Dotenv\\": "src/"
  6738. }
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "BSD-3-Clause"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Graham Campbell",
  6747. "email": "graham@alt-three.com",
  6748. "homepage": "https://gjcampbell.co.uk/"
  6749. },
  6750. {
  6751. "name": "Vance Lucas",
  6752. "email": "vance@vancelucas.com",
  6753. "homepage": "https://vancelucas.com/"
  6754. }
  6755. ],
  6756. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6757. "keywords": [
  6758. "dotenv",
  6759. "env",
  6760. "environment"
  6761. ],
  6762. "support": {
  6763. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6764. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  6765. },
  6766. "time": "2021-01-20T15:11:48+00:00"
  6767. },
  6768. {
  6769. "name": "voku/portable-ascii",
  6770. "version": "1.5.6",
  6771. "source": {
  6772. "type": "git",
  6773. "url": "https://github.com/voku/portable-ascii.git",
  6774. "reference": "80953678b19901e5165c56752d087fc11526017c"
  6775. },
  6776. "dist": {
  6777. "type": "zip",
  6778. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  6779. "reference": "80953678b19901e5165c56752d087fc11526017c",
  6780. "shasum": "",
  6781. "mirrors": [
  6782. {
  6783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6784. "preferred": true
  6785. }
  6786. ]
  6787. },
  6788. "require": {
  6789. "php": ">=7.0.0"
  6790. },
  6791. "require-dev": {
  6792. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6793. },
  6794. "suggest": {
  6795. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6796. },
  6797. "type": "library",
  6798. "autoload": {
  6799. "psr-4": {
  6800. "voku\\": "src/voku/"
  6801. }
  6802. },
  6803. "notification-url": "https://packagist.org/downloads/",
  6804. "license": [
  6805. "MIT"
  6806. ],
  6807. "authors": [
  6808. {
  6809. "name": "Lars Moelleken",
  6810. "homepage": "http://www.moelleken.org/"
  6811. }
  6812. ],
  6813. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6814. "homepage": "https://github.com/voku/portable-ascii",
  6815. "keywords": [
  6816. "ascii",
  6817. "clean",
  6818. "php"
  6819. ],
  6820. "time": "2020-11-12T00:07:28+00:00"
  6821. },
  6822. {
  6823. "name": "yajra/laravel-oci8",
  6824. "version": "v7.0.0",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/yajra/laravel-oci8.git",
  6828. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  6833. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  6834. "shasum": "",
  6835. "mirrors": [
  6836. {
  6837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6838. "preferred": true
  6839. }
  6840. ]
  6841. },
  6842. "require": {
  6843. "ext-oci8": ">=2.0.0",
  6844. "ext-pdo": "*",
  6845. "illuminate/database": "^7",
  6846. "illuminate/support": "^7",
  6847. "php": "^7.2.5",
  6848. "yajra/laravel-pdo-via-oci8": "^2"
  6849. },
  6850. "require-dev": {
  6851. "mockery/mockery": "^1.3.1",
  6852. "phpunit/phpunit": "^8.4|^9.0",
  6853. "scrutinizer/ocular": "~1.1"
  6854. },
  6855. "type": "library",
  6856. "extra": {
  6857. "branch-alias": {
  6858. "dev-master": "7.x-dev"
  6859. },
  6860. "laravel": {
  6861. "providers": [
  6862. "Yajra\\Oci8\\Oci8ServiceProvider"
  6863. ]
  6864. }
  6865. },
  6866. "autoload": {
  6867. "files": [
  6868. "src/helper.php"
  6869. ],
  6870. "psr-4": {
  6871. "Yajra\\": "src/"
  6872. }
  6873. },
  6874. "notification-url": "https://packagist.org/downloads/",
  6875. "license": [
  6876. "MIT"
  6877. ],
  6878. "authors": [
  6879. {
  6880. "name": "Arjay Angeles",
  6881. "email": "aqangeles@gmail.com"
  6882. }
  6883. ],
  6884. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  6885. "keywords": [
  6886. "laravel",
  6887. "oci8",
  6888. "oracle",
  6889. "pdo_oci"
  6890. ],
  6891. "time": "2020-03-04T02:15:19+00:00"
  6892. },
  6893. {
  6894. "name": "yajra/laravel-pdo-via-oci8",
  6895. "version": "v2.2.0",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://github.com/yajra/pdo-via-oci8.git",
  6899. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  6904. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  6905. "shasum": "",
  6906. "mirrors": [
  6907. {
  6908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6909. "preferred": true
  6910. }
  6911. ]
  6912. },
  6913. "require-dev": {
  6914. "phpunit/phpunit": "^6.4"
  6915. },
  6916. "type": "library",
  6917. "extra": {
  6918. "branch-alias": {
  6919. "dev-master": "2.0-dev"
  6920. }
  6921. },
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Yajra\\": "src/"
  6925. }
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Arjay Angeles",
  6934. "email": "aqangeles@gmail.com"
  6935. }
  6936. ],
  6937. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  6938. "time": "2020-12-11T12:29:18+00:00"
  6939. }
  6940. ],
  6941. "packages-dev": [
  6942. {
  6943. "name": "barryvdh/laravel-debugbar",
  6944. "version": "v3.6.1",
  6945. "source": {
  6946. "type": "git",
  6947. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  6948. "reference": "f6f0f895a33cac801286a74355d146bb5384a5da"
  6949. },
  6950. "dist": {
  6951. "type": "zip",
  6952. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/f6f0f895a33cac801286a74355d146bb5384a5da",
  6953. "reference": "f6f0f895a33cac801286a74355d146bb5384a5da",
  6954. "shasum": "",
  6955. "mirrors": [
  6956. {
  6957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6958. "preferred": true
  6959. }
  6960. ]
  6961. },
  6962. "require": {
  6963. "illuminate/routing": "^6|^7|^8",
  6964. "illuminate/session": "^6|^7|^8",
  6965. "illuminate/support": "^6|^7|^8",
  6966. "maximebf/debugbar": "^1.16.3",
  6967. "php": ">=7.2",
  6968. "symfony/debug": "^4.3|^5",
  6969. "symfony/finder": "^4.3|^5"
  6970. },
  6971. "require-dev": {
  6972. "mockery/mockery": "^1.3.3",
  6973. "orchestra/testbench-dusk": "^4|^5|^6",
  6974. "phpunit/phpunit": "^8.5|^9.0",
  6975. "squizlabs/php_codesniffer": "^3.5"
  6976. },
  6977. "type": "library",
  6978. "extra": {
  6979. "branch-alias": {
  6980. "dev-master": "3.5-dev"
  6981. },
  6982. "laravel": {
  6983. "providers": [
  6984. "Barryvdh\\Debugbar\\ServiceProvider"
  6985. ],
  6986. "aliases": {
  6987. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6988. }
  6989. }
  6990. },
  6991. "autoload": {
  6992. "psr-4": {
  6993. "Barryvdh\\Debugbar\\": "src/"
  6994. },
  6995. "files": [
  6996. "src/helpers.php"
  6997. ]
  6998. },
  6999. "notification-url": "https://packagist.org/downloads/",
  7000. "license": [
  7001. "MIT"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "Barry vd. Heuvel",
  7006. "email": "barryvdh@gmail.com"
  7007. }
  7008. ],
  7009. "description": "PHP Debugbar integration for Laravel",
  7010. "keywords": [
  7011. "debug",
  7012. "debugbar",
  7013. "laravel",
  7014. "profiler",
  7015. "webprofiler"
  7016. ],
  7017. "time": "2021-06-02T06:42:22+00:00"
  7018. },
  7019. {
  7020. "name": "beyondcode/laravel-dump-server",
  7021. "version": "1.7.0",
  7022. "source": {
  7023. "type": "git",
  7024. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  7025. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  7026. },
  7027. "dist": {
  7028. "type": "zip",
  7029. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  7030. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  7031. "shasum": "",
  7032. "mirrors": [
  7033. {
  7034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7035. "preferred": true
  7036. }
  7037. ]
  7038. },
  7039. "require": {
  7040. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7041. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7042. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7043. "php": ">=7.2.5",
  7044. "symfony/var-dumper": "^5.0"
  7045. },
  7046. "require-dev": {
  7047. "larapack/dd": "^1.0",
  7048. "phpunit/phpunit": "^7.0|^9.3"
  7049. },
  7050. "type": "library",
  7051. "extra": {
  7052. "laravel": {
  7053. "providers": [
  7054. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  7055. ]
  7056. }
  7057. },
  7058. "autoload": {
  7059. "psr-4": {
  7060. "BeyondCode\\DumpServer\\": "src"
  7061. },
  7062. "files": [
  7063. "helpers.php"
  7064. ]
  7065. },
  7066. "notification-url": "https://packagist.org/downloads/",
  7067. "license": [
  7068. "MIT"
  7069. ],
  7070. "authors": [
  7071. {
  7072. "name": "Marcel Pociot",
  7073. "email": "marcel@beyondco.de",
  7074. "homepage": "https://beyondco.de",
  7075. "role": "Developer"
  7076. }
  7077. ],
  7078. "description": "Symfony Var-Dump Server for Laravel",
  7079. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  7080. "keywords": [
  7081. "beyondcode",
  7082. "laravel-dump-server"
  7083. ],
  7084. "time": "2020-12-15T10:57:43+00:00"
  7085. },
  7086. {
  7087. "name": "doctrine/instantiator",
  7088. "version": "1.4.0",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/doctrine/instantiator.git",
  7092. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7097. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7098. "shasum": "",
  7099. "mirrors": [
  7100. {
  7101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7102. "preferred": true
  7103. }
  7104. ]
  7105. },
  7106. "require": {
  7107. "php": "^7.1 || ^8.0"
  7108. },
  7109. "require-dev": {
  7110. "doctrine/coding-standard": "^8.0",
  7111. "ext-pdo": "*",
  7112. "ext-phar": "*",
  7113. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7114. "phpstan/phpstan": "^0.12",
  7115. "phpstan/phpstan-phpunit": "^0.12",
  7116. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7117. },
  7118. "type": "library",
  7119. "autoload": {
  7120. "psr-4": {
  7121. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7122. }
  7123. },
  7124. "notification-url": "https://packagist.org/downloads/",
  7125. "license": [
  7126. "MIT"
  7127. ],
  7128. "authors": [
  7129. {
  7130. "name": "Marco Pivetta",
  7131. "email": "ocramius@gmail.com",
  7132. "homepage": "https://ocramius.github.io/"
  7133. }
  7134. ],
  7135. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7136. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7137. "keywords": [
  7138. "constructor",
  7139. "instantiate"
  7140. ],
  7141. "time": "2020-11-10T18:47:58+00:00"
  7142. },
  7143. {
  7144. "name": "fzaninotto/faker",
  7145. "version": "v1.9.2",
  7146. "source": {
  7147. "type": "git",
  7148. "url": "https://github.com/fzaninotto/Faker.git",
  7149. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  7150. },
  7151. "dist": {
  7152. "type": "zip",
  7153. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  7154. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  7155. "shasum": "",
  7156. "mirrors": [
  7157. {
  7158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7159. "preferred": true
  7160. }
  7161. ]
  7162. },
  7163. "require": {
  7164. "php": "^5.3.3 || ^7.0"
  7165. },
  7166. "require-dev": {
  7167. "ext-intl": "*",
  7168. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7169. "squizlabs/php_codesniffer": "^2.9.2"
  7170. },
  7171. "type": "library",
  7172. "extra": {
  7173. "branch-alias": {
  7174. "dev-master": "1.9-dev"
  7175. }
  7176. },
  7177. "autoload": {
  7178. "psr-4": {
  7179. "Faker\\": "src/Faker/"
  7180. }
  7181. },
  7182. "notification-url": "https://packagist.org/downloads/",
  7183. "license": [
  7184. "MIT"
  7185. ],
  7186. "authors": [
  7187. {
  7188. "name": "François Zaninotto"
  7189. }
  7190. ],
  7191. "description": "Faker is a PHP library that generates fake data for you.",
  7192. "keywords": [
  7193. "data",
  7194. "faker",
  7195. "fixtures"
  7196. ],
  7197. "abandoned": true,
  7198. "time": "2020-12-11T09:56:16+00:00"
  7199. },
  7200. {
  7201. "name": "hamcrest/hamcrest-php",
  7202. "version": "v2.0.1",
  7203. "source": {
  7204. "type": "git",
  7205. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7206. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7207. },
  7208. "dist": {
  7209. "type": "zip",
  7210. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7211. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7212. "shasum": "",
  7213. "mirrors": [
  7214. {
  7215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7216. "preferred": true
  7217. }
  7218. ]
  7219. },
  7220. "require": {
  7221. "php": "^5.3|^7.0|^8.0"
  7222. },
  7223. "replace": {
  7224. "cordoval/hamcrest-php": "*",
  7225. "davedevelopment/hamcrest-php": "*",
  7226. "kodova/hamcrest-php": "*"
  7227. },
  7228. "require-dev": {
  7229. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7230. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7231. },
  7232. "type": "library",
  7233. "extra": {
  7234. "branch-alias": {
  7235. "dev-master": "2.1-dev"
  7236. }
  7237. },
  7238. "autoload": {
  7239. "classmap": [
  7240. "hamcrest"
  7241. ]
  7242. },
  7243. "notification-url": "https://packagist.org/downloads/",
  7244. "license": [
  7245. "BSD-3-Clause"
  7246. ],
  7247. "description": "This is the PHP port of Hamcrest Matchers",
  7248. "keywords": [
  7249. "test"
  7250. ],
  7251. "time": "2020-07-09T08:09:16+00:00"
  7252. },
  7253. {
  7254. "name": "maximebf/debugbar",
  7255. "version": "v1.16.5",
  7256. "source": {
  7257. "type": "git",
  7258. "url": "https://github.com/maximebf/php-debugbar.git",
  7259. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  7260. },
  7261. "dist": {
  7262. "type": "zip",
  7263. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  7264. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  7265. "shasum": "",
  7266. "mirrors": [
  7267. {
  7268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7269. "preferred": true
  7270. }
  7271. ]
  7272. },
  7273. "require": {
  7274. "php": "^7.1|^8",
  7275. "psr/log": "^1.0",
  7276. "symfony/var-dumper": "^2.6|^3|^4|^5"
  7277. },
  7278. "require-dev": {
  7279. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  7280. },
  7281. "suggest": {
  7282. "kriswallsmith/assetic": "The best way to manage assets",
  7283. "monolog/monolog": "Log using Monolog",
  7284. "predis/predis": "Redis storage"
  7285. },
  7286. "type": "library",
  7287. "extra": {
  7288. "branch-alias": {
  7289. "dev-master": "1.16-dev"
  7290. }
  7291. },
  7292. "autoload": {
  7293. "psr-4": {
  7294. "DebugBar\\": "src/DebugBar/"
  7295. }
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "MIT"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Maxime Bouroumeau-Fuseau",
  7304. "email": "maxime.bouroumeau@gmail.com",
  7305. "homepage": "http://maximebf.com"
  7306. },
  7307. {
  7308. "name": "Barry vd. Heuvel",
  7309. "email": "barryvdh@gmail.com"
  7310. }
  7311. ],
  7312. "description": "Debug bar in the browser for php application",
  7313. "homepage": "https://github.com/maximebf/php-debugbar",
  7314. "keywords": [
  7315. "debug",
  7316. "debugbar"
  7317. ],
  7318. "support": {
  7319. "issues": "https://github.com/maximebf/php-debugbar/issues",
  7320. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  7321. },
  7322. "time": "2020-12-07T11:07:24+00:00"
  7323. },
  7324. {
  7325. "name": "mockery/mockery",
  7326. "version": "1.4.3",
  7327. "source": {
  7328. "type": "git",
  7329. "url": "https://github.com/mockery/mockery.git",
  7330. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  7331. },
  7332. "dist": {
  7333. "type": "zip",
  7334. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  7335. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  7336. "shasum": "",
  7337. "mirrors": [
  7338. {
  7339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7340. "preferred": true
  7341. }
  7342. ]
  7343. },
  7344. "require": {
  7345. "hamcrest/hamcrest-php": "^2.0.1",
  7346. "lib-pcre": ">=7.0",
  7347. "php": "^7.3 || ^8.0"
  7348. },
  7349. "conflict": {
  7350. "phpunit/phpunit": "<8.0"
  7351. },
  7352. "require-dev": {
  7353. "phpunit/phpunit": "^8.5 || ^9.3"
  7354. },
  7355. "type": "library",
  7356. "extra": {
  7357. "branch-alias": {
  7358. "dev-master": "1.4.x-dev"
  7359. }
  7360. },
  7361. "autoload": {
  7362. "psr-0": {
  7363. "Mockery": "library/"
  7364. }
  7365. },
  7366. "notification-url": "https://packagist.org/downloads/",
  7367. "license": [
  7368. "BSD-3-Clause"
  7369. ],
  7370. "authors": [
  7371. {
  7372. "name": "Pádraic Brady",
  7373. "email": "padraic.brady@gmail.com",
  7374. "homepage": "http://blog.astrumfutura.com"
  7375. },
  7376. {
  7377. "name": "Dave Marshall",
  7378. "email": "dave.marshall@atstsolutions.co.uk",
  7379. "homepage": "http://davedevelopment.co.uk"
  7380. }
  7381. ],
  7382. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7383. "homepage": "https://github.com/mockery/mockery",
  7384. "keywords": [
  7385. "BDD",
  7386. "TDD",
  7387. "library",
  7388. "mock",
  7389. "mock objects",
  7390. "mockery",
  7391. "stub",
  7392. "test",
  7393. "test double",
  7394. "testing"
  7395. ],
  7396. "support": {
  7397. "issues": "https://github.com/mockery/mockery/issues",
  7398. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  7399. },
  7400. "time": "2021-02-24T09:51:49+00:00"
  7401. },
  7402. {
  7403. "name": "myclabs/deep-copy",
  7404. "version": "1.10.2",
  7405. "source": {
  7406. "type": "git",
  7407. "url": "https://github.com/myclabs/DeepCopy.git",
  7408. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  7409. },
  7410. "dist": {
  7411. "type": "zip",
  7412. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  7413. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  7414. "shasum": "",
  7415. "mirrors": [
  7416. {
  7417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7418. "preferred": true
  7419. }
  7420. ]
  7421. },
  7422. "require": {
  7423. "php": "^7.1 || ^8.0"
  7424. },
  7425. "replace": {
  7426. "myclabs/deep-copy": "self.version"
  7427. },
  7428. "require-dev": {
  7429. "doctrine/collections": "^1.0",
  7430. "doctrine/common": "^2.6",
  7431. "phpunit/phpunit": "^7.1"
  7432. },
  7433. "type": "library",
  7434. "autoload": {
  7435. "psr-4": {
  7436. "DeepCopy\\": "src/DeepCopy/"
  7437. },
  7438. "files": [
  7439. "src/DeepCopy/deep_copy.php"
  7440. ]
  7441. },
  7442. "notification-url": "https://packagist.org/downloads/",
  7443. "license": [
  7444. "MIT"
  7445. ],
  7446. "description": "Create deep copies (clones) of your objects",
  7447. "keywords": [
  7448. "clone",
  7449. "copy",
  7450. "duplicate",
  7451. "object",
  7452. "object graph"
  7453. ],
  7454. "time": "2020-11-13T09:40:50+00:00"
  7455. },
  7456. {
  7457. "name": "nunomaduro/collision",
  7458. "version": "v4.3.0",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/nunomaduro/collision.git",
  7462. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  7467. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  7468. "shasum": "",
  7469. "mirrors": [
  7470. {
  7471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7472. "preferred": true
  7473. }
  7474. ]
  7475. },
  7476. "require": {
  7477. "facade/ignition-contracts": "^1.0",
  7478. "filp/whoops": "^2.4",
  7479. "php": "^7.2.5 || ^8.0",
  7480. "symfony/console": "^5.0"
  7481. },
  7482. "require-dev": {
  7483. "facade/ignition": "^2.0",
  7484. "fideloper/proxy": "^4.2",
  7485. "friendsofphp/php-cs-fixer": "^2.16",
  7486. "fruitcake/laravel-cors": "^1.0",
  7487. "laravel/framework": "^7.0",
  7488. "laravel/tinker": "^2.0",
  7489. "nunomaduro/larastan": "^0.6",
  7490. "orchestra/testbench": "^5.0",
  7491. "phpstan/phpstan": "^0.12.3",
  7492. "phpunit/phpunit": "^8.5.1 || ^9.0"
  7493. },
  7494. "type": "library",
  7495. "extra": {
  7496. "laravel": {
  7497. "providers": [
  7498. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7499. ]
  7500. }
  7501. },
  7502. "autoload": {
  7503. "psr-4": {
  7504. "NunoMaduro\\Collision\\": "src/"
  7505. }
  7506. },
  7507. "notification-url": "https://packagist.org/downloads/",
  7508. "license": [
  7509. "MIT"
  7510. ],
  7511. "authors": [
  7512. {
  7513. "name": "Nuno Maduro",
  7514. "email": "enunomaduro@gmail.com"
  7515. }
  7516. ],
  7517. "description": "Cli error handling for console/command-line PHP applications.",
  7518. "keywords": [
  7519. "artisan",
  7520. "cli",
  7521. "command-line",
  7522. "console",
  7523. "error",
  7524. "handling",
  7525. "laravel",
  7526. "laravel-zero",
  7527. "php",
  7528. "symfony"
  7529. ],
  7530. "time": "2020-10-29T15:12:23+00:00"
  7531. },
  7532. {
  7533. "name": "phar-io/manifest",
  7534. "version": "2.0.1",
  7535. "source": {
  7536. "type": "git",
  7537. "url": "https://github.com/phar-io/manifest.git",
  7538. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  7539. },
  7540. "dist": {
  7541. "type": "zip",
  7542. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  7543. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  7544. "shasum": "",
  7545. "mirrors": [
  7546. {
  7547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7548. "preferred": true
  7549. }
  7550. ]
  7551. },
  7552. "require": {
  7553. "ext-dom": "*",
  7554. "ext-phar": "*",
  7555. "ext-xmlwriter": "*",
  7556. "phar-io/version": "^3.0.1",
  7557. "php": "^7.2 || ^8.0"
  7558. },
  7559. "type": "library",
  7560. "extra": {
  7561. "branch-alias": {
  7562. "dev-master": "2.0.x-dev"
  7563. }
  7564. },
  7565. "autoload": {
  7566. "classmap": [
  7567. "src/"
  7568. ]
  7569. },
  7570. "notification-url": "https://packagist.org/downloads/",
  7571. "license": [
  7572. "BSD-3-Clause"
  7573. ],
  7574. "authors": [
  7575. {
  7576. "name": "Arne Blankerts",
  7577. "email": "arne@blankerts.de",
  7578. "role": "Developer"
  7579. },
  7580. {
  7581. "name": "Sebastian Heuer",
  7582. "email": "sebastian@phpeople.de",
  7583. "role": "Developer"
  7584. },
  7585. {
  7586. "name": "Sebastian Bergmann",
  7587. "email": "sebastian@phpunit.de",
  7588. "role": "Developer"
  7589. }
  7590. ],
  7591. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7592. "time": "2020-06-27T14:33:11+00:00"
  7593. },
  7594. {
  7595. "name": "phar-io/version",
  7596. "version": "3.1.0",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/phar-io/version.git",
  7600. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  7605. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  7606. "shasum": "",
  7607. "mirrors": [
  7608. {
  7609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7610. "preferred": true
  7611. }
  7612. ]
  7613. },
  7614. "require": {
  7615. "php": "^7.2 || ^8.0"
  7616. },
  7617. "type": "library",
  7618. "autoload": {
  7619. "classmap": [
  7620. "src/"
  7621. ]
  7622. },
  7623. "notification-url": "https://packagist.org/downloads/",
  7624. "license": [
  7625. "BSD-3-Clause"
  7626. ],
  7627. "authors": [
  7628. {
  7629. "name": "Arne Blankerts",
  7630. "email": "arne@blankerts.de",
  7631. "role": "Developer"
  7632. },
  7633. {
  7634. "name": "Sebastian Heuer",
  7635. "email": "sebastian@phpeople.de",
  7636. "role": "Developer"
  7637. },
  7638. {
  7639. "name": "Sebastian Bergmann",
  7640. "email": "sebastian@phpunit.de",
  7641. "role": "Developer"
  7642. }
  7643. ],
  7644. "description": "Library for handling version information and constraints",
  7645. "support": {
  7646. "issues": "https://github.com/phar-io/version/issues",
  7647. "source": "https://github.com/phar-io/version/tree/3.1.0"
  7648. },
  7649. "time": "2021-02-23T14:00:09+00:00"
  7650. },
  7651. {
  7652. "name": "phpdocumentor/reflection-common",
  7653. "version": "2.2.0",
  7654. "source": {
  7655. "type": "git",
  7656. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7657. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  7658. },
  7659. "dist": {
  7660. "type": "zip",
  7661. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  7662. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  7663. "shasum": "",
  7664. "mirrors": [
  7665. {
  7666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7667. "preferred": true
  7668. }
  7669. ]
  7670. },
  7671. "require": {
  7672. "php": "^7.2 || ^8.0"
  7673. },
  7674. "type": "library",
  7675. "extra": {
  7676. "branch-alias": {
  7677. "dev-2.x": "2.x-dev"
  7678. }
  7679. },
  7680. "autoload": {
  7681. "psr-4": {
  7682. "phpDocumentor\\Reflection\\": "src/"
  7683. }
  7684. },
  7685. "notification-url": "https://packagist.org/downloads/",
  7686. "license": [
  7687. "MIT"
  7688. ],
  7689. "authors": [
  7690. {
  7691. "name": "Jaap van Otterdijk",
  7692. "email": "opensource@ijaap.nl"
  7693. }
  7694. ],
  7695. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7696. "homepage": "http://www.phpdoc.org",
  7697. "keywords": [
  7698. "FQSEN",
  7699. "phpDocumentor",
  7700. "phpdoc",
  7701. "reflection",
  7702. "static analysis"
  7703. ],
  7704. "time": "2020-06-27T09:03:43+00:00"
  7705. },
  7706. {
  7707. "name": "phpdocumentor/reflection-docblock",
  7708. "version": "5.2.2",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7712. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  7717. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  7718. "shasum": "",
  7719. "mirrors": [
  7720. {
  7721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7722. "preferred": true
  7723. }
  7724. ]
  7725. },
  7726. "require": {
  7727. "ext-filter": "*",
  7728. "php": "^7.2 || ^8.0",
  7729. "phpdocumentor/reflection-common": "^2.2",
  7730. "phpdocumentor/type-resolver": "^1.3",
  7731. "webmozart/assert": "^1.9.1"
  7732. },
  7733. "require-dev": {
  7734. "mockery/mockery": "~1.3.2"
  7735. },
  7736. "type": "library",
  7737. "extra": {
  7738. "branch-alias": {
  7739. "dev-master": "5.x-dev"
  7740. }
  7741. },
  7742. "autoload": {
  7743. "psr-4": {
  7744. "phpDocumentor\\Reflection\\": "src"
  7745. }
  7746. },
  7747. "notification-url": "https://packagist.org/downloads/",
  7748. "license": [
  7749. "MIT"
  7750. ],
  7751. "authors": [
  7752. {
  7753. "name": "Mike van Riel",
  7754. "email": "me@mikevanriel.com"
  7755. },
  7756. {
  7757. "name": "Jaap van Otterdijk",
  7758. "email": "account@ijaap.nl"
  7759. }
  7760. ],
  7761. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7762. "time": "2020-09-03T19:13:55+00:00"
  7763. },
  7764. {
  7765. "name": "phpdocumentor/type-resolver",
  7766. "version": "1.4.0",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7770. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  7775. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  7776. "shasum": "",
  7777. "mirrors": [
  7778. {
  7779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7780. "preferred": true
  7781. }
  7782. ]
  7783. },
  7784. "require": {
  7785. "php": "^7.2 || ^8.0",
  7786. "phpdocumentor/reflection-common": "^2.0"
  7787. },
  7788. "require-dev": {
  7789. "ext-tokenizer": "*"
  7790. },
  7791. "type": "library",
  7792. "extra": {
  7793. "branch-alias": {
  7794. "dev-1.x": "1.x-dev"
  7795. }
  7796. },
  7797. "autoload": {
  7798. "psr-4": {
  7799. "phpDocumentor\\Reflection\\": "src"
  7800. }
  7801. },
  7802. "notification-url": "https://packagist.org/downloads/",
  7803. "license": [
  7804. "MIT"
  7805. ],
  7806. "authors": [
  7807. {
  7808. "name": "Mike van Riel",
  7809. "email": "me@mikevanriel.com"
  7810. }
  7811. ],
  7812. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  7813. "time": "2020-09-17T18:55:26+00:00"
  7814. },
  7815. {
  7816. "name": "phpspec/prophecy",
  7817. "version": "1.13.0",
  7818. "source": {
  7819. "type": "git",
  7820. "url": "https://github.com/phpspec/prophecy.git",
  7821. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  7822. },
  7823. "dist": {
  7824. "type": "zip",
  7825. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  7826. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  7827. "shasum": "",
  7828. "mirrors": [
  7829. {
  7830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7831. "preferred": true
  7832. }
  7833. ]
  7834. },
  7835. "require": {
  7836. "doctrine/instantiator": "^1.2",
  7837. "php": "^7.2 || ~8.0, <8.1",
  7838. "phpdocumentor/reflection-docblock": "^5.2",
  7839. "sebastian/comparator": "^3.0 || ^4.0",
  7840. "sebastian/recursion-context": "^3.0 || ^4.0"
  7841. },
  7842. "require-dev": {
  7843. "phpspec/phpspec": "^6.0",
  7844. "phpunit/phpunit": "^8.0 || ^9.0"
  7845. },
  7846. "type": "library",
  7847. "extra": {
  7848. "branch-alias": {
  7849. "dev-master": "1.11.x-dev"
  7850. }
  7851. },
  7852. "autoload": {
  7853. "psr-4": {
  7854. "Prophecy\\": "src/Prophecy"
  7855. }
  7856. },
  7857. "notification-url": "https://packagist.org/downloads/",
  7858. "license": [
  7859. "MIT"
  7860. ],
  7861. "authors": [
  7862. {
  7863. "name": "Konstantin Kudryashov",
  7864. "email": "ever.zet@gmail.com",
  7865. "homepage": "http://everzet.com"
  7866. },
  7867. {
  7868. "name": "Marcello Duarte",
  7869. "email": "marcello.duarte@gmail.com"
  7870. }
  7871. ],
  7872. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7873. "homepage": "https://github.com/phpspec/prophecy",
  7874. "keywords": [
  7875. "Double",
  7876. "Dummy",
  7877. "fake",
  7878. "mock",
  7879. "spy",
  7880. "stub"
  7881. ],
  7882. "support": {
  7883. "issues": "https://github.com/phpspec/prophecy/issues",
  7884. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  7885. },
  7886. "time": "2021-03-17T13:42:18+00:00"
  7887. },
  7888. {
  7889. "name": "phpunit/php-code-coverage",
  7890. "version": "7.0.14",
  7891. "source": {
  7892. "type": "git",
  7893. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7894. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  7895. },
  7896. "dist": {
  7897. "type": "zip",
  7898. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  7899. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  7900. "shasum": "",
  7901. "mirrors": [
  7902. {
  7903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7904. "preferred": true
  7905. }
  7906. ]
  7907. },
  7908. "require": {
  7909. "ext-dom": "*",
  7910. "ext-xmlwriter": "*",
  7911. "php": ">=7.2",
  7912. "phpunit/php-file-iterator": "^2.0.2",
  7913. "phpunit/php-text-template": "^1.2.1",
  7914. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  7915. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7916. "sebastian/environment": "^4.2.2",
  7917. "sebastian/version": "^2.0.1",
  7918. "theseer/tokenizer": "^1.1.3"
  7919. },
  7920. "require-dev": {
  7921. "phpunit/phpunit": "^8.2.2"
  7922. },
  7923. "suggest": {
  7924. "ext-xdebug": "^2.7.2"
  7925. },
  7926. "type": "library",
  7927. "extra": {
  7928. "branch-alias": {
  7929. "dev-master": "7.0-dev"
  7930. }
  7931. },
  7932. "autoload": {
  7933. "classmap": [
  7934. "src/"
  7935. ]
  7936. },
  7937. "notification-url": "https://packagist.org/downloads/",
  7938. "license": [
  7939. "BSD-3-Clause"
  7940. ],
  7941. "authors": [
  7942. {
  7943. "name": "Sebastian Bergmann",
  7944. "email": "sebastian@phpunit.de",
  7945. "role": "lead"
  7946. }
  7947. ],
  7948. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7949. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7950. "keywords": [
  7951. "coverage",
  7952. "testing",
  7953. "xunit"
  7954. ],
  7955. "time": "2020-12-02T13:39:03+00:00"
  7956. },
  7957. {
  7958. "name": "phpunit/php-file-iterator",
  7959. "version": "2.0.3",
  7960. "source": {
  7961. "type": "git",
  7962. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7963. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  7964. },
  7965. "dist": {
  7966. "type": "zip",
  7967. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  7968. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  7969. "shasum": "",
  7970. "mirrors": [
  7971. {
  7972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7973. "preferred": true
  7974. }
  7975. ]
  7976. },
  7977. "require": {
  7978. "php": ">=7.1"
  7979. },
  7980. "require-dev": {
  7981. "phpunit/phpunit": "^8.5"
  7982. },
  7983. "type": "library",
  7984. "extra": {
  7985. "branch-alias": {
  7986. "dev-master": "2.0.x-dev"
  7987. }
  7988. },
  7989. "autoload": {
  7990. "classmap": [
  7991. "src/"
  7992. ]
  7993. },
  7994. "notification-url": "https://packagist.org/downloads/",
  7995. "license": [
  7996. "BSD-3-Clause"
  7997. ],
  7998. "authors": [
  7999. {
  8000. "name": "Sebastian Bergmann",
  8001. "email": "sebastian@phpunit.de",
  8002. "role": "lead"
  8003. }
  8004. ],
  8005. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8006. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8007. "keywords": [
  8008. "filesystem",
  8009. "iterator"
  8010. ],
  8011. "time": "2020-11-30T08:25:21+00:00"
  8012. },
  8013. {
  8014. "name": "phpunit/php-text-template",
  8015. "version": "1.2.1",
  8016. "source": {
  8017. "type": "git",
  8018. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8019. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8020. },
  8021. "dist": {
  8022. "type": "zip",
  8023. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8024. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8025. "shasum": "",
  8026. "mirrors": [
  8027. {
  8028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8029. "preferred": true
  8030. }
  8031. ]
  8032. },
  8033. "require": {
  8034. "php": ">=5.3.3"
  8035. },
  8036. "type": "library",
  8037. "autoload": {
  8038. "classmap": [
  8039. "src/"
  8040. ]
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "BSD-3-Clause"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "Sebastian Bergmann",
  8049. "email": "sebastian@phpunit.de",
  8050. "role": "lead"
  8051. }
  8052. ],
  8053. "description": "Simple template engine.",
  8054. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8055. "keywords": [
  8056. "template"
  8057. ],
  8058. "time": "2015-06-21T13:50:34+00:00"
  8059. },
  8060. {
  8061. "name": "phpunit/php-timer",
  8062. "version": "2.1.3",
  8063. "source": {
  8064. "type": "git",
  8065. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8066. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  8067. },
  8068. "dist": {
  8069. "type": "zip",
  8070. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8071. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8072. "shasum": "",
  8073. "mirrors": [
  8074. {
  8075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8076. "preferred": true
  8077. }
  8078. ]
  8079. },
  8080. "require": {
  8081. "php": ">=7.1"
  8082. },
  8083. "require-dev": {
  8084. "phpunit/phpunit": "^8.5"
  8085. },
  8086. "type": "library",
  8087. "extra": {
  8088. "branch-alias": {
  8089. "dev-master": "2.1-dev"
  8090. }
  8091. },
  8092. "autoload": {
  8093. "classmap": [
  8094. "src/"
  8095. ]
  8096. },
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "BSD-3-Clause"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Sebastian Bergmann",
  8104. "email": "sebastian@phpunit.de",
  8105. "role": "lead"
  8106. }
  8107. ],
  8108. "description": "Utility class for timing",
  8109. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8110. "keywords": [
  8111. "timer"
  8112. ],
  8113. "time": "2020-11-30T08:20:02+00:00"
  8114. },
  8115. {
  8116. "name": "phpunit/php-token-stream",
  8117. "version": "4.0.4",
  8118. "source": {
  8119. "type": "git",
  8120. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8121. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  8122. },
  8123. "dist": {
  8124. "type": "zip",
  8125. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  8126. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  8127. "shasum": "",
  8128. "mirrors": [
  8129. {
  8130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8131. "preferred": true
  8132. }
  8133. ]
  8134. },
  8135. "require": {
  8136. "ext-tokenizer": "*",
  8137. "php": "^7.3 || ^8.0"
  8138. },
  8139. "require-dev": {
  8140. "phpunit/phpunit": "^9.0"
  8141. },
  8142. "type": "library",
  8143. "extra": {
  8144. "branch-alias": {
  8145. "dev-master": "4.0-dev"
  8146. }
  8147. },
  8148. "autoload": {
  8149. "classmap": [
  8150. "src/"
  8151. ]
  8152. },
  8153. "notification-url": "https://packagist.org/downloads/",
  8154. "license": [
  8155. "BSD-3-Clause"
  8156. ],
  8157. "authors": [
  8158. {
  8159. "name": "Sebastian Bergmann",
  8160. "email": "sebastian@phpunit.de"
  8161. }
  8162. ],
  8163. "description": "Wrapper around PHP's tokenizer extension.",
  8164. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8165. "keywords": [
  8166. "tokenizer"
  8167. ],
  8168. "support": {
  8169. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  8170. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  8171. },
  8172. "abandoned": true,
  8173. "time": "2020-08-04T08:28:15+00:00"
  8174. },
  8175. {
  8176. "name": "phpunit/phpunit",
  8177. "version": "8.5.16",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8181. "reference": "cc66f2fc61296be66c99931a862200e7456b9a01"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/cc66f2fc61296be66c99931a862200e7456b9a01",
  8186. "reference": "cc66f2fc61296be66c99931a862200e7456b9a01",
  8187. "shasum": "",
  8188. "mirrors": [
  8189. {
  8190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8191. "preferred": true
  8192. }
  8193. ]
  8194. },
  8195. "require": {
  8196. "doctrine/instantiator": "^1.3.1",
  8197. "ext-dom": "*",
  8198. "ext-json": "*",
  8199. "ext-libxml": "*",
  8200. "ext-mbstring": "*",
  8201. "ext-xml": "*",
  8202. "ext-xmlwriter": "*",
  8203. "myclabs/deep-copy": "^1.10.0",
  8204. "phar-io/manifest": "^2.0.1",
  8205. "phar-io/version": "^3.0.2",
  8206. "php": ">=7.2",
  8207. "phpspec/prophecy": "^1.10.3",
  8208. "phpunit/php-code-coverage": "^7.0.12",
  8209. "phpunit/php-file-iterator": "^2.0.2",
  8210. "phpunit/php-text-template": "^1.2.1",
  8211. "phpunit/php-timer": "^2.1.2",
  8212. "sebastian/comparator": "^3.0.2",
  8213. "sebastian/diff": "^3.0.2",
  8214. "sebastian/environment": "^4.2.3",
  8215. "sebastian/exporter": "^3.1.2",
  8216. "sebastian/global-state": "^3.0.0",
  8217. "sebastian/object-enumerator": "^3.0.3",
  8218. "sebastian/resource-operations": "^2.0.1",
  8219. "sebastian/type": "^1.1.3",
  8220. "sebastian/version": "^2.0.1"
  8221. },
  8222. "require-dev": {
  8223. "ext-pdo": "*"
  8224. },
  8225. "suggest": {
  8226. "ext-soap": "*",
  8227. "ext-xdebug": "*",
  8228. "phpunit/php-invoker": "^2.0.0"
  8229. },
  8230. "bin": [
  8231. "phpunit"
  8232. ],
  8233. "type": "library",
  8234. "extra": {
  8235. "branch-alias": {
  8236. "dev-master": "8.5-dev"
  8237. }
  8238. },
  8239. "autoload": {
  8240. "classmap": [
  8241. "src/"
  8242. ]
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "BSD-3-Clause"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Sebastian Bergmann",
  8251. "email": "sebastian@phpunit.de",
  8252. "role": "lead"
  8253. }
  8254. ],
  8255. "description": "The PHP Unit Testing framework.",
  8256. "homepage": "https://phpunit.de/",
  8257. "keywords": [
  8258. "phpunit",
  8259. "testing",
  8260. "xunit"
  8261. ],
  8262. "time": "2021-06-05T04:46:20+00:00"
  8263. },
  8264. {
  8265. "name": "sebastian/code-unit-reverse-lookup",
  8266. "version": "1.0.2",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8270. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  8275. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  8276. "shasum": "",
  8277. "mirrors": [
  8278. {
  8279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8280. "preferred": true
  8281. }
  8282. ]
  8283. },
  8284. "require": {
  8285. "php": ">=5.6"
  8286. },
  8287. "require-dev": {
  8288. "phpunit/phpunit": "^8.5"
  8289. },
  8290. "type": "library",
  8291. "extra": {
  8292. "branch-alias": {
  8293. "dev-master": "1.0.x-dev"
  8294. }
  8295. },
  8296. "autoload": {
  8297. "classmap": [
  8298. "src/"
  8299. ]
  8300. },
  8301. "notification-url": "https://packagist.org/downloads/",
  8302. "license": [
  8303. "BSD-3-Clause"
  8304. ],
  8305. "authors": [
  8306. {
  8307. "name": "Sebastian Bergmann",
  8308. "email": "sebastian@phpunit.de"
  8309. }
  8310. ],
  8311. "description": "Looks up which function or method a line of code belongs to",
  8312. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8313. "time": "2020-11-30T08:15:22+00:00"
  8314. },
  8315. {
  8316. "name": "sebastian/comparator",
  8317. "version": "3.0.3",
  8318. "source": {
  8319. "type": "git",
  8320. "url": "https://github.com/sebastianbergmann/comparator.git",
  8321. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  8322. },
  8323. "dist": {
  8324. "type": "zip",
  8325. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  8326. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  8327. "shasum": "",
  8328. "mirrors": [
  8329. {
  8330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8331. "preferred": true
  8332. }
  8333. ]
  8334. },
  8335. "require": {
  8336. "php": ">=7.1",
  8337. "sebastian/diff": "^3.0",
  8338. "sebastian/exporter": "^3.1"
  8339. },
  8340. "require-dev": {
  8341. "phpunit/phpunit": "^8.5"
  8342. },
  8343. "type": "library",
  8344. "extra": {
  8345. "branch-alias": {
  8346. "dev-master": "3.0-dev"
  8347. }
  8348. },
  8349. "autoload": {
  8350. "classmap": [
  8351. "src/"
  8352. ]
  8353. },
  8354. "notification-url": "https://packagist.org/downloads/",
  8355. "license": [
  8356. "BSD-3-Clause"
  8357. ],
  8358. "authors": [
  8359. {
  8360. "name": "Sebastian Bergmann",
  8361. "email": "sebastian@phpunit.de"
  8362. },
  8363. {
  8364. "name": "Jeff Welch",
  8365. "email": "whatthejeff@gmail.com"
  8366. },
  8367. {
  8368. "name": "Volker Dusch",
  8369. "email": "github@wallbash.com"
  8370. },
  8371. {
  8372. "name": "Bernhard Schussek",
  8373. "email": "bschussek@2bepublished.at"
  8374. }
  8375. ],
  8376. "description": "Provides the functionality to compare PHP values for equality",
  8377. "homepage": "https://github.com/sebastianbergmann/comparator",
  8378. "keywords": [
  8379. "comparator",
  8380. "compare",
  8381. "equality"
  8382. ],
  8383. "time": "2020-11-30T08:04:30+00:00"
  8384. },
  8385. {
  8386. "name": "sebastian/diff",
  8387. "version": "3.0.3",
  8388. "source": {
  8389. "type": "git",
  8390. "url": "https://github.com/sebastianbergmann/diff.git",
  8391. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  8392. },
  8393. "dist": {
  8394. "type": "zip",
  8395. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  8396. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  8397. "shasum": "",
  8398. "mirrors": [
  8399. {
  8400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8401. "preferred": true
  8402. }
  8403. ]
  8404. },
  8405. "require": {
  8406. "php": ">=7.1"
  8407. },
  8408. "require-dev": {
  8409. "phpunit/phpunit": "^7.5 || ^8.0",
  8410. "symfony/process": "^2 || ^3.3 || ^4"
  8411. },
  8412. "type": "library",
  8413. "extra": {
  8414. "branch-alias": {
  8415. "dev-master": "3.0-dev"
  8416. }
  8417. },
  8418. "autoload": {
  8419. "classmap": [
  8420. "src/"
  8421. ]
  8422. },
  8423. "notification-url": "https://packagist.org/downloads/",
  8424. "license": [
  8425. "BSD-3-Clause"
  8426. ],
  8427. "authors": [
  8428. {
  8429. "name": "Sebastian Bergmann",
  8430. "email": "sebastian@phpunit.de"
  8431. },
  8432. {
  8433. "name": "Kore Nordmann",
  8434. "email": "mail@kore-nordmann.de"
  8435. }
  8436. ],
  8437. "description": "Diff implementation",
  8438. "homepage": "https://github.com/sebastianbergmann/diff",
  8439. "keywords": [
  8440. "diff",
  8441. "udiff",
  8442. "unidiff",
  8443. "unified diff"
  8444. ],
  8445. "time": "2020-11-30T07:59:04+00:00"
  8446. },
  8447. {
  8448. "name": "sebastian/environment",
  8449. "version": "4.2.4",
  8450. "source": {
  8451. "type": "git",
  8452. "url": "https://github.com/sebastianbergmann/environment.git",
  8453. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  8454. },
  8455. "dist": {
  8456. "type": "zip",
  8457. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  8458. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  8459. "shasum": "",
  8460. "mirrors": [
  8461. {
  8462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8463. "preferred": true
  8464. }
  8465. ]
  8466. },
  8467. "require": {
  8468. "php": ">=7.1"
  8469. },
  8470. "require-dev": {
  8471. "phpunit/phpunit": "^7.5"
  8472. },
  8473. "suggest": {
  8474. "ext-posix": "*"
  8475. },
  8476. "type": "library",
  8477. "extra": {
  8478. "branch-alias": {
  8479. "dev-master": "4.2-dev"
  8480. }
  8481. },
  8482. "autoload": {
  8483. "classmap": [
  8484. "src/"
  8485. ]
  8486. },
  8487. "notification-url": "https://packagist.org/downloads/",
  8488. "license": [
  8489. "BSD-3-Clause"
  8490. ],
  8491. "authors": [
  8492. {
  8493. "name": "Sebastian Bergmann",
  8494. "email": "sebastian@phpunit.de"
  8495. }
  8496. ],
  8497. "description": "Provides functionality to handle HHVM/PHP environments",
  8498. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8499. "keywords": [
  8500. "Xdebug",
  8501. "environment",
  8502. "hhvm"
  8503. ],
  8504. "time": "2020-11-30T07:53:42+00:00"
  8505. },
  8506. {
  8507. "name": "sebastian/exporter",
  8508. "version": "3.1.3",
  8509. "source": {
  8510. "type": "git",
  8511. "url": "https://github.com/sebastianbergmann/exporter.git",
  8512. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  8513. },
  8514. "dist": {
  8515. "type": "zip",
  8516. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  8517. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  8518. "shasum": "",
  8519. "mirrors": [
  8520. {
  8521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8522. "preferred": true
  8523. }
  8524. ]
  8525. },
  8526. "require": {
  8527. "php": ">=7.0",
  8528. "sebastian/recursion-context": "^3.0"
  8529. },
  8530. "require-dev": {
  8531. "ext-mbstring": "*",
  8532. "phpunit/phpunit": "^6.0"
  8533. },
  8534. "type": "library",
  8535. "extra": {
  8536. "branch-alias": {
  8537. "dev-master": "3.1.x-dev"
  8538. }
  8539. },
  8540. "autoload": {
  8541. "classmap": [
  8542. "src/"
  8543. ]
  8544. },
  8545. "notification-url": "https://packagist.org/downloads/",
  8546. "license": [
  8547. "BSD-3-Clause"
  8548. ],
  8549. "authors": [
  8550. {
  8551. "name": "Sebastian Bergmann",
  8552. "email": "sebastian@phpunit.de"
  8553. },
  8554. {
  8555. "name": "Jeff Welch",
  8556. "email": "whatthejeff@gmail.com"
  8557. },
  8558. {
  8559. "name": "Volker Dusch",
  8560. "email": "github@wallbash.com"
  8561. },
  8562. {
  8563. "name": "Adam Harvey",
  8564. "email": "aharvey@php.net"
  8565. },
  8566. {
  8567. "name": "Bernhard Schussek",
  8568. "email": "bschussek@gmail.com"
  8569. }
  8570. ],
  8571. "description": "Provides the functionality to export PHP variables for visualization",
  8572. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8573. "keywords": [
  8574. "export",
  8575. "exporter"
  8576. ],
  8577. "time": "2020-11-30T07:47:53+00:00"
  8578. },
  8579. {
  8580. "name": "sebastian/global-state",
  8581. "version": "3.0.1",
  8582. "source": {
  8583. "type": "git",
  8584. "url": "https://github.com/sebastianbergmann/global-state.git",
  8585. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  8586. },
  8587. "dist": {
  8588. "type": "zip",
  8589. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  8590. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  8591. "shasum": "",
  8592. "mirrors": [
  8593. {
  8594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8595. "preferred": true
  8596. }
  8597. ]
  8598. },
  8599. "require": {
  8600. "php": ">=7.2",
  8601. "sebastian/object-reflector": "^1.1.1",
  8602. "sebastian/recursion-context": "^3.0"
  8603. },
  8604. "require-dev": {
  8605. "ext-dom": "*",
  8606. "phpunit/phpunit": "^8.0"
  8607. },
  8608. "suggest": {
  8609. "ext-uopz": "*"
  8610. },
  8611. "type": "library",
  8612. "extra": {
  8613. "branch-alias": {
  8614. "dev-master": "3.0-dev"
  8615. }
  8616. },
  8617. "autoload": {
  8618. "classmap": [
  8619. "src/"
  8620. ]
  8621. },
  8622. "notification-url": "https://packagist.org/downloads/",
  8623. "license": [
  8624. "BSD-3-Clause"
  8625. ],
  8626. "authors": [
  8627. {
  8628. "name": "Sebastian Bergmann",
  8629. "email": "sebastian@phpunit.de"
  8630. }
  8631. ],
  8632. "description": "Snapshotting of global state",
  8633. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8634. "keywords": [
  8635. "global state"
  8636. ],
  8637. "time": "2020-11-30T07:43:24+00:00"
  8638. },
  8639. {
  8640. "name": "sebastian/object-enumerator",
  8641. "version": "3.0.4",
  8642. "source": {
  8643. "type": "git",
  8644. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8645. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  8646. },
  8647. "dist": {
  8648. "type": "zip",
  8649. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  8650. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  8651. "shasum": "",
  8652. "mirrors": [
  8653. {
  8654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8655. "preferred": true
  8656. }
  8657. ]
  8658. },
  8659. "require": {
  8660. "php": ">=7.0",
  8661. "sebastian/object-reflector": "^1.1.1",
  8662. "sebastian/recursion-context": "^3.0"
  8663. },
  8664. "require-dev": {
  8665. "phpunit/phpunit": "^6.0"
  8666. },
  8667. "type": "library",
  8668. "extra": {
  8669. "branch-alias": {
  8670. "dev-master": "3.0.x-dev"
  8671. }
  8672. },
  8673. "autoload": {
  8674. "classmap": [
  8675. "src/"
  8676. ]
  8677. },
  8678. "notification-url": "https://packagist.org/downloads/",
  8679. "license": [
  8680. "BSD-3-Clause"
  8681. ],
  8682. "authors": [
  8683. {
  8684. "name": "Sebastian Bergmann",
  8685. "email": "sebastian@phpunit.de"
  8686. }
  8687. ],
  8688. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8689. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8690. "time": "2020-11-30T07:40:27+00:00"
  8691. },
  8692. {
  8693. "name": "sebastian/object-reflector",
  8694. "version": "1.1.2",
  8695. "source": {
  8696. "type": "git",
  8697. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8698. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  8699. },
  8700. "dist": {
  8701. "type": "zip",
  8702. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  8703. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  8704. "shasum": "",
  8705. "mirrors": [
  8706. {
  8707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8708. "preferred": true
  8709. }
  8710. ]
  8711. },
  8712. "require": {
  8713. "php": ">=7.0"
  8714. },
  8715. "require-dev": {
  8716. "phpunit/phpunit": "^6.0"
  8717. },
  8718. "type": "library",
  8719. "extra": {
  8720. "branch-alias": {
  8721. "dev-master": "1.1-dev"
  8722. }
  8723. },
  8724. "autoload": {
  8725. "classmap": [
  8726. "src/"
  8727. ]
  8728. },
  8729. "notification-url": "https://packagist.org/downloads/",
  8730. "license": [
  8731. "BSD-3-Clause"
  8732. ],
  8733. "authors": [
  8734. {
  8735. "name": "Sebastian Bergmann",
  8736. "email": "sebastian@phpunit.de"
  8737. }
  8738. ],
  8739. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8740. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8741. "time": "2020-11-30T07:37:18+00:00"
  8742. },
  8743. {
  8744. "name": "sebastian/recursion-context",
  8745. "version": "3.0.1",
  8746. "source": {
  8747. "type": "git",
  8748. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8749. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  8750. },
  8751. "dist": {
  8752. "type": "zip",
  8753. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  8754. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  8755. "shasum": "",
  8756. "mirrors": [
  8757. {
  8758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8759. "preferred": true
  8760. }
  8761. ]
  8762. },
  8763. "require": {
  8764. "php": ">=7.0"
  8765. },
  8766. "require-dev": {
  8767. "phpunit/phpunit": "^6.0"
  8768. },
  8769. "type": "library",
  8770. "extra": {
  8771. "branch-alias": {
  8772. "dev-master": "3.0.x-dev"
  8773. }
  8774. },
  8775. "autoload": {
  8776. "classmap": [
  8777. "src/"
  8778. ]
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "BSD-3-Clause"
  8783. ],
  8784. "authors": [
  8785. {
  8786. "name": "Sebastian Bergmann",
  8787. "email": "sebastian@phpunit.de"
  8788. },
  8789. {
  8790. "name": "Jeff Welch",
  8791. "email": "whatthejeff@gmail.com"
  8792. },
  8793. {
  8794. "name": "Adam Harvey",
  8795. "email": "aharvey@php.net"
  8796. }
  8797. ],
  8798. "description": "Provides functionality to recursively process PHP variables",
  8799. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8800. "time": "2020-11-30T07:34:24+00:00"
  8801. },
  8802. {
  8803. "name": "sebastian/resource-operations",
  8804. "version": "2.0.2",
  8805. "source": {
  8806. "type": "git",
  8807. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8808. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  8809. },
  8810. "dist": {
  8811. "type": "zip",
  8812. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  8813. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  8814. "shasum": "",
  8815. "mirrors": [
  8816. {
  8817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8818. "preferred": true
  8819. }
  8820. ]
  8821. },
  8822. "require": {
  8823. "php": ">=7.1"
  8824. },
  8825. "type": "library",
  8826. "extra": {
  8827. "branch-alias": {
  8828. "dev-master": "2.0-dev"
  8829. }
  8830. },
  8831. "autoload": {
  8832. "classmap": [
  8833. "src/"
  8834. ]
  8835. },
  8836. "notification-url": "https://packagist.org/downloads/",
  8837. "license": [
  8838. "BSD-3-Clause"
  8839. ],
  8840. "authors": [
  8841. {
  8842. "name": "Sebastian Bergmann",
  8843. "email": "sebastian@phpunit.de"
  8844. }
  8845. ],
  8846. "description": "Provides a list of PHP built-in functions that operate on resources",
  8847. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8848. "time": "2020-11-30T07:30:19+00:00"
  8849. },
  8850. {
  8851. "name": "sebastian/type",
  8852. "version": "1.1.4",
  8853. "source": {
  8854. "type": "git",
  8855. "url": "https://github.com/sebastianbergmann/type.git",
  8856. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  8857. },
  8858. "dist": {
  8859. "type": "zip",
  8860. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  8861. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  8862. "shasum": "",
  8863. "mirrors": [
  8864. {
  8865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8866. "preferred": true
  8867. }
  8868. ]
  8869. },
  8870. "require": {
  8871. "php": ">=7.2"
  8872. },
  8873. "require-dev": {
  8874. "phpunit/phpunit": "^8.2"
  8875. },
  8876. "type": "library",
  8877. "extra": {
  8878. "branch-alias": {
  8879. "dev-master": "1.1-dev"
  8880. }
  8881. },
  8882. "autoload": {
  8883. "classmap": [
  8884. "src/"
  8885. ]
  8886. },
  8887. "notification-url": "https://packagist.org/downloads/",
  8888. "license": [
  8889. "BSD-3-Clause"
  8890. ],
  8891. "authors": [
  8892. {
  8893. "name": "Sebastian Bergmann",
  8894. "email": "sebastian@phpunit.de",
  8895. "role": "lead"
  8896. }
  8897. ],
  8898. "description": "Collection of value objects that represent the types of the PHP type system",
  8899. "homepage": "https://github.com/sebastianbergmann/type",
  8900. "time": "2020-11-30T07:25:11+00:00"
  8901. },
  8902. {
  8903. "name": "sebastian/version",
  8904. "version": "2.0.1",
  8905. "source": {
  8906. "type": "git",
  8907. "url": "https://github.com/sebastianbergmann/version.git",
  8908. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8909. },
  8910. "dist": {
  8911. "type": "zip",
  8912. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8913. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8914. "shasum": "",
  8915. "mirrors": [
  8916. {
  8917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8918. "preferred": true
  8919. }
  8920. ]
  8921. },
  8922. "require": {
  8923. "php": ">=5.6"
  8924. },
  8925. "type": "library",
  8926. "extra": {
  8927. "branch-alias": {
  8928. "dev-master": "2.0.x-dev"
  8929. }
  8930. },
  8931. "autoload": {
  8932. "classmap": [
  8933. "src/"
  8934. ]
  8935. },
  8936. "notification-url": "https://packagist.org/downloads/",
  8937. "license": [
  8938. "BSD-3-Clause"
  8939. ],
  8940. "authors": [
  8941. {
  8942. "name": "Sebastian Bergmann",
  8943. "email": "sebastian@phpunit.de",
  8944. "role": "lead"
  8945. }
  8946. ],
  8947. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8948. "homepage": "https://github.com/sebastianbergmann/version",
  8949. "time": "2016-10-03T07:35:21+00:00"
  8950. },
  8951. {
  8952. "name": "symfony/debug",
  8953. "version": "v4.4.25",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/symfony/debug.git",
  8957. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  8962. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  8963. "shasum": "",
  8964. "mirrors": [
  8965. {
  8966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8967. "preferred": true
  8968. }
  8969. ]
  8970. },
  8971. "require": {
  8972. "php": ">=7.1.3",
  8973. "psr/log": "~1.0",
  8974. "symfony/polyfill-php80": "^1.15"
  8975. },
  8976. "conflict": {
  8977. "symfony/http-kernel": "<3.4"
  8978. },
  8979. "require-dev": {
  8980. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  8981. },
  8982. "type": "library",
  8983. "autoload": {
  8984. "psr-4": {
  8985. "Symfony\\Component\\Debug\\": ""
  8986. },
  8987. "exclude-from-classmap": [
  8988. "/Tests/"
  8989. ]
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "MIT"
  8994. ],
  8995. "authors": [
  8996. {
  8997. "name": "Fabien Potencier",
  8998. "email": "fabien@symfony.com"
  8999. },
  9000. {
  9001. "name": "Symfony Community",
  9002. "homepage": "https://symfony.com/contributors"
  9003. }
  9004. ],
  9005. "description": "Provides tools to ease debugging PHP code",
  9006. "homepage": "https://symfony.com",
  9007. "time": "2021-05-26T17:39:37+00:00"
  9008. },
  9009. {
  9010. "name": "theseer/tokenizer",
  9011. "version": "1.2.0",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/theseer/tokenizer.git",
  9015. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  9020. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  9021. "shasum": "",
  9022. "mirrors": [
  9023. {
  9024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9025. "preferred": true
  9026. }
  9027. ]
  9028. },
  9029. "require": {
  9030. "ext-dom": "*",
  9031. "ext-tokenizer": "*",
  9032. "ext-xmlwriter": "*",
  9033. "php": "^7.2 || ^8.0"
  9034. },
  9035. "type": "library",
  9036. "autoload": {
  9037. "classmap": [
  9038. "src/"
  9039. ]
  9040. },
  9041. "notification-url": "https://packagist.org/downloads/",
  9042. "license": [
  9043. "BSD-3-Clause"
  9044. ],
  9045. "authors": [
  9046. {
  9047. "name": "Arne Blankerts",
  9048. "email": "arne@blankerts.de",
  9049. "role": "Developer"
  9050. }
  9051. ],
  9052. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9053. "time": "2020-07-12T23:59:07+00:00"
  9054. },
  9055. {
  9056. "name": "webmozart/assert",
  9057. "version": "1.10.0",
  9058. "source": {
  9059. "type": "git",
  9060. "url": "https://github.com/webmozarts/assert.git",
  9061. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  9062. },
  9063. "dist": {
  9064. "type": "zip",
  9065. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  9066. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  9067. "shasum": "",
  9068. "mirrors": [
  9069. {
  9070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9071. "preferred": true
  9072. }
  9073. ]
  9074. },
  9075. "require": {
  9076. "php": "^7.2 || ^8.0",
  9077. "symfony/polyfill-ctype": "^1.8"
  9078. },
  9079. "conflict": {
  9080. "phpstan/phpstan": "<0.12.20",
  9081. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9082. },
  9083. "require-dev": {
  9084. "phpunit/phpunit": "^8.5.13"
  9085. },
  9086. "type": "library",
  9087. "extra": {
  9088. "branch-alias": {
  9089. "dev-master": "1.10-dev"
  9090. }
  9091. },
  9092. "autoload": {
  9093. "psr-4": {
  9094. "Webmozart\\Assert\\": "src/"
  9095. }
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "MIT"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Bernhard Schussek",
  9104. "email": "bschussek@gmail.com"
  9105. }
  9106. ],
  9107. "description": "Assertions to validate method input/output with nice error messages.",
  9108. "keywords": [
  9109. "assert",
  9110. "check",
  9111. "validate"
  9112. ],
  9113. "support": {
  9114. "issues": "https://github.com/webmozarts/assert/issues",
  9115. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  9116. },
  9117. "time": "2021-03-09T10:59:23+00:00"
  9118. }
  9119. ],
  9120. "aliases": [],
  9121. "minimum-stability": "dev",
  9122. "stability-flags": [],
  9123. "prefer-stable": true,
  9124. "prefer-lowest": false,
  9125. "platform": {
  9126. "php": "^7.2.14",
  9127. "ext-bcmath": "*",
  9128. "ext-json": "*",
  9129. "ext-mbstring": "*",
  9130. "ext-openssl": "*",
  9131. "ext-pdo": "*"
  9132. },
  9133. "platform-dev": [],
  9134. "platform-overrides": {
  9135. "ext-pcntl": "7.2",
  9136. "ext-posix": "7.2"
  9137. }
  9138. }