composer.lock 194 KB

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