composer.lock 213 KB

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