composer.lock 276 KB

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