composer.lock 324 KB

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