composer.lock 266 KB

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