composer.lock 209 KB

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