composer.lock 232 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594
  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": "d9e8baa406706690197f36bcf9c4046e",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  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. "php": ">=5.5.9",
  31. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  32. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^5.0 || ^4.8.10",
  36. "squizlabs/php_codesniffer": "^2.3"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "1.2-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/Asm89/Stack/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "time": "2019-12-24T22:41:47+00:00"
  66. },
  67. {
  68. "name": "brick/math",
  69. "version": "0.8.15",
  70. "source": {
  71. "type": "git",
  72. "url": "https://github.com/brick/math.git",
  73. "reference": "9b08d412b9da9455b210459ff71414de7e6241cd"
  74. },
  75. "dist": {
  76. "type": "zip",
  77. "url": "https://api.github.com/repos/brick/math/zipball/9b08d412b9da9455b210459ff71414de7e6241cd",
  78. "reference": "9b08d412b9da9455b210459ff71414de7e6241cd",
  79. "shasum": "",
  80. "mirrors": [
  81. {
  82. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  83. "preferred": true
  84. }
  85. ]
  86. },
  87. "require": {
  88. "ext-json": "*",
  89. "php": "^7.1|^8.0"
  90. },
  91. "require-dev": {
  92. "php-coveralls/php-coveralls": "^2.2",
  93. "phpunit/phpunit": "^7.5.15|^8.5",
  94. "vimeo/psalm": "^3.5"
  95. },
  96. "type": "library",
  97. "autoload": {
  98. "psr-4": {
  99. "Brick\\Math\\": "src/"
  100. }
  101. },
  102. "notification-url": "https://packagist.org/downloads/",
  103. "license": [
  104. "MIT"
  105. ],
  106. "description": "Arbitrary-precision arithmetic library",
  107. "keywords": [
  108. "Arbitrary-precision",
  109. "BigInteger",
  110. "BigRational",
  111. "arithmetic",
  112. "bigdecimal",
  113. "bignum",
  114. "brick",
  115. "math"
  116. ],
  117. "funding": [
  118. {
  119. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  120. "type": "tidelift"
  121. }
  122. ],
  123. "time": "2020-04-15T15:59:35+00:00"
  124. },
  125. {
  126. "name": "dnoegel/php-xdg-base-dir",
  127. "version": "v0.1.1",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  131. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  136. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  137. "shasum": "",
  138. "mirrors": [
  139. {
  140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  141. "preferred": true
  142. }
  143. ]
  144. },
  145. "require": {
  146. "php": ">=5.3.2"
  147. },
  148. "require-dev": {
  149. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  150. },
  151. "type": "library",
  152. "autoload": {
  153. "psr-4": {
  154. "XdgBaseDir\\": "src/"
  155. }
  156. },
  157. "notification-url": "https://packagist.org/downloads/",
  158. "license": [
  159. "MIT"
  160. ],
  161. "description": "implementation of xdg base directory specification for php",
  162. "time": "2019-12-04T15:06:13+00:00"
  163. },
  164. {
  165. "name": "doctrine/cache",
  166. "version": "1.10.0",
  167. "source": {
  168. "type": "git",
  169. "url": "https://github.com/doctrine/cache.git",
  170. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
  171. },
  172. "dist": {
  173. "type": "zip",
  174. "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
  175. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
  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": "~7.1"
  186. },
  187. "conflict": {
  188. "doctrine/common": ">2.2,<2.4"
  189. },
  190. "require-dev": {
  191. "alcaeus/mongo-php-adapter": "^1.1",
  192. "doctrine/coding-standard": "^6.0",
  193. "mongodb/mongodb": "^1.1",
  194. "phpunit/phpunit": "^7.0",
  195. "predis/predis": "~1.0"
  196. },
  197. "suggest": {
  198. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  199. },
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-master": "1.9.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Guilherme Blanco",
  218. "email": "guilhermeblanco@gmail.com"
  219. },
  220. {
  221. "name": "Roman Borschel",
  222. "email": "roman@code-factory.org"
  223. },
  224. {
  225. "name": "Benjamin Eberlei",
  226. "email": "kontakt@beberlei.de"
  227. },
  228. {
  229. "name": "Jonathan Wage",
  230. "email": "jonwage@gmail.com"
  231. },
  232. {
  233. "name": "Johannes Schmitt",
  234. "email": "schmittjoh@gmail.com"
  235. }
  236. ],
  237. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  238. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  239. "keywords": [
  240. "abstraction",
  241. "apcu",
  242. "cache",
  243. "caching",
  244. "couchdb",
  245. "memcached",
  246. "php",
  247. "redis",
  248. "xcache"
  249. ],
  250. "time": "2019-11-29T15:36:20+00:00"
  251. },
  252. {
  253. "name": "doctrine/dbal",
  254. "version": "2.10.2",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/doctrine/dbal.git",
  258. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/doctrine/dbal/zipball/aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  263. "reference": "aab745e7b6b2de3b47019da81e7225e14dcfdac8",
  264. "shasum": "",
  265. "mirrors": [
  266. {
  267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  268. "preferred": true
  269. }
  270. ]
  271. },
  272. "require": {
  273. "doctrine/cache": "^1.0",
  274. "doctrine/event-manager": "^1.0",
  275. "ext-pdo": "*",
  276. "php": "^7.2"
  277. },
  278. "require-dev": {
  279. "doctrine/coding-standard": "^6.0",
  280. "jetbrains/phpstorm-stubs": "^2019.1",
  281. "nikic/php-parser": "^4.4",
  282. "phpstan/phpstan": "^0.12",
  283. "phpunit/phpunit": "^8.4.1",
  284. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  285. "vimeo/psalm": "^3.11"
  286. },
  287. "suggest": {
  288. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  289. },
  290. "bin": [
  291. "bin/doctrine-dbal"
  292. ],
  293. "type": "library",
  294. "extra": {
  295. "branch-alias": {
  296. "dev-master": "2.10.x-dev",
  297. "dev-develop": "3.0.x-dev"
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Guilherme Blanco",
  312. "email": "guilhermeblanco@gmail.com"
  313. },
  314. {
  315. "name": "Roman Borschel",
  316. "email": "roman@code-factory.org"
  317. },
  318. {
  319. "name": "Benjamin Eberlei",
  320. "email": "kontakt@beberlei.de"
  321. },
  322. {
  323. "name": "Jonathan Wage",
  324. "email": "jonwage@gmail.com"
  325. }
  326. ],
  327. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  328. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  329. "keywords": [
  330. "abstraction",
  331. "database",
  332. "db2",
  333. "dbal",
  334. "mariadb",
  335. "mssql",
  336. "mysql",
  337. "oci8",
  338. "oracle",
  339. "pdo",
  340. "pgsql",
  341. "postgresql",
  342. "queryobject",
  343. "sasql",
  344. "sql",
  345. "sqlanywhere",
  346. "sqlite",
  347. "sqlserver",
  348. "sqlsrv"
  349. ],
  350. "funding": [
  351. {
  352. "url": "https://www.doctrine-project.org/sponsorship.html",
  353. "type": "custom"
  354. },
  355. {
  356. "url": "https://www.patreon.com/phpdoctrine",
  357. "type": "patreon"
  358. },
  359. {
  360. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  361. "type": "tidelift"
  362. }
  363. ],
  364. "time": "2020-04-20T17:19:26+00:00"
  365. },
  366. {
  367. "name": "doctrine/event-manager",
  368. "version": "1.1.0",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/doctrine/event-manager.git",
  372. "reference": "629572819973f13486371cb611386eb17851e85c"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  377. "reference": "629572819973f13486371cb611386eb17851e85c",
  378. "shasum": "",
  379. "mirrors": [
  380. {
  381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  382. "preferred": true
  383. }
  384. ]
  385. },
  386. "require": {
  387. "php": "^7.1"
  388. },
  389. "conflict": {
  390. "doctrine/common": "<2.9@dev"
  391. },
  392. "require-dev": {
  393. "doctrine/coding-standard": "^6.0",
  394. "phpunit/phpunit": "^7.0"
  395. },
  396. "type": "library",
  397. "extra": {
  398. "branch-alias": {
  399. "dev-master": "1.0.x-dev"
  400. }
  401. },
  402. "autoload": {
  403. "psr-4": {
  404. "Doctrine\\Common\\": "lib/Doctrine/Common"
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Guilherme Blanco",
  414. "email": "guilhermeblanco@gmail.com"
  415. },
  416. {
  417. "name": "Roman Borschel",
  418. "email": "roman@code-factory.org"
  419. },
  420. {
  421. "name": "Benjamin Eberlei",
  422. "email": "kontakt@beberlei.de"
  423. },
  424. {
  425. "name": "Jonathan Wage",
  426. "email": "jonwage@gmail.com"
  427. },
  428. {
  429. "name": "Johannes Schmitt",
  430. "email": "schmittjoh@gmail.com"
  431. },
  432. {
  433. "name": "Marco Pivetta",
  434. "email": "ocramius@gmail.com"
  435. }
  436. ],
  437. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  438. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  439. "keywords": [
  440. "event",
  441. "event dispatcher",
  442. "event manager",
  443. "event system",
  444. "events"
  445. ],
  446. "time": "2019-11-10T09:48:07+00:00"
  447. },
  448. {
  449. "name": "doctrine/inflector",
  450. "version": "1.4.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/doctrine/inflector.git",
  454. "reference": "ab5de36233a1995f9c776c741b803eb8207aebef"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/doctrine/inflector/zipball/ab5de36233a1995f9c776c741b803eb8207aebef",
  459. "reference": "ab5de36233a1995f9c776c741b803eb8207aebef",
  460. "shasum": "",
  461. "mirrors": [
  462. {
  463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  464. "preferred": true
  465. }
  466. ]
  467. },
  468. "require": {
  469. "php": "^7.2"
  470. },
  471. "require-dev": {
  472. "doctrine/coding-standard": "^7.0",
  473. "phpstan/phpstan": "^0.11",
  474. "phpstan/phpstan-phpunit": "^0.11",
  475. "phpstan/phpstan-strict-rules": "^0.11",
  476. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  477. },
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-master": "2.0.x-dev"
  482. }
  483. },
  484. "autoload": {
  485. "psr-4": {
  486. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
  487. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  488. }
  489. },
  490. "notification-url": "https://packagist.org/downloads/",
  491. "license": [
  492. "MIT"
  493. ],
  494. "authors": [
  495. {
  496. "name": "Guilherme Blanco",
  497. "email": "guilhermeblanco@gmail.com"
  498. },
  499. {
  500. "name": "Roman Borschel",
  501. "email": "roman@code-factory.org"
  502. },
  503. {
  504. "name": "Benjamin Eberlei",
  505. "email": "kontakt@beberlei.de"
  506. },
  507. {
  508. "name": "Jonathan Wage",
  509. "email": "jonwage@gmail.com"
  510. },
  511. {
  512. "name": "Johannes Schmitt",
  513. "email": "schmittjoh@gmail.com"
  514. }
  515. ],
  516. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  517. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  518. "keywords": [
  519. "inflection",
  520. "inflector",
  521. "lowercase",
  522. "manipulation",
  523. "php",
  524. "plural",
  525. "singular",
  526. "strings",
  527. "uppercase",
  528. "words"
  529. ],
  530. "funding": [
  531. {
  532. "url": "https://www.doctrine-project.org/sponsorship.html",
  533. "type": "custom"
  534. },
  535. {
  536. "url": "https://www.patreon.com/phpdoctrine",
  537. "type": "patreon"
  538. },
  539. {
  540. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  541. "type": "tidelift"
  542. }
  543. ],
  544. "time": "2020-05-06T11:01:57+00:00"
  545. },
  546. {
  547. "name": "doctrine/lexer",
  548. "version": "1.2.0",
  549. "source": {
  550. "type": "git",
  551. "url": "https://github.com/doctrine/lexer.git",
  552. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  553. },
  554. "dist": {
  555. "type": "zip",
  556. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  557. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  558. "shasum": "",
  559. "mirrors": [
  560. {
  561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  562. "preferred": true
  563. }
  564. ]
  565. },
  566. "require": {
  567. "php": "^7.2"
  568. },
  569. "require-dev": {
  570. "doctrine/coding-standard": "^6.0",
  571. "phpstan/phpstan": "^0.11.8",
  572. "phpunit/phpunit": "^8.2"
  573. },
  574. "type": "library",
  575. "extra": {
  576. "branch-alias": {
  577. "dev-master": "1.2.x-dev"
  578. }
  579. },
  580. "autoload": {
  581. "psr-4": {
  582. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  583. }
  584. },
  585. "notification-url": "https://packagist.org/downloads/",
  586. "license": [
  587. "MIT"
  588. ],
  589. "authors": [
  590. {
  591. "name": "Guilherme Blanco",
  592. "email": "guilhermeblanco@gmail.com"
  593. },
  594. {
  595. "name": "Roman Borschel",
  596. "email": "roman@code-factory.org"
  597. },
  598. {
  599. "name": "Johannes Schmitt",
  600. "email": "schmittjoh@gmail.com"
  601. }
  602. ],
  603. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  604. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  605. "keywords": [
  606. "annotations",
  607. "docblock",
  608. "lexer",
  609. "parser",
  610. "php"
  611. ],
  612. "time": "2019-10-30T14:39:59+00:00"
  613. },
  614. {
  615. "name": "dragonmantank/cron-expression",
  616. "version": "v2.3.0",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/dragonmantank/cron-expression.git",
  620. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  625. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  626. "shasum": "",
  627. "mirrors": [
  628. {
  629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  630. "preferred": true
  631. }
  632. ]
  633. },
  634. "require": {
  635. "php": "^7.0"
  636. },
  637. "require-dev": {
  638. "phpunit/phpunit": "^6.4|^7.0"
  639. },
  640. "type": "library",
  641. "extra": {
  642. "branch-alias": {
  643. "dev-master": "2.3-dev"
  644. }
  645. },
  646. "autoload": {
  647. "psr-4": {
  648. "Cron\\": "src/Cron/"
  649. }
  650. },
  651. "notification-url": "https://packagist.org/downloads/",
  652. "license": [
  653. "MIT"
  654. ],
  655. "authors": [
  656. {
  657. "name": "Michael Dowling",
  658. "email": "mtdowling@gmail.com",
  659. "homepage": "https://github.com/mtdowling"
  660. },
  661. {
  662. "name": "Chris Tankersley",
  663. "email": "chris@ctankersley.com",
  664. "homepage": "https://github.com/dragonmantank"
  665. }
  666. ],
  667. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  668. "keywords": [
  669. "cron",
  670. "schedule"
  671. ],
  672. "time": "2019-03-31T00:38:28+00:00"
  673. },
  674. {
  675. "name": "egulias/email-validator",
  676. "version": "2.1.17",
  677. "source": {
  678. "type": "git",
  679. "url": "https://github.com/egulias/EmailValidator.git",
  680. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  681. },
  682. "dist": {
  683. "type": "zip",
  684. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  685. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  686. "shasum": "",
  687. "mirrors": [
  688. {
  689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  690. "preferred": true
  691. }
  692. ]
  693. },
  694. "require": {
  695. "doctrine/lexer": "^1.0.1",
  696. "php": ">=5.5",
  697. "symfony/polyfill-intl-idn": "^1.10"
  698. },
  699. "require-dev": {
  700. "dominicsayers/isemail": "^3.0.7",
  701. "phpunit/phpunit": "^4.8.36|^7.5.15",
  702. "satooshi/php-coveralls": "^1.0.1"
  703. },
  704. "suggest": {
  705. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  706. },
  707. "type": "library",
  708. "extra": {
  709. "branch-alias": {
  710. "dev-master": "2.1.x-dev"
  711. }
  712. },
  713. "autoload": {
  714. "psr-4": {
  715. "Egulias\\EmailValidator\\": "EmailValidator"
  716. }
  717. },
  718. "notification-url": "https://packagist.org/downloads/",
  719. "license": [
  720. "MIT"
  721. ],
  722. "authors": [
  723. {
  724. "name": "Eduardo Gulias Davis"
  725. }
  726. ],
  727. "description": "A library for validating emails against several RFCs",
  728. "homepage": "https://github.com/egulias/EmailValidator",
  729. "keywords": [
  730. "email",
  731. "emailvalidation",
  732. "emailvalidator",
  733. "validation",
  734. "validator"
  735. ],
  736. "time": "2020-02-13T22:36:52+00:00"
  737. },
  738. {
  739. "name": "encore/laravel-admin",
  740. "version": "v1.7.16",
  741. "source": {
  742. "type": "git",
  743. "url": "https://github.com/z-song/laravel-admin.git",
  744. "reference": "fe01b0f0d00366db907e9538a7e21c3325b63b50"
  745. },
  746. "dist": {
  747. "type": "zip",
  748. "url": "https://api.github.com/repos/z-song/laravel-admin/zipball/fe01b0f0d00366db907e9538a7e21c3325b63b50",
  749. "reference": "fe01b0f0d00366db907e9538a7e21c3325b63b50",
  750. "shasum": "",
  751. "mirrors": [
  752. {
  753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  754. "preferred": true
  755. }
  756. ]
  757. },
  758. "require": {
  759. "doctrine/dbal": "2.*",
  760. "laravel/framework": ">=5.5",
  761. "php": ">=7.0.0",
  762. "symfony/dom-crawler": "~3.1|~4.0|~5.0"
  763. },
  764. "require-dev": {
  765. "fzaninotto/faker": "~1.4",
  766. "intervention/image": "~2.3",
  767. "laravel/browser-kit-testing": "^6.0",
  768. "laravel/laravel": ">=5.5"
  769. },
  770. "suggest": {
  771. "intervention/image": "Required to handling and manipulation upload images (~2.3).",
  772. "spatie/eloquent-sortable": "Required to built orderable gird."
  773. },
  774. "type": "library",
  775. "extra": {
  776. "laravel": {
  777. "providers": [
  778. "Encore\\Admin\\AdminServiceProvider"
  779. ],
  780. "aliases": {
  781. "Admin": "Encore\\Admin\\Facades\\Admin"
  782. }
  783. }
  784. },
  785. "autoload": {
  786. "psr-4": {
  787. "Encore\\Admin\\": "src/"
  788. },
  789. "files": [
  790. "src/helpers.php"
  791. ]
  792. },
  793. "notification-url": "https://packagist.org/downloads/",
  794. "license": [
  795. "MIT"
  796. ],
  797. "authors": [
  798. {
  799. "name": "zsong",
  800. "email": "zosong@126.com"
  801. }
  802. ],
  803. "description": "laravel admin",
  804. "homepage": "https://github.com/z-song/laravel-admin",
  805. "keywords": [
  806. "admin",
  807. "form",
  808. "grid",
  809. "laravel"
  810. ],
  811. "time": "2020-05-09T03:47:29+00:00"
  812. },
  813. {
  814. "name": "fideloper/proxy",
  815. "version": "4.3.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/fideloper/TrustedProxy.git",
  819. "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
  824. "reference": "ec38ad69ee378a1eec04fb0e417a97cfaf7ed11a",
  825. "shasum": "",
  826. "mirrors": [
  827. {
  828. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  829. "preferred": true
  830. }
  831. ]
  832. },
  833. "require": {
  834. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  835. "php": ">=5.4.0"
  836. },
  837. "require-dev": {
  838. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  839. "mockery/mockery": "^1.0",
  840. "phpunit/phpunit": "^6.0"
  841. },
  842. "type": "library",
  843. "extra": {
  844. "laravel": {
  845. "providers": [
  846. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  847. ]
  848. }
  849. },
  850. "autoload": {
  851. "psr-4": {
  852. "Fideloper\\Proxy\\": "src/"
  853. }
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "MIT"
  858. ],
  859. "authors": [
  860. {
  861. "name": "Chris Fidao",
  862. "email": "fideloper@gmail.com"
  863. }
  864. ],
  865. "description": "Set trusted proxies for Laravel",
  866. "keywords": [
  867. "load balancing",
  868. "proxy",
  869. "trusted proxy"
  870. ],
  871. "time": "2020-02-22T01:51:47+00:00"
  872. },
  873. {
  874. "name": "fruitcake/laravel-cors",
  875. "version": "v1.0.6",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/fruitcake/laravel-cors.git",
  879. "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/1d127dbec313e2e227d65e0c483765d8d7559bf6",
  884. "reference": "1d127dbec313e2e227d65e0c483765d8d7559bf6",
  885. "shasum": "",
  886. "mirrors": [
  887. {
  888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  889. "preferred": true
  890. }
  891. ]
  892. },
  893. "require": {
  894. "asm89/stack-cors": "^1.3",
  895. "illuminate/contracts": "^5.5|^6.0|^7.0|^8.0",
  896. "illuminate/support": "^5.5|^6.0|^7.0|^8.0",
  897. "php": ">=7",
  898. "symfony/http-foundation": "^3.3|^4.0|^5.0",
  899. "symfony/http-kernel": "^3.3|^4.0|^5.0"
  900. },
  901. "require-dev": {
  902. "laravel/framework": "^5.5|^6.0|^7.0|^8.0",
  903. "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
  904. "phpro/grumphp": "^0.16|^0.17",
  905. "phpunit/phpunit": "^6.0|^7.0|^8.0",
  906. "squizlabs/php_codesniffer": "^3.5"
  907. },
  908. "type": "library",
  909. "extra": {
  910. "branch-alias": {
  911. "dev-master": "1.0-dev"
  912. },
  913. "laravel": {
  914. "providers": [
  915. "Fruitcake\\Cors\\CorsServiceProvider"
  916. ]
  917. }
  918. },
  919. "autoload": {
  920. "psr-4": {
  921. "Fruitcake\\Cors\\": "src/"
  922. }
  923. },
  924. "notification-url": "https://packagist.org/downloads/",
  925. "license": [
  926. "MIT"
  927. ],
  928. "authors": [
  929. {
  930. "name": "Fruitcake",
  931. "homepage": "https://fruitcake.nl"
  932. },
  933. {
  934. "name": "Barry vd. Heuvel",
  935. "email": "barryvdh@gmail.com"
  936. }
  937. ],
  938. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  939. "keywords": [
  940. "api",
  941. "cors",
  942. "crossdomain",
  943. "laravel"
  944. ],
  945. "funding": [
  946. {
  947. "url": "https://github.com/barryvdh",
  948. "type": "github"
  949. }
  950. ],
  951. "time": "2020-04-28T08:47:37+00:00"
  952. },
  953. {
  954. "name": "guzzlehttp/guzzle",
  955. "version": "6.5.3",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/guzzle/guzzle.git",
  959. "reference": "aab4ebd862aa7d04f01a4b51849d657db56d882e"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/aab4ebd862aa7d04f01a4b51849d657db56d882e",
  964. "reference": "aab4ebd862aa7d04f01a4b51849d657db56d882e",
  965. "shasum": "",
  966. "mirrors": [
  967. {
  968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  969. "preferred": true
  970. }
  971. ]
  972. },
  973. "require": {
  974. "ext-json": "*",
  975. "guzzlehttp/promises": "^1.0",
  976. "guzzlehttp/psr7": "^1.6.1",
  977. "php": ">=5.5",
  978. "symfony/polyfill-intl-idn": "^1.11"
  979. },
  980. "require-dev": {
  981. "ext-curl": "*",
  982. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  983. "psr/log": "^1.1"
  984. },
  985. "suggest": {
  986. "psr/log": "Required for using the Log middleware"
  987. },
  988. "type": "library",
  989. "extra": {
  990. "branch-alias": {
  991. "dev-master": "6.5-dev"
  992. }
  993. },
  994. "autoload": {
  995. "psr-4": {
  996. "GuzzleHttp\\": "src/"
  997. },
  998. "files": [
  999. "src/functions_include.php"
  1000. ]
  1001. },
  1002. "notification-url": "https://packagist.org/downloads/",
  1003. "license": [
  1004. "MIT"
  1005. ],
  1006. "authors": [
  1007. {
  1008. "name": "Michael Dowling",
  1009. "email": "mtdowling@gmail.com",
  1010. "homepage": "https://github.com/mtdowling"
  1011. }
  1012. ],
  1013. "description": "Guzzle is a PHP HTTP client library",
  1014. "homepage": "http://guzzlephp.org/",
  1015. "keywords": [
  1016. "client",
  1017. "curl",
  1018. "framework",
  1019. "http",
  1020. "http client",
  1021. "rest",
  1022. "web service"
  1023. ],
  1024. "time": "2020-04-18T10:38:46+00:00"
  1025. },
  1026. {
  1027. "name": "guzzlehttp/promises",
  1028. "version": "v1.3.1",
  1029. "source": {
  1030. "type": "git",
  1031. "url": "https://github.com/guzzle/promises.git",
  1032. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1033. },
  1034. "dist": {
  1035. "type": "zip",
  1036. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1037. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1038. "shasum": "",
  1039. "mirrors": [
  1040. {
  1041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1042. "preferred": true
  1043. }
  1044. ]
  1045. },
  1046. "require": {
  1047. "php": ">=5.5.0"
  1048. },
  1049. "require-dev": {
  1050. "phpunit/phpunit": "^4.0"
  1051. },
  1052. "type": "library",
  1053. "extra": {
  1054. "branch-alias": {
  1055. "dev-master": "1.4-dev"
  1056. }
  1057. },
  1058. "autoload": {
  1059. "psr-4": {
  1060. "GuzzleHttp\\Promise\\": "src/"
  1061. },
  1062. "files": [
  1063. "src/functions_include.php"
  1064. ]
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "MIT"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Michael Dowling",
  1073. "email": "mtdowling@gmail.com",
  1074. "homepage": "https://github.com/mtdowling"
  1075. }
  1076. ],
  1077. "description": "Guzzle promises library",
  1078. "keywords": [
  1079. "promise"
  1080. ],
  1081. "time": "2016-12-20T10:07:11+00:00"
  1082. },
  1083. {
  1084. "name": "guzzlehttp/psr7",
  1085. "version": "1.6.1",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/guzzle/psr7.git",
  1089. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  1094. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  1095. "shasum": "",
  1096. "mirrors": [
  1097. {
  1098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1099. "preferred": true
  1100. }
  1101. ]
  1102. },
  1103. "require": {
  1104. "php": ">=5.4.0",
  1105. "psr/http-message": "~1.0",
  1106. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1107. },
  1108. "provide": {
  1109. "psr/http-message-implementation": "1.0"
  1110. },
  1111. "require-dev": {
  1112. "ext-zlib": "*",
  1113. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1114. },
  1115. "suggest": {
  1116. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  1117. },
  1118. "type": "library",
  1119. "extra": {
  1120. "branch-alias": {
  1121. "dev-master": "1.6-dev"
  1122. }
  1123. },
  1124. "autoload": {
  1125. "psr-4": {
  1126. "GuzzleHttp\\Psr7\\": "src/"
  1127. },
  1128. "files": [
  1129. "src/functions_include.php"
  1130. ]
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Michael Dowling",
  1139. "email": "mtdowling@gmail.com",
  1140. "homepage": "https://github.com/mtdowling"
  1141. },
  1142. {
  1143. "name": "Tobias Schultze",
  1144. "homepage": "https://github.com/Tobion"
  1145. }
  1146. ],
  1147. "description": "PSR-7 message implementation that also provides common utility methods",
  1148. "keywords": [
  1149. "http",
  1150. "message",
  1151. "psr-7",
  1152. "request",
  1153. "response",
  1154. "stream",
  1155. "uri",
  1156. "url"
  1157. ],
  1158. "time": "2019-07-01T23:21:34+00:00"
  1159. },
  1160. {
  1161. "name": "laravel/framework",
  1162. "version": "v7.10.3",
  1163. "source": {
  1164. "type": "git",
  1165. "url": "https://github.com/laravel/framework.git",
  1166. "reference": "6e927e78aafd578d59c99608e7f0e23a5f7bfc5a"
  1167. },
  1168. "dist": {
  1169. "type": "zip",
  1170. "url": "https://api.github.com/repos/laravel/framework/zipball/6e927e78aafd578d59c99608e7f0e23a5f7bfc5a",
  1171. "reference": "6e927e78aafd578d59c99608e7f0e23a5f7bfc5a",
  1172. "shasum": "",
  1173. "mirrors": [
  1174. {
  1175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1176. "preferred": true
  1177. }
  1178. ]
  1179. },
  1180. "require": {
  1181. "doctrine/inflector": "^1.1",
  1182. "dragonmantank/cron-expression": "^2.0",
  1183. "egulias/email-validator": "^2.1.10",
  1184. "ext-json": "*",
  1185. "ext-mbstring": "*",
  1186. "ext-openssl": "*",
  1187. "league/commonmark": "^1.3",
  1188. "league/flysystem": "^1.0.8",
  1189. "monolog/monolog": "^2.0",
  1190. "nesbot/carbon": "^2.17",
  1191. "opis/closure": "^3.1",
  1192. "php": "^7.2.5",
  1193. "psr/container": "^1.0",
  1194. "psr/simple-cache": "^1.0",
  1195. "ramsey/uuid": "^3.7|^4.0",
  1196. "swiftmailer/swiftmailer": "^6.0",
  1197. "symfony/console": "^5.0",
  1198. "symfony/error-handler": "^5.0",
  1199. "symfony/finder": "^5.0",
  1200. "symfony/http-foundation": "^5.0",
  1201. "symfony/http-kernel": "^5.0",
  1202. "symfony/mime": "^5.0",
  1203. "symfony/process": "^5.0",
  1204. "symfony/routing": "^5.0",
  1205. "symfony/var-dumper": "^5.0",
  1206. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1207. "vlucas/phpdotenv": "^4.0",
  1208. "voku/portable-ascii": "^1.4.8"
  1209. },
  1210. "conflict": {
  1211. "tightenco/collect": "<5.5.33"
  1212. },
  1213. "replace": {
  1214. "illuminate/auth": "self.version",
  1215. "illuminate/broadcasting": "self.version",
  1216. "illuminate/bus": "self.version",
  1217. "illuminate/cache": "self.version",
  1218. "illuminate/config": "self.version",
  1219. "illuminate/console": "self.version",
  1220. "illuminate/container": "self.version",
  1221. "illuminate/contracts": "self.version",
  1222. "illuminate/cookie": "self.version",
  1223. "illuminate/database": "self.version",
  1224. "illuminate/encryption": "self.version",
  1225. "illuminate/events": "self.version",
  1226. "illuminate/filesystem": "self.version",
  1227. "illuminate/hashing": "self.version",
  1228. "illuminate/http": "self.version",
  1229. "illuminate/log": "self.version",
  1230. "illuminate/mail": "self.version",
  1231. "illuminate/notifications": "self.version",
  1232. "illuminate/pagination": "self.version",
  1233. "illuminate/pipeline": "self.version",
  1234. "illuminate/queue": "self.version",
  1235. "illuminate/redis": "self.version",
  1236. "illuminate/routing": "self.version",
  1237. "illuminate/session": "self.version",
  1238. "illuminate/support": "self.version",
  1239. "illuminate/testing": "self.version",
  1240. "illuminate/translation": "self.version",
  1241. "illuminate/validation": "self.version",
  1242. "illuminate/view": "self.version"
  1243. },
  1244. "require-dev": {
  1245. "aws/aws-sdk-php": "^3.0",
  1246. "doctrine/dbal": "^2.6",
  1247. "filp/whoops": "^2.4",
  1248. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1249. "league/flysystem-cached-adapter": "^1.0",
  1250. "mockery/mockery": "^1.3.1",
  1251. "moontoast/math": "^1.1",
  1252. "orchestra/testbench-core": "^5.0",
  1253. "pda/pheanstalk": "^4.0",
  1254. "phpunit/phpunit": "^8.4|^9.0",
  1255. "predis/predis": "^1.1.1",
  1256. "symfony/cache": "^5.0"
  1257. },
  1258. "suggest": {
  1259. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1260. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1261. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1262. "ext-memcached": "Required to use the memcache cache driver.",
  1263. "ext-pcntl": "Required to use all features of the queue worker.",
  1264. "ext-posix": "Required to use all features of the queue worker.",
  1265. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1266. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1267. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1268. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  1269. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1270. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1271. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1272. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1273. "mockery/mockery": "Required to use mocking (^1.3.1).",
  1274. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1275. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1276. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1277. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  1278. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1279. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1280. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1281. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1282. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1283. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1284. },
  1285. "type": "library",
  1286. "extra": {
  1287. "branch-alias": {
  1288. "dev-master": "7.x-dev"
  1289. }
  1290. },
  1291. "autoload": {
  1292. "files": [
  1293. "src/Illuminate/Foundation/helpers.php",
  1294. "src/Illuminate/Support/helpers.php"
  1295. ],
  1296. "psr-4": {
  1297. "Illuminate\\": "src/Illuminate/"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Taylor Otwell",
  1307. "email": "taylor@laravel.com"
  1308. }
  1309. ],
  1310. "description": "The Laravel Framework.",
  1311. "homepage": "https://laravel.com",
  1312. "keywords": [
  1313. "framework",
  1314. "laravel"
  1315. ],
  1316. "time": "2020-05-06T15:36:00+00:00"
  1317. },
  1318. {
  1319. "name": "laravel/tinker",
  1320. "version": "v2.4.0",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/laravel/tinker.git",
  1324. "reference": "cde90a7335a2130a4488beb68f4b2141869241db"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/laravel/tinker/zipball/cde90a7335a2130a4488beb68f4b2141869241db",
  1329. "reference": "cde90a7335a2130a4488beb68f4b2141869241db",
  1330. "shasum": "",
  1331. "mirrors": [
  1332. {
  1333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1334. "preferred": true
  1335. }
  1336. ]
  1337. },
  1338. "require": {
  1339. "illuminate/console": "^6.0|^7.0|^8.0",
  1340. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1341. "illuminate/support": "^6.0|^7.0|^8.0",
  1342. "php": "^7.2",
  1343. "psy/psysh": "^0.10.3",
  1344. "symfony/var-dumper": "^4.3|^5.0"
  1345. },
  1346. "require-dev": {
  1347. "mockery/mockery": "^1.3.1",
  1348. "phpunit/phpunit": "^8.4|^9.0"
  1349. },
  1350. "suggest": {
  1351. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "branch-alias": {
  1356. "dev-master": "2.x-dev"
  1357. },
  1358. "laravel": {
  1359. "providers": [
  1360. "Laravel\\Tinker\\TinkerServiceProvider"
  1361. ]
  1362. }
  1363. },
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Laravel\\Tinker\\": "src/"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "Taylor Otwell",
  1376. "email": "taylor@laravel.com"
  1377. }
  1378. ],
  1379. "description": "Powerful REPL for the Laravel framework.",
  1380. "keywords": [
  1381. "REPL",
  1382. "Tinker",
  1383. "laravel",
  1384. "psysh"
  1385. ],
  1386. "time": "2020-04-07T15:01:31+00:00"
  1387. },
  1388. {
  1389. "name": "league/commonmark",
  1390. "version": "1.4.3",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/thephpleague/commonmark.git",
  1394. "reference": "412639f7cfbc0b31ad2455b2fe965095f66ae505"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/412639f7cfbc0b31ad2455b2fe965095f66ae505",
  1399. "reference": "412639f7cfbc0b31ad2455b2fe965095f66ae505",
  1400. "shasum": "",
  1401. "mirrors": [
  1402. {
  1403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1404. "preferred": true
  1405. }
  1406. ]
  1407. },
  1408. "require": {
  1409. "ext-mbstring": "*",
  1410. "php": "^7.1"
  1411. },
  1412. "conflict": {
  1413. "scrutinizer/ocular": "1.7.*"
  1414. },
  1415. "require-dev": {
  1416. "cebe/markdown": "~1.0",
  1417. "commonmark/commonmark.js": "0.29.1",
  1418. "erusev/parsedown": "~1.0",
  1419. "ext-json": "*",
  1420. "github/gfm": "0.29.0",
  1421. "michelf/php-markdown": "~1.4",
  1422. "mikehaertl/php-shellcommand": "^1.4",
  1423. "phpstan/phpstan": "^0.12",
  1424. "phpunit/phpunit": "^7.5",
  1425. "scrutinizer/ocular": "^1.5",
  1426. "symfony/finder": "^4.2"
  1427. },
  1428. "bin": [
  1429. "bin/commonmark"
  1430. ],
  1431. "type": "library",
  1432. "extra": {
  1433. "branch-alias": {
  1434. "dev-master": "1.4-dev"
  1435. }
  1436. },
  1437. "autoload": {
  1438. "psr-4": {
  1439. "League\\CommonMark\\": "src"
  1440. }
  1441. },
  1442. "notification-url": "https://packagist.org/downloads/",
  1443. "license": [
  1444. "BSD-3-Clause"
  1445. ],
  1446. "authors": [
  1447. {
  1448. "name": "Colin O'Dell",
  1449. "email": "colinodell@gmail.com",
  1450. "homepage": "https://www.colinodell.com",
  1451. "role": "Lead Developer"
  1452. }
  1453. ],
  1454. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1455. "homepage": "https://commonmark.thephpleague.com",
  1456. "keywords": [
  1457. "commonmark",
  1458. "flavored",
  1459. "gfm",
  1460. "github",
  1461. "github-flavored",
  1462. "markdown",
  1463. "md",
  1464. "parser"
  1465. ],
  1466. "funding": [
  1467. {
  1468. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1469. "type": "custom"
  1470. },
  1471. {
  1472. "url": "https://www.colinodell.com/sponsor",
  1473. "type": "custom"
  1474. },
  1475. {
  1476. "url": "https://www.paypal.me/colinpodell/10.00",
  1477. "type": "custom"
  1478. },
  1479. {
  1480. "url": "https://github.com/colinodell",
  1481. "type": "github"
  1482. },
  1483. {
  1484. "url": "https://www.patreon.com/colinodell",
  1485. "type": "patreon"
  1486. },
  1487. {
  1488. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1489. "type": "tidelift"
  1490. }
  1491. ],
  1492. "time": "2020-05-04T22:15:21+00:00"
  1493. },
  1494. {
  1495. "name": "league/flysystem",
  1496. "version": "1.0.67",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/thephpleague/flysystem.git",
  1500. "reference": "5b1f36c75c4bdde981294c2a0ebdb437ee6f275e"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5b1f36c75c4bdde981294c2a0ebdb437ee6f275e",
  1505. "reference": "5b1f36c75c4bdde981294c2a0ebdb437ee6f275e",
  1506. "shasum": "",
  1507. "mirrors": [
  1508. {
  1509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1510. "preferred": true
  1511. }
  1512. ]
  1513. },
  1514. "require": {
  1515. "ext-fileinfo": "*",
  1516. "php": ">=5.5.9"
  1517. },
  1518. "conflict": {
  1519. "league/flysystem-sftp": "<1.0.6"
  1520. },
  1521. "require-dev": {
  1522. "phpspec/phpspec": "^3.4",
  1523. "phpunit/phpunit": "^5.7.26"
  1524. },
  1525. "suggest": {
  1526. "ext-fileinfo": "Required for MimeType",
  1527. "ext-ftp": "Allows you to use FTP server storage",
  1528. "ext-openssl": "Allows you to use FTPS server storage",
  1529. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1530. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1531. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1532. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1533. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1534. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1535. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1536. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1537. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1538. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1539. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1540. },
  1541. "type": "library",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "1.1-dev"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "psr-4": {
  1549. "League\\Flysystem\\": "src/"
  1550. }
  1551. },
  1552. "notification-url": "https://packagist.org/downloads/",
  1553. "license": [
  1554. "MIT"
  1555. ],
  1556. "authors": [
  1557. {
  1558. "name": "Frank de Jonge",
  1559. "email": "info@frenky.net"
  1560. }
  1561. ],
  1562. "description": "Filesystem abstraction: Many filesystems, one API.",
  1563. "keywords": [
  1564. "Cloud Files",
  1565. "WebDAV",
  1566. "abstraction",
  1567. "aws",
  1568. "cloud",
  1569. "copy.com",
  1570. "dropbox",
  1571. "file systems",
  1572. "files",
  1573. "filesystem",
  1574. "filesystems",
  1575. "ftp",
  1576. "rackspace",
  1577. "remote",
  1578. "s3",
  1579. "sftp",
  1580. "storage"
  1581. ],
  1582. "funding": [
  1583. {
  1584. "url": "https://offset.earth/frankdejonge",
  1585. "type": "other"
  1586. }
  1587. ],
  1588. "time": "2020-04-16T13:21:26+00:00"
  1589. },
  1590. {
  1591. "name": "monolog/monolog",
  1592. "version": "2.0.2",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/Seldaek/monolog.git",
  1596. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8",
  1601. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8",
  1602. "shasum": "",
  1603. "mirrors": [
  1604. {
  1605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1606. "preferred": true
  1607. }
  1608. ]
  1609. },
  1610. "require": {
  1611. "php": "^7.2",
  1612. "psr/log": "^1.0.1"
  1613. },
  1614. "provide": {
  1615. "psr/log-implementation": "1.0.0"
  1616. },
  1617. "require-dev": {
  1618. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1619. "doctrine/couchdb": "~1.0@dev",
  1620. "elasticsearch/elasticsearch": "^6.0",
  1621. "graylog2/gelf-php": "^1.4.2",
  1622. "jakub-onderka/php-parallel-lint": "^0.9",
  1623. "php-amqplib/php-amqplib": "~2.4",
  1624. "php-console/php-console": "^3.1.3",
  1625. "phpspec/prophecy": "^1.6.1",
  1626. "phpunit/phpunit": "^8.3",
  1627. "predis/predis": "^1.1",
  1628. "rollbar/rollbar": "^1.3",
  1629. "ruflin/elastica": ">=0.90 <3.0",
  1630. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1631. },
  1632. "suggest": {
  1633. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1634. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1635. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1636. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1637. "ext-mbstring": "Allow to work properly with unicode symbols",
  1638. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1639. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1640. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1641. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1642. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1643. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1644. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1645. },
  1646. "type": "library",
  1647. "extra": {
  1648. "branch-alias": {
  1649. "dev-master": "2.x-dev"
  1650. }
  1651. },
  1652. "autoload": {
  1653. "psr-4": {
  1654. "Monolog\\": "src/Monolog"
  1655. }
  1656. },
  1657. "notification-url": "https://packagist.org/downloads/",
  1658. "license": [
  1659. "MIT"
  1660. ],
  1661. "authors": [
  1662. {
  1663. "name": "Jordi Boggiano",
  1664. "email": "j.boggiano@seld.be",
  1665. "homepage": "http://seld.be"
  1666. }
  1667. ],
  1668. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1669. "homepage": "http://github.com/Seldaek/monolog",
  1670. "keywords": [
  1671. "log",
  1672. "logging",
  1673. "psr-3"
  1674. ],
  1675. "time": "2019-12-20T14:22:59+00:00"
  1676. },
  1677. {
  1678. "name": "nesbot/carbon",
  1679. "version": "2.33.0",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/briannesbitt/Carbon.git",
  1683. "reference": "4d93cb95a80d9ffbff4018fe58ae3b7dd7f4b99b"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4d93cb95a80d9ffbff4018fe58ae3b7dd7f4b99b",
  1688. "reference": "4d93cb95a80d9ffbff4018fe58ae3b7dd7f4b99b",
  1689. "shasum": "",
  1690. "mirrors": [
  1691. {
  1692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1693. "preferred": true
  1694. }
  1695. ]
  1696. },
  1697. "require": {
  1698. "ext-json": "*",
  1699. "php": "^7.1.8 || ^8.0",
  1700. "symfony/polyfill-mbstring": "^1.0",
  1701. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1702. },
  1703. "require-dev": {
  1704. "doctrine/orm": "^2.7",
  1705. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1706. "kylekatarnls/multi-tester": "^1.1",
  1707. "phpmd/phpmd": "^2.8",
  1708. "phpstan/phpstan": "^0.11",
  1709. "phpunit/phpunit": "^7.5 || ^8.0",
  1710. "squizlabs/php_codesniffer": "^3.4"
  1711. },
  1712. "bin": [
  1713. "bin/carbon"
  1714. ],
  1715. "type": "library",
  1716. "extra": {
  1717. "branch-alias": {
  1718. "dev-master": "2.x-dev"
  1719. },
  1720. "laravel": {
  1721. "providers": [
  1722. "Carbon\\Laravel\\ServiceProvider"
  1723. ]
  1724. }
  1725. },
  1726. "autoload": {
  1727. "psr-4": {
  1728. "Carbon\\": "src/Carbon/"
  1729. }
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "MIT"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Brian Nesbitt",
  1738. "email": "brian@nesbot.com",
  1739. "homepage": "http://nesbot.com"
  1740. },
  1741. {
  1742. "name": "kylekatarnls",
  1743. "homepage": "http://github.com/kylekatarnls"
  1744. }
  1745. ],
  1746. "description": "An API extension for DateTime that supports 281 different languages.",
  1747. "homepage": "http://carbon.nesbot.com",
  1748. "keywords": [
  1749. "date",
  1750. "datetime",
  1751. "time"
  1752. ],
  1753. "funding": [
  1754. {
  1755. "url": "https://opencollective.com/Carbon",
  1756. "type": "open_collective"
  1757. },
  1758. {
  1759. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1760. "type": "tidelift"
  1761. }
  1762. ],
  1763. "time": "2020-04-20T15:05:43+00:00"
  1764. },
  1765. {
  1766. "name": "nikic/php-parser",
  1767. "version": "v4.4.0",
  1768. "source": {
  1769. "type": "git",
  1770. "url": "https://github.com/nikic/PHP-Parser.git",
  1771. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  1772. },
  1773. "dist": {
  1774. "type": "zip",
  1775. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  1776. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  1777. "shasum": "",
  1778. "mirrors": [
  1779. {
  1780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1781. "preferred": true
  1782. }
  1783. ]
  1784. },
  1785. "require": {
  1786. "ext-tokenizer": "*",
  1787. "php": ">=7.0"
  1788. },
  1789. "require-dev": {
  1790. "ircmaxell/php-yacc": "0.0.5",
  1791. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  1792. },
  1793. "bin": [
  1794. "bin/php-parse"
  1795. ],
  1796. "type": "library",
  1797. "extra": {
  1798. "branch-alias": {
  1799. "dev-master": "4.3-dev"
  1800. }
  1801. },
  1802. "autoload": {
  1803. "psr-4": {
  1804. "PhpParser\\": "lib/PhpParser"
  1805. }
  1806. },
  1807. "notification-url": "https://packagist.org/downloads/",
  1808. "license": [
  1809. "BSD-3-Clause"
  1810. ],
  1811. "authors": [
  1812. {
  1813. "name": "Nikita Popov"
  1814. }
  1815. ],
  1816. "description": "A PHP parser written in PHP",
  1817. "keywords": [
  1818. "parser",
  1819. "php"
  1820. ],
  1821. "time": "2020-04-10T16:34:50+00:00"
  1822. },
  1823. {
  1824. "name": "opis/closure",
  1825. "version": "3.5.1",
  1826. "source": {
  1827. "type": "git",
  1828. "url": "https://github.com/opis/closure.git",
  1829. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
  1830. },
  1831. "dist": {
  1832. "type": "zip",
  1833. "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
  1834. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
  1835. "shasum": "",
  1836. "mirrors": [
  1837. {
  1838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1839. "preferred": true
  1840. }
  1841. ]
  1842. },
  1843. "require": {
  1844. "php": "^5.4 || ^7.0"
  1845. },
  1846. "require-dev": {
  1847. "jeremeamia/superclosure": "^2.0",
  1848. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1849. },
  1850. "type": "library",
  1851. "extra": {
  1852. "branch-alias": {
  1853. "dev-master": "3.5.x-dev"
  1854. }
  1855. },
  1856. "autoload": {
  1857. "psr-4": {
  1858. "Opis\\Closure\\": "src/"
  1859. },
  1860. "files": [
  1861. "functions.php"
  1862. ]
  1863. },
  1864. "notification-url": "https://packagist.org/downloads/",
  1865. "license": [
  1866. "MIT"
  1867. ],
  1868. "authors": [
  1869. {
  1870. "name": "Marius Sarca",
  1871. "email": "marius.sarca@gmail.com"
  1872. },
  1873. {
  1874. "name": "Sorin Sarca",
  1875. "email": "sarca_sorin@hotmail.com"
  1876. }
  1877. ],
  1878. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1879. "homepage": "https://opis.io/closure",
  1880. "keywords": [
  1881. "anonymous functions",
  1882. "closure",
  1883. "function",
  1884. "serializable",
  1885. "serialization",
  1886. "serialize"
  1887. ],
  1888. "time": "2019-11-29T22:36:02+00:00"
  1889. },
  1890. {
  1891. "name": "phpoption/phpoption",
  1892. "version": "1.7.3",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/schmittjoh/php-option.git",
  1896. "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
  1901. "reference": "4acfd6a4b33a509d8c88f50e5222f734b6aeebae",
  1902. "shasum": "",
  1903. "mirrors": [
  1904. {
  1905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1906. "preferred": true
  1907. }
  1908. ]
  1909. },
  1910. "require": {
  1911. "php": "^5.5.9 || ^7.0 || ^8.0"
  1912. },
  1913. "require-dev": {
  1914. "bamarni/composer-bin-plugin": "^1.3",
  1915. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  1916. },
  1917. "type": "library",
  1918. "extra": {
  1919. "branch-alias": {
  1920. "dev-master": "1.7-dev"
  1921. }
  1922. },
  1923. "autoload": {
  1924. "psr-4": {
  1925. "PhpOption\\": "src/PhpOption/"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "Apache-2.0"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Johannes M. Schmitt",
  1935. "email": "schmittjoh@gmail.com"
  1936. },
  1937. {
  1938. "name": "Graham Campbell",
  1939. "email": "graham@alt-three.com"
  1940. }
  1941. ],
  1942. "description": "Option Type for PHP",
  1943. "keywords": [
  1944. "language",
  1945. "option",
  1946. "php",
  1947. "type"
  1948. ],
  1949. "time": "2020-03-21T18:07:53+00:00"
  1950. },
  1951. {
  1952. "name": "psr/container",
  1953. "version": "1.0.0",
  1954. "source": {
  1955. "type": "git",
  1956. "url": "https://github.com/php-fig/container.git",
  1957. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1958. },
  1959. "dist": {
  1960. "type": "zip",
  1961. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1962. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1963. "shasum": "",
  1964. "mirrors": [
  1965. {
  1966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1967. "preferred": true
  1968. }
  1969. ]
  1970. },
  1971. "require": {
  1972. "php": ">=5.3.0"
  1973. },
  1974. "type": "library",
  1975. "extra": {
  1976. "branch-alias": {
  1977. "dev-master": "1.0.x-dev"
  1978. }
  1979. },
  1980. "autoload": {
  1981. "psr-4": {
  1982. "Psr\\Container\\": "src/"
  1983. }
  1984. },
  1985. "notification-url": "https://packagist.org/downloads/",
  1986. "license": [
  1987. "MIT"
  1988. ],
  1989. "authors": [
  1990. {
  1991. "name": "PHP-FIG",
  1992. "homepage": "http://www.php-fig.org/"
  1993. }
  1994. ],
  1995. "description": "Common Container Interface (PHP FIG PSR-11)",
  1996. "homepage": "https://github.com/php-fig/container",
  1997. "keywords": [
  1998. "PSR-11",
  1999. "container",
  2000. "container-interface",
  2001. "container-interop",
  2002. "psr"
  2003. ],
  2004. "time": "2017-02-14T16:28:37+00:00"
  2005. },
  2006. {
  2007. "name": "psr/event-dispatcher",
  2008. "version": "1.0.0",
  2009. "source": {
  2010. "type": "git",
  2011. "url": "https://github.com/php-fig/event-dispatcher.git",
  2012. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2013. },
  2014. "dist": {
  2015. "type": "zip",
  2016. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2017. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2018. "shasum": "",
  2019. "mirrors": [
  2020. {
  2021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2022. "preferred": true
  2023. }
  2024. ]
  2025. },
  2026. "require": {
  2027. "php": ">=7.2.0"
  2028. },
  2029. "type": "library",
  2030. "extra": {
  2031. "branch-alias": {
  2032. "dev-master": "1.0.x-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Psr\\EventDispatcher\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "authors": [
  2045. {
  2046. "name": "PHP-FIG",
  2047. "homepage": "http://www.php-fig.org/"
  2048. }
  2049. ],
  2050. "description": "Standard interfaces for event handling.",
  2051. "keywords": [
  2052. "events",
  2053. "psr",
  2054. "psr-14"
  2055. ],
  2056. "time": "2019-01-08T18:20:26+00:00"
  2057. },
  2058. {
  2059. "name": "psr/http-message",
  2060. "version": "1.0.1",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/php-fig/http-message.git",
  2064. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2069. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2070. "shasum": "",
  2071. "mirrors": [
  2072. {
  2073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2074. "preferred": true
  2075. }
  2076. ]
  2077. },
  2078. "require": {
  2079. "php": ">=5.3.0"
  2080. },
  2081. "type": "library",
  2082. "extra": {
  2083. "branch-alias": {
  2084. "dev-master": "1.0.x-dev"
  2085. }
  2086. },
  2087. "autoload": {
  2088. "psr-4": {
  2089. "Psr\\Http\\Message\\": "src/"
  2090. }
  2091. },
  2092. "notification-url": "https://packagist.org/downloads/",
  2093. "license": [
  2094. "MIT"
  2095. ],
  2096. "authors": [
  2097. {
  2098. "name": "PHP-FIG",
  2099. "homepage": "http://www.php-fig.org/"
  2100. }
  2101. ],
  2102. "description": "Common interface for HTTP messages",
  2103. "homepage": "https://github.com/php-fig/http-message",
  2104. "keywords": [
  2105. "http",
  2106. "http-message",
  2107. "psr",
  2108. "psr-7",
  2109. "request",
  2110. "response"
  2111. ],
  2112. "time": "2016-08-06T14:39:51+00:00"
  2113. },
  2114. {
  2115. "name": "psr/log",
  2116. "version": "1.1.3",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/php-fig/log.git",
  2120. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2125. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2126. "shasum": "",
  2127. "mirrors": [
  2128. {
  2129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2130. "preferred": true
  2131. }
  2132. ]
  2133. },
  2134. "require": {
  2135. "php": ">=5.3.0"
  2136. },
  2137. "type": "library",
  2138. "extra": {
  2139. "branch-alias": {
  2140. "dev-master": "1.1.x-dev"
  2141. }
  2142. },
  2143. "autoload": {
  2144. "psr-4": {
  2145. "Psr\\Log\\": "Psr/Log/"
  2146. }
  2147. },
  2148. "notification-url": "https://packagist.org/downloads/",
  2149. "license": [
  2150. "MIT"
  2151. ],
  2152. "authors": [
  2153. {
  2154. "name": "PHP-FIG",
  2155. "homepage": "http://www.php-fig.org/"
  2156. }
  2157. ],
  2158. "description": "Common interface for logging libraries",
  2159. "homepage": "https://github.com/php-fig/log",
  2160. "keywords": [
  2161. "log",
  2162. "psr",
  2163. "psr-3"
  2164. ],
  2165. "time": "2020-03-23T09:12:05+00:00"
  2166. },
  2167. {
  2168. "name": "psr/simple-cache",
  2169. "version": "1.0.1",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/php-fig/simple-cache.git",
  2173. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2178. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2179. "shasum": "",
  2180. "mirrors": [
  2181. {
  2182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2183. "preferred": true
  2184. }
  2185. ]
  2186. },
  2187. "require": {
  2188. "php": ">=5.3.0"
  2189. },
  2190. "type": "library",
  2191. "extra": {
  2192. "branch-alias": {
  2193. "dev-master": "1.0.x-dev"
  2194. }
  2195. },
  2196. "autoload": {
  2197. "psr-4": {
  2198. "Psr\\SimpleCache\\": "src/"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "PHP-FIG",
  2208. "homepage": "http://www.php-fig.org/"
  2209. }
  2210. ],
  2211. "description": "Common interfaces for simple caching",
  2212. "keywords": [
  2213. "cache",
  2214. "caching",
  2215. "psr",
  2216. "psr-16",
  2217. "simple-cache"
  2218. ],
  2219. "time": "2017-10-23T01:57:42+00:00"
  2220. },
  2221. {
  2222. "name": "psy/psysh",
  2223. "version": "v0.10.4",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/bobthecow/psysh.git",
  2227. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  2232. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  2233. "shasum": "",
  2234. "mirrors": [
  2235. {
  2236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2237. "preferred": true
  2238. }
  2239. ]
  2240. },
  2241. "require": {
  2242. "dnoegel/php-xdg-base-dir": "0.1.*",
  2243. "ext-json": "*",
  2244. "ext-tokenizer": "*",
  2245. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  2246. "php": "^8.0 || ^7.0 || ^5.5.9",
  2247. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  2248. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  2249. },
  2250. "require-dev": {
  2251. "bamarni/composer-bin-plugin": "^1.2",
  2252. "hoa/console": "3.17.*"
  2253. },
  2254. "suggest": {
  2255. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2256. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2257. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2258. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2259. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2260. },
  2261. "bin": [
  2262. "bin/psysh"
  2263. ],
  2264. "type": "library",
  2265. "extra": {
  2266. "branch-alias": {
  2267. "dev-master": "0.10.x-dev"
  2268. }
  2269. },
  2270. "autoload": {
  2271. "files": [
  2272. "src/functions.php"
  2273. ],
  2274. "psr-4": {
  2275. "Psy\\": "src/"
  2276. }
  2277. },
  2278. "notification-url": "https://packagist.org/downloads/",
  2279. "license": [
  2280. "MIT"
  2281. ],
  2282. "authors": [
  2283. {
  2284. "name": "Justin Hileman",
  2285. "email": "justin@justinhileman.info",
  2286. "homepage": "http://justinhileman.com"
  2287. }
  2288. ],
  2289. "description": "An interactive shell for modern PHP.",
  2290. "homepage": "http://psysh.org",
  2291. "keywords": [
  2292. "REPL",
  2293. "console",
  2294. "interactive",
  2295. "shell"
  2296. ],
  2297. "time": "2020-05-03T19:32:03+00:00"
  2298. },
  2299. {
  2300. "name": "ralouphie/getallheaders",
  2301. "version": "3.0.3",
  2302. "source": {
  2303. "type": "git",
  2304. "url": "https://github.com/ralouphie/getallheaders.git",
  2305. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2306. },
  2307. "dist": {
  2308. "type": "zip",
  2309. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2310. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2311. "shasum": "",
  2312. "mirrors": [
  2313. {
  2314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2315. "preferred": true
  2316. }
  2317. ]
  2318. },
  2319. "require": {
  2320. "php": ">=5.6"
  2321. },
  2322. "require-dev": {
  2323. "php-coveralls/php-coveralls": "^2.1",
  2324. "phpunit/phpunit": "^5 || ^6.5"
  2325. },
  2326. "type": "library",
  2327. "autoload": {
  2328. "files": [
  2329. "src/getallheaders.php"
  2330. ]
  2331. },
  2332. "notification-url": "https://packagist.org/downloads/",
  2333. "license": [
  2334. "MIT"
  2335. ],
  2336. "authors": [
  2337. {
  2338. "name": "Ralph Khattar",
  2339. "email": "ralph.khattar@gmail.com"
  2340. }
  2341. ],
  2342. "description": "A polyfill for getallheaders.",
  2343. "time": "2019-03-08T08:55:37+00:00"
  2344. },
  2345. {
  2346. "name": "ramsey/collection",
  2347. "version": "1.0.1",
  2348. "source": {
  2349. "type": "git",
  2350. "url": "https://github.com/ramsey/collection.git",
  2351. "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca"
  2352. },
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://api.github.com/repos/ramsey/collection/zipball/925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca",
  2356. "reference": "925ad8cf55ba7a3fc92e332c58fd0478ace3e1ca",
  2357. "shasum": "",
  2358. "mirrors": [
  2359. {
  2360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2361. "preferred": true
  2362. }
  2363. ]
  2364. },
  2365. "require": {
  2366. "php": "^7.2"
  2367. },
  2368. "require-dev": {
  2369. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  2370. "fzaninotto/faker": "^1.5",
  2371. "jakub-onderka/php-parallel-lint": "^1",
  2372. "jangregor/phpstan-prophecy": "^0.6",
  2373. "mockery/mockery": "^1.3",
  2374. "phpstan/extension-installer": "^1",
  2375. "phpstan/phpdoc-parser": "0.4.1",
  2376. "phpstan/phpstan": "^0.12",
  2377. "phpstan/phpstan-mockery": "^0.12",
  2378. "phpstan/phpstan-phpunit": "^0.12",
  2379. "phpunit/phpunit": "^8.5",
  2380. "slevomat/coding-standard": "^6.0",
  2381. "squizlabs/php_codesniffer": "^3.5"
  2382. },
  2383. "type": "library",
  2384. "autoload": {
  2385. "psr-4": {
  2386. "Ramsey\\Collection\\": "src/"
  2387. }
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Ben Ramsey",
  2396. "email": "ben@benramsey.com",
  2397. "homepage": "https://benramsey.com"
  2398. }
  2399. ],
  2400. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  2401. "homepage": "https://github.com/ramsey/collection",
  2402. "keywords": [
  2403. "array",
  2404. "collection",
  2405. "hash",
  2406. "map",
  2407. "queue",
  2408. "set"
  2409. ],
  2410. "time": "2020-01-05T00:22:59+00:00"
  2411. },
  2412. {
  2413. "name": "ramsey/uuid",
  2414. "version": "4.0.1",
  2415. "source": {
  2416. "type": "git",
  2417. "url": "https://github.com/ramsey/uuid.git",
  2418. "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d"
  2419. },
  2420. "dist": {
  2421. "type": "zip",
  2422. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d",
  2423. "reference": "ba8fff1d3abb8bb4d35a135ed22a31c6ef3ede3d",
  2424. "shasum": "",
  2425. "mirrors": [
  2426. {
  2427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2428. "preferred": true
  2429. }
  2430. ]
  2431. },
  2432. "require": {
  2433. "brick/math": "^0.8",
  2434. "ext-json": "*",
  2435. "php": "^7.2 || ^8",
  2436. "ramsey/collection": "^1.0",
  2437. "symfony/polyfill-ctype": "^1.8"
  2438. },
  2439. "replace": {
  2440. "rhumsaa/uuid": "self.version"
  2441. },
  2442. "require-dev": {
  2443. "codeception/aspect-mock": "^3",
  2444. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2",
  2445. "doctrine/annotations": "^1.8",
  2446. "goaop/framework": "^2",
  2447. "mockery/mockery": "^1.3",
  2448. "moontoast/math": "^1.1",
  2449. "paragonie/random-lib": "^2",
  2450. "php-mock/php-mock-mockery": "^1.3",
  2451. "php-mock/php-mock-phpunit": "^2.5",
  2452. "php-parallel-lint/php-parallel-lint": "^1.1",
  2453. "phpstan/extension-installer": "^1.0",
  2454. "phpstan/phpdoc-parser": "0.4.3",
  2455. "phpstan/phpstan": "^0.12",
  2456. "phpstan/phpstan-mockery": "^0.12",
  2457. "phpstan/phpstan-phpunit": "^0.12",
  2458. "phpunit/phpunit": "^8.5",
  2459. "psy/psysh": "^0.10.0",
  2460. "slevomat/coding-standard": "^6.0",
  2461. "squizlabs/php_codesniffer": "^3.5",
  2462. "vimeo/psalm": "3.9.4"
  2463. },
  2464. "suggest": {
  2465. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2466. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  2467. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2468. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2469. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2470. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2471. },
  2472. "type": "library",
  2473. "extra": {
  2474. "branch-alias": {
  2475. "dev-master": "4.x-dev"
  2476. }
  2477. },
  2478. "autoload": {
  2479. "psr-4": {
  2480. "Ramsey\\Uuid\\": "src/"
  2481. },
  2482. "files": [
  2483. "src/functions.php"
  2484. ]
  2485. },
  2486. "notification-url": "https://packagist.org/downloads/",
  2487. "license": [
  2488. "MIT"
  2489. ],
  2490. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2491. "homepage": "https://github.com/ramsey/uuid",
  2492. "keywords": [
  2493. "guid",
  2494. "identifier",
  2495. "uuid"
  2496. ],
  2497. "funding": [
  2498. {
  2499. "url": "https://github.com/ramsey",
  2500. "type": "github"
  2501. }
  2502. ],
  2503. "time": "2020-03-29T20:13:32+00:00"
  2504. },
  2505. {
  2506. "name": "swiftmailer/swiftmailer",
  2507. "version": "v6.2.3",
  2508. "source": {
  2509. "type": "git",
  2510. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2511. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  2512. },
  2513. "dist": {
  2514. "type": "zip",
  2515. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2516. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  2517. "shasum": "",
  2518. "mirrors": [
  2519. {
  2520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2521. "preferred": true
  2522. }
  2523. ]
  2524. },
  2525. "require": {
  2526. "egulias/email-validator": "~2.0",
  2527. "php": ">=7.0.0",
  2528. "symfony/polyfill-iconv": "^1.0",
  2529. "symfony/polyfill-intl-idn": "^1.10",
  2530. "symfony/polyfill-mbstring": "^1.0"
  2531. },
  2532. "require-dev": {
  2533. "mockery/mockery": "~0.9.1",
  2534. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2535. },
  2536. "suggest": {
  2537. "ext-intl": "Needed to support internationalized email addresses",
  2538. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2539. },
  2540. "type": "library",
  2541. "extra": {
  2542. "branch-alias": {
  2543. "dev-master": "6.2-dev"
  2544. }
  2545. },
  2546. "autoload": {
  2547. "files": [
  2548. "lib/swift_required.php"
  2549. ]
  2550. },
  2551. "notification-url": "https://packagist.org/downloads/",
  2552. "license": [
  2553. "MIT"
  2554. ],
  2555. "authors": [
  2556. {
  2557. "name": "Chris Corbyn"
  2558. },
  2559. {
  2560. "name": "Fabien Potencier",
  2561. "email": "fabien@symfony.com"
  2562. }
  2563. ],
  2564. "description": "Swiftmailer, free feature-rich PHP mailer",
  2565. "homepage": "https://swiftmailer.symfony.com",
  2566. "keywords": [
  2567. "email",
  2568. "mail",
  2569. "mailer"
  2570. ],
  2571. "time": "2019-11-12T09:31:26+00:00"
  2572. },
  2573. {
  2574. "name": "symfony/console",
  2575. "version": "v5.0.8",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://github.com/symfony/console.git",
  2579. "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://api.github.com/repos/symfony/console/zipball/5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
  2584. "reference": "5fa1caadc8cdaa17bcfb25219f3b53fe294a9935",
  2585. "shasum": "",
  2586. "mirrors": [
  2587. {
  2588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2589. "preferred": true
  2590. }
  2591. ]
  2592. },
  2593. "require": {
  2594. "php": "^7.2.5",
  2595. "symfony/polyfill-mbstring": "~1.0",
  2596. "symfony/polyfill-php73": "^1.8",
  2597. "symfony/service-contracts": "^1.1|^2"
  2598. },
  2599. "conflict": {
  2600. "symfony/dependency-injection": "<4.4",
  2601. "symfony/event-dispatcher": "<4.4",
  2602. "symfony/lock": "<4.4",
  2603. "symfony/process": "<4.4"
  2604. },
  2605. "provide": {
  2606. "psr/log-implementation": "1.0"
  2607. },
  2608. "require-dev": {
  2609. "psr/log": "~1.0",
  2610. "symfony/config": "^4.4|^5.0",
  2611. "symfony/dependency-injection": "^4.4|^5.0",
  2612. "symfony/event-dispatcher": "^4.4|^5.0",
  2613. "symfony/lock": "^4.4|^5.0",
  2614. "symfony/process": "^4.4|^5.0",
  2615. "symfony/var-dumper": "^4.4|^5.0"
  2616. },
  2617. "suggest": {
  2618. "psr/log": "For using the console logger",
  2619. "symfony/event-dispatcher": "",
  2620. "symfony/lock": "",
  2621. "symfony/process": ""
  2622. },
  2623. "type": "library",
  2624. "extra": {
  2625. "branch-alias": {
  2626. "dev-master": "5.0-dev"
  2627. }
  2628. },
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Symfony\\Component\\Console\\": ""
  2632. },
  2633. "exclude-from-classmap": [
  2634. "/Tests/"
  2635. ]
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Fabien Potencier",
  2644. "email": "fabien@symfony.com"
  2645. },
  2646. {
  2647. "name": "Symfony Community",
  2648. "homepage": "https://symfony.com/contributors"
  2649. }
  2650. ],
  2651. "description": "Symfony Console Component",
  2652. "homepage": "https://symfony.com",
  2653. "funding": [
  2654. {
  2655. "url": "https://symfony.com/sponsor",
  2656. "type": "custom"
  2657. },
  2658. {
  2659. "url": "https://github.com/fabpot",
  2660. "type": "github"
  2661. },
  2662. {
  2663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2664. "type": "tidelift"
  2665. }
  2666. ],
  2667. "time": "2020-03-30T11:42:42+00:00"
  2668. },
  2669. {
  2670. "name": "symfony/css-selector",
  2671. "version": "v5.0.8",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/symfony/css-selector.git",
  2675. "reference": "5f8d5271303dad260692ba73dfa21777d38e124e"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5f8d5271303dad260692ba73dfa21777d38e124e",
  2680. "reference": "5f8d5271303dad260692ba73dfa21777d38e124e",
  2681. "shasum": "",
  2682. "mirrors": [
  2683. {
  2684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2685. "preferred": true
  2686. }
  2687. ]
  2688. },
  2689. "require": {
  2690. "php": "^7.2.5"
  2691. },
  2692. "type": "library",
  2693. "extra": {
  2694. "branch-alias": {
  2695. "dev-master": "5.0-dev"
  2696. }
  2697. },
  2698. "autoload": {
  2699. "psr-4": {
  2700. "Symfony\\Component\\CssSelector\\": ""
  2701. },
  2702. "exclude-from-classmap": [
  2703. "/Tests/"
  2704. ]
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "Fabien Potencier",
  2713. "email": "fabien@symfony.com"
  2714. },
  2715. {
  2716. "name": "Jean-François Simon",
  2717. "email": "jeanfrancois.simon@sensiolabs.com"
  2718. },
  2719. {
  2720. "name": "Symfony Community",
  2721. "homepage": "https://symfony.com/contributors"
  2722. }
  2723. ],
  2724. "description": "Symfony CssSelector Component",
  2725. "homepage": "https://symfony.com",
  2726. "funding": [
  2727. {
  2728. "url": "https://symfony.com/sponsor",
  2729. "type": "custom"
  2730. },
  2731. {
  2732. "url": "https://github.com/fabpot",
  2733. "type": "github"
  2734. },
  2735. {
  2736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2737. "type": "tidelift"
  2738. }
  2739. ],
  2740. "time": "2020-03-27T16:56:45+00:00"
  2741. },
  2742. {
  2743. "name": "symfony/dom-crawler",
  2744. "version": "v5.0.8",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://github.com/symfony/dom-crawler.git",
  2748. "reference": "892311d23066844a267ac1a903d8a9d79968a1a7"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/892311d23066844a267ac1a903d8a9d79968a1a7",
  2753. "reference": "892311d23066844a267ac1a903d8a9d79968a1a7",
  2754. "shasum": "",
  2755. "mirrors": [
  2756. {
  2757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2758. "preferred": true
  2759. }
  2760. ]
  2761. },
  2762. "require": {
  2763. "php": "^7.2.5",
  2764. "symfony/polyfill-ctype": "~1.8",
  2765. "symfony/polyfill-mbstring": "~1.0"
  2766. },
  2767. "conflict": {
  2768. "masterminds/html5": "<2.6"
  2769. },
  2770. "require-dev": {
  2771. "masterminds/html5": "^2.6",
  2772. "symfony/css-selector": "^4.4|^5.0"
  2773. },
  2774. "suggest": {
  2775. "symfony/css-selector": ""
  2776. },
  2777. "type": "library",
  2778. "extra": {
  2779. "branch-alias": {
  2780. "dev-master": "5.0-dev"
  2781. }
  2782. },
  2783. "autoload": {
  2784. "psr-4": {
  2785. "Symfony\\Component\\DomCrawler\\": ""
  2786. },
  2787. "exclude-from-classmap": [
  2788. "/Tests/"
  2789. ]
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "Fabien Potencier",
  2798. "email": "fabien@symfony.com"
  2799. },
  2800. {
  2801. "name": "Symfony Community",
  2802. "homepage": "https://symfony.com/contributors"
  2803. }
  2804. ],
  2805. "description": "Symfony DomCrawler Component",
  2806. "homepage": "https://symfony.com",
  2807. "funding": [
  2808. {
  2809. "url": "https://symfony.com/sponsor",
  2810. "type": "custom"
  2811. },
  2812. {
  2813. "url": "https://github.com/fabpot",
  2814. "type": "github"
  2815. },
  2816. {
  2817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2818. "type": "tidelift"
  2819. }
  2820. ],
  2821. "time": "2020-03-30T11:42:42+00:00"
  2822. },
  2823. {
  2824. "name": "symfony/error-handler",
  2825. "version": "v5.0.8",
  2826. "source": {
  2827. "type": "git",
  2828. "url": "https://github.com/symfony/error-handler.git",
  2829. "reference": "949ffc17c3ac3a9f8e6232220e2da33913c04ea4"
  2830. },
  2831. "dist": {
  2832. "type": "zip",
  2833. "url": "https://api.github.com/repos/symfony/error-handler/zipball/949ffc17c3ac3a9f8e6232220e2da33913c04ea4",
  2834. "reference": "949ffc17c3ac3a9f8e6232220e2da33913c04ea4",
  2835. "shasum": "",
  2836. "mirrors": [
  2837. {
  2838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2839. "preferred": true
  2840. }
  2841. ]
  2842. },
  2843. "require": {
  2844. "php": "^7.2.5",
  2845. "psr/log": "^1.0",
  2846. "symfony/var-dumper": "^4.4|^5.0"
  2847. },
  2848. "require-dev": {
  2849. "symfony/http-kernel": "^4.4|^5.0",
  2850. "symfony/serializer": "^4.4|^5.0"
  2851. },
  2852. "type": "library",
  2853. "extra": {
  2854. "branch-alias": {
  2855. "dev-master": "5.0-dev"
  2856. }
  2857. },
  2858. "autoload": {
  2859. "psr-4": {
  2860. "Symfony\\Component\\ErrorHandler\\": ""
  2861. },
  2862. "exclude-from-classmap": [
  2863. "/Tests/"
  2864. ]
  2865. },
  2866. "notification-url": "https://packagist.org/downloads/",
  2867. "license": [
  2868. "MIT"
  2869. ],
  2870. "authors": [
  2871. {
  2872. "name": "Fabien Potencier",
  2873. "email": "fabien@symfony.com"
  2874. },
  2875. {
  2876. "name": "Symfony Community",
  2877. "homepage": "https://symfony.com/contributors"
  2878. }
  2879. ],
  2880. "description": "Symfony ErrorHandler Component",
  2881. "homepage": "https://symfony.com",
  2882. "funding": [
  2883. {
  2884. "url": "https://symfony.com/sponsor",
  2885. "type": "custom"
  2886. },
  2887. {
  2888. "url": "https://github.com/fabpot",
  2889. "type": "github"
  2890. },
  2891. {
  2892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2893. "type": "tidelift"
  2894. }
  2895. ],
  2896. "time": "2020-03-30T14:14:32+00:00"
  2897. },
  2898. {
  2899. "name": "symfony/event-dispatcher",
  2900. "version": "v5.0.8",
  2901. "source": {
  2902. "type": "git",
  2903. "url": "https://github.com/symfony/event-dispatcher.git",
  2904. "reference": "24f40d95385774ed5c71dbf014edd047e2f2f3dc"
  2905. },
  2906. "dist": {
  2907. "type": "zip",
  2908. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/24f40d95385774ed5c71dbf014edd047e2f2f3dc",
  2909. "reference": "24f40d95385774ed5c71dbf014edd047e2f2f3dc",
  2910. "shasum": "",
  2911. "mirrors": [
  2912. {
  2913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2914. "preferred": true
  2915. }
  2916. ]
  2917. },
  2918. "require": {
  2919. "php": "^7.2.5",
  2920. "symfony/event-dispatcher-contracts": "^2"
  2921. },
  2922. "conflict": {
  2923. "symfony/dependency-injection": "<4.4"
  2924. },
  2925. "provide": {
  2926. "psr/event-dispatcher-implementation": "1.0",
  2927. "symfony/event-dispatcher-implementation": "2.0"
  2928. },
  2929. "require-dev": {
  2930. "psr/log": "~1.0",
  2931. "symfony/config": "^4.4|^5.0",
  2932. "symfony/dependency-injection": "^4.4|^5.0",
  2933. "symfony/expression-language": "^4.4|^5.0",
  2934. "symfony/http-foundation": "^4.4|^5.0",
  2935. "symfony/service-contracts": "^1.1|^2",
  2936. "symfony/stopwatch": "^4.4|^5.0"
  2937. },
  2938. "suggest": {
  2939. "symfony/dependency-injection": "",
  2940. "symfony/http-kernel": ""
  2941. },
  2942. "type": "library",
  2943. "extra": {
  2944. "branch-alias": {
  2945. "dev-master": "5.0-dev"
  2946. }
  2947. },
  2948. "autoload": {
  2949. "psr-4": {
  2950. "Symfony\\Component\\EventDispatcher\\": ""
  2951. },
  2952. "exclude-from-classmap": [
  2953. "/Tests/"
  2954. ]
  2955. },
  2956. "notification-url": "https://packagist.org/downloads/",
  2957. "license": [
  2958. "MIT"
  2959. ],
  2960. "authors": [
  2961. {
  2962. "name": "Fabien Potencier",
  2963. "email": "fabien@symfony.com"
  2964. },
  2965. {
  2966. "name": "Symfony Community",
  2967. "homepage": "https://symfony.com/contributors"
  2968. }
  2969. ],
  2970. "description": "Symfony EventDispatcher Component",
  2971. "homepage": "https://symfony.com",
  2972. "funding": [
  2973. {
  2974. "url": "https://symfony.com/sponsor",
  2975. "type": "custom"
  2976. },
  2977. {
  2978. "url": "https://github.com/fabpot",
  2979. "type": "github"
  2980. },
  2981. {
  2982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2983. "type": "tidelift"
  2984. }
  2985. ],
  2986. "time": "2020-03-27T16:56:45+00:00"
  2987. },
  2988. {
  2989. "name": "symfony/event-dispatcher-contracts",
  2990. "version": "v2.0.1",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2994. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/af23c2584d4577d54661c434446fb8fbed6025dd",
  2999. "reference": "af23c2584d4577d54661c434446fb8fbed6025dd",
  3000. "shasum": "",
  3001. "mirrors": [
  3002. {
  3003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3004. "preferred": true
  3005. }
  3006. ]
  3007. },
  3008. "require": {
  3009. "php": "^7.2.5",
  3010. "psr/event-dispatcher": "^1"
  3011. },
  3012. "suggest": {
  3013. "symfony/event-dispatcher-implementation": ""
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "2.0-dev"
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Symfony\\Contracts\\EventDispatcher\\": ""
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Nicolas Grekas",
  3033. "email": "p@tchwork.com"
  3034. },
  3035. {
  3036. "name": "Symfony Community",
  3037. "homepage": "https://symfony.com/contributors"
  3038. }
  3039. ],
  3040. "description": "Generic abstractions related to dispatching event",
  3041. "homepage": "https://symfony.com",
  3042. "keywords": [
  3043. "abstractions",
  3044. "contracts",
  3045. "decoupling",
  3046. "interfaces",
  3047. "interoperability",
  3048. "standards"
  3049. ],
  3050. "time": "2019-11-18T17:27:11+00:00"
  3051. },
  3052. {
  3053. "name": "symfony/finder",
  3054. "version": "v5.0.8",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/symfony/finder.git",
  3058. "reference": "600a52c29afc0d1caa74acbec8d3095ca7e9910d"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/symfony/finder/zipball/600a52c29afc0d1caa74acbec8d3095ca7e9910d",
  3063. "reference": "600a52c29afc0d1caa74acbec8d3095ca7e9910d",
  3064. "shasum": "",
  3065. "mirrors": [
  3066. {
  3067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3068. "preferred": true
  3069. }
  3070. ]
  3071. },
  3072. "require": {
  3073. "php": "^7.2.5"
  3074. },
  3075. "type": "library",
  3076. "extra": {
  3077. "branch-alias": {
  3078. "dev-master": "5.0-dev"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Symfony\\Component\\Finder\\": ""
  3084. },
  3085. "exclude-from-classmap": [
  3086. "/Tests/"
  3087. ]
  3088. },
  3089. "notification-url": "https://packagist.org/downloads/",
  3090. "license": [
  3091. "MIT"
  3092. ],
  3093. "authors": [
  3094. {
  3095. "name": "Fabien Potencier",
  3096. "email": "fabien@symfony.com"
  3097. },
  3098. {
  3099. "name": "Symfony Community",
  3100. "homepage": "https://symfony.com/contributors"
  3101. }
  3102. ],
  3103. "description": "Symfony Finder Component",
  3104. "homepage": "https://symfony.com",
  3105. "funding": [
  3106. {
  3107. "url": "https://symfony.com/sponsor",
  3108. "type": "custom"
  3109. },
  3110. {
  3111. "url": "https://github.com/fabpot",
  3112. "type": "github"
  3113. },
  3114. {
  3115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3116. "type": "tidelift"
  3117. }
  3118. ],
  3119. "time": "2020-03-27T16:56:45+00:00"
  3120. },
  3121. {
  3122. "name": "symfony/http-foundation",
  3123. "version": "v5.0.8",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/symfony/http-foundation.git",
  3127. "reference": "e47fdf8b24edc12022ba52923150ec6484d7f57d"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e47fdf8b24edc12022ba52923150ec6484d7f57d",
  3132. "reference": "e47fdf8b24edc12022ba52923150ec6484d7f57d",
  3133. "shasum": "",
  3134. "mirrors": [
  3135. {
  3136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3137. "preferred": true
  3138. }
  3139. ]
  3140. },
  3141. "require": {
  3142. "php": "^7.2.5",
  3143. "symfony/mime": "^4.4|^5.0",
  3144. "symfony/polyfill-mbstring": "~1.1"
  3145. },
  3146. "require-dev": {
  3147. "predis/predis": "~1.0",
  3148. "symfony/expression-language": "^4.4|^5.0"
  3149. },
  3150. "type": "library",
  3151. "extra": {
  3152. "branch-alias": {
  3153. "dev-master": "5.0-dev"
  3154. }
  3155. },
  3156. "autoload": {
  3157. "psr-4": {
  3158. "Symfony\\Component\\HttpFoundation\\": ""
  3159. },
  3160. "exclude-from-classmap": [
  3161. "/Tests/"
  3162. ]
  3163. },
  3164. "notification-url": "https://packagist.org/downloads/",
  3165. "license": [
  3166. "MIT"
  3167. ],
  3168. "authors": [
  3169. {
  3170. "name": "Fabien Potencier",
  3171. "email": "fabien@symfony.com"
  3172. },
  3173. {
  3174. "name": "Symfony Community",
  3175. "homepage": "https://symfony.com/contributors"
  3176. }
  3177. ],
  3178. "description": "Symfony HttpFoundation Component",
  3179. "homepage": "https://symfony.com",
  3180. "funding": [
  3181. {
  3182. "url": "https://symfony.com/sponsor",
  3183. "type": "custom"
  3184. },
  3185. {
  3186. "url": "https://github.com/fabpot",
  3187. "type": "github"
  3188. },
  3189. {
  3190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3191. "type": "tidelift"
  3192. }
  3193. ],
  3194. "time": "2020-04-18T20:50:06+00:00"
  3195. },
  3196. {
  3197. "name": "symfony/http-kernel",
  3198. "version": "v5.0.8",
  3199. "source": {
  3200. "type": "git",
  3201. "url": "https://github.com/symfony/http-kernel.git",
  3202. "reference": "3565e51eecd06106304baba5ccb7ba89db2d7d2b"
  3203. },
  3204. "dist": {
  3205. "type": "zip",
  3206. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3565e51eecd06106304baba5ccb7ba89db2d7d2b",
  3207. "reference": "3565e51eecd06106304baba5ccb7ba89db2d7d2b",
  3208. "shasum": "",
  3209. "mirrors": [
  3210. {
  3211. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3212. "preferred": true
  3213. }
  3214. ]
  3215. },
  3216. "require": {
  3217. "php": "^7.2.5",
  3218. "psr/log": "~1.0",
  3219. "symfony/error-handler": "^4.4|^5.0",
  3220. "symfony/event-dispatcher": "^5.0",
  3221. "symfony/http-foundation": "^4.4|^5.0",
  3222. "symfony/polyfill-ctype": "^1.8",
  3223. "symfony/polyfill-php73": "^1.9"
  3224. },
  3225. "conflict": {
  3226. "symfony/browser-kit": "<4.4",
  3227. "symfony/cache": "<5.0",
  3228. "symfony/config": "<5.0",
  3229. "symfony/console": "<4.4",
  3230. "symfony/dependency-injection": "<4.4",
  3231. "symfony/doctrine-bridge": "<5.0",
  3232. "symfony/form": "<5.0",
  3233. "symfony/http-client": "<5.0",
  3234. "symfony/mailer": "<5.0",
  3235. "symfony/messenger": "<5.0",
  3236. "symfony/translation": "<5.0",
  3237. "symfony/twig-bridge": "<5.0",
  3238. "symfony/validator": "<5.0",
  3239. "twig/twig": "<2.4"
  3240. },
  3241. "provide": {
  3242. "psr/log-implementation": "1.0"
  3243. },
  3244. "require-dev": {
  3245. "psr/cache": "~1.0",
  3246. "symfony/browser-kit": "^4.4|^5.0",
  3247. "symfony/config": "^5.0",
  3248. "symfony/console": "^4.4|^5.0",
  3249. "symfony/css-selector": "^4.4|^5.0",
  3250. "symfony/dependency-injection": "^4.4|^5.0",
  3251. "symfony/dom-crawler": "^4.4|^5.0",
  3252. "symfony/expression-language": "^4.4|^5.0",
  3253. "symfony/finder": "^4.4|^5.0",
  3254. "symfony/process": "^4.4|^5.0",
  3255. "symfony/routing": "^4.4|^5.0",
  3256. "symfony/stopwatch": "^4.4|^5.0",
  3257. "symfony/translation": "^4.4|^5.0",
  3258. "symfony/translation-contracts": "^1.1|^2",
  3259. "twig/twig": "^2.4|^3.0"
  3260. },
  3261. "suggest": {
  3262. "symfony/browser-kit": "",
  3263. "symfony/config": "",
  3264. "symfony/console": "",
  3265. "symfony/dependency-injection": ""
  3266. },
  3267. "type": "library",
  3268. "extra": {
  3269. "branch-alias": {
  3270. "dev-master": "5.0-dev"
  3271. }
  3272. },
  3273. "autoload": {
  3274. "psr-4": {
  3275. "Symfony\\Component\\HttpKernel\\": ""
  3276. },
  3277. "exclude-from-classmap": [
  3278. "/Tests/"
  3279. ]
  3280. },
  3281. "notification-url": "https://packagist.org/downloads/",
  3282. "license": [
  3283. "MIT"
  3284. ],
  3285. "authors": [
  3286. {
  3287. "name": "Fabien Potencier",
  3288. "email": "fabien@symfony.com"
  3289. },
  3290. {
  3291. "name": "Symfony Community",
  3292. "homepage": "https://symfony.com/contributors"
  3293. }
  3294. ],
  3295. "description": "Symfony HttpKernel Component",
  3296. "homepage": "https://symfony.com",
  3297. "funding": [
  3298. {
  3299. "url": "https://symfony.com/sponsor",
  3300. "type": "custom"
  3301. },
  3302. {
  3303. "url": "https://github.com/fabpot",
  3304. "type": "github"
  3305. },
  3306. {
  3307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3308. "type": "tidelift"
  3309. }
  3310. ],
  3311. "time": "2020-04-28T18:53:25+00:00"
  3312. },
  3313. {
  3314. "name": "symfony/mime",
  3315. "version": "v5.0.8",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://github.com/symfony/mime.git",
  3319. "reference": "5d6c81c39225a750f3f43bee15f03093fb9aaa0b"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://api.github.com/repos/symfony/mime/zipball/5d6c81c39225a750f3f43bee15f03093fb9aaa0b",
  3324. "reference": "5d6c81c39225a750f3f43bee15f03093fb9aaa0b",
  3325. "shasum": "",
  3326. "mirrors": [
  3327. {
  3328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3329. "preferred": true
  3330. }
  3331. ]
  3332. },
  3333. "require": {
  3334. "php": "^7.2.5",
  3335. "symfony/polyfill-intl-idn": "^1.10",
  3336. "symfony/polyfill-mbstring": "^1.0"
  3337. },
  3338. "conflict": {
  3339. "symfony/mailer": "<4.4"
  3340. },
  3341. "require-dev": {
  3342. "egulias/email-validator": "^2.1.10",
  3343. "symfony/dependency-injection": "^4.4|^5.0"
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "branch-alias": {
  3348. "dev-master": "5.0-dev"
  3349. }
  3350. },
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Symfony\\Component\\Mime\\": ""
  3354. },
  3355. "exclude-from-classmap": [
  3356. "/Tests/"
  3357. ]
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "MIT"
  3362. ],
  3363. "authors": [
  3364. {
  3365. "name": "Fabien Potencier",
  3366. "email": "fabien@symfony.com"
  3367. },
  3368. {
  3369. "name": "Symfony Community",
  3370. "homepage": "https://symfony.com/contributors"
  3371. }
  3372. ],
  3373. "description": "A library to manipulate MIME messages",
  3374. "homepage": "https://symfony.com",
  3375. "keywords": [
  3376. "mime",
  3377. "mime-type"
  3378. ],
  3379. "funding": [
  3380. {
  3381. "url": "https://symfony.com/sponsor",
  3382. "type": "custom"
  3383. },
  3384. {
  3385. "url": "https://github.com/fabpot",
  3386. "type": "github"
  3387. },
  3388. {
  3389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3390. "type": "tidelift"
  3391. }
  3392. ],
  3393. "time": "2020-04-17T03:29:44+00:00"
  3394. },
  3395. {
  3396. "name": "symfony/polyfill-ctype",
  3397. "version": "v1.16.0",
  3398. "source": {
  3399. "type": "git",
  3400. "url": "https://github.com/symfony/polyfill-ctype.git",
  3401. "reference": "1aab00e39cebaef4d8652497f46c15c1b7e45294"
  3402. },
  3403. "dist": {
  3404. "type": "zip",
  3405. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1aab00e39cebaef4d8652497f46c15c1b7e45294",
  3406. "reference": "1aab00e39cebaef4d8652497f46c15c1b7e45294",
  3407. "shasum": "",
  3408. "mirrors": [
  3409. {
  3410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3411. "preferred": true
  3412. }
  3413. ]
  3414. },
  3415. "require": {
  3416. "php": ">=5.3.3"
  3417. },
  3418. "suggest": {
  3419. "ext-ctype": "For best performance"
  3420. },
  3421. "type": "library",
  3422. "extra": {
  3423. "branch-alias": {
  3424. "dev-master": "1.16-dev"
  3425. }
  3426. },
  3427. "autoload": {
  3428. "psr-4": {
  3429. "Symfony\\Polyfill\\Ctype\\": ""
  3430. },
  3431. "files": [
  3432. "bootstrap.php"
  3433. ]
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Gert de Pagter",
  3442. "email": "BackEndTea@gmail.com"
  3443. },
  3444. {
  3445. "name": "Symfony Community",
  3446. "homepage": "https://symfony.com/contributors"
  3447. }
  3448. ],
  3449. "description": "Symfony polyfill for ctype functions",
  3450. "homepage": "https://symfony.com",
  3451. "keywords": [
  3452. "compatibility",
  3453. "ctype",
  3454. "polyfill",
  3455. "portable"
  3456. ],
  3457. "funding": [
  3458. {
  3459. "url": "https://symfony.com/sponsor",
  3460. "type": "custom"
  3461. },
  3462. {
  3463. "url": "https://github.com/fabpot",
  3464. "type": "github"
  3465. },
  3466. {
  3467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3468. "type": "tidelift"
  3469. }
  3470. ],
  3471. "time": "2020-05-08T16:50:20+00:00"
  3472. },
  3473. {
  3474. "name": "symfony/polyfill-iconv",
  3475. "version": "v1.16.0",
  3476. "source": {
  3477. "type": "git",
  3478. "url": "https://github.com/symfony/polyfill-iconv.git",
  3479. "reference": "d51debc1391a609c514f6f072dd59a61b461502a"
  3480. },
  3481. "dist": {
  3482. "type": "zip",
  3483. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/d51debc1391a609c514f6f072dd59a61b461502a",
  3484. "reference": "d51debc1391a609c514f6f072dd59a61b461502a",
  3485. "shasum": "",
  3486. "mirrors": [
  3487. {
  3488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3489. "preferred": true
  3490. }
  3491. ]
  3492. },
  3493. "require": {
  3494. "php": ">=5.3.3"
  3495. },
  3496. "suggest": {
  3497. "ext-iconv": "For best performance"
  3498. },
  3499. "type": "library",
  3500. "extra": {
  3501. "branch-alias": {
  3502. "dev-master": "1.16-dev"
  3503. }
  3504. },
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Symfony\\Polyfill\\Iconv\\": ""
  3508. },
  3509. "files": [
  3510. "bootstrap.php"
  3511. ]
  3512. },
  3513. "notification-url": "https://packagist.org/downloads/",
  3514. "license": [
  3515. "MIT"
  3516. ],
  3517. "authors": [
  3518. {
  3519. "name": "Nicolas Grekas",
  3520. "email": "p@tchwork.com"
  3521. },
  3522. {
  3523. "name": "Symfony Community",
  3524. "homepage": "https://symfony.com/contributors"
  3525. }
  3526. ],
  3527. "description": "Symfony polyfill for the Iconv extension",
  3528. "homepage": "https://symfony.com",
  3529. "keywords": [
  3530. "compatibility",
  3531. "iconv",
  3532. "polyfill",
  3533. "portable",
  3534. "shim"
  3535. ],
  3536. "funding": [
  3537. {
  3538. "url": "https://symfony.com/sponsor",
  3539. "type": "custom"
  3540. },
  3541. {
  3542. "url": "https://github.com/fabpot",
  3543. "type": "github"
  3544. },
  3545. {
  3546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3547. "type": "tidelift"
  3548. }
  3549. ],
  3550. "time": "2020-05-08T16:50:20+00:00"
  3551. },
  3552. {
  3553. "name": "symfony/polyfill-intl-idn",
  3554. "version": "v1.16.0",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3558. "reference": "ab0af41deab94ec8dceb3d1fb408bdd038eba4dc"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ab0af41deab94ec8dceb3d1fb408bdd038eba4dc",
  3563. "reference": "ab0af41deab94ec8dceb3d1fb408bdd038eba4dc",
  3564. "shasum": "",
  3565. "mirrors": [
  3566. {
  3567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3568. "preferred": true
  3569. }
  3570. ]
  3571. },
  3572. "require": {
  3573. "php": ">=5.3.3",
  3574. "symfony/polyfill-mbstring": "^1.3",
  3575. "symfony/polyfill-php72": "^1.10"
  3576. },
  3577. "suggest": {
  3578. "ext-intl": "For best performance"
  3579. },
  3580. "type": "library",
  3581. "extra": {
  3582. "branch-alias": {
  3583. "dev-master": "1.16-dev"
  3584. }
  3585. },
  3586. "autoload": {
  3587. "psr-4": {
  3588. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3589. },
  3590. "files": [
  3591. "bootstrap.php"
  3592. ]
  3593. },
  3594. "notification-url": "https://packagist.org/downloads/",
  3595. "license": [
  3596. "MIT"
  3597. ],
  3598. "authors": [
  3599. {
  3600. "name": "Laurent Bassin",
  3601. "email": "laurent@bassin.info"
  3602. },
  3603. {
  3604. "name": "Symfony Community",
  3605. "homepage": "https://symfony.com/contributors"
  3606. }
  3607. ],
  3608. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3609. "homepage": "https://symfony.com",
  3610. "keywords": [
  3611. "compatibility",
  3612. "idn",
  3613. "intl",
  3614. "polyfill",
  3615. "portable",
  3616. "shim"
  3617. ],
  3618. "funding": [
  3619. {
  3620. "url": "https://symfony.com/sponsor",
  3621. "type": "custom"
  3622. },
  3623. {
  3624. "url": "https://github.com/fabpot",
  3625. "type": "github"
  3626. },
  3627. {
  3628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3629. "type": "tidelift"
  3630. }
  3631. ],
  3632. "time": "2020-05-08T16:50:20+00:00"
  3633. },
  3634. {
  3635. "name": "symfony/polyfill-mbstring",
  3636. "version": "v1.16.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3640. "reference": "a54881ec0ab3b2005c406aed0023c062879031e7"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a54881ec0ab3b2005c406aed0023c062879031e7",
  3645. "reference": "a54881ec0ab3b2005c406aed0023c062879031e7",
  3646. "shasum": "",
  3647. "mirrors": [
  3648. {
  3649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3650. "preferred": true
  3651. }
  3652. ]
  3653. },
  3654. "require": {
  3655. "php": ">=5.3.3"
  3656. },
  3657. "suggest": {
  3658. "ext-mbstring": "For best performance"
  3659. },
  3660. "type": "library",
  3661. "extra": {
  3662. "branch-alias": {
  3663. "dev-master": "1.16-dev"
  3664. }
  3665. },
  3666. "autoload": {
  3667. "psr-4": {
  3668. "Symfony\\Polyfill\\Mbstring\\": ""
  3669. },
  3670. "files": [
  3671. "bootstrap.php"
  3672. ]
  3673. },
  3674. "notification-url": "https://packagist.org/downloads/",
  3675. "license": [
  3676. "MIT"
  3677. ],
  3678. "authors": [
  3679. {
  3680. "name": "Nicolas Grekas",
  3681. "email": "p@tchwork.com"
  3682. },
  3683. {
  3684. "name": "Symfony Community",
  3685. "homepage": "https://symfony.com/contributors"
  3686. }
  3687. ],
  3688. "description": "Symfony polyfill for the Mbstring extension",
  3689. "homepage": "https://symfony.com",
  3690. "keywords": [
  3691. "compatibility",
  3692. "mbstring",
  3693. "polyfill",
  3694. "portable",
  3695. "shim"
  3696. ],
  3697. "funding": [
  3698. {
  3699. "url": "https://symfony.com/sponsor",
  3700. "type": "custom"
  3701. },
  3702. {
  3703. "url": "https://github.com/fabpot",
  3704. "type": "github"
  3705. },
  3706. {
  3707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3708. "type": "tidelift"
  3709. }
  3710. ],
  3711. "time": "2020-05-08T16:50:20+00:00"
  3712. },
  3713. {
  3714. "name": "symfony/polyfill-php72",
  3715. "version": "v1.16.0",
  3716. "source": {
  3717. "type": "git",
  3718. "url": "https://github.com/symfony/polyfill-php72.git",
  3719. "reference": "42fda6d7380e5c940d7f68341ccae89d5ab9963b"
  3720. },
  3721. "dist": {
  3722. "type": "zip",
  3723. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/42fda6d7380e5c940d7f68341ccae89d5ab9963b",
  3724. "reference": "42fda6d7380e5c940d7f68341ccae89d5ab9963b",
  3725. "shasum": "",
  3726. "mirrors": [
  3727. {
  3728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3729. "preferred": true
  3730. }
  3731. ]
  3732. },
  3733. "require": {
  3734. "php": ">=5.3.3"
  3735. },
  3736. "type": "library",
  3737. "extra": {
  3738. "branch-alias": {
  3739. "dev-master": "1.16-dev"
  3740. }
  3741. },
  3742. "autoload": {
  3743. "psr-4": {
  3744. "Symfony\\Polyfill\\Php72\\": ""
  3745. },
  3746. "files": [
  3747. "bootstrap.php"
  3748. ]
  3749. },
  3750. "notification-url": "https://packagist.org/downloads/",
  3751. "license": [
  3752. "MIT"
  3753. ],
  3754. "authors": [
  3755. {
  3756. "name": "Nicolas Grekas",
  3757. "email": "p@tchwork.com"
  3758. },
  3759. {
  3760. "name": "Symfony Community",
  3761. "homepage": "https://symfony.com/contributors"
  3762. }
  3763. ],
  3764. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3765. "homepage": "https://symfony.com",
  3766. "keywords": [
  3767. "compatibility",
  3768. "polyfill",
  3769. "portable",
  3770. "shim"
  3771. ],
  3772. "funding": [
  3773. {
  3774. "url": "https://symfony.com/sponsor",
  3775. "type": "custom"
  3776. },
  3777. {
  3778. "url": "https://github.com/fabpot",
  3779. "type": "github"
  3780. },
  3781. {
  3782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3783. "type": "tidelift"
  3784. }
  3785. ],
  3786. "time": "2020-05-08T17:28:34+00:00"
  3787. },
  3788. {
  3789. "name": "symfony/polyfill-php73",
  3790. "version": "v1.16.0",
  3791. "source": {
  3792. "type": "git",
  3793. "url": "https://github.com/symfony/polyfill-php73.git",
  3794. "reference": "7e95fe59d12169fcf4041487e4bf34fca37ee0ed"
  3795. },
  3796. "dist": {
  3797. "type": "zip",
  3798. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/7e95fe59d12169fcf4041487e4bf34fca37ee0ed",
  3799. "reference": "7e95fe59d12169fcf4041487e4bf34fca37ee0ed",
  3800. "shasum": "",
  3801. "mirrors": [
  3802. {
  3803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3804. "preferred": true
  3805. }
  3806. ]
  3807. },
  3808. "require": {
  3809. "php": ">=5.3.3"
  3810. },
  3811. "type": "library",
  3812. "extra": {
  3813. "branch-alias": {
  3814. "dev-master": "1.16-dev"
  3815. }
  3816. },
  3817. "autoload": {
  3818. "psr-4": {
  3819. "Symfony\\Polyfill\\Php73\\": ""
  3820. },
  3821. "files": [
  3822. "bootstrap.php"
  3823. ],
  3824. "classmap": [
  3825. "Resources/stubs"
  3826. ]
  3827. },
  3828. "notification-url": "https://packagist.org/downloads/",
  3829. "license": [
  3830. "MIT"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "Nicolas Grekas",
  3835. "email": "p@tchwork.com"
  3836. },
  3837. {
  3838. "name": "Symfony Community",
  3839. "homepage": "https://symfony.com/contributors"
  3840. }
  3841. ],
  3842. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3843. "homepage": "https://symfony.com",
  3844. "keywords": [
  3845. "compatibility",
  3846. "polyfill",
  3847. "portable",
  3848. "shim"
  3849. ],
  3850. "funding": [
  3851. {
  3852. "url": "https://symfony.com/sponsor",
  3853. "type": "custom"
  3854. },
  3855. {
  3856. "url": "https://github.com/fabpot",
  3857. "type": "github"
  3858. },
  3859. {
  3860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3861. "type": "tidelift"
  3862. }
  3863. ],
  3864. "time": "2020-05-02T14:56:09+00:00"
  3865. },
  3866. {
  3867. "name": "symfony/process",
  3868. "version": "v5.0.8",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/symfony/process.git",
  3872. "reference": "3179f68dff5bad14d38c4114a1dab98030801fd7"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/symfony/process/zipball/3179f68dff5bad14d38c4114a1dab98030801fd7",
  3877. "reference": "3179f68dff5bad14d38c4114a1dab98030801fd7",
  3878. "shasum": "",
  3879. "mirrors": [
  3880. {
  3881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3882. "preferred": true
  3883. }
  3884. ]
  3885. },
  3886. "require": {
  3887. "php": "^7.2.5"
  3888. },
  3889. "type": "library",
  3890. "extra": {
  3891. "branch-alias": {
  3892. "dev-master": "5.0-dev"
  3893. }
  3894. },
  3895. "autoload": {
  3896. "psr-4": {
  3897. "Symfony\\Component\\Process\\": ""
  3898. },
  3899. "exclude-from-classmap": [
  3900. "/Tests/"
  3901. ]
  3902. },
  3903. "notification-url": "https://packagist.org/downloads/",
  3904. "license": [
  3905. "MIT"
  3906. ],
  3907. "authors": [
  3908. {
  3909. "name": "Fabien Potencier",
  3910. "email": "fabien@symfony.com"
  3911. },
  3912. {
  3913. "name": "Symfony Community",
  3914. "homepage": "https://symfony.com/contributors"
  3915. }
  3916. ],
  3917. "description": "Symfony Process Component",
  3918. "homepage": "https://symfony.com",
  3919. "funding": [
  3920. {
  3921. "url": "https://symfony.com/sponsor",
  3922. "type": "custom"
  3923. },
  3924. {
  3925. "url": "https://github.com/fabpot",
  3926. "type": "github"
  3927. },
  3928. {
  3929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3930. "type": "tidelift"
  3931. }
  3932. ],
  3933. "time": "2020-04-15T15:59:10+00:00"
  3934. },
  3935. {
  3936. "name": "symfony/routing",
  3937. "version": "v5.0.8",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://github.com/symfony/routing.git",
  3941. "reference": "9b18480a6e101f8d9ab7c483ace7c19441be5111"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://api.github.com/repos/symfony/routing/zipball/9b18480a6e101f8d9ab7c483ace7c19441be5111",
  3946. "reference": "9b18480a6e101f8d9ab7c483ace7c19441be5111",
  3947. "shasum": "",
  3948. "mirrors": [
  3949. {
  3950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3951. "preferred": true
  3952. }
  3953. ]
  3954. },
  3955. "require": {
  3956. "php": "^7.2.5"
  3957. },
  3958. "conflict": {
  3959. "symfony/config": "<5.0",
  3960. "symfony/dependency-injection": "<4.4",
  3961. "symfony/yaml": "<4.4"
  3962. },
  3963. "require-dev": {
  3964. "doctrine/annotations": "~1.2",
  3965. "psr/log": "~1.0",
  3966. "symfony/config": "^5.0",
  3967. "symfony/dependency-injection": "^4.4|^5.0",
  3968. "symfony/expression-language": "^4.4|^5.0",
  3969. "symfony/http-foundation": "^4.4|^5.0",
  3970. "symfony/yaml": "^4.4|^5.0"
  3971. },
  3972. "suggest": {
  3973. "doctrine/annotations": "For using the annotation loader",
  3974. "symfony/config": "For using the all-in-one router or any loader",
  3975. "symfony/expression-language": "For using expression matching",
  3976. "symfony/http-foundation": "For using a Symfony Request object",
  3977. "symfony/yaml": "For using the YAML loader"
  3978. },
  3979. "type": "library",
  3980. "extra": {
  3981. "branch-alias": {
  3982. "dev-master": "5.0-dev"
  3983. }
  3984. },
  3985. "autoload": {
  3986. "psr-4": {
  3987. "Symfony\\Component\\Routing\\": ""
  3988. },
  3989. "exclude-from-classmap": [
  3990. "/Tests/"
  3991. ]
  3992. },
  3993. "notification-url": "https://packagist.org/downloads/",
  3994. "license": [
  3995. "MIT"
  3996. ],
  3997. "authors": [
  3998. {
  3999. "name": "Fabien Potencier",
  4000. "email": "fabien@symfony.com"
  4001. },
  4002. {
  4003. "name": "Symfony Community",
  4004. "homepage": "https://symfony.com/contributors"
  4005. }
  4006. ],
  4007. "description": "Symfony Routing Component",
  4008. "homepage": "https://symfony.com",
  4009. "keywords": [
  4010. "router",
  4011. "routing",
  4012. "uri",
  4013. "url"
  4014. ],
  4015. "funding": [
  4016. {
  4017. "url": "https://symfony.com/sponsor",
  4018. "type": "custom"
  4019. },
  4020. {
  4021. "url": "https://github.com/fabpot",
  4022. "type": "github"
  4023. },
  4024. {
  4025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4026. "type": "tidelift"
  4027. }
  4028. ],
  4029. "time": "2020-04-21T21:02:50+00:00"
  4030. },
  4031. {
  4032. "name": "symfony/service-contracts",
  4033. "version": "v2.0.1",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/symfony/service-contracts.git",
  4037. "reference": "144c5e51266b281231e947b51223ba14acf1a749"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/144c5e51266b281231e947b51223ba14acf1a749",
  4042. "reference": "144c5e51266b281231e947b51223ba14acf1a749",
  4043. "shasum": "",
  4044. "mirrors": [
  4045. {
  4046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4047. "preferred": true
  4048. }
  4049. ]
  4050. },
  4051. "require": {
  4052. "php": "^7.2.5",
  4053. "psr/container": "^1.0"
  4054. },
  4055. "suggest": {
  4056. "symfony/service-implementation": ""
  4057. },
  4058. "type": "library",
  4059. "extra": {
  4060. "branch-alias": {
  4061. "dev-master": "2.0-dev"
  4062. }
  4063. },
  4064. "autoload": {
  4065. "psr-4": {
  4066. "Symfony\\Contracts\\Service\\": ""
  4067. }
  4068. },
  4069. "notification-url": "https://packagist.org/downloads/",
  4070. "license": [
  4071. "MIT"
  4072. ],
  4073. "authors": [
  4074. {
  4075. "name": "Nicolas Grekas",
  4076. "email": "p@tchwork.com"
  4077. },
  4078. {
  4079. "name": "Symfony Community",
  4080. "homepage": "https://symfony.com/contributors"
  4081. }
  4082. ],
  4083. "description": "Generic abstractions related to writing services",
  4084. "homepage": "https://symfony.com",
  4085. "keywords": [
  4086. "abstractions",
  4087. "contracts",
  4088. "decoupling",
  4089. "interfaces",
  4090. "interoperability",
  4091. "standards"
  4092. ],
  4093. "time": "2019-11-18T17:27:11+00:00"
  4094. },
  4095. {
  4096. "name": "symfony/translation",
  4097. "version": "v5.0.8",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://github.com/symfony/translation.git",
  4101. "reference": "c3879db7a68fe3e12b41263b05879412c87b27fd"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://api.github.com/repos/symfony/translation/zipball/c3879db7a68fe3e12b41263b05879412c87b27fd",
  4106. "reference": "c3879db7a68fe3e12b41263b05879412c87b27fd",
  4107. "shasum": "",
  4108. "mirrors": [
  4109. {
  4110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4111. "preferred": true
  4112. }
  4113. ]
  4114. },
  4115. "require": {
  4116. "php": "^7.2.5",
  4117. "symfony/polyfill-mbstring": "~1.0",
  4118. "symfony/translation-contracts": "^2"
  4119. },
  4120. "conflict": {
  4121. "symfony/config": "<4.4",
  4122. "symfony/dependency-injection": "<5.0",
  4123. "symfony/http-kernel": "<5.0",
  4124. "symfony/twig-bundle": "<5.0",
  4125. "symfony/yaml": "<4.4"
  4126. },
  4127. "provide": {
  4128. "symfony/translation-implementation": "2.0"
  4129. },
  4130. "require-dev": {
  4131. "psr/log": "~1.0",
  4132. "symfony/config": "^4.4|^5.0",
  4133. "symfony/console": "^4.4|^5.0",
  4134. "symfony/dependency-injection": "^5.0",
  4135. "symfony/finder": "^4.4|^5.0",
  4136. "symfony/http-kernel": "^5.0",
  4137. "symfony/intl": "^4.4|^5.0",
  4138. "symfony/service-contracts": "^1.1.2|^2",
  4139. "symfony/yaml": "^4.4|^5.0"
  4140. },
  4141. "suggest": {
  4142. "psr/log-implementation": "To use logging capability in translator",
  4143. "symfony/config": "",
  4144. "symfony/yaml": ""
  4145. },
  4146. "type": "library",
  4147. "extra": {
  4148. "branch-alias": {
  4149. "dev-master": "5.0-dev"
  4150. }
  4151. },
  4152. "autoload": {
  4153. "psr-4": {
  4154. "Symfony\\Component\\Translation\\": ""
  4155. },
  4156. "exclude-from-classmap": [
  4157. "/Tests/"
  4158. ]
  4159. },
  4160. "notification-url": "https://packagist.org/downloads/",
  4161. "license": [
  4162. "MIT"
  4163. ],
  4164. "authors": [
  4165. {
  4166. "name": "Fabien Potencier",
  4167. "email": "fabien@symfony.com"
  4168. },
  4169. {
  4170. "name": "Symfony Community",
  4171. "homepage": "https://symfony.com/contributors"
  4172. }
  4173. ],
  4174. "description": "Symfony Translation Component",
  4175. "homepage": "https://symfony.com",
  4176. "funding": [
  4177. {
  4178. "url": "https://symfony.com/sponsor",
  4179. "type": "custom"
  4180. },
  4181. {
  4182. "url": "https://github.com/fabpot",
  4183. "type": "github"
  4184. },
  4185. {
  4186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4187. "type": "tidelift"
  4188. }
  4189. ],
  4190. "time": "2020-04-12T16:45:47+00:00"
  4191. },
  4192. {
  4193. "name": "symfony/translation-contracts",
  4194. "version": "v2.0.1",
  4195. "source": {
  4196. "type": "git",
  4197. "url": "https://github.com/symfony/translation-contracts.git",
  4198. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  4199. },
  4200. "dist": {
  4201. "type": "zip",
  4202. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  4203. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  4204. "shasum": "",
  4205. "mirrors": [
  4206. {
  4207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4208. "preferred": true
  4209. }
  4210. ]
  4211. },
  4212. "require": {
  4213. "php": "^7.2.5"
  4214. },
  4215. "suggest": {
  4216. "symfony/translation-implementation": ""
  4217. },
  4218. "type": "library",
  4219. "extra": {
  4220. "branch-alias": {
  4221. "dev-master": "2.0-dev"
  4222. }
  4223. },
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Symfony\\Contracts\\Translation\\": ""
  4227. }
  4228. },
  4229. "notification-url": "https://packagist.org/downloads/",
  4230. "license": [
  4231. "MIT"
  4232. ],
  4233. "authors": [
  4234. {
  4235. "name": "Nicolas Grekas",
  4236. "email": "p@tchwork.com"
  4237. },
  4238. {
  4239. "name": "Symfony Community",
  4240. "homepage": "https://symfony.com/contributors"
  4241. }
  4242. ],
  4243. "description": "Generic abstractions related to translation",
  4244. "homepage": "https://symfony.com",
  4245. "keywords": [
  4246. "abstractions",
  4247. "contracts",
  4248. "decoupling",
  4249. "interfaces",
  4250. "interoperability",
  4251. "standards"
  4252. ],
  4253. "time": "2019-11-18T17:27:11+00:00"
  4254. },
  4255. {
  4256. "name": "symfony/var-dumper",
  4257. "version": "v5.0.8",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/symfony/var-dumper.git",
  4261. "reference": "09de28632f16f81058a85fcf318397218272a07b"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/09de28632f16f81058a85fcf318397218272a07b",
  4266. "reference": "09de28632f16f81058a85fcf318397218272a07b",
  4267. "shasum": "",
  4268. "mirrors": [
  4269. {
  4270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4271. "preferred": true
  4272. }
  4273. ]
  4274. },
  4275. "require": {
  4276. "php": "^7.2.5",
  4277. "symfony/polyfill-mbstring": "~1.0"
  4278. },
  4279. "conflict": {
  4280. "phpunit/phpunit": "<5.4.3",
  4281. "symfony/console": "<4.4"
  4282. },
  4283. "require-dev": {
  4284. "ext-iconv": "*",
  4285. "symfony/console": "^4.4|^5.0",
  4286. "symfony/process": "^4.4|^5.0",
  4287. "twig/twig": "^2.4|^3.0"
  4288. },
  4289. "suggest": {
  4290. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4291. "ext-intl": "To show region name in time zone dump",
  4292. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4293. },
  4294. "bin": [
  4295. "Resources/bin/var-dump-server"
  4296. ],
  4297. "type": "library",
  4298. "extra": {
  4299. "branch-alias": {
  4300. "dev-master": "5.0-dev"
  4301. }
  4302. },
  4303. "autoload": {
  4304. "files": [
  4305. "Resources/functions/dump.php"
  4306. ],
  4307. "psr-4": {
  4308. "Symfony\\Component\\VarDumper\\": ""
  4309. },
  4310. "exclude-from-classmap": [
  4311. "/Tests/"
  4312. ]
  4313. },
  4314. "notification-url": "https://packagist.org/downloads/",
  4315. "license": [
  4316. "MIT"
  4317. ],
  4318. "authors": [
  4319. {
  4320. "name": "Nicolas Grekas",
  4321. "email": "p@tchwork.com"
  4322. },
  4323. {
  4324. "name": "Symfony Community",
  4325. "homepage": "https://symfony.com/contributors"
  4326. }
  4327. ],
  4328. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4329. "homepage": "https://symfony.com",
  4330. "keywords": [
  4331. "debug",
  4332. "dump"
  4333. ],
  4334. "funding": [
  4335. {
  4336. "url": "https://symfony.com/sponsor",
  4337. "type": "custom"
  4338. },
  4339. {
  4340. "url": "https://github.com/fabpot",
  4341. "type": "github"
  4342. },
  4343. {
  4344. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4345. "type": "tidelift"
  4346. }
  4347. ],
  4348. "time": "2020-04-12T16:45:47+00:00"
  4349. },
  4350. {
  4351. "name": "tijsverkoyen/css-to-inline-styles",
  4352. "version": "2.2.2",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4356. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
  4357. },
  4358. "dist": {
  4359. "type": "zip",
  4360. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  4361. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  4362. "shasum": "",
  4363. "mirrors": [
  4364. {
  4365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4366. "preferred": true
  4367. }
  4368. ]
  4369. },
  4370. "require": {
  4371. "ext-dom": "*",
  4372. "ext-libxml": "*",
  4373. "php": "^5.5 || ^7.0",
  4374. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  4375. },
  4376. "require-dev": {
  4377. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4378. },
  4379. "type": "library",
  4380. "extra": {
  4381. "branch-alias": {
  4382. "dev-master": "2.2.x-dev"
  4383. }
  4384. },
  4385. "autoload": {
  4386. "psr-4": {
  4387. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4388. }
  4389. },
  4390. "notification-url": "https://packagist.org/downloads/",
  4391. "license": [
  4392. "BSD-3-Clause"
  4393. ],
  4394. "authors": [
  4395. {
  4396. "name": "Tijs Verkoyen",
  4397. "email": "css_to_inline_styles@verkoyen.eu",
  4398. "role": "Developer"
  4399. }
  4400. ],
  4401. "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.",
  4402. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4403. "time": "2019-10-24T08:53:34+00:00"
  4404. },
  4405. {
  4406. "name": "vlucas/phpdotenv",
  4407. "version": "v4.1.5",
  4408. "source": {
  4409. "type": "git",
  4410. "url": "https://github.com/vlucas/phpdotenv.git",
  4411. "reference": "539bb6927c101a5605d31d11a2d17185a2ce2bf1"
  4412. },
  4413. "dist": {
  4414. "type": "zip",
  4415. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/539bb6927c101a5605d31d11a2d17185a2ce2bf1",
  4416. "reference": "539bb6927c101a5605d31d11a2d17185a2ce2bf1",
  4417. "shasum": "",
  4418. "mirrors": [
  4419. {
  4420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4421. "preferred": true
  4422. }
  4423. ]
  4424. },
  4425. "require": {
  4426. "php": "^5.5.9 || ^7.0 || ^8.0",
  4427. "phpoption/phpoption": "^1.7.2",
  4428. "symfony/polyfill-ctype": "^1.9"
  4429. },
  4430. "require-dev": {
  4431. "bamarni/composer-bin-plugin": "^1.3",
  4432. "ext-filter": "*",
  4433. "ext-pcre": "*",
  4434. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  4435. },
  4436. "suggest": {
  4437. "ext-filter": "Required to use the boolean validator.",
  4438. "ext-pcre": "Required to use most of the library."
  4439. },
  4440. "type": "library",
  4441. "extra": {
  4442. "branch-alias": {
  4443. "dev-master": "4.1-dev"
  4444. }
  4445. },
  4446. "autoload": {
  4447. "psr-4": {
  4448. "Dotenv\\": "src/"
  4449. }
  4450. },
  4451. "notification-url": "https://packagist.org/downloads/",
  4452. "license": [
  4453. "BSD-3-Clause"
  4454. ],
  4455. "authors": [
  4456. {
  4457. "name": "Graham Campbell",
  4458. "email": "graham@alt-three.com",
  4459. "homepage": "https://gjcampbell.co.uk/"
  4460. },
  4461. {
  4462. "name": "Vance Lucas",
  4463. "email": "vance@vancelucas.com",
  4464. "homepage": "https://vancelucas.com/"
  4465. }
  4466. ],
  4467. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4468. "keywords": [
  4469. "dotenv",
  4470. "env",
  4471. "environment"
  4472. ],
  4473. "funding": [
  4474. {
  4475. "url": "https://github.com/GrahamCampbell",
  4476. "type": "github"
  4477. },
  4478. {
  4479. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  4480. "type": "tidelift"
  4481. }
  4482. ],
  4483. "time": "2020-05-02T14:08:57+00:00"
  4484. },
  4485. {
  4486. "name": "voku/portable-ascii",
  4487. "version": "1.4.10",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://github.com/voku/portable-ascii.git",
  4491. "reference": "240e93829a5f985fab0984a6e55ae5e26b78a334"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/240e93829a5f985fab0984a6e55ae5e26b78a334",
  4496. "reference": "240e93829a5f985fab0984a6e55ae5e26b78a334",
  4497. "shasum": "",
  4498. "mirrors": [
  4499. {
  4500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4501. "preferred": true
  4502. }
  4503. ]
  4504. },
  4505. "require": {
  4506. "php": ">=7.0.0"
  4507. },
  4508. "require-dev": {
  4509. "phpunit/phpunit": "~6.0 || ~7.0"
  4510. },
  4511. "suggest": {
  4512. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4513. },
  4514. "type": "library",
  4515. "autoload": {
  4516. "psr-4": {
  4517. "voku\\": "src/voku/",
  4518. "voku\\tests\\": "tests/"
  4519. }
  4520. },
  4521. "notification-url": "https://packagist.org/downloads/",
  4522. "license": [
  4523. "MIT"
  4524. ],
  4525. "authors": [
  4526. {
  4527. "name": "Lars Moelleken",
  4528. "homepage": "http://www.moelleken.org/"
  4529. }
  4530. ],
  4531. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4532. "homepage": "https://github.com/voku/portable-ascii",
  4533. "keywords": [
  4534. "ascii",
  4535. "clean",
  4536. "php"
  4537. ],
  4538. "funding": [
  4539. {
  4540. "url": "https://www.paypal.me/moelleken",
  4541. "type": "custom"
  4542. },
  4543. {
  4544. "url": "https://github.com/voku",
  4545. "type": "github"
  4546. },
  4547. {
  4548. "url": "https://www.patreon.com/voku",
  4549. "type": "patreon"
  4550. },
  4551. {
  4552. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  4553. "type": "tidelift"
  4554. }
  4555. ],
  4556. "time": "2020-03-13T01:23:26+00:00"
  4557. }
  4558. ],
  4559. "packages-dev": [
  4560. {
  4561. "name": "doctrine/instantiator",
  4562. "version": "1.3.0",
  4563. "source": {
  4564. "type": "git",
  4565. "url": "https://github.com/doctrine/instantiator.git",
  4566. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  4567. },
  4568. "dist": {
  4569. "type": "zip",
  4570. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  4571. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  4572. "shasum": ""
  4573. },
  4574. "require": {
  4575. "php": "^7.1"
  4576. },
  4577. "require-dev": {
  4578. "doctrine/coding-standard": "^6.0",
  4579. "ext-pdo": "*",
  4580. "ext-phar": "*",
  4581. "phpbench/phpbench": "^0.13",
  4582. "phpstan/phpstan-phpunit": "^0.11",
  4583. "phpstan/phpstan-shim": "^0.11",
  4584. "phpunit/phpunit": "^7.0"
  4585. },
  4586. "type": "library",
  4587. "extra": {
  4588. "branch-alias": {
  4589. "dev-master": "1.2.x-dev"
  4590. }
  4591. },
  4592. "autoload": {
  4593. "psr-4": {
  4594. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4595. }
  4596. },
  4597. "notification-url": "https://packagist.org/downloads/",
  4598. "license": [
  4599. "MIT"
  4600. ],
  4601. "authors": [
  4602. {
  4603. "name": "Marco Pivetta",
  4604. "email": "ocramius@gmail.com",
  4605. "homepage": "http://ocramius.github.com/"
  4606. }
  4607. ],
  4608. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4609. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4610. "keywords": [
  4611. "constructor",
  4612. "instantiate"
  4613. ],
  4614. "time": "2019-10-21T16:45:58+00:00"
  4615. },
  4616. {
  4617. "name": "facade/flare-client-php",
  4618. "version": "1.3.2",
  4619. "source": {
  4620. "type": "git",
  4621. "url": "https://github.com/facade/flare-client-php.git",
  4622. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004"
  4623. },
  4624. "dist": {
  4625. "type": "zip",
  4626. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  4627. "reference": "db1e03426e7f9472c9ecd1092aff00f56aa6c004",
  4628. "shasum": ""
  4629. },
  4630. "require": {
  4631. "facade/ignition-contracts": "~1.0",
  4632. "illuminate/pipeline": "^5.5|^6.0|^7.0",
  4633. "php": "^7.1",
  4634. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  4635. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  4636. },
  4637. "require-dev": {
  4638. "larapack/dd": "^1.1",
  4639. "phpunit/phpunit": "^7.5.16",
  4640. "spatie/phpunit-snapshot-assertions": "^2.0"
  4641. },
  4642. "type": "library",
  4643. "extra": {
  4644. "branch-alias": {
  4645. "dev-master": "1.0-dev"
  4646. }
  4647. },
  4648. "autoload": {
  4649. "psr-4": {
  4650. "Facade\\FlareClient\\": "src"
  4651. },
  4652. "files": [
  4653. "src/helpers.php"
  4654. ]
  4655. },
  4656. "notification-url": "https://packagist.org/downloads/",
  4657. "license": [
  4658. "MIT"
  4659. ],
  4660. "description": "Send PHP errors to Flare",
  4661. "homepage": "https://github.com/facade/flare-client-php",
  4662. "keywords": [
  4663. "exception",
  4664. "facade",
  4665. "flare",
  4666. "reporting"
  4667. ],
  4668. "funding": [
  4669. {
  4670. "url": "https://www.patreon.com/spatie",
  4671. "type": "patreon"
  4672. }
  4673. ],
  4674. "time": "2020-03-02T15:52:04+00:00"
  4675. },
  4676. {
  4677. "name": "facade/ignition",
  4678. "version": "2.0.2",
  4679. "source": {
  4680. "type": "git",
  4681. "url": "https://github.com/facade/ignition.git",
  4682. "reference": "67f1677954ad33ca6b77f2c41cf43a58624f27fc"
  4683. },
  4684. "dist": {
  4685. "type": "zip",
  4686. "url": "https://api.github.com/repos/facade/ignition/zipball/67f1677954ad33ca6b77f2c41cf43a58624f27fc",
  4687. "reference": "67f1677954ad33ca6b77f2c41cf43a58624f27fc",
  4688. "shasum": ""
  4689. },
  4690. "require": {
  4691. "ext-json": "*",
  4692. "ext-mbstring": "*",
  4693. "facade/flare-client-php": "^1.0",
  4694. "facade/ignition-contracts": "^1.0",
  4695. "filp/whoops": "^2.4",
  4696. "illuminate/support": "^7.0",
  4697. "monolog/monolog": "^2.0",
  4698. "php": "^7.2.5",
  4699. "scrivo/highlight.php": "^9.15",
  4700. "symfony/console": "^5.0",
  4701. "symfony/var-dumper": "^5.0"
  4702. },
  4703. "require-dev": {
  4704. "friendsofphp/php-cs-fixer": "^2.14",
  4705. "mockery/mockery": "^1.3",
  4706. "orchestra/testbench": "5.0"
  4707. },
  4708. "suggest": {
  4709. "laravel/telescope": "^3.1"
  4710. },
  4711. "type": "library",
  4712. "extra": {
  4713. "branch-alias": {
  4714. "dev-master": "2.x-dev"
  4715. },
  4716. "laravel": {
  4717. "providers": [
  4718. "Facade\\Ignition\\IgnitionServiceProvider"
  4719. ],
  4720. "aliases": {
  4721. "Flare": "Facade\\Ignition\\Facades\\Flare"
  4722. }
  4723. }
  4724. },
  4725. "autoload": {
  4726. "psr-4": {
  4727. "Facade\\Ignition\\": "src"
  4728. },
  4729. "files": [
  4730. "src/helpers.php"
  4731. ]
  4732. },
  4733. "notification-url": "https://packagist.org/downloads/",
  4734. "license": [
  4735. "MIT"
  4736. ],
  4737. "description": "A beautiful error page for Laravel applications.",
  4738. "homepage": "https://github.com/facade/ignition",
  4739. "keywords": [
  4740. "error",
  4741. "flare",
  4742. "laravel",
  4743. "page"
  4744. ],
  4745. "time": "2020-03-18T19:20:44+00:00"
  4746. },
  4747. {
  4748. "name": "facade/ignition-contracts",
  4749. "version": "1.0.0",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://github.com/facade/ignition-contracts.git",
  4753. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
  4758. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
  4759. "shasum": ""
  4760. },
  4761. "require": {
  4762. "php": "^7.1"
  4763. },
  4764. "type": "library",
  4765. "autoload": {
  4766. "psr-4": {
  4767. "Facade\\IgnitionContracts\\": "src"
  4768. }
  4769. },
  4770. "notification-url": "https://packagist.org/downloads/",
  4771. "license": [
  4772. "MIT"
  4773. ],
  4774. "authors": [
  4775. {
  4776. "name": "Freek Van der Herten",
  4777. "email": "freek@spatie.be",
  4778. "homepage": "https://flareapp.io",
  4779. "role": "Developer"
  4780. }
  4781. ],
  4782. "description": "Solution contracts for Ignition",
  4783. "homepage": "https://github.com/facade/ignition-contracts",
  4784. "keywords": [
  4785. "contracts",
  4786. "flare",
  4787. "ignition"
  4788. ],
  4789. "time": "2019-08-30T14:06:08+00:00"
  4790. },
  4791. {
  4792. "name": "filp/whoops",
  4793. "version": "2.7.2",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://github.com/filp/whoops.git",
  4797. "reference": "17d0d3f266c8f925ebd035cd36f83cf802b47d4a"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://api.github.com/repos/filp/whoops/zipball/17d0d3f266c8f925ebd035cd36f83cf802b47d4a",
  4802. "reference": "17d0d3f266c8f925ebd035cd36f83cf802b47d4a",
  4803. "shasum": ""
  4804. },
  4805. "require": {
  4806. "php": "^5.5.9 || ^7.0",
  4807. "psr/log": "^1.0.1"
  4808. },
  4809. "require-dev": {
  4810. "mockery/mockery": "^0.9 || ^1.0",
  4811. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  4812. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4813. },
  4814. "suggest": {
  4815. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4816. "whoops/soap": "Formats errors as SOAP responses"
  4817. },
  4818. "type": "library",
  4819. "extra": {
  4820. "branch-alias": {
  4821. "dev-master": "2.6-dev"
  4822. }
  4823. },
  4824. "autoload": {
  4825. "psr-4": {
  4826. "Whoops\\": "src/Whoops/"
  4827. }
  4828. },
  4829. "notification-url": "https://packagist.org/downloads/",
  4830. "license": [
  4831. "MIT"
  4832. ],
  4833. "authors": [
  4834. {
  4835. "name": "Filipe Dobreira",
  4836. "homepage": "https://github.com/filp",
  4837. "role": "Developer"
  4838. }
  4839. ],
  4840. "description": "php error handling for cool kids",
  4841. "homepage": "https://filp.github.io/whoops/",
  4842. "keywords": [
  4843. "error",
  4844. "exception",
  4845. "handling",
  4846. "library",
  4847. "throwable",
  4848. "whoops"
  4849. ],
  4850. "time": "2020-05-05T12:28:07+00:00"
  4851. },
  4852. {
  4853. "name": "fzaninotto/faker",
  4854. "version": "v1.9.1",
  4855. "source": {
  4856. "type": "git",
  4857. "url": "https://github.com/fzaninotto/Faker.git",
  4858. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  4859. },
  4860. "dist": {
  4861. "type": "zip",
  4862. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  4863. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  4864. "shasum": ""
  4865. },
  4866. "require": {
  4867. "php": "^5.3.3 || ^7.0"
  4868. },
  4869. "require-dev": {
  4870. "ext-intl": "*",
  4871. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4872. "squizlabs/php_codesniffer": "^2.9.2"
  4873. },
  4874. "type": "library",
  4875. "extra": {
  4876. "branch-alias": {
  4877. "dev-master": "1.9-dev"
  4878. }
  4879. },
  4880. "autoload": {
  4881. "psr-4": {
  4882. "Faker\\": "src/Faker/"
  4883. }
  4884. },
  4885. "notification-url": "https://packagist.org/downloads/",
  4886. "license": [
  4887. "MIT"
  4888. ],
  4889. "authors": [
  4890. {
  4891. "name": "François Zaninotto"
  4892. }
  4893. ],
  4894. "description": "Faker is a PHP library that generates fake data for you.",
  4895. "keywords": [
  4896. "data",
  4897. "faker",
  4898. "fixtures"
  4899. ],
  4900. "time": "2019-12-12T13:22:17+00:00"
  4901. },
  4902. {
  4903. "name": "hamcrest/hamcrest-php",
  4904. "version": "v2.0.0",
  4905. "source": {
  4906. "type": "git",
  4907. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4908. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  4909. },
  4910. "dist": {
  4911. "type": "zip",
  4912. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4913. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4914. "shasum": ""
  4915. },
  4916. "require": {
  4917. "php": "^5.3|^7.0"
  4918. },
  4919. "replace": {
  4920. "cordoval/hamcrest-php": "*",
  4921. "davedevelopment/hamcrest-php": "*",
  4922. "kodova/hamcrest-php": "*"
  4923. },
  4924. "require-dev": {
  4925. "phpunit/php-file-iterator": "1.3.3",
  4926. "phpunit/phpunit": "~4.0",
  4927. "satooshi/php-coveralls": "^1.0"
  4928. },
  4929. "type": "library",
  4930. "extra": {
  4931. "branch-alias": {
  4932. "dev-master": "2.0-dev"
  4933. }
  4934. },
  4935. "autoload": {
  4936. "classmap": [
  4937. "hamcrest"
  4938. ]
  4939. },
  4940. "notification-url": "https://packagist.org/downloads/",
  4941. "license": [
  4942. "BSD"
  4943. ],
  4944. "description": "This is the PHP port of Hamcrest Matchers",
  4945. "keywords": [
  4946. "test"
  4947. ],
  4948. "time": "2016-01-20T08:20:44+00:00"
  4949. },
  4950. {
  4951. "name": "mockery/mockery",
  4952. "version": "1.3.1",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://github.com/mockery/mockery.git",
  4956. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://api.github.com/repos/mockery/mockery/zipball/f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  4961. "reference": "f69bbde7d7a75d6b2862d9ca8fab1cd28014b4be",
  4962. "shasum": ""
  4963. },
  4964. "require": {
  4965. "hamcrest/hamcrest-php": "~2.0",
  4966. "lib-pcre": ">=7.0",
  4967. "php": ">=5.6.0"
  4968. },
  4969. "require-dev": {
  4970. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  4971. },
  4972. "type": "library",
  4973. "extra": {
  4974. "branch-alias": {
  4975. "dev-master": "1.3.x-dev"
  4976. }
  4977. },
  4978. "autoload": {
  4979. "psr-0": {
  4980. "Mockery": "library/"
  4981. }
  4982. },
  4983. "notification-url": "https://packagist.org/downloads/",
  4984. "license": [
  4985. "BSD-3-Clause"
  4986. ],
  4987. "authors": [
  4988. {
  4989. "name": "Pádraic Brady",
  4990. "email": "padraic.brady@gmail.com",
  4991. "homepage": "http://blog.astrumfutura.com"
  4992. },
  4993. {
  4994. "name": "Dave Marshall",
  4995. "email": "dave.marshall@atstsolutions.co.uk",
  4996. "homepage": "http://davedevelopment.co.uk"
  4997. }
  4998. ],
  4999. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5000. "homepage": "https://github.com/mockery/mockery",
  5001. "keywords": [
  5002. "BDD",
  5003. "TDD",
  5004. "library",
  5005. "mock",
  5006. "mock objects",
  5007. "mockery",
  5008. "stub",
  5009. "test",
  5010. "test double",
  5011. "testing"
  5012. ],
  5013. "time": "2019-12-26T09:49:15+00:00"
  5014. },
  5015. {
  5016. "name": "myclabs/deep-copy",
  5017. "version": "1.9.5",
  5018. "source": {
  5019. "type": "git",
  5020. "url": "https://github.com/myclabs/DeepCopy.git",
  5021. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  5022. },
  5023. "dist": {
  5024. "type": "zip",
  5025. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  5026. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  5027. "shasum": ""
  5028. },
  5029. "require": {
  5030. "php": "^7.1"
  5031. },
  5032. "replace": {
  5033. "myclabs/deep-copy": "self.version"
  5034. },
  5035. "require-dev": {
  5036. "doctrine/collections": "^1.0",
  5037. "doctrine/common": "^2.6",
  5038. "phpunit/phpunit": "^7.1"
  5039. },
  5040. "type": "library",
  5041. "autoload": {
  5042. "psr-4": {
  5043. "DeepCopy\\": "src/DeepCopy/"
  5044. },
  5045. "files": [
  5046. "src/DeepCopy/deep_copy.php"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "MIT"
  5052. ],
  5053. "description": "Create deep copies (clones) of your objects",
  5054. "keywords": [
  5055. "clone",
  5056. "copy",
  5057. "duplicate",
  5058. "object",
  5059. "object graph"
  5060. ],
  5061. "time": "2020-01-17T21:11:47+00:00"
  5062. },
  5063. {
  5064. "name": "nunomaduro/collision",
  5065. "version": "v4.2.0",
  5066. "source": {
  5067. "type": "git",
  5068. "url": "https://github.com/nunomaduro/collision.git",
  5069. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  5070. },
  5071. "dist": {
  5072. "type": "zip",
  5073. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  5074. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  5075. "shasum": ""
  5076. },
  5077. "require": {
  5078. "facade/ignition-contracts": "^1.0",
  5079. "filp/whoops": "^2.4",
  5080. "php": "^7.2.5",
  5081. "symfony/console": "^5.0"
  5082. },
  5083. "require-dev": {
  5084. "facade/ignition": "^2.0",
  5085. "fideloper/proxy": "^4.2",
  5086. "friendsofphp/php-cs-fixer": "^2.16",
  5087. "fruitcake/laravel-cors": "^1.0",
  5088. "laravel/framework": "^7.0",
  5089. "laravel/tinker": "^2.0",
  5090. "nunomaduro/larastan": "^0.5",
  5091. "orchestra/testbench": "^5.0",
  5092. "phpstan/phpstan": "^0.12.3",
  5093. "phpunit/phpunit": "^8.5.1 || ^9.0"
  5094. },
  5095. "type": "library",
  5096. "extra": {
  5097. "laravel": {
  5098. "providers": [
  5099. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5100. ]
  5101. }
  5102. },
  5103. "autoload": {
  5104. "psr-4": {
  5105. "NunoMaduro\\Collision\\": "src/"
  5106. }
  5107. },
  5108. "notification-url": "https://packagist.org/downloads/",
  5109. "license": [
  5110. "MIT"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "Nuno Maduro",
  5115. "email": "enunomaduro@gmail.com"
  5116. }
  5117. ],
  5118. "description": "Cli error handling for console/command-line PHP applications.",
  5119. "keywords": [
  5120. "artisan",
  5121. "cli",
  5122. "command-line",
  5123. "console",
  5124. "error",
  5125. "handling",
  5126. "laravel",
  5127. "laravel-zero",
  5128. "php",
  5129. "symfony"
  5130. ],
  5131. "funding": [
  5132. {
  5133. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  5134. "type": "custom"
  5135. },
  5136. {
  5137. "url": "https://github.com/nunomaduro",
  5138. "type": "github"
  5139. },
  5140. {
  5141. "url": "https://www.patreon.com/nunomaduro",
  5142. "type": "patreon"
  5143. }
  5144. ],
  5145. "time": "2020-04-04T19:56:08+00:00"
  5146. },
  5147. {
  5148. "name": "phar-io/manifest",
  5149. "version": "1.0.3",
  5150. "source": {
  5151. "type": "git",
  5152. "url": "https://github.com/phar-io/manifest.git",
  5153. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  5154. },
  5155. "dist": {
  5156. "type": "zip",
  5157. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5158. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5159. "shasum": ""
  5160. },
  5161. "require": {
  5162. "ext-dom": "*",
  5163. "ext-phar": "*",
  5164. "phar-io/version": "^2.0",
  5165. "php": "^5.6 || ^7.0"
  5166. },
  5167. "type": "library",
  5168. "extra": {
  5169. "branch-alias": {
  5170. "dev-master": "1.0.x-dev"
  5171. }
  5172. },
  5173. "autoload": {
  5174. "classmap": [
  5175. "src/"
  5176. ]
  5177. },
  5178. "notification-url": "https://packagist.org/downloads/",
  5179. "license": [
  5180. "BSD-3-Clause"
  5181. ],
  5182. "authors": [
  5183. {
  5184. "name": "Arne Blankerts",
  5185. "email": "arne@blankerts.de",
  5186. "role": "Developer"
  5187. },
  5188. {
  5189. "name": "Sebastian Heuer",
  5190. "email": "sebastian@phpeople.de",
  5191. "role": "Developer"
  5192. },
  5193. {
  5194. "name": "Sebastian Bergmann",
  5195. "email": "sebastian@phpunit.de",
  5196. "role": "Developer"
  5197. }
  5198. ],
  5199. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5200. "time": "2018-07-08T19:23:20+00:00"
  5201. },
  5202. {
  5203. "name": "phar-io/version",
  5204. "version": "2.0.1",
  5205. "source": {
  5206. "type": "git",
  5207. "url": "https://github.com/phar-io/version.git",
  5208. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  5209. },
  5210. "dist": {
  5211. "type": "zip",
  5212. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5213. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5214. "shasum": ""
  5215. },
  5216. "require": {
  5217. "php": "^5.6 || ^7.0"
  5218. },
  5219. "type": "library",
  5220. "autoload": {
  5221. "classmap": [
  5222. "src/"
  5223. ]
  5224. },
  5225. "notification-url": "https://packagist.org/downloads/",
  5226. "license": [
  5227. "BSD-3-Clause"
  5228. ],
  5229. "authors": [
  5230. {
  5231. "name": "Arne Blankerts",
  5232. "email": "arne@blankerts.de",
  5233. "role": "Developer"
  5234. },
  5235. {
  5236. "name": "Sebastian Heuer",
  5237. "email": "sebastian@phpeople.de",
  5238. "role": "Developer"
  5239. },
  5240. {
  5241. "name": "Sebastian Bergmann",
  5242. "email": "sebastian@phpunit.de",
  5243. "role": "Developer"
  5244. }
  5245. ],
  5246. "description": "Library for handling version information and constraints",
  5247. "time": "2018-07-08T19:19:57+00:00"
  5248. },
  5249. {
  5250. "name": "phpdocumentor/reflection-common",
  5251. "version": "2.1.0",
  5252. "source": {
  5253. "type": "git",
  5254. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5255. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  5256. },
  5257. "dist": {
  5258. "type": "zip",
  5259. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  5260. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  5261. "shasum": ""
  5262. },
  5263. "require": {
  5264. "php": ">=7.1"
  5265. },
  5266. "type": "library",
  5267. "extra": {
  5268. "branch-alias": {
  5269. "dev-master": "2.x-dev"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "psr-4": {
  5274. "phpDocumentor\\Reflection\\": "src/"
  5275. }
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "MIT"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Jaap van Otterdijk",
  5284. "email": "opensource@ijaap.nl"
  5285. }
  5286. ],
  5287. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5288. "homepage": "http://www.phpdoc.org",
  5289. "keywords": [
  5290. "FQSEN",
  5291. "phpDocumentor",
  5292. "phpdoc",
  5293. "reflection",
  5294. "static analysis"
  5295. ],
  5296. "time": "2020-04-27T09:25:28+00:00"
  5297. },
  5298. {
  5299. "name": "phpdocumentor/reflection-docblock",
  5300. "version": "5.1.0",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5304. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  5309. "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "ext-filter": "^7.1",
  5314. "php": "^7.2",
  5315. "phpdocumentor/reflection-common": "^2.0",
  5316. "phpdocumentor/type-resolver": "^1.0",
  5317. "webmozart/assert": "^1"
  5318. },
  5319. "require-dev": {
  5320. "doctrine/instantiator": "^1",
  5321. "mockery/mockery": "^1"
  5322. },
  5323. "type": "library",
  5324. "extra": {
  5325. "branch-alias": {
  5326. "dev-master": "5.x-dev"
  5327. }
  5328. },
  5329. "autoload": {
  5330. "psr-4": {
  5331. "phpDocumentor\\Reflection\\": "src"
  5332. }
  5333. },
  5334. "notification-url": "https://packagist.org/downloads/",
  5335. "license": [
  5336. "MIT"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "Mike van Riel",
  5341. "email": "me@mikevanriel.com"
  5342. },
  5343. {
  5344. "name": "Jaap van Otterdijk",
  5345. "email": "account@ijaap.nl"
  5346. }
  5347. ],
  5348. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5349. "time": "2020-02-22T12:28:44+00:00"
  5350. },
  5351. {
  5352. "name": "phpdocumentor/type-resolver",
  5353. "version": "1.1.0",
  5354. "source": {
  5355. "type": "git",
  5356. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5357. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95"
  5358. },
  5359. "dist": {
  5360. "type": "zip",
  5361. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95",
  5362. "reference": "7462d5f123dfc080dfdf26897032a6513644fc95",
  5363. "shasum": ""
  5364. },
  5365. "require": {
  5366. "php": "^7.2",
  5367. "phpdocumentor/reflection-common": "^2.0"
  5368. },
  5369. "require-dev": {
  5370. "ext-tokenizer": "^7.2",
  5371. "mockery/mockery": "~1"
  5372. },
  5373. "type": "library",
  5374. "extra": {
  5375. "branch-alias": {
  5376. "dev-master": "1.x-dev"
  5377. }
  5378. },
  5379. "autoload": {
  5380. "psr-4": {
  5381. "phpDocumentor\\Reflection\\": "src"
  5382. }
  5383. },
  5384. "notification-url": "https://packagist.org/downloads/",
  5385. "license": [
  5386. "MIT"
  5387. ],
  5388. "authors": [
  5389. {
  5390. "name": "Mike van Riel",
  5391. "email": "me@mikevanriel.com"
  5392. }
  5393. ],
  5394. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5395. "time": "2020-02-18T18:59:58+00:00"
  5396. },
  5397. {
  5398. "name": "phpspec/prophecy",
  5399. "version": "v1.10.3",
  5400. "source": {
  5401. "type": "git",
  5402. "url": "https://github.com/phpspec/prophecy.git",
  5403. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  5404. },
  5405. "dist": {
  5406. "type": "zip",
  5407. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  5408. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  5409. "shasum": ""
  5410. },
  5411. "require": {
  5412. "doctrine/instantiator": "^1.0.2",
  5413. "php": "^5.3|^7.0",
  5414. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  5415. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  5416. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  5417. },
  5418. "require-dev": {
  5419. "phpspec/phpspec": "^2.5 || ^3.2",
  5420. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5421. },
  5422. "type": "library",
  5423. "extra": {
  5424. "branch-alias": {
  5425. "dev-master": "1.10.x-dev"
  5426. }
  5427. },
  5428. "autoload": {
  5429. "psr-4": {
  5430. "Prophecy\\": "src/Prophecy"
  5431. }
  5432. },
  5433. "notification-url": "https://packagist.org/downloads/",
  5434. "license": [
  5435. "MIT"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "Konstantin Kudryashov",
  5440. "email": "ever.zet@gmail.com",
  5441. "homepage": "http://everzet.com"
  5442. },
  5443. {
  5444. "name": "Marcello Duarte",
  5445. "email": "marcello.duarte@gmail.com"
  5446. }
  5447. ],
  5448. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5449. "homepage": "https://github.com/phpspec/prophecy",
  5450. "keywords": [
  5451. "Double",
  5452. "Dummy",
  5453. "fake",
  5454. "mock",
  5455. "spy",
  5456. "stub"
  5457. ],
  5458. "time": "2020-03-05T15:02:03+00:00"
  5459. },
  5460. {
  5461. "name": "phpunit/php-code-coverage",
  5462. "version": "7.0.10",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5466. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  5471. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "ext-dom": "*",
  5476. "ext-xmlwriter": "*",
  5477. "php": "^7.2",
  5478. "phpunit/php-file-iterator": "^2.0.2",
  5479. "phpunit/php-text-template": "^1.2.1",
  5480. "phpunit/php-token-stream": "^3.1.1",
  5481. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5482. "sebastian/environment": "^4.2.2",
  5483. "sebastian/version": "^2.0.1",
  5484. "theseer/tokenizer": "^1.1.3"
  5485. },
  5486. "require-dev": {
  5487. "phpunit/phpunit": "^8.2.2"
  5488. },
  5489. "suggest": {
  5490. "ext-xdebug": "^2.7.2"
  5491. },
  5492. "type": "library",
  5493. "extra": {
  5494. "branch-alias": {
  5495. "dev-master": "7.0-dev"
  5496. }
  5497. },
  5498. "autoload": {
  5499. "classmap": [
  5500. "src/"
  5501. ]
  5502. },
  5503. "notification-url": "https://packagist.org/downloads/",
  5504. "license": [
  5505. "BSD-3-Clause"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Sebastian Bergmann",
  5510. "email": "sebastian@phpunit.de",
  5511. "role": "lead"
  5512. }
  5513. ],
  5514. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5515. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5516. "keywords": [
  5517. "coverage",
  5518. "testing",
  5519. "xunit"
  5520. ],
  5521. "time": "2019-11-20T13:55:58+00:00"
  5522. },
  5523. {
  5524. "name": "phpunit/php-file-iterator",
  5525. "version": "2.0.2",
  5526. "source": {
  5527. "type": "git",
  5528. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5529. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5530. },
  5531. "dist": {
  5532. "type": "zip",
  5533. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5534. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5535. "shasum": ""
  5536. },
  5537. "require": {
  5538. "php": "^7.1"
  5539. },
  5540. "require-dev": {
  5541. "phpunit/phpunit": "^7.1"
  5542. },
  5543. "type": "library",
  5544. "extra": {
  5545. "branch-alias": {
  5546. "dev-master": "2.0.x-dev"
  5547. }
  5548. },
  5549. "autoload": {
  5550. "classmap": [
  5551. "src/"
  5552. ]
  5553. },
  5554. "notification-url": "https://packagist.org/downloads/",
  5555. "license": [
  5556. "BSD-3-Clause"
  5557. ],
  5558. "authors": [
  5559. {
  5560. "name": "Sebastian Bergmann",
  5561. "email": "sebastian@phpunit.de",
  5562. "role": "lead"
  5563. }
  5564. ],
  5565. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5566. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5567. "keywords": [
  5568. "filesystem",
  5569. "iterator"
  5570. ],
  5571. "time": "2018-09-13T20:33:42+00:00"
  5572. },
  5573. {
  5574. "name": "phpunit/php-text-template",
  5575. "version": "1.2.1",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5579. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5584. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "php": ">=5.3.3"
  5589. },
  5590. "type": "library",
  5591. "autoload": {
  5592. "classmap": [
  5593. "src/"
  5594. ]
  5595. },
  5596. "notification-url": "https://packagist.org/downloads/",
  5597. "license": [
  5598. "BSD-3-Clause"
  5599. ],
  5600. "authors": [
  5601. {
  5602. "name": "Sebastian Bergmann",
  5603. "email": "sebastian@phpunit.de",
  5604. "role": "lead"
  5605. }
  5606. ],
  5607. "description": "Simple template engine.",
  5608. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5609. "keywords": [
  5610. "template"
  5611. ],
  5612. "time": "2015-06-21T13:50:34+00:00"
  5613. },
  5614. {
  5615. "name": "phpunit/php-timer",
  5616. "version": "2.1.2",
  5617. "source": {
  5618. "type": "git",
  5619. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5620. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  5621. },
  5622. "dist": {
  5623. "type": "zip",
  5624. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  5625. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  5626. "shasum": ""
  5627. },
  5628. "require": {
  5629. "php": "^7.1"
  5630. },
  5631. "require-dev": {
  5632. "phpunit/phpunit": "^7.0"
  5633. },
  5634. "type": "library",
  5635. "extra": {
  5636. "branch-alias": {
  5637. "dev-master": "2.1-dev"
  5638. }
  5639. },
  5640. "autoload": {
  5641. "classmap": [
  5642. "src/"
  5643. ]
  5644. },
  5645. "notification-url": "https://packagist.org/downloads/",
  5646. "license": [
  5647. "BSD-3-Clause"
  5648. ],
  5649. "authors": [
  5650. {
  5651. "name": "Sebastian Bergmann",
  5652. "email": "sebastian@phpunit.de",
  5653. "role": "lead"
  5654. }
  5655. ],
  5656. "description": "Utility class for timing",
  5657. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5658. "keywords": [
  5659. "timer"
  5660. ],
  5661. "time": "2019-06-07T04:22:29+00:00"
  5662. },
  5663. {
  5664. "name": "phpunit/php-token-stream",
  5665. "version": "3.1.1",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5669. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  5674. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  5675. "shasum": ""
  5676. },
  5677. "require": {
  5678. "ext-tokenizer": "*",
  5679. "php": "^7.1"
  5680. },
  5681. "require-dev": {
  5682. "phpunit/phpunit": "^7.0"
  5683. },
  5684. "type": "library",
  5685. "extra": {
  5686. "branch-alias": {
  5687. "dev-master": "3.1-dev"
  5688. }
  5689. },
  5690. "autoload": {
  5691. "classmap": [
  5692. "src/"
  5693. ]
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "BSD-3-Clause"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Sebastian Bergmann",
  5702. "email": "sebastian@phpunit.de"
  5703. }
  5704. ],
  5705. "description": "Wrapper around PHP's tokenizer extension.",
  5706. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5707. "keywords": [
  5708. "tokenizer"
  5709. ],
  5710. "time": "2019-09-17T06:23:10+00:00"
  5711. },
  5712. {
  5713. "name": "phpunit/phpunit",
  5714. "version": "8.5.4",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5718. "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8474e22d7d642f665084ba5ec780626cbd1efd23",
  5723. "reference": "8474e22d7d642f665084ba5ec780626cbd1efd23",
  5724. "shasum": ""
  5725. },
  5726. "require": {
  5727. "doctrine/instantiator": "^1.2.0",
  5728. "ext-dom": "*",
  5729. "ext-json": "*",
  5730. "ext-libxml": "*",
  5731. "ext-mbstring": "*",
  5732. "ext-xml": "*",
  5733. "ext-xmlwriter": "*",
  5734. "myclabs/deep-copy": "^1.9.1",
  5735. "phar-io/manifest": "^1.0.3",
  5736. "phar-io/version": "^2.0.1",
  5737. "php": "^7.2",
  5738. "phpspec/prophecy": "^1.8.1",
  5739. "phpunit/php-code-coverage": "^7.0.7",
  5740. "phpunit/php-file-iterator": "^2.0.2",
  5741. "phpunit/php-text-template": "^1.2.1",
  5742. "phpunit/php-timer": "^2.1.2",
  5743. "sebastian/comparator": "^3.0.2",
  5744. "sebastian/diff": "^3.0.2",
  5745. "sebastian/environment": "^4.2.2",
  5746. "sebastian/exporter": "^3.1.1",
  5747. "sebastian/global-state": "^3.0.0",
  5748. "sebastian/object-enumerator": "^3.0.3",
  5749. "sebastian/resource-operations": "^2.0.1",
  5750. "sebastian/type": "^1.1.3",
  5751. "sebastian/version": "^2.0.1"
  5752. },
  5753. "require-dev": {
  5754. "ext-pdo": "*"
  5755. },
  5756. "suggest": {
  5757. "ext-soap": "*",
  5758. "ext-xdebug": "*",
  5759. "phpunit/php-invoker": "^2.0.0"
  5760. },
  5761. "bin": [
  5762. "phpunit"
  5763. ],
  5764. "type": "library",
  5765. "extra": {
  5766. "branch-alias": {
  5767. "dev-master": "8.5-dev"
  5768. }
  5769. },
  5770. "autoload": {
  5771. "classmap": [
  5772. "src/"
  5773. ]
  5774. },
  5775. "notification-url": "https://packagist.org/downloads/",
  5776. "license": [
  5777. "BSD-3-Clause"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "Sebastian Bergmann",
  5782. "email": "sebastian@phpunit.de",
  5783. "role": "lead"
  5784. }
  5785. ],
  5786. "description": "The PHP Unit Testing framework.",
  5787. "homepage": "https://phpunit.de/",
  5788. "keywords": [
  5789. "phpunit",
  5790. "testing",
  5791. "xunit"
  5792. ],
  5793. "funding": [
  5794. {
  5795. "url": "https://phpunit.de/donate.html",
  5796. "type": "custom"
  5797. },
  5798. {
  5799. "url": "https://github.com/sebastianbergmann",
  5800. "type": "github"
  5801. }
  5802. ],
  5803. "time": "2020-04-23T04:39:42+00:00"
  5804. },
  5805. {
  5806. "name": "scrivo/highlight.php",
  5807. "version": "v9.18.1.1",
  5808. "source": {
  5809. "type": "git",
  5810. "url": "https://github.com/scrivo/highlight.php.git",
  5811. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558"
  5812. },
  5813. "dist": {
  5814. "type": "zip",
  5815. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/52fc21c99fd888e33aed4879e55a3646f8d40558",
  5816. "reference": "52fc21c99fd888e33aed4879e55a3646f8d40558",
  5817. "shasum": ""
  5818. },
  5819. "require": {
  5820. "ext-json": "*",
  5821. "ext-mbstring": "*",
  5822. "php": ">=5.4"
  5823. },
  5824. "require-dev": {
  5825. "phpunit/phpunit": "^4.8|^5.7",
  5826. "sabberworm/php-css-parser": "^8.3",
  5827. "symfony/finder": "^2.8|^3.4",
  5828. "symfony/var-dumper": "^2.8|^3.4"
  5829. },
  5830. "suggest": {
  5831. "ext-dom": "Needed to make use of the features in the utilities namespace"
  5832. },
  5833. "type": "library",
  5834. "autoload": {
  5835. "psr-0": {
  5836. "Highlight\\": "",
  5837. "HighlightUtilities\\": ""
  5838. },
  5839. "files": [
  5840. "HighlightUtilities/functions.php"
  5841. ]
  5842. },
  5843. "notification-url": "https://packagist.org/downloads/",
  5844. "license": [
  5845. "BSD-3-Clause"
  5846. ],
  5847. "authors": [
  5848. {
  5849. "name": "Geert Bergman",
  5850. "homepage": "http://www.scrivo.org/",
  5851. "role": "Project Author"
  5852. },
  5853. {
  5854. "name": "Vladimir Jimenez",
  5855. "homepage": "https://allejo.io",
  5856. "role": "Maintainer"
  5857. },
  5858. {
  5859. "name": "Martin Folkers",
  5860. "homepage": "https://twobrain.io",
  5861. "role": "Contributor"
  5862. }
  5863. ],
  5864. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  5865. "keywords": [
  5866. "code",
  5867. "highlight",
  5868. "highlight.js",
  5869. "highlight.php",
  5870. "syntax"
  5871. ],
  5872. "funding": [
  5873. {
  5874. "url": "https://github.com/allejo",
  5875. "type": "github"
  5876. }
  5877. ],
  5878. "time": "2020-03-02T05:59:21+00:00"
  5879. },
  5880. {
  5881. "name": "sebastian/code-unit-reverse-lookup",
  5882. "version": "1.0.1",
  5883. "source": {
  5884. "type": "git",
  5885. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5886. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5887. },
  5888. "dist": {
  5889. "type": "zip",
  5890. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5891. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5892. "shasum": ""
  5893. },
  5894. "require": {
  5895. "php": "^5.6 || ^7.0"
  5896. },
  5897. "require-dev": {
  5898. "phpunit/phpunit": "^5.7 || ^6.0"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-master": "1.0.x-dev"
  5904. }
  5905. },
  5906. "autoload": {
  5907. "classmap": [
  5908. "src/"
  5909. ]
  5910. },
  5911. "notification-url": "https://packagist.org/downloads/",
  5912. "license": [
  5913. "BSD-3-Clause"
  5914. ],
  5915. "authors": [
  5916. {
  5917. "name": "Sebastian Bergmann",
  5918. "email": "sebastian@phpunit.de"
  5919. }
  5920. ],
  5921. "description": "Looks up which function or method a line of code belongs to",
  5922. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5923. "time": "2017-03-04T06:30:41+00:00"
  5924. },
  5925. {
  5926. "name": "sebastian/comparator",
  5927. "version": "3.0.2",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/sebastianbergmann/comparator.git",
  5931. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5936. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5937. "shasum": ""
  5938. },
  5939. "require": {
  5940. "php": "^7.1",
  5941. "sebastian/diff": "^3.0",
  5942. "sebastian/exporter": "^3.1"
  5943. },
  5944. "require-dev": {
  5945. "phpunit/phpunit": "^7.1"
  5946. },
  5947. "type": "library",
  5948. "extra": {
  5949. "branch-alias": {
  5950. "dev-master": "3.0-dev"
  5951. }
  5952. },
  5953. "autoload": {
  5954. "classmap": [
  5955. "src/"
  5956. ]
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "BSD-3-Clause"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "Jeff Welch",
  5965. "email": "whatthejeff@gmail.com"
  5966. },
  5967. {
  5968. "name": "Volker Dusch",
  5969. "email": "github@wallbash.com"
  5970. },
  5971. {
  5972. "name": "Bernhard Schussek",
  5973. "email": "bschussek@2bepublished.at"
  5974. },
  5975. {
  5976. "name": "Sebastian Bergmann",
  5977. "email": "sebastian@phpunit.de"
  5978. }
  5979. ],
  5980. "description": "Provides the functionality to compare PHP values for equality",
  5981. "homepage": "https://github.com/sebastianbergmann/comparator",
  5982. "keywords": [
  5983. "comparator",
  5984. "compare",
  5985. "equality"
  5986. ],
  5987. "time": "2018-07-12T15:12:46+00:00"
  5988. },
  5989. {
  5990. "name": "sebastian/diff",
  5991. "version": "3.0.2",
  5992. "source": {
  5993. "type": "git",
  5994. "url": "https://github.com/sebastianbergmann/diff.git",
  5995. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  5996. },
  5997. "dist": {
  5998. "type": "zip",
  5999. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6000. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6001. "shasum": ""
  6002. },
  6003. "require": {
  6004. "php": "^7.1"
  6005. },
  6006. "require-dev": {
  6007. "phpunit/phpunit": "^7.5 || ^8.0",
  6008. "symfony/process": "^2 || ^3.3 || ^4"
  6009. },
  6010. "type": "library",
  6011. "extra": {
  6012. "branch-alias": {
  6013. "dev-master": "3.0-dev"
  6014. }
  6015. },
  6016. "autoload": {
  6017. "classmap": [
  6018. "src/"
  6019. ]
  6020. },
  6021. "notification-url": "https://packagist.org/downloads/",
  6022. "license": [
  6023. "BSD-3-Clause"
  6024. ],
  6025. "authors": [
  6026. {
  6027. "name": "Kore Nordmann",
  6028. "email": "mail@kore-nordmann.de"
  6029. },
  6030. {
  6031. "name": "Sebastian Bergmann",
  6032. "email": "sebastian@phpunit.de"
  6033. }
  6034. ],
  6035. "description": "Diff implementation",
  6036. "homepage": "https://github.com/sebastianbergmann/diff",
  6037. "keywords": [
  6038. "diff",
  6039. "udiff",
  6040. "unidiff",
  6041. "unified diff"
  6042. ],
  6043. "time": "2019-02-04T06:01:07+00:00"
  6044. },
  6045. {
  6046. "name": "sebastian/environment",
  6047. "version": "4.2.3",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/sebastianbergmann/environment.git",
  6051. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  6056. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  6057. "shasum": ""
  6058. },
  6059. "require": {
  6060. "php": "^7.1"
  6061. },
  6062. "require-dev": {
  6063. "phpunit/phpunit": "^7.5"
  6064. },
  6065. "suggest": {
  6066. "ext-posix": "*"
  6067. },
  6068. "type": "library",
  6069. "extra": {
  6070. "branch-alias": {
  6071. "dev-master": "4.2-dev"
  6072. }
  6073. },
  6074. "autoload": {
  6075. "classmap": [
  6076. "src/"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "BSD-3-Clause"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Sebastian Bergmann",
  6086. "email": "sebastian@phpunit.de"
  6087. }
  6088. ],
  6089. "description": "Provides functionality to handle HHVM/PHP environments",
  6090. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6091. "keywords": [
  6092. "Xdebug",
  6093. "environment",
  6094. "hhvm"
  6095. ],
  6096. "time": "2019-11-20T08:46:58+00:00"
  6097. },
  6098. {
  6099. "name": "sebastian/exporter",
  6100. "version": "3.1.2",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/sebastianbergmann/exporter.git",
  6104. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6109. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "php": "^7.0",
  6114. "sebastian/recursion-context": "^3.0"
  6115. },
  6116. "require-dev": {
  6117. "ext-mbstring": "*",
  6118. "phpunit/phpunit": "^6.0"
  6119. },
  6120. "type": "library",
  6121. "extra": {
  6122. "branch-alias": {
  6123. "dev-master": "3.1.x-dev"
  6124. }
  6125. },
  6126. "autoload": {
  6127. "classmap": [
  6128. "src/"
  6129. ]
  6130. },
  6131. "notification-url": "https://packagist.org/downloads/",
  6132. "license": [
  6133. "BSD-3-Clause"
  6134. ],
  6135. "authors": [
  6136. {
  6137. "name": "Sebastian Bergmann",
  6138. "email": "sebastian@phpunit.de"
  6139. },
  6140. {
  6141. "name": "Jeff Welch",
  6142. "email": "whatthejeff@gmail.com"
  6143. },
  6144. {
  6145. "name": "Volker Dusch",
  6146. "email": "github@wallbash.com"
  6147. },
  6148. {
  6149. "name": "Adam Harvey",
  6150. "email": "aharvey@php.net"
  6151. },
  6152. {
  6153. "name": "Bernhard Schussek",
  6154. "email": "bschussek@gmail.com"
  6155. }
  6156. ],
  6157. "description": "Provides the functionality to export PHP variables for visualization",
  6158. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6159. "keywords": [
  6160. "export",
  6161. "exporter"
  6162. ],
  6163. "time": "2019-09-14T09:02:43+00:00"
  6164. },
  6165. {
  6166. "name": "sebastian/global-state",
  6167. "version": "3.0.0",
  6168. "source": {
  6169. "type": "git",
  6170. "url": "https://github.com/sebastianbergmann/global-state.git",
  6171. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  6172. },
  6173. "dist": {
  6174. "type": "zip",
  6175. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6176. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6177. "shasum": ""
  6178. },
  6179. "require": {
  6180. "php": "^7.2",
  6181. "sebastian/object-reflector": "^1.1.1",
  6182. "sebastian/recursion-context": "^3.0"
  6183. },
  6184. "require-dev": {
  6185. "ext-dom": "*",
  6186. "phpunit/phpunit": "^8.0"
  6187. },
  6188. "suggest": {
  6189. "ext-uopz": "*"
  6190. },
  6191. "type": "library",
  6192. "extra": {
  6193. "branch-alias": {
  6194. "dev-master": "3.0-dev"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "classmap": [
  6199. "src/"
  6200. ]
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "BSD-3-Clause"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Sebastian Bergmann",
  6209. "email": "sebastian@phpunit.de"
  6210. }
  6211. ],
  6212. "description": "Snapshotting of global state",
  6213. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6214. "keywords": [
  6215. "global state"
  6216. ],
  6217. "time": "2019-02-01T05:30:01+00:00"
  6218. },
  6219. {
  6220. "name": "sebastian/object-enumerator",
  6221. "version": "3.0.3",
  6222. "source": {
  6223. "type": "git",
  6224. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6225. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6226. },
  6227. "dist": {
  6228. "type": "zip",
  6229. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6230. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6231. "shasum": ""
  6232. },
  6233. "require": {
  6234. "php": "^7.0",
  6235. "sebastian/object-reflector": "^1.1.1",
  6236. "sebastian/recursion-context": "^3.0"
  6237. },
  6238. "require-dev": {
  6239. "phpunit/phpunit": "^6.0"
  6240. },
  6241. "type": "library",
  6242. "extra": {
  6243. "branch-alias": {
  6244. "dev-master": "3.0.x-dev"
  6245. }
  6246. },
  6247. "autoload": {
  6248. "classmap": [
  6249. "src/"
  6250. ]
  6251. },
  6252. "notification-url": "https://packagist.org/downloads/",
  6253. "license": [
  6254. "BSD-3-Clause"
  6255. ],
  6256. "authors": [
  6257. {
  6258. "name": "Sebastian Bergmann",
  6259. "email": "sebastian@phpunit.de"
  6260. }
  6261. ],
  6262. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6263. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6264. "time": "2017-08-03T12:35:26+00:00"
  6265. },
  6266. {
  6267. "name": "sebastian/object-reflector",
  6268. "version": "1.1.1",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6272. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6277. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6278. "shasum": ""
  6279. },
  6280. "require": {
  6281. "php": "^7.0"
  6282. },
  6283. "require-dev": {
  6284. "phpunit/phpunit": "^6.0"
  6285. },
  6286. "type": "library",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-master": "1.1-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "classmap": [
  6294. "src/"
  6295. ]
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "BSD-3-Clause"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "Sebastian Bergmann",
  6304. "email": "sebastian@phpunit.de"
  6305. }
  6306. ],
  6307. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6308. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6309. "time": "2017-03-29T09:07:27+00:00"
  6310. },
  6311. {
  6312. "name": "sebastian/recursion-context",
  6313. "version": "3.0.0",
  6314. "source": {
  6315. "type": "git",
  6316. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6317. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6318. },
  6319. "dist": {
  6320. "type": "zip",
  6321. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6322. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6323. "shasum": ""
  6324. },
  6325. "require": {
  6326. "php": "^7.0"
  6327. },
  6328. "require-dev": {
  6329. "phpunit/phpunit": "^6.0"
  6330. },
  6331. "type": "library",
  6332. "extra": {
  6333. "branch-alias": {
  6334. "dev-master": "3.0.x-dev"
  6335. }
  6336. },
  6337. "autoload": {
  6338. "classmap": [
  6339. "src/"
  6340. ]
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "BSD-3-Clause"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Jeff Welch",
  6349. "email": "whatthejeff@gmail.com"
  6350. },
  6351. {
  6352. "name": "Sebastian Bergmann",
  6353. "email": "sebastian@phpunit.de"
  6354. },
  6355. {
  6356. "name": "Adam Harvey",
  6357. "email": "aharvey@php.net"
  6358. }
  6359. ],
  6360. "description": "Provides functionality to recursively process PHP variables",
  6361. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6362. "time": "2017-03-03T06:23:57+00:00"
  6363. },
  6364. {
  6365. "name": "sebastian/resource-operations",
  6366. "version": "2.0.1",
  6367. "source": {
  6368. "type": "git",
  6369. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6370. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6371. },
  6372. "dist": {
  6373. "type": "zip",
  6374. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6375. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6376. "shasum": ""
  6377. },
  6378. "require": {
  6379. "php": "^7.1"
  6380. },
  6381. "type": "library",
  6382. "extra": {
  6383. "branch-alias": {
  6384. "dev-master": "2.0-dev"
  6385. }
  6386. },
  6387. "autoload": {
  6388. "classmap": [
  6389. "src/"
  6390. ]
  6391. },
  6392. "notification-url": "https://packagist.org/downloads/",
  6393. "license": [
  6394. "BSD-3-Clause"
  6395. ],
  6396. "authors": [
  6397. {
  6398. "name": "Sebastian Bergmann",
  6399. "email": "sebastian@phpunit.de"
  6400. }
  6401. ],
  6402. "description": "Provides a list of PHP built-in functions that operate on resources",
  6403. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6404. "time": "2018-10-04T04:07:39+00:00"
  6405. },
  6406. {
  6407. "name": "sebastian/type",
  6408. "version": "1.1.3",
  6409. "source": {
  6410. "type": "git",
  6411. "url": "https://github.com/sebastianbergmann/type.git",
  6412. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  6413. },
  6414. "dist": {
  6415. "type": "zip",
  6416. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  6417. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  6418. "shasum": ""
  6419. },
  6420. "require": {
  6421. "php": "^7.2"
  6422. },
  6423. "require-dev": {
  6424. "phpunit/phpunit": "^8.2"
  6425. },
  6426. "type": "library",
  6427. "extra": {
  6428. "branch-alias": {
  6429. "dev-master": "1.1-dev"
  6430. }
  6431. },
  6432. "autoload": {
  6433. "classmap": [
  6434. "src/"
  6435. ]
  6436. },
  6437. "notification-url": "https://packagist.org/downloads/",
  6438. "license": [
  6439. "BSD-3-Clause"
  6440. ],
  6441. "authors": [
  6442. {
  6443. "name": "Sebastian Bergmann",
  6444. "email": "sebastian@phpunit.de",
  6445. "role": "lead"
  6446. }
  6447. ],
  6448. "description": "Collection of value objects that represent the types of the PHP type system",
  6449. "homepage": "https://github.com/sebastianbergmann/type",
  6450. "time": "2019-07-02T08:10:15+00:00"
  6451. },
  6452. {
  6453. "name": "sebastian/version",
  6454. "version": "2.0.1",
  6455. "source": {
  6456. "type": "git",
  6457. "url": "https://github.com/sebastianbergmann/version.git",
  6458. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6459. },
  6460. "dist": {
  6461. "type": "zip",
  6462. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6463. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6464. "shasum": ""
  6465. },
  6466. "require": {
  6467. "php": ">=5.6"
  6468. },
  6469. "type": "library",
  6470. "extra": {
  6471. "branch-alias": {
  6472. "dev-master": "2.0.x-dev"
  6473. }
  6474. },
  6475. "autoload": {
  6476. "classmap": [
  6477. "src/"
  6478. ]
  6479. },
  6480. "notification-url": "https://packagist.org/downloads/",
  6481. "license": [
  6482. "BSD-3-Clause"
  6483. ],
  6484. "authors": [
  6485. {
  6486. "name": "Sebastian Bergmann",
  6487. "email": "sebastian@phpunit.de",
  6488. "role": "lead"
  6489. }
  6490. ],
  6491. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6492. "homepage": "https://github.com/sebastianbergmann/version",
  6493. "time": "2016-10-03T07:35:21+00:00"
  6494. },
  6495. {
  6496. "name": "theseer/tokenizer",
  6497. "version": "1.1.3",
  6498. "source": {
  6499. "type": "git",
  6500. "url": "https://github.com/theseer/tokenizer.git",
  6501. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  6502. },
  6503. "dist": {
  6504. "type": "zip",
  6505. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6506. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6507. "shasum": ""
  6508. },
  6509. "require": {
  6510. "ext-dom": "*",
  6511. "ext-tokenizer": "*",
  6512. "ext-xmlwriter": "*",
  6513. "php": "^7.0"
  6514. },
  6515. "type": "library",
  6516. "autoload": {
  6517. "classmap": [
  6518. "src/"
  6519. ]
  6520. },
  6521. "notification-url": "https://packagist.org/downloads/",
  6522. "license": [
  6523. "BSD-3-Clause"
  6524. ],
  6525. "authors": [
  6526. {
  6527. "name": "Arne Blankerts",
  6528. "email": "arne@blankerts.de",
  6529. "role": "Developer"
  6530. }
  6531. ],
  6532. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6533. "time": "2019-06-13T22:48:21+00:00"
  6534. },
  6535. {
  6536. "name": "webmozart/assert",
  6537. "version": "1.8.0",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/webmozart/assert.git",
  6541. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  6546. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  6547. "shasum": ""
  6548. },
  6549. "require": {
  6550. "php": "^5.3.3 || ^7.0",
  6551. "symfony/polyfill-ctype": "^1.8"
  6552. },
  6553. "conflict": {
  6554. "vimeo/psalm": "<3.9.1"
  6555. },
  6556. "require-dev": {
  6557. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6558. },
  6559. "type": "library",
  6560. "autoload": {
  6561. "psr-4": {
  6562. "Webmozart\\Assert\\": "src/"
  6563. }
  6564. },
  6565. "notification-url": "https://packagist.org/downloads/",
  6566. "license": [
  6567. "MIT"
  6568. ],
  6569. "authors": [
  6570. {
  6571. "name": "Bernhard Schussek",
  6572. "email": "bschussek@gmail.com"
  6573. }
  6574. ],
  6575. "description": "Assertions to validate method input/output with nice error messages.",
  6576. "keywords": [
  6577. "assert",
  6578. "check",
  6579. "validate"
  6580. ],
  6581. "time": "2020-04-18T12:12:48+00:00"
  6582. }
  6583. ],
  6584. "aliases": [],
  6585. "minimum-stability": "dev",
  6586. "stability-flags": [],
  6587. "prefer-stable": true,
  6588. "prefer-lowest": false,
  6589. "platform": {
  6590. "php": "^7.2.5"
  6591. },
  6592. "platform-dev": [],
  6593. "plugin-api-version": "1.1.0"
  6594. }