猎户素材采集系统

composer.lock 218KB

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