composer.lock 219 KB

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