composer.lock 202 KB

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