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": "682e9ed010e6f59568a4396545f22354",
  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/annotations",
  90. "version": "v1.4.0",
  91. "source": {
  92. "type": "git",
  93. "url": "https://github.com/doctrine/annotations.git",
  94. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  95. },
  96. "dist": {
  97. "type": "zip",
  98. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  99. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  100. "shasum": ""
  101. },
  102. "require": {
  103. "doctrine/lexer": "1.*",
  104. "php": "^5.6 || ^7.0"
  105. },
  106. "require-dev": {
  107. "doctrine/cache": "1.*",
  108. "phpunit/phpunit": "^5.7"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "branch-alias": {
  113. "dev-master": "1.4.x-dev"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "authors": [
  126. {
  127. "name": "Roman Borschel",
  128. "email": "roman@code-factory.org"
  129. },
  130. {
  131. "name": "Benjamin Eberlei",
  132. "email": "kontakt@beberlei.de"
  133. },
  134. {
  135. "name": "Guilherme Blanco",
  136. "email": "guilhermeblanco@gmail.com"
  137. },
  138. {
  139. "name": "Jonathan Wage",
  140. "email": "jonwage@gmail.com"
  141. },
  142. {
  143. "name": "Johannes Schmitt",
  144. "email": "schmittjoh@gmail.com"
  145. }
  146. ],
  147. "description": "Docblock Annotations Parser",
  148. "homepage": "http://www.doctrine-project.org",
  149. "keywords": [
  150. "annotations",
  151. "docblock",
  152. "parser"
  153. ],
  154. "time": "2017-02-24T16:22:25+00:00"
  155. },
  156. {
  157. "name": "doctrine/cache",
  158. "version": "v1.6.2",
  159. "source": {
  160. "type": "git",
  161. "url": "https://github.com/doctrine/cache.git",
  162. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  163. },
  164. "dist": {
  165. "type": "zip",
  166. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  167. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  168. "shasum": ""
  169. },
  170. "require": {
  171. "php": "~5.5|~7.0"
  172. },
  173. "conflict": {
  174. "doctrine/common": ">2.2,<2.4"
  175. },
  176. "require-dev": {
  177. "phpunit/phpunit": "~4.8|~5.0",
  178. "predis/predis": "~1.0",
  179. "satooshi/php-coveralls": "~0.6"
  180. },
  181. "type": "library",
  182. "extra": {
  183. "branch-alias": {
  184. "dev-master": "1.6.x-dev"
  185. }
  186. },
  187. "autoload": {
  188. "psr-4": {
  189. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "MIT"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Roman Borschel",
  199. "email": "roman@code-factory.org"
  200. },
  201. {
  202. "name": "Benjamin Eberlei",
  203. "email": "kontakt@beberlei.de"
  204. },
  205. {
  206. "name": "Guilherme Blanco",
  207. "email": "guilhermeblanco@gmail.com"
  208. },
  209. {
  210. "name": "Jonathan Wage",
  211. "email": "jonwage@gmail.com"
  212. },
  213. {
  214. "name": "Johannes Schmitt",
  215. "email": "schmittjoh@gmail.com"
  216. }
  217. ],
  218. "description": "Caching library offering an object-oriented API for many cache backends",
  219. "homepage": "http://www.doctrine-project.org",
  220. "keywords": [
  221. "cache",
  222. "caching"
  223. ],
  224. "time": "2017-07-22T12:49:21+00:00"
  225. },
  226. {
  227. "name": "doctrine/collections",
  228. "version": "v1.4.0",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/doctrine/collections.git",
  232. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  237. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "php": "^5.6 || ^7.0"
  242. },
  243. "require-dev": {
  244. "doctrine/coding-standard": "~0.1@dev",
  245. "phpunit/phpunit": "^5.7"
  246. },
  247. "type": "library",
  248. "extra": {
  249. "branch-alias": {
  250. "dev-master": "1.3.x-dev"
  251. }
  252. },
  253. "autoload": {
  254. "psr-0": {
  255. "Doctrine\\Common\\Collections\\": "lib/"
  256. }
  257. },
  258. "notification-url": "https://packagist.org/downloads/",
  259. "license": [
  260. "MIT"
  261. ],
  262. "authors": [
  263. {
  264. "name": "Roman Borschel",
  265. "email": "roman@code-factory.org"
  266. },
  267. {
  268. "name": "Benjamin Eberlei",
  269. "email": "kontakt@beberlei.de"
  270. },
  271. {
  272. "name": "Guilherme Blanco",
  273. "email": "guilhermeblanco@gmail.com"
  274. },
  275. {
  276. "name": "Jonathan Wage",
  277. "email": "jonwage@gmail.com"
  278. },
  279. {
  280. "name": "Johannes Schmitt",
  281. "email": "schmittjoh@gmail.com"
  282. }
  283. ],
  284. "description": "Collections Abstraction library",
  285. "homepage": "http://www.doctrine-project.org",
  286. "keywords": [
  287. "array",
  288. "collections",
  289. "iterator"
  290. ],
  291. "time": "2017-01-03T10:49:41+00:00"
  292. },
  293. {
  294. "name": "doctrine/common",
  295. "version": "v2.7.3",
  296. "source": {
  297. "type": "git",
  298. "url": "https://github.com/doctrine/common.git",
  299. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  300. },
  301. "dist": {
  302. "type": "zip",
  303. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  304. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  305. "shasum": ""
  306. },
  307. "require": {
  308. "doctrine/annotations": "1.*",
  309. "doctrine/cache": "1.*",
  310. "doctrine/collections": "1.*",
  311. "doctrine/inflector": "1.*",
  312. "doctrine/lexer": "1.*",
  313. "php": "~5.6|~7.0"
  314. },
  315. "require-dev": {
  316. "phpunit/phpunit": "^5.4.6"
  317. },
  318. "type": "library",
  319. "extra": {
  320. "branch-alias": {
  321. "dev-master": "2.7.x-dev"
  322. }
  323. },
  324. "autoload": {
  325. "psr-4": {
  326. "Doctrine\\Common\\": "lib/Doctrine/Common"
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "authors": [
  334. {
  335. "name": "Roman Borschel",
  336. "email": "roman@code-factory.org"
  337. },
  338. {
  339. "name": "Benjamin Eberlei",
  340. "email": "kontakt@beberlei.de"
  341. },
  342. {
  343. "name": "Guilherme Blanco",
  344. "email": "guilhermeblanco@gmail.com"
  345. },
  346. {
  347. "name": "Jonathan Wage",
  348. "email": "jonwage@gmail.com"
  349. },
  350. {
  351. "name": "Johannes Schmitt",
  352. "email": "schmittjoh@gmail.com"
  353. }
  354. ],
  355. "description": "Common Library for Doctrine projects",
  356. "homepage": "http://www.doctrine-project.org",
  357. "keywords": [
  358. "annotations",
  359. "collections",
  360. "eventmanager",
  361. "persistence",
  362. "spl"
  363. ],
  364. "time": "2017-07-22T08:35:12+00:00"
  365. },
  366. {
  367. "name": "doctrine/dbal",
  368. "version": "v2.5.13",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/doctrine/dbal.git",
  372. "reference": "729340d8d1eec8f01bff708e12e449a3415af873"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/doctrine/dbal/zipball/729340d8d1eec8f01bff708e12e449a3415af873",
  377. "reference": "729340d8d1eec8f01bff708e12e449a3415af873",
  378. "shasum": ""
  379. },
  380. "require": {
  381. "doctrine/common": ">=2.4,<2.8-dev",
  382. "php": ">=5.3.2"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "4.*",
  386. "symfony/console": "2.*||^3.0"
  387. },
  388. "suggest": {
  389. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  390. },
  391. "bin": [
  392. "bin/doctrine-dbal"
  393. ],
  394. "type": "library",
  395. "extra": {
  396. "branch-alias": {
  397. "dev-master": "2.5.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-0": {
  402. "Doctrine\\DBAL\\": "lib/"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Roman Borschel",
  412. "email": "roman@code-factory.org"
  413. },
  414. {
  415. "name": "Benjamin Eberlei",
  416. "email": "kontakt@beberlei.de"
  417. },
  418. {
  419. "name": "Guilherme Blanco",
  420. "email": "guilhermeblanco@gmail.com"
  421. },
  422. {
  423. "name": "Jonathan Wage",
  424. "email": "jonwage@gmail.com"
  425. }
  426. ],
  427. "description": "Database Abstraction Layer",
  428. "homepage": "http://www.doctrine-project.org",
  429. "keywords": [
  430. "database",
  431. "dbal",
  432. "persistence",
  433. "queryobject"
  434. ],
  435. "time": "2017-07-22T20:44:48+00:00"
  436. },
  437. {
  438. "name": "doctrine/inflector",
  439. "version": "v1.2.0",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/doctrine/inflector.git",
  443. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  448. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "php": "^7.0"
  453. },
  454. "require-dev": {
  455. "phpunit/phpunit": "^6.2"
  456. },
  457. "type": "library",
  458. "extra": {
  459. "branch-alias": {
  460. "dev-master": "1.2.x-dev"
  461. }
  462. },
  463. "autoload": {
  464. "psr-4": {
  465. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  466. }
  467. },
  468. "notification-url": "https://packagist.org/downloads/",
  469. "license": [
  470. "MIT"
  471. ],
  472. "authors": [
  473. {
  474. "name": "Roman Borschel",
  475. "email": "roman@code-factory.org"
  476. },
  477. {
  478. "name": "Benjamin Eberlei",
  479. "email": "kontakt@beberlei.de"
  480. },
  481. {
  482. "name": "Guilherme Blanco",
  483. "email": "guilhermeblanco@gmail.com"
  484. },
  485. {
  486. "name": "Jonathan Wage",
  487. "email": "jonwage@gmail.com"
  488. },
  489. {
  490. "name": "Johannes Schmitt",
  491. "email": "schmittjoh@gmail.com"
  492. }
  493. ],
  494. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  495. "homepage": "http://www.doctrine-project.org",
  496. "keywords": [
  497. "inflection",
  498. "pluralize",
  499. "singularize",
  500. "string"
  501. ],
  502. "time": "2017-07-22T12:18:28+00:00"
  503. },
  504. {
  505. "name": "doctrine/lexer",
  506. "version": "v1.0.1",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/doctrine/lexer.git",
  510. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  515. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "php": ">=5.3.2"
  520. },
  521. "type": "library",
  522. "extra": {
  523. "branch-alias": {
  524. "dev-master": "1.0.x-dev"
  525. }
  526. },
  527. "autoload": {
  528. "psr-0": {
  529. "Doctrine\\Common\\Lexer\\": "lib/"
  530. }
  531. },
  532. "notification-url": "https://packagist.org/downloads/",
  533. "license": [
  534. "MIT"
  535. ],
  536. "authors": [
  537. {
  538. "name": "Roman Borschel",
  539. "email": "roman@code-factory.org"
  540. },
  541. {
  542. "name": "Guilherme Blanco",
  543. "email": "guilhermeblanco@gmail.com"
  544. },
  545. {
  546. "name": "Johannes Schmitt",
  547. "email": "schmittjoh@gmail.com"
  548. }
  549. ],
  550. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  551. "homepage": "http://www.doctrine-project.org",
  552. "keywords": [
  553. "lexer",
  554. "parser"
  555. ],
  556. "time": "2014-09-09T13:34:57+00:00"
  557. },
  558. {
  559. "name": "egulias/email-validator",
  560. "version": "2.1.8",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/egulias/EmailValidator.git",
  564. "reference": "c26463ff9241f27907112fbcd0c86fa670cfef98"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c26463ff9241f27907112fbcd0c86fa670cfef98",
  569. "reference": "c26463ff9241f27907112fbcd0c86fa670cfef98",
  570. "shasum": ""
  571. },
  572. "require": {
  573. "doctrine/lexer": "^1.0.1",
  574. "php": ">= 5.5"
  575. },
  576. "require-dev": {
  577. "dominicsayers/isemail": "dev-master",
  578. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  579. "satooshi/php-coveralls": "^1.0.1"
  580. },
  581. "suggest": {
  582. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  583. },
  584. "type": "library",
  585. "extra": {
  586. "branch-alias": {
  587. "dev-master": "2.0.x-dev"
  588. }
  589. },
  590. "autoload": {
  591. "psr-4": {
  592. "Egulias\\EmailValidator\\": "EmailValidator"
  593. }
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Eduardo Gulias Davis"
  602. }
  603. ],
  604. "description": "A library for validating emails against several RFCs",
  605. "homepage": "https://github.com/egulias/EmailValidator",
  606. "keywords": [
  607. "email",
  608. "emailvalidation",
  609. "emailvalidator",
  610. "validation",
  611. "validator"
  612. ],
  613. "time": "2019-05-16T22:02:54+00:00"
  614. },
  615. {
  616. "name": "erusev/parsedown",
  617. "version": "1.7.3",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/erusev/parsedown.git",
  621. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  626. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  627. "shasum": ""
  628. },
  629. "require": {
  630. "ext-mbstring": "*",
  631. "php": ">=5.3.0"
  632. },
  633. "require-dev": {
  634. "phpunit/phpunit": "^4.8.35"
  635. },
  636. "type": "library",
  637. "autoload": {
  638. "psr-0": {
  639. "Parsedown": ""
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Emanuil Rusev",
  649. "email": "hello@erusev.com",
  650. "homepage": "http://erusev.com"
  651. }
  652. ],
  653. "description": "Parser for Markdown.",
  654. "homepage": "http://parsedown.org",
  655. "keywords": [
  656. "markdown",
  657. "parser"
  658. ],
  659. "time": "2019-03-17T18:48:37+00:00"
  660. },
  661. {
  662. "name": "fideloper/proxy",
  663. "version": "3.3.4",
  664. "source": {
  665. "type": "git",
  666. "url": "https://github.com/fideloper/TrustedProxy.git",
  667. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  668. },
  669. "dist": {
  670. "type": "zip",
  671. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  672. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  673. "shasum": ""
  674. },
  675. "require": {
  676. "illuminate/contracts": "~5.0",
  677. "php": ">=5.4.0"
  678. },
  679. "require-dev": {
  680. "illuminate/http": "~5.0",
  681. "mockery/mockery": "~0.9.3",
  682. "phpunit/phpunit": "^5.7"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-master": "3.3-dev"
  688. },
  689. "laravel": {
  690. "providers": [
  691. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  692. ]
  693. }
  694. },
  695. "autoload": {
  696. "psr-4": {
  697. "Fideloper\\Proxy\\": "src/"
  698. }
  699. },
  700. "notification-url": "https://packagist.org/downloads/",
  701. "license": [
  702. "MIT"
  703. ],
  704. "authors": [
  705. {
  706. "name": "Chris Fidao",
  707. "email": "fideloper@gmail.com"
  708. }
  709. ],
  710. "description": "Set trusted proxies for Laravel",
  711. "keywords": [
  712. "load balancing",
  713. "proxy",
  714. "trusted proxy"
  715. ],
  716. "time": "2017-06-15T17:19:42+00:00"
  717. },
  718. {
  719. "name": "guzzlehttp/guzzle",
  720. "version": "6.3.3",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/guzzle/guzzle.git",
  724. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  729. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "guzzlehttp/promises": "^1.0",
  734. "guzzlehttp/psr7": "^1.4",
  735. "php": ">=5.5"
  736. },
  737. "require-dev": {
  738. "ext-curl": "*",
  739. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  740. "psr/log": "^1.0"
  741. },
  742. "suggest": {
  743. "psr/log": "Required for using the Log middleware"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-master": "6.3-dev"
  749. }
  750. },
  751. "autoload": {
  752. "files": [
  753. "src/functions_include.php"
  754. ],
  755. "psr-4": {
  756. "GuzzleHttp\\": "src/"
  757. }
  758. },
  759. "notification-url": "https://packagist.org/downloads/",
  760. "license": [
  761. "MIT"
  762. ],
  763. "authors": [
  764. {
  765. "name": "Michael Dowling",
  766. "email": "mtdowling@gmail.com",
  767. "homepage": "https://github.com/mtdowling"
  768. }
  769. ],
  770. "description": "Guzzle is a PHP HTTP client library",
  771. "homepage": "http://guzzlephp.org/",
  772. "keywords": [
  773. "client",
  774. "curl",
  775. "framework",
  776. "http",
  777. "http client",
  778. "rest",
  779. "web service"
  780. ],
  781. "time": "2018-04-22T15:46:56+00:00"
  782. },
  783. {
  784. "name": "guzzlehttp/promises",
  785. "version": "v1.3.1",
  786. "source": {
  787. "type": "git",
  788. "url": "https://github.com/guzzle/promises.git",
  789. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  790. },
  791. "dist": {
  792. "type": "zip",
  793. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  794. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  795. "shasum": ""
  796. },
  797. "require": {
  798. "php": ">=5.5.0"
  799. },
  800. "require-dev": {
  801. "phpunit/phpunit": "^4.0"
  802. },
  803. "type": "library",
  804. "extra": {
  805. "branch-alias": {
  806. "dev-master": "1.4-dev"
  807. }
  808. },
  809. "autoload": {
  810. "psr-4": {
  811. "GuzzleHttp\\Promise\\": "src/"
  812. },
  813. "files": [
  814. "src/functions_include.php"
  815. ]
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Michael Dowling",
  824. "email": "mtdowling@gmail.com",
  825. "homepage": "https://github.com/mtdowling"
  826. }
  827. ],
  828. "description": "Guzzle promises library",
  829. "keywords": [
  830. "promise"
  831. ],
  832. "time": "2016-12-20T10:07:11+00:00"
  833. },
  834. {
  835. "name": "guzzlehttp/psr7",
  836. "version": "1.5.2",
  837. "source": {
  838. "type": "git",
  839. "url": "https://github.com/guzzle/psr7.git",
  840. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  841. },
  842. "dist": {
  843. "type": "zip",
  844. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  845. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  846. "shasum": ""
  847. },
  848. "require": {
  849. "php": ">=5.4.0",
  850. "psr/http-message": "~1.0",
  851. "ralouphie/getallheaders": "^2.0.5"
  852. },
  853. "provide": {
  854. "psr/http-message-implementation": "1.0"
  855. },
  856. "require-dev": {
  857. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  858. },
  859. "type": "library",
  860. "extra": {
  861. "branch-alias": {
  862. "dev-master": "1.5-dev"
  863. }
  864. },
  865. "autoload": {
  866. "psr-4": {
  867. "GuzzleHttp\\Psr7\\": "src/"
  868. },
  869. "files": [
  870. "src/functions_include.php"
  871. ]
  872. },
  873. "notification-url": "https://packagist.org/downloads/",
  874. "license": [
  875. "MIT"
  876. ],
  877. "authors": [
  878. {
  879. "name": "Michael Dowling",
  880. "email": "mtdowling@gmail.com",
  881. "homepage": "https://github.com/mtdowling"
  882. },
  883. {
  884. "name": "Tobias Schultze",
  885. "homepage": "https://github.com/Tobion"
  886. }
  887. ],
  888. "description": "PSR-7 message implementation that also provides common utility methods",
  889. "keywords": [
  890. "http",
  891. "message",
  892. "psr-7",
  893. "request",
  894. "response",
  895. "stream",
  896. "uri",
  897. "url"
  898. ],
  899. "time": "2018-12-04T20:46:45+00:00"
  900. },
  901. {
  902. "name": "intervention/image",
  903. "version": "2.4.2",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/Intervention/image.git",
  907. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
  912. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "ext-fileinfo": "*",
  917. "guzzlehttp/psr7": "~1.1",
  918. "php": ">=5.4.0"
  919. },
  920. "require-dev": {
  921. "mockery/mockery": "~0.9.2",
  922. "phpunit/phpunit": "^4.8 || ^5.7"
  923. },
  924. "suggest": {
  925. "ext-gd": "to use GD library based image processing.",
  926. "ext-imagick": "to use Imagick based image processing.",
  927. "intervention/imagecache": "Caching extension for the Intervention Image library"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "branch-alias": {
  932. "dev-master": "2.4-dev"
  933. },
  934. "laravel": {
  935. "providers": [
  936. "Intervention\\Image\\ImageServiceProvider"
  937. ],
  938. "aliases": {
  939. "Image": "Intervention\\Image\\Facades\\Image"
  940. }
  941. }
  942. },
  943. "autoload": {
  944. "psr-4": {
  945. "Intervention\\Image\\": "src/Intervention/Image"
  946. }
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "MIT"
  951. ],
  952. "authors": [
  953. {
  954. "name": "Oliver Vogel",
  955. "email": "oliver@olivervogel.com",
  956. "homepage": "http://olivervogel.com/"
  957. }
  958. ],
  959. "description": "Image handling and manipulation library with support for Laravel integration",
  960. "homepage": "http://image.intervention.io/",
  961. "keywords": [
  962. "gd",
  963. "image",
  964. "imagick",
  965. "laravel",
  966. "thumbnail",
  967. "watermark"
  968. ],
  969. "time": "2018-05-29T14:19:03+00:00"
  970. },
  971. {
  972. "name": "jakub-onderka/php-console-color",
  973. "version": "v0.2",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  977. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  982. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "php": ">=5.4.0"
  987. },
  988. "require-dev": {
  989. "jakub-onderka/php-code-style": "1.0",
  990. "jakub-onderka/php-parallel-lint": "1.0",
  991. "jakub-onderka/php-var-dump-check": "0.*",
  992. "phpunit/phpunit": "~4.3",
  993. "squizlabs/php_codesniffer": "1.*"
  994. },
  995. "type": "library",
  996. "autoload": {
  997. "psr-4": {
  998. "JakubOnderka\\PhpConsoleColor\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "BSD-2-Clause"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Jakub Onderka",
  1008. "email": "jakub.onderka@gmail.com"
  1009. }
  1010. ],
  1011. "time": "2018-09-29T17:23:10+00:00"
  1012. },
  1013. {
  1014. "name": "jakub-onderka/php-console-highlighter",
  1015. "version": "v0.4",
  1016. "source": {
  1017. "type": "git",
  1018. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1019. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1020. },
  1021. "dist": {
  1022. "type": "zip",
  1023. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1024. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1025. "shasum": ""
  1026. },
  1027. "require": {
  1028. "ext-tokenizer": "*",
  1029. "jakub-onderka/php-console-color": "~0.2",
  1030. "php": ">=5.4.0"
  1031. },
  1032. "require-dev": {
  1033. "jakub-onderka/php-code-style": "~1.0",
  1034. "jakub-onderka/php-parallel-lint": "~1.0",
  1035. "jakub-onderka/php-var-dump-check": "~0.1",
  1036. "phpunit/phpunit": "~4.0",
  1037. "squizlabs/php_codesniffer": "~1.5"
  1038. },
  1039. "type": "library",
  1040. "autoload": {
  1041. "psr-4": {
  1042. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1043. }
  1044. },
  1045. "notification-url": "https://packagist.org/downloads/",
  1046. "license": [
  1047. "MIT"
  1048. ],
  1049. "authors": [
  1050. {
  1051. "name": "Jakub Onderka",
  1052. "email": "acci@acci.cz",
  1053. "homepage": "http://www.acci.cz/"
  1054. }
  1055. ],
  1056. "description": "Highlight PHP code in terminal",
  1057. "time": "2018-09-29T18:48:56+00:00"
  1058. },
  1059. {
  1060. "name": "laravel/framework",
  1061. "version": "v5.5.45",
  1062. "source": {
  1063. "type": "git",
  1064. "url": "https://github.com/laravel/framework.git",
  1065. "reference": "52c79ecf54b6168a54730ccb6c4c9f3561732a80"
  1066. },
  1067. "dist": {
  1068. "type": "zip",
  1069. "url": "https://api.github.com/repos/laravel/framework/zipball/52c79ecf54b6168a54730ccb6c4c9f3561732a80",
  1070. "reference": "52c79ecf54b6168a54730ccb6c4c9f3561732a80",
  1071. "shasum": ""
  1072. },
  1073. "require": {
  1074. "doctrine/inflector": "~1.1",
  1075. "erusev/parsedown": "~1.7",
  1076. "ext-mbstring": "*",
  1077. "ext-openssl": "*",
  1078. "league/flysystem": "^1.0.8",
  1079. "monolog/monolog": "~1.12",
  1080. "mtdowling/cron-expression": "~1.0",
  1081. "nesbot/carbon": "^1.26.0",
  1082. "php": ">=7.0",
  1083. "psr/container": "~1.0",
  1084. "psr/simple-cache": "^1.0",
  1085. "ramsey/uuid": "~3.0",
  1086. "swiftmailer/swiftmailer": "~6.0",
  1087. "symfony/console": "~3.3",
  1088. "symfony/debug": "~3.3",
  1089. "symfony/finder": "~3.3",
  1090. "symfony/http-foundation": "~3.3",
  1091. "symfony/http-kernel": "~3.3",
  1092. "symfony/process": "~3.3",
  1093. "symfony/routing": "~3.3",
  1094. "symfony/var-dumper": "~3.3",
  1095. "tijsverkoyen/css-to-inline-styles": "~2.2",
  1096. "vlucas/phpdotenv": "~2.2"
  1097. },
  1098. "replace": {
  1099. "illuminate/auth": "self.version",
  1100. "illuminate/broadcasting": "self.version",
  1101. "illuminate/bus": "self.version",
  1102. "illuminate/cache": "self.version",
  1103. "illuminate/config": "self.version",
  1104. "illuminate/console": "self.version",
  1105. "illuminate/container": "self.version",
  1106. "illuminate/contracts": "self.version",
  1107. "illuminate/cookie": "self.version",
  1108. "illuminate/database": "self.version",
  1109. "illuminate/encryption": "self.version",
  1110. "illuminate/events": "self.version",
  1111. "illuminate/filesystem": "self.version",
  1112. "illuminate/hashing": "self.version",
  1113. "illuminate/http": "self.version",
  1114. "illuminate/log": "self.version",
  1115. "illuminate/mail": "self.version",
  1116. "illuminate/notifications": "self.version",
  1117. "illuminate/pagination": "self.version",
  1118. "illuminate/pipeline": "self.version",
  1119. "illuminate/queue": "self.version",
  1120. "illuminate/redis": "self.version",
  1121. "illuminate/routing": "self.version",
  1122. "illuminate/session": "self.version",
  1123. "illuminate/support": "self.version",
  1124. "illuminate/translation": "self.version",
  1125. "illuminate/validation": "self.version",
  1126. "illuminate/view": "self.version",
  1127. "tightenco/collect": "<5.5.33"
  1128. },
  1129. "require-dev": {
  1130. "aws/aws-sdk-php": "~3.0",
  1131. "doctrine/dbal": "~2.5",
  1132. "filp/whoops": "^2.1.4",
  1133. "mockery/mockery": "~1.0",
  1134. "orchestra/testbench-core": "3.5.*",
  1135. "pda/pheanstalk": "~3.0",
  1136. "phpunit/phpunit": "~6.0",
  1137. "predis/predis": "^1.1.1",
  1138. "symfony/css-selector": "~3.3",
  1139. "symfony/dom-crawler": "~3.3"
  1140. },
  1141. "suggest": {
  1142. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  1143. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  1144. "ext-pcntl": "Required to use all features of the queue worker.",
  1145. "ext-posix": "Required to use all features of the queue worker.",
  1146. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  1147. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  1148. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  1149. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  1150. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  1151. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  1152. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  1153. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  1154. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  1155. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  1156. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  1157. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  1158. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  1159. },
  1160. "type": "library",
  1161. "extra": {
  1162. "branch-alias": {
  1163. "dev-master": "5.5-dev"
  1164. }
  1165. },
  1166. "autoload": {
  1167. "files": [
  1168. "src/Illuminate/Foundation/helpers.php",
  1169. "src/Illuminate/Support/helpers.php"
  1170. ],
  1171. "psr-4": {
  1172. "Illuminate\\": "src/Illuminate/"
  1173. }
  1174. },
  1175. "notification-url": "https://packagist.org/downloads/",
  1176. "license": [
  1177. "MIT"
  1178. ],
  1179. "authors": [
  1180. {
  1181. "name": "Taylor Otwell",
  1182. "email": "taylor@laravel.com"
  1183. }
  1184. ],
  1185. "description": "The Laravel Framework.",
  1186. "homepage": "https://laravel.com",
  1187. "keywords": [
  1188. "framework",
  1189. "laravel"
  1190. ],
  1191. "time": "2019-01-28T20:53:19+00:00"
  1192. },
  1193. {
  1194. "name": "laravel/tinker",
  1195. "version": "v1.0.8",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/laravel/tinker.git",
  1199. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  1204. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  1205. "shasum": ""
  1206. },
  1207. "require": {
  1208. "illuminate/console": "~5.1",
  1209. "illuminate/contracts": "~5.1",
  1210. "illuminate/support": "~5.1",
  1211. "php": ">=5.5.9",
  1212. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1213. "symfony/var-dumper": "~3.0|~4.0"
  1214. },
  1215. "require-dev": {
  1216. "phpunit/phpunit": "~4.0|~5.0"
  1217. },
  1218. "suggest": {
  1219. "illuminate/database": "The Illuminate Database package (~5.1)."
  1220. },
  1221. "type": "library",
  1222. "extra": {
  1223. "branch-alias": {
  1224. "dev-master": "1.0-dev"
  1225. },
  1226. "laravel": {
  1227. "providers": [
  1228. "Laravel\\Tinker\\TinkerServiceProvider"
  1229. ]
  1230. }
  1231. },
  1232. "autoload": {
  1233. "psr-4": {
  1234. "Laravel\\Tinker\\": "src/"
  1235. }
  1236. },
  1237. "notification-url": "https://packagist.org/downloads/",
  1238. "license": [
  1239. "MIT"
  1240. ],
  1241. "authors": [
  1242. {
  1243. "name": "Taylor Otwell",
  1244. "email": "taylor@laravel.com"
  1245. }
  1246. ],
  1247. "description": "Powerful REPL for the Laravel framework.",
  1248. "keywords": [
  1249. "REPL",
  1250. "Tinker",
  1251. "laravel",
  1252. "psysh"
  1253. ],
  1254. "time": "2018-10-12T19:39:35+00:00"
  1255. },
  1256. {
  1257. "name": "lcobucci/jwt",
  1258. "version": "3.3.1",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/lcobucci/jwt.git",
  1262. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  1267. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "ext-mbstring": "*",
  1272. "ext-openssl": "*",
  1273. "php": "^5.6 || ^7.0"
  1274. },
  1275. "require-dev": {
  1276. "mikey179/vfsstream": "~1.5",
  1277. "phpmd/phpmd": "~2.2",
  1278. "phpunit/php-invoker": "~1.1",
  1279. "phpunit/phpunit": "^5.7 || ^7.3",
  1280. "squizlabs/php_codesniffer": "~2.3"
  1281. },
  1282. "type": "library",
  1283. "extra": {
  1284. "branch-alias": {
  1285. "dev-master": "3.1-dev"
  1286. }
  1287. },
  1288. "autoload": {
  1289. "psr-4": {
  1290. "Lcobucci\\JWT\\": "src"
  1291. }
  1292. },
  1293. "notification-url": "https://packagist.org/downloads/",
  1294. "license": [
  1295. "BSD-3-Clause"
  1296. ],
  1297. "authors": [
  1298. {
  1299. "name": "Luís Otávio Cobucci Oblonczyk",
  1300. "email": "lcobucci@gmail.com",
  1301. "role": "Developer"
  1302. }
  1303. ],
  1304. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1305. "keywords": [
  1306. "JWS",
  1307. "jwt"
  1308. ],
  1309. "time": "2019-05-24T18:30:49+00:00"
  1310. },
  1311. {
  1312. "name": "league/flysystem",
  1313. "version": "1.0.52",
  1314. "source": {
  1315. "type": "git",
  1316. "url": "https://github.com/thephpleague/flysystem.git",
  1317. "reference": "c5a5097156387970e6f0ccfcdf03f752856f3391"
  1318. },
  1319. "dist": {
  1320. "type": "zip",
  1321. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c5a5097156387970e6f0ccfcdf03f752856f3391",
  1322. "reference": "c5a5097156387970e6f0ccfcdf03f752856f3391",
  1323. "shasum": ""
  1324. },
  1325. "require": {
  1326. "ext-fileinfo": "*",
  1327. "php": ">=5.5.9"
  1328. },
  1329. "conflict": {
  1330. "league/flysystem-sftp": "<1.0.6"
  1331. },
  1332. "require-dev": {
  1333. "phpspec/phpspec": "^3.4",
  1334. "phpunit/phpunit": "^5.7.10"
  1335. },
  1336. "suggest": {
  1337. "ext-fileinfo": "Required for MimeType",
  1338. "ext-ftp": "Allows you to use FTP server storage",
  1339. "ext-openssl": "Allows you to use FTPS server storage",
  1340. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1341. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1342. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1343. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1344. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1345. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1346. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1347. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1348. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1349. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1350. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1351. },
  1352. "type": "library",
  1353. "extra": {
  1354. "branch-alias": {
  1355. "dev-master": "1.1-dev"
  1356. }
  1357. },
  1358. "autoload": {
  1359. "psr-4": {
  1360. "League\\Flysystem\\": "src/"
  1361. }
  1362. },
  1363. "notification-url": "https://packagist.org/downloads/",
  1364. "license": [
  1365. "MIT"
  1366. ],
  1367. "authors": [
  1368. {
  1369. "name": "Frank de Jonge",
  1370. "email": "info@frenky.net"
  1371. }
  1372. ],
  1373. "description": "Filesystem abstraction: Many filesystems, one API.",
  1374. "keywords": [
  1375. "Cloud Files",
  1376. "WebDAV",
  1377. "abstraction",
  1378. "aws",
  1379. "cloud",
  1380. "copy.com",
  1381. "dropbox",
  1382. "file systems",
  1383. "files",
  1384. "filesystem",
  1385. "filesystems",
  1386. "ftp",
  1387. "rackspace",
  1388. "remote",
  1389. "s3",
  1390. "sftp",
  1391. "storage"
  1392. ],
  1393. "time": "2019-05-20T20:21:14+00:00"
  1394. },
  1395. {
  1396. "name": "mews/captcha",
  1397. "version": "2.2.9",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/mewebstudio/captcha.git",
  1401. "reference": "77ee353db8d92c001b411a0afbb7b3ccb71500b0"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/77ee353db8d92c001b411a0afbb7b3ccb71500b0",
  1406. "reference": "77ee353db8d92c001b411a0afbb7b3ccb71500b0",
  1407. "shasum": ""
  1408. },
  1409. "require": {
  1410. "ext-gd": "*",
  1411. "illuminate/config": "~5.0",
  1412. "illuminate/filesystem": "~5.0",
  1413. "illuminate/hashing": "~5.0",
  1414. "illuminate/support": "~5.0",
  1415. "intervention/image": "~2.2",
  1416. "php": ">=5.4"
  1417. },
  1418. "require-dev": {
  1419. "mockery/mockery": "0.9.*",
  1420. "phpunit/phpunit": "~4.1"
  1421. },
  1422. "type": "package",
  1423. "extra": {
  1424. "laravel": {
  1425. "providers": [
  1426. "Mews\\Captcha\\CaptchaServiceProvider"
  1427. ],
  1428. "aliases": {
  1429. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  1430. }
  1431. }
  1432. },
  1433. "autoload": {
  1434. "psr-4": {
  1435. "Mews\\Captcha\\": "src/"
  1436. },
  1437. "files": [
  1438. "src/helpers.php"
  1439. ]
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "MIT"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Muharrem ERİN",
  1448. "email": "me@mewebstudio.com",
  1449. "homepage": "https://github.com/mewebstudio",
  1450. "role": "Developer"
  1451. }
  1452. ],
  1453. "description": "Laravel 5 Captcha Package",
  1454. "homepage": "https://github.com/mewebstudio/captcha",
  1455. "keywords": [
  1456. "captcha",
  1457. "laravel5 Captcha",
  1458. "laravel5 Security"
  1459. ],
  1460. "time": "2019-04-19T12:35:00+00:00"
  1461. },
  1462. {
  1463. "name": "monolog/monolog",
  1464. "version": "1.24.0",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/Seldaek/monolog.git",
  1468. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1473. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "php": ">=5.3.0",
  1478. "psr/log": "~1.0"
  1479. },
  1480. "provide": {
  1481. "psr/log-implementation": "1.0.0"
  1482. },
  1483. "require-dev": {
  1484. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1485. "doctrine/couchdb": "~1.0@dev",
  1486. "graylog2/gelf-php": "~1.0",
  1487. "jakub-onderka/php-parallel-lint": "0.9",
  1488. "php-amqplib/php-amqplib": "~2.4",
  1489. "php-console/php-console": "^3.1.3",
  1490. "phpunit/phpunit": "~4.5",
  1491. "phpunit/phpunit-mock-objects": "2.3.0",
  1492. "ruflin/elastica": ">=0.90 <3.0",
  1493. "sentry/sentry": "^0.13",
  1494. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1495. },
  1496. "suggest": {
  1497. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1498. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1499. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1500. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1501. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1502. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1503. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1504. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1505. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1506. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1507. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1508. },
  1509. "type": "library",
  1510. "extra": {
  1511. "branch-alias": {
  1512. "dev-master": "2.0.x-dev"
  1513. }
  1514. },
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Monolog\\": "src/Monolog"
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "authors": [
  1525. {
  1526. "name": "Jordi Boggiano",
  1527. "email": "j.boggiano@seld.be",
  1528. "homepage": "http://seld.be"
  1529. }
  1530. ],
  1531. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1532. "homepage": "http://github.com/Seldaek/monolog",
  1533. "keywords": [
  1534. "log",
  1535. "logging",
  1536. "psr-3"
  1537. ],
  1538. "time": "2018-11-05T09:00:11+00:00"
  1539. },
  1540. {
  1541. "name": "mtdowling/cron-expression",
  1542. "version": "v1.2.1",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/mtdowling/cron-expression.git",
  1546. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  1551. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  1552. "shasum": ""
  1553. },
  1554. "require": {
  1555. "php": ">=5.3.2"
  1556. },
  1557. "require-dev": {
  1558. "phpunit/phpunit": "~4.0|~5.0"
  1559. },
  1560. "type": "library",
  1561. "autoload": {
  1562. "psr-4": {
  1563. "Cron\\": "src/Cron/"
  1564. }
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Michael Dowling",
  1573. "email": "mtdowling@gmail.com",
  1574. "homepage": "https://github.com/mtdowling"
  1575. }
  1576. ],
  1577. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1578. "keywords": [
  1579. "cron",
  1580. "schedule"
  1581. ],
  1582. "time": "2017-01-23T04:29:33+00:00"
  1583. },
  1584. {
  1585. "name": "namshi/jose",
  1586. "version": "7.2.3",
  1587. "source": {
  1588. "type": "git",
  1589. "url": "https://github.com/namshi/jose.git",
  1590. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  1591. },
  1592. "dist": {
  1593. "type": "zip",
  1594. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  1595. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  1596. "shasum": ""
  1597. },
  1598. "require": {
  1599. "ext-date": "*",
  1600. "ext-hash": "*",
  1601. "ext-json": "*",
  1602. "ext-pcre": "*",
  1603. "ext-spl": "*",
  1604. "php": ">=5.5",
  1605. "symfony/polyfill-php56": "^1.0"
  1606. },
  1607. "require-dev": {
  1608. "phpseclib/phpseclib": "^2.0",
  1609. "phpunit/phpunit": "^4.5|^5.0",
  1610. "satooshi/php-coveralls": "^1.0"
  1611. },
  1612. "suggest": {
  1613. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  1614. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  1615. },
  1616. "type": "library",
  1617. "autoload": {
  1618. "psr-4": {
  1619. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  1620. }
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Alessandro Nadalin",
  1629. "email": "alessandro.nadalin@gmail.com"
  1630. },
  1631. {
  1632. "name": "Alessandro Cinelli (cirpo)",
  1633. "email": "alessandro.cinelli@gmail.com"
  1634. }
  1635. ],
  1636. "description": "JSON Object Signing and Encryption library for PHP.",
  1637. "keywords": [
  1638. "JSON Web Signature",
  1639. "JSON Web Token",
  1640. "JWS",
  1641. "json",
  1642. "jwt",
  1643. "token"
  1644. ],
  1645. "time": "2016-12-05T07:27:31+00:00"
  1646. },
  1647. {
  1648. "name": "nesbot/carbon",
  1649. "version": "1.37.1",
  1650. "source": {
  1651. "type": "git",
  1652. "url": "https://github.com/briannesbitt/Carbon.git",
  1653. "reference": "5be4fdf97076a685b23efdedfc2b73ad0c5eab70"
  1654. },
  1655. "dist": {
  1656. "type": "zip",
  1657. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/5be4fdf97076a685b23efdedfc2b73ad0c5eab70",
  1658. "reference": "5be4fdf97076a685b23efdedfc2b73ad0c5eab70",
  1659. "shasum": ""
  1660. },
  1661. "require": {
  1662. "php": ">=5.3.9",
  1663. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  1664. },
  1665. "require-dev": {
  1666. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1667. },
  1668. "suggest": {
  1669. "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.",
  1670. "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors."
  1671. },
  1672. "type": "library",
  1673. "extra": {
  1674. "laravel": {
  1675. "providers": [
  1676. "Carbon\\Laravel\\ServiceProvider"
  1677. ]
  1678. }
  1679. },
  1680. "autoload": {
  1681. "psr-4": {
  1682. "": "src/"
  1683. }
  1684. },
  1685. "notification-url": "https://packagist.org/downloads/",
  1686. "license": [
  1687. "MIT"
  1688. ],
  1689. "authors": [
  1690. {
  1691. "name": "Brian Nesbitt",
  1692. "email": "brian@nesbot.com",
  1693. "homepage": "http://nesbot.com"
  1694. }
  1695. ],
  1696. "description": "A simple API extension for DateTime.",
  1697. "homepage": "http://carbon.nesbot.com",
  1698. "keywords": [
  1699. "date",
  1700. "datetime",
  1701. "time"
  1702. ],
  1703. "time": "2019-04-19T10:27:42+00:00"
  1704. },
  1705. {
  1706. "name": "nikic/php-parser",
  1707. "version": "v4.2.2",
  1708. "source": {
  1709. "type": "git",
  1710. "url": "https://github.com/nikic/PHP-Parser.git",
  1711. "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420"
  1712. },
  1713. "dist": {
  1714. "type": "zip",
  1715. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bd73cc04c3843ad8d6b0bfc0956026a151fc420",
  1716. "reference": "1bd73cc04c3843ad8d6b0bfc0956026a151fc420",
  1717. "shasum": ""
  1718. },
  1719. "require": {
  1720. "ext-tokenizer": "*",
  1721. "php": ">=7.0"
  1722. },
  1723. "require-dev": {
  1724. "phpunit/phpunit": "^6.5 || ^7.0"
  1725. },
  1726. "bin": [
  1727. "bin/php-parse"
  1728. ],
  1729. "type": "library",
  1730. "extra": {
  1731. "branch-alias": {
  1732. "dev-master": "4.2-dev"
  1733. }
  1734. },
  1735. "autoload": {
  1736. "psr-4": {
  1737. "PhpParser\\": "lib/PhpParser"
  1738. }
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "BSD-3-Clause"
  1743. ],
  1744. "authors": [
  1745. {
  1746. "name": "Nikita Popov"
  1747. }
  1748. ],
  1749. "description": "A PHP parser written in PHP",
  1750. "keywords": [
  1751. "parser",
  1752. "php"
  1753. ],
  1754. "time": "2019-05-25T20:07:01+00:00"
  1755. },
  1756. {
  1757. "name": "orangehill/iseed",
  1758. "version": "v2.6.1",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://github.com/orangehill/iseed.git",
  1762. "reference": "360ba1314e1dc950438bbb8006fc220de47dca00"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://api.github.com/repos/orangehill/iseed/zipball/360ba1314e1dc950438bbb8006fc220de47dca00",
  1767. "reference": "360ba1314e1dc950438bbb8006fc220de47dca00",
  1768. "shasum": ""
  1769. },
  1770. "require": {
  1771. "illuminate/support": "^5.3.8",
  1772. "php": ">=5.4.0"
  1773. },
  1774. "require-dev": {
  1775. "illuminate/filesystem": "5.x",
  1776. "laravel/framework": "^5.3.8",
  1777. "mockery/mockery": "dev-master",
  1778. "phpunit/phpunit": "^5.7"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "laravel": {
  1783. "providers": [
  1784. "Orangehill\\Iseed\\IseedServiceProvider"
  1785. ]
  1786. }
  1787. },
  1788. "autoload": {
  1789. "psr-0": {
  1790. "Orangehill\\Iseed": "src/"
  1791. },
  1792. "classmap": [
  1793. "src/Orangehill/Iseed/Exceptions.php"
  1794. ]
  1795. },
  1796. "notification-url": "https://packagist.org/downloads/",
  1797. "license": [
  1798. "BSD-2-Clause"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Tihomir Opacic",
  1803. "email": "tihomir.opacic@orangehilldev.com"
  1804. }
  1805. ],
  1806. "description": "Generate a new Laravel database seed file based on data from the existing database table.",
  1807. "keywords": [
  1808. "artisan",
  1809. "generators",
  1810. "laravel",
  1811. "seed"
  1812. ],
  1813. "time": "2018-12-07T08:06:29+00:00"
  1814. },
  1815. {
  1816. "name": "paragonie/random_compat",
  1817. "version": "v9.99.99",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/paragonie/random_compat.git",
  1821. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1826. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1827. "shasum": ""
  1828. },
  1829. "require": {
  1830. "php": "^7"
  1831. },
  1832. "require-dev": {
  1833. "phpunit/phpunit": "4.*|5.*",
  1834. "vimeo/psalm": "^1"
  1835. },
  1836. "suggest": {
  1837. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1838. },
  1839. "type": "library",
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Paragon Initiative Enterprises",
  1847. "email": "security@paragonie.com",
  1848. "homepage": "https://paragonie.com"
  1849. }
  1850. ],
  1851. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1852. "keywords": [
  1853. "csprng",
  1854. "polyfill",
  1855. "pseudorandom",
  1856. "random"
  1857. ],
  1858. "time": "2018-07-02T15:55:56+00:00"
  1859. },
  1860. {
  1861. "name": "predis/predis",
  1862. "version": "v1.1.1",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/nrk/predis.git",
  1866. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  1871. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "php": ">=5.3.9"
  1876. },
  1877. "require-dev": {
  1878. "phpunit/phpunit": "~4.8"
  1879. },
  1880. "suggest": {
  1881. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1882. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1883. },
  1884. "type": "library",
  1885. "autoload": {
  1886. "psr-4": {
  1887. "Predis\\": "src/"
  1888. }
  1889. },
  1890. "notification-url": "https://packagist.org/downloads/",
  1891. "license": [
  1892. "MIT"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Daniele Alessandri",
  1897. "email": "suppakilla@gmail.com",
  1898. "homepage": "http://clorophilla.net"
  1899. }
  1900. ],
  1901. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  1902. "homepage": "http://github.com/nrk/predis",
  1903. "keywords": [
  1904. "nosql",
  1905. "predis",
  1906. "redis"
  1907. ],
  1908. "time": "2016-06-16T16:22:20+00:00"
  1909. },
  1910. {
  1911. "name": "psr/container",
  1912. "version": "1.0.0",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/php-fig/container.git",
  1916. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1921. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1922. "shasum": ""
  1923. },
  1924. "require": {
  1925. "php": ">=5.3.0"
  1926. },
  1927. "type": "library",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "1.0.x-dev"
  1931. }
  1932. },
  1933. "autoload": {
  1934. "psr-4": {
  1935. "Psr\\Container\\": "src/"
  1936. }
  1937. },
  1938. "notification-url": "https://packagist.org/downloads/",
  1939. "license": [
  1940. "MIT"
  1941. ],
  1942. "authors": [
  1943. {
  1944. "name": "PHP-FIG",
  1945. "homepage": "http://www.php-fig.org/"
  1946. }
  1947. ],
  1948. "description": "Common Container Interface (PHP FIG PSR-11)",
  1949. "homepage": "https://github.com/php-fig/container",
  1950. "keywords": [
  1951. "PSR-11",
  1952. "container",
  1953. "container-interface",
  1954. "container-interop",
  1955. "psr"
  1956. ],
  1957. "time": "2017-02-14T16:28:37+00:00"
  1958. },
  1959. {
  1960. "name": "psr/http-message",
  1961. "version": "1.0.1",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/php-fig/http-message.git",
  1965. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1970. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1971. "shasum": ""
  1972. },
  1973. "require": {
  1974. "php": ">=5.3.0"
  1975. },
  1976. "type": "library",
  1977. "extra": {
  1978. "branch-alias": {
  1979. "dev-master": "1.0.x-dev"
  1980. }
  1981. },
  1982. "autoload": {
  1983. "psr-4": {
  1984. "Psr\\Http\\Message\\": "src/"
  1985. }
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "PHP-FIG",
  1994. "homepage": "http://www.php-fig.org/"
  1995. }
  1996. ],
  1997. "description": "Common interface for HTTP messages",
  1998. "homepage": "https://github.com/php-fig/http-message",
  1999. "keywords": [
  2000. "http",
  2001. "http-message",
  2002. "psr",
  2003. "psr-7",
  2004. "request",
  2005. "response"
  2006. ],
  2007. "time": "2016-08-06T14:39:51+00:00"
  2008. },
  2009. {
  2010. "name": "psr/log",
  2011. "version": "1.1.0",
  2012. "source": {
  2013. "type": "git",
  2014. "url": "https://github.com/php-fig/log.git",
  2015. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  2016. },
  2017. "dist": {
  2018. "type": "zip",
  2019. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2020. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2021. "shasum": ""
  2022. },
  2023. "require": {
  2024. "php": ">=5.3.0"
  2025. },
  2026. "type": "library",
  2027. "extra": {
  2028. "branch-alias": {
  2029. "dev-master": "1.0.x-dev"
  2030. }
  2031. },
  2032. "autoload": {
  2033. "psr-4": {
  2034. "Psr\\Log\\": "Psr/Log/"
  2035. }
  2036. },
  2037. "notification-url": "https://packagist.org/downloads/",
  2038. "license": [
  2039. "MIT"
  2040. ],
  2041. "authors": [
  2042. {
  2043. "name": "PHP-FIG",
  2044. "homepage": "http://www.php-fig.org/"
  2045. }
  2046. ],
  2047. "description": "Common interface for logging libraries",
  2048. "homepage": "https://github.com/php-fig/log",
  2049. "keywords": [
  2050. "log",
  2051. "psr",
  2052. "psr-3"
  2053. ],
  2054. "time": "2018-11-20T15:27:04+00:00"
  2055. },
  2056. {
  2057. "name": "psr/simple-cache",
  2058. "version": "1.0.1",
  2059. "source": {
  2060. "type": "git",
  2061. "url": "https://github.com/php-fig/simple-cache.git",
  2062. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2063. },
  2064. "dist": {
  2065. "type": "zip",
  2066. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2067. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2068. "shasum": ""
  2069. },
  2070. "require": {
  2071. "php": ">=5.3.0"
  2072. },
  2073. "type": "library",
  2074. "extra": {
  2075. "branch-alias": {
  2076. "dev-master": "1.0.x-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "psr-4": {
  2081. "Psr\\SimpleCache\\": "src/"
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "authors": [
  2089. {
  2090. "name": "PHP-FIG",
  2091. "homepage": "http://www.php-fig.org/"
  2092. }
  2093. ],
  2094. "description": "Common interfaces for simple caching",
  2095. "keywords": [
  2096. "cache",
  2097. "caching",
  2098. "psr",
  2099. "psr-16",
  2100. "simple-cache"
  2101. ],
  2102. "time": "2017-10-23T01:57:42+00:00"
  2103. },
  2104. {
  2105. "name": "psy/psysh",
  2106. "version": "v0.9.9",
  2107. "source": {
  2108. "type": "git",
  2109. "url": "https://github.com/bobthecow/psysh.git",
  2110. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  2111. },
  2112. "dist": {
  2113. "type": "zip",
  2114. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2115. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2116. "shasum": ""
  2117. },
  2118. "require": {
  2119. "dnoegel/php-xdg-base-dir": "0.1",
  2120. "ext-json": "*",
  2121. "ext-tokenizer": "*",
  2122. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2123. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2124. "php": ">=5.4.0",
  2125. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2126. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2127. },
  2128. "require-dev": {
  2129. "bamarni/composer-bin-plugin": "^1.2",
  2130. "hoa/console": "~2.15|~3.16",
  2131. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2132. },
  2133. "suggest": {
  2134. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2135. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2136. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2137. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2138. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2139. },
  2140. "bin": [
  2141. "bin/psysh"
  2142. ],
  2143. "type": "library",
  2144. "extra": {
  2145. "branch-alias": {
  2146. "dev-develop": "0.9.x-dev"
  2147. }
  2148. },
  2149. "autoload": {
  2150. "files": [
  2151. "src/functions.php"
  2152. ],
  2153. "psr-4": {
  2154. "Psy\\": "src/"
  2155. }
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "MIT"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "Justin Hileman",
  2164. "email": "justin@justinhileman.info",
  2165. "homepage": "http://justinhileman.com"
  2166. }
  2167. ],
  2168. "description": "An interactive shell for modern PHP.",
  2169. "homepage": "http://psysh.org",
  2170. "keywords": [
  2171. "REPL",
  2172. "console",
  2173. "interactive",
  2174. "shell"
  2175. ],
  2176. "time": "2018-10-13T15:16:03+00:00"
  2177. },
  2178. {
  2179. "name": "qiniu/php-sdk",
  2180. "version": "v7.2.7",
  2181. "source": {
  2182. "type": "git",
  2183. "url": "https://github.com/qiniu/php-sdk.git",
  2184. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6"
  2185. },
  2186. "dist": {
  2187. "type": "zip",
  2188. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  2189. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  2190. "shasum": ""
  2191. },
  2192. "require": {
  2193. "php": ">=5.3.3"
  2194. },
  2195. "require-dev": {
  2196. "phpunit/phpunit": "~4.0",
  2197. "squizlabs/php_codesniffer": "~2.3"
  2198. },
  2199. "type": "library",
  2200. "autoload": {
  2201. "psr-4": {
  2202. "Qiniu\\": "src/Qiniu"
  2203. },
  2204. "files": [
  2205. "src/Qiniu/functions.php"
  2206. ]
  2207. },
  2208. "notification-url": "https://packagist.org/downloads/",
  2209. "license": [
  2210. "MIT"
  2211. ],
  2212. "authors": [
  2213. {
  2214. "name": "Qiniu",
  2215. "email": "sdk@qiniu.com",
  2216. "homepage": "http://www.qiniu.com"
  2217. }
  2218. ],
  2219. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2220. "homepage": "http://developer.qiniu.com/",
  2221. "keywords": [
  2222. "cloud",
  2223. "qiniu",
  2224. "sdk",
  2225. "storage"
  2226. ],
  2227. "time": "2018-11-06T13:34:32+00:00"
  2228. },
  2229. {
  2230. "name": "ralouphie/getallheaders",
  2231. "version": "2.0.5",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/ralouphie/getallheaders.git",
  2235. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2240. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2241. "shasum": ""
  2242. },
  2243. "require": {
  2244. "php": ">=5.3"
  2245. },
  2246. "require-dev": {
  2247. "phpunit/phpunit": "~3.7.0",
  2248. "satooshi/php-coveralls": ">=1.0"
  2249. },
  2250. "type": "library",
  2251. "autoload": {
  2252. "files": [
  2253. "src/getallheaders.php"
  2254. ]
  2255. },
  2256. "notification-url": "https://packagist.org/downloads/",
  2257. "license": [
  2258. "MIT"
  2259. ],
  2260. "authors": [
  2261. {
  2262. "name": "Ralph Khattar",
  2263. "email": "ralph.khattar@gmail.com"
  2264. }
  2265. ],
  2266. "description": "A polyfill for getallheaders.",
  2267. "time": "2016-02-11T07:05:27+00:00"
  2268. },
  2269. {
  2270. "name": "ramsey/uuid",
  2271. "version": "3.8.0",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/ramsey/uuid.git",
  2275. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2280. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2281. "shasum": ""
  2282. },
  2283. "require": {
  2284. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  2285. "php": "^5.4 || ^7.0",
  2286. "symfony/polyfill-ctype": "^1.8"
  2287. },
  2288. "replace": {
  2289. "rhumsaa/uuid": "self.version"
  2290. },
  2291. "require-dev": {
  2292. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2293. "doctrine/annotations": "~1.2.0",
  2294. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  2295. "ircmaxell/random-lib": "^1.1",
  2296. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2297. "mockery/mockery": "^0.9.9",
  2298. "moontoast/math": "^1.1",
  2299. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  2300. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  2301. "squizlabs/php_codesniffer": "^2.3"
  2302. },
  2303. "suggest": {
  2304. "ext-ctype": "Provides support for PHP Ctype functions",
  2305. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2306. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2307. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2308. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2309. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2310. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2311. },
  2312. "type": "library",
  2313. "extra": {
  2314. "branch-alias": {
  2315. "dev-master": "3.x-dev"
  2316. }
  2317. },
  2318. "autoload": {
  2319. "psr-4": {
  2320. "Ramsey\\Uuid\\": "src/"
  2321. }
  2322. },
  2323. "notification-url": "https://packagist.org/downloads/",
  2324. "license": [
  2325. "MIT"
  2326. ],
  2327. "authors": [
  2328. {
  2329. "name": "Marijn Huizendveld",
  2330. "email": "marijn.huizendveld@gmail.com"
  2331. },
  2332. {
  2333. "name": "Thibaud Fabre",
  2334. "email": "thibaud@aztech.io"
  2335. },
  2336. {
  2337. "name": "Ben Ramsey",
  2338. "email": "ben@benramsey.com",
  2339. "homepage": "https://benramsey.com"
  2340. }
  2341. ],
  2342. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2343. "homepage": "https://github.com/ramsey/uuid",
  2344. "keywords": [
  2345. "guid",
  2346. "identifier",
  2347. "uuid"
  2348. ],
  2349. "time": "2018-07-19T23:38:55+00:00"
  2350. },
  2351. {
  2352. "name": "simplesoftwareio/simple-qrcode",
  2353. "version": "2.0.0",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  2357. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/90b2282dd29be1e52565e9832dc23af41610ea07",
  2362. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07",
  2363. "shasum": ""
  2364. },
  2365. "require": {
  2366. "bacon/bacon-qr-code": "1.0.*",
  2367. "ext-gd": "*",
  2368. "illuminate/support": ">=5.0.0",
  2369. "php": ">=7.0"
  2370. },
  2371. "require-dev": {
  2372. "mockery/mockery": "0.9.*",
  2373. "phpunit/phpunit": "~6"
  2374. },
  2375. "type": "library",
  2376. "extra": {
  2377. "laravel": {
  2378. "providers": [
  2379. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  2380. ],
  2381. "aliases": {
  2382. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  2383. }
  2384. }
  2385. },
  2386. "autoload": {
  2387. "psr-0": {
  2388. "SimpleSoftwareIO\\QrCode\\": "src"
  2389. }
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "MIT"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "Simple Software LLC",
  2398. "email": "support@simplesoftware.io"
  2399. }
  2400. ],
  2401. "description": "Simple QrCode is a QR code generator made for Laravel.",
  2402. "homepage": "http://www.simplesoftware.io",
  2403. "keywords": [
  2404. "Simple",
  2405. "generator",
  2406. "laravel",
  2407. "qrcode",
  2408. "wrapper"
  2409. ],
  2410. "time": "2017-11-26T15:27:12+00:00"
  2411. },
  2412. {
  2413. "name": "spatie/laravel-permission",
  2414. "version": "2.37.0",
  2415. "source": {
  2416. "type": "git",
  2417. "url": "https://github.com/spatie/laravel-permission.git",
  2418. "reference": "81dbe9d372d70c255b66a2727a235076509f8d45"
  2419. },
  2420. "dist": {
  2421. "type": "zip",
  2422. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/81dbe9d372d70c255b66a2727a235076509f8d45",
  2423. "reference": "81dbe9d372d70c255b66a2727a235076509f8d45",
  2424. "shasum": ""
  2425. },
  2426. "require": {
  2427. "illuminate/auth": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2428. "illuminate/container": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2429. "illuminate/contracts": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2430. "illuminate/database": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2431. "php": ">=7.0"
  2432. },
  2433. "require-dev": {
  2434. "orchestra/testbench": "~3.4.2|~3.5.0|~3.6.0|~3.7.0",
  2435. "phpunit/phpunit": "^5.7|6.2|^7.0",
  2436. "predis/predis": "^1.1"
  2437. },
  2438. "type": "library",
  2439. "extra": {
  2440. "laravel": {
  2441. "providers": [
  2442. "Spatie\\Permission\\PermissionServiceProvider"
  2443. ]
  2444. }
  2445. },
  2446. "autoload": {
  2447. "psr-4": {
  2448. "Spatie\\Permission\\": "src"
  2449. },
  2450. "files": [
  2451. "src/helpers.php"
  2452. ]
  2453. },
  2454. "notification-url": "https://packagist.org/downloads/",
  2455. "license": [
  2456. "MIT"
  2457. ],
  2458. "authors": [
  2459. {
  2460. "name": "Freek Van der Herten",
  2461. "email": "freek@spatie.be",
  2462. "homepage": "https://spatie.be",
  2463. "role": "Developer"
  2464. }
  2465. ],
  2466. "description": "Permission handling for Laravel 5.4 and up",
  2467. "homepage": "https://github.com/spatie/laravel-permission",
  2468. "keywords": [
  2469. "acl",
  2470. "laravel",
  2471. "permission",
  2472. "security",
  2473. "spatie"
  2474. ],
  2475. "time": "2019-04-09T12:45:17+00:00"
  2476. },
  2477. {
  2478. "name": "stevenyangecho/laravel-u-editor",
  2479. "version": "v1.4.2",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/stevenyangecho/laravel-u-editor.git",
  2483. "reference": "e8612da55f5a7ec1acf76cc2d03e3504ccb3bff9"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/stevenyangecho/laravel-u-editor/zipball/e8612da55f5a7ec1acf76cc2d03e3504ccb3bff9",
  2488. "reference": "e8612da55f5a7ec1acf76cc2d03e3504ccb3bff9",
  2489. "shasum": ""
  2490. },
  2491. "require": {
  2492. "ext-fileinfo": "*",
  2493. "illuminate/support": "5.*",
  2494. "php": ">=5.4.0",
  2495. "qiniu/php-sdk": "7.*"
  2496. },
  2497. "type": "library",
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Stevenyangecho\\UEditor\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "Steven Yang",
  2510. "email": "yqmking@163.com"
  2511. }
  2512. ],
  2513. "description": "UEditor for laravel5. Support i18n. UEditor is a Rich Text Web Editor From Baidu.",
  2514. "keywords": [
  2515. "laravel",
  2516. "laravel-u-editor",
  2517. "laravel5 web text editor",
  2518. "steven yang",
  2519. "stevenyangecho",
  2520. "ueditor"
  2521. ],
  2522. "time": "2017-06-21T06:29:09+00:00"
  2523. },
  2524. {
  2525. "name": "swiftmailer/swiftmailer",
  2526. "version": "v6.2.1",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2530. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2535. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2536. "shasum": ""
  2537. },
  2538. "require": {
  2539. "egulias/email-validator": "~2.0",
  2540. "php": ">=7.0.0",
  2541. "symfony/polyfill-iconv": "^1.0",
  2542. "symfony/polyfill-intl-idn": "^1.10",
  2543. "symfony/polyfill-mbstring": "^1.0"
  2544. },
  2545. "require-dev": {
  2546. "mockery/mockery": "~0.9.1",
  2547. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2548. },
  2549. "suggest": {
  2550. "ext-intl": "Needed to support internationalized email addresses",
  2551. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2552. },
  2553. "type": "library",
  2554. "extra": {
  2555. "branch-alias": {
  2556. "dev-master": "6.2-dev"
  2557. }
  2558. },
  2559. "autoload": {
  2560. "files": [
  2561. "lib/swift_required.php"
  2562. ]
  2563. },
  2564. "notification-url": "https://packagist.org/downloads/",
  2565. "license": [
  2566. "MIT"
  2567. ],
  2568. "authors": [
  2569. {
  2570. "name": "Chris Corbyn"
  2571. },
  2572. {
  2573. "name": "Fabien Potencier",
  2574. "email": "fabien@symfony.com"
  2575. }
  2576. ],
  2577. "description": "Swiftmailer, free feature-rich PHP mailer",
  2578. "homepage": "https://swiftmailer.symfony.com",
  2579. "keywords": [
  2580. "email",
  2581. "mail",
  2582. "mailer"
  2583. ],
  2584. "time": "2019-04-21T09:21:45+00:00"
  2585. },
  2586. {
  2587. "name": "symfony/console",
  2588. "version": "v3.4.28",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/symfony/console.git",
  2592. "reference": "8e1d1e406dd31727fa70cd5a99cda202e9d6a5c6"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/symfony/console/zipball/8e1d1e406dd31727fa70cd5a99cda202e9d6a5c6",
  2597. "reference": "8e1d1e406dd31727fa70cd5a99cda202e9d6a5c6",
  2598. "shasum": ""
  2599. },
  2600. "require": {
  2601. "php": "^5.5.9|>=7.0.8",
  2602. "symfony/debug": "~2.8|~3.0|~4.0",
  2603. "symfony/polyfill-mbstring": "~1.0"
  2604. },
  2605. "conflict": {
  2606. "symfony/dependency-injection": "<3.4",
  2607. "symfony/process": "<3.3"
  2608. },
  2609. "provide": {
  2610. "psr/log-implementation": "1.0"
  2611. },
  2612. "require-dev": {
  2613. "psr/log": "~1.0",
  2614. "symfony/config": "~3.3|~4.0",
  2615. "symfony/dependency-injection": "~3.4|~4.0",
  2616. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2617. "symfony/lock": "~3.4|~4.0",
  2618. "symfony/process": "~3.3|~4.0"
  2619. },
  2620. "suggest": {
  2621. "psr/log": "For using the console logger",
  2622. "symfony/event-dispatcher": "",
  2623. "symfony/lock": "",
  2624. "symfony/process": ""
  2625. },
  2626. "type": "library",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "3.4-dev"
  2630. }
  2631. },
  2632. "autoload": {
  2633. "psr-4": {
  2634. "Symfony\\Component\\Console\\": ""
  2635. },
  2636. "exclude-from-classmap": [
  2637. "/Tests/"
  2638. ]
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "authors": [
  2645. {
  2646. "name": "Fabien Potencier",
  2647. "email": "fabien@symfony.com"
  2648. },
  2649. {
  2650. "name": "Symfony Community",
  2651. "homepage": "https://symfony.com/contributors"
  2652. }
  2653. ],
  2654. "description": "Symfony Console Component",
  2655. "homepage": "https://symfony.com",
  2656. "time": "2019-05-09T08:42:51+00:00"
  2657. },
  2658. {
  2659. "name": "symfony/css-selector",
  2660. "version": "v3.4.28",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/symfony/css-selector.git",
  2664. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  2669. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  2670. "shasum": ""
  2671. },
  2672. "require": {
  2673. "php": "^5.5.9|>=7.0.8"
  2674. },
  2675. "type": "library",
  2676. "extra": {
  2677. "branch-alias": {
  2678. "dev-master": "3.4-dev"
  2679. }
  2680. },
  2681. "autoload": {
  2682. "psr-4": {
  2683. "Symfony\\Component\\CssSelector\\": ""
  2684. },
  2685. "exclude-from-classmap": [
  2686. "/Tests/"
  2687. ]
  2688. },
  2689. "notification-url": "https://packagist.org/downloads/",
  2690. "license": [
  2691. "MIT"
  2692. ],
  2693. "authors": [
  2694. {
  2695. "name": "Jean-François Simon",
  2696. "email": "jeanfrancois.simon@sensiolabs.com"
  2697. },
  2698. {
  2699. "name": "Fabien Potencier",
  2700. "email": "fabien@symfony.com"
  2701. },
  2702. {
  2703. "name": "Symfony Community",
  2704. "homepage": "https://symfony.com/contributors"
  2705. }
  2706. ],
  2707. "description": "Symfony CssSelector Component",
  2708. "homepage": "https://symfony.com",
  2709. "time": "2019-01-16T09:39:14+00:00"
  2710. },
  2711. {
  2712. "name": "symfony/debug",
  2713. "version": "v3.4.28",
  2714. "source": {
  2715. "type": "git",
  2716. "url": "https://github.com/symfony/debug.git",
  2717. "reference": "671fc55bd14800668b1d0a3708c3714940e30a8c"
  2718. },
  2719. "dist": {
  2720. "type": "zip",
  2721. "url": "https://api.github.com/repos/symfony/debug/zipball/671fc55bd14800668b1d0a3708c3714940e30a8c",
  2722. "reference": "671fc55bd14800668b1d0a3708c3714940e30a8c",
  2723. "shasum": ""
  2724. },
  2725. "require": {
  2726. "php": "^5.5.9|>=7.0.8",
  2727. "psr/log": "~1.0"
  2728. },
  2729. "conflict": {
  2730. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2731. },
  2732. "require-dev": {
  2733. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2734. },
  2735. "type": "library",
  2736. "extra": {
  2737. "branch-alias": {
  2738. "dev-master": "3.4-dev"
  2739. }
  2740. },
  2741. "autoload": {
  2742. "psr-4": {
  2743. "Symfony\\Component\\Debug\\": ""
  2744. },
  2745. "exclude-from-classmap": [
  2746. "/Tests/"
  2747. ]
  2748. },
  2749. "notification-url": "https://packagist.org/downloads/",
  2750. "license": [
  2751. "MIT"
  2752. ],
  2753. "authors": [
  2754. {
  2755. "name": "Fabien Potencier",
  2756. "email": "fabien@symfony.com"
  2757. },
  2758. {
  2759. "name": "Symfony Community",
  2760. "homepage": "https://symfony.com/contributors"
  2761. }
  2762. ],
  2763. "description": "Symfony Debug Component",
  2764. "homepage": "https://symfony.com",
  2765. "time": "2019-05-18T13:32:47+00:00"
  2766. },
  2767. {
  2768. "name": "symfony/event-dispatcher",
  2769. "version": "v3.4.28",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/symfony/event-dispatcher.git",
  2773. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a088aafcefb4eef2520a290ed82e4374092a6dff",
  2778. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "php": "^5.5.9|>=7.0.8"
  2783. },
  2784. "conflict": {
  2785. "symfony/dependency-injection": "<3.3"
  2786. },
  2787. "require-dev": {
  2788. "psr/log": "~1.0",
  2789. "symfony/config": "~2.8|~3.0|~4.0",
  2790. "symfony/dependency-injection": "~3.3|~4.0",
  2791. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2792. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  2793. },
  2794. "suggest": {
  2795. "symfony/dependency-injection": "",
  2796. "symfony/http-kernel": ""
  2797. },
  2798. "type": "library",
  2799. "extra": {
  2800. "branch-alias": {
  2801. "dev-master": "3.4-dev"
  2802. }
  2803. },
  2804. "autoload": {
  2805. "psr-4": {
  2806. "Symfony\\Component\\EventDispatcher\\": ""
  2807. },
  2808. "exclude-from-classmap": [
  2809. "/Tests/"
  2810. ]
  2811. },
  2812. "notification-url": "https://packagist.org/downloads/",
  2813. "license": [
  2814. "MIT"
  2815. ],
  2816. "authors": [
  2817. {
  2818. "name": "Fabien Potencier",
  2819. "email": "fabien@symfony.com"
  2820. },
  2821. {
  2822. "name": "Symfony Community",
  2823. "homepage": "https://symfony.com/contributors"
  2824. }
  2825. ],
  2826. "description": "Symfony EventDispatcher Component",
  2827. "homepage": "https://symfony.com",
  2828. "time": "2019-04-02T08:51:52+00:00"
  2829. },
  2830. {
  2831. "name": "symfony/finder",
  2832. "version": "v3.4.28",
  2833. "source": {
  2834. "type": "git",
  2835. "url": "https://github.com/symfony/finder.git",
  2836. "reference": "fa5d962a71f2169dfe1cbae217fa5a2799859f6c"
  2837. },
  2838. "dist": {
  2839. "type": "zip",
  2840. "url": "https://api.github.com/repos/symfony/finder/zipball/fa5d962a71f2169dfe1cbae217fa5a2799859f6c",
  2841. "reference": "fa5d962a71f2169dfe1cbae217fa5a2799859f6c",
  2842. "shasum": ""
  2843. },
  2844. "require": {
  2845. "php": "^5.5.9|>=7.0.8"
  2846. },
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "3.4-dev"
  2851. }
  2852. },
  2853. "autoload": {
  2854. "psr-4": {
  2855. "Symfony\\Component\\Finder\\": ""
  2856. },
  2857. "exclude-from-classmap": [
  2858. "/Tests/"
  2859. ]
  2860. },
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "MIT"
  2864. ],
  2865. "authors": [
  2866. {
  2867. "name": "Fabien Potencier",
  2868. "email": "fabien@symfony.com"
  2869. },
  2870. {
  2871. "name": "Symfony Community",
  2872. "homepage": "https://symfony.com/contributors"
  2873. }
  2874. ],
  2875. "description": "Symfony Finder Component",
  2876. "homepage": "https://symfony.com",
  2877. "time": "2019-05-24T12:25:55+00:00"
  2878. },
  2879. {
  2880. "name": "symfony/http-foundation",
  2881. "version": "v3.4.28",
  2882. "source": {
  2883. "type": "git",
  2884. "url": "https://github.com/symfony/http-foundation.git",
  2885. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e"
  2886. },
  2887. "dist": {
  2888. "type": "zip",
  2889. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/677ae5e892b081e71a665bfa7dd90fe61800c00e",
  2890. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e",
  2891. "shasum": ""
  2892. },
  2893. "require": {
  2894. "php": "^5.5.9|>=7.0.8",
  2895. "symfony/polyfill-mbstring": "~1.1",
  2896. "symfony/polyfill-php70": "~1.6"
  2897. },
  2898. "require-dev": {
  2899. "symfony/expression-language": "~2.8|~3.0|~4.0"
  2900. },
  2901. "type": "library",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-master": "3.4-dev"
  2905. }
  2906. },
  2907. "autoload": {
  2908. "psr-4": {
  2909. "Symfony\\Component\\HttpFoundation\\": ""
  2910. },
  2911. "exclude-from-classmap": [
  2912. "/Tests/"
  2913. ]
  2914. },
  2915. "notification-url": "https://packagist.org/downloads/",
  2916. "license": [
  2917. "MIT"
  2918. ],
  2919. "authors": [
  2920. {
  2921. "name": "Fabien Potencier",
  2922. "email": "fabien@symfony.com"
  2923. },
  2924. {
  2925. "name": "Symfony Community",
  2926. "homepage": "https://symfony.com/contributors"
  2927. }
  2928. ],
  2929. "description": "Symfony HttpFoundation Component",
  2930. "homepage": "https://symfony.com",
  2931. "time": "2019-05-27T05:50:24+00:00"
  2932. },
  2933. {
  2934. "name": "symfony/http-kernel",
  2935. "version": "v3.4.28",
  2936. "source": {
  2937. "type": "git",
  2938. "url": "https://github.com/symfony/http-kernel.git",
  2939. "reference": "ddde6547880914f2e41b0b29e585b8c939a1e39e"
  2940. },
  2941. "dist": {
  2942. "type": "zip",
  2943. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ddde6547880914f2e41b0b29e585b8c939a1e39e",
  2944. "reference": "ddde6547880914f2e41b0b29e585b8c939a1e39e",
  2945. "shasum": ""
  2946. },
  2947. "require": {
  2948. "php": "^5.5.9|>=7.0.8",
  2949. "psr/log": "~1.0",
  2950. "symfony/debug": "^3.3.3|~4.0",
  2951. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2952. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  2953. "symfony/polyfill-ctype": "~1.8"
  2954. },
  2955. "conflict": {
  2956. "symfony/config": "<2.8",
  2957. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  2958. "symfony/var-dumper": "<3.3",
  2959. "twig/twig": "<1.34|<2.4,>=2"
  2960. },
  2961. "provide": {
  2962. "psr/log-implementation": "1.0"
  2963. },
  2964. "require-dev": {
  2965. "psr/cache": "~1.0",
  2966. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  2967. "symfony/class-loader": "~2.8|~3.0",
  2968. "symfony/config": "~2.8|~3.0|~4.0",
  2969. "symfony/console": "~2.8|~3.0|~4.0",
  2970. "symfony/css-selector": "~2.8|~3.0|~4.0",
  2971. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  2972. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  2973. "symfony/expression-language": "~2.8|~3.0|~4.0",
  2974. "symfony/finder": "~2.8|~3.0|~4.0",
  2975. "symfony/process": "~2.8|~3.0|~4.0",
  2976. "symfony/routing": "~3.4|~4.0",
  2977. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  2978. "symfony/templating": "~2.8|~3.0|~4.0",
  2979. "symfony/translation": "~2.8|~3.0|~4.0",
  2980. "symfony/var-dumper": "~3.3|~4.0"
  2981. },
  2982. "suggest": {
  2983. "symfony/browser-kit": "",
  2984. "symfony/config": "",
  2985. "symfony/console": "",
  2986. "symfony/dependency-injection": "",
  2987. "symfony/finder": "",
  2988. "symfony/var-dumper": ""
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "3.4-dev"
  2994. }
  2995. },
  2996. "autoload": {
  2997. "psr-4": {
  2998. "Symfony\\Component\\HttpKernel\\": ""
  2999. },
  3000. "exclude-from-classmap": [
  3001. "/Tests/"
  3002. ]
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "authors": [
  3009. {
  3010. "name": "Fabien Potencier",
  3011. "email": "fabien@symfony.com"
  3012. },
  3013. {
  3014. "name": "Symfony Community",
  3015. "homepage": "https://symfony.com/contributors"
  3016. }
  3017. ],
  3018. "description": "Symfony HttpKernel Component",
  3019. "homepage": "https://symfony.com",
  3020. "time": "2019-05-28T09:24:42+00:00"
  3021. },
  3022. {
  3023. "name": "symfony/polyfill-ctype",
  3024. "version": "v1.11.0",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/symfony/polyfill-ctype.git",
  3028. "reference": "82ebae02209c21113908c229e9883c419720738a"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  3033. "reference": "82ebae02209c21113908c229e9883c419720738a",
  3034. "shasum": ""
  3035. },
  3036. "require": {
  3037. "php": ">=5.3.3"
  3038. },
  3039. "suggest": {
  3040. "ext-ctype": "For best performance"
  3041. },
  3042. "type": "library",
  3043. "extra": {
  3044. "branch-alias": {
  3045. "dev-master": "1.11-dev"
  3046. }
  3047. },
  3048. "autoload": {
  3049. "psr-4": {
  3050. "Symfony\\Polyfill\\Ctype\\": ""
  3051. },
  3052. "files": [
  3053. "bootstrap.php"
  3054. ]
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "MIT"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "Symfony Community",
  3063. "homepage": "https://symfony.com/contributors"
  3064. },
  3065. {
  3066. "name": "Gert de Pagter",
  3067. "email": "BackEndTea@gmail.com"
  3068. }
  3069. ],
  3070. "description": "Symfony polyfill for ctype functions",
  3071. "homepage": "https://symfony.com",
  3072. "keywords": [
  3073. "compatibility",
  3074. "ctype",
  3075. "polyfill",
  3076. "portable"
  3077. ],
  3078. "time": "2019-02-06T07:57:58+00:00"
  3079. },
  3080. {
  3081. "name": "symfony/polyfill-iconv",
  3082. "version": "v1.11.0",
  3083. "source": {
  3084. "type": "git",
  3085. "url": "https://github.com/symfony/polyfill-iconv.git",
  3086. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  3087. },
  3088. "dist": {
  3089. "type": "zip",
  3090. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  3091. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  3092. "shasum": ""
  3093. },
  3094. "require": {
  3095. "php": ">=5.3.3"
  3096. },
  3097. "suggest": {
  3098. "ext-iconv": "For best performance"
  3099. },
  3100. "type": "library",
  3101. "extra": {
  3102. "branch-alias": {
  3103. "dev-master": "1.11-dev"
  3104. }
  3105. },
  3106. "autoload": {
  3107. "psr-4": {
  3108. "Symfony\\Polyfill\\Iconv\\": ""
  3109. },
  3110. "files": [
  3111. "bootstrap.php"
  3112. ]
  3113. },
  3114. "notification-url": "https://packagist.org/downloads/",
  3115. "license": [
  3116. "MIT"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "Nicolas Grekas",
  3121. "email": "p@tchwork.com"
  3122. },
  3123. {
  3124. "name": "Symfony Community",
  3125. "homepage": "https://symfony.com/contributors"
  3126. }
  3127. ],
  3128. "description": "Symfony polyfill for the Iconv extension",
  3129. "homepage": "https://symfony.com",
  3130. "keywords": [
  3131. "compatibility",
  3132. "iconv",
  3133. "polyfill",
  3134. "portable",
  3135. "shim"
  3136. ],
  3137. "time": "2019-02-06T07:57:58+00:00"
  3138. },
  3139. {
  3140. "name": "symfony/polyfill-intl-idn",
  3141. "version": "v1.11.0",
  3142. "source": {
  3143. "type": "git",
  3144. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3145. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  3146. },
  3147. "dist": {
  3148. "type": "zip",
  3149. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  3150. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  3151. "shasum": ""
  3152. },
  3153. "require": {
  3154. "php": ">=5.3.3",
  3155. "symfony/polyfill-mbstring": "^1.3",
  3156. "symfony/polyfill-php72": "^1.9"
  3157. },
  3158. "suggest": {
  3159. "ext-intl": "For best performance"
  3160. },
  3161. "type": "library",
  3162. "extra": {
  3163. "branch-alias": {
  3164. "dev-master": "1.9-dev"
  3165. }
  3166. },
  3167. "autoload": {
  3168. "psr-4": {
  3169. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3170. },
  3171. "files": [
  3172. "bootstrap.php"
  3173. ]
  3174. },
  3175. "notification-url": "https://packagist.org/downloads/",
  3176. "license": [
  3177. "MIT"
  3178. ],
  3179. "authors": [
  3180. {
  3181. "name": "Symfony Community",
  3182. "homepage": "https://symfony.com/contributors"
  3183. },
  3184. {
  3185. "name": "Laurent Bassin",
  3186. "email": "laurent@bassin.info"
  3187. }
  3188. ],
  3189. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3190. "homepage": "https://symfony.com",
  3191. "keywords": [
  3192. "compatibility",
  3193. "idn",
  3194. "intl",
  3195. "polyfill",
  3196. "portable",
  3197. "shim"
  3198. ],
  3199. "time": "2019-03-04T13:44:35+00:00"
  3200. },
  3201. {
  3202. "name": "symfony/polyfill-mbstring",
  3203. "version": "v1.11.0",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3207. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  3212. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "php": ">=5.3.3"
  3217. },
  3218. "suggest": {
  3219. "ext-mbstring": "For best performance"
  3220. },
  3221. "type": "library",
  3222. "extra": {
  3223. "branch-alias": {
  3224. "dev-master": "1.11-dev"
  3225. }
  3226. },
  3227. "autoload": {
  3228. "psr-4": {
  3229. "Symfony\\Polyfill\\Mbstring\\": ""
  3230. },
  3231. "files": [
  3232. "bootstrap.php"
  3233. ]
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "MIT"
  3238. ],
  3239. "authors": [
  3240. {
  3241. "name": "Nicolas Grekas",
  3242. "email": "p@tchwork.com"
  3243. },
  3244. {
  3245. "name": "Symfony Community",
  3246. "homepage": "https://symfony.com/contributors"
  3247. }
  3248. ],
  3249. "description": "Symfony polyfill for the Mbstring extension",
  3250. "homepage": "https://symfony.com",
  3251. "keywords": [
  3252. "compatibility",
  3253. "mbstring",
  3254. "polyfill",
  3255. "portable",
  3256. "shim"
  3257. ],
  3258. "time": "2019-02-06T07:57:58+00:00"
  3259. },
  3260. {
  3261. "name": "symfony/polyfill-php56",
  3262. "version": "v1.11.0",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://github.com/symfony/polyfill-php56.git",
  3266. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  3271. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  3272. "shasum": ""
  3273. },
  3274. "require": {
  3275. "php": ">=5.3.3",
  3276. "symfony/polyfill-util": "~1.0"
  3277. },
  3278. "type": "library",
  3279. "extra": {
  3280. "branch-alias": {
  3281. "dev-master": "1.11-dev"
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "Symfony\\Polyfill\\Php56\\": ""
  3287. },
  3288. "files": [
  3289. "bootstrap.php"
  3290. ]
  3291. },
  3292. "notification-url": "https://packagist.org/downloads/",
  3293. "license": [
  3294. "MIT"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Nicolas Grekas",
  3299. "email": "p@tchwork.com"
  3300. },
  3301. {
  3302. "name": "Symfony Community",
  3303. "homepage": "https://symfony.com/contributors"
  3304. }
  3305. ],
  3306. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3307. "homepage": "https://symfony.com",
  3308. "keywords": [
  3309. "compatibility",
  3310. "polyfill",
  3311. "portable",
  3312. "shim"
  3313. ],
  3314. "time": "2019-02-06T07:57:58+00:00"
  3315. },
  3316. {
  3317. "name": "symfony/polyfill-php70",
  3318. "version": "v1.11.0",
  3319. "source": {
  3320. "type": "git",
  3321. "url": "https://github.com/symfony/polyfill-php70.git",
  3322. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  3323. },
  3324. "dist": {
  3325. "type": "zip",
  3326. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  3327. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  3328. "shasum": ""
  3329. },
  3330. "require": {
  3331. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  3332. "php": ">=5.3.3"
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "branch-alias": {
  3337. "dev-master": "1.11-dev"
  3338. }
  3339. },
  3340. "autoload": {
  3341. "psr-4": {
  3342. "Symfony\\Polyfill\\Php70\\": ""
  3343. },
  3344. "files": [
  3345. "bootstrap.php"
  3346. ],
  3347. "classmap": [
  3348. "Resources/stubs"
  3349. ]
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "authors": [
  3356. {
  3357. "name": "Nicolas Grekas",
  3358. "email": "p@tchwork.com"
  3359. },
  3360. {
  3361. "name": "Symfony Community",
  3362. "homepage": "https://symfony.com/contributors"
  3363. }
  3364. ],
  3365. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3366. "homepage": "https://symfony.com",
  3367. "keywords": [
  3368. "compatibility",
  3369. "polyfill",
  3370. "portable",
  3371. "shim"
  3372. ],
  3373. "time": "2019-02-06T07:57:58+00:00"
  3374. },
  3375. {
  3376. "name": "symfony/polyfill-php72",
  3377. "version": "v1.11.0",
  3378. "source": {
  3379. "type": "git",
  3380. "url": "https://github.com/symfony/polyfill-php72.git",
  3381. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  3382. },
  3383. "dist": {
  3384. "type": "zip",
  3385. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  3386. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  3387. "shasum": ""
  3388. },
  3389. "require": {
  3390. "php": ">=5.3.3"
  3391. },
  3392. "type": "library",
  3393. "extra": {
  3394. "branch-alias": {
  3395. "dev-master": "1.11-dev"
  3396. }
  3397. },
  3398. "autoload": {
  3399. "psr-4": {
  3400. "Symfony\\Polyfill\\Php72\\": ""
  3401. },
  3402. "files": [
  3403. "bootstrap.php"
  3404. ]
  3405. },
  3406. "notification-url": "https://packagist.org/downloads/",
  3407. "license": [
  3408. "MIT"
  3409. ],
  3410. "authors": [
  3411. {
  3412. "name": "Nicolas Grekas",
  3413. "email": "p@tchwork.com"
  3414. },
  3415. {
  3416. "name": "Symfony Community",
  3417. "homepage": "https://symfony.com/contributors"
  3418. }
  3419. ],
  3420. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3421. "homepage": "https://symfony.com",
  3422. "keywords": [
  3423. "compatibility",
  3424. "polyfill",
  3425. "portable",
  3426. "shim"
  3427. ],
  3428. "time": "2019-02-06T07:57:58+00:00"
  3429. },
  3430. {
  3431. "name": "symfony/polyfill-util",
  3432. "version": "v1.11.0",
  3433. "source": {
  3434. "type": "git",
  3435. "url": "https://github.com/symfony/polyfill-util.git",
  3436. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897"
  3437. },
  3438. "dist": {
  3439. "type": "zip",
  3440. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897",
  3441. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897",
  3442. "shasum": ""
  3443. },
  3444. "require": {
  3445. "php": ">=5.3.3"
  3446. },
  3447. "type": "library",
  3448. "extra": {
  3449. "branch-alias": {
  3450. "dev-master": "1.11-dev"
  3451. }
  3452. },
  3453. "autoload": {
  3454. "psr-4": {
  3455. "Symfony\\Polyfill\\Util\\": ""
  3456. }
  3457. },
  3458. "notification-url": "https://packagist.org/downloads/",
  3459. "license": [
  3460. "MIT"
  3461. ],
  3462. "authors": [
  3463. {
  3464. "name": "Nicolas Grekas",
  3465. "email": "p@tchwork.com"
  3466. },
  3467. {
  3468. "name": "Symfony Community",
  3469. "homepage": "https://symfony.com/contributors"
  3470. }
  3471. ],
  3472. "description": "Symfony utilities for portability of PHP codes",
  3473. "homepage": "https://symfony.com",
  3474. "keywords": [
  3475. "compat",
  3476. "compatibility",
  3477. "polyfill",
  3478. "shim"
  3479. ],
  3480. "time": "2019-02-08T14:16:39+00:00"
  3481. },
  3482. {
  3483. "name": "symfony/process",
  3484. "version": "v3.4.28",
  3485. "source": {
  3486. "type": "git",
  3487. "url": "https://github.com/symfony/process.git",
  3488. "reference": "afe411c2a6084f25cff55a01d0d4e1474c97ff13"
  3489. },
  3490. "dist": {
  3491. "type": "zip",
  3492. "url": "https://api.github.com/repos/symfony/process/zipball/afe411c2a6084f25cff55a01d0d4e1474c97ff13",
  3493. "reference": "afe411c2a6084f25cff55a01d0d4e1474c97ff13",
  3494. "shasum": ""
  3495. },
  3496. "require": {
  3497. "php": "^5.5.9|>=7.0.8"
  3498. },
  3499. "type": "library",
  3500. "extra": {
  3501. "branch-alias": {
  3502. "dev-master": "3.4-dev"
  3503. }
  3504. },
  3505. "autoload": {
  3506. "psr-4": {
  3507. "Symfony\\Component\\Process\\": ""
  3508. },
  3509. "exclude-from-classmap": [
  3510. "/Tests/"
  3511. ]
  3512. },
  3513. "notification-url": "https://packagist.org/downloads/",
  3514. "license": [
  3515. "MIT"
  3516. ],
  3517. "authors": [
  3518. {
  3519. "name": "Fabien Potencier",
  3520. "email": "fabien@symfony.com"
  3521. },
  3522. {
  3523. "name": "Symfony Community",
  3524. "homepage": "https://symfony.com/contributors"
  3525. }
  3526. ],
  3527. "description": "Symfony Process Component",
  3528. "homepage": "https://symfony.com",
  3529. "time": "2019-05-22T12:54:11+00:00"
  3530. },
  3531. {
  3532. "name": "symfony/routing",
  3533. "version": "v3.4.28",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/symfony/routing.git",
  3537. "reference": "3458f90c2c17dfbb3260dbbfca19a0c415576ce0"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/symfony/routing/zipball/3458f90c2c17dfbb3260dbbfca19a0c415576ce0",
  3542. "reference": "3458f90c2c17dfbb3260dbbfca19a0c415576ce0",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "php": "^5.5.9|>=7.0.8"
  3547. },
  3548. "conflict": {
  3549. "symfony/config": "<3.3.1",
  3550. "symfony/dependency-injection": "<3.3",
  3551. "symfony/yaml": "<3.4"
  3552. },
  3553. "require-dev": {
  3554. "doctrine/annotations": "~1.0",
  3555. "psr/log": "~1.0",
  3556. "symfony/config": "^3.3.1|~4.0",
  3557. "symfony/dependency-injection": "~3.3|~4.0",
  3558. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3559. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  3560. "symfony/yaml": "~3.4|~4.0"
  3561. },
  3562. "suggest": {
  3563. "doctrine/annotations": "For using the annotation loader",
  3564. "symfony/config": "For using the all-in-one router or any loader",
  3565. "symfony/expression-language": "For using expression matching",
  3566. "symfony/http-foundation": "For using a Symfony Request object",
  3567. "symfony/yaml": "For using the YAML loader"
  3568. },
  3569. "type": "library",
  3570. "extra": {
  3571. "branch-alias": {
  3572. "dev-master": "3.4-dev"
  3573. }
  3574. },
  3575. "autoload": {
  3576. "psr-4": {
  3577. "Symfony\\Component\\Routing\\": ""
  3578. },
  3579. "exclude-from-classmap": [
  3580. "/Tests/"
  3581. ]
  3582. },
  3583. "notification-url": "https://packagist.org/downloads/",
  3584. "license": [
  3585. "MIT"
  3586. ],
  3587. "authors": [
  3588. {
  3589. "name": "Fabien Potencier",
  3590. "email": "fabien@symfony.com"
  3591. },
  3592. {
  3593. "name": "Symfony Community",
  3594. "homepage": "https://symfony.com/contributors"
  3595. }
  3596. ],
  3597. "description": "Symfony Routing Component",
  3598. "homepage": "https://symfony.com",
  3599. "keywords": [
  3600. "router",
  3601. "routing",
  3602. "uri",
  3603. "url"
  3604. ],
  3605. "time": "2019-05-18T16:36:47+00:00"
  3606. },
  3607. {
  3608. "name": "symfony/translation",
  3609. "version": "v3.4.28",
  3610. "source": {
  3611. "type": "git",
  3612. "url": "https://github.com/symfony/translation.git",
  3613. "reference": "301a5d627220a1c4ee522813b0028653af6c4f54"
  3614. },
  3615. "dist": {
  3616. "type": "zip",
  3617. "url": "https://api.github.com/repos/symfony/translation/zipball/301a5d627220a1c4ee522813b0028653af6c4f54",
  3618. "reference": "301a5d627220a1c4ee522813b0028653af6c4f54",
  3619. "shasum": ""
  3620. },
  3621. "require": {
  3622. "php": "^5.5.9|>=7.0.8",
  3623. "symfony/polyfill-mbstring": "~1.0"
  3624. },
  3625. "conflict": {
  3626. "symfony/config": "<2.8",
  3627. "symfony/dependency-injection": "<3.4",
  3628. "symfony/yaml": "<3.4"
  3629. },
  3630. "require-dev": {
  3631. "psr/log": "~1.0",
  3632. "symfony/config": "~2.8|~3.0|~4.0",
  3633. "symfony/dependency-injection": "~3.4|~4.0",
  3634. "symfony/finder": "~2.8|~3.0|~4.0",
  3635. "symfony/http-kernel": "~3.4|~4.0",
  3636. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  3637. "symfony/var-dumper": "~3.4|~4.0",
  3638. "symfony/yaml": "~3.4|~4.0"
  3639. },
  3640. "suggest": {
  3641. "psr/log-implementation": "To use logging capability in translator",
  3642. "symfony/config": "",
  3643. "symfony/yaml": ""
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "branch-alias": {
  3648. "dev-master": "3.4-dev"
  3649. }
  3650. },
  3651. "autoload": {
  3652. "psr-4": {
  3653. "Symfony\\Component\\Translation\\": ""
  3654. },
  3655. "exclude-from-classmap": [
  3656. "/Tests/"
  3657. ]
  3658. },
  3659. "notification-url": "https://packagist.org/downloads/",
  3660. "license": [
  3661. "MIT"
  3662. ],
  3663. "authors": [
  3664. {
  3665. "name": "Fabien Potencier",
  3666. "email": "fabien@symfony.com"
  3667. },
  3668. {
  3669. "name": "Symfony Community",
  3670. "homepage": "https://symfony.com/contributors"
  3671. }
  3672. ],
  3673. "description": "Symfony Translation Component",
  3674. "homepage": "https://symfony.com",
  3675. "time": "2019-05-01T11:10:09+00:00"
  3676. },
  3677. {
  3678. "name": "symfony/var-dumper",
  3679. "version": "v3.4.28",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/symfony/var-dumper.git",
  3683. "reference": "ca5fef348a0440411bbca0f9ec14e9a11625bd6a"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ca5fef348a0440411bbca0f9ec14e9a11625bd6a",
  3688. "reference": "ca5fef348a0440411bbca0f9ec14e9a11625bd6a",
  3689. "shasum": ""
  3690. },
  3691. "require": {
  3692. "php": "^5.5.9|>=7.0.8",
  3693. "symfony/polyfill-mbstring": "~1.0"
  3694. },
  3695. "conflict": {
  3696. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  3697. },
  3698. "require-dev": {
  3699. "ext-iconv": "*",
  3700. "twig/twig": "~1.34|~2.4"
  3701. },
  3702. "suggest": {
  3703. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3704. "ext-intl": "To show region name in time zone dump",
  3705. "ext-symfony_debug": ""
  3706. },
  3707. "type": "library",
  3708. "extra": {
  3709. "branch-alias": {
  3710. "dev-master": "3.4-dev"
  3711. }
  3712. },
  3713. "autoload": {
  3714. "files": [
  3715. "Resources/functions/dump.php"
  3716. ],
  3717. "psr-4": {
  3718. "Symfony\\Component\\VarDumper\\": ""
  3719. },
  3720. "exclude-from-classmap": [
  3721. "/Tests/"
  3722. ]
  3723. },
  3724. "notification-url": "https://packagist.org/downloads/",
  3725. "license": [
  3726. "MIT"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "Nicolas Grekas",
  3731. "email": "p@tchwork.com"
  3732. },
  3733. {
  3734. "name": "Symfony Community",
  3735. "homepage": "https://symfony.com/contributors"
  3736. }
  3737. ],
  3738. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3739. "homepage": "https://symfony.com",
  3740. "keywords": [
  3741. "debug",
  3742. "dump"
  3743. ],
  3744. "time": "2019-05-01T09:52:10+00:00"
  3745. },
  3746. {
  3747. "name": "tijsverkoyen/css-to-inline-styles",
  3748. "version": "2.2.1",
  3749. "source": {
  3750. "type": "git",
  3751. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  3752. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  3753. },
  3754. "dist": {
  3755. "type": "zip",
  3756. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  3757. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  3758. "shasum": ""
  3759. },
  3760. "require": {
  3761. "php": "^5.5 || ^7.0",
  3762. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  3763. },
  3764. "require-dev": {
  3765. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3766. },
  3767. "type": "library",
  3768. "extra": {
  3769. "branch-alias": {
  3770. "dev-master": "2.2.x-dev"
  3771. }
  3772. },
  3773. "autoload": {
  3774. "psr-4": {
  3775. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  3776. }
  3777. },
  3778. "notification-url": "https://packagist.org/downloads/",
  3779. "license": [
  3780. "BSD-3-Clause"
  3781. ],
  3782. "authors": [
  3783. {
  3784. "name": "Tijs Verkoyen",
  3785. "email": "css_to_inline_styles@verkoyen.eu",
  3786. "role": "Developer"
  3787. }
  3788. ],
  3789. "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.",
  3790. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  3791. "time": "2017-11-27T11:13:29+00:00"
  3792. },
  3793. {
  3794. "name": "tymon/jwt-auth",
  3795. "version": "dev-develop",
  3796. "source": {
  3797. "type": "git",
  3798. "url": "https://github.com/tymondesigns/jwt-auth.git",
  3799. "reference": "13e8ddc7bac782d9f0458ed151e3690ac7ba44fd"
  3800. },
  3801. "dist": {
  3802. "type": "zip",
  3803. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/13e8ddc7bac782d9f0458ed151e3690ac7ba44fd",
  3804. "reference": "13e8ddc7bac782d9f0458ed151e3690ac7ba44fd",
  3805. "shasum": ""
  3806. },
  3807. "require": {
  3808. "illuminate/auth": "^5.1",
  3809. "illuminate/contracts": "^5.1",
  3810. "illuminate/http": "^5.1",
  3811. "illuminate/support": "^5.1",
  3812. "lcobucci/jwt": "^3.2",
  3813. "namshi/jose": "^7.0",
  3814. "nesbot/carbon": "^1.0 || ^2.0",
  3815. "php": "^5.5.9 || ^7.0"
  3816. },
  3817. "require-dev": {
  3818. "cartalyst/sentinel": "2.0.*",
  3819. "illuminate/console": "^5.1",
  3820. "illuminate/database": "^5.1",
  3821. "illuminate/routing": "^5.1",
  3822. "mockery/mockery": ">=0.9.9",
  3823. "phpunit/phpunit": "~4.8 || ~6.0"
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-develop": "1.0-dev"
  3829. },
  3830. "laravel": {
  3831. "aliases": {
  3832. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  3833. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  3834. },
  3835. "providers": [
  3836. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  3837. ]
  3838. }
  3839. },
  3840. "autoload": {
  3841. "psr-4": {
  3842. "Tymon\\JWTAuth\\": "src/"
  3843. }
  3844. },
  3845. "notification-url": "https://packagist.org/downloads/",
  3846. "license": [
  3847. "MIT"
  3848. ],
  3849. "authors": [
  3850. {
  3851. "name": "Sean Tymon",
  3852. "email": "tymon148@gmail.com",
  3853. "homepage": "https://tymon.xyz",
  3854. "role": "Developer"
  3855. }
  3856. ],
  3857. "description": "JSON Web Token Authentication for Laravel and Lumen",
  3858. "homepage": "https://github.com/tymondesigns/jwt-auth",
  3859. "keywords": [
  3860. "Authentication",
  3861. "JSON Web Token",
  3862. "auth",
  3863. "jwt",
  3864. "laravel"
  3865. ],
  3866. "time": "2019-05-18T22:14:11+00:00"
  3867. },
  3868. {
  3869. "name": "vlucas/phpdotenv",
  3870. "version": "v2.6.1",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/vlucas/phpdotenv.git",
  3874. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  3879. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  3880. "shasum": ""
  3881. },
  3882. "require": {
  3883. "php": ">=5.3.9",
  3884. "symfony/polyfill-ctype": "^1.9"
  3885. },
  3886. "require-dev": {
  3887. "phpunit/phpunit": "^4.8.35 || ^5.0"
  3888. },
  3889. "type": "library",
  3890. "extra": {
  3891. "branch-alias": {
  3892. "dev-master": "2.6-dev"
  3893. }
  3894. },
  3895. "autoload": {
  3896. "psr-4": {
  3897. "Dotenv\\": "src/"
  3898. }
  3899. },
  3900. "notification-url": "https://packagist.org/downloads/",
  3901. "license": [
  3902. "BSD-3-Clause"
  3903. ],
  3904. "authors": [
  3905. {
  3906. "name": "Vance Lucas",
  3907. "email": "vance@vancelucas.com",
  3908. "homepage": "http://www.vancelucas.com"
  3909. }
  3910. ],
  3911. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  3912. "keywords": [
  3913. "dotenv",
  3914. "env",
  3915. "environment"
  3916. ],
  3917. "time": "2019-01-29T11:11:52+00:00"
  3918. },
  3919. {
  3920. "name": "xethron/laravel-4-generators",
  3921. "version": "3.1.1",
  3922. "source": {
  3923. "type": "git",
  3924. "url": "https://github.com/Xethron/Laravel-4-Generators.git",
  3925. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859"
  3926. },
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://api.github.com/repos/Xethron/Laravel-4-Generators/zipball/526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  3930. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  3931. "shasum": ""
  3932. },
  3933. "require": {
  3934. "illuminate/support": "~5.0",
  3935. "php": ">=5.4.0"
  3936. },
  3937. "require-dev": {
  3938. "behat/behat": "~2.5.1",
  3939. "behat/mink": "~1.5.0",
  3940. "behat/mink-extension": "~1.2.0",
  3941. "behat/mink-goutte-driver": "~1.0.9",
  3942. "behat/mink-selenium2-driver": "~1.1.1",
  3943. "phpspec/phpspec": "~2.0",
  3944. "phpunit/phpunit": "~3.7"
  3945. },
  3946. "type": "library",
  3947. "autoload": {
  3948. "psr-0": {
  3949. "Way\\Generators": "src/"
  3950. }
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "MIT"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "Jeffrey Way",
  3959. "email": "jeffrey@jeffrey-way.com"
  3960. }
  3961. ],
  3962. "description": "Rapidly generate resources, migrations, models, and much more.",
  3963. "time": "2017-02-23T11:20:49+00:00"
  3964. },
  3965. {
  3966. "name": "xethron/migrations-generator",
  3967. "version": "v2.0.2",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://github.com/Xethron/migrations-generator.git",
  3971. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://api.github.com/repos/Xethron/migrations-generator/zipball/a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  3976. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  3977. "shasum": ""
  3978. },
  3979. "require": {
  3980. "doctrine/dbal": "~2.4",
  3981. "illuminate/support": ">=4.1",
  3982. "php": ">=5.4.0",
  3983. "xethron/laravel-4-generators": "~3.1.0"
  3984. },
  3985. "require-dev": {
  3986. "illuminate/cache": ">=4.1.0",
  3987. "illuminate/console": ">=4.1.0",
  3988. "mockery/mockery": ">=0.9.0",
  3989. "phpunit/phpunit": ">=4.0.0"
  3990. },
  3991. "type": "library",
  3992. "extra": {
  3993. "laravel": {
  3994. "providers": [
  3995. "Way\\Generators\\GeneratorsServiceProvider",
  3996. "Xethron\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
  3997. ]
  3998. }
  3999. },
  4000. "autoload": {
  4001. "psr-0": {
  4002. "Xethron\\MigrationsGenerator": "src/"
  4003. }
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Bernhard Breytenbach",
  4012. "email": "bernhard@coffeecode.co.za"
  4013. }
  4014. ],
  4015. "description": "Generates Laravel Migrations from an existing database",
  4016. "keywords": [
  4017. "artisan",
  4018. "generator",
  4019. "laravel",
  4020. "migration",
  4021. "migrations"
  4022. ],
  4023. "time": "2017-09-19T17:31:57+00:00"
  4024. },
  4025. {
  4026. "name": "yansongda/laravel-pay",
  4027. "version": "v2.0.2",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://github.com/yansongda/laravel-pay.git",
  4031. "reference": "7b2574a62a22e5d777df222f0280c8ea158e5f66"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://api.github.com/repos/yansongda/laravel-pay/zipball/7b2574a62a22e5d777df222f0280c8ea158e5f66",
  4036. "reference": "7b2574a62a22e5d777df222f0280c8ea158e5f66",
  4037. "shasum": ""
  4038. },
  4039. "require": {
  4040. "illuminate/support": "^5.1",
  4041. "yansongda/pay": "^2.0"
  4042. },
  4043. "type": "library",
  4044. "extra": {
  4045. "laravel": {
  4046. "providers": [
  4047. "Yansongda\\LaravelPay\\PayServiceProvider"
  4048. ],
  4049. "aliases": {
  4050. "Pay": "Yansongda\\LaravelPay\\Facades\\Pay"
  4051. }
  4052. }
  4053. },
  4054. "autoload": {
  4055. "psr-4": {
  4056. "Yansongda\\LaravelPay\\": "src"
  4057. }
  4058. },
  4059. "notification-url": "https://packagist.org/downloads/",
  4060. "license": [
  4061. "MIT"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "yansongda",
  4066. "email": "me@yansongda.cn"
  4067. }
  4068. ],
  4069. "description": "专注 Alipay 和 WeChat 的 laravel 支付扩展包",
  4070. "keywords": [
  4071. "alipay",
  4072. "laravel",
  4073. "package",
  4074. "pay",
  4075. "wechat"
  4076. ],
  4077. "time": "2018-09-03T09:09:08+00:00"
  4078. },
  4079. {
  4080. "name": "yansongda/pay",
  4081. "version": "v2.7.6",
  4082. "source": {
  4083. "type": "git",
  4084. "url": "https://github.com/yansongda/pay.git",
  4085. "reference": "65bceb75476d321a6b6f318bae59ac77ea6e8779"
  4086. },
  4087. "dist": {
  4088. "type": "zip",
  4089. "url": "https://api.github.com/repos/yansongda/pay/zipball/65bceb75476d321a6b6f318bae59ac77ea6e8779",
  4090. "reference": "65bceb75476d321a6b6f318bae59ac77ea6e8779",
  4091. "shasum": ""
  4092. },
  4093. "require": {
  4094. "ext-openssl": "*",
  4095. "ext-simplexml": "*",
  4096. "monolog/monolog": "^1.23",
  4097. "php": ">=7.0",
  4098. "symfony/event-dispatcher": "^3.0|^4.0",
  4099. "symfony/http-foundation": "^3.0|^4.0",
  4100. "yansongda/supports": "^1.8"
  4101. },
  4102. "require-dev": {
  4103. "mockery/mockery": "^1.2",
  4104. "phpunit/phpunit": "^6.2"
  4105. },
  4106. "type": "library",
  4107. "autoload": {
  4108. "psr-4": {
  4109. "Yansongda\\Pay\\": "src"
  4110. }
  4111. },
  4112. "notification-url": "https://packagist.org/downloads/",
  4113. "license": [
  4114. "MIT"
  4115. ],
  4116. "authors": [
  4117. {
  4118. "name": "yansongda",
  4119. "email": "me@yansongda.cn"
  4120. }
  4121. ],
  4122. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  4123. "keywords": [
  4124. "alipay",
  4125. "pay",
  4126. "wechat"
  4127. ],
  4128. "time": "2019-05-06T02:31:48+00:00"
  4129. },
  4130. {
  4131. "name": "yansongda/supports",
  4132. "version": "v1.8.9",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/yansongda/supports.git",
  4136. "reference": "27d2692005af9900bc6aa4390bc9bd4a3d6a1fdd"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/yansongda/supports/zipball/27d2692005af9900bc6aa4390bc9bd4a3d6a1fdd",
  4141. "reference": "27d2692005af9900bc6aa4390bc9bd4a3d6a1fdd",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "guzzlehttp/guzzle": "^6.2",
  4146. "monolog/monolog": "^1.23",
  4147. "php": ">=5.5"
  4148. },
  4149. "type": "library",
  4150. "autoload": {
  4151. "psr-4": {
  4152. "Yansongda\\Supports\\": "src/"
  4153. }
  4154. },
  4155. "notification-url": "https://packagist.org/downloads/",
  4156. "license": [
  4157. "MIT"
  4158. ],
  4159. "authors": [
  4160. {
  4161. "name": "yansongda",
  4162. "email": "me@yansongda.cn"
  4163. }
  4164. ],
  4165. "description": "common components",
  4166. "keywords": [
  4167. "Guzzle",
  4168. "array",
  4169. "collection",
  4170. "config",
  4171. "http",
  4172. "support"
  4173. ],
  4174. "time": "2019-05-06T09:29:58+00:00"
  4175. },
  4176. {
  4177. "name": "zgldh/qiniu-laravel-storage",
  4178. "version": "v0.9.4",
  4179. "source": {
  4180. "type": "git",
  4181. "url": "https://github.com/zgldh/qiniu-laravel-storage.git",
  4182. "reference": "671bb4702d4a4d17bc2ba038311b843f7c18aa9c"
  4183. },
  4184. "dist": {
  4185. "type": "zip",
  4186. "url": "https://api.github.com/repos/zgldh/qiniu-laravel-storage/zipball/671bb4702d4a4d17bc2ba038311b843f7c18aa9c",
  4187. "reference": "671bb4702d4a4d17bc2ba038311b843f7c18aa9c",
  4188. "shasum": ""
  4189. },
  4190. "require": {
  4191. "league/flysystem": "^1.0",
  4192. "php": ">=5.3.3",
  4193. "qiniu/php-sdk": "^7.2"
  4194. },
  4195. "type": "library",
  4196. "extra": {
  4197. "laravel": {
  4198. "providers": [
  4199. "zgldh\\QiniuStorage\\QiniuFilesystemServiceProvider"
  4200. ]
  4201. }
  4202. },
  4203. "autoload": {
  4204. "psr-4": {
  4205. "zgldh\\QiniuStorage\\": "src/"
  4206. }
  4207. },
  4208. "notification-url": "https://packagist.org/downloads/",
  4209. "license": [
  4210. "MIT"
  4211. ],
  4212. "authors": [
  4213. {
  4214. "name": "zgldh",
  4215. "email": "zgldh@hotmail.com",
  4216. "role": "Original Developer"
  4217. },
  4218. {
  4219. "name": "abcsun",
  4220. "email": "chenglongsun_nj@163.com",
  4221. "homepage": "http://github.com/abcsun",
  4222. "role": "Developer"
  4223. }
  4224. ],
  4225. "description": "Qiniu Resource (Cloud) Storage SDK for Laravel 5",
  4226. "keywords": [
  4227. "cloud",
  4228. "laravel",
  4229. "qiniu",
  4230. "sdk",
  4231. "storage"
  4232. ],
  4233. "time": "2018-09-03T04:05:13+00:00"
  4234. }
  4235. ],
  4236. "packages-dev": [
  4237. {
  4238. "name": "doctrine/instantiator",
  4239. "version": "1.0.5",
  4240. "source": {
  4241. "type": "git",
  4242. "url": "https://github.com/doctrine/instantiator.git",
  4243. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  4244. },
  4245. "dist": {
  4246. "type": "zip",
  4247. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  4248. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  4249. "shasum": ""
  4250. },
  4251. "require": {
  4252. "php": ">=5.3,<8.0-DEV"
  4253. },
  4254. "require-dev": {
  4255. "athletic/athletic": "~0.1.8",
  4256. "ext-pdo": "*",
  4257. "ext-phar": "*",
  4258. "phpunit/phpunit": "~4.0",
  4259. "squizlabs/php_codesniffer": "~2.0"
  4260. },
  4261. "type": "library",
  4262. "extra": {
  4263. "branch-alias": {
  4264. "dev-master": "1.0.x-dev"
  4265. }
  4266. },
  4267. "autoload": {
  4268. "psr-4": {
  4269. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4270. }
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "MIT"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "Marco Pivetta",
  4279. "email": "ocramius@gmail.com",
  4280. "homepage": "http://ocramius.github.com/"
  4281. }
  4282. ],
  4283. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4284. "homepage": "https://github.com/doctrine/instantiator",
  4285. "keywords": [
  4286. "constructor",
  4287. "instantiate"
  4288. ],
  4289. "time": "2015-06-14T21:17:01+00:00"
  4290. },
  4291. {
  4292. "name": "filp/whoops",
  4293. "version": "2.3.1",
  4294. "source": {
  4295. "type": "git",
  4296. "url": "https://github.com/filp/whoops.git",
  4297. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  4298. },
  4299. "dist": {
  4300. "type": "zip",
  4301. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  4302. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  4303. "shasum": ""
  4304. },
  4305. "require": {
  4306. "php": "^5.5.9 || ^7.0",
  4307. "psr/log": "^1.0.1"
  4308. },
  4309. "require-dev": {
  4310. "mockery/mockery": "^0.9 || ^1.0",
  4311. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4312. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  4313. },
  4314. "suggest": {
  4315. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4316. "whoops/soap": "Formats errors as SOAP responses"
  4317. },
  4318. "type": "library",
  4319. "extra": {
  4320. "branch-alias": {
  4321. "dev-master": "2.2-dev"
  4322. }
  4323. },
  4324. "autoload": {
  4325. "psr-4": {
  4326. "Whoops\\": "src/Whoops/"
  4327. }
  4328. },
  4329. "notification-url": "https://packagist.org/downloads/",
  4330. "license": [
  4331. "MIT"
  4332. ],
  4333. "authors": [
  4334. {
  4335. "name": "Filipe Dobreira",
  4336. "homepage": "https://github.com/filp",
  4337. "role": "Developer"
  4338. }
  4339. ],
  4340. "description": "php error handling for cool kids",
  4341. "homepage": "https://filp.github.io/whoops/",
  4342. "keywords": [
  4343. "error",
  4344. "exception",
  4345. "handling",
  4346. "library",
  4347. "throwable",
  4348. "whoops"
  4349. ],
  4350. "time": "2018-10-23T09:00:00+00:00"
  4351. },
  4352. {
  4353. "name": "fzaninotto/faker",
  4354. "version": "v1.8.0",
  4355. "source": {
  4356. "type": "git",
  4357. "url": "https://github.com/fzaninotto/Faker.git",
  4358. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  4359. },
  4360. "dist": {
  4361. "type": "zip",
  4362. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  4363. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  4364. "shasum": ""
  4365. },
  4366. "require": {
  4367. "php": "^5.3.3 || ^7.0"
  4368. },
  4369. "require-dev": {
  4370. "ext-intl": "*",
  4371. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4372. "squizlabs/php_codesniffer": "^1.5"
  4373. },
  4374. "type": "library",
  4375. "extra": {
  4376. "branch-alias": {
  4377. "dev-master": "1.8-dev"
  4378. }
  4379. },
  4380. "autoload": {
  4381. "psr-4": {
  4382. "Faker\\": "src/Faker/"
  4383. }
  4384. },
  4385. "notification-url": "https://packagist.org/downloads/",
  4386. "license": [
  4387. "MIT"
  4388. ],
  4389. "authors": [
  4390. {
  4391. "name": "François Zaninotto"
  4392. }
  4393. ],
  4394. "description": "Faker is a PHP library that generates fake data for you.",
  4395. "keywords": [
  4396. "data",
  4397. "faker",
  4398. "fixtures"
  4399. ],
  4400. "time": "2018-07-12T10:23:15+00:00"
  4401. },
  4402. {
  4403. "name": "hamcrest/hamcrest-php",
  4404. "version": "v2.0.0",
  4405. "source": {
  4406. "type": "git",
  4407. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4408. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  4409. },
  4410. "dist": {
  4411. "type": "zip",
  4412. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4413. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4414. "shasum": ""
  4415. },
  4416. "require": {
  4417. "php": "^5.3|^7.0"
  4418. },
  4419. "replace": {
  4420. "cordoval/hamcrest-php": "*",
  4421. "davedevelopment/hamcrest-php": "*",
  4422. "kodova/hamcrest-php": "*"
  4423. },
  4424. "require-dev": {
  4425. "phpunit/php-file-iterator": "1.3.3",
  4426. "phpunit/phpunit": "~4.0",
  4427. "satooshi/php-coveralls": "^1.0"
  4428. },
  4429. "type": "library",
  4430. "extra": {
  4431. "branch-alias": {
  4432. "dev-master": "2.0-dev"
  4433. }
  4434. },
  4435. "autoload": {
  4436. "classmap": [
  4437. "hamcrest"
  4438. ]
  4439. },
  4440. "notification-url": "https://packagist.org/downloads/",
  4441. "license": [
  4442. "BSD"
  4443. ],
  4444. "description": "This is the PHP port of Hamcrest Matchers",
  4445. "keywords": [
  4446. "test"
  4447. ],
  4448. "time": "2016-01-20T08:20:44+00:00"
  4449. },
  4450. {
  4451. "name": "mockery/mockery",
  4452. "version": "1.2.2",
  4453. "source": {
  4454. "type": "git",
  4455. "url": "https://github.com/mockery/mockery.git",
  4456. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2"
  4457. },
  4458. "dist": {
  4459. "type": "zip",
  4460. "url": "https://api.github.com/repos/mockery/mockery/zipball/0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  4461. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  4462. "shasum": ""
  4463. },
  4464. "require": {
  4465. "hamcrest/hamcrest-php": "~2.0",
  4466. "lib-pcre": ">=7.0",
  4467. "php": ">=5.6.0"
  4468. },
  4469. "require-dev": {
  4470. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  4471. },
  4472. "type": "library",
  4473. "extra": {
  4474. "branch-alias": {
  4475. "dev-master": "1.0.x-dev"
  4476. }
  4477. },
  4478. "autoload": {
  4479. "psr-0": {
  4480. "Mockery": "library/"
  4481. }
  4482. },
  4483. "notification-url": "https://packagist.org/downloads/",
  4484. "license": [
  4485. "BSD-3-Clause"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "Pádraic Brady",
  4490. "email": "padraic.brady@gmail.com",
  4491. "homepage": "http://blog.astrumfutura.com"
  4492. },
  4493. {
  4494. "name": "Dave Marshall",
  4495. "email": "dave.marshall@atstsolutions.co.uk",
  4496. "homepage": "http://davedevelopment.co.uk"
  4497. }
  4498. ],
  4499. "description": "Mockery is a simple yet flexible PHP mock object framework",
  4500. "homepage": "https://github.com/mockery/mockery",
  4501. "keywords": [
  4502. "BDD",
  4503. "TDD",
  4504. "library",
  4505. "mock",
  4506. "mock objects",
  4507. "mockery",
  4508. "stub",
  4509. "test",
  4510. "test double",
  4511. "testing"
  4512. ],
  4513. "time": "2019-02-13T09:37:52+00:00"
  4514. },
  4515. {
  4516. "name": "myclabs/deep-copy",
  4517. "version": "1.7.0",
  4518. "source": {
  4519. "type": "git",
  4520. "url": "https://github.com/myclabs/DeepCopy.git",
  4521. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  4522. },
  4523. "dist": {
  4524. "type": "zip",
  4525. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  4526. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  4527. "shasum": ""
  4528. },
  4529. "require": {
  4530. "php": "^5.6 || ^7.0"
  4531. },
  4532. "require-dev": {
  4533. "doctrine/collections": "^1.0",
  4534. "doctrine/common": "^2.6",
  4535. "phpunit/phpunit": "^4.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": "2017-10-19T19:58:43+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. }