composer.lock 303 KB

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