composer.lock 192 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603
  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": "a65d66d9ce6844a3743c992e74c1c55d",
  8. "packages": [
  9. {
  10. "name": "antoligy/dom-string-iterators",
  11. "version": "v1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/antoligy/dom-string-iterators.git",
  15. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/antoligy/dom-string-iterators/zipball/fae88f66e1970d68c5585fc42db44f1217bf74e6",
  20. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "": "src/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "CC0-1.0"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Alex Wilson",
  39. "email": "a@ax.gy"
  40. },
  41. {
  42. "name": "Kornel Lesinski",
  43. "email": "pornel@pornel.net"
  44. },
  45. {
  46. "name": "Patrick Galbraith",
  47. "email": "patrick.j.galbraith@gmail.com"
  48. }
  49. ],
  50. "description": "Composer package for DOMWordsIterator and DOMLettersIterator",
  51. "time": "2018-02-03T16:01:11+00:00"
  52. },
  53. {
  54. "name": "composer/ca-bundle",
  55. "version": "1.1.4",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/composer/ca-bundle.git",
  59. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  64. "reference": "558f321c52faeb4828c03e7dc0cfe39a09e09a2d",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "ext-openssl": "*",
  69. "ext-pcre": "*",
  70. "php": "^5.3.2 || ^7.0"
  71. },
  72. "require-dev": {
  73. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5",
  74. "psr/log": "^1.0",
  75. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  76. },
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "1.x-dev"
  81. }
  82. },
  83. "autoload": {
  84. "psr-4": {
  85. "Composer\\CaBundle\\": "src"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "MIT"
  91. ],
  92. "authors": [
  93. {
  94. "name": "Jordi Boggiano",
  95. "email": "j.boggiano@seld.be",
  96. "homepage": "http://seld.be"
  97. }
  98. ],
  99. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  100. "keywords": [
  101. "cabundle",
  102. "cacert",
  103. "certificate",
  104. "ssl",
  105. "tls"
  106. ],
  107. "time": "2019-01-28T09:30:10+00:00"
  108. },
  109. {
  110. "name": "doctrine/cache",
  111. "version": "v1.8.0",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/doctrine/cache.git",
  115. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  120. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": "~7.1"
  125. },
  126. "conflict": {
  127. "doctrine/common": ">2.2,<2.4"
  128. },
  129. "require-dev": {
  130. "alcaeus/mongo-php-adapter": "^1.1",
  131. "doctrine/coding-standard": "^4.0",
  132. "mongodb/mongodb": "^1.1",
  133. "phpunit/phpunit": "^7.0",
  134. "predis/predis": "~1.0"
  135. },
  136. "suggest": {
  137. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  138. },
  139. "type": "library",
  140. "extra": {
  141. "branch-alias": {
  142. "dev-master": "1.8.x-dev"
  143. }
  144. },
  145. "autoload": {
  146. "psr-4": {
  147. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  148. }
  149. },
  150. "notification-url": "https://packagist.org/downloads/",
  151. "license": [
  152. "MIT"
  153. ],
  154. "authors": [
  155. {
  156. "name": "Roman Borschel",
  157. "email": "roman@code-factory.org"
  158. },
  159. {
  160. "name": "Benjamin Eberlei",
  161. "email": "kontakt@beberlei.de"
  162. },
  163. {
  164. "name": "Guilherme Blanco",
  165. "email": "guilhermeblanco@gmail.com"
  166. },
  167. {
  168. "name": "Jonathan Wage",
  169. "email": "jonwage@gmail.com"
  170. },
  171. {
  172. "name": "Johannes Schmitt",
  173. "email": "schmittjoh@gmail.com"
  174. }
  175. ],
  176. "description": "Caching library offering an object-oriented API for many cache backends",
  177. "homepage": "https://www.doctrine-project.org",
  178. "keywords": [
  179. "cache",
  180. "caching"
  181. ],
  182. "time": "2018-08-21T18:01:43+00:00"
  183. },
  184. {
  185. "name": "doctrine/collections",
  186. "version": "v1.6.1",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/doctrine/collections.git",
  190. "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/doctrine/collections/zipball/d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
  195. "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956",
  196. "shasum": ""
  197. },
  198. "require": {
  199. "php": "^7.1.3"
  200. },
  201. "require-dev": {
  202. "doctrine/coding-standard": "^6.0",
  203. "phpstan/phpstan-shim": "^0.9.2",
  204. "phpunit/phpunit": "^7.0",
  205. "vimeo/psalm": "^3.2.2"
  206. },
  207. "type": "library",
  208. "extra": {
  209. "branch-alias": {
  210. "dev-master": "1.6.x-dev"
  211. }
  212. },
  213. "autoload": {
  214. "psr-4": {
  215. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  216. }
  217. },
  218. "notification-url": "https://packagist.org/downloads/",
  219. "license": [
  220. "MIT"
  221. ],
  222. "authors": [
  223. {
  224. "name": "Roman Borschel",
  225. "email": "roman@code-factory.org"
  226. },
  227. {
  228. "name": "Benjamin Eberlei",
  229. "email": "kontakt@beberlei.de"
  230. },
  231. {
  232. "name": "Guilherme Blanco",
  233. "email": "guilhermeblanco@gmail.com"
  234. },
  235. {
  236. "name": "Jonathan Wage",
  237. "email": "jonwage@gmail.com"
  238. },
  239. {
  240. "name": "Johannes Schmitt",
  241. "email": "schmittjoh@gmail.com"
  242. }
  243. ],
  244. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  245. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  246. "keywords": [
  247. "array",
  248. "collections",
  249. "iterators",
  250. "php"
  251. ],
  252. "time": "2019-03-25T19:03:48+00:00"
  253. },
  254. {
  255. "name": "donatj/phpuseragentparser",
  256. "version": "v0.13.0",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/donatj/PhpUserAgent.git",
  260. "reference": "5f2da266d2a386f9b231d4344ae37baf7a467c2d"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/5f2da266d2a386f9b231d4344ae37baf7a467c2d",
  265. "reference": "5f2da266d2a386f9b231d4344ae37baf7a467c2d",
  266. "shasum": ""
  267. },
  268. "require": {
  269. "php": ">=5.3.0"
  270. },
  271. "require-dev": {
  272. "camspiers/json-pretty": "0.1.*",
  273. "donatj/drop": "*",
  274. "phpunit/phpunit": "~4.8"
  275. },
  276. "type": "library",
  277. "autoload": {
  278. "files": [
  279. "src/UserAgentParser.php"
  280. ]
  281. },
  282. "notification-url": "https://packagist.org/downloads/",
  283. "license": [
  284. "MIT"
  285. ],
  286. "authors": [
  287. {
  288. "name": "Jesse G. Donat",
  289. "email": "donatj@gmail.com",
  290. "homepage": "http://donatstudios.com",
  291. "role": "Developer"
  292. }
  293. ],
  294. "description": "Lightning fast, minimalist PHP UserAgent string parser.",
  295. "homepage": "http://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  296. "keywords": [
  297. "browser",
  298. "browser detection",
  299. "parser",
  300. "user agent",
  301. "useragent"
  302. ],
  303. "time": "2019-03-08T20:52:23+00:00"
  304. },
  305. {
  306. "name": "dragonmantank/cron-expression",
  307. "version": "v1.2.1",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/dragonmantank/cron-expression.git",
  311. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  316. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": ">=5.3.2"
  321. },
  322. "require-dev": {
  323. "phpunit/phpunit": "~4.0|~5.0"
  324. },
  325. "type": "library",
  326. "autoload": {
  327. "psr-4": {
  328. "Cron\\": "src/Cron/"
  329. }
  330. },
  331. "notification-url": "https://packagist.org/downloads/",
  332. "license": [
  333. "MIT"
  334. ],
  335. "authors": [
  336. {
  337. "name": "Michael Dowling",
  338. "email": "mtdowling@gmail.com",
  339. "homepage": "https://github.com/mtdowling"
  340. }
  341. ],
  342. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  343. "keywords": [
  344. "cron",
  345. "schedule"
  346. ],
  347. "time": "2017-01-23T04:29:33+00:00"
  348. },
  349. {
  350. "name": "erusev/parsedown",
  351. "version": "1.6.4",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/erusev/parsedown.git",
  355. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548",
  360. "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": ">=5.3.0"
  365. },
  366. "require-dev": {
  367. "phpunit/phpunit": "^4.8.35"
  368. },
  369. "type": "library",
  370. "autoload": {
  371. "psr-0": {
  372. "Parsedown": ""
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "MIT"
  378. ],
  379. "authors": [
  380. {
  381. "name": "Emanuil Rusev",
  382. "email": "hello@erusev.com",
  383. "homepage": "http://erusev.com"
  384. }
  385. ],
  386. "description": "Parser for Markdown.",
  387. "homepage": "http://parsedown.org",
  388. "keywords": [
  389. "markdown",
  390. "parser"
  391. ],
  392. "time": "2017-11-14T20:44:03+00:00"
  393. },
  394. {
  395. "name": "erusev/parsedown-extra",
  396. "version": "0.7.1",
  397. "source": {
  398. "type": "git",
  399. "url": "https://github.com/erusev/parsedown-extra.git",
  400. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  401. },
  402. "dist": {
  403. "type": "zip",
  404. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  405. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  406. "shasum": ""
  407. },
  408. "require": {
  409. "erusev/parsedown": "~1.4"
  410. },
  411. "type": "library",
  412. "autoload": {
  413. "psr-0": {
  414. "ParsedownExtra": ""
  415. }
  416. },
  417. "notification-url": "https://packagist.org/downloads/",
  418. "license": [
  419. "MIT"
  420. ],
  421. "authors": [
  422. {
  423. "name": "Emanuil Rusev",
  424. "email": "hello@erusev.com",
  425. "homepage": "http://erusev.com"
  426. }
  427. ],
  428. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  429. "homepage": "https://github.com/erusev/parsedown-extra",
  430. "keywords": [
  431. "markdown",
  432. "markdown extra",
  433. "parsedown",
  434. "parser"
  435. ],
  436. "time": "2015-11-01T10:19:22+00:00"
  437. },
  438. {
  439. "name": "filp/whoops",
  440. "version": "2.3.1",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/filp/whoops.git",
  444. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  449. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "php": "^5.5.9 || ^7.0",
  454. "psr/log": "^1.0.1"
  455. },
  456. "require-dev": {
  457. "mockery/mockery": "^0.9 || ^1.0",
  458. "phpunit/phpunit": "^4.8.35 || ^5.7",
  459. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  460. },
  461. "suggest": {
  462. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  463. "whoops/soap": "Formats errors as SOAP responses"
  464. },
  465. "type": "library",
  466. "extra": {
  467. "branch-alias": {
  468. "dev-master": "2.2-dev"
  469. }
  470. },
  471. "autoload": {
  472. "psr-4": {
  473. "Whoops\\": "src/Whoops/"
  474. }
  475. },
  476. "notification-url": "https://packagist.org/downloads/",
  477. "license": [
  478. "MIT"
  479. ],
  480. "authors": [
  481. {
  482. "name": "Filipe Dobreira",
  483. "homepage": "https://github.com/filp",
  484. "role": "Developer"
  485. }
  486. ],
  487. "description": "php error handling for cool kids",
  488. "homepage": "https://filp.github.io/whoops/",
  489. "keywords": [
  490. "error",
  491. "exception",
  492. "handling",
  493. "library",
  494. "throwable",
  495. "whoops"
  496. ],
  497. "time": "2018-10-23T09:00:00+00:00"
  498. },
  499. {
  500. "name": "gregwar/cache",
  501. "version": "v1.0.12",
  502. "target-dir": "Gregwar/Cache",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/Gregwar/Cache.git",
  506. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/Gregwar/Cache/zipball/305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  511. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  512. "shasum": ""
  513. },
  514. "require": {
  515. "php": ">=5.3"
  516. },
  517. "type": "library",
  518. "autoload": {
  519. "psr-0": {
  520. "Gregwar\\Cache": ""
  521. }
  522. },
  523. "notification-url": "https://packagist.org/downloads/",
  524. "license": [
  525. "MIT"
  526. ],
  527. "authors": [
  528. {
  529. "name": "Gregwar",
  530. "email": "g.passault@gmail.com"
  531. }
  532. ],
  533. "description": "A lightweight file-system cache system",
  534. "keywords": [
  535. "cache",
  536. "caching",
  537. "file-system",
  538. "system"
  539. ],
  540. "time": "2016-09-23T08:16:04+00:00"
  541. },
  542. {
  543. "name": "gregwar/image",
  544. "version": "v2.0.25",
  545. "target-dir": "Gregwar/Image",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/Gregwar/Image.git",
  549. "reference": "03534d5760cbea5c96e6292041ff81a3bb205c36"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/Gregwar/Image/zipball/03534d5760cbea5c96e6292041ff81a3bb205c36",
  554. "reference": "03534d5760cbea5c96e6292041ff81a3bb205c36",
  555. "shasum": ""
  556. },
  557. "require": {
  558. "ext-gd": "*",
  559. "gregwar/cache": "^1.0.6",
  560. "php": "^5.3 || ^7.0"
  561. },
  562. "require-dev": {
  563. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  564. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  565. },
  566. "suggest": {
  567. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  568. },
  569. "type": "library",
  570. "autoload": {
  571. "psr-0": {
  572. "Gregwar\\Image": ""
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Grégoire Passault",
  582. "email": "g.passault@gmail.com",
  583. "homepage": "http://www.gregwar.com/"
  584. }
  585. ],
  586. "description": "Image handling",
  587. "homepage": "https://github.com/Gregwar/Image",
  588. "keywords": [
  589. "gd",
  590. "image"
  591. ],
  592. "time": "2019-03-01T15:55:29+00:00"
  593. },
  594. {
  595. "name": "guzzlehttp/psr7",
  596. "version": "1.5.2",
  597. "source": {
  598. "type": "git",
  599. "url": "https://github.com/guzzle/psr7.git",
  600. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  601. },
  602. "dist": {
  603. "type": "zip",
  604. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  605. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  606. "shasum": ""
  607. },
  608. "require": {
  609. "php": ">=5.4.0",
  610. "psr/http-message": "~1.0",
  611. "ralouphie/getallheaders": "^2.0.5"
  612. },
  613. "provide": {
  614. "psr/http-message-implementation": "1.0"
  615. },
  616. "require-dev": {
  617. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  618. },
  619. "type": "library",
  620. "extra": {
  621. "branch-alias": {
  622. "dev-master": "1.5-dev"
  623. }
  624. },
  625. "autoload": {
  626. "psr-4": {
  627. "GuzzleHttp\\Psr7\\": "src/"
  628. },
  629. "files": [
  630. "src/functions_include.php"
  631. ]
  632. },
  633. "notification-url": "https://packagist.org/downloads/",
  634. "license": [
  635. "MIT"
  636. ],
  637. "authors": [
  638. {
  639. "name": "Michael Dowling",
  640. "email": "mtdowling@gmail.com",
  641. "homepage": "https://github.com/mtdowling"
  642. },
  643. {
  644. "name": "Tobias Schultze",
  645. "homepage": "https://github.com/Tobion"
  646. }
  647. ],
  648. "description": "PSR-7 message implementation that also provides common utility methods",
  649. "keywords": [
  650. "http",
  651. "message",
  652. "psr-7",
  653. "request",
  654. "response",
  655. "stream",
  656. "uri",
  657. "url"
  658. ],
  659. "time": "2018-12-04T20:46:45+00:00"
  660. },
  661. {
  662. "name": "kodus/psr7-server",
  663. "version": "1.0.0",
  664. "source": {
  665. "type": "git",
  666. "url": "https://github.com/kodus/psr7-server.git",
  667. "reference": "7c0e9c72e6cb282bf58e9e73386e4ded26c6ae13"
  668. },
  669. "dist": {
  670. "type": "zip",
  671. "url": "https://api.github.com/repos/kodus/psr7-server/zipball/7c0e9c72e6cb282bf58e9e73386e4ded26c6ae13",
  672. "reference": "7c0e9c72e6cb282bf58e9e73386e4ded26c6ae13",
  673. "shasum": ""
  674. },
  675. "require": {
  676. "php": "^7.1",
  677. "psr/http-factory": "^1.0",
  678. "psr/http-message": "^1.0"
  679. },
  680. "replace": {
  681. "nyholm/psr7-server": "^0.3"
  682. },
  683. "require-dev": {
  684. "nyholm/nsa": "^1.1",
  685. "nyholm/psr7": "^1.0",
  686. "phpunit/phpunit": "^7.0"
  687. },
  688. "type": "library",
  689. "autoload": {
  690. "psr-4": {
  691. "Nyholm\\Psr7Server\\": "src/"
  692. }
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "MIT"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Tobias Nyholm",
  701. "email": "tobias.nyholm@gmail.com"
  702. },
  703. {
  704. "name": "Martijn van der Ven",
  705. "email": "martijn@vanderven.se"
  706. }
  707. ],
  708. "description": "Helper classes to handle PSR-7 server requests",
  709. "homepage": "http://tnyholm.se",
  710. "keywords": [
  711. "psr-17",
  712. "psr-7"
  713. ],
  714. "time": "2018-12-05T09:09:19+00:00"
  715. },
  716. {
  717. "name": "league/climate",
  718. "version": "3.5.0",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/thephpleague/climate.git",
  722. "reference": "0d2fdbf8829f60f6ba6433df68d6f3fe1271b8e6"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/thephpleague/climate/zipball/0d2fdbf8829f60f6ba6433df68d6f3fe1271b8e6",
  727. "reference": "0d2fdbf8829f60f6ba6433df68d6f3fe1271b8e6",
  728. "shasum": ""
  729. },
  730. "require": {
  731. "php": "^7.1",
  732. "psr/log": "^1.0",
  733. "seld/cli-prompt": "^1.0"
  734. },
  735. "require-dev": {
  736. "mikey179/vfsstream": "^1.4",
  737. "mockery/mockery": "^1.0",
  738. "phpunit/phpunit": "^5.7.16"
  739. },
  740. "suggest": {
  741. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "League\\CLImate\\": "src/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Craig Duncan",
  756. "email": "git@duncanc.co.uk",
  757. "homepage": "https://github.com/duncan3dc",
  758. "role": "Developer"
  759. },
  760. {
  761. "name": "Joe Tannenbaum",
  762. "email": "hey@joe.codes",
  763. "homepage": "http://joe.codes/",
  764. "role": "Developer"
  765. }
  766. ],
  767. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  768. "keywords": [
  769. "cli",
  770. "colors",
  771. "command",
  772. "php",
  773. "terminal"
  774. ],
  775. "time": "2019-02-10T18:25:19+00:00"
  776. },
  777. {
  778. "name": "matthiasmullie/minify",
  779. "version": "1.3.61",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/matthiasmullie/minify.git",
  783. "reference": "d5acb8ce5b6acb7d11bafe97cecc533f6e4fd751"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/d5acb8ce5b6acb7d11bafe97cecc533f6e4fd751",
  788. "reference": "d5acb8ce5b6acb7d11bafe97cecc533f6e4fd751",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "ext-pcre": "*",
  793. "matthiasmullie/path-converter": "~1.1",
  794. "php": ">=5.3.0"
  795. },
  796. "require-dev": {
  797. "friendsofphp/php-cs-fixer": "~2.0",
  798. "matthiasmullie/scrapbook": "~1.0",
  799. "phpunit/phpunit": "~4.8"
  800. },
  801. "suggest": {
  802. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  803. },
  804. "bin": [
  805. "bin/minifycss",
  806. "bin/minifyjs"
  807. ],
  808. "type": "library",
  809. "autoload": {
  810. "psr-4": {
  811. "MatthiasMullie\\Minify\\": "src/"
  812. }
  813. },
  814. "notification-url": "https://packagist.org/downloads/",
  815. "license": [
  816. "MIT"
  817. ],
  818. "authors": [
  819. {
  820. "name": "Matthias Mullie",
  821. "email": "minify@mullie.eu",
  822. "homepage": "http://www.mullie.eu",
  823. "role": "Developer"
  824. }
  825. ],
  826. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  827. "homepage": "http://www.minifier.org",
  828. "keywords": [
  829. "JS",
  830. "css",
  831. "javascript",
  832. "minifier",
  833. "minify"
  834. ],
  835. "time": "2018-11-26T23:10:39+00:00"
  836. },
  837. {
  838. "name": "matthiasmullie/path-converter",
  839. "version": "1.1.2",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/matthiasmullie/path-converter.git",
  843. "reference": "5e4b121c8b9f97c80835c1d878b0812ba1d607c9"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/5e4b121c8b9f97c80835c1d878b0812ba1d607c9",
  848. "reference": "5e4b121c8b9f97c80835c1d878b0812ba1d607c9",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "ext-pcre": "*",
  853. "php": ">=5.3.0"
  854. },
  855. "require-dev": {
  856. "phpunit/phpunit": "~4.8"
  857. },
  858. "type": "library",
  859. "autoload": {
  860. "psr-4": {
  861. "MatthiasMullie\\PathConverter\\": "src/"
  862. }
  863. },
  864. "notification-url": "https://packagist.org/downloads/",
  865. "license": [
  866. "MIT"
  867. ],
  868. "authors": [
  869. {
  870. "name": "Matthias Mullie",
  871. "email": "pathconverter@mullie.eu",
  872. "homepage": "http://www.mullie.eu",
  873. "role": "Developer"
  874. }
  875. ],
  876. "description": "Relative path converter",
  877. "homepage": "http://github.com/matthiasmullie/path-converter",
  878. "keywords": [
  879. "converter",
  880. "path",
  881. "paths",
  882. "relative"
  883. ],
  884. "time": "2018-10-25T15:19:41+00:00"
  885. },
  886. {
  887. "name": "maximebf/debugbar",
  888. "version": "v1.15.0",
  889. "source": {
  890. "type": "git",
  891. "url": "https://github.com/maximebf/php-debugbar.git",
  892. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07"
  893. },
  894. "dist": {
  895. "type": "zip",
  896. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  897. "reference": "30e7d60937ee5f1320975ca9bc7bcdd44d500f07",
  898. "shasum": ""
  899. },
  900. "require": {
  901. "php": ">=5.3.0",
  902. "psr/log": "^1.0",
  903. "symfony/var-dumper": "^2.6|^3.0|^4.0"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^4.0|^5.0"
  907. },
  908. "suggest": {
  909. "kriswallsmith/assetic": "The best way to manage assets",
  910. "monolog/monolog": "Log using Monolog",
  911. "predis/predis": "Redis storage"
  912. },
  913. "type": "library",
  914. "extra": {
  915. "branch-alias": {
  916. "dev-master": "1.14-dev"
  917. }
  918. },
  919. "autoload": {
  920. "psr-4": {
  921. "DebugBar\\": "src/DebugBar/"
  922. }
  923. },
  924. "notification-url": "https://packagist.org/downloads/",
  925. "license": [
  926. "MIT"
  927. ],
  928. "authors": [
  929. {
  930. "name": "Maxime Bouroumeau-Fuseau",
  931. "email": "maxime.bouroumeau@gmail.com",
  932. "homepage": "http://maximebf.com"
  933. },
  934. {
  935. "name": "Barry vd. Heuvel",
  936. "email": "barryvdh@gmail.com"
  937. }
  938. ],
  939. "description": "Debug bar in the browser for php application",
  940. "homepage": "https://github.com/maximebf/php-debugbar",
  941. "keywords": [
  942. "debug",
  943. "debugbar"
  944. ],
  945. "time": "2017-12-15T11:13:46+00:00"
  946. },
  947. {
  948. "name": "miljar/php-exif",
  949. "version": "v0.6.4",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/PHPExif/php-exif.git",
  953. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  958. "reference": "361c15b8bc7d5ef26a9492fe537f09c920fe6511",
  959. "shasum": ""
  960. },
  961. "require": {
  962. "php": ">=5.3.0"
  963. },
  964. "require-dev": {
  965. "phpmd/phpmd": "~2.2",
  966. "phpunit/phpunit": "3.7.*",
  967. "satooshi/php-coveralls": "~0.6",
  968. "sebastian/phpcpd": "1.4.*@stable",
  969. "squizlabs/php_codesniffer": "1.4.*@stable"
  970. },
  971. "suggest": {
  972. "ext-exif": "Use exif PHP extension as adapter",
  973. "lib-exiftool": "Use perl lib exiftool as adapter"
  974. },
  975. "type": "library",
  976. "autoload": {
  977. "psr-0": {
  978. "PHPExif": "lib/"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Tom Van Herreweghe",
  988. "homepage": "http://theanalogguy.be",
  989. "role": "Developer"
  990. }
  991. ],
  992. "description": "Object-Oriented EXIF parsing",
  993. "keywords": [
  994. "IPTC",
  995. "exif",
  996. "exiftool",
  997. "jpeg",
  998. "tiff"
  999. ],
  1000. "time": "2018-03-27T10:41:55+00:00"
  1001. },
  1002. {
  1003. "name": "monolog/monolog",
  1004. "version": "1.24.0",
  1005. "source": {
  1006. "type": "git",
  1007. "url": "https://github.com/Seldaek/monolog.git",
  1008. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1009. },
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1013. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1014. "shasum": ""
  1015. },
  1016. "require": {
  1017. "php": ">=5.3.0",
  1018. "psr/log": "~1.0"
  1019. },
  1020. "provide": {
  1021. "psr/log-implementation": "1.0.0"
  1022. },
  1023. "require-dev": {
  1024. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1025. "doctrine/couchdb": "~1.0@dev",
  1026. "graylog2/gelf-php": "~1.0",
  1027. "jakub-onderka/php-parallel-lint": "0.9",
  1028. "php-amqplib/php-amqplib": "~2.4",
  1029. "php-console/php-console": "^3.1.3",
  1030. "phpunit/phpunit": "~4.5",
  1031. "phpunit/phpunit-mock-objects": "2.3.0",
  1032. "ruflin/elastica": ">=0.90 <3.0",
  1033. "sentry/sentry": "^0.13",
  1034. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1035. },
  1036. "suggest": {
  1037. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1038. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1039. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1040. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1041. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1042. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1043. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1044. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1045. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1046. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1047. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1048. },
  1049. "type": "library",
  1050. "extra": {
  1051. "branch-alias": {
  1052. "dev-master": "2.0.x-dev"
  1053. }
  1054. },
  1055. "autoload": {
  1056. "psr-4": {
  1057. "Monolog\\": "src/Monolog"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "Jordi Boggiano",
  1067. "email": "j.boggiano@seld.be",
  1068. "homepage": "http://seld.be"
  1069. }
  1070. ],
  1071. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1072. "homepage": "http://github.com/Seldaek/monolog",
  1073. "keywords": [
  1074. "log",
  1075. "logging",
  1076. "psr-3"
  1077. ],
  1078. "time": "2018-11-05T09:00:11+00:00"
  1079. },
  1080. {
  1081. "name": "nyholm/psr7",
  1082. "version": "1.1.0",
  1083. "source": {
  1084. "type": "git",
  1085. "url": "https://github.com/Nyholm/psr7.git",
  1086. "reference": "701fe7ea8c12c07b985b156d589134d328160cf7"
  1087. },
  1088. "dist": {
  1089. "type": "zip",
  1090. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/701fe7ea8c12c07b985b156d589134d328160cf7",
  1091. "reference": "701fe7ea8c12c07b985b156d589134d328160cf7",
  1092. "shasum": ""
  1093. },
  1094. "require": {
  1095. "php": "^7.1",
  1096. "php-http/message-factory": "^1.0",
  1097. "psr/http-factory": "^1.0",
  1098. "psr/http-message": "^1.0"
  1099. },
  1100. "provide": {
  1101. "psr/http-factory-implementation": "1.0",
  1102. "psr/http-message-implementation": "1.0"
  1103. },
  1104. "require-dev": {
  1105. "http-interop/http-factory-tests": "dev-master",
  1106. "php-http/psr7-integration-tests": "dev-master",
  1107. "phpunit/phpunit": "^7.5"
  1108. },
  1109. "type": "library",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-master": "1.0-dev"
  1113. }
  1114. },
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Nyholm\\Psr7\\": "src/"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Tobias Nyholm",
  1127. "email": "tobias.nyholm@gmail.com"
  1128. },
  1129. {
  1130. "name": "Martijn van der Ven",
  1131. "email": "martijn@vanderven.se"
  1132. }
  1133. ],
  1134. "description": "A fast PHP7 implementation of PSR-7",
  1135. "homepage": "http://tnyholm.se",
  1136. "keywords": [
  1137. "psr-17",
  1138. "psr-7"
  1139. ],
  1140. "time": "2019-02-16T17:20:43+00:00"
  1141. },
  1142. {
  1143. "name": "phive/twig-extensions-deferred",
  1144. "version": "v1.0.2",
  1145. "source": {
  1146. "type": "git",
  1147. "url": "https://github.com/rybakit/twig-deferred-extension.git",
  1148. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f"
  1149. },
  1150. "dist": {
  1151. "type": "zip",
  1152. "url": "https://api.github.com/repos/rybakit/twig-deferred-extension/zipball/5a2426d622afa74034e754ca5ea1d1ff7887627f",
  1153. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f",
  1154. "shasum": ""
  1155. },
  1156. "require": {
  1157. "twig/twig": "~1.18"
  1158. },
  1159. "type": "library",
  1160. "autoload": {
  1161. "psr-4": {
  1162. "Phive\\Twig\\Extensions\\Deferred\\": "src/"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Eugene Leonovich",
  1172. "email": "gen.work@gmail.com"
  1173. }
  1174. ],
  1175. "description": "An extension for Twig that allows to defer block rendering",
  1176. "homepage": "https://github.com/rybakit/twig-extensions-deferred",
  1177. "keywords": [
  1178. "defer",
  1179. "extension",
  1180. "lazy",
  1181. "twig"
  1182. ],
  1183. "time": "2017-03-17T21:39:21+00:00"
  1184. },
  1185. {
  1186. "name": "php-http/message-factory",
  1187. "version": "v1.0.2",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/php-http/message-factory.git",
  1191. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1196. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "php": ">=5.4",
  1201. "psr/http-message": "^1.0"
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "branch-alias": {
  1206. "dev-master": "1.0-dev"
  1207. }
  1208. },
  1209. "autoload": {
  1210. "psr-4": {
  1211. "Http\\Message\\": "src/"
  1212. }
  1213. },
  1214. "notification-url": "https://packagist.org/downloads/",
  1215. "license": [
  1216. "MIT"
  1217. ],
  1218. "authors": [
  1219. {
  1220. "name": "Márk Sági-Kazár",
  1221. "email": "mark.sagikazar@gmail.com"
  1222. }
  1223. ],
  1224. "description": "Factory interfaces for PSR-7 HTTP Message",
  1225. "homepage": "http://php-http.org",
  1226. "keywords": [
  1227. "factory",
  1228. "http",
  1229. "message",
  1230. "stream",
  1231. "uri"
  1232. ],
  1233. "time": "2015-12-19T14:08:53+00:00"
  1234. },
  1235. {
  1236. "name": "pimple/pimple",
  1237. "version": "v3.2.3",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/silexphp/Pimple.git",
  1241. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1246. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "php": ">=5.3.0",
  1251. "psr/container": "^1.0"
  1252. },
  1253. "require-dev": {
  1254. "symfony/phpunit-bridge": "^3.2"
  1255. },
  1256. "type": "library",
  1257. "extra": {
  1258. "branch-alias": {
  1259. "dev-master": "3.2.x-dev"
  1260. }
  1261. },
  1262. "autoload": {
  1263. "psr-0": {
  1264. "Pimple": "src/"
  1265. }
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Fabien Potencier",
  1274. "email": "fabien@symfony.com"
  1275. }
  1276. ],
  1277. "description": "Pimple, a simple Dependency Injection Container",
  1278. "homepage": "http://pimple.sensiolabs.org",
  1279. "keywords": [
  1280. "container",
  1281. "dependency injection"
  1282. ],
  1283. "time": "2018-01-21T07:42:36+00:00"
  1284. },
  1285. {
  1286. "name": "psr/container",
  1287. "version": "1.0.0",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/php-fig/container.git",
  1291. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1296. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "php": ">=5.3.0"
  1301. },
  1302. "type": "library",
  1303. "extra": {
  1304. "branch-alias": {
  1305. "dev-master": "1.0.x-dev"
  1306. }
  1307. },
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Psr\\Container\\": "src/"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "MIT"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "PHP-FIG",
  1320. "homepage": "http://www.php-fig.org/"
  1321. }
  1322. ],
  1323. "description": "Common Container Interface (PHP FIG PSR-11)",
  1324. "homepage": "https://github.com/php-fig/container",
  1325. "keywords": [
  1326. "PSR-11",
  1327. "container",
  1328. "container-interface",
  1329. "container-interop",
  1330. "psr"
  1331. ],
  1332. "time": "2017-02-14T16:28:37+00:00"
  1333. },
  1334. {
  1335. "name": "psr/http-factory",
  1336. "version": "1.0.0",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/php-fig/http-factory.git",
  1340. "reference": "378bfe27931ecc54ff824a20d6f6bfc303bbd04c"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/378bfe27931ecc54ff824a20d6f6bfc303bbd04c",
  1345. "reference": "378bfe27931ecc54ff824a20d6f6bfc303bbd04c",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "php": ">=7.0.0",
  1350. "psr/http-message": "^1.0"
  1351. },
  1352. "type": "library",
  1353. "extra": {
  1354. "branch-alias": {
  1355. "dev-master": "1.0.x-dev"
  1356. }
  1357. },
  1358. "autoload": {
  1359. "psr-4": {
  1360. "Psr\\Http\\Message\\": "src/"
  1361. }
  1362. },
  1363. "notification-url": "https://packagist.org/downloads/",
  1364. "license": [
  1365. "MIT"
  1366. ],
  1367. "authors": [
  1368. {
  1369. "name": "PHP-FIG",
  1370. "homepage": "http://www.php-fig.org/"
  1371. }
  1372. ],
  1373. "description": "Common interfaces for PSR-7 HTTP message factories",
  1374. "keywords": [
  1375. "factory",
  1376. "http",
  1377. "message",
  1378. "psr",
  1379. "psr-17",
  1380. "psr-7",
  1381. "request",
  1382. "response"
  1383. ],
  1384. "time": "2018-07-30T21:54:04+00:00"
  1385. },
  1386. {
  1387. "name": "psr/http-message",
  1388. "version": "1.0.1",
  1389. "source": {
  1390. "type": "git",
  1391. "url": "https://github.com/php-fig/http-message.git",
  1392. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1393. },
  1394. "dist": {
  1395. "type": "zip",
  1396. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1397. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1398. "shasum": ""
  1399. },
  1400. "require": {
  1401. "php": ">=5.3.0"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "1.0.x-dev"
  1407. }
  1408. },
  1409. "autoload": {
  1410. "psr-4": {
  1411. "Psr\\Http\\Message\\": "src/"
  1412. }
  1413. },
  1414. "notification-url": "https://packagist.org/downloads/",
  1415. "license": [
  1416. "MIT"
  1417. ],
  1418. "authors": [
  1419. {
  1420. "name": "PHP-FIG",
  1421. "homepage": "http://www.php-fig.org/"
  1422. }
  1423. ],
  1424. "description": "Common interface for HTTP messages",
  1425. "homepage": "https://github.com/php-fig/http-message",
  1426. "keywords": [
  1427. "http",
  1428. "http-message",
  1429. "psr",
  1430. "psr-7",
  1431. "request",
  1432. "response"
  1433. ],
  1434. "time": "2016-08-06T14:39:51+00:00"
  1435. },
  1436. {
  1437. "name": "psr/http-server-handler",
  1438. "version": "1.0.1",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/php-fig/http-server-handler.git",
  1442. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1447. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "php": ">=7.0",
  1452. "psr/http-message": "^1.0"
  1453. },
  1454. "type": "library",
  1455. "extra": {
  1456. "branch-alias": {
  1457. "dev-master": "1.0.x-dev"
  1458. }
  1459. },
  1460. "autoload": {
  1461. "psr-4": {
  1462. "Psr\\Http\\Server\\": "src/"
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "MIT"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "PHP-FIG",
  1472. "homepage": "http://www.php-fig.org/"
  1473. }
  1474. ],
  1475. "description": "Common interface for HTTP server-side request handler",
  1476. "keywords": [
  1477. "handler",
  1478. "http",
  1479. "http-interop",
  1480. "psr",
  1481. "psr-15",
  1482. "psr-7",
  1483. "request",
  1484. "response",
  1485. "server"
  1486. ],
  1487. "time": "2018-10-30T16:46:14+00:00"
  1488. },
  1489. {
  1490. "name": "psr/http-server-middleware",
  1491. "version": "1.0.1",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/php-fig/http-server-middleware.git",
  1495. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1500. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1501. "shasum": ""
  1502. },
  1503. "require": {
  1504. "php": ">=7.0",
  1505. "psr/http-message": "^1.0",
  1506. "psr/http-server-handler": "^1.0"
  1507. },
  1508. "type": "library",
  1509. "extra": {
  1510. "branch-alias": {
  1511. "dev-master": "1.0.x-dev"
  1512. }
  1513. },
  1514. "autoload": {
  1515. "psr-4": {
  1516. "Psr\\Http\\Server\\": "src/"
  1517. }
  1518. },
  1519. "notification-url": "https://packagist.org/downloads/",
  1520. "license": [
  1521. "MIT"
  1522. ],
  1523. "authors": [
  1524. {
  1525. "name": "PHP-FIG",
  1526. "homepage": "http://www.php-fig.org/"
  1527. }
  1528. ],
  1529. "description": "Common interface for HTTP server-side middleware",
  1530. "keywords": [
  1531. "http",
  1532. "http-interop",
  1533. "middleware",
  1534. "psr",
  1535. "psr-15",
  1536. "psr-7",
  1537. "request",
  1538. "response"
  1539. ],
  1540. "time": "2018-10-30T17:12:04+00:00"
  1541. },
  1542. {
  1543. "name": "psr/log",
  1544. "version": "1.1.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/php-fig/log.git",
  1548. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1553. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": ">=5.3.0"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "1.0.x-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Psr\\Log\\": "Psr/Log/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "PHP-FIG",
  1577. "homepage": "http://www.php-fig.org/"
  1578. }
  1579. ],
  1580. "description": "Common interface for logging libraries",
  1581. "homepage": "https://github.com/php-fig/log",
  1582. "keywords": [
  1583. "log",
  1584. "psr",
  1585. "psr-3"
  1586. ],
  1587. "time": "2018-11-20T15:27:04+00:00"
  1588. },
  1589. {
  1590. "name": "psr/simple-cache",
  1591. "version": "1.0.1",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/php-fig/simple-cache.git",
  1595. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1600. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1601. "shasum": ""
  1602. },
  1603. "require": {
  1604. "php": ">=5.3.0"
  1605. },
  1606. "type": "library",
  1607. "extra": {
  1608. "branch-alias": {
  1609. "dev-master": "1.0.x-dev"
  1610. }
  1611. },
  1612. "autoload": {
  1613. "psr-4": {
  1614. "Psr\\SimpleCache\\": "src/"
  1615. }
  1616. },
  1617. "notification-url": "https://packagist.org/downloads/",
  1618. "license": [
  1619. "MIT"
  1620. ],
  1621. "authors": [
  1622. {
  1623. "name": "PHP-FIG",
  1624. "homepage": "http://www.php-fig.org/"
  1625. }
  1626. ],
  1627. "description": "Common interfaces for simple caching",
  1628. "keywords": [
  1629. "cache",
  1630. "caching",
  1631. "psr",
  1632. "psr-16",
  1633. "simple-cache"
  1634. ],
  1635. "time": "2017-10-23T01:57:42+00:00"
  1636. },
  1637. {
  1638. "name": "ralouphie/getallheaders",
  1639. "version": "2.0.5",
  1640. "source": {
  1641. "type": "git",
  1642. "url": "https://github.com/ralouphie/getallheaders.git",
  1643. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  1644. },
  1645. "dist": {
  1646. "type": "zip",
  1647. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1648. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1649. "shasum": ""
  1650. },
  1651. "require": {
  1652. "php": ">=5.3"
  1653. },
  1654. "require-dev": {
  1655. "phpunit/phpunit": "~3.7.0",
  1656. "satooshi/php-coveralls": ">=1.0"
  1657. },
  1658. "type": "library",
  1659. "autoload": {
  1660. "files": [
  1661. "src/getallheaders.php"
  1662. ]
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "Ralph Khattar",
  1671. "email": "ralph.khattar@gmail.com"
  1672. }
  1673. ],
  1674. "description": "A polyfill for getallheaders.",
  1675. "time": "2016-02-11T07:05:27+00:00"
  1676. },
  1677. {
  1678. "name": "rockettheme/toolbox",
  1679. "version": "1.4.6",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/rockettheme/toolbox.git",
  1683. "reference": "e7010c2a956aff241dfa100ab8aef5b6cf83892a"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/e7010c2a956aff241dfa100ab8aef5b6cf83892a",
  1688. "reference": "e7010c2a956aff241dfa100ab8aef5b6cf83892a",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "ext-json": "*",
  1693. "php": ">=5.4.0",
  1694. "pimple/pimple": "~3.0",
  1695. "symfony/event-dispatcher": ">2.5",
  1696. "symfony/yaml": ">2.5"
  1697. },
  1698. "require-dev": {
  1699. "phpunit/phpunit": "~6"
  1700. },
  1701. "type": "library",
  1702. "autoload": {
  1703. "psr-4": {
  1704. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  1705. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  1706. "RocketTheme\\Toolbox\\Compat\\": "Compat/src",
  1707. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  1708. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  1709. "RocketTheme\\Toolbox\\File\\": "File/src",
  1710. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src",
  1711. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  1712. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src"
  1713. }
  1714. },
  1715. "notification-url": "https://packagist.org/downloads/",
  1716. "license": [
  1717. "MIT"
  1718. ],
  1719. "description": "RocketTheme Toolbox Library",
  1720. "homepage": "http://www.rockettheme.com",
  1721. "keywords": [
  1722. "php",
  1723. "rockettheme"
  1724. ],
  1725. "time": "2019-03-20T19:59:17+00:00"
  1726. },
  1727. {
  1728. "name": "seld/cli-prompt",
  1729. "version": "1.0.3",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/Seldaek/cli-prompt.git",
  1733. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1738. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1739. "shasum": ""
  1740. },
  1741. "require": {
  1742. "php": ">=5.3"
  1743. },
  1744. "type": "library",
  1745. "extra": {
  1746. "branch-alias": {
  1747. "dev-master": "1.x-dev"
  1748. }
  1749. },
  1750. "autoload": {
  1751. "psr-4": {
  1752. "Seld\\CliPrompt\\": "src/"
  1753. }
  1754. },
  1755. "notification-url": "https://packagist.org/downloads/",
  1756. "license": [
  1757. "MIT"
  1758. ],
  1759. "authors": [
  1760. {
  1761. "name": "Jordi Boggiano",
  1762. "email": "j.boggiano@seld.be"
  1763. }
  1764. ],
  1765. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  1766. "keywords": [
  1767. "cli",
  1768. "console",
  1769. "hidden",
  1770. "input",
  1771. "prompt"
  1772. ],
  1773. "time": "2017-03-18T11:32:45+00:00"
  1774. },
  1775. {
  1776. "name": "symfony/console",
  1777. "version": "v4.2.7",
  1778. "source": {
  1779. "type": "git",
  1780. "url": "https://github.com/symfony/console.git",
  1781. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81"
  1782. },
  1783. "dist": {
  1784. "type": "zip",
  1785. "url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  1786. "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81",
  1787. "shasum": ""
  1788. },
  1789. "require": {
  1790. "php": "^7.1.3",
  1791. "symfony/contracts": "^1.0",
  1792. "symfony/polyfill-mbstring": "~1.0"
  1793. },
  1794. "conflict": {
  1795. "symfony/dependency-injection": "<3.4",
  1796. "symfony/process": "<3.3"
  1797. },
  1798. "provide": {
  1799. "psr/log-implementation": "1.0"
  1800. },
  1801. "require-dev": {
  1802. "psr/log": "~1.0",
  1803. "symfony/config": "~3.4|~4.0",
  1804. "symfony/dependency-injection": "~3.4|~4.0",
  1805. "symfony/event-dispatcher": "~3.4|~4.0",
  1806. "symfony/lock": "~3.4|~4.0",
  1807. "symfony/process": "~3.4|~4.0"
  1808. },
  1809. "suggest": {
  1810. "psr/log": "For using the console logger",
  1811. "symfony/event-dispatcher": "",
  1812. "symfony/lock": "",
  1813. "symfony/process": ""
  1814. },
  1815. "type": "library",
  1816. "extra": {
  1817. "branch-alias": {
  1818. "dev-master": "4.2-dev"
  1819. }
  1820. },
  1821. "autoload": {
  1822. "psr-4": {
  1823. "Symfony\\Component\\Console\\": ""
  1824. },
  1825. "exclude-from-classmap": [
  1826. "/Tests/"
  1827. ]
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Fabien Potencier",
  1836. "email": "fabien@symfony.com"
  1837. },
  1838. {
  1839. "name": "Symfony Community",
  1840. "homepage": "https://symfony.com/contributors"
  1841. }
  1842. ],
  1843. "description": "Symfony Console Component",
  1844. "homepage": "https://symfony.com",
  1845. "time": "2019-04-08T14:23:48+00:00"
  1846. },
  1847. {
  1848. "name": "symfony/contracts",
  1849. "version": "v1.0.2",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://github.com/symfony/contracts.git",
  1853. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  1858. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  1859. "shasum": ""
  1860. },
  1861. "require": {
  1862. "php": "^7.1.3"
  1863. },
  1864. "require-dev": {
  1865. "psr/cache": "^1.0",
  1866. "psr/container": "^1.0"
  1867. },
  1868. "suggest": {
  1869. "psr/cache": "When using the Cache contracts",
  1870. "psr/container": "When using the Service contracts",
  1871. "symfony/cache-contracts-implementation": "",
  1872. "symfony/service-contracts-implementation": "",
  1873. "symfony/translation-contracts-implementation": ""
  1874. },
  1875. "type": "library",
  1876. "extra": {
  1877. "branch-alias": {
  1878. "dev-master": "1.0-dev"
  1879. }
  1880. },
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Symfony\\Contracts\\": ""
  1884. },
  1885. "exclude-from-classmap": [
  1886. "**/Tests/"
  1887. ]
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "Nicolas Grekas",
  1896. "email": "p@tchwork.com"
  1897. },
  1898. {
  1899. "name": "Symfony Community",
  1900. "homepage": "https://symfony.com/contributors"
  1901. }
  1902. ],
  1903. "description": "A set of abstractions extracted out of the Symfony components",
  1904. "homepage": "https://symfony.com",
  1905. "keywords": [
  1906. "abstractions",
  1907. "contracts",
  1908. "decoupling",
  1909. "interfaces",
  1910. "interoperability",
  1911. "standards"
  1912. ],
  1913. "time": "2018-12-05T08:06:11+00:00"
  1914. },
  1915. {
  1916. "name": "symfony/event-dispatcher",
  1917. "version": "v4.2.7",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/symfony/event-dispatcher.git",
  1921. "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/fbce53cd74ac509cbe74b6f227622650ab759b02",
  1926. "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02",
  1927. "shasum": ""
  1928. },
  1929. "require": {
  1930. "php": "^7.1.3",
  1931. "symfony/contracts": "^1.0"
  1932. },
  1933. "conflict": {
  1934. "symfony/dependency-injection": "<3.4"
  1935. },
  1936. "require-dev": {
  1937. "psr/log": "~1.0",
  1938. "symfony/config": "~3.4|~4.0",
  1939. "symfony/dependency-injection": "~3.4|~4.0",
  1940. "symfony/expression-language": "~3.4|~4.0",
  1941. "symfony/stopwatch": "~3.4|~4.0"
  1942. },
  1943. "suggest": {
  1944. "symfony/dependency-injection": "",
  1945. "symfony/http-kernel": ""
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "4.2-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Symfony\\Component\\EventDispatcher\\": ""
  1956. },
  1957. "exclude-from-classmap": [
  1958. "/Tests/"
  1959. ]
  1960. },
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "MIT"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Fabien Potencier",
  1968. "email": "fabien@symfony.com"
  1969. },
  1970. {
  1971. "name": "Symfony Community",
  1972. "homepage": "https://symfony.com/contributors"
  1973. }
  1974. ],
  1975. "description": "Symfony EventDispatcher Component",
  1976. "homepage": "https://symfony.com",
  1977. "time": "2019-04-06T13:51:08+00:00"
  1978. },
  1979. {
  1980. "name": "symfony/polyfill-ctype",
  1981. "version": "v1.11.0",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://github.com/symfony/polyfill-ctype.git",
  1985. "reference": "82ebae02209c21113908c229e9883c419720738a"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  1990. "reference": "82ebae02209c21113908c229e9883c419720738a",
  1991. "shasum": ""
  1992. },
  1993. "require": {
  1994. "php": ">=5.3.3"
  1995. },
  1996. "suggest": {
  1997. "ext-ctype": "For best performance"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "1.11-dev"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "psr-4": {
  2007. "Symfony\\Polyfill\\Ctype\\": ""
  2008. },
  2009. "files": [
  2010. "bootstrap.php"
  2011. ]
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Symfony Community",
  2020. "homepage": "https://symfony.com/contributors"
  2021. },
  2022. {
  2023. "name": "Gert de Pagter",
  2024. "email": "backendtea@gmail.com"
  2025. }
  2026. ],
  2027. "description": "Symfony polyfill for ctype functions",
  2028. "homepage": "https://symfony.com",
  2029. "keywords": [
  2030. "compatibility",
  2031. "ctype",
  2032. "polyfill",
  2033. "portable"
  2034. ],
  2035. "time": "2019-02-06T07:57:58+00:00"
  2036. },
  2037. {
  2038. "name": "symfony/polyfill-iconv",
  2039. "version": "v1.11.0",
  2040. "source": {
  2041. "type": "git",
  2042. "url": "https://github.com/symfony/polyfill-iconv.git",
  2043. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  2044. },
  2045. "dist": {
  2046. "type": "zip",
  2047. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  2048. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  2049. "shasum": ""
  2050. },
  2051. "require": {
  2052. "php": ">=5.3.3"
  2053. },
  2054. "suggest": {
  2055. "ext-iconv": "For best performance"
  2056. },
  2057. "type": "library",
  2058. "extra": {
  2059. "branch-alias": {
  2060. "dev-master": "1.11-dev"
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Symfony\\Polyfill\\Iconv\\": ""
  2066. },
  2067. "files": [
  2068. "bootstrap.php"
  2069. ]
  2070. },
  2071. "notification-url": "https://packagist.org/downloads/",
  2072. "license": [
  2073. "MIT"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Nicolas Grekas",
  2078. "email": "p@tchwork.com"
  2079. },
  2080. {
  2081. "name": "Symfony Community",
  2082. "homepage": "https://symfony.com/contributors"
  2083. }
  2084. ],
  2085. "description": "Symfony polyfill for the Iconv extension",
  2086. "homepage": "https://symfony.com",
  2087. "keywords": [
  2088. "compatibility",
  2089. "iconv",
  2090. "polyfill",
  2091. "portable",
  2092. "shim"
  2093. ],
  2094. "time": "2019-02-06T07:57:58+00:00"
  2095. },
  2096. {
  2097. "name": "symfony/polyfill-mbstring",
  2098. "version": "v1.11.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2102. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  2107. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  2108. "shasum": ""
  2109. },
  2110. "require": {
  2111. "php": ">=5.3.3"
  2112. },
  2113. "suggest": {
  2114. "ext-mbstring": "For best performance"
  2115. },
  2116. "type": "library",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-master": "1.11-dev"
  2120. }
  2121. },
  2122. "autoload": {
  2123. "psr-4": {
  2124. "Symfony\\Polyfill\\Mbstring\\": ""
  2125. },
  2126. "files": [
  2127. "bootstrap.php"
  2128. ]
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "MIT"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "Nicolas Grekas",
  2137. "email": "p@tchwork.com"
  2138. },
  2139. {
  2140. "name": "Symfony Community",
  2141. "homepage": "https://symfony.com/contributors"
  2142. }
  2143. ],
  2144. "description": "Symfony polyfill for the Mbstring extension",
  2145. "homepage": "https://symfony.com",
  2146. "keywords": [
  2147. "compatibility",
  2148. "mbstring",
  2149. "polyfill",
  2150. "portable",
  2151. "shim"
  2152. ],
  2153. "time": "2019-02-06T07:57:58+00:00"
  2154. },
  2155. {
  2156. "name": "symfony/polyfill-php72",
  2157. "version": "v1.11.0",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/symfony/polyfill-php72.git",
  2161. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2166. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "php": ">=5.3.3"
  2171. },
  2172. "type": "library",
  2173. "extra": {
  2174. "branch-alias": {
  2175. "dev-master": "1.11-dev"
  2176. }
  2177. },
  2178. "autoload": {
  2179. "psr-4": {
  2180. "Symfony\\Polyfill\\Php72\\": ""
  2181. },
  2182. "files": [
  2183. "bootstrap.php"
  2184. ]
  2185. },
  2186. "notification-url": "https://packagist.org/downloads/",
  2187. "license": [
  2188. "MIT"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "Nicolas Grekas",
  2193. "email": "p@tchwork.com"
  2194. },
  2195. {
  2196. "name": "Symfony Community",
  2197. "homepage": "https://symfony.com/contributors"
  2198. }
  2199. ],
  2200. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2201. "homepage": "https://symfony.com",
  2202. "keywords": [
  2203. "compatibility",
  2204. "polyfill",
  2205. "portable",
  2206. "shim"
  2207. ],
  2208. "time": "2019-02-06T07:57:58+00:00"
  2209. },
  2210. {
  2211. "name": "symfony/polyfill-php73",
  2212. "version": "v1.11.0",
  2213. "source": {
  2214. "type": "git",
  2215. "url": "https://github.com/symfony/polyfill-php73.git",
  2216. "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd"
  2217. },
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/d1fb4abcc0c47be136208ad9d68bf59f1ee17abd",
  2221. "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd",
  2222. "shasum": ""
  2223. },
  2224. "require": {
  2225. "php": ">=5.3.3"
  2226. },
  2227. "type": "library",
  2228. "extra": {
  2229. "branch-alias": {
  2230. "dev-master": "1.11-dev"
  2231. }
  2232. },
  2233. "autoload": {
  2234. "psr-4": {
  2235. "Symfony\\Polyfill\\Php73\\": ""
  2236. },
  2237. "files": [
  2238. "bootstrap.php"
  2239. ],
  2240. "classmap": [
  2241. "Resources/stubs"
  2242. ]
  2243. },
  2244. "notification-url": "https://packagist.org/downloads/",
  2245. "license": [
  2246. "MIT"
  2247. ],
  2248. "authors": [
  2249. {
  2250. "name": "Nicolas Grekas",
  2251. "email": "p@tchwork.com"
  2252. },
  2253. {
  2254. "name": "Symfony Community",
  2255. "homepage": "https://symfony.com/contributors"
  2256. }
  2257. ],
  2258. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2259. "homepage": "https://symfony.com",
  2260. "keywords": [
  2261. "compatibility",
  2262. "polyfill",
  2263. "portable",
  2264. "shim"
  2265. ],
  2266. "time": "2019-02-06T07:57:58+00:00"
  2267. },
  2268. {
  2269. "name": "symfony/process",
  2270. "version": "v4.2.7",
  2271. "source": {
  2272. "type": "git",
  2273. "url": "https://github.com/symfony/process.git",
  2274. "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe"
  2275. },
  2276. "dist": {
  2277. "type": "zip",
  2278. "url": "https://api.github.com/repos/symfony/process/zipball/8cf39fb4ccff793340c258ee7760fd40bfe745fe",
  2279. "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe",
  2280. "shasum": ""
  2281. },
  2282. "require": {
  2283. "php": "^7.1.3"
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-master": "4.2-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "Symfony\\Component\\Process\\": ""
  2294. },
  2295. "exclude-from-classmap": [
  2296. "/Tests/"
  2297. ]
  2298. },
  2299. "notification-url": "https://packagist.org/downloads/",
  2300. "license": [
  2301. "MIT"
  2302. ],
  2303. "authors": [
  2304. {
  2305. "name": "Fabien Potencier",
  2306. "email": "fabien@symfony.com"
  2307. },
  2308. {
  2309. "name": "Symfony Community",
  2310. "homepage": "https://symfony.com/contributors"
  2311. }
  2312. ],
  2313. "description": "Symfony Process Component",
  2314. "homepage": "https://symfony.com",
  2315. "time": "2019-04-10T16:20:36+00:00"
  2316. },
  2317. {
  2318. "name": "symfony/var-dumper",
  2319. "version": "v4.2.7",
  2320. "source": {
  2321. "type": "git",
  2322. "url": "https://github.com/symfony/var-dumper.git",
  2323. "reference": "e760a38e12b15032325e64be63f7ffc1817af617"
  2324. },
  2325. "dist": {
  2326. "type": "zip",
  2327. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e760a38e12b15032325e64be63f7ffc1817af617",
  2328. "reference": "e760a38e12b15032325e64be63f7ffc1817af617",
  2329. "shasum": ""
  2330. },
  2331. "require": {
  2332. "php": "^7.1.3",
  2333. "symfony/polyfill-mbstring": "~1.0",
  2334. "symfony/polyfill-php72": "~1.5"
  2335. },
  2336. "conflict": {
  2337. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2338. "symfony/console": "<3.4"
  2339. },
  2340. "require-dev": {
  2341. "ext-iconv": "*",
  2342. "symfony/console": "~3.4|~4.0",
  2343. "symfony/process": "~3.4|~4.0",
  2344. "twig/twig": "~1.34|~2.4"
  2345. },
  2346. "suggest": {
  2347. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2348. "ext-intl": "To show region name in time zone dump",
  2349. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2350. },
  2351. "bin": [
  2352. "Resources/bin/var-dump-server"
  2353. ],
  2354. "type": "library",
  2355. "extra": {
  2356. "branch-alias": {
  2357. "dev-master": "4.2-dev"
  2358. }
  2359. },
  2360. "autoload": {
  2361. "files": [
  2362. "Resources/functions/dump.php"
  2363. ],
  2364. "psr-4": {
  2365. "Symfony\\Component\\VarDumper\\": ""
  2366. },
  2367. "exclude-from-classmap": [
  2368. "/Tests/"
  2369. ]
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Nicolas Grekas",
  2378. "email": "p@tchwork.com"
  2379. },
  2380. {
  2381. "name": "Symfony Community",
  2382. "homepage": "https://symfony.com/contributors"
  2383. }
  2384. ],
  2385. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2386. "homepage": "https://symfony.com",
  2387. "keywords": [
  2388. "debug",
  2389. "dump"
  2390. ],
  2391. "time": "2019-04-17T14:57:01+00:00"
  2392. },
  2393. {
  2394. "name": "symfony/yaml",
  2395. "version": "v4.2.7",
  2396. "source": {
  2397. "type": "git",
  2398. "url": "https://github.com/symfony/yaml.git",
  2399. "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1"
  2400. },
  2401. "dist": {
  2402. "type": "zip",
  2403. "url": "https://api.github.com/repos/symfony/yaml/zipball/6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
  2404. "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1",
  2405. "shasum": ""
  2406. },
  2407. "require": {
  2408. "php": "^7.1.3",
  2409. "symfony/polyfill-ctype": "~1.8"
  2410. },
  2411. "conflict": {
  2412. "symfony/console": "<3.4"
  2413. },
  2414. "require-dev": {
  2415. "symfony/console": "~3.4|~4.0"
  2416. },
  2417. "suggest": {
  2418. "symfony/console": "For validating YAML files using the lint command"
  2419. },
  2420. "type": "library",
  2421. "extra": {
  2422. "branch-alias": {
  2423. "dev-master": "4.2-dev"
  2424. }
  2425. },
  2426. "autoload": {
  2427. "psr-4": {
  2428. "Symfony\\Component\\Yaml\\": ""
  2429. },
  2430. "exclude-from-classmap": [
  2431. "/Tests/"
  2432. ]
  2433. },
  2434. "notification-url": "https://packagist.org/downloads/",
  2435. "license": [
  2436. "MIT"
  2437. ],
  2438. "authors": [
  2439. {
  2440. "name": "Fabien Potencier",
  2441. "email": "fabien@symfony.com"
  2442. },
  2443. {
  2444. "name": "Symfony Community",
  2445. "homepage": "https://symfony.com/contributors"
  2446. }
  2447. ],
  2448. "description": "Symfony Yaml Component",
  2449. "homepage": "https://symfony.com",
  2450. "time": "2019-03-30T15:58:42+00:00"
  2451. },
  2452. {
  2453. "name": "twig/twig",
  2454. "version": "v1.39.1",
  2455. "source": {
  2456. "type": "git",
  2457. "url": "https://github.com/twigphp/Twig.git",
  2458. "reference": "23e7b6f0cfa1d7ba3de69f30d8e05cf957412fec"
  2459. },
  2460. "dist": {
  2461. "type": "zip",
  2462. "url": "https://api.github.com/repos/twigphp/Twig/zipball/23e7b6f0cfa1d7ba3de69f30d8e05cf957412fec",
  2463. "reference": "23e7b6f0cfa1d7ba3de69f30d8e05cf957412fec",
  2464. "shasum": ""
  2465. },
  2466. "require": {
  2467. "php": ">=5.4.0",
  2468. "symfony/polyfill-ctype": "^1.8"
  2469. },
  2470. "require-dev": {
  2471. "psr/container": "^1.0",
  2472. "symfony/debug": "^2.7",
  2473. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2474. },
  2475. "type": "library",
  2476. "extra": {
  2477. "branch-alias": {
  2478. "dev-master": "1.39-dev"
  2479. }
  2480. },
  2481. "autoload": {
  2482. "psr-0": {
  2483. "Twig_": "lib/"
  2484. },
  2485. "psr-4": {
  2486. "Twig\\": "src/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "BSD-3-Clause"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Fabien Potencier",
  2496. "email": "fabien@symfony.com",
  2497. "homepage": "http://fabien.potencier.org",
  2498. "role": "Lead Developer"
  2499. },
  2500. {
  2501. "name": "Armin Ronacher",
  2502. "email": "armin.ronacher@active-4.com",
  2503. "role": "Project Founder"
  2504. },
  2505. {
  2506. "name": "Twig Team",
  2507. "homepage": "https://twig.symfony.com/contributors",
  2508. "role": "Contributors"
  2509. }
  2510. ],
  2511. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2512. "homepage": "https://twig.symfony.com",
  2513. "keywords": [
  2514. "templating"
  2515. ],
  2516. "time": "2019-04-16T17:12:57+00:00"
  2517. },
  2518. {
  2519. "name": "willdurand/negotiation",
  2520. "version": "v2.3.1",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://github.com/willdurand/Negotiation.git",
  2524. "reference": "03436ededa67c6e83b9b12defac15384cb399dc9"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/03436ededa67c6e83b9b12defac15384cb399dc9",
  2529. "reference": "03436ededa67c6e83b9b12defac15384cb399dc9",
  2530. "shasum": ""
  2531. },
  2532. "require": {
  2533. "php": ">=5.4.0"
  2534. },
  2535. "require-dev": {
  2536. "phpunit/phpunit": "~4.5"
  2537. },
  2538. "type": "library",
  2539. "extra": {
  2540. "branch-alias": {
  2541. "dev-master": "2.3-dev"
  2542. }
  2543. },
  2544. "autoload": {
  2545. "psr-4": {
  2546. "Negotiation\\": "src/Negotiation"
  2547. }
  2548. },
  2549. "notification-url": "https://packagist.org/downloads/",
  2550. "license": [
  2551. "MIT"
  2552. ],
  2553. "authors": [
  2554. {
  2555. "name": "William Durand",
  2556. "email": "will+git@drnd.me"
  2557. }
  2558. ],
  2559. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  2560. "homepage": "http://williamdurand.fr/Negotiation/",
  2561. "keywords": [
  2562. "accept",
  2563. "content",
  2564. "format",
  2565. "header",
  2566. "negotiation"
  2567. ],
  2568. "time": "2017-05-14T17:21:12+00:00"
  2569. }
  2570. ],
  2571. "packages-dev": [
  2572. {
  2573. "name": "behat/gherkin",
  2574. "version": "v4.6.0",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/Behat/Gherkin.git",
  2578. "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/ab0a02ea14893860bca00f225f5621d351a3ad07",
  2583. "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "php": ">=5.3.1"
  2588. },
  2589. "require-dev": {
  2590. "phpunit/phpunit": "~4.5|~5",
  2591. "symfony/phpunit-bridge": "~2.7|~3|~4",
  2592. "symfony/yaml": "~2.3|~3|~4"
  2593. },
  2594. "suggest": {
  2595. "symfony/yaml": "If you want to parse features, represented in YAML files"
  2596. },
  2597. "type": "library",
  2598. "extra": {
  2599. "branch-alias": {
  2600. "dev-master": "4.4-dev"
  2601. }
  2602. },
  2603. "autoload": {
  2604. "psr-0": {
  2605. "Behat\\Gherkin": "src/"
  2606. }
  2607. },
  2608. "notification-url": "https://packagist.org/downloads/",
  2609. "license": [
  2610. "MIT"
  2611. ],
  2612. "authors": [
  2613. {
  2614. "name": "Konstantin Kudryashov",
  2615. "email": "ever.zet@gmail.com",
  2616. "homepage": "http://everzet.com"
  2617. }
  2618. ],
  2619. "description": "Gherkin DSL parser for PHP 5.3",
  2620. "homepage": "http://behat.org/",
  2621. "keywords": [
  2622. "BDD",
  2623. "Behat",
  2624. "Cucumber",
  2625. "DSL",
  2626. "gherkin",
  2627. "parser"
  2628. ],
  2629. "time": "2019-01-16T14:22:17+00:00"
  2630. },
  2631. {
  2632. "name": "codeception/codeception",
  2633. "version": "2.5.5",
  2634. "source": {
  2635. "type": "git",
  2636. "url": "https://github.com/Codeception/Codeception.git",
  2637. "reference": "547a64cb31edcf1902b296c511f5ca74101bcb4c"
  2638. },
  2639. "dist": {
  2640. "type": "zip",
  2641. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/547a64cb31edcf1902b296c511f5ca74101bcb4c",
  2642. "reference": "547a64cb31edcf1902b296c511f5ca74101bcb4c",
  2643. "shasum": ""
  2644. },
  2645. "require": {
  2646. "behat/gherkin": "^4.4.0",
  2647. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  2648. "codeception/stub": "^2.0",
  2649. "ext-curl": "*",
  2650. "ext-json": "*",
  2651. "ext-mbstring": "*",
  2652. "facebook/webdriver": ">=1.1.3 <2.0",
  2653. "guzzlehttp/guzzle": ">=4.1.4 <7.0",
  2654. "guzzlehttp/psr7": "~1.0",
  2655. "php": ">=5.6.0 <8.0",
  2656. "symfony/browser-kit": ">=2.7 <5.0",
  2657. "symfony/console": ">=2.7 <5.0",
  2658. "symfony/css-selector": ">=2.7 <5.0",
  2659. "symfony/dom-crawler": ">=2.7 <5.0",
  2660. "symfony/event-dispatcher": ">=2.7 <5.0",
  2661. "symfony/finder": ">=2.7 <5.0",
  2662. "symfony/yaml": ">=2.7 <5.0"
  2663. },
  2664. "require-dev": {
  2665. "codeception/specify": "~0.3",
  2666. "facebook/graph-sdk": "~5.3",
  2667. "flow/jsonpath": "~0.2",
  2668. "monolog/monolog": "~1.8",
  2669. "pda/pheanstalk": "~3.0",
  2670. "php-amqplib/php-amqplib": "~2.4",
  2671. "predis/predis": "^1.0",
  2672. "squizlabs/php_codesniffer": "~2.0",
  2673. "symfony/process": ">=2.7 <5.0",
  2674. "vlucas/phpdotenv": "^3.0"
  2675. },
  2676. "suggest": {
  2677. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  2678. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  2679. "codeception/specify": "BDD-style code blocks",
  2680. "codeception/verify": "BDD-style assertions",
  2681. "flow/jsonpath": "For using JSONPath in REST module",
  2682. "league/factory-muffin": "For DataFactory module",
  2683. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  2684. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  2685. "stecman/symfony-console-completion": "For BASH autocompletion",
  2686. "symfony/phpunit-bridge": "For phpunit-bridge support"
  2687. },
  2688. "bin": [
  2689. "codecept"
  2690. ],
  2691. "type": "library",
  2692. "extra": {
  2693. "branch-alias": []
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "Codeception\\": "src/Codeception",
  2698. "Codeception\\Extension\\": "ext"
  2699. }
  2700. },
  2701. "notification-url": "https://packagist.org/downloads/",
  2702. "license": [
  2703. "MIT"
  2704. ],
  2705. "authors": [
  2706. {
  2707. "name": "Michael Bodnarchuk",
  2708. "email": "davert@mail.ua",
  2709. "homepage": "http://codegyre.com"
  2710. }
  2711. ],
  2712. "description": "BDD-style testing framework",
  2713. "homepage": "http://codeception.com/",
  2714. "keywords": [
  2715. "BDD",
  2716. "TDD",
  2717. "acceptance testing",
  2718. "functional testing",
  2719. "unit testing"
  2720. ],
  2721. "time": "2019-03-23T17:57:45+00:00"
  2722. },
  2723. {
  2724. "name": "codeception/phpunit-wrapper",
  2725. "version": "7.7.1",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  2729. "reference": "ab04a956264291505ea84998f43cf91639b4575d"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/ab04a956264291505ea84998f43cf91639b4575d",
  2734. "reference": "ab04a956264291505ea84998f43cf91639b4575d",
  2735. "shasum": ""
  2736. },
  2737. "require": {
  2738. "phpunit/php-code-coverage": "^6.0",
  2739. "phpunit/phpunit": "7.5.*",
  2740. "sebastian/comparator": "^3.0",
  2741. "sebastian/diff": "^3.0"
  2742. },
  2743. "require-dev": {
  2744. "codeception/specify": "*",
  2745. "vlucas/phpdotenv": "^3.0"
  2746. },
  2747. "type": "library",
  2748. "autoload": {
  2749. "psr-4": {
  2750. "Codeception\\PHPUnit\\": "src\\"
  2751. }
  2752. },
  2753. "notification-url": "https://packagist.org/downloads/",
  2754. "license": [
  2755. "MIT"
  2756. ],
  2757. "authors": [
  2758. {
  2759. "name": "Davert",
  2760. "email": "davert.php@resend.cc"
  2761. }
  2762. ],
  2763. "description": "PHPUnit classes used by Codeception",
  2764. "time": "2019-02-26T20:35:32+00:00"
  2765. },
  2766. {
  2767. "name": "codeception/stub",
  2768. "version": "2.1.0",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/Codeception/Stub.git",
  2772. "reference": "853657f988942f7afb69becf3fd0059f192c705a"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a",
  2777. "reference": "853657f988942f7afb69becf3fd0059f192c705a",
  2778. "shasum": ""
  2779. },
  2780. "require": {
  2781. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3"
  2782. },
  2783. "type": "library",
  2784. "autoload": {
  2785. "psr-4": {
  2786. "Codeception\\": "src/"
  2787. }
  2788. },
  2789. "notification-url": "https://packagist.org/downloads/",
  2790. "license": [
  2791. "MIT"
  2792. ],
  2793. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  2794. "time": "2019-03-02T15:35:10+00:00"
  2795. },
  2796. {
  2797. "name": "composer/xdebug-handler",
  2798. "version": "1.3.2",
  2799. "source": {
  2800. "type": "git",
  2801. "url": "https://github.com/composer/xdebug-handler.git",
  2802. "reference": "d17708133b6c276d6e42ef887a877866b909d892"
  2803. },
  2804. "dist": {
  2805. "type": "zip",
  2806. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/d17708133b6c276d6e42ef887a877866b909d892",
  2807. "reference": "d17708133b6c276d6e42ef887a877866b909d892",
  2808. "shasum": ""
  2809. },
  2810. "require": {
  2811. "php": "^5.3.2 || ^7.0",
  2812. "psr/log": "^1.0"
  2813. },
  2814. "require-dev": {
  2815. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  2816. },
  2817. "type": "library",
  2818. "autoload": {
  2819. "psr-4": {
  2820. "Composer\\XdebugHandler\\": "src"
  2821. }
  2822. },
  2823. "notification-url": "https://packagist.org/downloads/",
  2824. "license": [
  2825. "MIT"
  2826. ],
  2827. "authors": [
  2828. {
  2829. "name": "John Stevenson",
  2830. "email": "john-stevenson@blueyonder.co.uk"
  2831. }
  2832. ],
  2833. "description": "Restarts a process without xdebug.",
  2834. "keywords": [
  2835. "Xdebug",
  2836. "performance"
  2837. ],
  2838. "time": "2019-01-28T20:25:53+00:00"
  2839. },
  2840. {
  2841. "name": "doctrine/instantiator",
  2842. "version": "1.2.0",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/doctrine/instantiator.git",
  2846. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  2851. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  2852. "shasum": ""
  2853. },
  2854. "require": {
  2855. "php": "^7.1"
  2856. },
  2857. "require-dev": {
  2858. "doctrine/coding-standard": "^6.0",
  2859. "ext-pdo": "*",
  2860. "ext-phar": "*",
  2861. "phpbench/phpbench": "^0.13",
  2862. "phpstan/phpstan-phpunit": "^0.11",
  2863. "phpstan/phpstan-shim": "^0.11",
  2864. "phpunit/phpunit": "^7.0"
  2865. },
  2866. "type": "library",
  2867. "extra": {
  2868. "branch-alias": {
  2869. "dev-master": "1.2.x-dev"
  2870. }
  2871. },
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "MIT"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "Marco Pivetta",
  2884. "email": "ocramius@gmail.com",
  2885. "homepage": "http://ocramius.github.com/"
  2886. }
  2887. ],
  2888. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2889. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  2890. "keywords": [
  2891. "constructor",
  2892. "instantiate"
  2893. ],
  2894. "time": "2019-03-17T17:37:11+00:00"
  2895. },
  2896. {
  2897. "name": "facebook/webdriver",
  2898. "version": "1.6.0",
  2899. "source": {
  2900. "type": "git",
  2901. "url": "https://github.com/facebook/php-webdriver.git",
  2902. "reference": "bd8c740097eb9f2fc3735250fc1912bc811a954e"
  2903. },
  2904. "dist": {
  2905. "type": "zip",
  2906. "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/bd8c740097eb9f2fc3735250fc1912bc811a954e",
  2907. "reference": "bd8c740097eb9f2fc3735250fc1912bc811a954e",
  2908. "shasum": ""
  2909. },
  2910. "require": {
  2911. "ext-curl": "*",
  2912. "ext-json": "*",
  2913. "ext-mbstring": "*",
  2914. "ext-zip": "*",
  2915. "php": "^5.6 || ~7.0",
  2916. "symfony/process": "^2.8 || ^3.1 || ^4.0"
  2917. },
  2918. "require-dev": {
  2919. "friendsofphp/php-cs-fixer": "^2.0",
  2920. "jakub-onderka/php-parallel-lint": "^0.9.2",
  2921. "php-coveralls/php-coveralls": "^2.0",
  2922. "php-mock/php-mock-phpunit": "^1.1",
  2923. "phpunit/phpunit": "^5.7",
  2924. "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
  2925. "squizlabs/php_codesniffer": "^2.6",
  2926. "symfony/var-dumper": "^3.3 || ^4.0"
  2927. },
  2928. "suggest": {
  2929. "ext-SimpleXML": "For Firefox profile creation"
  2930. },
  2931. "type": "library",
  2932. "extra": {
  2933. "branch-alias": {
  2934. "dev-community": "1.5-dev"
  2935. }
  2936. },
  2937. "autoload": {
  2938. "psr-4": {
  2939. "Facebook\\WebDriver\\": "lib/"
  2940. }
  2941. },
  2942. "notification-url": "https://packagist.org/downloads/",
  2943. "license": [
  2944. "Apache-2.0"
  2945. ],
  2946. "description": "A PHP client for Selenium WebDriver",
  2947. "homepage": "https://github.com/facebook/php-webdriver",
  2948. "keywords": [
  2949. "facebook",
  2950. "php",
  2951. "selenium",
  2952. "webdriver"
  2953. ],
  2954. "time": "2018-05-16T17:37:13+00:00"
  2955. },
  2956. {
  2957. "name": "fzaninotto/faker",
  2958. "version": "v1.8.0",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/fzaninotto/Faker.git",
  2962. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  2967. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "php": "^5.3.3 || ^7.0"
  2972. },
  2973. "require-dev": {
  2974. "ext-intl": "*",
  2975. "phpunit/phpunit": "^4.8.35 || ^5.7",
  2976. "squizlabs/php_codesniffer": "^1.5"
  2977. },
  2978. "type": "library",
  2979. "extra": {
  2980. "branch-alias": {
  2981. "dev-master": "1.8-dev"
  2982. }
  2983. },
  2984. "autoload": {
  2985. "psr-4": {
  2986. "Faker\\": "src/Faker/"
  2987. }
  2988. },
  2989. "notification-url": "https://packagist.org/downloads/",
  2990. "license": [
  2991. "MIT"
  2992. ],
  2993. "authors": [
  2994. {
  2995. "name": "François Zaninotto"
  2996. }
  2997. ],
  2998. "description": "Faker is a PHP library that generates fake data for you.",
  2999. "keywords": [
  3000. "data",
  3001. "faker",
  3002. "fixtures"
  3003. ],
  3004. "time": "2018-07-12T10:23:15+00:00"
  3005. },
  3006. {
  3007. "name": "guzzlehttp/guzzle",
  3008. "version": "6.3.3",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/guzzle/guzzle.git",
  3012. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  3017. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  3018. "shasum": ""
  3019. },
  3020. "require": {
  3021. "guzzlehttp/promises": "^1.0",
  3022. "guzzlehttp/psr7": "^1.4",
  3023. "php": ">=5.5"
  3024. },
  3025. "require-dev": {
  3026. "ext-curl": "*",
  3027. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  3028. "psr/log": "^1.0"
  3029. },
  3030. "suggest": {
  3031. "psr/log": "Required for using the Log middleware"
  3032. },
  3033. "type": "library",
  3034. "extra": {
  3035. "branch-alias": {
  3036. "dev-master": "6.3-dev"
  3037. }
  3038. },
  3039. "autoload": {
  3040. "files": [
  3041. "src/functions_include.php"
  3042. ],
  3043. "psr-4": {
  3044. "GuzzleHttp\\": "src/"
  3045. }
  3046. },
  3047. "notification-url": "https://packagist.org/downloads/",
  3048. "license": [
  3049. "MIT"
  3050. ],
  3051. "authors": [
  3052. {
  3053. "name": "Michael Dowling",
  3054. "email": "mtdowling@gmail.com",
  3055. "homepage": "https://github.com/mtdowling"
  3056. }
  3057. ],
  3058. "description": "Guzzle is a PHP HTTP client library",
  3059. "homepage": "http://guzzlephp.org/",
  3060. "keywords": [
  3061. "client",
  3062. "curl",
  3063. "framework",
  3064. "http",
  3065. "http client",
  3066. "rest",
  3067. "web service"
  3068. ],
  3069. "time": "2018-04-22T15:46:56+00:00"
  3070. },
  3071. {
  3072. "name": "guzzlehttp/promises",
  3073. "version": "v1.3.1",
  3074. "source": {
  3075. "type": "git",
  3076. "url": "https://github.com/guzzle/promises.git",
  3077. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  3078. },
  3079. "dist": {
  3080. "type": "zip",
  3081. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  3082. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  3083. "shasum": ""
  3084. },
  3085. "require": {
  3086. "php": ">=5.5.0"
  3087. },
  3088. "require-dev": {
  3089. "phpunit/phpunit": "^4.0"
  3090. },
  3091. "type": "library",
  3092. "extra": {
  3093. "branch-alias": {
  3094. "dev-master": "1.4-dev"
  3095. }
  3096. },
  3097. "autoload": {
  3098. "psr-4": {
  3099. "GuzzleHttp\\Promise\\": "src/"
  3100. },
  3101. "files": [
  3102. "src/functions_include.php"
  3103. ]
  3104. },
  3105. "notification-url": "https://packagist.org/downloads/",
  3106. "license": [
  3107. "MIT"
  3108. ],
  3109. "authors": [
  3110. {
  3111. "name": "Michael Dowling",
  3112. "email": "mtdowling@gmail.com",
  3113. "homepage": "https://github.com/mtdowling"
  3114. }
  3115. ],
  3116. "description": "Guzzle promises library",
  3117. "keywords": [
  3118. "promise"
  3119. ],
  3120. "time": "2016-12-20T10:07:11+00:00"
  3121. },
  3122. {
  3123. "name": "jean85/pretty-package-versions",
  3124. "version": "1.2",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/Jean85/pretty-package-versions.git",
  3128. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  3133. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  3134. "shasum": ""
  3135. },
  3136. "require": {
  3137. "ocramius/package-versions": "^1.2.0",
  3138. "php": "^7.0"
  3139. },
  3140. "require-dev": {
  3141. "phpunit/phpunit": "^6.0"
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "branch-alias": {
  3146. "dev-master": "1.x-dev"
  3147. }
  3148. },
  3149. "autoload": {
  3150. "psr-4": {
  3151. "Jean85\\": "src/"
  3152. }
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Alessandro Lai",
  3161. "email": "alessandro.lai85@gmail.com"
  3162. }
  3163. ],
  3164. "description": "A wrapper for ocramius/package-versions to get pretty versions strings",
  3165. "keywords": [
  3166. "composer",
  3167. "package",
  3168. "release",
  3169. "versions"
  3170. ],
  3171. "time": "2018-06-13T13:22:40+00:00"
  3172. },
  3173. {
  3174. "name": "myclabs/deep-copy",
  3175. "version": "1.9.1",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/myclabs/DeepCopy.git",
  3179. "reference": "e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72",
  3184. "reference": "e6828efaba2c9b79f4499dae1d66ef8bfa7b2b72",
  3185. "shasum": ""
  3186. },
  3187. "require": {
  3188. "php": "^7.1"
  3189. },
  3190. "replace": {
  3191. "myclabs/deep-copy": "self.version"
  3192. },
  3193. "require-dev": {
  3194. "doctrine/collections": "^1.0",
  3195. "doctrine/common": "^2.6",
  3196. "phpunit/phpunit": "^7.1"
  3197. },
  3198. "type": "library",
  3199. "autoload": {
  3200. "psr-4": {
  3201. "DeepCopy\\": "src/DeepCopy/"
  3202. },
  3203. "files": [
  3204. "src/DeepCopy/deep_copy.php"
  3205. ]
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "description": "Create deep copies (clones) of your objects",
  3212. "keywords": [
  3213. "clone",
  3214. "copy",
  3215. "duplicate",
  3216. "object",
  3217. "object graph"
  3218. ],
  3219. "time": "2019-04-07T13:18:21+00:00"
  3220. },
  3221. {
  3222. "name": "nette/bootstrap",
  3223. "version": "v3.0.0",
  3224. "source": {
  3225. "type": "git",
  3226. "url": "https://github.com/nette/bootstrap.git",
  3227. "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3"
  3228. },
  3229. "dist": {
  3230. "type": "zip",
  3231. "url": "https://api.github.com/repos/nette/bootstrap/zipball/e1075af05c211915e03e0c86542f3ba5433df4a3",
  3232. "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3",
  3233. "shasum": ""
  3234. },
  3235. "require": {
  3236. "nette/di": "^3.0",
  3237. "nette/utils": "^3.0",
  3238. "php": ">=7.1"
  3239. },
  3240. "require-dev": {
  3241. "latte/latte": "^2.2",
  3242. "nette/application": "^3.0",
  3243. "nette/caching": "^3.0",
  3244. "nette/database": "^3.0",
  3245. "nette/forms": "^3.0",
  3246. "nette/http": "^3.0",
  3247. "nette/mail": "^3.0",
  3248. "nette/robot-loader": "^3.0",
  3249. "nette/safe-stream": "^2.2",
  3250. "nette/security": "^3.0",
  3251. "nette/tester": "^2.0",
  3252. "tracy/tracy": "^2.6"
  3253. },
  3254. "suggest": {
  3255. "nette/robot-loader": "to use Configurator::createRobotLoader()",
  3256. "tracy/tracy": "to use Configurator::enableTracy()"
  3257. },
  3258. "type": "library",
  3259. "extra": {
  3260. "branch-alias": {
  3261. "dev-master": "3.0-dev"
  3262. }
  3263. },
  3264. "autoload": {
  3265. "classmap": [
  3266. "src/"
  3267. ]
  3268. },
  3269. "notification-url": "https://packagist.org/downloads/",
  3270. "license": [
  3271. "BSD-3-Clause",
  3272. "GPL-2.0",
  3273. "GPL-3.0"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "David Grudl",
  3278. "homepage": "https://davidgrudl.com"
  3279. },
  3280. {
  3281. "name": "Nette Community",
  3282. "homepage": "https://nette.org/contributors"
  3283. }
  3284. ],
  3285. "description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.",
  3286. "homepage": "https://nette.org",
  3287. "keywords": [
  3288. "bootstrapping",
  3289. "configurator",
  3290. "nette"
  3291. ],
  3292. "time": "2019-03-26T12:59:07+00:00"
  3293. },
  3294. {
  3295. "name": "nette/di",
  3296. "version": "v3.0.0",
  3297. "source": {
  3298. "type": "git",
  3299. "url": "https://github.com/nette/di.git",
  3300. "reference": "19d83539245aaacb59470828919182411061841f"
  3301. },
  3302. "dist": {
  3303. "type": "zip",
  3304. "url": "https://api.github.com/repos/nette/di/zipball/19d83539245aaacb59470828919182411061841f",
  3305. "reference": "19d83539245aaacb59470828919182411061841f",
  3306. "shasum": ""
  3307. },
  3308. "require": {
  3309. "ext-tokenizer": "*",
  3310. "nette/neon": "^3.0",
  3311. "nette/php-generator": "^3.2.2",
  3312. "nette/robot-loader": "^3.2",
  3313. "nette/schema": "^1.0",
  3314. "nette/utils": "^3.0",
  3315. "php": ">=7.1"
  3316. },
  3317. "conflict": {
  3318. "nette/bootstrap": "<3.0"
  3319. },
  3320. "require-dev": {
  3321. "nette/tester": "^2.2",
  3322. "tracy/tracy": "^2.3"
  3323. },
  3324. "type": "library",
  3325. "extra": {
  3326. "branch-alias": {
  3327. "dev-master": "3.0-dev"
  3328. }
  3329. },
  3330. "autoload": {
  3331. "classmap": [
  3332. "src/"
  3333. ],
  3334. "files": [
  3335. "src/compatibility.php"
  3336. ]
  3337. },
  3338. "notification-url": "https://packagist.org/downloads/",
  3339. "license": [
  3340. "BSD-3-Clause",
  3341. "GPL-2.0",
  3342. "GPL-3.0"
  3343. ],
  3344. "authors": [
  3345. {
  3346. "name": "David Grudl",
  3347. "homepage": "https://davidgrudl.com"
  3348. },
  3349. {
  3350. "name": "Nette Community",
  3351. "homepage": "https://nette.org/contributors"
  3352. }
  3353. ],
  3354. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.",
  3355. "homepage": "https://nette.org",
  3356. "keywords": [
  3357. "compiled",
  3358. "di",
  3359. "dic",
  3360. "factory",
  3361. "ioc",
  3362. "nette",
  3363. "static"
  3364. ],
  3365. "time": "2019-04-03T19:35:46+00:00"
  3366. },
  3367. {
  3368. "name": "nette/finder",
  3369. "version": "v2.5.0",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/nette/finder.git",
  3373. "reference": "6be1b83ea68ac558aff189d640abe242e0306fe2"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/nette/finder/zipball/6be1b83ea68ac558aff189d640abe242e0306fe2",
  3378. "reference": "6be1b83ea68ac558aff189d640abe242e0306fe2",
  3379. "shasum": ""
  3380. },
  3381. "require": {
  3382. "nette/utils": "^2.4 || ~3.0.0",
  3383. "php": ">=7.1"
  3384. },
  3385. "conflict": {
  3386. "nette/nette": "<2.2"
  3387. },
  3388. "require-dev": {
  3389. "nette/tester": "^2.0",
  3390. "tracy/tracy": "^2.3"
  3391. },
  3392. "type": "library",
  3393. "extra": {
  3394. "branch-alias": {
  3395. "dev-master": "2.5-dev"
  3396. }
  3397. },
  3398. "autoload": {
  3399. "classmap": [
  3400. "src/"
  3401. ]
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "BSD-3-Clause",
  3406. "GPL-2.0",
  3407. "GPL-3.0"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "David Grudl",
  3412. "homepage": "https://davidgrudl.com"
  3413. },
  3414. {
  3415. "name": "Nette Community",
  3416. "homepage": "https://nette.org/contributors"
  3417. }
  3418. ],
  3419. "description": "🔍 Nette Finder: find files and directories with an intuitive API.",
  3420. "homepage": "https://nette.org",
  3421. "keywords": [
  3422. "filesystem",
  3423. "glob",
  3424. "iterator",
  3425. "nette"
  3426. ],
  3427. "time": "2019-02-28T18:13:25+00:00"
  3428. },
  3429. {
  3430. "name": "nette/neon",
  3431. "version": "v3.0.0",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/nette/neon.git",
  3435. "reference": "cbff32059cbdd8720deccf9e9eace6ee516f02eb"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/nette/neon/zipball/cbff32059cbdd8720deccf9e9eace6ee516f02eb",
  3440. "reference": "cbff32059cbdd8720deccf9e9eace6ee516f02eb",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "ext-iconv": "*",
  3445. "ext-json": "*",
  3446. "php": ">=7.0"
  3447. },
  3448. "require-dev": {
  3449. "nette/tester": "^2.0",
  3450. "tracy/tracy": "^2.3"
  3451. },
  3452. "type": "library",
  3453. "extra": {
  3454. "branch-alias": {
  3455. "dev-master": "3.0-dev"
  3456. }
  3457. },
  3458. "autoload": {
  3459. "classmap": [
  3460. "src/"
  3461. ]
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "BSD-3-Clause",
  3466. "GPL-2.0",
  3467. "GPL-3.0"
  3468. ],
  3469. "authors": [
  3470. {
  3471. "name": "David Grudl",
  3472. "homepage": "https://davidgrudl.com"
  3473. },
  3474. {
  3475. "name": "Nette Community",
  3476. "homepage": "https://nette.org/contributors"
  3477. }
  3478. ],
  3479. "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
  3480. "homepage": "http://ne-on.org",
  3481. "keywords": [
  3482. "export",
  3483. "import",
  3484. "neon",
  3485. "nette",
  3486. "yaml"
  3487. ],
  3488. "time": "2019-02-05T21:30:40+00:00"
  3489. },
  3490. {
  3491. "name": "nette/php-generator",
  3492. "version": "v3.2.2",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://github.com/nette/php-generator.git",
  3496. "reference": "acff8b136fad84b860a626d133e791f95781f9f5"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://api.github.com/repos/nette/php-generator/zipball/acff8b136fad84b860a626d133e791f95781f9f5",
  3501. "reference": "acff8b136fad84b860a626d133e791f95781f9f5",
  3502. "shasum": ""
  3503. },
  3504. "require": {
  3505. "nette/utils": "^2.4.2 || ~3.0.0",
  3506. "php": ">=7.1"
  3507. },
  3508. "require-dev": {
  3509. "nette/tester": "^2.0",
  3510. "tracy/tracy": "^2.3"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "branch-alias": {
  3515. "dev-master": "3.2-dev"
  3516. }
  3517. },
  3518. "autoload": {
  3519. "classmap": [
  3520. "src/"
  3521. ]
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "BSD-3-Clause",
  3526. "GPL-2.0",
  3527. "GPL-3.0"
  3528. ],
  3529. "authors": [
  3530. {
  3531. "name": "David Grudl",
  3532. "homepage": "https://davidgrudl.com"
  3533. },
  3534. {
  3535. "name": "Nette Community",
  3536. "homepage": "https://nette.org/contributors"
  3537. }
  3538. ],
  3539. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.3 features.",
  3540. "homepage": "https://nette.org",
  3541. "keywords": [
  3542. "code",
  3543. "nette",
  3544. "php",
  3545. "scaffolding"
  3546. ],
  3547. "time": "2019-03-15T03:41:13+00:00"
  3548. },
  3549. {
  3550. "name": "nette/robot-loader",
  3551. "version": "v3.2.0",
  3552. "source": {
  3553. "type": "git",
  3554. "url": "https://github.com/nette/robot-loader.git",
  3555. "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c"
  3556. },
  3557. "dist": {
  3558. "type": "zip",
  3559. "url": "https://api.github.com/repos/nette/robot-loader/zipball/0712a0e39ae7956d6a94c0ab6ad41aa842544b5c",
  3560. "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c",
  3561. "shasum": ""
  3562. },
  3563. "require": {
  3564. "ext-tokenizer": "*",
  3565. "nette/finder": "^2.5",
  3566. "nette/utils": "^3.0",
  3567. "php": ">=7.1"
  3568. },
  3569. "require-dev": {
  3570. "nette/tester": "^2.0",
  3571. "tracy/tracy": "^2.3"
  3572. },
  3573. "type": "library",
  3574. "extra": {
  3575. "branch-alias": {
  3576. "dev-master": "3.2-dev"
  3577. }
  3578. },
  3579. "autoload": {
  3580. "classmap": [
  3581. "src/"
  3582. ]
  3583. },
  3584. "notification-url": "https://packagist.org/downloads/",
  3585. "license": [
  3586. "BSD-3-Clause",
  3587. "GPL-2.0",
  3588. "GPL-3.0"
  3589. ],
  3590. "authors": [
  3591. {
  3592. "name": "David Grudl",
  3593. "homepage": "https://davidgrudl.com"
  3594. },
  3595. {
  3596. "name": "Nette Community",
  3597. "homepage": "https://nette.org/contributors"
  3598. }
  3599. ],
  3600. "description": "? Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
  3601. "homepage": "https://nette.org",
  3602. "keywords": [
  3603. "autoload",
  3604. "class",
  3605. "interface",
  3606. "nette",
  3607. "trait"
  3608. ],
  3609. "time": "2019-03-08T21:57:24+00:00"
  3610. },
  3611. {
  3612. "name": "nette/schema",
  3613. "version": "v1.0.0",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/nette/schema.git",
  3617. "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/nette/schema/zipball/6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d",
  3622. "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d",
  3623. "shasum": ""
  3624. },
  3625. "require": {
  3626. "nette/utils": "^3.0.1",
  3627. "php": ">=7.1"
  3628. },
  3629. "require-dev": {
  3630. "nette/tester": "^2.2",
  3631. "tracy/tracy": "^2.3"
  3632. },
  3633. "type": "library",
  3634. "extra": {
  3635. "branch-alias": {
  3636. "dev-master": "1.0-dev"
  3637. }
  3638. },
  3639. "autoload": {
  3640. "classmap": [
  3641. "src/"
  3642. ]
  3643. },
  3644. "notification-url": "https://packagist.org/downloads/",
  3645. "license": [
  3646. "BSD-3-Clause",
  3647. "GPL-2.0",
  3648. "GPL-3.0"
  3649. ],
  3650. "authors": [
  3651. {
  3652. "name": "David Grudl",
  3653. "homepage": "https://davidgrudl.com"
  3654. },
  3655. {
  3656. "name": "Nette Community",
  3657. "homepage": "https://nette.org/contributors"
  3658. }
  3659. ],
  3660. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3661. "homepage": "https://nette.org",
  3662. "keywords": [
  3663. "config",
  3664. "nette"
  3665. ],
  3666. "time": "2019-04-03T15:53:25+00:00"
  3667. },
  3668. {
  3669. "name": "nette/utils",
  3670. "version": "v3.0.1",
  3671. "source": {
  3672. "type": "git",
  3673. "url": "https://github.com/nette/utils.git",
  3674. "reference": "bd961f49b211997202bda1d0fbc410905be370d4"
  3675. },
  3676. "dist": {
  3677. "type": "zip",
  3678. "url": "https://api.github.com/repos/nette/utils/zipball/bd961f49b211997202bda1d0fbc410905be370d4",
  3679. "reference": "bd961f49b211997202bda1d0fbc410905be370d4",
  3680. "shasum": ""
  3681. },
  3682. "require": {
  3683. "php": ">=7.1"
  3684. },
  3685. "require-dev": {
  3686. "nette/tester": "~2.0",
  3687. "tracy/tracy": "^2.3"
  3688. },
  3689. "suggest": {
  3690. "ext-gd": "to use Image",
  3691. "ext-iconv": "to use Strings::webalize() and toAscii()",
  3692. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3693. "ext-json": "to use Nette\\Utils\\Json",
  3694. "ext-mbstring": "to use Strings::lower() etc...",
  3695. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3696. },
  3697. "type": "library",
  3698. "extra": {
  3699. "branch-alias": {
  3700. "dev-master": "3.0-dev"
  3701. }
  3702. },
  3703. "autoload": {
  3704. "classmap": [
  3705. "src/"
  3706. ]
  3707. },
  3708. "notification-url": "https://packagist.org/downloads/",
  3709. "license": [
  3710. "BSD-3-Clause",
  3711. "GPL-2.0",
  3712. "GPL-3.0"
  3713. ],
  3714. "authors": [
  3715. {
  3716. "name": "David Grudl",
  3717. "homepage": "https://davidgrudl.com"
  3718. },
  3719. {
  3720. "name": "Nette Community",
  3721. "homepage": "https://nette.org/contributors"
  3722. }
  3723. ],
  3724. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3725. "homepage": "https://nette.org",
  3726. "keywords": [
  3727. "array",
  3728. "core",
  3729. "datetime",
  3730. "images",
  3731. "json",
  3732. "nette",
  3733. "paginator",
  3734. "password",
  3735. "slugify",
  3736. "string",
  3737. "unicode",
  3738. "utf-8",
  3739. "utility",
  3740. "validation"
  3741. ],
  3742. "time": "2019-03-22T01:00:30+00:00"
  3743. },
  3744. {
  3745. "name": "nikic/php-parser",
  3746. "version": "v4.2.1",
  3747. "source": {
  3748. "type": "git",
  3749. "url": "https://github.com/nikic/PHP-Parser.git",
  3750. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  3751. },
  3752. "dist": {
  3753. "type": "zip",
  3754. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  3755. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  3756. "shasum": ""
  3757. },
  3758. "require": {
  3759. "ext-tokenizer": "*",
  3760. "php": ">=7.0"
  3761. },
  3762. "require-dev": {
  3763. "phpunit/phpunit": "^6.5 || ^7.0"
  3764. },
  3765. "bin": [
  3766. "bin/php-parse"
  3767. ],
  3768. "type": "library",
  3769. "extra": {
  3770. "branch-alias": {
  3771. "dev-master": "4.2-dev"
  3772. }
  3773. },
  3774. "autoload": {
  3775. "psr-4": {
  3776. "PhpParser\\": "lib/PhpParser"
  3777. }
  3778. },
  3779. "notification-url": "https://packagist.org/downloads/",
  3780. "license": [
  3781. "BSD-3-Clause"
  3782. ],
  3783. "authors": [
  3784. {
  3785. "name": "Nikita Popov"
  3786. }
  3787. ],
  3788. "description": "A PHP parser written in PHP",
  3789. "keywords": [
  3790. "parser",
  3791. "php"
  3792. ],
  3793. "time": "2019-02-16T20:54:15+00:00"
  3794. },
  3795. {
  3796. "name": "ocramius/package-versions",
  3797. "version": "1.4.0",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/Ocramius/PackageVersions.git",
  3801. "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
  3806. "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
  3807. "shasum": ""
  3808. },
  3809. "require": {
  3810. "composer-plugin-api": "^1.0.0",
  3811. "php": "^7.1.0"
  3812. },
  3813. "require-dev": {
  3814. "composer/composer": "^1.6.3",
  3815. "doctrine/coding-standard": "^5.0.1",
  3816. "ext-zip": "*",
  3817. "infection/infection": "^0.7.1",
  3818. "phpunit/phpunit": "^7.0.0"
  3819. },
  3820. "type": "composer-plugin",
  3821. "extra": {
  3822. "class": "PackageVersions\\Installer",
  3823. "branch-alias": {
  3824. "dev-master": "2.0.x-dev"
  3825. }
  3826. },
  3827. "autoload": {
  3828. "psr-4": {
  3829. "PackageVersions\\": "src/PackageVersions"
  3830. }
  3831. },
  3832. "notification-url": "https://packagist.org/downloads/",
  3833. "license": [
  3834. "MIT"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Marco Pivetta",
  3839. "email": "ocramius@gmail.com"
  3840. }
  3841. ],
  3842. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  3843. "time": "2019-02-21T12:16:21+00:00"
  3844. },
  3845. {
  3846. "name": "phar-io/manifest",
  3847. "version": "1.0.3",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/phar-io/manifest.git",
  3851. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3856. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3857. "shasum": ""
  3858. },
  3859. "require": {
  3860. "ext-dom": "*",
  3861. "ext-phar": "*",
  3862. "phar-io/version": "^2.0",
  3863. "php": "^5.6 || ^7.0"
  3864. },
  3865. "type": "library",
  3866. "extra": {
  3867. "branch-alias": {
  3868. "dev-master": "1.0.x-dev"
  3869. }
  3870. },
  3871. "autoload": {
  3872. "classmap": [
  3873. "src/"
  3874. ]
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "BSD-3-Clause"
  3879. ],
  3880. "authors": [
  3881. {
  3882. "name": "Arne Blankerts",
  3883. "email": "arne@blankerts.de",
  3884. "role": "Developer"
  3885. },
  3886. {
  3887. "name": "Sebastian Heuer",
  3888. "email": "sebastian@phpeople.de",
  3889. "role": "Developer"
  3890. },
  3891. {
  3892. "name": "Sebastian Bergmann",
  3893. "email": "sebastian@phpunit.de",
  3894. "role": "Developer"
  3895. }
  3896. ],
  3897. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3898. "time": "2018-07-08T19:23:20+00:00"
  3899. },
  3900. {
  3901. "name": "phar-io/version",
  3902. "version": "2.0.1",
  3903. "source": {
  3904. "type": "git",
  3905. "url": "https://github.com/phar-io/version.git",
  3906. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  3907. },
  3908. "dist": {
  3909. "type": "zip",
  3910. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  3911. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  3912. "shasum": ""
  3913. },
  3914. "require": {
  3915. "php": "^5.6 || ^7.0"
  3916. },
  3917. "type": "library",
  3918. "autoload": {
  3919. "classmap": [
  3920. "src/"
  3921. ]
  3922. },
  3923. "notification-url": "https://packagist.org/downloads/",
  3924. "license": [
  3925. "BSD-3-Clause"
  3926. ],
  3927. "authors": [
  3928. {
  3929. "name": "Arne Blankerts",
  3930. "email": "arne@blankerts.de",
  3931. "role": "Developer"
  3932. },
  3933. {
  3934. "name": "Sebastian Heuer",
  3935. "email": "sebastian@phpeople.de",
  3936. "role": "Developer"
  3937. },
  3938. {
  3939. "name": "Sebastian Bergmann",
  3940. "email": "sebastian@phpunit.de",
  3941. "role": "Developer"
  3942. }
  3943. ],
  3944. "description": "Library for handling version information and constraints",
  3945. "time": "2018-07-08T19:19:57+00:00"
  3946. },
  3947. {
  3948. "name": "phpdocumentor/reflection-common",
  3949. "version": "1.0.1",
  3950. "source": {
  3951. "type": "git",
  3952. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3953. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  3954. },
  3955. "dist": {
  3956. "type": "zip",
  3957. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3958. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  3959. "shasum": ""
  3960. },
  3961. "require": {
  3962. "php": ">=5.5"
  3963. },
  3964. "require-dev": {
  3965. "phpunit/phpunit": "^4.6"
  3966. },
  3967. "type": "library",
  3968. "extra": {
  3969. "branch-alias": {
  3970. "dev-master": "1.0.x-dev"
  3971. }
  3972. },
  3973. "autoload": {
  3974. "psr-4": {
  3975. "phpDocumentor\\Reflection\\": [
  3976. "src"
  3977. ]
  3978. }
  3979. },
  3980. "notification-url": "https://packagist.org/downloads/",
  3981. "license": [
  3982. "MIT"
  3983. ],
  3984. "authors": [
  3985. {
  3986. "name": "Jaap van Otterdijk",
  3987. "email": "opensource@ijaap.nl"
  3988. }
  3989. ],
  3990. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3991. "homepage": "http://www.phpdoc.org",
  3992. "keywords": [
  3993. "FQSEN",
  3994. "phpDocumentor",
  3995. "phpdoc",
  3996. "reflection",
  3997. "static analysis"
  3998. ],
  3999. "time": "2017-09-11T18:02:19+00:00"
  4000. },
  4001. {
  4002. "name": "phpdocumentor/reflection-docblock",
  4003. "version": "4.3.0",
  4004. "source": {
  4005. "type": "git",
  4006. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4007. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  4008. },
  4009. "dist": {
  4010. "type": "zip",
  4011. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  4012. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  4013. "shasum": ""
  4014. },
  4015. "require": {
  4016. "php": "^7.0",
  4017. "phpdocumentor/reflection-common": "^1.0.0",
  4018. "phpdocumentor/type-resolver": "^0.4.0",
  4019. "webmozart/assert": "^1.0"
  4020. },
  4021. "require-dev": {
  4022. "doctrine/instantiator": "~1.0.5",
  4023. "mockery/mockery": "^1.0",
  4024. "phpunit/phpunit": "^6.4"
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-master": "4.x-dev"
  4030. }
  4031. },
  4032. "autoload": {
  4033. "psr-4": {
  4034. "phpDocumentor\\Reflection\\": [
  4035. "src/"
  4036. ]
  4037. }
  4038. },
  4039. "notification-url": "https://packagist.org/downloads/",
  4040. "license": [
  4041. "MIT"
  4042. ],
  4043. "authors": [
  4044. {
  4045. "name": "Mike van Riel",
  4046. "email": "me@mikevanriel.com"
  4047. }
  4048. ],
  4049. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4050. "time": "2017-11-30T07:14:17+00:00"
  4051. },
  4052. {
  4053. "name": "phpdocumentor/type-resolver",
  4054. "version": "0.4.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4058. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  4063. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "php": "^5.5 || ^7.0",
  4068. "phpdocumentor/reflection-common": "^1.0"
  4069. },
  4070. "require-dev": {
  4071. "mockery/mockery": "^0.9.4",
  4072. "phpunit/phpunit": "^5.2||^4.8.24"
  4073. },
  4074. "type": "library",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-master": "1.0.x-dev"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "phpDocumentor\\Reflection\\": [
  4083. "src/"
  4084. ]
  4085. }
  4086. },
  4087. "notification-url": "https://packagist.org/downloads/",
  4088. "license": [
  4089. "MIT"
  4090. ],
  4091. "authors": [
  4092. {
  4093. "name": "Mike van Riel",
  4094. "email": "me@mikevanriel.com"
  4095. }
  4096. ],
  4097. "time": "2017-07-14T14:27:02+00:00"
  4098. },
  4099. {
  4100. "name": "phpspec/prophecy",
  4101. "version": "1.8.0",
  4102. "source": {
  4103. "type": "git",
  4104. "url": "https://github.com/phpspec/prophecy.git",
  4105. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  4106. },
  4107. "dist": {
  4108. "type": "zip",
  4109. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  4110. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  4111. "shasum": ""
  4112. },
  4113. "require": {
  4114. "doctrine/instantiator": "^1.0.2",
  4115. "php": "^5.3|^7.0",
  4116. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  4117. "sebastian/comparator": "^1.1|^2.0|^3.0",
  4118. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  4119. },
  4120. "require-dev": {
  4121. "phpspec/phpspec": "^2.5|^3.2",
  4122. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "1.8.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "psr-0": {
  4132. "Prophecy\\": "src/"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Konstantin Kudryashov",
  4142. "email": "ever.zet@gmail.com",
  4143. "homepage": "http://everzet.com"
  4144. },
  4145. {
  4146. "name": "Marcello Duarte",
  4147. "email": "marcello.duarte@gmail.com"
  4148. }
  4149. ],
  4150. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4151. "homepage": "https://github.com/phpspec/prophecy",
  4152. "keywords": [
  4153. "Double",
  4154. "Dummy",
  4155. "fake",
  4156. "mock",
  4157. "spy",
  4158. "stub"
  4159. ],
  4160. "time": "2018-08-05T17:53:17+00:00"
  4161. },
  4162. {
  4163. "name": "phpstan/phpdoc-parser",
  4164. "version": "0.3.1",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://github.com/phpstan/phpdoc-parser.git",
  4168. "reference": "2cc49f47c69b023eaf05b48e6529389893b13d74"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/2cc49f47c69b023eaf05b48e6529389893b13d74",
  4173. "reference": "2cc49f47c69b023eaf05b48e6529389893b13d74",
  4174. "shasum": ""
  4175. },
  4176. "require": {
  4177. "php": "~7.1"
  4178. },
  4179. "require-dev": {
  4180. "consistence/coding-standard": "^2.0.0",
  4181. "jakub-onderka/php-parallel-lint": "^0.9.2",
  4182. "phing/phing": "^2.16.0",
  4183. "phpstan/phpstan": "^0.10",
  4184. "phpunit/phpunit": "^6.3",
  4185. "slevomat/coding-standard": "^3.3.0",
  4186. "symfony/process": "^3.4 || ^4.0"
  4187. },
  4188. "type": "library",
  4189. "extra": {
  4190. "branch-alias": {
  4191. "dev-master": "0.3-dev"
  4192. }
  4193. },
  4194. "autoload": {
  4195. "psr-4": {
  4196. "PHPStan\\PhpDocParser\\": [
  4197. "src/"
  4198. ]
  4199. }
  4200. },
  4201. "notification-url": "https://packagist.org/downloads/",
  4202. "license": [
  4203. "MIT"
  4204. ],
  4205. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  4206. "time": "2019-01-14T12:26:23+00:00"
  4207. },
  4208. {
  4209. "name": "phpstan/phpstan",
  4210. "version": "0.11.5",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://github.com/phpstan/phpstan.git",
  4214. "reference": "24ce5a566a798b81343138ed5d41d6877554cf9a"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/24ce5a566a798b81343138ed5d41d6877554cf9a",
  4219. "reference": "24ce5a566a798b81343138ed5d41d6877554cf9a",
  4220. "shasum": ""
  4221. },
  4222. "require": {
  4223. "composer/xdebug-handler": "^1.3.0",
  4224. "jean85/pretty-package-versions": "^1.0.3",
  4225. "nette/bootstrap": "^2.4 || ^3.0",
  4226. "nette/di": "^2.4.7 || ^3.0",
  4227. "nette/robot-loader": "^3.0.1",
  4228. "nette/utils": "^2.4.5 || ^3.0",
  4229. "nikic/php-parser": "^4.0.2",
  4230. "php": "~7.1",
  4231. "phpstan/phpdoc-parser": "^0.3",
  4232. "symfony/console": "~3.2 || ~4.0",
  4233. "symfony/finder": "~3.2 || ~4.0"
  4234. },
  4235. "conflict": {
  4236. "symfony/console": "3.4.16 || 4.1.5"
  4237. },
  4238. "require-dev": {
  4239. "brianium/paratest": "^2.0",
  4240. "consistence/coding-standard": "^3.5",
  4241. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  4242. "ext-intl": "*",
  4243. "ext-mysqli": "*",
  4244. "ext-soap": "*",
  4245. "ext-zip": "*",
  4246. "jakub-onderka/php-parallel-lint": "^1.0",
  4247. "localheinz/composer-normalize": "^1.1.0",
  4248. "phing/phing": "^2.16.0",
  4249. "phpstan/phpstan-deprecation-rules": "^0.11",
  4250. "phpstan/phpstan-php-parser": "^0.11",
  4251. "phpstan/phpstan-phpunit": "^0.11",
  4252. "phpstan/phpstan-strict-rules": "^0.11",
  4253. "phpunit/phpunit": "^7.0",
  4254. "slevomat/coding-standard": "^4.7.2",
  4255. "squizlabs/php_codesniffer": "^3.3.2"
  4256. },
  4257. "bin": [
  4258. "bin/phpstan"
  4259. ],
  4260. "type": "library",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-master": "0.11-dev"
  4264. }
  4265. },
  4266. "autoload": {
  4267. "psr-4": {
  4268. "PHPStan\\": [
  4269. "src/",
  4270. "build/PHPStan"
  4271. ]
  4272. }
  4273. },
  4274. "notification-url": "https://packagist.org/downloads/",
  4275. "license": [
  4276. "MIT"
  4277. ],
  4278. "description": "PHPStan - PHP Static Analysis Tool",
  4279. "time": "2019-03-25T16:40:09+00:00"
  4280. },
  4281. {
  4282. "name": "phpstan/phpstan-deprecation-rules",
  4283. "version": "0.11",
  4284. "source": {
  4285. "type": "git",
  4286. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  4287. "reference": "449fee6223220b337760abca4444801ddcc8b38d"
  4288. },
  4289. "dist": {
  4290. "type": "zip",
  4291. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/449fee6223220b337760abca4444801ddcc8b38d",
  4292. "reference": "449fee6223220b337760abca4444801ddcc8b38d",
  4293. "shasum": ""
  4294. },
  4295. "require": {
  4296. "nikic/php-parser": "^4.0",
  4297. "php": "~7.1",
  4298. "phpstan/phpstan": "^0.11"
  4299. },
  4300. "require-dev": {
  4301. "consistence/coding-standard": "^3.0.1",
  4302. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  4303. "jakub-onderka/php-parallel-lint": "^1.0",
  4304. "phing/phing": "^2.16.0",
  4305. "phpstan/phpstan-phpunit": "^0.11",
  4306. "phpunit/phpunit": "^7.0",
  4307. "slevomat/coding-standard": "^4.5.2"
  4308. },
  4309. "type": "library",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-master": "0.11-dev"
  4313. }
  4314. },
  4315. "autoload": {
  4316. "psr-4": {
  4317. "PHPStan\\": "src/"
  4318. }
  4319. },
  4320. "notification-url": "https://packagist.org/downloads/",
  4321. "license": [
  4322. "MIT"
  4323. ],
  4324. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  4325. "time": "2018-12-05T18:04:16+00:00"
  4326. },
  4327. {
  4328. "name": "phpunit/php-code-coverage",
  4329. "version": "6.1.4",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4333. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4338. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4339. "shasum": ""
  4340. },
  4341. "require": {
  4342. "ext-dom": "*",
  4343. "ext-xmlwriter": "*",
  4344. "php": "^7.1",
  4345. "phpunit/php-file-iterator": "^2.0",
  4346. "phpunit/php-text-template": "^1.2.1",
  4347. "phpunit/php-token-stream": "^3.0",
  4348. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  4349. "sebastian/environment": "^3.1 || ^4.0",
  4350. "sebastian/version": "^2.0.1",
  4351. "theseer/tokenizer": "^1.1"
  4352. },
  4353. "require-dev": {
  4354. "phpunit/phpunit": "^7.0"
  4355. },
  4356. "suggest": {
  4357. "ext-xdebug": "^2.6.0"
  4358. },
  4359. "type": "library",
  4360. "extra": {
  4361. "branch-alias": {
  4362. "dev-master": "6.1-dev"
  4363. }
  4364. },
  4365. "autoload": {
  4366. "classmap": [
  4367. "src/"
  4368. ]
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "BSD-3-Clause"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Sebastian Bergmann",
  4377. "email": "sebastian@phpunit.de",
  4378. "role": "lead"
  4379. }
  4380. ],
  4381. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4382. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4383. "keywords": [
  4384. "coverage",
  4385. "testing",
  4386. "xunit"
  4387. ],
  4388. "time": "2018-10-31T16:06:48+00:00"
  4389. },
  4390. {
  4391. "name": "phpunit/php-file-iterator",
  4392. "version": "2.0.2",
  4393. "source": {
  4394. "type": "git",
  4395. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4396. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  4397. },
  4398. "dist": {
  4399. "type": "zip",
  4400. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  4401. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  4402. "shasum": ""
  4403. },
  4404. "require": {
  4405. "php": "^7.1"
  4406. },
  4407. "require-dev": {
  4408. "phpunit/phpunit": "^7.1"
  4409. },
  4410. "type": "library",
  4411. "extra": {
  4412. "branch-alias": {
  4413. "dev-master": "2.0.x-dev"
  4414. }
  4415. },
  4416. "autoload": {
  4417. "classmap": [
  4418. "src/"
  4419. ]
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "BSD-3-Clause"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Sebastian Bergmann",
  4428. "email": "sebastian@phpunit.de",
  4429. "role": "lead"
  4430. }
  4431. ],
  4432. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4433. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4434. "keywords": [
  4435. "filesystem",
  4436. "iterator"
  4437. ],
  4438. "time": "2018-09-13T20:33:42+00:00"
  4439. },
  4440. {
  4441. "name": "phpunit/php-text-template",
  4442. "version": "1.2.1",
  4443. "source": {
  4444. "type": "git",
  4445. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4446. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4447. },
  4448. "dist": {
  4449. "type": "zip",
  4450. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4451. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4452. "shasum": ""
  4453. },
  4454. "require": {
  4455. "php": ">=5.3.3"
  4456. },
  4457. "type": "library",
  4458. "autoload": {
  4459. "classmap": [
  4460. "src/"
  4461. ]
  4462. },
  4463. "notification-url": "https://packagist.org/downloads/",
  4464. "license": [
  4465. "BSD-3-Clause"
  4466. ],
  4467. "authors": [
  4468. {
  4469. "name": "Sebastian Bergmann",
  4470. "email": "sebastian@phpunit.de",
  4471. "role": "lead"
  4472. }
  4473. ],
  4474. "description": "Simple template engine.",
  4475. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4476. "keywords": [
  4477. "template"
  4478. ],
  4479. "time": "2015-06-21T13:50:34+00:00"
  4480. },
  4481. {
  4482. "name": "phpunit/php-timer",
  4483. "version": "2.1.1",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4487. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  4492. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  4493. "shasum": ""
  4494. },
  4495. "require": {
  4496. "php": "^7.1"
  4497. },
  4498. "require-dev": {
  4499. "phpunit/phpunit": "^7.0"
  4500. },
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-master": "2.1-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "classmap": [
  4509. "src/"
  4510. ]
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "BSD-3-Clause"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "Sebastian Bergmann",
  4519. "email": "sebastian@phpunit.de",
  4520. "role": "lead"
  4521. }
  4522. ],
  4523. "description": "Utility class for timing",
  4524. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4525. "keywords": [
  4526. "timer"
  4527. ],
  4528. "time": "2019-02-20T10:12:59+00:00"
  4529. },
  4530. {
  4531. "name": "phpunit/php-token-stream",
  4532. "version": "3.0.1",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4536. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  4541. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  4542. "shasum": ""
  4543. },
  4544. "require": {
  4545. "ext-tokenizer": "*",
  4546. "php": "^7.1"
  4547. },
  4548. "require-dev": {
  4549. "phpunit/phpunit": "^7.0"
  4550. },
  4551. "type": "library",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-master": "3.0-dev"
  4555. }
  4556. },
  4557. "autoload": {
  4558. "classmap": [
  4559. "src/"
  4560. ]
  4561. },
  4562. "notification-url": "https://packagist.org/downloads/",
  4563. "license": [
  4564. "BSD-3-Clause"
  4565. ],
  4566. "authors": [
  4567. {
  4568. "name": "Sebastian Bergmann",
  4569. "email": "sebastian@phpunit.de"
  4570. }
  4571. ],
  4572. "description": "Wrapper around PHP's tokenizer extension.",
  4573. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4574. "keywords": [
  4575. "tokenizer"
  4576. ],
  4577. "time": "2018-10-30T05:52:18+00:00"
  4578. },
  4579. {
  4580. "name": "phpunit/phpunit",
  4581. "version": "7.5.8",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4585. "reference": "c29c0525cf4572c11efe1db49a8b8aee9dfac58a"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c29c0525cf4572c11efe1db49a8b8aee9dfac58a",
  4590. "reference": "c29c0525cf4572c11efe1db49a8b8aee9dfac58a",
  4591. "shasum": ""
  4592. },
  4593. "require": {
  4594. "doctrine/instantiator": "^1.1",
  4595. "ext-dom": "*",
  4596. "ext-json": "*",
  4597. "ext-libxml": "*",
  4598. "ext-mbstring": "*",
  4599. "ext-xml": "*",
  4600. "myclabs/deep-copy": "^1.7",
  4601. "phar-io/manifest": "^1.0.2",
  4602. "phar-io/version": "^2.0",
  4603. "php": "^7.1",
  4604. "phpspec/prophecy": "^1.7",
  4605. "phpunit/php-code-coverage": "^6.0.7",
  4606. "phpunit/php-file-iterator": "^2.0.1",
  4607. "phpunit/php-text-template": "^1.2.1",
  4608. "phpunit/php-timer": "^2.1",
  4609. "sebastian/comparator": "^3.0",
  4610. "sebastian/diff": "^3.0",
  4611. "sebastian/environment": "^4.0",
  4612. "sebastian/exporter": "^3.1",
  4613. "sebastian/global-state": "^2.0",
  4614. "sebastian/object-enumerator": "^3.0.3",
  4615. "sebastian/resource-operations": "^2.0",
  4616. "sebastian/version": "^2.0.1"
  4617. },
  4618. "conflict": {
  4619. "phpunit/phpunit-mock-objects": "*"
  4620. },
  4621. "require-dev": {
  4622. "ext-pdo": "*"
  4623. },
  4624. "suggest": {
  4625. "ext-soap": "*",
  4626. "ext-xdebug": "*",
  4627. "phpunit/php-invoker": "^2.0"
  4628. },
  4629. "bin": [
  4630. "phpunit"
  4631. ],
  4632. "type": "library",
  4633. "extra": {
  4634. "branch-alias": {
  4635. "dev-master": "7.5-dev"
  4636. }
  4637. },
  4638. "autoload": {
  4639. "classmap": [
  4640. "src/"
  4641. ]
  4642. },
  4643. "notification-url": "https://packagist.org/downloads/",
  4644. "license": [
  4645. "BSD-3-Clause"
  4646. ],
  4647. "authors": [
  4648. {
  4649. "name": "Sebastian Bergmann",
  4650. "email": "sebastian@phpunit.de",
  4651. "role": "lead"
  4652. }
  4653. ],
  4654. "description": "The PHP Unit Testing framework.",
  4655. "homepage": "https://phpunit.de/",
  4656. "keywords": [
  4657. "phpunit",
  4658. "testing",
  4659. "xunit"
  4660. ],
  4661. "time": "2019-03-26T13:23:54+00:00"
  4662. },
  4663. {
  4664. "name": "sebastian/code-unit-reverse-lookup",
  4665. "version": "1.0.1",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4669. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4674. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "php": "^5.6 || ^7.0"
  4679. },
  4680. "require-dev": {
  4681. "phpunit/phpunit": "^5.7 || ^6.0"
  4682. },
  4683. "type": "library",
  4684. "extra": {
  4685. "branch-alias": {
  4686. "dev-master": "1.0.x-dev"
  4687. }
  4688. },
  4689. "autoload": {
  4690. "classmap": [
  4691. "src/"
  4692. ]
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "BSD-3-Clause"
  4697. ],
  4698. "authors": [
  4699. {
  4700. "name": "Sebastian Bergmann",
  4701. "email": "sebastian@phpunit.de"
  4702. }
  4703. ],
  4704. "description": "Looks up which function or method a line of code belongs to",
  4705. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4706. "time": "2017-03-04T06:30:41+00:00"
  4707. },
  4708. {
  4709. "name": "sebastian/comparator",
  4710. "version": "3.0.2",
  4711. "source": {
  4712. "type": "git",
  4713. "url": "https://github.com/sebastianbergmann/comparator.git",
  4714. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  4715. },
  4716. "dist": {
  4717. "type": "zip",
  4718. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4719. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4720. "shasum": ""
  4721. },
  4722. "require": {
  4723. "php": "^7.1",
  4724. "sebastian/diff": "^3.0",
  4725. "sebastian/exporter": "^3.1"
  4726. },
  4727. "require-dev": {
  4728. "phpunit/phpunit": "^7.1"
  4729. },
  4730. "type": "library",
  4731. "extra": {
  4732. "branch-alias": {
  4733. "dev-master": "3.0-dev"
  4734. }
  4735. },
  4736. "autoload": {
  4737. "classmap": [
  4738. "src/"
  4739. ]
  4740. },
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "BSD-3-Clause"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "Jeff Welch",
  4748. "email": "whatthejeff@gmail.com"
  4749. },
  4750. {
  4751. "name": "Volker Dusch",
  4752. "email": "github@wallbash.com"
  4753. },
  4754. {
  4755. "name": "Bernhard Schussek",
  4756. "email": "bschussek@2bepublished.at"
  4757. },
  4758. {
  4759. "name": "Sebastian Bergmann",
  4760. "email": "sebastian@phpunit.de"
  4761. }
  4762. ],
  4763. "description": "Provides the functionality to compare PHP values for equality",
  4764. "homepage": "https://github.com/sebastianbergmann/comparator",
  4765. "keywords": [
  4766. "comparator",
  4767. "compare",
  4768. "equality"
  4769. ],
  4770. "time": "2018-07-12T15:12:46+00:00"
  4771. },
  4772. {
  4773. "name": "sebastian/diff",
  4774. "version": "3.0.2",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/sebastianbergmann/diff.git",
  4778. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4783. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4784. "shasum": ""
  4785. },
  4786. "require": {
  4787. "php": "^7.1"
  4788. },
  4789. "require-dev": {
  4790. "phpunit/phpunit": "^7.5 || ^8.0",
  4791. "symfony/process": "^2 || ^3.3 || ^4"
  4792. },
  4793. "type": "library",
  4794. "extra": {
  4795. "branch-alias": {
  4796. "dev-master": "3.0-dev"
  4797. }
  4798. },
  4799. "autoload": {
  4800. "classmap": [
  4801. "src/"
  4802. ]
  4803. },
  4804. "notification-url": "https://packagist.org/downloads/",
  4805. "license": [
  4806. "BSD-3-Clause"
  4807. ],
  4808. "authors": [
  4809. {
  4810. "name": "Kore Nordmann",
  4811. "email": "mail@kore-nordmann.de"
  4812. },
  4813. {
  4814. "name": "Sebastian Bergmann",
  4815. "email": "sebastian@phpunit.de"
  4816. }
  4817. ],
  4818. "description": "Diff implementation",
  4819. "homepage": "https://github.com/sebastianbergmann/diff",
  4820. "keywords": [
  4821. "diff",
  4822. "udiff",
  4823. "unidiff",
  4824. "unified diff"
  4825. ],
  4826. "time": "2019-02-04T06:01:07+00:00"
  4827. },
  4828. {
  4829. "name": "sebastian/environment",
  4830. "version": "4.1.0",
  4831. "source": {
  4832. "type": "git",
  4833. "url": "https://github.com/sebastianbergmann/environment.git",
  4834. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
  4835. },
  4836. "dist": {
  4837. "type": "zip",
  4838. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
  4839. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
  4840. "shasum": ""
  4841. },
  4842. "require": {
  4843. "php": "^7.1"
  4844. },
  4845. "require-dev": {
  4846. "phpunit/phpunit": "^7.5"
  4847. },
  4848. "suggest": {
  4849. "ext-posix": "*"
  4850. },
  4851. "type": "library",
  4852. "extra": {
  4853. "branch-alias": {
  4854. "dev-master": "4.1-dev"
  4855. }
  4856. },
  4857. "autoload": {
  4858. "classmap": [
  4859. "src/"
  4860. ]
  4861. },
  4862. "notification-url": "https://packagist.org/downloads/",
  4863. "license": [
  4864. "BSD-3-Clause"
  4865. ],
  4866. "authors": [
  4867. {
  4868. "name": "Sebastian Bergmann",
  4869. "email": "sebastian@phpunit.de"
  4870. }
  4871. ],
  4872. "description": "Provides functionality to handle HHVM/PHP environments",
  4873. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4874. "keywords": [
  4875. "Xdebug",
  4876. "environment",
  4877. "hhvm"
  4878. ],
  4879. "time": "2019-02-01T05:27:49+00:00"
  4880. },
  4881. {
  4882. "name": "sebastian/exporter",
  4883. "version": "3.1.0",
  4884. "source": {
  4885. "type": "git",
  4886. "url": "https://github.com/sebastianbergmann/exporter.git",
  4887. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  4888. },
  4889. "dist": {
  4890. "type": "zip",
  4891. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  4892. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  4893. "shasum": ""
  4894. },
  4895. "require": {
  4896. "php": "^7.0",
  4897. "sebastian/recursion-context": "^3.0"
  4898. },
  4899. "require-dev": {
  4900. "ext-mbstring": "*",
  4901. "phpunit/phpunit": "^6.0"
  4902. },
  4903. "type": "library",
  4904. "extra": {
  4905. "branch-alias": {
  4906. "dev-master": "3.1.x-dev"
  4907. }
  4908. },
  4909. "autoload": {
  4910. "classmap": [
  4911. "src/"
  4912. ]
  4913. },
  4914. "notification-url": "https://packagist.org/downloads/",
  4915. "license": [
  4916. "BSD-3-Clause"
  4917. ],
  4918. "authors": [
  4919. {
  4920. "name": "Jeff Welch",
  4921. "email": "whatthejeff@gmail.com"
  4922. },
  4923. {
  4924. "name": "Volker Dusch",
  4925. "email": "github@wallbash.com"
  4926. },
  4927. {
  4928. "name": "Bernhard Schussek",
  4929. "email": "bschussek@2bepublished.at"
  4930. },
  4931. {
  4932. "name": "Sebastian Bergmann",
  4933. "email": "sebastian@phpunit.de"
  4934. },
  4935. {
  4936. "name": "Adam Harvey",
  4937. "email": "aharvey@php.net"
  4938. }
  4939. ],
  4940. "description": "Provides the functionality to export PHP variables for visualization",
  4941. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4942. "keywords": [
  4943. "export",
  4944. "exporter"
  4945. ],
  4946. "time": "2017-04-03T13:19:02+00:00"
  4947. },
  4948. {
  4949. "name": "sebastian/global-state",
  4950. "version": "2.0.0",
  4951. "source": {
  4952. "type": "git",
  4953. "url": "https://github.com/sebastianbergmann/global-state.git",
  4954. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  4955. },
  4956. "dist": {
  4957. "type": "zip",
  4958. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4959. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4960. "shasum": ""
  4961. },
  4962. "require": {
  4963. "php": "^7.0"
  4964. },
  4965. "require-dev": {
  4966. "phpunit/phpunit": "^6.0"
  4967. },
  4968. "suggest": {
  4969. "ext-uopz": "*"
  4970. },
  4971. "type": "library",
  4972. "extra": {
  4973. "branch-alias": {
  4974. "dev-master": "2.0-dev"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "classmap": [
  4979. "src/"
  4980. ]
  4981. },
  4982. "notification-url": "https://packagist.org/downloads/",
  4983. "license": [
  4984. "BSD-3-Clause"
  4985. ],
  4986. "authors": [
  4987. {
  4988. "name": "Sebastian Bergmann",
  4989. "email": "sebastian@phpunit.de"
  4990. }
  4991. ],
  4992. "description": "Snapshotting of global state",
  4993. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  4994. "keywords": [
  4995. "global state"
  4996. ],
  4997. "time": "2017-04-27T15:39:26+00:00"
  4998. },
  4999. {
  5000. "name": "sebastian/object-enumerator",
  5001. "version": "3.0.3",
  5002. "source": {
  5003. "type": "git",
  5004. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5005. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  5006. },
  5007. "dist": {
  5008. "type": "zip",
  5009. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5010. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5011. "shasum": ""
  5012. },
  5013. "require": {
  5014. "php": "^7.0",
  5015. "sebastian/object-reflector": "^1.1.1",
  5016. "sebastian/recursion-context": "^3.0"
  5017. },
  5018. "require-dev": {
  5019. "phpunit/phpunit": "^6.0"
  5020. },
  5021. "type": "library",
  5022. "extra": {
  5023. "branch-alias": {
  5024. "dev-master": "3.0.x-dev"
  5025. }
  5026. },
  5027. "autoload": {
  5028. "classmap": [
  5029. "src/"
  5030. ]
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "BSD-3-Clause"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Sebastian Bergmann",
  5039. "email": "sebastian@phpunit.de"
  5040. }
  5041. ],
  5042. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5043. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5044. "time": "2017-08-03T12:35:26+00:00"
  5045. },
  5046. {
  5047. "name": "sebastian/object-reflector",
  5048. "version": "1.1.1",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5052. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  5057. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  5058. "shasum": ""
  5059. },
  5060. "require": {
  5061. "php": "^7.0"
  5062. },
  5063. "require-dev": {
  5064. "phpunit/phpunit": "^6.0"
  5065. },
  5066. "type": "library",
  5067. "extra": {
  5068. "branch-alias": {
  5069. "dev-master": "1.1-dev"
  5070. }
  5071. },
  5072. "autoload": {
  5073. "classmap": [
  5074. "src/"
  5075. ]
  5076. },
  5077. "notification-url": "https://packagist.org/downloads/",
  5078. "license": [
  5079. "BSD-3-Clause"
  5080. ],
  5081. "authors": [
  5082. {
  5083. "name": "Sebastian Bergmann",
  5084. "email": "sebastian@phpunit.de"
  5085. }
  5086. ],
  5087. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5088. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5089. "time": "2017-03-29T09:07:27+00:00"
  5090. },
  5091. {
  5092. "name": "sebastian/recursion-context",
  5093. "version": "3.0.0",
  5094. "source": {
  5095. "type": "git",
  5096. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5097. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  5098. },
  5099. "dist": {
  5100. "type": "zip",
  5101. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5102. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5103. "shasum": ""
  5104. },
  5105. "require": {
  5106. "php": "^7.0"
  5107. },
  5108. "require-dev": {
  5109. "phpunit/phpunit": "^6.0"
  5110. },
  5111. "type": "library",
  5112. "extra": {
  5113. "branch-alias": {
  5114. "dev-master": "3.0.x-dev"
  5115. }
  5116. },
  5117. "autoload": {
  5118. "classmap": [
  5119. "src/"
  5120. ]
  5121. },
  5122. "notification-url": "https://packagist.org/downloads/",
  5123. "license": [
  5124. "BSD-3-Clause"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "Jeff Welch",
  5129. "email": "whatthejeff@gmail.com"
  5130. },
  5131. {
  5132. "name": "Sebastian Bergmann",
  5133. "email": "sebastian@phpunit.de"
  5134. },
  5135. {
  5136. "name": "Adam Harvey",
  5137. "email": "aharvey@php.net"
  5138. }
  5139. ],
  5140. "description": "Provides functionality to recursively process PHP variables",
  5141. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5142. "time": "2017-03-03T06:23:57+00:00"
  5143. },
  5144. {
  5145. "name": "sebastian/resource-operations",
  5146. "version": "2.0.1",
  5147. "source": {
  5148. "type": "git",
  5149. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5150. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  5151. },
  5152. "dist": {
  5153. "type": "zip",
  5154. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5155. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5156. "shasum": ""
  5157. },
  5158. "require": {
  5159. "php": "^7.1"
  5160. },
  5161. "type": "library",
  5162. "extra": {
  5163. "branch-alias": {
  5164. "dev-master": "2.0-dev"
  5165. }
  5166. },
  5167. "autoload": {
  5168. "classmap": [
  5169. "src/"
  5170. ]
  5171. },
  5172. "notification-url": "https://packagist.org/downloads/",
  5173. "license": [
  5174. "BSD-3-Clause"
  5175. ],
  5176. "authors": [
  5177. {
  5178. "name": "Sebastian Bergmann",
  5179. "email": "sebastian@phpunit.de"
  5180. }
  5181. ],
  5182. "description": "Provides a list of PHP built-in functions that operate on resources",
  5183. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5184. "time": "2018-10-04T04:07:39+00:00"
  5185. },
  5186. {
  5187. "name": "sebastian/version",
  5188. "version": "2.0.1",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/sebastianbergmann/version.git",
  5192. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5197. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5198. "shasum": ""
  5199. },
  5200. "require": {
  5201. "php": ">=5.6"
  5202. },
  5203. "type": "library",
  5204. "extra": {
  5205. "branch-alias": {
  5206. "dev-master": "2.0.x-dev"
  5207. }
  5208. },
  5209. "autoload": {
  5210. "classmap": [
  5211. "src/"
  5212. ]
  5213. },
  5214. "notification-url": "https://packagist.org/downloads/",
  5215. "license": [
  5216. "BSD-3-Clause"
  5217. ],
  5218. "authors": [
  5219. {
  5220. "name": "Sebastian Bergmann",
  5221. "email": "sebastian@phpunit.de",
  5222. "role": "lead"
  5223. }
  5224. ],
  5225. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5226. "homepage": "https://github.com/sebastianbergmann/version",
  5227. "time": "2016-10-03T07:35:21+00:00"
  5228. },
  5229. {
  5230. "name": "symfony/browser-kit",
  5231. "version": "v4.2.7",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://github.com/symfony/browser-kit.git",
  5235. "reference": "c09c18cca96d7067152f78956faf55346c338283"
  5236. },
  5237. "dist": {
  5238. "type": "zip",
  5239. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c09c18cca96d7067152f78956faf55346c338283",
  5240. "reference": "c09c18cca96d7067152f78956faf55346c338283",
  5241. "shasum": ""
  5242. },
  5243. "require": {
  5244. "php": "^7.1.3",
  5245. "symfony/dom-crawler": "~3.4|~4.0"
  5246. },
  5247. "require-dev": {
  5248. "symfony/css-selector": "~3.4|~4.0",
  5249. "symfony/process": "~3.4|~4.0"
  5250. },
  5251. "suggest": {
  5252. "symfony/process": ""
  5253. },
  5254. "type": "library",
  5255. "extra": {
  5256. "branch-alias": {
  5257. "dev-master": "4.2-dev"
  5258. }
  5259. },
  5260. "autoload": {
  5261. "psr-4": {
  5262. "Symfony\\Component\\BrowserKit\\": ""
  5263. },
  5264. "exclude-from-classmap": [
  5265. "/Tests/"
  5266. ]
  5267. },
  5268. "notification-url": "https://packagist.org/downloads/",
  5269. "license": [
  5270. "MIT"
  5271. ],
  5272. "authors": [
  5273. {
  5274. "name": "Fabien Potencier",
  5275. "email": "fabien@symfony.com"
  5276. },
  5277. {
  5278. "name": "Symfony Community",
  5279. "homepage": "https://symfony.com/contributors"
  5280. }
  5281. ],
  5282. "description": "Symfony BrowserKit Component",
  5283. "homepage": "https://symfony.com",
  5284. "time": "2019-04-07T09:56:43+00:00"
  5285. },
  5286. {
  5287. "name": "symfony/css-selector",
  5288. "version": "v4.2.7",
  5289. "source": {
  5290. "type": "git",
  5291. "url": "https://github.com/symfony/css-selector.git",
  5292. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a"
  5293. },
  5294. "dist": {
  5295. "type": "zip",
  5296. "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a",
  5297. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a",
  5298. "shasum": ""
  5299. },
  5300. "require": {
  5301. "php": "^7.1.3"
  5302. },
  5303. "type": "library",
  5304. "extra": {
  5305. "branch-alias": {
  5306. "dev-master": "4.2-dev"
  5307. }
  5308. },
  5309. "autoload": {
  5310. "psr-4": {
  5311. "Symfony\\Component\\CssSelector\\": ""
  5312. },
  5313. "exclude-from-classmap": [
  5314. "/Tests/"
  5315. ]
  5316. },
  5317. "notification-url": "https://packagist.org/downloads/",
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "Jean-François Simon",
  5324. "email": "jeanfrancois.simon@sensiolabs.com"
  5325. },
  5326. {
  5327. "name": "Fabien Potencier",
  5328. "email": "fabien@symfony.com"
  5329. },
  5330. {
  5331. "name": "Symfony Community",
  5332. "homepage": "https://symfony.com/contributors"
  5333. }
  5334. ],
  5335. "description": "Symfony CssSelector Component",
  5336. "homepage": "https://symfony.com",
  5337. "time": "2019-01-16T20:31:39+00:00"
  5338. },
  5339. {
  5340. "name": "symfony/dom-crawler",
  5341. "version": "v4.2.7",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/symfony/dom-crawler.git",
  5345. "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/53c97769814c80a84a8403efcf3ae7ae966d53bb",
  5350. "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb",
  5351. "shasum": ""
  5352. },
  5353. "require": {
  5354. "php": "^7.1.3",
  5355. "symfony/polyfill-ctype": "~1.8",
  5356. "symfony/polyfill-mbstring": "~1.0"
  5357. },
  5358. "require-dev": {
  5359. "symfony/css-selector": "~3.4|~4.0"
  5360. },
  5361. "suggest": {
  5362. "symfony/css-selector": ""
  5363. },
  5364. "type": "library",
  5365. "extra": {
  5366. "branch-alias": {
  5367. "dev-master": "4.2-dev"
  5368. }
  5369. },
  5370. "autoload": {
  5371. "psr-4": {
  5372. "Symfony\\Component\\DomCrawler\\": ""
  5373. },
  5374. "exclude-from-classmap": [
  5375. "/Tests/"
  5376. ]
  5377. },
  5378. "notification-url": "https://packagist.org/downloads/",
  5379. "license": [
  5380. "MIT"
  5381. ],
  5382. "authors": [
  5383. {
  5384. "name": "Fabien Potencier",
  5385. "email": "fabien@symfony.com"
  5386. },
  5387. {
  5388. "name": "Symfony Community",
  5389. "homepage": "https://symfony.com/contributors"
  5390. }
  5391. ],
  5392. "description": "Symfony DomCrawler Component",
  5393. "homepage": "https://symfony.com",
  5394. "time": "2019-02-23T15:17:42+00:00"
  5395. },
  5396. {
  5397. "name": "symfony/finder",
  5398. "version": "v4.2.7",
  5399. "source": {
  5400. "type": "git",
  5401. "url": "https://github.com/symfony/finder.git",
  5402. "reference": "e45135658bd6c14b61850bf131c4f09a55133f69"
  5403. },
  5404. "dist": {
  5405. "type": "zip",
  5406. "url": "https://api.github.com/repos/symfony/finder/zipball/e45135658bd6c14b61850bf131c4f09a55133f69",
  5407. "reference": "e45135658bd6c14b61850bf131c4f09a55133f69",
  5408. "shasum": ""
  5409. },
  5410. "require": {
  5411. "php": "^7.1.3"
  5412. },
  5413. "type": "library",
  5414. "extra": {
  5415. "branch-alias": {
  5416. "dev-master": "4.2-dev"
  5417. }
  5418. },
  5419. "autoload": {
  5420. "psr-4": {
  5421. "Symfony\\Component\\Finder\\": ""
  5422. },
  5423. "exclude-from-classmap": [
  5424. "/Tests/"
  5425. ]
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "Fabien Potencier",
  5434. "email": "fabien@symfony.com"
  5435. },
  5436. {
  5437. "name": "Symfony Community",
  5438. "homepage": "https://symfony.com/contributors"
  5439. }
  5440. ],
  5441. "description": "Symfony Finder Component",
  5442. "homepage": "https://symfony.com",
  5443. "time": "2019-04-06T13:51:08+00:00"
  5444. },
  5445. {
  5446. "name": "theseer/tokenizer",
  5447. "version": "1.1.2",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://github.com/theseer/tokenizer.git",
  5451. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  5456. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  5457. "shasum": ""
  5458. },
  5459. "require": {
  5460. "ext-dom": "*",
  5461. "ext-tokenizer": "*",
  5462. "ext-xmlwriter": "*",
  5463. "php": "^7.0"
  5464. },
  5465. "type": "library",
  5466. "autoload": {
  5467. "classmap": [
  5468. "src/"
  5469. ]
  5470. },
  5471. "notification-url": "https://packagist.org/downloads/",
  5472. "license": [
  5473. "BSD-3-Clause"
  5474. ],
  5475. "authors": [
  5476. {
  5477. "name": "Arne Blankerts",
  5478. "email": "arne@blankerts.de",
  5479. "role": "Developer"
  5480. }
  5481. ],
  5482. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5483. "time": "2019-04-04T09:56:43+00:00"
  5484. },
  5485. {
  5486. "name": "victorjonsson/markdowndocs",
  5487. "version": "dev-master",
  5488. "source": {
  5489. "type": "git",
  5490. "url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator.git",
  5491. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed"
  5492. },
  5493. "dist": {
  5494. "type": "zip",
  5495. "url": "https://api.github.com/repos/trilbymedia/PHP-Markdown-Documentation-Generator/zipball/c9fa153b28a79f5da89ec32aa501be92db212aed",
  5496. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed",
  5497. "shasum": ""
  5498. },
  5499. "require": {
  5500. "php": ">=5.5.0",
  5501. "symfony/console": ">=2.6"
  5502. },
  5503. "require-dev": {
  5504. "phpunit/phpunit": "3.7.23"
  5505. },
  5506. "bin": [
  5507. "bin/phpdoc-md"
  5508. ],
  5509. "type": "library",
  5510. "autoload": {
  5511. "psr-0": {
  5512. "PHPDocsMD": "src/"
  5513. }
  5514. },
  5515. "license": [
  5516. "MIT"
  5517. ],
  5518. "authors": [
  5519. {
  5520. "name": "Victor Jonsson",
  5521. "email": "kontakt@victorjonsson.se"
  5522. }
  5523. ],
  5524. "description": "Command line tool for generating markdown-formatted class documentation",
  5525. "homepage": "https://github.com/victorjonsson/PHP-Markdown-Documentation-Generator",
  5526. "support": {
  5527. "source": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator/tree/master"
  5528. },
  5529. "time": "2017-09-20T13:29:22+00:00"
  5530. },
  5531. {
  5532. "name": "webmozart/assert",
  5533. "version": "1.4.0",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/webmozart/assert.git",
  5537. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  5542. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": "^5.3.3 || ^7.0",
  5547. "symfony/polyfill-ctype": "^1.8"
  5548. },
  5549. "require-dev": {
  5550. "phpunit/phpunit": "^4.6",
  5551. "sebastian/version": "^1.0.1"
  5552. },
  5553. "type": "library",
  5554. "extra": {
  5555. "branch-alias": {
  5556. "dev-master": "1.3-dev"
  5557. }
  5558. },
  5559. "autoload": {
  5560. "psr-4": {
  5561. "Webmozart\\Assert\\": "src/"
  5562. }
  5563. },
  5564. "notification-url": "https://packagist.org/downloads/",
  5565. "license": [
  5566. "MIT"
  5567. ],
  5568. "authors": [
  5569. {
  5570. "name": "Bernhard Schussek",
  5571. "email": "bschussek@gmail.com"
  5572. }
  5573. ],
  5574. "description": "Assertions to validate method input/output with nice error messages.",
  5575. "keywords": [
  5576. "assert",
  5577. "check",
  5578. "validate"
  5579. ],
  5580. "time": "2018-12-25T11:19:39+00:00"
  5581. }
  5582. ],
  5583. "aliases": [],
  5584. "minimum-stability": "stable",
  5585. "stability-flags": {
  5586. "victorjonsson/markdowndocs": 20
  5587. },
  5588. "prefer-stable": false,
  5589. "prefer-lowest": false,
  5590. "platform": {
  5591. "php": ">=7.1.3",
  5592. "ext-json": "*",
  5593. "ext-mbstring": "*",
  5594. "ext-openssl": "*",
  5595. "ext-curl": "*",
  5596. "ext-zip": "*",
  5597. "ext-dom": "*"
  5598. },
  5599. "platform-dev": [],
  5600. "platform-overrides": {
  5601. "php": "7.1.3"
  5602. }
  5603. }