composer.lock 204 KB

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