composer.lock 260 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408
  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": "fdf3d3df2a9fc1dfdc3a8579713b659f",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  20. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dasprid/enum": "^1.0",
  25. "ext-iconv": "*",
  26. "php": "^7.1"
  27. },
  28. "require-dev": {
  29. "phly/keep-a-changelog": "^1.4",
  30. "phpunit/phpunit": "^6.4",
  31. "squizlabs/php_codesniffer": "^3.1"
  32. },
  33. "suggest": {
  34. "ext-imagick": "to generate QR code images"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "BaconQrCode\\": "src/"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "BSD-2-Clause"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Ben Scholzen 'DASPRiD'",
  49. "role": "Developer",
  50. "email": "mail@dasprids.de",
  51. "homepage": "http://www.dasprids.de"
  52. }
  53. ],
  54. "description": "BaconQrCode is a QR code generator for PHP.",
  55. "homepage": "https://github.com/Bacon/BaconQrCode",
  56. "time": "2018-04-25T17:53:56+00:00"
  57. },
  58. {
  59. "name": "dasprid/enum",
  60. "version": "1.0.0",
  61. "source": {
  62. "type": "git",
  63. "url": "https://github.com/DASPRiD/Enum.git",
  64. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b"
  65. },
  66. "dist": {
  67. "type": "zip",
  68. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b",
  69. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b",
  70. "shasum": ""
  71. },
  72. "require-dev": {
  73. "phpunit/phpunit": "^6.4",
  74. "squizlabs/php_codesniffer": "^3.1"
  75. },
  76. "type": "library",
  77. "autoload": {
  78. "psr-4": {
  79. "DASPRiD\\Enum\\": "src/"
  80. }
  81. },
  82. "notification-url": "https://packagist.org/downloads/",
  83. "license": [
  84. "BSD-2-Clause"
  85. ],
  86. "authors": [
  87. {
  88. "name": "Ben Scholzen 'DASPRiD'",
  89. "email": "mail@dasprids.de",
  90. "homepage": "https://dasprids.de/"
  91. }
  92. ],
  93. "description": "PHP 7.1 enum implementation",
  94. "keywords": [
  95. "enum",
  96. "map"
  97. ],
  98. "time": "2017-10-25T22:45:27+00:00"
  99. },
  100. {
  101. "name": "defuse/php-encryption",
  102. "version": "v2.2.1",
  103. "source": {
  104. "type": "git",
  105. "url": "https://github.com/defuse/php-encryption.git",
  106. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620"
  107. },
  108. "dist": {
  109. "type": "zip",
  110. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/0f407c43b953d571421e0020ba92082ed5fb7620",
  111. "reference": "0f407c43b953d571421e0020ba92082ed5fb7620",
  112. "shasum": ""
  113. },
  114. "require": {
  115. "ext-openssl": "*",
  116. "paragonie/random_compat": ">= 2",
  117. "php": ">=5.4.0"
  118. },
  119. "require-dev": {
  120. "nikic/php-parser": "^2.0|^3.0|^4.0",
  121. "phpunit/phpunit": "^4|^5"
  122. },
  123. "bin": [
  124. "bin/generate-defuse-key"
  125. ],
  126. "type": "library",
  127. "autoload": {
  128. "psr-4": {
  129. "Defuse\\Crypto\\": "src"
  130. }
  131. },
  132. "notification-url": "https://packagist.org/downloads/",
  133. "license": [
  134. "MIT"
  135. ],
  136. "authors": [
  137. {
  138. "name": "Taylor Hornby",
  139. "email": "taylor@defuse.ca",
  140. "homepage": "https://defuse.ca/"
  141. },
  142. {
  143. "name": "Scott Arciszewski",
  144. "email": "info@paragonie.com",
  145. "homepage": "https://paragonie.com"
  146. }
  147. ],
  148. "description": "Secure PHP Encryption Library",
  149. "keywords": [
  150. "aes",
  151. "authenticated encryption",
  152. "cipher",
  153. "crypto",
  154. "cryptography",
  155. "encrypt",
  156. "encryption",
  157. "openssl",
  158. "security",
  159. "symmetric key cryptography"
  160. ],
  161. "time": "2018-07-24T23:27:56+00:00"
  162. },
  163. {
  164. "name": "dnoegel/php-xdg-base-dir",
  165. "version": "0.1",
  166. "source": {
  167. "type": "git",
  168. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  169. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  170. },
  171. "dist": {
  172. "type": "zip",
  173. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  174. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  175. "shasum": ""
  176. },
  177. "require": {
  178. "php": ">=5.3.2"
  179. },
  180. "require-dev": {
  181. "phpunit/phpunit": "@stable"
  182. },
  183. "type": "project",
  184. "autoload": {
  185. "psr-4": {
  186. "XdgBaseDir\\": "src/"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "description": "implementation of xdg base directory specification for php",
  194. "time": "2014-10-24T07:27:01+00:00"
  195. },
  196. {
  197. "name": "doctrine/cache",
  198. "version": "v1.8.1",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/doctrine/cache.git",
  202. "reference": "d4374ae95b36062d02ef310100ed33d78738d76c"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/doctrine/cache/zipball/d4374ae95b36062d02ef310100ed33d78738d76c",
  207. "reference": "d4374ae95b36062d02ef310100ed33d78738d76c",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": "~7.1"
  212. },
  213. "conflict": {
  214. "doctrine/common": ">2.2,<2.4"
  215. },
  216. "require-dev": {
  217. "alcaeus/mongo-php-adapter": "^1.1",
  218. "doctrine/coding-standard": "^4.0",
  219. "mongodb/mongodb": "^1.1",
  220. "phpunit/phpunit": "^7.0",
  221. "predis/predis": "~1.0"
  222. },
  223. "suggest": {
  224. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  225. },
  226. "type": "library",
  227. "extra": {
  228. "branch-alias": {
  229. "dev-master": "1.8.x-dev"
  230. }
  231. },
  232. "autoload": {
  233. "psr-4": {
  234. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Guilherme Blanco",
  244. "email": "guilhermeblanco@gmail.com"
  245. },
  246. {
  247. "name": "Roman Borschel",
  248. "email": "roman@code-factory.org"
  249. },
  250. {
  251. "name": "Benjamin Eberlei",
  252. "email": "kontakt@beberlei.de"
  253. },
  254. {
  255. "name": "Jonathan Wage",
  256. "email": "jonwage@gmail.com"
  257. },
  258. {
  259. "name": "Johannes Schmitt",
  260. "email": "schmittjoh@gmail.com"
  261. }
  262. ],
  263. "description": "Caching library offering an object-oriented API for many cache backends",
  264. "homepage": "https://www.doctrine-project.org",
  265. "keywords": [
  266. "cache",
  267. "caching"
  268. ],
  269. "time": "2019-10-28T09:31:32+00:00"
  270. },
  271. {
  272. "name": "doctrine/dbal",
  273. "version": "v2.10.0",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/doctrine/dbal.git",
  277. "reference": "0c9a646775ef549eb0a213a4f9bd4381d9b4d934"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0c9a646775ef549eb0a213a4f9bd4381d9b4d934",
  282. "reference": "0c9a646775ef549eb0a213a4f9bd4381d9b4d934",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "doctrine/cache": "^1.0",
  287. "doctrine/event-manager": "^1.0",
  288. "ext-pdo": "*",
  289. "php": "^7.2"
  290. },
  291. "require-dev": {
  292. "doctrine/coding-standard": "^6.0",
  293. "jetbrains/phpstorm-stubs": "^2019.1",
  294. "phpstan/phpstan": "^0.11.3",
  295. "phpunit/phpunit": "^8.4.1",
  296. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0"
  297. },
  298. "suggest": {
  299. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  300. },
  301. "bin": [
  302. "bin/doctrine-dbal"
  303. ],
  304. "type": "library",
  305. "extra": {
  306. "branch-alias": {
  307. "dev-master": "2.10.x-dev",
  308. "dev-develop": "3.0.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Guilherme Blanco",
  323. "email": "guilhermeblanco@gmail.com"
  324. },
  325. {
  326. "name": "Roman Borschel",
  327. "email": "roman@code-factory.org"
  328. },
  329. {
  330. "name": "Benjamin Eberlei",
  331. "email": "kontakt@beberlei.de"
  332. },
  333. {
  334. "name": "Jonathan Wage",
  335. "email": "jonwage@gmail.com"
  336. }
  337. ],
  338. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  339. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  340. "keywords": [
  341. "abstraction",
  342. "database",
  343. "db2",
  344. "dbal",
  345. "mariadb",
  346. "mssql",
  347. "mysql",
  348. "oci8",
  349. "oracle",
  350. "pdo",
  351. "pgsql",
  352. "postgresql",
  353. "queryobject",
  354. "sasql",
  355. "sql",
  356. "sqlanywhere",
  357. "sqlite",
  358. "sqlserver",
  359. "sqlsrv"
  360. ],
  361. "time": "2019-11-03T16:50:43+00:00"
  362. },
  363. {
  364. "name": "doctrine/event-manager",
  365. "version": "v1.0.0",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/doctrine/event-manager.git",
  369. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  374. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "php": "^7.1"
  379. },
  380. "conflict": {
  381. "doctrine/common": "<2.9@dev"
  382. },
  383. "require-dev": {
  384. "doctrine/coding-standard": "^4.0",
  385. "phpunit/phpunit": "^7.0"
  386. },
  387. "type": "library",
  388. "extra": {
  389. "branch-alias": {
  390. "dev-master": "1.0.x-dev"
  391. }
  392. },
  393. "autoload": {
  394. "psr-4": {
  395. "Doctrine\\Common\\": "lib/Doctrine/Common"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "MIT"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Roman Borschel",
  405. "email": "roman@code-factory.org"
  406. },
  407. {
  408. "name": "Benjamin Eberlei",
  409. "email": "kontakt@beberlei.de"
  410. },
  411. {
  412. "name": "Guilherme Blanco",
  413. "email": "guilhermeblanco@gmail.com"
  414. },
  415. {
  416. "name": "Jonathan Wage",
  417. "email": "jonwage@gmail.com"
  418. },
  419. {
  420. "name": "Johannes Schmitt",
  421. "email": "schmittjoh@gmail.com"
  422. },
  423. {
  424. "name": "Marco Pivetta",
  425. "email": "ocramius@gmail.com"
  426. }
  427. ],
  428. "description": "Doctrine Event Manager component",
  429. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  430. "keywords": [
  431. "event",
  432. "eventdispatcher",
  433. "eventmanager"
  434. ],
  435. "time": "2018-06-11T11:59:03+00:00"
  436. },
  437. {
  438. "name": "doctrine/inflector",
  439. "version": "v1.3.0",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/doctrine/inflector.git",
  443. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  448. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "php": "^7.1"
  453. },
  454. "require-dev": {
  455. "phpunit/phpunit": "^6.2"
  456. },
  457. "type": "library",
  458. "extra": {
  459. "branch-alias": {
  460. "dev-master": "1.3.x-dev"
  461. }
  462. },
  463. "autoload": {
  464. "psr-4": {
  465. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  466. }
  467. },
  468. "notification-url": "https://packagist.org/downloads/",
  469. "license": [
  470. "MIT"
  471. ],
  472. "authors": [
  473. {
  474. "name": "Roman Borschel",
  475. "email": "roman@code-factory.org"
  476. },
  477. {
  478. "name": "Benjamin Eberlei",
  479. "email": "kontakt@beberlei.de"
  480. },
  481. {
  482. "name": "Guilherme Blanco",
  483. "email": "guilhermeblanco@gmail.com"
  484. },
  485. {
  486. "name": "Jonathan Wage",
  487. "email": "jonwage@gmail.com"
  488. },
  489. {
  490. "name": "Johannes Schmitt",
  491. "email": "schmittjoh@gmail.com"
  492. }
  493. ],
  494. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  495. "homepage": "http://www.doctrine-project.org",
  496. "keywords": [
  497. "inflection",
  498. "pluralize",
  499. "singularize",
  500. "string"
  501. ],
  502. "time": "2018-01-09T20:05:19+00:00"
  503. },
  504. {
  505. "name": "doctrine/lexer",
  506. "version": "1.1.0",
  507. "source": {
  508. "type": "git",
  509. "url": "https://github.com/doctrine/lexer.git",
  510. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea"
  511. },
  512. "dist": {
  513. "type": "zip",
  514. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea",
  515. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea",
  516. "shasum": ""
  517. },
  518. "require": {
  519. "php": "^7.2"
  520. },
  521. "require-dev": {
  522. "doctrine/coding-standard": "^6.0",
  523. "phpstan/phpstan": "^0.11.8",
  524. "phpunit/phpunit": "^8.2"
  525. },
  526. "type": "library",
  527. "extra": {
  528. "branch-alias": {
  529. "dev-master": "1.1.x-dev"
  530. }
  531. },
  532. "autoload": {
  533. "psr-4": {
  534. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  535. }
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "MIT"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Guilherme Blanco",
  544. "email": "guilhermeblanco@gmail.com"
  545. },
  546. {
  547. "name": "Roman Borschel",
  548. "email": "roman@code-factory.org"
  549. },
  550. {
  551. "name": "Johannes Schmitt",
  552. "email": "schmittjoh@gmail.com"
  553. }
  554. ],
  555. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  556. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  557. "keywords": [
  558. "annotations",
  559. "docblock",
  560. "lexer",
  561. "parser",
  562. "php"
  563. ],
  564. "time": "2019-07-30T19:33:28+00:00"
  565. },
  566. {
  567. "name": "dragonmantank/cron-expression",
  568. "version": "v2.3.0",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/dragonmantank/cron-expression.git",
  572. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  577. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": "^7.0"
  582. },
  583. "require-dev": {
  584. "phpunit/phpunit": "^6.4|^7.0"
  585. },
  586. "type": "library",
  587. "extra": {
  588. "branch-alias": {
  589. "dev-master": "2.3-dev"
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "Cron\\": "src/Cron/"
  595. }
  596. },
  597. "notification-url": "https://packagist.org/downloads/",
  598. "license": [
  599. "MIT"
  600. ],
  601. "authors": [
  602. {
  603. "name": "Michael Dowling",
  604. "email": "mtdowling@gmail.com",
  605. "homepage": "https://github.com/mtdowling"
  606. },
  607. {
  608. "name": "Chris Tankersley",
  609. "email": "chris@ctankersley.com",
  610. "homepage": "https://github.com/dragonmantank"
  611. }
  612. ],
  613. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  614. "keywords": [
  615. "cron",
  616. "schedule"
  617. ],
  618. "time": "2019-03-31T00:38:28+00:00"
  619. },
  620. {
  621. "name": "egulias/email-validator",
  622. "version": "2.1.11",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/egulias/EmailValidator.git",
  626. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  631. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  632. "shasum": ""
  633. },
  634. "require": {
  635. "doctrine/lexer": "^1.0.1",
  636. "php": ">= 5.5"
  637. },
  638. "require-dev": {
  639. "dominicsayers/isemail": "dev-master",
  640. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  641. "satooshi/php-coveralls": "^1.0.1",
  642. "symfony/phpunit-bridge": "^4.4@dev"
  643. },
  644. "suggest": {
  645. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  646. },
  647. "type": "library",
  648. "extra": {
  649. "branch-alias": {
  650. "dev-master": "2.1.x-dev"
  651. }
  652. },
  653. "autoload": {
  654. "psr-4": {
  655. "Egulias\\EmailValidator\\": "EmailValidator"
  656. }
  657. },
  658. "notification-url": "https://packagist.org/downloads/",
  659. "license": [
  660. "MIT"
  661. ],
  662. "authors": [
  663. {
  664. "name": "Eduardo Gulias Davis"
  665. }
  666. ],
  667. "description": "A library for validating emails against several RFCs",
  668. "homepage": "https://github.com/egulias/EmailValidator",
  669. "keywords": [
  670. "email",
  671. "emailvalidation",
  672. "emailvalidator",
  673. "validation",
  674. "validator"
  675. ],
  676. "time": "2019-08-13T17:33:27+00:00"
  677. },
  678. {
  679. "name": "erusev/parsedown",
  680. "version": "1.7.3",
  681. "source": {
  682. "type": "git",
  683. "url": "https://github.com/erusev/parsedown.git",
  684. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  685. },
  686. "dist": {
  687. "type": "zip",
  688. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  689. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  690. "shasum": ""
  691. },
  692. "require": {
  693. "ext-mbstring": "*",
  694. "php": ">=5.3.0"
  695. },
  696. "require-dev": {
  697. "phpunit/phpunit": "^4.8.35"
  698. },
  699. "type": "library",
  700. "autoload": {
  701. "psr-0": {
  702. "Parsedown": ""
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "MIT"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Emanuil Rusev",
  712. "email": "hello@erusev.com",
  713. "homepage": "http://erusev.com"
  714. }
  715. ],
  716. "description": "Parser for Markdown.",
  717. "homepage": "http://parsedown.org",
  718. "keywords": [
  719. "markdown",
  720. "parser"
  721. ],
  722. "time": "2019-03-17T18:48:37+00:00"
  723. },
  724. {
  725. "name": "fideloper/proxy",
  726. "version": "4.2.1",
  727. "source": {
  728. "type": "git",
  729. "url": "https://github.com/fideloper/TrustedProxy.git",
  730. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a"
  731. },
  732. "dist": {
  733. "type": "zip",
  734. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  735. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  736. "shasum": ""
  737. },
  738. "require": {
  739. "illuminate/contracts": "^5.0|^6.0|^7.0",
  740. "php": ">=5.4.0"
  741. },
  742. "require-dev": {
  743. "illuminate/http": "^5.0|^6.0|^7.0",
  744. "mockery/mockery": "^1.0",
  745. "phpunit/phpunit": "^6.0"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "laravel": {
  750. "providers": [
  751. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  752. ]
  753. }
  754. },
  755. "autoload": {
  756. "psr-4": {
  757. "Fideloper\\Proxy\\": "src/"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Chris Fidao",
  767. "email": "fideloper@gmail.com"
  768. }
  769. ],
  770. "description": "Set trusted proxies for Laravel",
  771. "keywords": [
  772. "load balancing",
  773. "proxy",
  774. "trusted proxy"
  775. ],
  776. "time": "2019-09-03T16:45:42+00:00"
  777. },
  778. {
  779. "name": "firebase/php-jwt",
  780. "version": "v5.0.0",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/firebase/php-jwt.git",
  784. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  789. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  790. "shasum": ""
  791. },
  792. "require": {
  793. "php": ">=5.3.0"
  794. },
  795. "require-dev": {
  796. "phpunit/phpunit": " 4.8.35"
  797. },
  798. "type": "library",
  799. "autoload": {
  800. "psr-4": {
  801. "Firebase\\JWT\\": "src"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "BSD-3-Clause"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Neuman Vong",
  811. "email": "neuman+pear@twilio.com",
  812. "role": "Developer"
  813. },
  814. {
  815. "name": "Anant Narayanan",
  816. "email": "anant@php.net",
  817. "role": "Developer"
  818. }
  819. ],
  820. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  821. "homepage": "https://github.com/firebase/php-jwt",
  822. "time": "2017-06-27T22:17:23+00:00"
  823. },
  824. {
  825. "name": "guzzlehttp/guzzle",
  826. "version": "6.4.1",
  827. "source": {
  828. "type": "git",
  829. "url": "https://github.com/guzzle/guzzle.git",
  830. "reference": "0895c932405407fd3a7368b6910c09a24d26db11"
  831. },
  832. "dist": {
  833. "type": "zip",
  834. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11",
  835. "reference": "0895c932405407fd3a7368b6910c09a24d26db11",
  836. "shasum": ""
  837. },
  838. "require": {
  839. "ext-json": "*",
  840. "guzzlehttp/promises": "^1.0",
  841. "guzzlehttp/psr7": "^1.6.1",
  842. "php": ">=5.5"
  843. },
  844. "require-dev": {
  845. "ext-curl": "*",
  846. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  847. "psr/log": "^1.1"
  848. },
  849. "suggest": {
  850. "psr/log": "Required for using the Log middleware"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-master": "6.3-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "GuzzleHttp\\": "src/"
  861. },
  862. "files": [
  863. "src/functions_include.php"
  864. ]
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Michael Dowling",
  873. "email": "mtdowling@gmail.com",
  874. "homepage": "https://github.com/mtdowling"
  875. }
  876. ],
  877. "description": "Guzzle is a PHP HTTP client library",
  878. "homepage": "http://guzzlephp.org/",
  879. "keywords": [
  880. "client",
  881. "curl",
  882. "framework",
  883. "http",
  884. "http client",
  885. "rest",
  886. "web service"
  887. ],
  888. "time": "2019-10-23T15:58:00+00:00"
  889. },
  890. {
  891. "name": "guzzlehttp/promises",
  892. "version": "v1.3.1",
  893. "source": {
  894. "type": "git",
  895. "url": "https://github.com/guzzle/promises.git",
  896. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  897. },
  898. "dist": {
  899. "type": "zip",
  900. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  901. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  902. "shasum": ""
  903. },
  904. "require": {
  905. "php": ">=5.5.0"
  906. },
  907. "require-dev": {
  908. "phpunit/phpunit": "^4.0"
  909. },
  910. "type": "library",
  911. "extra": {
  912. "branch-alias": {
  913. "dev-master": "1.4-dev"
  914. }
  915. },
  916. "autoload": {
  917. "psr-4": {
  918. "GuzzleHttp\\Promise\\": "src/"
  919. },
  920. "files": [
  921. "src/functions_include.php"
  922. ]
  923. },
  924. "notification-url": "https://packagist.org/downloads/",
  925. "license": [
  926. "MIT"
  927. ],
  928. "authors": [
  929. {
  930. "name": "Michael Dowling",
  931. "email": "mtdowling@gmail.com",
  932. "homepage": "https://github.com/mtdowling"
  933. }
  934. ],
  935. "description": "Guzzle promises library",
  936. "keywords": [
  937. "promise"
  938. ],
  939. "time": "2016-12-20T10:07:11+00:00"
  940. },
  941. {
  942. "name": "guzzlehttp/psr7",
  943. "version": "1.6.1",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/guzzle/psr7.git",
  947. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  952. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "php": ">=5.4.0",
  957. "psr/http-message": "~1.0",
  958. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  959. },
  960. "provide": {
  961. "psr/http-message-implementation": "1.0"
  962. },
  963. "require-dev": {
  964. "ext-zlib": "*",
  965. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  966. },
  967. "suggest": {
  968. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  969. },
  970. "type": "library",
  971. "extra": {
  972. "branch-alias": {
  973. "dev-master": "1.6-dev"
  974. }
  975. },
  976. "autoload": {
  977. "psr-4": {
  978. "GuzzleHttp\\Psr7\\": "src/"
  979. },
  980. "files": [
  981. "src/functions_include.php"
  982. ]
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "MIT"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Michael Dowling",
  991. "email": "mtdowling@gmail.com",
  992. "homepage": "https://github.com/mtdowling"
  993. },
  994. {
  995. "name": "Tobias Schultze",
  996. "homepage": "https://github.com/Tobion"
  997. }
  998. ],
  999. "description": "PSR-7 message implementation that also provides common utility methods",
  1000. "keywords": [
  1001. "http",
  1002. "message",
  1003. "psr-7",
  1004. "request",
  1005. "response",
  1006. "stream",
  1007. "uri",
  1008. "url"
  1009. ],
  1010. "time": "2019-07-01T23:21:34+00:00"
  1011. },
  1012. {
  1013. "name": "intervention/image",
  1014. "version": "2.5.1",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/Intervention/image.git",
  1018. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1023. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "ext-fileinfo": "*",
  1028. "guzzlehttp/psr7": "~1.1",
  1029. "php": ">=5.4.0"
  1030. },
  1031. "require-dev": {
  1032. "mockery/mockery": "~0.9.2",
  1033. "phpunit/phpunit": "^4.8 || ^5.7"
  1034. },
  1035. "suggest": {
  1036. "ext-gd": "to use GD library based image processing.",
  1037. "ext-imagick": "to use Imagick based image processing.",
  1038. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1039. },
  1040. "type": "library",
  1041. "extra": {
  1042. "branch-alias": {
  1043. "dev-master": "2.4-dev"
  1044. },
  1045. "laravel": {
  1046. "providers": [
  1047. "Intervention\\Image\\ImageServiceProvider"
  1048. ],
  1049. "aliases": {
  1050. "Image": "Intervention\\Image\\Facades\\Image"
  1051. }
  1052. }
  1053. },
  1054. "autoload": {
  1055. "psr-4": {
  1056. "Intervention\\Image\\": "src/Intervention/Image"
  1057. }
  1058. },
  1059. "notification-url": "https://packagist.org/downloads/",
  1060. "license": [
  1061. "MIT"
  1062. ],
  1063. "authors": [
  1064. {
  1065. "name": "Oliver Vogel",
  1066. "email": "oliver@olivervogel.com",
  1067. "homepage": "http://olivervogel.com/"
  1068. }
  1069. ],
  1070. "description": "Image handling and manipulation library with support for Laravel integration",
  1071. "homepage": "http://image.intervention.io/",
  1072. "keywords": [
  1073. "gd",
  1074. "image",
  1075. "imagick",
  1076. "laravel",
  1077. "thumbnail",
  1078. "watermark"
  1079. ],
  1080. "time": "2019-11-02T09:15:47+00:00"
  1081. },
  1082. {
  1083. "name": "jakub-onderka/php-console-color",
  1084. "version": "v0.2",
  1085. "source": {
  1086. "type": "git",
  1087. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1088. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1089. },
  1090. "dist": {
  1091. "type": "zip",
  1092. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1093. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1094. "shasum": ""
  1095. },
  1096. "require": {
  1097. "php": ">=5.4.0"
  1098. },
  1099. "require-dev": {
  1100. "jakub-onderka/php-code-style": "1.0",
  1101. "jakub-onderka/php-parallel-lint": "1.0",
  1102. "jakub-onderka/php-var-dump-check": "0.*",
  1103. "phpunit/phpunit": "~4.3",
  1104. "squizlabs/php_codesniffer": "1.*"
  1105. },
  1106. "type": "library",
  1107. "autoload": {
  1108. "psr-4": {
  1109. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1110. }
  1111. },
  1112. "notification-url": "https://packagist.org/downloads/",
  1113. "license": [
  1114. "BSD-2-Clause"
  1115. ],
  1116. "authors": [
  1117. {
  1118. "name": "Jakub Onderka",
  1119. "email": "jakub.onderka@gmail.com"
  1120. }
  1121. ],
  1122. "time": "2018-09-29T17:23:10+00:00"
  1123. },
  1124. {
  1125. "name": "jakub-onderka/php-console-highlighter",
  1126. "version": "v0.4",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1130. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1135. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1136. "shasum": ""
  1137. },
  1138. "require": {
  1139. "ext-tokenizer": "*",
  1140. "jakub-onderka/php-console-color": "~0.2",
  1141. "php": ">=5.4.0"
  1142. },
  1143. "require-dev": {
  1144. "jakub-onderka/php-code-style": "~1.0",
  1145. "jakub-onderka/php-parallel-lint": "~1.0",
  1146. "jakub-onderka/php-var-dump-check": "~0.1",
  1147. "phpunit/phpunit": "~4.0",
  1148. "squizlabs/php_codesniffer": "~1.5"
  1149. },
  1150. "type": "library",
  1151. "autoload": {
  1152. "psr-4": {
  1153. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Jakub Onderka",
  1163. "email": "acci@acci.cz",
  1164. "homepage": "http://www.acci.cz/"
  1165. }
  1166. ],
  1167. "description": "Highlight PHP code in terminal",
  1168. "time": "2018-09-29T18:48:56+00:00"
  1169. },
  1170. {
  1171. "name": "laravel/framework",
  1172. "version": "v6.4.1",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/laravel/framework.git",
  1176. "reference": "ebd8fcc038effa8c5f8791346c48047f7d0ed320"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://api.github.com/repos/laravel/framework/zipball/ebd8fcc038effa8c5f8791346c48047f7d0ed320",
  1181. "reference": "ebd8fcc038effa8c5f8791346c48047f7d0ed320",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "doctrine/inflector": "^1.1",
  1186. "dragonmantank/cron-expression": "^2.0",
  1187. "egulias/email-validator": "^2.1.10",
  1188. "erusev/parsedown": "^1.7",
  1189. "ext-json": "*",
  1190. "ext-mbstring": "*",
  1191. "ext-openssl": "*",
  1192. "league/flysystem": "^1.0.8",
  1193. "monolog/monolog": "^1.12|^2.0",
  1194. "nesbot/carbon": "^2.0",
  1195. "opis/closure": "^3.1",
  1196. "php": "^7.2",
  1197. "psr/container": "^1.0",
  1198. "psr/simple-cache": "^1.0",
  1199. "ramsey/uuid": "^3.7",
  1200. "swiftmailer/swiftmailer": "^6.0",
  1201. "symfony/console": "^4.3.4",
  1202. "symfony/debug": "^4.3.4",
  1203. "symfony/finder": "^4.3.4",
  1204. "symfony/http-foundation": "^4.3.4",
  1205. "symfony/http-kernel": "^4.3.4",
  1206. "symfony/process": "^4.3.4",
  1207. "symfony/routing": "^4.3.4",
  1208. "symfony/var-dumper": "^4.3.4",
  1209. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1210. "vlucas/phpdotenv": "^3.3"
  1211. },
  1212. "conflict": {
  1213. "tightenco/collect": "<5.5.33"
  1214. },
  1215. "replace": {
  1216. "illuminate/auth": "self.version",
  1217. "illuminate/broadcasting": "self.version",
  1218. "illuminate/bus": "self.version",
  1219. "illuminate/cache": "self.version",
  1220. "illuminate/config": "self.version",
  1221. "illuminate/console": "self.version",
  1222. "illuminate/container": "self.version",
  1223. "illuminate/contracts": "self.version",
  1224. "illuminate/cookie": "self.version",
  1225. "illuminate/database": "self.version",
  1226. "illuminate/encryption": "self.version",
  1227. "illuminate/events": "self.version",
  1228. "illuminate/filesystem": "self.version",
  1229. "illuminate/hashing": "self.version",
  1230. "illuminate/http": "self.version",
  1231. "illuminate/log": "self.version",
  1232. "illuminate/mail": "self.version",
  1233. "illuminate/notifications": "self.version",
  1234. "illuminate/pagination": "self.version",
  1235. "illuminate/pipeline": "self.version",
  1236. "illuminate/queue": "self.version",
  1237. "illuminate/redis": "self.version",
  1238. "illuminate/routing": "self.version",
  1239. "illuminate/session": "self.version",
  1240. "illuminate/support": "self.version",
  1241. "illuminate/translation": "self.version",
  1242. "illuminate/validation": "self.version",
  1243. "illuminate/view": "self.version"
  1244. },
  1245. "require-dev": {
  1246. "aws/aws-sdk-php": "^3.0",
  1247. "doctrine/dbal": "^2.6",
  1248. "filp/whoops": "^2.4",
  1249. "guzzlehttp/guzzle": "^6.3",
  1250. "league/flysystem-cached-adapter": "^1.0",
  1251. "mockery/mockery": "^1.2.3",
  1252. "moontoast/math": "^1.1",
  1253. "orchestra/testbench-core": "^4.0",
  1254. "pda/pheanstalk": "^4.0",
  1255. "phpunit/phpunit": "^8.3",
  1256. "predis/predis": "^1.1.1",
  1257. "symfony/cache": "^4.3",
  1258. "true/punycode": "^2.1"
  1259. },
  1260. "suggest": {
  1261. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1262. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1263. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1264. "ext-memcached": "Required to use the memcache cache driver.",
  1265. "ext-pcntl": "Required to use all features of the queue worker.",
  1266. "ext-posix": "Required to use all features of the queue worker.",
  1267. "ext-redis": "Required to use the Redis cache and queue drivers.",
  1268. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1269. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1270. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.0).",
  1271. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1272. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1273. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1274. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1275. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1276. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1277. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0)",
  1278. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1279. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  1280. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  1281. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1282. },
  1283. "type": "library",
  1284. "extra": {
  1285. "branch-alias": {
  1286. "dev-master": "6.x-dev"
  1287. }
  1288. },
  1289. "autoload": {
  1290. "files": [
  1291. "src/Illuminate/Foundation/helpers.php",
  1292. "src/Illuminate/Support/helpers.php"
  1293. ],
  1294. "psr-4": {
  1295. "Illuminate\\": "src/Illuminate/"
  1296. }
  1297. },
  1298. "notification-url": "https://packagist.org/downloads/",
  1299. "license": [
  1300. "MIT"
  1301. ],
  1302. "authors": [
  1303. {
  1304. "name": "Taylor Otwell",
  1305. "email": "taylor@laravel.com"
  1306. }
  1307. ],
  1308. "description": "The Laravel Framework.",
  1309. "homepage": "https://laravel.com",
  1310. "keywords": [
  1311. "framework",
  1312. "laravel"
  1313. ],
  1314. "time": "2019-10-29T14:30:39+00:00"
  1315. },
  1316. {
  1317. "name": "laravel/passport",
  1318. "version": "v8.0.0",
  1319. "source": {
  1320. "type": "git",
  1321. "url": "https://github.com/laravel/passport.git",
  1322. "reference": "b4ccd2f0dcea5c1609dc16b7b6d5216c69394a53"
  1323. },
  1324. "dist": {
  1325. "type": "zip",
  1326. "url": "https://api.github.com/repos/laravel/passport/zipball/b4ccd2f0dcea5c1609dc16b7b6d5216c69394a53",
  1327. "reference": "b4ccd2f0dcea5c1609dc16b7b6d5216c69394a53",
  1328. "shasum": ""
  1329. },
  1330. "require": {
  1331. "ext-json": "*",
  1332. "firebase/php-jwt": "^3.0|^4.0|^5.0",
  1333. "guzzlehttp/guzzle": "^6.0",
  1334. "illuminate/auth": "^6.0|^7.0",
  1335. "illuminate/console": "^6.0|^7.0",
  1336. "illuminate/container": "^6.0|^7.0",
  1337. "illuminate/contracts": "^6.0|^7.0",
  1338. "illuminate/cookie": "^6.0|^7.0",
  1339. "illuminate/database": "^6.0|^7.0",
  1340. "illuminate/encryption": "^6.0|^7.0",
  1341. "illuminate/http": "^6.0|^7.0",
  1342. "illuminate/support": "^6.0|^7.0",
  1343. "league/oauth2-server": "^8.0",
  1344. "php": "^7.2",
  1345. "phpseclib/phpseclib": "^2.0",
  1346. "symfony/psr-http-message-bridge": "^1.0",
  1347. "zendframework/zend-diactoros": "^2.0"
  1348. },
  1349. "require-dev": {
  1350. "mockery/mockery": "^1.0",
  1351. "phpunit/phpunit": "^8.0"
  1352. },
  1353. "type": "library",
  1354. "extra": {
  1355. "branch-alias": {
  1356. "dev-master": "8.x-dev"
  1357. },
  1358. "laravel": {
  1359. "providers": [
  1360. "Laravel\\Passport\\PassportServiceProvider"
  1361. ]
  1362. }
  1363. },
  1364. "autoload": {
  1365. "psr-4": {
  1366. "Laravel\\Passport\\": "src/"
  1367. }
  1368. },
  1369. "notification-url": "https://packagist.org/downloads/",
  1370. "license": [
  1371. "MIT"
  1372. ],
  1373. "authors": [
  1374. {
  1375. "name": "Taylor Otwell",
  1376. "email": "taylor@laravel.com"
  1377. }
  1378. ],
  1379. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  1380. "keywords": [
  1381. "laravel",
  1382. "oauth",
  1383. "passport"
  1384. ],
  1385. "time": "2019-10-29T15:13:21+00:00"
  1386. },
  1387. {
  1388. "name": "laravel/tinker",
  1389. "version": "v1.0.10",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/laravel/tinker.git",
  1393. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1398. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "illuminate/console": "~5.1|^6.0",
  1403. "illuminate/contracts": "~5.1|^6.0",
  1404. "illuminate/support": "~5.1|^6.0",
  1405. "php": ">=5.5.9",
  1406. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1407. "symfony/var-dumper": "~3.0|~4.0"
  1408. },
  1409. "require-dev": {
  1410. "phpunit/phpunit": "~4.0|~5.0"
  1411. },
  1412. "suggest": {
  1413. "illuminate/database": "The Illuminate Database package (~5.1)."
  1414. },
  1415. "type": "library",
  1416. "extra": {
  1417. "branch-alias": {
  1418. "dev-master": "1.0-dev"
  1419. },
  1420. "laravel": {
  1421. "providers": [
  1422. "Laravel\\Tinker\\TinkerServiceProvider"
  1423. ]
  1424. }
  1425. },
  1426. "autoload": {
  1427. "psr-4": {
  1428. "Laravel\\Tinker\\": "src/"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "Taylor Otwell",
  1438. "email": "taylor@laravel.com"
  1439. }
  1440. ],
  1441. "description": "Powerful REPL for the Laravel framework.",
  1442. "keywords": [
  1443. "REPL",
  1444. "Tinker",
  1445. "laravel",
  1446. "psysh"
  1447. ],
  1448. "time": "2019-08-07T15:10:45+00:00"
  1449. },
  1450. {
  1451. "name": "lcobucci/jwt",
  1452. "version": "3.3.1",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/lcobucci/jwt.git",
  1456. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  1461. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  1462. "shasum": ""
  1463. },
  1464. "require": {
  1465. "ext-mbstring": "*",
  1466. "ext-openssl": "*",
  1467. "php": "^5.6 || ^7.0"
  1468. },
  1469. "require-dev": {
  1470. "mikey179/vfsstream": "~1.5",
  1471. "phpmd/phpmd": "~2.2",
  1472. "phpunit/php-invoker": "~1.1",
  1473. "phpunit/phpunit": "^5.7 || ^7.3",
  1474. "squizlabs/php_codesniffer": "~2.3"
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "branch-alias": {
  1479. "dev-master": "3.1-dev"
  1480. }
  1481. },
  1482. "autoload": {
  1483. "psr-4": {
  1484. "Lcobucci\\JWT\\": "src"
  1485. }
  1486. },
  1487. "notification-url": "https://packagist.org/downloads/",
  1488. "license": [
  1489. "BSD-3-Clause"
  1490. ],
  1491. "authors": [
  1492. {
  1493. "name": "Luís Otávio Cobucci Oblonczyk",
  1494. "email": "lcobucci@gmail.com",
  1495. "role": "Developer"
  1496. }
  1497. ],
  1498. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1499. "keywords": [
  1500. "JWS",
  1501. "jwt"
  1502. ],
  1503. "time": "2019-05-24T18:30:49+00:00"
  1504. },
  1505. {
  1506. "name": "league/event",
  1507. "version": "2.2.0",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/thephpleague/event.git",
  1511. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  1516. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "php": ">=5.4.0"
  1521. },
  1522. "require-dev": {
  1523. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  1524. "phpspec/phpspec": "^2.2"
  1525. },
  1526. "type": "library",
  1527. "extra": {
  1528. "branch-alias": {
  1529. "dev-master": "2.2-dev"
  1530. }
  1531. },
  1532. "autoload": {
  1533. "psr-4": {
  1534. "League\\Event\\": "src/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "MIT"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "Frank de Jonge",
  1544. "email": "info@frenky.net"
  1545. }
  1546. ],
  1547. "description": "Event package",
  1548. "keywords": [
  1549. "emitter",
  1550. "event",
  1551. "listener"
  1552. ],
  1553. "time": "2018-11-26T11:52:41+00:00"
  1554. },
  1555. {
  1556. "name": "league/flysystem",
  1557. "version": "1.0.57",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://github.com/thephpleague/flysystem.git",
  1561. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  1562. },
  1563. "dist": {
  1564. "type": "zip",
  1565. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1566. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1567. "shasum": ""
  1568. },
  1569. "require": {
  1570. "ext-fileinfo": "*",
  1571. "php": ">=5.5.9"
  1572. },
  1573. "conflict": {
  1574. "league/flysystem-sftp": "<1.0.6"
  1575. },
  1576. "require-dev": {
  1577. "phpspec/phpspec": "^3.4",
  1578. "phpunit/phpunit": "^5.7.10"
  1579. },
  1580. "suggest": {
  1581. "ext-fileinfo": "Required for MimeType",
  1582. "ext-ftp": "Allows you to use FTP server storage",
  1583. "ext-openssl": "Allows you to use FTPS server storage",
  1584. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1585. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1586. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1587. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1588. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1589. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1590. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1591. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1592. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1593. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1594. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1595. },
  1596. "type": "library",
  1597. "extra": {
  1598. "branch-alias": {
  1599. "dev-master": "1.1-dev"
  1600. }
  1601. },
  1602. "autoload": {
  1603. "psr-4": {
  1604. "League\\Flysystem\\": "src/"
  1605. }
  1606. },
  1607. "notification-url": "https://packagist.org/downloads/",
  1608. "license": [
  1609. "MIT"
  1610. ],
  1611. "authors": [
  1612. {
  1613. "name": "Frank de Jonge",
  1614. "email": "info@frenky.net"
  1615. }
  1616. ],
  1617. "description": "Filesystem abstraction: Many filesystems, one API.",
  1618. "keywords": [
  1619. "Cloud Files",
  1620. "WebDAV",
  1621. "abstraction",
  1622. "aws",
  1623. "cloud",
  1624. "copy.com",
  1625. "dropbox",
  1626. "file systems",
  1627. "files",
  1628. "filesystem",
  1629. "filesystems",
  1630. "ftp",
  1631. "rackspace",
  1632. "remote",
  1633. "s3",
  1634. "sftp",
  1635. "storage"
  1636. ],
  1637. "time": "2019-10-16T21:01:05+00:00"
  1638. },
  1639. {
  1640. "name": "league/oauth2-server",
  1641. "version": "8.0.0",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/thephpleague/oauth2-server.git",
  1645. "reference": "e1dc4d708c56fcfa205be4bb1862b6d525b4baac"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/e1dc4d708c56fcfa205be4bb1862b6d525b4baac",
  1650. "reference": "e1dc4d708c56fcfa205be4bb1862b6d525b4baac",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "defuse/php-encryption": "^2.2.1",
  1655. "ext-json": "*",
  1656. "ext-openssl": "*",
  1657. "lcobucci/jwt": "^3.3.1",
  1658. "league/event": "^2.2",
  1659. "php": ">=7.1.0",
  1660. "psr/http-message": "^1.0.1"
  1661. },
  1662. "replace": {
  1663. "league/oauth2server": "*",
  1664. "lncd/oauth2": "*"
  1665. },
  1666. "require-dev": {
  1667. "phpstan/phpstan": "^0.11.8",
  1668. "phpstan/phpstan-phpunit": "^0.11.2",
  1669. "phpunit/phpunit": "^7.5.13 || ^8.2.3",
  1670. "roave/security-advisories": "dev-master",
  1671. "zendframework/zend-diactoros": "^2.1.2"
  1672. },
  1673. "type": "library",
  1674. "autoload": {
  1675. "psr-4": {
  1676. "League\\OAuth2\\Server\\": "src/"
  1677. }
  1678. },
  1679. "notification-url": "https://packagist.org/downloads/",
  1680. "license": [
  1681. "MIT"
  1682. ],
  1683. "authors": [
  1684. {
  1685. "name": "Alex Bilbie",
  1686. "email": "hello@alexbilbie.com",
  1687. "homepage": "http://www.alexbilbie.com",
  1688. "role": "Developer"
  1689. },
  1690. {
  1691. "name": "Andy Millington",
  1692. "email": "andrew@noexceptions.io",
  1693. "homepage": "https://www.noexceptions.io",
  1694. "role": "Developer"
  1695. }
  1696. ],
  1697. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  1698. "homepage": "https://oauth2.thephpleague.com/",
  1699. "keywords": [
  1700. "Authentication",
  1701. "api",
  1702. "auth",
  1703. "authorisation",
  1704. "authorization",
  1705. "oauth",
  1706. "oauth 2",
  1707. "oauth 2.0",
  1708. "oauth2",
  1709. "protect",
  1710. "resource",
  1711. "secure",
  1712. "server"
  1713. ],
  1714. "time": "2019-07-13T18:58:26+00:00"
  1715. },
  1716. {
  1717. "name": "mews/captcha",
  1718. "version": "3.0.1",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/mewebstudio/captcha.git",
  1722. "reference": "bef0db3663f1fe442ae803fb207dbe2bbfa10890"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/bef0db3663f1fe442ae803fb207dbe2bbfa10890",
  1727. "reference": "bef0db3663f1fe442ae803fb207dbe2bbfa10890",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "ext-gd": "*",
  1732. "illuminate/config": "~5.0|^6.0",
  1733. "illuminate/filesystem": "~5.0|^6.0",
  1734. "illuminate/hashing": "~5.0|^6.0",
  1735. "illuminate/session": "~5.0|^6.0",
  1736. "illuminate/support": "~5.0|^6.0",
  1737. "intervention/image": "~2.5",
  1738. "php": "^7.2"
  1739. },
  1740. "require-dev": {
  1741. "mockery/mockery": "^1.0",
  1742. "phpunit/phpunit": "^8.0"
  1743. },
  1744. "type": "package",
  1745. "extra": {
  1746. "laravel": {
  1747. "providers": [
  1748. "Mews\\Captcha\\CaptchaServiceProvider"
  1749. ],
  1750. "aliases": {
  1751. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  1752. }
  1753. }
  1754. },
  1755. "autoload": {
  1756. "psr-4": {
  1757. "Mews\\Captcha\\": "src/"
  1758. },
  1759. "files": [
  1760. "src/helpers.php"
  1761. ]
  1762. },
  1763. "notification-url": "https://packagist.org/downloads/",
  1764. "license": [
  1765. "MIT"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "Muharrem ERİN",
  1770. "email": "me@mewebstudio.com",
  1771. "homepage": "https://github.com/mewebstudio",
  1772. "role": "Developer"
  1773. }
  1774. ],
  1775. "description": "Laravel 5 & 6 Captcha Package",
  1776. "homepage": "https://github.com/mewebstudio/captcha",
  1777. "keywords": [
  1778. "captcha",
  1779. "laravel5 Security",
  1780. "laravel6 Captcha",
  1781. "laravel6 Security"
  1782. ],
  1783. "time": "2019-09-05T22:33:04+00:00"
  1784. },
  1785. {
  1786. "name": "monolog/monolog",
  1787. "version": "2.0.0",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/Seldaek/monolog.git",
  1791. "reference": "68545165e19249013afd1d6f7485aecff07a2d22"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/68545165e19249013afd1d6f7485aecff07a2d22",
  1796. "reference": "68545165e19249013afd1d6f7485aecff07a2d22",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "php": "^7.2",
  1801. "psr/log": "^1.0.1"
  1802. },
  1803. "provide": {
  1804. "psr/log-implementation": "1.0.0"
  1805. },
  1806. "require-dev": {
  1807. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1808. "doctrine/couchdb": "~1.0@dev",
  1809. "elasticsearch/elasticsearch": "^6.0",
  1810. "graylog2/gelf-php": "^1.4.2",
  1811. "jakub-onderka/php-parallel-lint": "^0.9",
  1812. "php-amqplib/php-amqplib": "~2.4",
  1813. "php-console/php-console": "^3.1.3",
  1814. "phpspec/prophecy": "^1.6.1",
  1815. "phpunit/phpunit": "^8.3",
  1816. "predis/predis": "^1.1",
  1817. "rollbar/rollbar": "^1.3",
  1818. "ruflin/elastica": ">=0.90 <3.0",
  1819. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1820. },
  1821. "suggest": {
  1822. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1823. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1824. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1825. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1826. "ext-mbstring": "Allow to work properly with unicode symbols",
  1827. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1828. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1829. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1830. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1831. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1832. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1833. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1834. },
  1835. "type": "library",
  1836. "extra": {
  1837. "branch-alias": {
  1838. "dev-master": "2.x-dev"
  1839. }
  1840. },
  1841. "autoload": {
  1842. "psr-4": {
  1843. "Monolog\\": "src/Monolog"
  1844. }
  1845. },
  1846. "notification-url": "https://packagist.org/downloads/",
  1847. "license": [
  1848. "MIT"
  1849. ],
  1850. "authors": [
  1851. {
  1852. "name": "Jordi Boggiano",
  1853. "email": "j.boggiano@seld.be",
  1854. "homepage": "http://seld.be"
  1855. }
  1856. ],
  1857. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1858. "homepage": "http://github.com/Seldaek/monolog",
  1859. "keywords": [
  1860. "log",
  1861. "logging",
  1862. "psr-3"
  1863. ],
  1864. "time": "2019-08-30T09:56:44+00:00"
  1865. },
  1866. {
  1867. "name": "nesbot/carbon",
  1868. "version": "2.26.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/briannesbitt/Carbon.git",
  1872. "reference": "e01ecc0b71168febb52ae1fdc1cfcc95428e604e"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e01ecc0b71168febb52ae1fdc1cfcc95428e604e",
  1877. "reference": "e01ecc0b71168febb52ae1fdc1cfcc95428e604e",
  1878. "shasum": ""
  1879. },
  1880. "require": {
  1881. "ext-json": "*",
  1882. "php": "^7.1.8 || ^8.0",
  1883. "symfony/translation": "^3.4 || ^4.0"
  1884. },
  1885. "require-dev": {
  1886. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1887. "kylekatarnls/multi-tester": "^1.1",
  1888. "phpmd/phpmd": "dev-php-7.1-compatibility",
  1889. "phpstan/phpstan": "^0.11",
  1890. "phpunit/phpunit": "^7.5 || ^8.0",
  1891. "squizlabs/php_codesniffer": "^3.4"
  1892. },
  1893. "bin": [
  1894. "bin/carbon"
  1895. ],
  1896. "type": "library",
  1897. "extra": {
  1898. "laravel": {
  1899. "providers": [
  1900. "Carbon\\Laravel\\ServiceProvider"
  1901. ]
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Carbon\\": "src/Carbon/"
  1907. }
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "authors": [
  1914. {
  1915. "name": "Brian Nesbitt",
  1916. "email": "brian@nesbot.com",
  1917. "homepage": "http://nesbot.com"
  1918. },
  1919. {
  1920. "name": "kylekatarnls",
  1921. "homepage": "http://github.com/kylekatarnls"
  1922. }
  1923. ],
  1924. "description": "An API extension for DateTime that supports 281 different languages.",
  1925. "homepage": "http://carbon.nesbot.com",
  1926. "keywords": [
  1927. "date",
  1928. "datetime",
  1929. "time"
  1930. ],
  1931. "time": "2019-10-21T21:32:25+00:00"
  1932. },
  1933. {
  1934. "name": "nikic/php-parser",
  1935. "version": "v4.2.5",
  1936. "source": {
  1937. "type": "git",
  1938. "url": "https://github.com/nikic/PHP-Parser.git",
  1939. "reference": "b76bbc3c51f22c570648de48e8c2d941ed5e2cf2"
  1940. },
  1941. "dist": {
  1942. "type": "zip",
  1943. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/b76bbc3c51f22c570648de48e8c2d941ed5e2cf2",
  1944. "reference": "b76bbc3c51f22c570648de48e8c2d941ed5e2cf2",
  1945. "shasum": ""
  1946. },
  1947. "require": {
  1948. "ext-tokenizer": "*",
  1949. "php": ">=7.0"
  1950. },
  1951. "require-dev": {
  1952. "ircmaxell/php-yacc": "0.0.4",
  1953. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  1954. },
  1955. "bin": [
  1956. "bin/php-parse"
  1957. ],
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "4.2-dev"
  1962. }
  1963. },
  1964. "autoload": {
  1965. "psr-4": {
  1966. "PhpParser\\": "lib/PhpParser"
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "BSD-3-Clause"
  1972. ],
  1973. "authors": [
  1974. {
  1975. "name": "Nikita Popov"
  1976. }
  1977. ],
  1978. "description": "A PHP parser written in PHP",
  1979. "keywords": [
  1980. "parser",
  1981. "php"
  1982. ],
  1983. "time": "2019-10-25T18:33:07+00:00"
  1984. },
  1985. {
  1986. "name": "opis/closure",
  1987. "version": "3.4.1",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/opis/closure.git",
  1991. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  1996. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  1997. "shasum": ""
  1998. },
  1999. "require": {
  2000. "php": "^5.4 || ^7.0"
  2001. },
  2002. "require-dev": {
  2003. "jeremeamia/superclosure": "^2.0",
  2004. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2005. },
  2006. "type": "library",
  2007. "extra": {
  2008. "branch-alias": {
  2009. "dev-master": "3.3.x-dev"
  2010. }
  2011. },
  2012. "autoload": {
  2013. "psr-4": {
  2014. "Opis\\Closure\\": "src/"
  2015. },
  2016. "files": [
  2017. "functions.php"
  2018. ]
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Marius Sarca",
  2027. "email": "marius.sarca@gmail.com"
  2028. },
  2029. {
  2030. "name": "Sorin Sarca",
  2031. "email": "sarca_sorin@hotmail.com"
  2032. }
  2033. ],
  2034. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2035. "homepage": "https://opis.io/closure",
  2036. "keywords": [
  2037. "anonymous functions",
  2038. "closure",
  2039. "function",
  2040. "serializable",
  2041. "serialization",
  2042. "serialize"
  2043. ],
  2044. "time": "2019-10-19T18:38:51+00:00"
  2045. },
  2046. {
  2047. "name": "paragonie/constant_time_encoding",
  2048. "version": "v2.2.3",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2052. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2057. "reference": "55af0dc01992b4d0da7f6372e2eac097bbbaffdb",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "php": "^7"
  2062. },
  2063. "require-dev": {
  2064. "phpunit/phpunit": "^6|^7",
  2065. "vimeo/psalm": "^1|^2"
  2066. },
  2067. "type": "library",
  2068. "autoload": {
  2069. "psr-4": {
  2070. "ParagonIE\\ConstantTime\\": "src/"
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Paragon Initiative Enterprises",
  2080. "role": "Maintainer",
  2081. "email": "security@paragonie.com",
  2082. "homepage": "https://paragonie.com"
  2083. },
  2084. {
  2085. "name": "Steve 'Sc00bz' Thomas",
  2086. "role": "Original Developer",
  2087. "email": "steve@tobtu.com",
  2088. "homepage": "https://www.tobtu.com"
  2089. }
  2090. ],
  2091. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2092. "keywords": [
  2093. "base16",
  2094. "base32",
  2095. "base32_decode",
  2096. "base32_encode",
  2097. "base64",
  2098. "base64_decode",
  2099. "base64_encode",
  2100. "bin2hex",
  2101. "encoding",
  2102. "hex",
  2103. "hex2bin",
  2104. "rfc4648"
  2105. ],
  2106. "time": "2019-01-03T20:26:31+00:00"
  2107. },
  2108. {
  2109. "name": "paragonie/random_compat",
  2110. "version": "v9.99.99",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/paragonie/random_compat.git",
  2114. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2119. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2120. "shasum": ""
  2121. },
  2122. "require": {
  2123. "php": "^7"
  2124. },
  2125. "require-dev": {
  2126. "phpunit/phpunit": "4.*|5.*",
  2127. "vimeo/psalm": "^1"
  2128. },
  2129. "suggest": {
  2130. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2131. },
  2132. "type": "library",
  2133. "notification-url": "https://packagist.org/downloads/",
  2134. "license": [
  2135. "MIT"
  2136. ],
  2137. "authors": [
  2138. {
  2139. "name": "Paragon Initiative Enterprises",
  2140. "email": "security@paragonie.com",
  2141. "homepage": "https://paragonie.com"
  2142. }
  2143. ],
  2144. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2145. "keywords": [
  2146. "csprng",
  2147. "polyfill",
  2148. "pseudorandom",
  2149. "random"
  2150. ],
  2151. "time": "2018-07-02T15:55:56+00:00"
  2152. },
  2153. {
  2154. "name": "php-mime-mail-parser/php-mime-mail-parser",
  2155. "version": "5.0.5",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/php-mime-mail-parser/php-mime-mail-parser.git",
  2159. "reference": "27983433aabeccee832573c3c56e6a4855e57745"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/php-mime-mail-parser/php-mime-mail-parser/zipball/27983433aabeccee832573c3c56e6a4855e57745",
  2164. "reference": "27983433aabeccee832573c3c56e6a4855e57745",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "ext-mailparse": "*",
  2169. "php": "^7.1"
  2170. },
  2171. "replace": {
  2172. "exorus/php-mime-mail-parser": "*",
  2173. "messaged/php-mime-mail-parser": "*"
  2174. },
  2175. "require-dev": {
  2176. "php-coveralls/php-coveralls": "^2.1",
  2177. "phpunit/php-token-stream": "^3.0",
  2178. "phpunit/phpunit": "^7.0",
  2179. "squizlabs/php_codesniffer": "^3.4"
  2180. },
  2181. "type": "library",
  2182. "autoload": {
  2183. "psr-4": {
  2184. "PhpMimeMailParser\\": "src/"
  2185. }
  2186. },
  2187. "notification-url": "https://packagist.org/downloads/",
  2188. "license": [
  2189. "MIT"
  2190. ],
  2191. "authors": [
  2192. {
  2193. "name": "eXorus",
  2194. "email": "exorus.spam@gmail.com",
  2195. "homepage": "https://github.com/eXorus/",
  2196. "role": "Developer"
  2197. },
  2198. {
  2199. "name": "M.Valinskis",
  2200. "email": "M.Valins@gmail.com",
  2201. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  2202. "role": "Developer"
  2203. },
  2204. {
  2205. "name": "eugene.emmett.wood",
  2206. "email": "gene_w@cementhorizon.com",
  2207. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  2208. "role": "Developer"
  2209. },
  2210. {
  2211. "name": "alknetso",
  2212. "email": "alkne@gmail.com",
  2213. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  2214. "role": "Developer"
  2215. },
  2216. {
  2217. "name": "bucabay",
  2218. "email": "gabe@fijiwebdesign.com",
  2219. "homepage": "http://www.fijiwebdesign.com",
  2220. "role": "Developer"
  2221. }
  2222. ],
  2223. "description": "A fully tested email parser for PHP 7.1+ (mailparse extension wrapper).",
  2224. "homepage": "https://github.com/php-mime-mail-parser/php-mime-mail-parser",
  2225. "keywords": [
  2226. "MimeMailParser",
  2227. "mail",
  2228. "mailparse",
  2229. "mime",
  2230. "parser",
  2231. "php"
  2232. ],
  2233. "time": "2019-09-23T11:57:58+00:00"
  2234. },
  2235. {
  2236. "name": "phpoption/phpoption",
  2237. "version": "1.5.0",
  2238. "source": {
  2239. "type": "git",
  2240. "url": "https://github.com/schmittjoh/php-option.git",
  2241. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2242. },
  2243. "dist": {
  2244. "type": "zip",
  2245. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2246. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2247. "shasum": ""
  2248. },
  2249. "require": {
  2250. "php": ">=5.3.0"
  2251. },
  2252. "require-dev": {
  2253. "phpunit/phpunit": "4.7.*"
  2254. },
  2255. "type": "library",
  2256. "extra": {
  2257. "branch-alias": {
  2258. "dev-master": "1.3-dev"
  2259. }
  2260. },
  2261. "autoload": {
  2262. "psr-0": {
  2263. "PhpOption\\": "src/"
  2264. }
  2265. },
  2266. "notification-url": "https://packagist.org/downloads/",
  2267. "license": [
  2268. "Apache2"
  2269. ],
  2270. "authors": [
  2271. {
  2272. "name": "Johannes M. Schmitt",
  2273. "email": "schmittjoh@gmail.com"
  2274. }
  2275. ],
  2276. "description": "Option Type for PHP",
  2277. "keywords": [
  2278. "language",
  2279. "option",
  2280. "php",
  2281. "type"
  2282. ],
  2283. "time": "2015-07-25T16:39:46+00:00"
  2284. },
  2285. {
  2286. "name": "phpseclib/phpseclib",
  2287. "version": "2.0.23",
  2288. "source": {
  2289. "type": "git",
  2290. "url": "https://github.com/phpseclib/phpseclib.git",
  2291. "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099"
  2292. },
  2293. "dist": {
  2294. "type": "zip",
  2295. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c78eb5058d5bb1a183133c36d4ba5b6675dfa099",
  2296. "reference": "c78eb5058d5bb1a183133c36d4ba5b6675dfa099",
  2297. "shasum": ""
  2298. },
  2299. "require": {
  2300. "php": ">=5.3.3"
  2301. },
  2302. "require-dev": {
  2303. "phing/phing": "~2.7",
  2304. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  2305. "sami/sami": "~2.0",
  2306. "squizlabs/php_codesniffer": "~2.0"
  2307. },
  2308. "suggest": {
  2309. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  2310. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  2311. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  2312. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  2313. },
  2314. "type": "library",
  2315. "autoload": {
  2316. "files": [
  2317. "phpseclib/bootstrap.php"
  2318. ],
  2319. "psr-4": {
  2320. "phpseclib\\": "phpseclib/"
  2321. }
  2322. },
  2323. "notification-url": "https://packagist.org/downloads/",
  2324. "license": [
  2325. "MIT"
  2326. ],
  2327. "authors": [
  2328. {
  2329. "name": "Jim Wigginton",
  2330. "email": "terrafrost@php.net",
  2331. "role": "Lead Developer"
  2332. },
  2333. {
  2334. "name": "Patrick Monnerat",
  2335. "email": "pm@datasphere.ch",
  2336. "role": "Developer"
  2337. },
  2338. {
  2339. "name": "Andreas Fischer",
  2340. "email": "bantu@phpbb.com",
  2341. "role": "Developer"
  2342. },
  2343. {
  2344. "name": "Hans-Jürgen Petrich",
  2345. "email": "petrich@tronic-media.com",
  2346. "role": "Developer"
  2347. },
  2348. {
  2349. "name": "Graham Campbell",
  2350. "email": "graham@alt-three.com",
  2351. "role": "Developer"
  2352. }
  2353. ],
  2354. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  2355. "homepage": "http://phpseclib.sourceforge.net",
  2356. "keywords": [
  2357. "BigInteger",
  2358. "aes",
  2359. "asn.1",
  2360. "asn1",
  2361. "blowfish",
  2362. "crypto",
  2363. "cryptography",
  2364. "encryption",
  2365. "rsa",
  2366. "security",
  2367. "sftp",
  2368. "signature",
  2369. "signing",
  2370. "ssh",
  2371. "twofish",
  2372. "x.509",
  2373. "x509"
  2374. ],
  2375. "time": "2019-09-17T03:41:22+00:00"
  2376. },
  2377. {
  2378. "name": "pragmarx/google2fa",
  2379. "version": "v7.0.0",
  2380. "source": {
  2381. "type": "git",
  2382. "url": "https://github.com/antonioribeiro/google2fa.git",
  2383. "reference": "0afb47f8a686bd203fe85a05bab85139f3c1971e"
  2384. },
  2385. "dist": {
  2386. "type": "zip",
  2387. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/0afb47f8a686bd203fe85a05bab85139f3c1971e",
  2388. "reference": "0afb47f8a686bd203fe85a05bab85139f3c1971e",
  2389. "shasum": ""
  2390. },
  2391. "require": {
  2392. "paragonie/constant_time_encoding": "~1.0|~2.0",
  2393. "paragonie/random_compat": ">=1",
  2394. "php": ">=5.4",
  2395. "symfony/polyfill-php56": "~1.2"
  2396. },
  2397. "require-dev": {
  2398. "phpunit/phpunit": "~4|~5|~6|~7|~8"
  2399. },
  2400. "type": "library",
  2401. "extra": {
  2402. "component": "package",
  2403. "branch-alias": {
  2404. "dev-master": "2.0-dev"
  2405. }
  2406. },
  2407. "autoload": {
  2408. "psr-4": {
  2409. "PragmaRX\\Google2FA\\": "src/",
  2410. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  2411. }
  2412. },
  2413. "notification-url": "https://packagist.org/downloads/",
  2414. "license": [
  2415. "MIT"
  2416. ],
  2417. "authors": [
  2418. {
  2419. "name": "Antonio Carlos Ribeiro",
  2420. "email": "acr@antoniocarlosribeiro.com",
  2421. "role": "Creator & Designer"
  2422. }
  2423. ],
  2424. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  2425. "keywords": [
  2426. "2fa",
  2427. "Authentication",
  2428. "Two Factor Authentication",
  2429. "google2fa"
  2430. ],
  2431. "time": "2019-10-21T17:49:22+00:00"
  2432. },
  2433. {
  2434. "name": "pragmarx/google2fa-laravel",
  2435. "version": "v1.3.0",
  2436. "source": {
  2437. "type": "git",
  2438. "url": "https://github.com/antonioribeiro/google2fa-laravel.git",
  2439. "reference": "4ccc17dbf5ab5f752113cb6088a5afce5191309e"
  2440. },
  2441. "dist": {
  2442. "type": "zip",
  2443. "url": "https://api.github.com/repos/antonioribeiro/google2fa-laravel/zipball/4ccc17dbf5ab5f752113cb6088a5afce5191309e",
  2444. "reference": "4ccc17dbf5ab5f752113cb6088a5afce5191309e",
  2445. "shasum": ""
  2446. },
  2447. "require": {
  2448. "laravel/framework": ">=5.4.36",
  2449. "php": ">=7.0",
  2450. "pragmarx/google2fa-qrcode": "^1.0"
  2451. },
  2452. "require-dev": {
  2453. "orchestra/testbench": "3.4.*|3.5.*|3.6.*|3.7.*|4.*",
  2454. "phpunit/phpunit": "~5|~6|~7|~8"
  2455. },
  2456. "suggest": {
  2457. "bacon/bacon-qr-code": "Required to generate inline QR Codes.",
  2458. "pragmarx/recovery": "Generate recovery codes."
  2459. },
  2460. "type": "library",
  2461. "extra": {
  2462. "component": "package",
  2463. "frameworks": [
  2464. "Laravel"
  2465. ],
  2466. "branch-alias": {
  2467. "dev-master": "0.2-dev"
  2468. },
  2469. "laravel": {
  2470. "providers": [
  2471. "PragmaRX\\Google2FALaravel\\ServiceProvider"
  2472. ],
  2473. "aliases": {
  2474. "Google2FA": "PragmaRX\\Google2FALaravel\\Facade"
  2475. }
  2476. }
  2477. },
  2478. "autoload": {
  2479. "psr-4": {
  2480. "PragmaRX\\Google2FALaravel\\": "src/",
  2481. "PragmaRX\\Google2FALaravel\\Tests\\": "tests/"
  2482. }
  2483. },
  2484. "notification-url": "https://packagist.org/downloads/",
  2485. "license": [
  2486. "BSD-3-Clause"
  2487. ],
  2488. "authors": [
  2489. {
  2490. "name": "Antonio Carlos Ribeiro",
  2491. "email": "acr@antoniocarlosribeiro.com",
  2492. "role": "Creator & Designer"
  2493. }
  2494. ],
  2495. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  2496. "keywords": [
  2497. "Authentication",
  2498. "Two Factor Authentication",
  2499. "google2fa",
  2500. "laravel"
  2501. ],
  2502. "time": "2019-10-21T18:34:37+00:00"
  2503. },
  2504. {
  2505. "name": "pragmarx/google2fa-qrcode",
  2506. "version": "v1.0.3",
  2507. "source": {
  2508. "type": "git",
  2509. "url": "https://github.com/antonioribeiro/google2fa-qrcode.git",
  2510. "reference": "fd5ff0531a48b193a659309cc5fb882c14dbd03f"
  2511. },
  2512. "dist": {
  2513. "type": "zip",
  2514. "url": "https://api.github.com/repos/antonioribeiro/google2fa-qrcode/zipball/fd5ff0531a48b193a659309cc5fb882c14dbd03f",
  2515. "reference": "fd5ff0531a48b193a659309cc5fb882c14dbd03f",
  2516. "shasum": ""
  2517. },
  2518. "require": {
  2519. "bacon/bacon-qr-code": "~1.0|~2.0",
  2520. "php": ">=5.4",
  2521. "pragmarx/google2fa": ">=4.0"
  2522. },
  2523. "require-dev": {
  2524. "khanamiryan/qrcode-detector-decoder": "^1.0",
  2525. "phpunit/phpunit": "~4|~5|~6|~7"
  2526. },
  2527. "type": "library",
  2528. "extra": {
  2529. "component": "package",
  2530. "branch-alias": {
  2531. "dev-master": "1.0-dev"
  2532. }
  2533. },
  2534. "autoload": {
  2535. "psr-4": {
  2536. "PragmaRX\\Google2FAQRCode\\": "src/",
  2537. "PragmaRX\\Google2FAQRCode\\Tests\\": "tests/"
  2538. }
  2539. },
  2540. "notification-url": "https://packagist.org/downloads/",
  2541. "license": [
  2542. "MIT"
  2543. ],
  2544. "authors": [
  2545. {
  2546. "name": "Antonio Carlos Ribeiro",
  2547. "role": "Creator & Designer",
  2548. "email": "acr@antoniocarlosribeiro.com"
  2549. }
  2550. ],
  2551. "description": "QR Code package for Google2FA",
  2552. "keywords": [
  2553. "2fa",
  2554. "Authentication",
  2555. "Two Factor Authentication",
  2556. "google2fa",
  2557. "qr code",
  2558. "qrcode"
  2559. ],
  2560. "time": "2019-03-20T16:42:58+00:00"
  2561. },
  2562. {
  2563. "name": "predis/predis",
  2564. "version": "v1.1.1",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://github.com/nrk/predis.git",
  2568. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  2573. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  2574. "shasum": ""
  2575. },
  2576. "require": {
  2577. "php": ">=5.3.9"
  2578. },
  2579. "require-dev": {
  2580. "phpunit/phpunit": "~4.8"
  2581. },
  2582. "suggest": {
  2583. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2584. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2585. },
  2586. "type": "library",
  2587. "autoload": {
  2588. "psr-4": {
  2589. "Predis\\": "src/"
  2590. }
  2591. },
  2592. "notification-url": "https://packagist.org/downloads/",
  2593. "license": [
  2594. "MIT"
  2595. ],
  2596. "authors": [
  2597. {
  2598. "name": "Daniele Alessandri",
  2599. "email": "suppakilla@gmail.com",
  2600. "homepage": "http://clorophilla.net"
  2601. }
  2602. ],
  2603. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2604. "homepage": "http://github.com/nrk/predis",
  2605. "keywords": [
  2606. "nosql",
  2607. "predis",
  2608. "redis"
  2609. ],
  2610. "time": "2016-06-16T16:22:20+00:00"
  2611. },
  2612. {
  2613. "name": "psr/container",
  2614. "version": "1.0.0",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/php-fig/container.git",
  2618. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2623. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2624. "shasum": ""
  2625. },
  2626. "require": {
  2627. "php": ">=5.3.0"
  2628. },
  2629. "type": "library",
  2630. "extra": {
  2631. "branch-alias": {
  2632. "dev-master": "1.0.x-dev"
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Psr\\Container\\": "src/"
  2638. }
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "authors": [
  2645. {
  2646. "name": "PHP-FIG",
  2647. "homepage": "http://www.php-fig.org/"
  2648. }
  2649. ],
  2650. "description": "Common Container Interface (PHP FIG PSR-11)",
  2651. "homepage": "https://github.com/php-fig/container",
  2652. "keywords": [
  2653. "PSR-11",
  2654. "container",
  2655. "container-interface",
  2656. "container-interop",
  2657. "psr"
  2658. ],
  2659. "time": "2017-02-14T16:28:37+00:00"
  2660. },
  2661. {
  2662. "name": "psr/http-factory",
  2663. "version": "1.0.1",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/php-fig/http-factory.git",
  2667. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2672. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2673. "shasum": ""
  2674. },
  2675. "require": {
  2676. "php": ">=7.0.0",
  2677. "psr/http-message": "^1.0"
  2678. },
  2679. "type": "library",
  2680. "extra": {
  2681. "branch-alias": {
  2682. "dev-master": "1.0.x-dev"
  2683. }
  2684. },
  2685. "autoload": {
  2686. "psr-4": {
  2687. "Psr\\Http\\Message\\": "src/"
  2688. }
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "PHP-FIG",
  2697. "homepage": "http://www.php-fig.org/"
  2698. }
  2699. ],
  2700. "description": "Common interfaces for PSR-7 HTTP message factories",
  2701. "keywords": [
  2702. "factory",
  2703. "http",
  2704. "message",
  2705. "psr",
  2706. "psr-17",
  2707. "psr-7",
  2708. "request",
  2709. "response"
  2710. ],
  2711. "time": "2019-04-30T12:38:16+00:00"
  2712. },
  2713. {
  2714. "name": "psr/http-message",
  2715. "version": "1.0.1",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/php-fig/http-message.git",
  2719. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2724. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2725. "shasum": ""
  2726. },
  2727. "require": {
  2728. "php": ">=5.3.0"
  2729. },
  2730. "type": "library",
  2731. "extra": {
  2732. "branch-alias": {
  2733. "dev-master": "1.0.x-dev"
  2734. }
  2735. },
  2736. "autoload": {
  2737. "psr-4": {
  2738. "Psr\\Http\\Message\\": "src/"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "MIT"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "PHP-FIG",
  2748. "homepage": "http://www.php-fig.org/"
  2749. }
  2750. ],
  2751. "description": "Common interface for HTTP messages",
  2752. "homepage": "https://github.com/php-fig/http-message",
  2753. "keywords": [
  2754. "http",
  2755. "http-message",
  2756. "psr",
  2757. "psr-7",
  2758. "request",
  2759. "response"
  2760. ],
  2761. "time": "2016-08-06T14:39:51+00:00"
  2762. },
  2763. {
  2764. "name": "psr/log",
  2765. "version": "1.1.2",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/php-fig/log.git",
  2769. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2774. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "php": ">=5.3.0"
  2779. },
  2780. "type": "library",
  2781. "extra": {
  2782. "branch-alias": {
  2783. "dev-master": "1.1.x-dev"
  2784. }
  2785. },
  2786. "autoload": {
  2787. "psr-4": {
  2788. "Psr\\Log\\": "Psr/Log/"
  2789. }
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "PHP-FIG",
  2798. "homepage": "http://www.php-fig.org/"
  2799. }
  2800. ],
  2801. "description": "Common interface for logging libraries",
  2802. "homepage": "https://github.com/php-fig/log",
  2803. "keywords": [
  2804. "log",
  2805. "psr",
  2806. "psr-3"
  2807. ],
  2808. "time": "2019-11-01T11:05:21+00:00"
  2809. },
  2810. {
  2811. "name": "psr/simple-cache",
  2812. "version": "1.0.1",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/php-fig/simple-cache.git",
  2816. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2821. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": ">=5.3.0"
  2826. },
  2827. "type": "library",
  2828. "extra": {
  2829. "branch-alias": {
  2830. "dev-master": "1.0.x-dev"
  2831. }
  2832. },
  2833. "autoload": {
  2834. "psr-4": {
  2835. "Psr\\SimpleCache\\": "src/"
  2836. }
  2837. },
  2838. "notification-url": "https://packagist.org/downloads/",
  2839. "license": [
  2840. "MIT"
  2841. ],
  2842. "authors": [
  2843. {
  2844. "name": "PHP-FIG",
  2845. "homepage": "http://www.php-fig.org/"
  2846. }
  2847. ],
  2848. "description": "Common interfaces for simple caching",
  2849. "keywords": [
  2850. "cache",
  2851. "caching",
  2852. "psr",
  2853. "psr-16",
  2854. "simple-cache"
  2855. ],
  2856. "time": "2017-10-23T01:57:42+00:00"
  2857. },
  2858. {
  2859. "name": "psy/psysh",
  2860. "version": "v0.9.9",
  2861. "source": {
  2862. "type": "git",
  2863. "url": "https://github.com/bobthecow/psysh.git",
  2864. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  2865. },
  2866. "dist": {
  2867. "type": "zip",
  2868. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2869. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2870. "shasum": ""
  2871. },
  2872. "require": {
  2873. "dnoegel/php-xdg-base-dir": "0.1",
  2874. "ext-json": "*",
  2875. "ext-tokenizer": "*",
  2876. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2877. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2878. "php": ">=5.4.0",
  2879. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2880. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2881. },
  2882. "require-dev": {
  2883. "bamarni/composer-bin-plugin": "^1.2",
  2884. "hoa/console": "~2.15|~3.16",
  2885. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2886. },
  2887. "suggest": {
  2888. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2889. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2890. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2891. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2892. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2893. },
  2894. "bin": [
  2895. "bin/psysh"
  2896. ],
  2897. "type": "library",
  2898. "extra": {
  2899. "branch-alias": {
  2900. "dev-develop": "0.9.x-dev"
  2901. }
  2902. },
  2903. "autoload": {
  2904. "files": [
  2905. "src/functions.php"
  2906. ],
  2907. "psr-4": {
  2908. "Psy\\": "src/"
  2909. }
  2910. },
  2911. "notification-url": "https://packagist.org/downloads/",
  2912. "license": [
  2913. "MIT"
  2914. ],
  2915. "authors": [
  2916. {
  2917. "name": "Justin Hileman",
  2918. "email": "justin@justinhileman.info",
  2919. "homepage": "http://justinhileman.com"
  2920. }
  2921. ],
  2922. "description": "An interactive shell for modern PHP.",
  2923. "homepage": "http://psysh.org",
  2924. "keywords": [
  2925. "REPL",
  2926. "console",
  2927. "interactive",
  2928. "shell"
  2929. ],
  2930. "time": "2018-10-13T15:16:03+00:00"
  2931. },
  2932. {
  2933. "name": "ralouphie/getallheaders",
  2934. "version": "3.0.3",
  2935. "source": {
  2936. "type": "git",
  2937. "url": "https://github.com/ralouphie/getallheaders.git",
  2938. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2939. },
  2940. "dist": {
  2941. "type": "zip",
  2942. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2943. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2944. "shasum": ""
  2945. },
  2946. "require": {
  2947. "php": ">=5.6"
  2948. },
  2949. "require-dev": {
  2950. "php-coveralls/php-coveralls": "^2.1",
  2951. "phpunit/phpunit": "^5 || ^6.5"
  2952. },
  2953. "type": "library",
  2954. "autoload": {
  2955. "files": [
  2956. "src/getallheaders.php"
  2957. ]
  2958. },
  2959. "notification-url": "https://packagist.org/downloads/",
  2960. "license": [
  2961. "MIT"
  2962. ],
  2963. "authors": [
  2964. {
  2965. "name": "Ralph Khattar",
  2966. "email": "ralph.khattar@gmail.com"
  2967. }
  2968. ],
  2969. "description": "A polyfill for getallheaders.",
  2970. "time": "2019-03-08T08:55:37+00:00"
  2971. },
  2972. {
  2973. "name": "ramsey/uuid",
  2974. "version": "3.8.0",
  2975. "source": {
  2976. "type": "git",
  2977. "url": "https://github.com/ramsey/uuid.git",
  2978. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  2979. },
  2980. "dist": {
  2981. "type": "zip",
  2982. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2983. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2984. "shasum": ""
  2985. },
  2986. "require": {
  2987. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  2988. "php": "^5.4 || ^7.0",
  2989. "symfony/polyfill-ctype": "^1.8"
  2990. },
  2991. "replace": {
  2992. "rhumsaa/uuid": "self.version"
  2993. },
  2994. "require-dev": {
  2995. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2996. "doctrine/annotations": "~1.2.0",
  2997. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  2998. "ircmaxell/random-lib": "^1.1",
  2999. "jakub-onderka/php-parallel-lint": "^0.9.0",
  3000. "mockery/mockery": "^0.9.9",
  3001. "moontoast/math": "^1.1",
  3002. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  3003. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  3004. "squizlabs/php_codesniffer": "^2.3"
  3005. },
  3006. "suggest": {
  3007. "ext-ctype": "Provides support for PHP Ctype functions",
  3008. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  3009. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  3010. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3011. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  3012. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  3013. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "3.x-dev"
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Ramsey\\Uuid\\": "src/"
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Marijn Huizendveld",
  3033. "email": "marijn.huizendveld@gmail.com"
  3034. },
  3035. {
  3036. "name": "Thibaud Fabre",
  3037. "email": "thibaud@aztech.io"
  3038. },
  3039. {
  3040. "name": "Ben Ramsey",
  3041. "email": "ben@benramsey.com",
  3042. "homepage": "https://benramsey.com"
  3043. }
  3044. ],
  3045. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  3046. "homepage": "https://github.com/ramsey/uuid",
  3047. "keywords": [
  3048. "guid",
  3049. "identifier",
  3050. "uuid"
  3051. ],
  3052. "time": "2018-07-19T23:38:55+00:00"
  3053. },
  3054. {
  3055. "name": "spatie/dns",
  3056. "version": "1.4.2",
  3057. "source": {
  3058. "type": "git",
  3059. "url": "https://github.com/spatie/dns.git",
  3060. "reference": "403865f19c01e0b9cfa9356fba5748dd5307b35c"
  3061. },
  3062. "dist": {
  3063. "type": "zip",
  3064. "url": "https://api.github.com/repos/spatie/dns/zipball/403865f19c01e0b9cfa9356fba5748dd5307b35c",
  3065. "reference": "403865f19c01e0b9cfa9356fba5748dd5307b35c",
  3066. "shasum": ""
  3067. },
  3068. "require": {
  3069. "php": "^7.1",
  3070. "symfony/process": "^4.0"
  3071. },
  3072. "require-dev": {
  3073. "phpunit/phpunit": "^7.0"
  3074. },
  3075. "type": "library",
  3076. "autoload": {
  3077. "psr-4": {
  3078. "Spatie\\Dns\\": "src"
  3079. }
  3080. },
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "MIT"
  3084. ],
  3085. "authors": [
  3086. {
  3087. "name": "Freek Van der Herten",
  3088. "role": "Developer",
  3089. "email": "freek@spatie.be",
  3090. "homepage": "https://spatie.be"
  3091. },
  3092. {
  3093. "name": "Harish Toshniwal",
  3094. "role": "Developer",
  3095. "email": "harish@spatie.be",
  3096. "homepage": "https://spatie.be"
  3097. }
  3098. ],
  3099. "description": "Retrieve DNS records",
  3100. "homepage": "https://github.com/spatie/dns",
  3101. "keywords": [
  3102. "dns",
  3103. "spatie"
  3104. ],
  3105. "time": "2019-05-17T07:19:43+00:00"
  3106. },
  3107. {
  3108. "name": "swiftmailer/swiftmailer",
  3109. "version": "v6.2.1",
  3110. "source": {
  3111. "type": "git",
  3112. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3113. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  3114. },
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  3118. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  3119. "shasum": ""
  3120. },
  3121. "require": {
  3122. "egulias/email-validator": "~2.0",
  3123. "php": ">=7.0.0",
  3124. "symfony/polyfill-iconv": "^1.0",
  3125. "symfony/polyfill-intl-idn": "^1.10",
  3126. "symfony/polyfill-mbstring": "^1.0"
  3127. },
  3128. "require-dev": {
  3129. "mockery/mockery": "~0.9.1",
  3130. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3131. },
  3132. "suggest": {
  3133. "ext-intl": "Needed to support internationalized email addresses",
  3134. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "branch-alias": {
  3139. "dev-master": "6.2-dev"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "files": [
  3144. "lib/swift_required.php"
  3145. ]
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Chris Corbyn"
  3154. },
  3155. {
  3156. "name": "Fabien Potencier",
  3157. "email": "fabien@symfony.com"
  3158. }
  3159. ],
  3160. "description": "Swiftmailer, free feature-rich PHP mailer",
  3161. "homepage": "https://swiftmailer.symfony.com",
  3162. "keywords": [
  3163. "email",
  3164. "mail",
  3165. "mailer"
  3166. ],
  3167. "time": "2019-04-21T09:21:45+00:00"
  3168. },
  3169. {
  3170. "name": "symfony/console",
  3171. "version": "v4.3.6",
  3172. "source": {
  3173. "type": "git",
  3174. "url": "https://github.com/symfony/console.git",
  3175. "reference": "136c4bd62ea871d00843d1bc0316de4c4a84bb78"
  3176. },
  3177. "dist": {
  3178. "type": "zip",
  3179. "url": "https://api.github.com/repos/symfony/console/zipball/136c4bd62ea871d00843d1bc0316de4c4a84bb78",
  3180. "reference": "136c4bd62ea871d00843d1bc0316de4c4a84bb78",
  3181. "shasum": ""
  3182. },
  3183. "require": {
  3184. "php": "^7.1.3",
  3185. "symfony/polyfill-mbstring": "~1.0",
  3186. "symfony/polyfill-php73": "^1.8",
  3187. "symfony/service-contracts": "^1.1"
  3188. },
  3189. "conflict": {
  3190. "symfony/dependency-injection": "<3.4",
  3191. "symfony/event-dispatcher": "<4.3",
  3192. "symfony/process": "<3.3"
  3193. },
  3194. "provide": {
  3195. "psr/log-implementation": "1.0"
  3196. },
  3197. "require-dev": {
  3198. "psr/log": "~1.0",
  3199. "symfony/config": "~3.4|~4.0",
  3200. "symfony/dependency-injection": "~3.4|~4.0",
  3201. "symfony/event-dispatcher": "^4.3",
  3202. "symfony/lock": "~3.4|~4.0",
  3203. "symfony/process": "~3.4|~4.0",
  3204. "symfony/var-dumper": "^4.3"
  3205. },
  3206. "suggest": {
  3207. "psr/log": "For using the console logger",
  3208. "symfony/event-dispatcher": "",
  3209. "symfony/lock": "",
  3210. "symfony/process": ""
  3211. },
  3212. "type": "library",
  3213. "extra": {
  3214. "branch-alias": {
  3215. "dev-master": "4.3-dev"
  3216. }
  3217. },
  3218. "autoload": {
  3219. "psr-4": {
  3220. "Symfony\\Component\\Console\\": ""
  3221. },
  3222. "exclude-from-classmap": [
  3223. "/Tests/"
  3224. ]
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "authors": [
  3231. {
  3232. "name": "Fabien Potencier",
  3233. "email": "fabien@symfony.com"
  3234. },
  3235. {
  3236. "name": "Symfony Community",
  3237. "homepage": "https://symfony.com/contributors"
  3238. }
  3239. ],
  3240. "description": "Symfony Console Component",
  3241. "homepage": "https://symfony.com",
  3242. "time": "2019-10-30T12:58:49+00:00"
  3243. },
  3244. {
  3245. "name": "symfony/css-selector",
  3246. "version": "v4.3.6",
  3247. "source": {
  3248. "type": "git",
  3249. "url": "https://github.com/symfony/css-selector.git",
  3250. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9"
  3251. },
  3252. "dist": {
  3253. "type": "zip",
  3254. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  3255. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  3256. "shasum": ""
  3257. },
  3258. "require": {
  3259. "php": "^7.1.3"
  3260. },
  3261. "type": "library",
  3262. "extra": {
  3263. "branch-alias": {
  3264. "dev-master": "4.3-dev"
  3265. }
  3266. },
  3267. "autoload": {
  3268. "psr-4": {
  3269. "Symfony\\Component\\CssSelector\\": ""
  3270. },
  3271. "exclude-from-classmap": [
  3272. "/Tests/"
  3273. ]
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Fabien Potencier",
  3282. "email": "fabien@symfony.com"
  3283. },
  3284. {
  3285. "name": "Jean-François Simon",
  3286. "email": "jeanfrancois.simon@sensiolabs.com"
  3287. },
  3288. {
  3289. "name": "Symfony Community",
  3290. "homepage": "https://symfony.com/contributors"
  3291. }
  3292. ],
  3293. "description": "Symfony CssSelector Component",
  3294. "homepage": "https://symfony.com",
  3295. "time": "2019-10-02T08:36:26+00:00"
  3296. },
  3297. {
  3298. "name": "symfony/debug",
  3299. "version": "v4.3.6",
  3300. "source": {
  3301. "type": "git",
  3302. "url": "https://github.com/symfony/debug.git",
  3303. "reference": "5ea9c3e01989a86ceaa0283f21234b12deadf5e2"
  3304. },
  3305. "dist": {
  3306. "type": "zip",
  3307. "url": "https://api.github.com/repos/symfony/debug/zipball/5ea9c3e01989a86ceaa0283f21234b12deadf5e2",
  3308. "reference": "5ea9c3e01989a86ceaa0283f21234b12deadf5e2",
  3309. "shasum": ""
  3310. },
  3311. "require": {
  3312. "php": "^7.1.3",
  3313. "psr/log": "~1.0"
  3314. },
  3315. "conflict": {
  3316. "symfony/http-kernel": "<3.4"
  3317. },
  3318. "require-dev": {
  3319. "symfony/http-kernel": "~3.4|~4.0"
  3320. },
  3321. "type": "library",
  3322. "extra": {
  3323. "branch-alias": {
  3324. "dev-master": "4.3-dev"
  3325. }
  3326. },
  3327. "autoload": {
  3328. "psr-4": {
  3329. "Symfony\\Component\\Debug\\": ""
  3330. },
  3331. "exclude-from-classmap": [
  3332. "/Tests/"
  3333. ]
  3334. },
  3335. "notification-url": "https://packagist.org/downloads/",
  3336. "license": [
  3337. "MIT"
  3338. ],
  3339. "authors": [
  3340. {
  3341. "name": "Fabien Potencier",
  3342. "email": "fabien@symfony.com"
  3343. },
  3344. {
  3345. "name": "Symfony Community",
  3346. "homepage": "https://symfony.com/contributors"
  3347. }
  3348. ],
  3349. "description": "Symfony Debug Component",
  3350. "homepage": "https://symfony.com",
  3351. "time": "2019-10-28T17:07:32+00:00"
  3352. },
  3353. {
  3354. "name": "symfony/event-dispatcher",
  3355. "version": "v4.3.6",
  3356. "source": {
  3357. "type": "git",
  3358. "url": "https://github.com/symfony/event-dispatcher.git",
  3359. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807"
  3360. },
  3361. "dist": {
  3362. "type": "zip",
  3363. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6229f58993e5a157f6096fc7145c0717d0be8807",
  3364. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807",
  3365. "shasum": ""
  3366. },
  3367. "require": {
  3368. "php": "^7.1.3",
  3369. "symfony/event-dispatcher-contracts": "^1.1"
  3370. },
  3371. "conflict": {
  3372. "symfony/dependency-injection": "<3.4"
  3373. },
  3374. "provide": {
  3375. "psr/event-dispatcher-implementation": "1.0",
  3376. "symfony/event-dispatcher-implementation": "1.1"
  3377. },
  3378. "require-dev": {
  3379. "psr/log": "~1.0",
  3380. "symfony/config": "~3.4|~4.0",
  3381. "symfony/dependency-injection": "~3.4|~4.0",
  3382. "symfony/expression-language": "~3.4|~4.0",
  3383. "symfony/http-foundation": "^3.4|^4.0",
  3384. "symfony/service-contracts": "^1.1",
  3385. "symfony/stopwatch": "~3.4|~4.0"
  3386. },
  3387. "suggest": {
  3388. "symfony/dependency-injection": "",
  3389. "symfony/http-kernel": ""
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "branch-alias": {
  3394. "dev-master": "4.3-dev"
  3395. }
  3396. },
  3397. "autoload": {
  3398. "psr-4": {
  3399. "Symfony\\Component\\EventDispatcher\\": ""
  3400. },
  3401. "exclude-from-classmap": [
  3402. "/Tests/"
  3403. ]
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "MIT"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "Fabien Potencier",
  3412. "email": "fabien@symfony.com"
  3413. },
  3414. {
  3415. "name": "Symfony Community",
  3416. "homepage": "https://symfony.com/contributors"
  3417. }
  3418. ],
  3419. "description": "Symfony EventDispatcher Component",
  3420. "homepage": "https://symfony.com",
  3421. "time": "2019-10-01T16:40:32+00:00"
  3422. },
  3423. {
  3424. "name": "symfony/event-dispatcher-contracts",
  3425. "version": "v1.1.7",
  3426. "source": {
  3427. "type": "git",
  3428. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3429. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  3430. },
  3431. "dist": {
  3432. "type": "zip",
  3433. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3434. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3435. "shasum": ""
  3436. },
  3437. "require": {
  3438. "php": "^7.1.3"
  3439. },
  3440. "suggest": {
  3441. "psr/event-dispatcher": "",
  3442. "symfony/event-dispatcher-implementation": ""
  3443. },
  3444. "type": "library",
  3445. "extra": {
  3446. "branch-alias": {
  3447. "dev-master": "1.1-dev"
  3448. }
  3449. },
  3450. "autoload": {
  3451. "psr-4": {
  3452. "Symfony\\Contracts\\EventDispatcher\\": ""
  3453. }
  3454. },
  3455. "notification-url": "https://packagist.org/downloads/",
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Nicolas Grekas",
  3462. "email": "p@tchwork.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Generic abstractions related to dispatching event",
  3470. "homepage": "https://symfony.com",
  3471. "keywords": [
  3472. "abstractions",
  3473. "contracts",
  3474. "decoupling",
  3475. "interfaces",
  3476. "interoperability",
  3477. "standards"
  3478. ],
  3479. "time": "2019-09-17T09:54:03+00:00"
  3480. },
  3481. {
  3482. "name": "symfony/finder",
  3483. "version": "v4.3.6",
  3484. "source": {
  3485. "type": "git",
  3486. "url": "https://github.com/symfony/finder.git",
  3487. "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f"
  3488. },
  3489. "dist": {
  3490. "type": "zip",
  3491. "url": "https://api.github.com/repos/symfony/finder/zipball/72a068f77e317ae77c0a0495236ad292cfb5ce6f",
  3492. "reference": "72a068f77e317ae77c0a0495236ad292cfb5ce6f",
  3493. "shasum": ""
  3494. },
  3495. "require": {
  3496. "php": "^7.1.3"
  3497. },
  3498. "type": "library",
  3499. "extra": {
  3500. "branch-alias": {
  3501. "dev-master": "4.3-dev"
  3502. }
  3503. },
  3504. "autoload": {
  3505. "psr-4": {
  3506. "Symfony\\Component\\Finder\\": ""
  3507. },
  3508. "exclude-from-classmap": [
  3509. "/Tests/"
  3510. ]
  3511. },
  3512. "notification-url": "https://packagist.org/downloads/",
  3513. "license": [
  3514. "MIT"
  3515. ],
  3516. "authors": [
  3517. {
  3518. "name": "Fabien Potencier",
  3519. "email": "fabien@symfony.com"
  3520. },
  3521. {
  3522. "name": "Symfony Community",
  3523. "homepage": "https://symfony.com/contributors"
  3524. }
  3525. ],
  3526. "description": "Symfony Finder Component",
  3527. "homepage": "https://symfony.com",
  3528. "time": "2019-10-30T12:53:54+00:00"
  3529. },
  3530. {
  3531. "name": "symfony/http-foundation",
  3532. "version": "v4.3.6",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/symfony/http-foundation.git",
  3536. "reference": "38f63e471cda9d37ac06e76d14c5ea2ec5887051"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/38f63e471cda9d37ac06e76d14c5ea2ec5887051",
  3541. "reference": "38f63e471cda9d37ac06e76d14c5ea2ec5887051",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "php": "^7.1.3",
  3546. "symfony/mime": "^4.3",
  3547. "symfony/polyfill-mbstring": "~1.1"
  3548. },
  3549. "require-dev": {
  3550. "predis/predis": "~1.0",
  3551. "symfony/expression-language": "~3.4|~4.0"
  3552. },
  3553. "type": "library",
  3554. "extra": {
  3555. "branch-alias": {
  3556. "dev-master": "4.3-dev"
  3557. }
  3558. },
  3559. "autoload": {
  3560. "psr-4": {
  3561. "Symfony\\Component\\HttpFoundation\\": ""
  3562. },
  3563. "exclude-from-classmap": [
  3564. "/Tests/"
  3565. ]
  3566. },
  3567. "notification-url": "https://packagist.org/downloads/",
  3568. "license": [
  3569. "MIT"
  3570. ],
  3571. "authors": [
  3572. {
  3573. "name": "Fabien Potencier",
  3574. "email": "fabien@symfony.com"
  3575. },
  3576. {
  3577. "name": "Symfony Community",
  3578. "homepage": "https://symfony.com/contributors"
  3579. }
  3580. ],
  3581. "description": "Symfony HttpFoundation Component",
  3582. "homepage": "https://symfony.com",
  3583. "time": "2019-10-30T12:58:49+00:00"
  3584. },
  3585. {
  3586. "name": "symfony/http-kernel",
  3587. "version": "v4.3.6",
  3588. "source": {
  3589. "type": "git",
  3590. "url": "https://github.com/symfony/http-kernel.git",
  3591. "reference": "56acfda9e734e8715b3b0e6859cdb4f5b28757bf"
  3592. },
  3593. "dist": {
  3594. "type": "zip",
  3595. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/56acfda9e734e8715b3b0e6859cdb4f5b28757bf",
  3596. "reference": "56acfda9e734e8715b3b0e6859cdb4f5b28757bf",
  3597. "shasum": ""
  3598. },
  3599. "require": {
  3600. "php": "^7.1.3",
  3601. "psr/log": "~1.0",
  3602. "symfony/debug": "~3.4|~4.0",
  3603. "symfony/event-dispatcher": "^4.3",
  3604. "symfony/http-foundation": "^4.1.1",
  3605. "symfony/polyfill-ctype": "~1.8",
  3606. "symfony/polyfill-php73": "^1.9"
  3607. },
  3608. "conflict": {
  3609. "symfony/browser-kit": "<4.3",
  3610. "symfony/config": "<3.4",
  3611. "symfony/dependency-injection": "<4.3",
  3612. "symfony/translation": "<4.2",
  3613. "symfony/var-dumper": "<4.1.1",
  3614. "twig/twig": "<1.34|<2.4,>=2"
  3615. },
  3616. "provide": {
  3617. "psr/log-implementation": "1.0"
  3618. },
  3619. "require-dev": {
  3620. "psr/cache": "~1.0",
  3621. "symfony/browser-kit": "^4.3",
  3622. "symfony/config": "~3.4|~4.0",
  3623. "symfony/console": "~3.4|~4.0",
  3624. "symfony/css-selector": "~3.4|~4.0",
  3625. "symfony/dependency-injection": "^4.3",
  3626. "symfony/dom-crawler": "~3.4|~4.0",
  3627. "symfony/expression-language": "~3.4|~4.0",
  3628. "symfony/finder": "~3.4|~4.0",
  3629. "symfony/process": "~3.4|~4.0",
  3630. "symfony/routing": "~3.4|~4.0",
  3631. "symfony/stopwatch": "~3.4|~4.0",
  3632. "symfony/templating": "~3.4|~4.0",
  3633. "symfony/translation": "~4.2",
  3634. "symfony/translation-contracts": "^1.1",
  3635. "symfony/var-dumper": "^4.1.1",
  3636. "twig/twig": "^1.34|^2.4"
  3637. },
  3638. "suggest": {
  3639. "symfony/browser-kit": "",
  3640. "symfony/config": "",
  3641. "symfony/console": "",
  3642. "symfony/dependency-injection": "",
  3643. "symfony/var-dumper": ""
  3644. },
  3645. "type": "library",
  3646. "extra": {
  3647. "branch-alias": {
  3648. "dev-master": "4.3-dev"
  3649. }
  3650. },
  3651. "autoload": {
  3652. "psr-4": {
  3653. "Symfony\\Component\\HttpKernel\\": ""
  3654. },
  3655. "exclude-from-classmap": [
  3656. "/Tests/"
  3657. ]
  3658. },
  3659. "notification-url": "https://packagist.org/downloads/",
  3660. "license": [
  3661. "MIT"
  3662. ],
  3663. "authors": [
  3664. {
  3665. "name": "Fabien Potencier",
  3666. "email": "fabien@symfony.com"
  3667. },
  3668. {
  3669. "name": "Symfony Community",
  3670. "homepage": "https://symfony.com/contributors"
  3671. }
  3672. ],
  3673. "description": "Symfony HttpKernel Component",
  3674. "homepage": "https://symfony.com",
  3675. "time": "2019-11-01T10:00:03+00:00"
  3676. },
  3677. {
  3678. "name": "symfony/mime",
  3679. "version": "v4.3.6",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/symfony/mime.git",
  3683. "reference": "3c0e197529da6e59b217615ba8ee7604df88b551"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/symfony/mime/zipball/3c0e197529da6e59b217615ba8ee7604df88b551",
  3688. "reference": "3c0e197529da6e59b217615ba8ee7604df88b551",
  3689. "shasum": ""
  3690. },
  3691. "require": {
  3692. "php": "^7.1.3",
  3693. "symfony/polyfill-intl-idn": "^1.10",
  3694. "symfony/polyfill-mbstring": "^1.0"
  3695. },
  3696. "require-dev": {
  3697. "egulias/email-validator": "^2.1.10",
  3698. "symfony/dependency-injection": "~3.4|^4.1"
  3699. },
  3700. "type": "library",
  3701. "extra": {
  3702. "branch-alias": {
  3703. "dev-master": "4.3-dev"
  3704. }
  3705. },
  3706. "autoload": {
  3707. "psr-4": {
  3708. "Symfony\\Component\\Mime\\": ""
  3709. },
  3710. "exclude-from-classmap": [
  3711. "/Tests/"
  3712. ]
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "MIT"
  3717. ],
  3718. "authors": [
  3719. {
  3720. "name": "Fabien Potencier",
  3721. "email": "fabien@symfony.com"
  3722. },
  3723. {
  3724. "name": "Symfony Community",
  3725. "homepage": "https://symfony.com/contributors"
  3726. }
  3727. ],
  3728. "description": "A library to manipulate MIME messages",
  3729. "homepage": "https://symfony.com",
  3730. "keywords": [
  3731. "mime",
  3732. "mime-type"
  3733. ],
  3734. "time": "2019-10-30T12:58:49+00:00"
  3735. },
  3736. {
  3737. "name": "symfony/polyfill-ctype",
  3738. "version": "v1.12.0",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/symfony/polyfill-ctype.git",
  3742. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  3747. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  3748. "shasum": ""
  3749. },
  3750. "require": {
  3751. "php": ">=5.3.3"
  3752. },
  3753. "suggest": {
  3754. "ext-ctype": "For best performance"
  3755. },
  3756. "type": "library",
  3757. "extra": {
  3758. "branch-alias": {
  3759. "dev-master": "1.12-dev"
  3760. }
  3761. },
  3762. "autoload": {
  3763. "psr-4": {
  3764. "Symfony\\Polyfill\\Ctype\\": ""
  3765. },
  3766. "files": [
  3767. "bootstrap.php"
  3768. ]
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "MIT"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "Gert de Pagter",
  3777. "email": "BackEndTea@gmail.com"
  3778. },
  3779. {
  3780. "name": "Symfony Community",
  3781. "homepage": "https://symfony.com/contributors"
  3782. }
  3783. ],
  3784. "description": "Symfony polyfill for ctype functions",
  3785. "homepage": "https://symfony.com",
  3786. "keywords": [
  3787. "compatibility",
  3788. "ctype",
  3789. "polyfill",
  3790. "portable"
  3791. ],
  3792. "time": "2019-08-06T08:03:45+00:00"
  3793. },
  3794. {
  3795. "name": "symfony/polyfill-iconv",
  3796. "version": "v1.12.0",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/symfony/polyfill-iconv.git",
  3800. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  3805. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": ">=5.3.3"
  3810. },
  3811. "suggest": {
  3812. "ext-iconv": "For best performance"
  3813. },
  3814. "type": "library",
  3815. "extra": {
  3816. "branch-alias": {
  3817. "dev-master": "1.12-dev"
  3818. }
  3819. },
  3820. "autoload": {
  3821. "psr-4": {
  3822. "Symfony\\Polyfill\\Iconv\\": ""
  3823. },
  3824. "files": [
  3825. "bootstrap.php"
  3826. ]
  3827. },
  3828. "notification-url": "https://packagist.org/downloads/",
  3829. "license": [
  3830. "MIT"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "Nicolas Grekas",
  3835. "email": "p@tchwork.com"
  3836. },
  3837. {
  3838. "name": "Symfony Community",
  3839. "homepage": "https://symfony.com/contributors"
  3840. }
  3841. ],
  3842. "description": "Symfony polyfill for the Iconv extension",
  3843. "homepage": "https://symfony.com",
  3844. "keywords": [
  3845. "compatibility",
  3846. "iconv",
  3847. "polyfill",
  3848. "portable",
  3849. "shim"
  3850. ],
  3851. "time": "2019-08-06T08:03:45+00:00"
  3852. },
  3853. {
  3854. "name": "symfony/polyfill-intl-idn",
  3855. "version": "v1.12.0",
  3856. "source": {
  3857. "type": "git",
  3858. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3859. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2"
  3860. },
  3861. "dist": {
  3862. "type": "zip",
  3863. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  3864. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  3865. "shasum": ""
  3866. },
  3867. "require": {
  3868. "php": ">=5.3.3",
  3869. "symfony/polyfill-mbstring": "^1.3",
  3870. "symfony/polyfill-php72": "^1.9"
  3871. },
  3872. "suggest": {
  3873. "ext-intl": "For best performance"
  3874. },
  3875. "type": "library",
  3876. "extra": {
  3877. "branch-alias": {
  3878. "dev-master": "1.12-dev"
  3879. }
  3880. },
  3881. "autoload": {
  3882. "psr-4": {
  3883. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3884. },
  3885. "files": [
  3886. "bootstrap.php"
  3887. ]
  3888. },
  3889. "notification-url": "https://packagist.org/downloads/",
  3890. "license": [
  3891. "MIT"
  3892. ],
  3893. "authors": [
  3894. {
  3895. "name": "Laurent Bassin",
  3896. "email": "laurent@bassin.info"
  3897. },
  3898. {
  3899. "name": "Symfony Community",
  3900. "homepage": "https://symfony.com/contributors"
  3901. }
  3902. ],
  3903. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3904. "homepage": "https://symfony.com",
  3905. "keywords": [
  3906. "compatibility",
  3907. "idn",
  3908. "intl",
  3909. "polyfill",
  3910. "portable",
  3911. "shim"
  3912. ],
  3913. "time": "2019-08-06T08:03:45+00:00"
  3914. },
  3915. {
  3916. "name": "symfony/polyfill-mbstring",
  3917. "version": "v1.12.0",
  3918. "source": {
  3919. "type": "git",
  3920. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3921. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  3922. },
  3923. "dist": {
  3924. "type": "zip",
  3925. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  3926. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  3927. "shasum": ""
  3928. },
  3929. "require": {
  3930. "php": ">=5.3.3"
  3931. },
  3932. "suggest": {
  3933. "ext-mbstring": "For best performance"
  3934. },
  3935. "type": "library",
  3936. "extra": {
  3937. "branch-alias": {
  3938. "dev-master": "1.12-dev"
  3939. }
  3940. },
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Symfony\\Polyfill\\Mbstring\\": ""
  3944. },
  3945. "files": [
  3946. "bootstrap.php"
  3947. ]
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "Nicolas Grekas",
  3956. "email": "p@tchwork.com"
  3957. },
  3958. {
  3959. "name": "Symfony Community",
  3960. "homepage": "https://symfony.com/contributors"
  3961. }
  3962. ],
  3963. "description": "Symfony polyfill for the Mbstring extension",
  3964. "homepage": "https://symfony.com",
  3965. "keywords": [
  3966. "compatibility",
  3967. "mbstring",
  3968. "polyfill",
  3969. "portable",
  3970. "shim"
  3971. ],
  3972. "time": "2019-08-06T08:03:45+00:00"
  3973. },
  3974. {
  3975. "name": "symfony/polyfill-php56",
  3976. "version": "v1.12.0",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/symfony/polyfill-php56.git",
  3980. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403",
  3985. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403",
  3986. "shasum": ""
  3987. },
  3988. "require": {
  3989. "php": ">=5.3.3",
  3990. "symfony/polyfill-util": "~1.0"
  3991. },
  3992. "type": "library",
  3993. "extra": {
  3994. "branch-alias": {
  3995. "dev-master": "1.12-dev"
  3996. }
  3997. },
  3998. "autoload": {
  3999. "psr-4": {
  4000. "Symfony\\Polyfill\\Php56\\": ""
  4001. },
  4002. "files": [
  4003. "bootstrap.php"
  4004. ]
  4005. },
  4006. "notification-url": "https://packagist.org/downloads/",
  4007. "license": [
  4008. "MIT"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Nicolas Grekas",
  4013. "email": "p@tchwork.com"
  4014. },
  4015. {
  4016. "name": "Symfony Community",
  4017. "homepage": "https://symfony.com/contributors"
  4018. }
  4019. ],
  4020. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  4021. "homepage": "https://symfony.com",
  4022. "keywords": [
  4023. "compatibility",
  4024. "polyfill",
  4025. "portable",
  4026. "shim"
  4027. ],
  4028. "time": "2019-08-06T08:03:45+00:00"
  4029. },
  4030. {
  4031. "name": "symfony/polyfill-php72",
  4032. "version": "v1.12.0",
  4033. "source": {
  4034. "type": "git",
  4035. "url": "https://github.com/symfony/polyfill-php72.git",
  4036. "reference": "04ce3335667451138df4307d6a9b61565560199e"
  4037. },
  4038. "dist": {
  4039. "type": "zip",
  4040. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e",
  4041. "reference": "04ce3335667451138df4307d6a9b61565560199e",
  4042. "shasum": ""
  4043. },
  4044. "require": {
  4045. "php": ">=5.3.3"
  4046. },
  4047. "type": "library",
  4048. "extra": {
  4049. "branch-alias": {
  4050. "dev-master": "1.12-dev"
  4051. }
  4052. },
  4053. "autoload": {
  4054. "psr-4": {
  4055. "Symfony\\Polyfill\\Php72\\": ""
  4056. },
  4057. "files": [
  4058. "bootstrap.php"
  4059. ]
  4060. },
  4061. "notification-url": "https://packagist.org/downloads/",
  4062. "license": [
  4063. "MIT"
  4064. ],
  4065. "authors": [
  4066. {
  4067. "name": "Nicolas Grekas",
  4068. "email": "p@tchwork.com"
  4069. },
  4070. {
  4071. "name": "Symfony Community",
  4072. "homepage": "https://symfony.com/contributors"
  4073. }
  4074. ],
  4075. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4076. "homepage": "https://symfony.com",
  4077. "keywords": [
  4078. "compatibility",
  4079. "polyfill",
  4080. "portable",
  4081. "shim"
  4082. ],
  4083. "time": "2019-08-06T08:03:45+00:00"
  4084. },
  4085. {
  4086. "name": "symfony/polyfill-php73",
  4087. "version": "v1.12.0",
  4088. "source": {
  4089. "type": "git",
  4090. "url": "https://github.com/symfony/polyfill-php73.git",
  4091. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188"
  4092. },
  4093. "dist": {
  4094. "type": "zip",
  4095. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188",
  4096. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188",
  4097. "shasum": ""
  4098. },
  4099. "require": {
  4100. "php": ">=5.3.3"
  4101. },
  4102. "type": "library",
  4103. "extra": {
  4104. "branch-alias": {
  4105. "dev-master": "1.12-dev"
  4106. }
  4107. },
  4108. "autoload": {
  4109. "psr-4": {
  4110. "Symfony\\Polyfill\\Php73\\": ""
  4111. },
  4112. "files": [
  4113. "bootstrap.php"
  4114. ],
  4115. "classmap": [
  4116. "Resources/stubs"
  4117. ]
  4118. },
  4119. "notification-url": "https://packagist.org/downloads/",
  4120. "license": [
  4121. "MIT"
  4122. ],
  4123. "authors": [
  4124. {
  4125. "name": "Nicolas Grekas",
  4126. "email": "p@tchwork.com"
  4127. },
  4128. {
  4129. "name": "Symfony Community",
  4130. "homepage": "https://symfony.com/contributors"
  4131. }
  4132. ],
  4133. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4134. "homepage": "https://symfony.com",
  4135. "keywords": [
  4136. "compatibility",
  4137. "polyfill",
  4138. "portable",
  4139. "shim"
  4140. ],
  4141. "time": "2019-08-06T08:03:45+00:00"
  4142. },
  4143. {
  4144. "name": "symfony/polyfill-util",
  4145. "version": "v1.12.0",
  4146. "source": {
  4147. "type": "git",
  4148. "url": "https://github.com/symfony/polyfill-util.git",
  4149. "reference": "4317de1386717b4c22caed7725350a8887ab205c"
  4150. },
  4151. "dist": {
  4152. "type": "zip",
  4153. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c",
  4154. "reference": "4317de1386717b4c22caed7725350a8887ab205c",
  4155. "shasum": ""
  4156. },
  4157. "require": {
  4158. "php": ">=5.3.3"
  4159. },
  4160. "type": "library",
  4161. "extra": {
  4162. "branch-alias": {
  4163. "dev-master": "1.12-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Symfony\\Polyfill\\Util\\": ""
  4169. }
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Nicolas Grekas",
  4178. "email": "p@tchwork.com"
  4179. },
  4180. {
  4181. "name": "Symfony Community",
  4182. "homepage": "https://symfony.com/contributors"
  4183. }
  4184. ],
  4185. "description": "Symfony utilities for portability of PHP codes",
  4186. "homepage": "https://symfony.com",
  4187. "keywords": [
  4188. "compat",
  4189. "compatibility",
  4190. "polyfill",
  4191. "shim"
  4192. ],
  4193. "time": "2019-08-06T08:03:45+00:00"
  4194. },
  4195. {
  4196. "name": "symfony/process",
  4197. "version": "v4.3.6",
  4198. "source": {
  4199. "type": "git",
  4200. "url": "https://github.com/symfony/process.git",
  4201. "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0"
  4202. },
  4203. "dist": {
  4204. "type": "zip",
  4205. "url": "https://api.github.com/repos/symfony/process/zipball/3b2e0cb029afbb0395034509291f21191d1a4db0",
  4206. "reference": "3b2e0cb029afbb0395034509291f21191d1a4db0",
  4207. "shasum": ""
  4208. },
  4209. "require": {
  4210. "php": "^7.1.3"
  4211. },
  4212. "type": "library",
  4213. "extra": {
  4214. "branch-alias": {
  4215. "dev-master": "4.3-dev"
  4216. }
  4217. },
  4218. "autoload": {
  4219. "psr-4": {
  4220. "Symfony\\Component\\Process\\": ""
  4221. },
  4222. "exclude-from-classmap": [
  4223. "/Tests/"
  4224. ]
  4225. },
  4226. "notification-url": "https://packagist.org/downloads/",
  4227. "license": [
  4228. "MIT"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Fabien Potencier",
  4233. "email": "fabien@symfony.com"
  4234. },
  4235. {
  4236. "name": "Symfony Community",
  4237. "homepage": "https://symfony.com/contributors"
  4238. }
  4239. ],
  4240. "description": "Symfony Process Component",
  4241. "homepage": "https://symfony.com",
  4242. "time": "2019-10-28T17:07:32+00:00"
  4243. },
  4244. {
  4245. "name": "symfony/psr-http-message-bridge",
  4246. "version": "v1.2.0",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4250. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4255. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4256. "shasum": ""
  4257. },
  4258. "require": {
  4259. "php": "^7.1",
  4260. "psr/http-message": "^1.0",
  4261. "symfony/http-foundation": "^3.4 || ^4.0"
  4262. },
  4263. "require-dev": {
  4264. "nyholm/psr7": "^1.1",
  4265. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  4266. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  4267. },
  4268. "suggest": {
  4269. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4270. },
  4271. "type": "symfony-bridge",
  4272. "extra": {
  4273. "branch-alias": {
  4274. "dev-master": "1.2-dev"
  4275. }
  4276. },
  4277. "autoload": {
  4278. "psr-4": {
  4279. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4280. },
  4281. "exclude-from-classmap": [
  4282. "/Tests/"
  4283. ]
  4284. },
  4285. "notification-url": "https://packagist.org/downloads/",
  4286. "license": [
  4287. "MIT"
  4288. ],
  4289. "authors": [
  4290. {
  4291. "name": "Symfony Community",
  4292. "homepage": "http://symfony.com/contributors"
  4293. },
  4294. {
  4295. "name": "Fabien Potencier",
  4296. "email": "fabien@symfony.com"
  4297. }
  4298. ],
  4299. "description": "PSR HTTP message bridge",
  4300. "homepage": "http://symfony.com",
  4301. "keywords": [
  4302. "http",
  4303. "http-message",
  4304. "psr-17",
  4305. "psr-7"
  4306. ],
  4307. "time": "2019-03-11T18:22:33+00:00"
  4308. },
  4309. {
  4310. "name": "symfony/routing",
  4311. "version": "v4.3.6",
  4312. "source": {
  4313. "type": "git",
  4314. "url": "https://github.com/symfony/routing.git",
  4315. "reference": "63a9920cc86fcc745e5ea254e362f02b615290b9"
  4316. },
  4317. "dist": {
  4318. "type": "zip",
  4319. "url": "https://api.github.com/repos/symfony/routing/zipball/63a9920cc86fcc745e5ea254e362f02b615290b9",
  4320. "reference": "63a9920cc86fcc745e5ea254e362f02b615290b9",
  4321. "shasum": ""
  4322. },
  4323. "require": {
  4324. "php": "^7.1.3"
  4325. },
  4326. "conflict": {
  4327. "symfony/config": "<4.2",
  4328. "symfony/dependency-injection": "<3.4",
  4329. "symfony/yaml": "<3.4"
  4330. },
  4331. "require-dev": {
  4332. "doctrine/annotations": "~1.2",
  4333. "psr/log": "~1.0",
  4334. "symfony/config": "~4.2",
  4335. "symfony/dependency-injection": "~3.4|~4.0",
  4336. "symfony/expression-language": "~3.4|~4.0",
  4337. "symfony/http-foundation": "~3.4|~4.0",
  4338. "symfony/yaml": "~3.4|~4.0"
  4339. },
  4340. "suggest": {
  4341. "doctrine/annotations": "For using the annotation loader",
  4342. "symfony/config": "For using the all-in-one router or any loader",
  4343. "symfony/expression-language": "For using expression matching",
  4344. "symfony/http-foundation": "For using a Symfony Request object",
  4345. "symfony/yaml": "For using the YAML loader"
  4346. },
  4347. "type": "library",
  4348. "extra": {
  4349. "branch-alias": {
  4350. "dev-master": "4.3-dev"
  4351. }
  4352. },
  4353. "autoload": {
  4354. "psr-4": {
  4355. "Symfony\\Component\\Routing\\": ""
  4356. },
  4357. "exclude-from-classmap": [
  4358. "/Tests/"
  4359. ]
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Fabien Potencier",
  4368. "email": "fabien@symfony.com"
  4369. },
  4370. {
  4371. "name": "Symfony Community",
  4372. "homepage": "https://symfony.com/contributors"
  4373. }
  4374. ],
  4375. "description": "Symfony Routing Component",
  4376. "homepage": "https://symfony.com",
  4377. "keywords": [
  4378. "router",
  4379. "routing",
  4380. "uri",
  4381. "url"
  4382. ],
  4383. "time": "2019-10-30T12:58:49+00:00"
  4384. },
  4385. {
  4386. "name": "symfony/service-contracts",
  4387. "version": "v1.1.7",
  4388. "source": {
  4389. "type": "git",
  4390. "url": "https://github.com/symfony/service-contracts.git",
  4391. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0"
  4392. },
  4393. "dist": {
  4394. "type": "zip",
  4395. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  4396. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  4397. "shasum": ""
  4398. },
  4399. "require": {
  4400. "php": "^7.1.3",
  4401. "psr/container": "^1.0"
  4402. },
  4403. "suggest": {
  4404. "symfony/service-implementation": ""
  4405. },
  4406. "type": "library",
  4407. "extra": {
  4408. "branch-alias": {
  4409. "dev-master": "1.1-dev"
  4410. }
  4411. },
  4412. "autoload": {
  4413. "psr-4": {
  4414. "Symfony\\Contracts\\Service\\": ""
  4415. }
  4416. },
  4417. "notification-url": "https://packagist.org/downloads/",
  4418. "license": [
  4419. "MIT"
  4420. ],
  4421. "authors": [
  4422. {
  4423. "name": "Nicolas Grekas",
  4424. "email": "p@tchwork.com"
  4425. },
  4426. {
  4427. "name": "Symfony Community",
  4428. "homepage": "https://symfony.com/contributors"
  4429. }
  4430. ],
  4431. "description": "Generic abstractions related to writing services",
  4432. "homepage": "https://symfony.com",
  4433. "keywords": [
  4434. "abstractions",
  4435. "contracts",
  4436. "decoupling",
  4437. "interfaces",
  4438. "interoperability",
  4439. "standards"
  4440. ],
  4441. "time": "2019-09-17T11:12:18+00:00"
  4442. },
  4443. {
  4444. "name": "symfony/translation",
  4445. "version": "v4.3.6",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://github.com/symfony/translation.git",
  4449. "reference": "a3aa590ce944afb3434d7a55f81b00927144d5ec"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://api.github.com/repos/symfony/translation/zipball/a3aa590ce944afb3434d7a55f81b00927144d5ec",
  4454. "reference": "a3aa590ce944afb3434d7a55f81b00927144d5ec",
  4455. "shasum": ""
  4456. },
  4457. "require": {
  4458. "php": "^7.1.3",
  4459. "symfony/polyfill-mbstring": "~1.0",
  4460. "symfony/translation-contracts": "^1.1.6"
  4461. },
  4462. "conflict": {
  4463. "symfony/config": "<3.4",
  4464. "symfony/dependency-injection": "<3.4",
  4465. "symfony/yaml": "<3.4"
  4466. },
  4467. "provide": {
  4468. "symfony/translation-implementation": "1.0"
  4469. },
  4470. "require-dev": {
  4471. "psr/log": "~1.0",
  4472. "symfony/config": "~3.4|~4.0",
  4473. "symfony/console": "~3.4|~4.0",
  4474. "symfony/dependency-injection": "~3.4|~4.0",
  4475. "symfony/finder": "~2.8|~3.0|~4.0",
  4476. "symfony/http-kernel": "~3.4|~4.0",
  4477. "symfony/intl": "~3.4|~4.0",
  4478. "symfony/service-contracts": "^1.1.2",
  4479. "symfony/var-dumper": "~3.4|~4.0",
  4480. "symfony/yaml": "~3.4|~4.0"
  4481. },
  4482. "suggest": {
  4483. "psr/log-implementation": "To use logging capability in translator",
  4484. "symfony/config": "",
  4485. "symfony/yaml": ""
  4486. },
  4487. "type": "library",
  4488. "extra": {
  4489. "branch-alias": {
  4490. "dev-master": "4.3-dev"
  4491. }
  4492. },
  4493. "autoload": {
  4494. "psr-4": {
  4495. "Symfony\\Component\\Translation\\": ""
  4496. },
  4497. "exclude-from-classmap": [
  4498. "/Tests/"
  4499. ]
  4500. },
  4501. "notification-url": "https://packagist.org/downloads/",
  4502. "license": [
  4503. "MIT"
  4504. ],
  4505. "authors": [
  4506. {
  4507. "name": "Fabien Potencier",
  4508. "email": "fabien@symfony.com"
  4509. },
  4510. {
  4511. "name": "Symfony Community",
  4512. "homepage": "https://symfony.com/contributors"
  4513. }
  4514. ],
  4515. "description": "Symfony Translation Component",
  4516. "homepage": "https://symfony.com",
  4517. "time": "2019-10-30T12:53:54+00:00"
  4518. },
  4519. {
  4520. "name": "symfony/translation-contracts",
  4521. "version": "v1.1.7",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/symfony/translation-contracts.git",
  4525. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/364518c132c95642e530d9b2d217acbc2ccac3e6",
  4530. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6",
  4531. "shasum": ""
  4532. },
  4533. "require": {
  4534. "php": "^7.1.3"
  4535. },
  4536. "suggest": {
  4537. "symfony/translation-implementation": ""
  4538. },
  4539. "type": "library",
  4540. "extra": {
  4541. "branch-alias": {
  4542. "dev-master": "1.1-dev"
  4543. }
  4544. },
  4545. "autoload": {
  4546. "psr-4": {
  4547. "Symfony\\Contracts\\Translation\\": ""
  4548. }
  4549. },
  4550. "notification-url": "https://packagist.org/downloads/",
  4551. "license": [
  4552. "MIT"
  4553. ],
  4554. "authors": [
  4555. {
  4556. "name": "Nicolas Grekas",
  4557. "email": "p@tchwork.com"
  4558. },
  4559. {
  4560. "name": "Symfony Community",
  4561. "homepage": "https://symfony.com/contributors"
  4562. }
  4563. ],
  4564. "description": "Generic abstractions related to translation",
  4565. "homepage": "https://symfony.com",
  4566. "keywords": [
  4567. "abstractions",
  4568. "contracts",
  4569. "decoupling",
  4570. "interfaces",
  4571. "interoperability",
  4572. "standards"
  4573. ],
  4574. "time": "2019-09-17T11:12:18+00:00"
  4575. },
  4576. {
  4577. "name": "symfony/var-dumper",
  4578. "version": "v4.3.6",
  4579. "source": {
  4580. "type": "git",
  4581. "url": "https://github.com/symfony/var-dumper.git",
  4582. "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf"
  4583. },
  4584. "dist": {
  4585. "type": "zip",
  4586. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ea4940845535c85ff5c505e13b3205b0076d07bf",
  4587. "reference": "ea4940845535c85ff5c505e13b3205b0076d07bf",
  4588. "shasum": ""
  4589. },
  4590. "require": {
  4591. "php": "^7.1.3",
  4592. "symfony/polyfill-mbstring": "~1.0",
  4593. "symfony/polyfill-php72": "~1.5"
  4594. },
  4595. "conflict": {
  4596. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4597. "symfony/console": "<3.4"
  4598. },
  4599. "require-dev": {
  4600. "ext-iconv": "*",
  4601. "symfony/console": "~3.4|~4.0",
  4602. "symfony/process": "~3.4|~4.0",
  4603. "twig/twig": "~1.34|~2.4"
  4604. },
  4605. "suggest": {
  4606. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4607. "ext-intl": "To show region name in time zone dump",
  4608. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4609. },
  4610. "bin": [
  4611. "Resources/bin/var-dump-server"
  4612. ],
  4613. "type": "library",
  4614. "extra": {
  4615. "branch-alias": {
  4616. "dev-master": "4.3-dev"
  4617. }
  4618. },
  4619. "autoload": {
  4620. "files": [
  4621. "Resources/functions/dump.php"
  4622. ],
  4623. "psr-4": {
  4624. "Symfony\\Component\\VarDumper\\": ""
  4625. },
  4626. "exclude-from-classmap": [
  4627. "/Tests/"
  4628. ]
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "Nicolas Grekas",
  4637. "email": "p@tchwork.com"
  4638. },
  4639. {
  4640. "name": "Symfony Community",
  4641. "homepage": "https://symfony.com/contributors"
  4642. }
  4643. ],
  4644. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4645. "homepage": "https://symfony.com",
  4646. "keywords": [
  4647. "debug",
  4648. "dump"
  4649. ],
  4650. "time": "2019-10-13T12:02:04+00:00"
  4651. },
  4652. {
  4653. "name": "tijsverkoyen/css-to-inline-styles",
  4654. "version": "2.2.2",
  4655. "source": {
  4656. "type": "git",
  4657. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4658. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15"
  4659. },
  4660. "dist": {
  4661. "type": "zip",
  4662. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  4663. "reference": "dda2ee426acd6d801d5b7fd1001cde9b5f790e15",
  4664. "shasum": ""
  4665. },
  4666. "require": {
  4667. "ext-dom": "*",
  4668. "ext-libxml": "*",
  4669. "php": "^5.5 || ^7.0",
  4670. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  4671. },
  4672. "require-dev": {
  4673. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-master": "2.2.x-dev"
  4679. }
  4680. },
  4681. "autoload": {
  4682. "psr-4": {
  4683. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4684. }
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "BSD-3-Clause"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "Tijs Verkoyen",
  4693. "email": "css_to_inline_styles@verkoyen.eu",
  4694. "role": "Developer"
  4695. }
  4696. ],
  4697. "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.",
  4698. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4699. "time": "2019-10-24T08:53:34+00:00"
  4700. },
  4701. {
  4702. "name": "vlucas/phpdotenv",
  4703. "version": "v3.6.0",
  4704. "source": {
  4705. "type": "git",
  4706. "url": "https://github.com/vlucas/phpdotenv.git",
  4707. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156"
  4708. },
  4709. "dist": {
  4710. "type": "zip",
  4711. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4712. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4713. "shasum": ""
  4714. },
  4715. "require": {
  4716. "php": "^5.4 || ^7.0",
  4717. "phpoption/phpoption": "^1.5",
  4718. "symfony/polyfill-ctype": "^1.9"
  4719. },
  4720. "require-dev": {
  4721. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  4722. },
  4723. "type": "library",
  4724. "extra": {
  4725. "branch-alias": {
  4726. "dev-master": "3.6-dev"
  4727. }
  4728. },
  4729. "autoload": {
  4730. "psr-4": {
  4731. "Dotenv\\": "src/"
  4732. }
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "BSD-3-Clause"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Graham Campbell",
  4741. "email": "graham@alt-three.com",
  4742. "homepage": "https://gjcampbell.co.uk/"
  4743. },
  4744. {
  4745. "name": "Vance Lucas",
  4746. "email": "vance@vancelucas.com",
  4747. "homepage": "https://vancelucas.com/"
  4748. }
  4749. ],
  4750. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4751. "keywords": [
  4752. "dotenv",
  4753. "env",
  4754. "environment"
  4755. ],
  4756. "time": "2019-09-10T21:37:39+00:00"
  4757. },
  4758. {
  4759. "name": "zendframework/zend-diactoros",
  4760. "version": "2.1.5",
  4761. "source": {
  4762. "type": "git",
  4763. "url": "https://github.com/zendframework/zend-diactoros.git",
  4764. "reference": "6dcf9e760a6b476f3e9d80abbc9ce9c4aa921f9c"
  4765. },
  4766. "dist": {
  4767. "type": "zip",
  4768. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/6dcf9e760a6b476f3e9d80abbc9ce9c4aa921f9c",
  4769. "reference": "6dcf9e760a6b476f3e9d80abbc9ce9c4aa921f9c",
  4770. "shasum": ""
  4771. },
  4772. "require": {
  4773. "php": "^7.1",
  4774. "psr/http-factory": "^1.0",
  4775. "psr/http-message": "^1.0"
  4776. },
  4777. "provide": {
  4778. "psr/http-factory-implementation": "1.0",
  4779. "psr/http-message-implementation": "1.0"
  4780. },
  4781. "require-dev": {
  4782. "ext-curl": "*",
  4783. "ext-dom": "*",
  4784. "ext-libxml": "*",
  4785. "http-interop/http-factory-tests": "^0.5.0",
  4786. "php-http/psr7-integration-tests": "dev-master",
  4787. "phpunit/phpunit": "^7.0.2",
  4788. "zendframework/zend-coding-standard": "~1.0.0"
  4789. },
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-master": "2.1.x-dev",
  4794. "dev-develop": "2.2.x-dev",
  4795. "dev-release-1.8": "1.8.x-dev"
  4796. }
  4797. },
  4798. "autoload": {
  4799. "files": [
  4800. "src/functions/create_uploaded_file.php",
  4801. "src/functions/marshal_headers_from_sapi.php",
  4802. "src/functions/marshal_method_from_sapi.php",
  4803. "src/functions/marshal_protocol_version_from_sapi.php",
  4804. "src/functions/marshal_uri_from_sapi.php",
  4805. "src/functions/normalize_server.php",
  4806. "src/functions/normalize_uploaded_files.php",
  4807. "src/functions/parse_cookie_header.php"
  4808. ],
  4809. "psr-4": {
  4810. "Zend\\Diactoros\\": "src/"
  4811. }
  4812. },
  4813. "notification-url": "https://packagist.org/downloads/",
  4814. "license": [
  4815. "BSD-3-Clause"
  4816. ],
  4817. "description": "PSR HTTP Message implementations",
  4818. "keywords": [
  4819. "http",
  4820. "psr",
  4821. "psr-7"
  4822. ],
  4823. "time": "2019-10-10T17:38:20+00:00"
  4824. }
  4825. ],
  4826. "packages-dev": [
  4827. {
  4828. "name": "beyondcode/laravel-dump-server",
  4829. "version": "1.3.0",
  4830. "source": {
  4831. "type": "git",
  4832. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  4833. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a"
  4834. },
  4835. "dist": {
  4836. "type": "zip",
  4837. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4838. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4839. "shasum": ""
  4840. },
  4841. "require": {
  4842. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  4843. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  4844. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  4845. "php": "^7.1",
  4846. "symfony/var-dumper": "^4.1.1"
  4847. },
  4848. "require-dev": {
  4849. "larapack/dd": "^1.0",
  4850. "phpunit/phpunit": "^7.0"
  4851. },
  4852. "type": "library",
  4853. "extra": {
  4854. "laravel": {
  4855. "providers": [
  4856. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  4857. ]
  4858. }
  4859. },
  4860. "autoload": {
  4861. "psr-4": {
  4862. "BeyondCode\\DumpServer\\": "src"
  4863. },
  4864. "files": [
  4865. "helpers.php"
  4866. ]
  4867. },
  4868. "notification-url": "https://packagist.org/downloads/",
  4869. "license": [
  4870. "MIT"
  4871. ],
  4872. "authors": [
  4873. {
  4874. "name": "Marcel Pociot",
  4875. "role": "Developer",
  4876. "email": "marcel@beyondco.de",
  4877. "homepage": "https://beyondco.de"
  4878. }
  4879. ],
  4880. "description": "Symfony Var-Dump Server for Laravel",
  4881. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  4882. "keywords": [
  4883. "beyondcode",
  4884. "laravel-dump-server"
  4885. ],
  4886. "time": "2019-08-11T13:17:40+00:00"
  4887. },
  4888. {
  4889. "name": "composer/semver",
  4890. "version": "1.5.0",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/composer/semver.git",
  4894. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  4899. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  4900. "shasum": ""
  4901. },
  4902. "require": {
  4903. "php": "^5.3.2 || ^7.0"
  4904. },
  4905. "require-dev": {
  4906. "phpunit/phpunit": "^4.5 || ^5.0.5",
  4907. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  4908. },
  4909. "type": "library",
  4910. "extra": {
  4911. "branch-alias": {
  4912. "dev-master": "1.x-dev"
  4913. }
  4914. },
  4915. "autoload": {
  4916. "psr-4": {
  4917. "Composer\\Semver\\": "src"
  4918. }
  4919. },
  4920. "notification-url": "https://packagist.org/downloads/",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Nils Adermann",
  4927. "email": "naderman@naderman.de",
  4928. "homepage": "http://www.naderman.de"
  4929. },
  4930. {
  4931. "name": "Jordi Boggiano",
  4932. "email": "j.boggiano@seld.be",
  4933. "homepage": "http://seld.be"
  4934. },
  4935. {
  4936. "name": "Rob Bast",
  4937. "email": "rob.bast@gmail.com",
  4938. "homepage": "http://robbast.nl"
  4939. }
  4940. ],
  4941. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  4942. "keywords": [
  4943. "semantic",
  4944. "semver",
  4945. "validation",
  4946. "versioning"
  4947. ],
  4948. "time": "2019-03-19T17:25:45+00:00"
  4949. },
  4950. {
  4951. "name": "composer/xdebug-handler",
  4952. "version": "1.3.3",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://github.com/composer/xdebug-handler.git",
  4956. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f"
  4957. },
  4958. "dist": {
  4959. "type": "zip",
  4960. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/46867cbf8ca9fb8d60c506895449eb799db1184f",
  4961. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f",
  4962. "shasum": ""
  4963. },
  4964. "require": {
  4965. "php": "^5.3.2 || ^7.0",
  4966. "psr/log": "^1.0"
  4967. },
  4968. "require-dev": {
  4969. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  4970. },
  4971. "type": "library",
  4972. "autoload": {
  4973. "psr-4": {
  4974. "Composer\\XdebugHandler\\": "src"
  4975. }
  4976. },
  4977. "notification-url": "https://packagist.org/downloads/",
  4978. "license": [
  4979. "MIT"
  4980. ],
  4981. "authors": [
  4982. {
  4983. "name": "John Stevenson",
  4984. "email": "john-stevenson@blueyonder.co.uk"
  4985. }
  4986. ],
  4987. "description": "Restarts a process without xdebug.",
  4988. "keywords": [
  4989. "Xdebug",
  4990. "performance"
  4991. ],
  4992. "time": "2019-05-27T17:52:04+00:00"
  4993. },
  4994. {
  4995. "name": "doctrine/annotations",
  4996. "version": "v1.8.0",
  4997. "source": {
  4998. "type": "git",
  4999. "url": "https://github.com/doctrine/annotations.git",
  5000. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc"
  5001. },
  5002. "dist": {
  5003. "type": "zip",
  5004. "url": "https://api.github.com/repos/doctrine/annotations/zipball/904dca4eb10715b92569fbcd79e201d5c349b6bc",
  5005. "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc",
  5006. "shasum": ""
  5007. },
  5008. "require": {
  5009. "doctrine/lexer": "1.*",
  5010. "php": "^7.1"
  5011. },
  5012. "require-dev": {
  5013. "doctrine/cache": "1.*",
  5014. "phpunit/phpunit": "^7.5"
  5015. },
  5016. "type": "library",
  5017. "extra": {
  5018. "branch-alias": {
  5019. "dev-master": "1.7.x-dev"
  5020. }
  5021. },
  5022. "autoload": {
  5023. "psr-4": {
  5024. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  5025. }
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "MIT"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Guilherme Blanco",
  5034. "email": "guilhermeblanco@gmail.com"
  5035. },
  5036. {
  5037. "name": "Roman Borschel",
  5038. "email": "roman@code-factory.org"
  5039. },
  5040. {
  5041. "name": "Benjamin Eberlei",
  5042. "email": "kontakt@beberlei.de"
  5043. },
  5044. {
  5045. "name": "Jonathan Wage",
  5046. "email": "jonwage@gmail.com"
  5047. },
  5048. {
  5049. "name": "Johannes Schmitt",
  5050. "email": "schmittjoh@gmail.com"
  5051. }
  5052. ],
  5053. "description": "Docblock Annotations Parser",
  5054. "homepage": "http://www.doctrine-project.org",
  5055. "keywords": [
  5056. "annotations",
  5057. "docblock",
  5058. "parser"
  5059. ],
  5060. "time": "2019-10-01T18:55:10+00:00"
  5061. },
  5062. {
  5063. "name": "doctrine/instantiator",
  5064. "version": "1.2.0",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/doctrine/instantiator.git",
  5068. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  5073. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  5074. "shasum": ""
  5075. },
  5076. "require": {
  5077. "php": "^7.1"
  5078. },
  5079. "require-dev": {
  5080. "doctrine/coding-standard": "^6.0",
  5081. "ext-pdo": "*",
  5082. "ext-phar": "*",
  5083. "phpbench/phpbench": "^0.13",
  5084. "phpstan/phpstan-phpunit": "^0.11",
  5085. "phpstan/phpstan-shim": "^0.11",
  5086. "phpunit/phpunit": "^7.0"
  5087. },
  5088. "type": "library",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-master": "1.2.x-dev"
  5092. }
  5093. },
  5094. "autoload": {
  5095. "psr-4": {
  5096. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5097. }
  5098. },
  5099. "notification-url": "https://packagist.org/downloads/",
  5100. "license": [
  5101. "MIT"
  5102. ],
  5103. "authors": [
  5104. {
  5105. "name": "Marco Pivetta",
  5106. "email": "ocramius@gmail.com",
  5107. "homepage": "http://ocramius.github.com/"
  5108. }
  5109. ],
  5110. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5111. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5112. "keywords": [
  5113. "constructor",
  5114. "instantiate"
  5115. ],
  5116. "time": "2019-03-17T17:37:11+00:00"
  5117. },
  5118. {
  5119. "name": "facade/flare-client-php",
  5120. "version": "1.1.1",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/facade/flare-client-php.git",
  5124. "reference": "608c2be3157b09f1868ca97ea4ddf3434ee83d63"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/608c2be3157b09f1868ca97ea4ddf3434ee83d63",
  5129. "reference": "608c2be3157b09f1868ca97ea4ddf3434ee83d63",
  5130. "shasum": ""
  5131. },
  5132. "require": {
  5133. "facade/ignition-contracts": "~1.0",
  5134. "illuminate/pipeline": "~5.5|~5.6|~5.7|~5.8|^6.0",
  5135. "php": "^7.1",
  5136. "symfony/http-foundation": "~3.3|~4.1",
  5137. "symfony/var-dumper": "^3.4|^4.0"
  5138. },
  5139. "require-dev": {
  5140. "larapack/dd": "^1.1",
  5141. "phpunit/phpunit": "^7.5.16",
  5142. "spatie/phpunit-snapshot-assertions": "^2.0"
  5143. },
  5144. "type": "library",
  5145. "extra": {
  5146. "branch-alias": {
  5147. "dev-master": "1.0-dev"
  5148. }
  5149. },
  5150. "autoload": {
  5151. "psr-4": {
  5152. "Facade\\FlareClient\\": "src"
  5153. },
  5154. "files": [
  5155. "src/helpers.php"
  5156. ]
  5157. },
  5158. "notification-url": "https://packagist.org/downloads/",
  5159. "license": [
  5160. "MIT"
  5161. ],
  5162. "description": "Send PHP errors to Flare",
  5163. "homepage": "https://github.com/facade/flare-client-php",
  5164. "keywords": [
  5165. "exception",
  5166. "facade",
  5167. "flare",
  5168. "reporting"
  5169. ],
  5170. "time": "2019-10-07T19:15:46+00:00"
  5171. },
  5172. {
  5173. "name": "facade/ignition",
  5174. "version": "1.11.2",
  5175. "source": {
  5176. "type": "git",
  5177. "url": "https://github.com/facade/ignition.git",
  5178. "reference": "862cbc2dfffa1fa28b47822a116e5b2e03b421db"
  5179. },
  5180. "dist": {
  5181. "type": "zip",
  5182. "url": "https://api.github.com/repos/facade/ignition/zipball/862cbc2dfffa1fa28b47822a116e5b2e03b421db",
  5183. "reference": "862cbc2dfffa1fa28b47822a116e5b2e03b421db",
  5184. "shasum": ""
  5185. },
  5186. "require": {
  5187. "ext-json": "*",
  5188. "ext-mbstring": "*",
  5189. "facade/flare-client-php": "^1.1",
  5190. "facade/ignition-contracts": "^1.0",
  5191. "filp/whoops": "^2.4",
  5192. "illuminate/support": "~5.5.0 || ~5.6.0 || ~5.7.0 || ~5.8.0 || ^6.0",
  5193. "monolog/monolog": "^1.12 || ^2.0",
  5194. "php": "^7.1",
  5195. "scrivo/highlight.php": "^9.15",
  5196. "symfony/console": "^3.4 || ^4.0",
  5197. "symfony/var-dumper": "^3.4 || ^4.0"
  5198. },
  5199. "require-dev": {
  5200. "friendsofphp/php-cs-fixer": "^2.14",
  5201. "mockery/mockery": "^1.2",
  5202. "orchestra/testbench": "^3.5 || ^3.6 || ^3.7 || ^3.8 || ^4.0"
  5203. },
  5204. "suggest": {
  5205. "laravel/telescope": "^2.0"
  5206. },
  5207. "type": "library",
  5208. "extra": {
  5209. "branch-alias": {
  5210. "dev-master": "1.0-dev"
  5211. },
  5212. "laravel": {
  5213. "providers": [
  5214. "Facade\\Ignition\\IgnitionServiceProvider"
  5215. ],
  5216. "aliases": {
  5217. "Flare": "Facade\\Ignition\\Facades\\Flare"
  5218. }
  5219. }
  5220. },
  5221. "autoload": {
  5222. "psr-4": {
  5223. "Facade\\Ignition\\": "src"
  5224. },
  5225. "files": [
  5226. "src/helpers.php"
  5227. ]
  5228. },
  5229. "notification-url": "https://packagist.org/downloads/",
  5230. "license": [
  5231. "MIT"
  5232. ],
  5233. "description": "A beautiful error page for Laravel applications.",
  5234. "homepage": "https://github.com/facade/ignition",
  5235. "keywords": [
  5236. "error",
  5237. "flare",
  5238. "laravel",
  5239. "page"
  5240. ],
  5241. "time": "2019-10-13T10:42:06+00:00"
  5242. },
  5243. {
  5244. "name": "facade/ignition-contracts",
  5245. "version": "1.0.0",
  5246. "source": {
  5247. "type": "git",
  5248. "url": "https://github.com/facade/ignition-contracts.git",
  5249. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28"
  5250. },
  5251. "dist": {
  5252. "type": "zip",
  5253. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/f445db0fb86f48e205787b2592840dd9c80ded28",
  5254. "reference": "f445db0fb86f48e205787b2592840dd9c80ded28",
  5255. "shasum": ""
  5256. },
  5257. "require": {
  5258. "php": "^7.1"
  5259. },
  5260. "type": "library",
  5261. "autoload": {
  5262. "psr-4": {
  5263. "Facade\\IgnitionContracts\\": "src"
  5264. }
  5265. },
  5266. "notification-url": "https://packagist.org/downloads/",
  5267. "license": [
  5268. "MIT"
  5269. ],
  5270. "authors": [
  5271. {
  5272. "name": "Freek Van der Herten",
  5273. "email": "freek@spatie.be",
  5274. "homepage": "https://flareapp.io",
  5275. "role": "Developer"
  5276. }
  5277. ],
  5278. "description": "Solution contracts for Ignition",
  5279. "homepage": "https://github.com/facade/ignition-contracts",
  5280. "keywords": [
  5281. "contracts",
  5282. "flare",
  5283. "ignition"
  5284. ],
  5285. "time": "2019-08-30T14:06:08+00:00"
  5286. },
  5287. {
  5288. "name": "filp/whoops",
  5289. "version": "2.5.0",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://github.com/filp/whoops.git",
  5293. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://api.github.com/repos/filp/whoops/zipball/cde50e6720a39fdacb240159d3eea6865d51fd96",
  5298. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96",
  5299. "shasum": ""
  5300. },
  5301. "require": {
  5302. "php": "^5.5.9 || ^7.0",
  5303. "psr/log": "^1.0.1"
  5304. },
  5305. "require-dev": {
  5306. "mockery/mockery": "^0.9 || ^1.0",
  5307. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5308. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  5309. },
  5310. "suggest": {
  5311. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  5312. "whoops/soap": "Formats errors as SOAP responses"
  5313. },
  5314. "type": "library",
  5315. "extra": {
  5316. "branch-alias": {
  5317. "dev-master": "2.2-dev"
  5318. }
  5319. },
  5320. "autoload": {
  5321. "psr-4": {
  5322. "Whoops\\": "src/Whoops/"
  5323. }
  5324. },
  5325. "notification-url": "https://packagist.org/downloads/",
  5326. "license": [
  5327. "MIT"
  5328. ],
  5329. "authors": [
  5330. {
  5331. "name": "Filipe Dobreira",
  5332. "role": "Developer",
  5333. "homepage": "https://github.com/filp"
  5334. }
  5335. ],
  5336. "description": "php error handling for cool kids",
  5337. "homepage": "https://filp.github.io/whoops/",
  5338. "keywords": [
  5339. "error",
  5340. "exception",
  5341. "handling",
  5342. "library",
  5343. "throwable",
  5344. "whoops"
  5345. ],
  5346. "time": "2019-08-07T09:00:00+00:00"
  5347. },
  5348. {
  5349. "name": "friendsofphp/php-cs-fixer",
  5350. "version": "v2.16.0",
  5351. "source": {
  5352. "type": "git",
  5353. "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
  5354. "reference": "ceaff36bee1ed3f1bbbedca36d2528c0826c336d"
  5355. },
  5356. "dist": {
  5357. "type": "zip",
  5358. "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/ceaff36bee1ed3f1bbbedca36d2528c0826c336d",
  5359. "reference": "ceaff36bee1ed3f1bbbedca36d2528c0826c336d",
  5360. "shasum": ""
  5361. },
  5362. "require": {
  5363. "composer/semver": "^1.4",
  5364. "composer/xdebug-handler": "^1.2",
  5365. "doctrine/annotations": "^1.2",
  5366. "ext-json": "*",
  5367. "ext-tokenizer": "*",
  5368. "php": "^5.6 || ^7.0",
  5369. "php-cs-fixer/diff": "^1.3",
  5370. "symfony/console": "^3.4.17 || ^4.1.6",
  5371. "symfony/event-dispatcher": "^3.0 || ^4.0",
  5372. "symfony/filesystem": "^3.0 || ^4.0",
  5373. "symfony/finder": "^3.0 || ^4.0",
  5374. "symfony/options-resolver": "^3.0 || ^4.0",
  5375. "symfony/polyfill-php70": "^1.0",
  5376. "symfony/polyfill-php72": "^1.4",
  5377. "symfony/process": "^3.0 || ^4.0",
  5378. "symfony/stopwatch": "^3.0 || ^4.0"
  5379. },
  5380. "require-dev": {
  5381. "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
  5382. "justinrainbow/json-schema": "^5.0",
  5383. "keradus/cli-executor": "^1.2",
  5384. "mikey179/vfsstream": "^1.6",
  5385. "php-coveralls/php-coveralls": "^2.1",
  5386. "php-cs-fixer/accessible-object": "^1.0",
  5387. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1",
  5388. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1",
  5389. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
  5390. "phpunitgoodpractices/traits": "^1.8",
  5391. "symfony/phpunit-bridge": "^4.3",
  5392. "symfony/yaml": "^3.0 || ^4.0"
  5393. },
  5394. "suggest": {
  5395. "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
  5396. "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
  5397. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
  5398. "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
  5399. },
  5400. "bin": [
  5401. "php-cs-fixer"
  5402. ],
  5403. "type": "application",
  5404. "autoload": {
  5405. "psr-4": {
  5406. "PhpCsFixer\\": "src/"
  5407. },
  5408. "classmap": [
  5409. "tests/Test/AbstractFixerTestCase.php",
  5410. "tests/Test/AbstractIntegrationCaseFactory.php",
  5411. "tests/Test/AbstractIntegrationTestCase.php",
  5412. "tests/Test/Assert/AssertTokensTrait.php",
  5413. "tests/Test/IntegrationCase.php",
  5414. "tests/Test/IntegrationCaseFactory.php",
  5415. "tests/Test/IntegrationCaseFactoryInterface.php",
  5416. "tests/Test/InternalIntegrationCaseFactory.php",
  5417. "tests/TestCase.php"
  5418. ]
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "Fabien Potencier",
  5427. "email": "fabien@symfony.com"
  5428. },
  5429. {
  5430. "name": "Dariusz Rumiński",
  5431. "email": "dariusz.ruminski@gmail.com"
  5432. }
  5433. ],
  5434. "description": "A tool to automatically fix PHP code style",
  5435. "time": "2019-11-03T13:31:09+00:00"
  5436. },
  5437. {
  5438. "name": "fzaninotto/faker",
  5439. "version": "v1.8.0",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://github.com/fzaninotto/Faker.git",
  5443. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  5448. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  5449. "shasum": ""
  5450. },
  5451. "require": {
  5452. "php": "^5.3.3 || ^7.0"
  5453. },
  5454. "require-dev": {
  5455. "ext-intl": "*",
  5456. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5457. "squizlabs/php_codesniffer": "^1.5"
  5458. },
  5459. "type": "library",
  5460. "extra": {
  5461. "branch-alias": {
  5462. "dev-master": "1.8-dev"
  5463. }
  5464. },
  5465. "autoload": {
  5466. "psr-4": {
  5467. "Faker\\": "src/Faker/"
  5468. }
  5469. },
  5470. "notification-url": "https://packagist.org/downloads/",
  5471. "license": [
  5472. "MIT"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "François Zaninotto"
  5477. }
  5478. ],
  5479. "description": "Faker is a PHP library that generates fake data for you.",
  5480. "keywords": [
  5481. "data",
  5482. "faker",
  5483. "fixtures"
  5484. ],
  5485. "time": "2018-07-12T10:23:15+00:00"
  5486. },
  5487. {
  5488. "name": "hamcrest/hamcrest-php",
  5489. "version": "v2.0.0",
  5490. "source": {
  5491. "type": "git",
  5492. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5493. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  5494. },
  5495. "dist": {
  5496. "type": "zip",
  5497. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  5498. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  5499. "shasum": ""
  5500. },
  5501. "require": {
  5502. "php": "^5.3|^7.0"
  5503. },
  5504. "replace": {
  5505. "cordoval/hamcrest-php": "*",
  5506. "davedevelopment/hamcrest-php": "*",
  5507. "kodova/hamcrest-php": "*"
  5508. },
  5509. "require-dev": {
  5510. "phpunit/php-file-iterator": "1.3.3",
  5511. "phpunit/phpunit": "~4.0",
  5512. "satooshi/php-coveralls": "^1.0"
  5513. },
  5514. "type": "library",
  5515. "extra": {
  5516. "branch-alias": {
  5517. "dev-master": "2.0-dev"
  5518. }
  5519. },
  5520. "autoload": {
  5521. "classmap": [
  5522. "hamcrest"
  5523. ]
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "BSD"
  5528. ],
  5529. "description": "This is the PHP port of Hamcrest Matchers",
  5530. "keywords": [
  5531. "test"
  5532. ],
  5533. "time": "2016-01-20T08:20:44+00:00"
  5534. },
  5535. {
  5536. "name": "mockery/mockery",
  5537. "version": "1.2.4",
  5538. "source": {
  5539. "type": "git",
  5540. "url": "https://github.com/mockery/mockery.git",
  5541. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405"
  5542. },
  5543. "dist": {
  5544. "type": "zip",
  5545. "url": "https://api.github.com/repos/mockery/mockery/zipball/b3453f75fd23d9fd41685f2148f4abeacabc6405",
  5546. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405",
  5547. "shasum": ""
  5548. },
  5549. "require": {
  5550. "hamcrest/hamcrest-php": "~2.0",
  5551. "lib-pcre": ">=7.0",
  5552. "php": ">=5.6.0"
  5553. },
  5554. "require-dev": {
  5555. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  5556. },
  5557. "type": "library",
  5558. "extra": {
  5559. "branch-alias": {
  5560. "dev-master": "1.2.x-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "psr-0": {
  5565. "Mockery": "library/"
  5566. }
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "BSD-3-Clause"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Pádraic Brady",
  5575. "email": "padraic.brady@gmail.com",
  5576. "homepage": "http://blog.astrumfutura.com"
  5577. },
  5578. {
  5579. "name": "Dave Marshall",
  5580. "email": "dave.marshall@atstsolutions.co.uk",
  5581. "homepage": "http://davedevelopment.co.uk"
  5582. }
  5583. ],
  5584. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5585. "homepage": "https://github.com/mockery/mockery",
  5586. "keywords": [
  5587. "BDD",
  5588. "TDD",
  5589. "library",
  5590. "mock",
  5591. "mock objects",
  5592. "mockery",
  5593. "stub",
  5594. "test",
  5595. "test double",
  5596. "testing"
  5597. ],
  5598. "time": "2019-09-30T08:30:27+00:00"
  5599. },
  5600. {
  5601. "name": "myclabs/deep-copy",
  5602. "version": "1.9.3",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/myclabs/DeepCopy.git",
  5606. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea",
  5611. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea",
  5612. "shasum": ""
  5613. },
  5614. "require": {
  5615. "php": "^7.1"
  5616. },
  5617. "replace": {
  5618. "myclabs/deep-copy": "self.version"
  5619. },
  5620. "require-dev": {
  5621. "doctrine/collections": "^1.0",
  5622. "doctrine/common": "^2.6",
  5623. "phpunit/phpunit": "^7.1"
  5624. },
  5625. "type": "library",
  5626. "autoload": {
  5627. "psr-4": {
  5628. "DeepCopy\\": "src/DeepCopy/"
  5629. },
  5630. "files": [
  5631. "src/DeepCopy/deep_copy.php"
  5632. ]
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "MIT"
  5637. ],
  5638. "description": "Create deep copies (clones) of your objects",
  5639. "keywords": [
  5640. "clone",
  5641. "copy",
  5642. "duplicate",
  5643. "object",
  5644. "object graph"
  5645. ],
  5646. "time": "2019-08-09T12:45:53+00:00"
  5647. },
  5648. {
  5649. "name": "nunomaduro/collision",
  5650. "version": "v3.0.1",
  5651. "source": {
  5652. "type": "git",
  5653. "url": "https://github.com/nunomaduro/collision.git",
  5654. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  5655. },
  5656. "dist": {
  5657. "type": "zip",
  5658. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  5659. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  5660. "shasum": ""
  5661. },
  5662. "require": {
  5663. "filp/whoops": "^2.1.4",
  5664. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  5665. "php": "^7.1",
  5666. "symfony/console": "~2.8|~3.3|~4.0"
  5667. },
  5668. "require-dev": {
  5669. "laravel/framework": "5.8.*",
  5670. "nunomaduro/larastan": "^0.3.0",
  5671. "phpstan/phpstan": "^0.11",
  5672. "phpunit/phpunit": "~8.0"
  5673. },
  5674. "type": "library",
  5675. "extra": {
  5676. "laravel": {
  5677. "providers": [
  5678. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5679. ]
  5680. }
  5681. },
  5682. "autoload": {
  5683. "psr-4": {
  5684. "NunoMaduro\\Collision\\": "src/"
  5685. }
  5686. },
  5687. "notification-url": "https://packagist.org/downloads/",
  5688. "license": [
  5689. "MIT"
  5690. ],
  5691. "authors": [
  5692. {
  5693. "name": "Nuno Maduro",
  5694. "email": "enunomaduro@gmail.com"
  5695. }
  5696. ],
  5697. "description": "Cli error handling for console/command-line PHP applications.",
  5698. "keywords": [
  5699. "artisan",
  5700. "cli",
  5701. "command-line",
  5702. "console",
  5703. "error",
  5704. "handling",
  5705. "laravel",
  5706. "laravel-zero",
  5707. "php",
  5708. "symfony"
  5709. ],
  5710. "time": "2019-03-07T21:35:13+00:00"
  5711. },
  5712. {
  5713. "name": "phar-io/manifest",
  5714. "version": "1.0.3",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/phar-io/manifest.git",
  5718. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5723. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5724. "shasum": ""
  5725. },
  5726. "require": {
  5727. "ext-dom": "*",
  5728. "ext-phar": "*",
  5729. "phar-io/version": "^2.0",
  5730. "php": "^5.6 || ^7.0"
  5731. },
  5732. "type": "library",
  5733. "extra": {
  5734. "branch-alias": {
  5735. "dev-master": "1.0.x-dev"
  5736. }
  5737. },
  5738. "autoload": {
  5739. "classmap": [
  5740. "src/"
  5741. ]
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "BSD-3-Clause"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Arne Blankerts",
  5750. "role": "Developer",
  5751. "email": "arne@blankerts.de"
  5752. },
  5753. {
  5754. "name": "Sebastian Heuer",
  5755. "role": "Developer",
  5756. "email": "sebastian@phpeople.de"
  5757. },
  5758. {
  5759. "name": "Sebastian Bergmann",
  5760. "role": "Developer",
  5761. "email": "sebastian@phpunit.de"
  5762. }
  5763. ],
  5764. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5765. "time": "2018-07-08T19:23:20+00:00"
  5766. },
  5767. {
  5768. "name": "phar-io/version",
  5769. "version": "2.0.1",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/phar-io/version.git",
  5773. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5778. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5779. "shasum": ""
  5780. },
  5781. "require": {
  5782. "php": "^5.6 || ^7.0"
  5783. },
  5784. "type": "library",
  5785. "autoload": {
  5786. "classmap": [
  5787. "src/"
  5788. ]
  5789. },
  5790. "notification-url": "https://packagist.org/downloads/",
  5791. "license": [
  5792. "BSD-3-Clause"
  5793. ],
  5794. "authors": [
  5795. {
  5796. "name": "Arne Blankerts",
  5797. "role": "Developer",
  5798. "email": "arne@blankerts.de"
  5799. },
  5800. {
  5801. "name": "Sebastian Heuer",
  5802. "role": "Developer",
  5803. "email": "sebastian@phpeople.de"
  5804. },
  5805. {
  5806. "name": "Sebastian Bergmann",
  5807. "role": "Developer",
  5808. "email": "sebastian@phpunit.de"
  5809. }
  5810. ],
  5811. "description": "Library for handling version information and constraints",
  5812. "time": "2018-07-08T19:19:57+00:00"
  5813. },
  5814. {
  5815. "name": "php-cs-fixer/diff",
  5816. "version": "v1.3.0",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/PHP-CS-Fixer/diff.git",
  5820. "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756",
  5825. "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756",
  5826. "shasum": ""
  5827. },
  5828. "require": {
  5829. "php": "^5.6 || ^7.0"
  5830. },
  5831. "require-dev": {
  5832. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  5833. "symfony/process": "^3.3"
  5834. },
  5835. "type": "library",
  5836. "autoload": {
  5837. "classmap": [
  5838. "src/"
  5839. ]
  5840. },
  5841. "notification-url": "https://packagist.org/downloads/",
  5842. "license": [
  5843. "BSD-3-Clause"
  5844. ],
  5845. "authors": [
  5846. {
  5847. "name": "Kore Nordmann",
  5848. "email": "mail@kore-nordmann.de"
  5849. },
  5850. {
  5851. "name": "Sebastian Bergmann",
  5852. "email": "sebastian@phpunit.de"
  5853. },
  5854. {
  5855. "name": "SpacePossum"
  5856. }
  5857. ],
  5858. "description": "sebastian/diff v2 backport support for PHP5.6",
  5859. "homepage": "https://github.com/PHP-CS-Fixer",
  5860. "keywords": [
  5861. "diff"
  5862. ],
  5863. "time": "2018-02-15T16:58:55+00:00"
  5864. },
  5865. {
  5866. "name": "phpdocumentor/reflection-common",
  5867. "version": "2.0.0",
  5868. "source": {
  5869. "type": "git",
  5870. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5871. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  5872. },
  5873. "dist": {
  5874. "type": "zip",
  5875. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  5876. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  5877. "shasum": ""
  5878. },
  5879. "require": {
  5880. "php": ">=7.1"
  5881. },
  5882. "require-dev": {
  5883. "phpunit/phpunit": "~6"
  5884. },
  5885. "type": "library",
  5886. "extra": {
  5887. "branch-alias": {
  5888. "dev-master": "2.x-dev"
  5889. }
  5890. },
  5891. "autoload": {
  5892. "psr-4": {
  5893. "phpDocumentor\\Reflection\\": "src/"
  5894. }
  5895. },
  5896. "notification-url": "https://packagist.org/downloads/",
  5897. "license": [
  5898. "MIT"
  5899. ],
  5900. "authors": [
  5901. {
  5902. "name": "Jaap van Otterdijk",
  5903. "email": "opensource@ijaap.nl"
  5904. }
  5905. ],
  5906. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5907. "homepage": "http://www.phpdoc.org",
  5908. "keywords": [
  5909. "FQSEN",
  5910. "phpDocumentor",
  5911. "phpdoc",
  5912. "reflection",
  5913. "static analysis"
  5914. ],
  5915. "time": "2018-08-07T13:53:10+00:00"
  5916. },
  5917. {
  5918. "name": "phpdocumentor/reflection-docblock",
  5919. "version": "4.3.2",
  5920. "source": {
  5921. "type": "git",
  5922. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5923. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  5924. },
  5925. "dist": {
  5926. "type": "zip",
  5927. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  5928. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  5929. "shasum": ""
  5930. },
  5931. "require": {
  5932. "php": "^7.0",
  5933. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  5934. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  5935. "webmozart/assert": "^1.0"
  5936. },
  5937. "require-dev": {
  5938. "doctrine/instantiator": "^1.0.5",
  5939. "mockery/mockery": "^1.0",
  5940. "phpunit/phpunit": "^6.4"
  5941. },
  5942. "type": "library",
  5943. "extra": {
  5944. "branch-alias": {
  5945. "dev-master": "4.x-dev"
  5946. }
  5947. },
  5948. "autoload": {
  5949. "psr-4": {
  5950. "phpDocumentor\\Reflection\\": [
  5951. "src/"
  5952. ]
  5953. }
  5954. },
  5955. "notification-url": "https://packagist.org/downloads/",
  5956. "license": [
  5957. "MIT"
  5958. ],
  5959. "authors": [
  5960. {
  5961. "name": "Mike van Riel",
  5962. "email": "me@mikevanriel.com"
  5963. }
  5964. ],
  5965. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5966. "time": "2019-09-12T14:27:41+00:00"
  5967. },
  5968. {
  5969. "name": "phpdocumentor/type-resolver",
  5970. "version": "1.0.1",
  5971. "source": {
  5972. "type": "git",
  5973. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5974. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  5975. },
  5976. "dist": {
  5977. "type": "zip",
  5978. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5979. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5980. "shasum": ""
  5981. },
  5982. "require": {
  5983. "php": "^7.1",
  5984. "phpdocumentor/reflection-common": "^2.0"
  5985. },
  5986. "require-dev": {
  5987. "ext-tokenizer": "^7.1",
  5988. "mockery/mockery": "~1",
  5989. "phpunit/phpunit": "^7.0"
  5990. },
  5991. "type": "library",
  5992. "extra": {
  5993. "branch-alias": {
  5994. "dev-master": "1.x-dev"
  5995. }
  5996. },
  5997. "autoload": {
  5998. "psr-4": {
  5999. "phpDocumentor\\Reflection\\": "src"
  6000. }
  6001. },
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Mike van Riel",
  6009. "email": "me@mikevanriel.com"
  6010. }
  6011. ],
  6012. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  6013. "time": "2019-08-22T18:11:29+00:00"
  6014. },
  6015. {
  6016. "name": "phpspec/prophecy",
  6017. "version": "1.9.0",
  6018. "source": {
  6019. "type": "git",
  6020. "url": "https://github.com/phpspec/prophecy.git",
  6021. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  6022. },
  6023. "dist": {
  6024. "type": "zip",
  6025. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  6026. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  6027. "shasum": ""
  6028. },
  6029. "require": {
  6030. "doctrine/instantiator": "^1.0.2",
  6031. "php": "^5.3|^7.0",
  6032. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  6033. "sebastian/comparator": "^1.1|^2.0|^3.0",
  6034. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  6035. },
  6036. "require-dev": {
  6037. "phpspec/phpspec": "^2.5|^3.2",
  6038. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6039. },
  6040. "type": "library",
  6041. "extra": {
  6042. "branch-alias": {
  6043. "dev-master": "1.8.x-dev"
  6044. }
  6045. },
  6046. "autoload": {
  6047. "psr-4": {
  6048. "Prophecy\\": "src/Prophecy"
  6049. }
  6050. },
  6051. "notification-url": "https://packagist.org/downloads/",
  6052. "license": [
  6053. "MIT"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Konstantin Kudryashov",
  6058. "email": "ever.zet@gmail.com",
  6059. "homepage": "http://everzet.com"
  6060. },
  6061. {
  6062. "name": "Marcello Duarte",
  6063. "email": "marcello.duarte@gmail.com"
  6064. }
  6065. ],
  6066. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6067. "homepage": "https://github.com/phpspec/prophecy",
  6068. "keywords": [
  6069. "Double",
  6070. "Dummy",
  6071. "fake",
  6072. "mock",
  6073. "spy",
  6074. "stub"
  6075. ],
  6076. "time": "2019-10-03T11:07:50+00:00"
  6077. },
  6078. {
  6079. "name": "phpunit/php-code-coverage",
  6080. "version": "7.0.8",
  6081. "source": {
  6082. "type": "git",
  6083. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6084. "reference": "aa0d179a13284c7420fc281fc32750e6cc7c9e2f"
  6085. },
  6086. "dist": {
  6087. "type": "zip",
  6088. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa0d179a13284c7420fc281fc32750e6cc7c9e2f",
  6089. "reference": "aa0d179a13284c7420fc281fc32750e6cc7c9e2f",
  6090. "shasum": ""
  6091. },
  6092. "require": {
  6093. "ext-dom": "*",
  6094. "ext-xmlwriter": "*",
  6095. "php": "^7.2",
  6096. "phpunit/php-file-iterator": "^2.0.2",
  6097. "phpunit/php-text-template": "^1.2.1",
  6098. "phpunit/php-token-stream": "^3.1.1",
  6099. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6100. "sebastian/environment": "^4.2.2",
  6101. "sebastian/version": "^2.0.1",
  6102. "theseer/tokenizer": "^1.1.3"
  6103. },
  6104. "require-dev": {
  6105. "phpunit/phpunit": "^8.2.2"
  6106. },
  6107. "suggest": {
  6108. "ext-xdebug": "^2.7.2"
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-master": "7.0-dev"
  6114. }
  6115. },
  6116. "autoload": {
  6117. "classmap": [
  6118. "src/"
  6119. ]
  6120. },
  6121. "notification-url": "https://packagist.org/downloads/",
  6122. "license": [
  6123. "BSD-3-Clause"
  6124. ],
  6125. "authors": [
  6126. {
  6127. "name": "Sebastian Bergmann",
  6128. "email": "sebastian@phpunit.de",
  6129. "role": "lead"
  6130. }
  6131. ],
  6132. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6133. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6134. "keywords": [
  6135. "coverage",
  6136. "testing",
  6137. "xunit"
  6138. ],
  6139. "time": "2019-09-17T06:24:36+00:00"
  6140. },
  6141. {
  6142. "name": "phpunit/php-file-iterator",
  6143. "version": "2.0.2",
  6144. "source": {
  6145. "type": "git",
  6146. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6147. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  6148. },
  6149. "dist": {
  6150. "type": "zip",
  6151. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  6152. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  6153. "shasum": ""
  6154. },
  6155. "require": {
  6156. "php": "^7.1"
  6157. },
  6158. "require-dev": {
  6159. "phpunit/phpunit": "^7.1"
  6160. },
  6161. "type": "library",
  6162. "extra": {
  6163. "branch-alias": {
  6164. "dev-master": "2.0.x-dev"
  6165. }
  6166. },
  6167. "autoload": {
  6168. "classmap": [
  6169. "src/"
  6170. ]
  6171. },
  6172. "notification-url": "https://packagist.org/downloads/",
  6173. "license": [
  6174. "BSD-3-Clause"
  6175. ],
  6176. "authors": [
  6177. {
  6178. "name": "Sebastian Bergmann",
  6179. "role": "lead",
  6180. "email": "sebastian@phpunit.de"
  6181. }
  6182. ],
  6183. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6184. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6185. "keywords": [
  6186. "filesystem",
  6187. "iterator"
  6188. ],
  6189. "time": "2018-09-13T20:33:42+00:00"
  6190. },
  6191. {
  6192. "name": "phpunit/php-text-template",
  6193. "version": "1.2.1",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6197. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6202. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "php": ">=5.3.3"
  6207. },
  6208. "type": "library",
  6209. "autoload": {
  6210. "classmap": [
  6211. "src/"
  6212. ]
  6213. },
  6214. "notification-url": "https://packagist.org/downloads/",
  6215. "license": [
  6216. "BSD-3-Clause"
  6217. ],
  6218. "authors": [
  6219. {
  6220. "name": "Sebastian Bergmann",
  6221. "role": "lead",
  6222. "email": "sebastian@phpunit.de"
  6223. }
  6224. ],
  6225. "description": "Simple template engine.",
  6226. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6227. "keywords": [
  6228. "template"
  6229. ],
  6230. "time": "2015-06-21T13:50:34+00:00"
  6231. },
  6232. {
  6233. "name": "phpunit/php-timer",
  6234. "version": "2.1.2",
  6235. "source": {
  6236. "type": "git",
  6237. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6238. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  6239. },
  6240. "dist": {
  6241. "type": "zip",
  6242. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  6243. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  6244. "shasum": ""
  6245. },
  6246. "require": {
  6247. "php": "^7.1"
  6248. },
  6249. "require-dev": {
  6250. "phpunit/phpunit": "^7.0"
  6251. },
  6252. "type": "library",
  6253. "extra": {
  6254. "branch-alias": {
  6255. "dev-master": "2.1-dev"
  6256. }
  6257. },
  6258. "autoload": {
  6259. "classmap": [
  6260. "src/"
  6261. ]
  6262. },
  6263. "notification-url": "https://packagist.org/downloads/",
  6264. "license": [
  6265. "BSD-3-Clause"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "Sebastian Bergmann",
  6270. "role": "lead",
  6271. "email": "sebastian@phpunit.de"
  6272. }
  6273. ],
  6274. "description": "Utility class for timing",
  6275. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6276. "keywords": [
  6277. "timer"
  6278. ],
  6279. "time": "2019-06-07T04:22:29+00:00"
  6280. },
  6281. {
  6282. "name": "phpunit/php-token-stream",
  6283. "version": "3.1.1",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6287. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  6292. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  6293. "shasum": ""
  6294. },
  6295. "require": {
  6296. "ext-tokenizer": "*",
  6297. "php": "^7.1"
  6298. },
  6299. "require-dev": {
  6300. "phpunit/phpunit": "^7.0"
  6301. },
  6302. "type": "library",
  6303. "extra": {
  6304. "branch-alias": {
  6305. "dev-master": "3.1-dev"
  6306. }
  6307. },
  6308. "autoload": {
  6309. "classmap": [
  6310. "src/"
  6311. ]
  6312. },
  6313. "notification-url": "https://packagist.org/downloads/",
  6314. "license": [
  6315. "BSD-3-Clause"
  6316. ],
  6317. "authors": [
  6318. {
  6319. "name": "Sebastian Bergmann",
  6320. "email": "sebastian@phpunit.de"
  6321. }
  6322. ],
  6323. "description": "Wrapper around PHP's tokenizer extension.",
  6324. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6325. "keywords": [
  6326. "tokenizer"
  6327. ],
  6328. "time": "2019-09-17T06:23:10+00:00"
  6329. },
  6330. {
  6331. "name": "phpunit/phpunit",
  6332. "version": "8.4.2",
  6333. "source": {
  6334. "type": "git",
  6335. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6336. "reference": "a142a7e66c0ea7b5b6c04ee27f08d10d1137cd9b"
  6337. },
  6338. "dist": {
  6339. "type": "zip",
  6340. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a142a7e66c0ea7b5b6c04ee27f08d10d1137cd9b",
  6341. "reference": "a142a7e66c0ea7b5b6c04ee27f08d10d1137cd9b",
  6342. "shasum": ""
  6343. },
  6344. "require": {
  6345. "doctrine/instantiator": "^1.2.0",
  6346. "ext-dom": "*",
  6347. "ext-json": "*",
  6348. "ext-libxml": "*",
  6349. "ext-mbstring": "*",
  6350. "ext-xml": "*",
  6351. "ext-xmlwriter": "*",
  6352. "myclabs/deep-copy": "^1.9.1",
  6353. "phar-io/manifest": "^1.0.3",
  6354. "phar-io/version": "^2.0.1",
  6355. "php": "^7.2",
  6356. "phpspec/prophecy": "^1.8.1",
  6357. "phpunit/php-code-coverage": "^7.0.7",
  6358. "phpunit/php-file-iterator": "^2.0.2",
  6359. "phpunit/php-text-template": "^1.2.1",
  6360. "phpunit/php-timer": "^2.1.2",
  6361. "sebastian/comparator": "^3.0.2",
  6362. "sebastian/diff": "^3.0.2",
  6363. "sebastian/environment": "^4.2.2",
  6364. "sebastian/exporter": "^3.1.1",
  6365. "sebastian/global-state": "^3.0.0",
  6366. "sebastian/object-enumerator": "^3.0.3",
  6367. "sebastian/resource-operations": "^2.0.1",
  6368. "sebastian/type": "^1.1.3",
  6369. "sebastian/version": "^2.0.1"
  6370. },
  6371. "require-dev": {
  6372. "ext-pdo": "*"
  6373. },
  6374. "suggest": {
  6375. "ext-soap": "*",
  6376. "ext-xdebug": "*",
  6377. "phpunit/php-invoker": "^2.0.0"
  6378. },
  6379. "bin": [
  6380. "phpunit"
  6381. ],
  6382. "type": "library",
  6383. "extra": {
  6384. "branch-alias": {
  6385. "dev-master": "8.4-dev"
  6386. }
  6387. },
  6388. "autoload": {
  6389. "classmap": [
  6390. "src/"
  6391. ]
  6392. },
  6393. "notification-url": "https://packagist.org/downloads/",
  6394. "license": [
  6395. "BSD-3-Clause"
  6396. ],
  6397. "authors": [
  6398. {
  6399. "name": "Sebastian Bergmann",
  6400. "email": "sebastian@phpunit.de",
  6401. "role": "lead"
  6402. }
  6403. ],
  6404. "description": "The PHP Unit Testing framework.",
  6405. "homepage": "https://phpunit.de/",
  6406. "keywords": [
  6407. "phpunit",
  6408. "testing",
  6409. "xunit"
  6410. ],
  6411. "time": "2019-10-28T10:39:51+00:00"
  6412. },
  6413. {
  6414. "name": "scrivo/highlight.php",
  6415. "version": "v9.15.10.0",
  6416. "source": {
  6417. "type": "git",
  6418. "url": "https://github.com/scrivo/highlight.php.git",
  6419. "reference": "9ad3adb4456dc91196327498dbbce6aa1ba1239e"
  6420. },
  6421. "dist": {
  6422. "type": "zip",
  6423. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/9ad3adb4456dc91196327498dbbce6aa1ba1239e",
  6424. "reference": "9ad3adb4456dc91196327498dbbce6aa1ba1239e",
  6425. "shasum": ""
  6426. },
  6427. "require": {
  6428. "ext-json": "*",
  6429. "ext-mbstring": "*",
  6430. "php": ">=5.4"
  6431. },
  6432. "require-dev": {
  6433. "phpunit/phpunit": "^4.8|^5.7",
  6434. "symfony/finder": "^2.8"
  6435. },
  6436. "suggest": {
  6437. "ext-dom": "Needed to make use of the features in the utilities namespace"
  6438. },
  6439. "type": "library",
  6440. "autoload": {
  6441. "psr-0": {
  6442. "Highlight\\": "",
  6443. "HighlightUtilities\\": ""
  6444. },
  6445. "files": [
  6446. "HighlightUtilities/functions.php"
  6447. ]
  6448. },
  6449. "notification-url": "https://packagist.org/downloads/",
  6450. "license": [
  6451. "BSD-3-Clause"
  6452. ],
  6453. "authors": [
  6454. {
  6455. "name": "Geert Bergman",
  6456. "role": "Project Author",
  6457. "homepage": "http://www.scrivo.org/"
  6458. },
  6459. {
  6460. "name": "Vladimir Jimenez",
  6461. "role": "Contributor",
  6462. "homepage": "https://allejo.io"
  6463. },
  6464. {
  6465. "name": "Martin Folkers",
  6466. "role": "Contributor",
  6467. "homepage": "https://twobrain.io"
  6468. }
  6469. ],
  6470. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  6471. "keywords": [
  6472. "code",
  6473. "highlight",
  6474. "highlight.js",
  6475. "highlight.php",
  6476. "syntax"
  6477. ],
  6478. "time": "2019-08-27T04:27:48+00:00"
  6479. },
  6480. {
  6481. "name": "sebastian/code-unit-reverse-lookup",
  6482. "version": "1.0.1",
  6483. "source": {
  6484. "type": "git",
  6485. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6486. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6487. },
  6488. "dist": {
  6489. "type": "zip",
  6490. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6491. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6492. "shasum": ""
  6493. },
  6494. "require": {
  6495. "php": "^5.6 || ^7.0"
  6496. },
  6497. "require-dev": {
  6498. "phpunit/phpunit": "^5.7 || ^6.0"
  6499. },
  6500. "type": "library",
  6501. "extra": {
  6502. "branch-alias": {
  6503. "dev-master": "1.0.x-dev"
  6504. }
  6505. },
  6506. "autoload": {
  6507. "classmap": [
  6508. "src/"
  6509. ]
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "BSD-3-Clause"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Sebastian Bergmann",
  6518. "email": "sebastian@phpunit.de"
  6519. }
  6520. ],
  6521. "description": "Looks up which function or method a line of code belongs to",
  6522. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6523. "time": "2017-03-04T06:30:41+00:00"
  6524. },
  6525. {
  6526. "name": "sebastian/comparator",
  6527. "version": "3.0.2",
  6528. "source": {
  6529. "type": "git",
  6530. "url": "https://github.com/sebastianbergmann/comparator.git",
  6531. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  6532. },
  6533. "dist": {
  6534. "type": "zip",
  6535. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6536. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6537. "shasum": ""
  6538. },
  6539. "require": {
  6540. "php": "^7.1",
  6541. "sebastian/diff": "^3.0",
  6542. "sebastian/exporter": "^3.1"
  6543. },
  6544. "require-dev": {
  6545. "phpunit/phpunit": "^7.1"
  6546. },
  6547. "type": "library",
  6548. "extra": {
  6549. "branch-alias": {
  6550. "dev-master": "3.0-dev"
  6551. }
  6552. },
  6553. "autoload": {
  6554. "classmap": [
  6555. "src/"
  6556. ]
  6557. },
  6558. "notification-url": "https://packagist.org/downloads/",
  6559. "license": [
  6560. "BSD-3-Clause"
  6561. ],
  6562. "authors": [
  6563. {
  6564. "name": "Jeff Welch",
  6565. "email": "whatthejeff@gmail.com"
  6566. },
  6567. {
  6568. "name": "Volker Dusch",
  6569. "email": "github@wallbash.com"
  6570. },
  6571. {
  6572. "name": "Bernhard Schussek",
  6573. "email": "bschussek@2bepublished.at"
  6574. },
  6575. {
  6576. "name": "Sebastian Bergmann",
  6577. "email": "sebastian@phpunit.de"
  6578. }
  6579. ],
  6580. "description": "Provides the functionality to compare PHP values for equality",
  6581. "homepage": "https://github.com/sebastianbergmann/comparator",
  6582. "keywords": [
  6583. "comparator",
  6584. "compare",
  6585. "equality"
  6586. ],
  6587. "time": "2018-07-12T15:12:46+00:00"
  6588. },
  6589. {
  6590. "name": "sebastian/diff",
  6591. "version": "3.0.2",
  6592. "source": {
  6593. "type": "git",
  6594. "url": "https://github.com/sebastianbergmann/diff.git",
  6595. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  6596. },
  6597. "dist": {
  6598. "type": "zip",
  6599. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6600. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6601. "shasum": ""
  6602. },
  6603. "require": {
  6604. "php": "^7.1"
  6605. },
  6606. "require-dev": {
  6607. "phpunit/phpunit": "^7.5 || ^8.0",
  6608. "symfony/process": "^2 || ^3.3 || ^4"
  6609. },
  6610. "type": "library",
  6611. "extra": {
  6612. "branch-alias": {
  6613. "dev-master": "3.0-dev"
  6614. }
  6615. },
  6616. "autoload": {
  6617. "classmap": [
  6618. "src/"
  6619. ]
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "BSD-3-Clause"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Kore Nordmann",
  6628. "email": "mail@kore-nordmann.de"
  6629. },
  6630. {
  6631. "name": "Sebastian Bergmann",
  6632. "email": "sebastian@phpunit.de"
  6633. }
  6634. ],
  6635. "description": "Diff implementation",
  6636. "homepage": "https://github.com/sebastianbergmann/diff",
  6637. "keywords": [
  6638. "diff",
  6639. "udiff",
  6640. "unidiff",
  6641. "unified diff"
  6642. ],
  6643. "time": "2019-02-04T06:01:07+00:00"
  6644. },
  6645. {
  6646. "name": "sebastian/environment",
  6647. "version": "4.2.2",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://github.com/sebastianbergmann/environment.git",
  6651. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404"
  6652. },
  6653. "dist": {
  6654. "type": "zip",
  6655. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  6656. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  6657. "shasum": ""
  6658. },
  6659. "require": {
  6660. "php": "^7.1"
  6661. },
  6662. "require-dev": {
  6663. "phpunit/phpunit": "^7.5"
  6664. },
  6665. "suggest": {
  6666. "ext-posix": "*"
  6667. },
  6668. "type": "library",
  6669. "extra": {
  6670. "branch-alias": {
  6671. "dev-master": "4.2-dev"
  6672. }
  6673. },
  6674. "autoload": {
  6675. "classmap": [
  6676. "src/"
  6677. ]
  6678. },
  6679. "notification-url": "https://packagist.org/downloads/",
  6680. "license": [
  6681. "BSD-3-Clause"
  6682. ],
  6683. "authors": [
  6684. {
  6685. "name": "Sebastian Bergmann",
  6686. "email": "sebastian@phpunit.de"
  6687. }
  6688. ],
  6689. "description": "Provides functionality to handle HHVM/PHP environments",
  6690. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6691. "keywords": [
  6692. "Xdebug",
  6693. "environment",
  6694. "hhvm"
  6695. ],
  6696. "time": "2019-05-05T09:05:15+00:00"
  6697. },
  6698. {
  6699. "name": "sebastian/exporter",
  6700. "version": "3.1.2",
  6701. "source": {
  6702. "type": "git",
  6703. "url": "https://github.com/sebastianbergmann/exporter.git",
  6704. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  6705. },
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6709. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "php": "^7.0",
  6714. "sebastian/recursion-context": "^3.0"
  6715. },
  6716. "require-dev": {
  6717. "ext-mbstring": "*",
  6718. "phpunit/phpunit": "^6.0"
  6719. },
  6720. "type": "library",
  6721. "extra": {
  6722. "branch-alias": {
  6723. "dev-master": "3.1.x-dev"
  6724. }
  6725. },
  6726. "autoload": {
  6727. "classmap": [
  6728. "src/"
  6729. ]
  6730. },
  6731. "notification-url": "https://packagist.org/downloads/",
  6732. "license": [
  6733. "BSD-3-Clause"
  6734. ],
  6735. "authors": [
  6736. {
  6737. "name": "Sebastian Bergmann",
  6738. "email": "sebastian@phpunit.de"
  6739. },
  6740. {
  6741. "name": "Jeff Welch",
  6742. "email": "whatthejeff@gmail.com"
  6743. },
  6744. {
  6745. "name": "Volker Dusch",
  6746. "email": "github@wallbash.com"
  6747. },
  6748. {
  6749. "name": "Adam Harvey",
  6750. "email": "aharvey@php.net"
  6751. },
  6752. {
  6753. "name": "Bernhard Schussek",
  6754. "email": "bschussek@gmail.com"
  6755. }
  6756. ],
  6757. "description": "Provides the functionality to export PHP variables for visualization",
  6758. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6759. "keywords": [
  6760. "export",
  6761. "exporter"
  6762. ],
  6763. "time": "2019-09-14T09:02:43+00:00"
  6764. },
  6765. {
  6766. "name": "sebastian/global-state",
  6767. "version": "3.0.0",
  6768. "source": {
  6769. "type": "git",
  6770. "url": "https://github.com/sebastianbergmann/global-state.git",
  6771. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  6772. },
  6773. "dist": {
  6774. "type": "zip",
  6775. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6776. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6777. "shasum": ""
  6778. },
  6779. "require": {
  6780. "php": "^7.2",
  6781. "sebastian/object-reflector": "^1.1.1",
  6782. "sebastian/recursion-context": "^3.0"
  6783. },
  6784. "require-dev": {
  6785. "ext-dom": "*",
  6786. "phpunit/phpunit": "^8.0"
  6787. },
  6788. "suggest": {
  6789. "ext-uopz": "*"
  6790. },
  6791. "type": "library",
  6792. "extra": {
  6793. "branch-alias": {
  6794. "dev-master": "3.0-dev"
  6795. }
  6796. },
  6797. "autoload": {
  6798. "classmap": [
  6799. "src/"
  6800. ]
  6801. },
  6802. "notification-url": "https://packagist.org/downloads/",
  6803. "license": [
  6804. "BSD-3-Clause"
  6805. ],
  6806. "authors": [
  6807. {
  6808. "name": "Sebastian Bergmann",
  6809. "email": "sebastian@phpunit.de"
  6810. }
  6811. ],
  6812. "description": "Snapshotting of global state",
  6813. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6814. "keywords": [
  6815. "global state"
  6816. ],
  6817. "time": "2019-02-01T05:30:01+00:00"
  6818. },
  6819. {
  6820. "name": "sebastian/object-enumerator",
  6821. "version": "3.0.3",
  6822. "source": {
  6823. "type": "git",
  6824. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6825. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6826. },
  6827. "dist": {
  6828. "type": "zip",
  6829. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6830. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6831. "shasum": ""
  6832. },
  6833. "require": {
  6834. "php": "^7.0",
  6835. "sebastian/object-reflector": "^1.1.1",
  6836. "sebastian/recursion-context": "^3.0"
  6837. },
  6838. "require-dev": {
  6839. "phpunit/phpunit": "^6.0"
  6840. },
  6841. "type": "library",
  6842. "extra": {
  6843. "branch-alias": {
  6844. "dev-master": "3.0.x-dev"
  6845. }
  6846. },
  6847. "autoload": {
  6848. "classmap": [
  6849. "src/"
  6850. ]
  6851. },
  6852. "notification-url": "https://packagist.org/downloads/",
  6853. "license": [
  6854. "BSD-3-Clause"
  6855. ],
  6856. "authors": [
  6857. {
  6858. "name": "Sebastian Bergmann",
  6859. "email": "sebastian@phpunit.de"
  6860. }
  6861. ],
  6862. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6863. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6864. "time": "2017-08-03T12:35:26+00:00"
  6865. },
  6866. {
  6867. "name": "sebastian/object-reflector",
  6868. "version": "1.1.1",
  6869. "source": {
  6870. "type": "git",
  6871. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6872. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6873. },
  6874. "dist": {
  6875. "type": "zip",
  6876. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6877. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6878. "shasum": ""
  6879. },
  6880. "require": {
  6881. "php": "^7.0"
  6882. },
  6883. "require-dev": {
  6884. "phpunit/phpunit": "^6.0"
  6885. },
  6886. "type": "library",
  6887. "extra": {
  6888. "branch-alias": {
  6889. "dev-master": "1.1-dev"
  6890. }
  6891. },
  6892. "autoload": {
  6893. "classmap": [
  6894. "src/"
  6895. ]
  6896. },
  6897. "notification-url": "https://packagist.org/downloads/",
  6898. "license": [
  6899. "BSD-3-Clause"
  6900. ],
  6901. "authors": [
  6902. {
  6903. "name": "Sebastian Bergmann",
  6904. "email": "sebastian@phpunit.de"
  6905. }
  6906. ],
  6907. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6908. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6909. "time": "2017-03-29T09:07:27+00:00"
  6910. },
  6911. {
  6912. "name": "sebastian/recursion-context",
  6913. "version": "3.0.0",
  6914. "source": {
  6915. "type": "git",
  6916. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6917. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6918. },
  6919. "dist": {
  6920. "type": "zip",
  6921. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6922. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6923. "shasum": ""
  6924. },
  6925. "require": {
  6926. "php": "^7.0"
  6927. },
  6928. "require-dev": {
  6929. "phpunit/phpunit": "^6.0"
  6930. },
  6931. "type": "library",
  6932. "extra": {
  6933. "branch-alias": {
  6934. "dev-master": "3.0.x-dev"
  6935. }
  6936. },
  6937. "autoload": {
  6938. "classmap": [
  6939. "src/"
  6940. ]
  6941. },
  6942. "notification-url": "https://packagist.org/downloads/",
  6943. "license": [
  6944. "BSD-3-Clause"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Jeff Welch",
  6949. "email": "whatthejeff@gmail.com"
  6950. },
  6951. {
  6952. "name": "Sebastian Bergmann",
  6953. "email": "sebastian@phpunit.de"
  6954. },
  6955. {
  6956. "name": "Adam Harvey",
  6957. "email": "aharvey@php.net"
  6958. }
  6959. ],
  6960. "description": "Provides functionality to recursively process PHP variables",
  6961. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6962. "time": "2017-03-03T06:23:57+00:00"
  6963. },
  6964. {
  6965. "name": "sebastian/resource-operations",
  6966. "version": "2.0.1",
  6967. "source": {
  6968. "type": "git",
  6969. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6970. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6971. },
  6972. "dist": {
  6973. "type": "zip",
  6974. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6975. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6976. "shasum": ""
  6977. },
  6978. "require": {
  6979. "php": "^7.1"
  6980. },
  6981. "type": "library",
  6982. "extra": {
  6983. "branch-alias": {
  6984. "dev-master": "2.0-dev"
  6985. }
  6986. },
  6987. "autoload": {
  6988. "classmap": [
  6989. "src/"
  6990. ]
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "BSD-3-Clause"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Sebastian Bergmann",
  6999. "email": "sebastian@phpunit.de"
  7000. }
  7001. ],
  7002. "description": "Provides a list of PHP built-in functions that operate on resources",
  7003. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7004. "time": "2018-10-04T04:07:39+00:00"
  7005. },
  7006. {
  7007. "name": "sebastian/type",
  7008. "version": "1.1.3",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://github.com/sebastianbergmann/type.git",
  7012. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7017. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7018. "shasum": ""
  7019. },
  7020. "require": {
  7021. "php": "^7.2"
  7022. },
  7023. "require-dev": {
  7024. "phpunit/phpunit": "^8.2"
  7025. },
  7026. "type": "library",
  7027. "extra": {
  7028. "branch-alias": {
  7029. "dev-master": "1.1-dev"
  7030. }
  7031. },
  7032. "autoload": {
  7033. "classmap": [
  7034. "src/"
  7035. ]
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "BSD-3-Clause"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Sebastian Bergmann",
  7044. "role": "lead",
  7045. "email": "sebastian@phpunit.de"
  7046. }
  7047. ],
  7048. "description": "Collection of value objects that represent the types of the PHP type system",
  7049. "homepage": "https://github.com/sebastianbergmann/type",
  7050. "time": "2019-07-02T08:10:15+00:00"
  7051. },
  7052. {
  7053. "name": "sebastian/version",
  7054. "version": "2.0.1",
  7055. "source": {
  7056. "type": "git",
  7057. "url": "https://github.com/sebastianbergmann/version.git",
  7058. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  7059. },
  7060. "dist": {
  7061. "type": "zip",
  7062. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  7063. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  7064. "shasum": ""
  7065. },
  7066. "require": {
  7067. "php": ">=5.6"
  7068. },
  7069. "type": "library",
  7070. "extra": {
  7071. "branch-alias": {
  7072. "dev-master": "2.0.x-dev"
  7073. }
  7074. },
  7075. "autoload": {
  7076. "classmap": [
  7077. "src/"
  7078. ]
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "BSD-3-Clause"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Sebastian Bergmann",
  7087. "role": "lead",
  7088. "email": "sebastian@phpunit.de"
  7089. }
  7090. ],
  7091. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7092. "homepage": "https://github.com/sebastianbergmann/version",
  7093. "time": "2016-10-03T07:35:21+00:00"
  7094. },
  7095. {
  7096. "name": "symfony/filesystem",
  7097. "version": "v4.3.6",
  7098. "source": {
  7099. "type": "git",
  7100. "url": "https://github.com/symfony/filesystem.git",
  7101. "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263"
  7102. },
  7103. "dist": {
  7104. "type": "zip",
  7105. "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263",
  7106. "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263",
  7107. "shasum": ""
  7108. },
  7109. "require": {
  7110. "php": "^7.1.3",
  7111. "symfony/polyfill-ctype": "~1.8"
  7112. },
  7113. "type": "library",
  7114. "extra": {
  7115. "branch-alias": {
  7116. "dev-master": "4.3-dev"
  7117. }
  7118. },
  7119. "autoload": {
  7120. "psr-4": {
  7121. "Symfony\\Component\\Filesystem\\": ""
  7122. },
  7123. "exclude-from-classmap": [
  7124. "/Tests/"
  7125. ]
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "MIT"
  7130. ],
  7131. "authors": [
  7132. {
  7133. "name": "Fabien Potencier",
  7134. "email": "fabien@symfony.com"
  7135. },
  7136. {
  7137. "name": "Symfony Community",
  7138. "homepage": "https://symfony.com/contributors"
  7139. }
  7140. ],
  7141. "description": "Symfony Filesystem Component",
  7142. "homepage": "https://symfony.com",
  7143. "time": "2019-08-20T14:07:54+00:00"
  7144. },
  7145. {
  7146. "name": "symfony/options-resolver",
  7147. "version": "v4.3.6",
  7148. "source": {
  7149. "type": "git",
  7150. "url": "https://github.com/symfony/options-resolver.git",
  7151. "reference": "f46c7fc8e207bd8a2188f54f8738f232533765a4"
  7152. },
  7153. "dist": {
  7154. "type": "zip",
  7155. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/f46c7fc8e207bd8a2188f54f8738f232533765a4",
  7156. "reference": "f46c7fc8e207bd8a2188f54f8738f232533765a4",
  7157. "shasum": ""
  7158. },
  7159. "require": {
  7160. "php": "^7.1.3"
  7161. },
  7162. "type": "library",
  7163. "extra": {
  7164. "branch-alias": {
  7165. "dev-master": "4.3-dev"
  7166. }
  7167. },
  7168. "autoload": {
  7169. "psr-4": {
  7170. "Symfony\\Component\\OptionsResolver\\": ""
  7171. },
  7172. "exclude-from-classmap": [
  7173. "/Tests/"
  7174. ]
  7175. },
  7176. "notification-url": "https://packagist.org/downloads/",
  7177. "license": [
  7178. "MIT"
  7179. ],
  7180. "authors": [
  7181. {
  7182. "name": "Fabien Potencier",
  7183. "email": "fabien@symfony.com"
  7184. },
  7185. {
  7186. "name": "Symfony Community",
  7187. "homepage": "https://symfony.com/contributors"
  7188. }
  7189. ],
  7190. "description": "Symfony OptionsResolver Component",
  7191. "homepage": "https://symfony.com",
  7192. "keywords": [
  7193. "config",
  7194. "configuration",
  7195. "options"
  7196. ],
  7197. "time": "2019-10-28T20:59:01+00:00"
  7198. },
  7199. {
  7200. "name": "symfony/polyfill-php70",
  7201. "version": "v1.12.0",
  7202. "source": {
  7203. "type": "git",
  7204. "url": "https://github.com/symfony/polyfill-php70.git",
  7205. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  7206. },
  7207. "dist": {
  7208. "type": "zip",
  7209. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  7210. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  7211. "shasum": ""
  7212. },
  7213. "require": {
  7214. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  7215. "php": ">=5.3.3"
  7216. },
  7217. "type": "library",
  7218. "extra": {
  7219. "branch-alias": {
  7220. "dev-master": "1.12-dev"
  7221. }
  7222. },
  7223. "autoload": {
  7224. "psr-4": {
  7225. "Symfony\\Polyfill\\Php70\\": ""
  7226. },
  7227. "files": [
  7228. "bootstrap.php"
  7229. ],
  7230. "classmap": [
  7231. "Resources/stubs"
  7232. ]
  7233. },
  7234. "notification-url": "https://packagist.org/downloads/",
  7235. "license": [
  7236. "MIT"
  7237. ],
  7238. "authors": [
  7239. {
  7240. "name": "Nicolas Grekas",
  7241. "email": "p@tchwork.com"
  7242. },
  7243. {
  7244. "name": "Symfony Community",
  7245. "homepage": "https://symfony.com/contributors"
  7246. }
  7247. ],
  7248. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  7249. "homepage": "https://symfony.com",
  7250. "keywords": [
  7251. "compatibility",
  7252. "polyfill",
  7253. "portable",
  7254. "shim"
  7255. ],
  7256. "time": "2019-08-06T08:03:45+00:00"
  7257. },
  7258. {
  7259. "name": "symfony/stopwatch",
  7260. "version": "v4.3.6",
  7261. "source": {
  7262. "type": "git",
  7263. "url": "https://github.com/symfony/stopwatch.git",
  7264. "reference": "1e4ff456bd625be5032fac9be4294e60442e9b71"
  7265. },
  7266. "dist": {
  7267. "type": "zip",
  7268. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/1e4ff456bd625be5032fac9be4294e60442e9b71",
  7269. "reference": "1e4ff456bd625be5032fac9be4294e60442e9b71",
  7270. "shasum": ""
  7271. },
  7272. "require": {
  7273. "php": "^7.1.3",
  7274. "symfony/service-contracts": "^1.0"
  7275. },
  7276. "type": "library",
  7277. "extra": {
  7278. "branch-alias": {
  7279. "dev-master": "4.3-dev"
  7280. }
  7281. },
  7282. "autoload": {
  7283. "psr-4": {
  7284. "Symfony\\Component\\Stopwatch\\": ""
  7285. },
  7286. "exclude-from-classmap": [
  7287. "/Tests/"
  7288. ]
  7289. },
  7290. "notification-url": "https://packagist.org/downloads/",
  7291. "license": [
  7292. "MIT"
  7293. ],
  7294. "authors": [
  7295. {
  7296. "name": "Fabien Potencier",
  7297. "email": "fabien@symfony.com"
  7298. },
  7299. {
  7300. "name": "Symfony Community",
  7301. "homepage": "https://symfony.com/contributors"
  7302. }
  7303. ],
  7304. "description": "Symfony Stopwatch Component",
  7305. "homepage": "https://symfony.com",
  7306. "time": "2019-08-07T11:52:19+00:00"
  7307. },
  7308. {
  7309. "name": "theseer/tokenizer",
  7310. "version": "1.1.3",
  7311. "source": {
  7312. "type": "git",
  7313. "url": "https://github.com/theseer/tokenizer.git",
  7314. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  7315. },
  7316. "dist": {
  7317. "type": "zip",
  7318. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  7319. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  7320. "shasum": ""
  7321. },
  7322. "require": {
  7323. "ext-dom": "*",
  7324. "ext-tokenizer": "*",
  7325. "ext-xmlwriter": "*",
  7326. "php": "^7.0"
  7327. },
  7328. "type": "library",
  7329. "autoload": {
  7330. "classmap": [
  7331. "src/"
  7332. ]
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "BSD-3-Clause"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Arne Blankerts",
  7341. "role": "Developer",
  7342. "email": "arne@blankerts.de"
  7343. }
  7344. ],
  7345. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7346. "time": "2019-06-13T22:48:21+00:00"
  7347. },
  7348. {
  7349. "name": "webmozart/assert",
  7350. "version": "1.5.0",
  7351. "source": {
  7352. "type": "git",
  7353. "url": "https://github.com/webmozart/assert.git",
  7354. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  7355. },
  7356. "dist": {
  7357. "type": "zip",
  7358. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  7359. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  7360. "shasum": ""
  7361. },
  7362. "require": {
  7363. "php": "^5.3.3 || ^7.0",
  7364. "symfony/polyfill-ctype": "^1.8"
  7365. },
  7366. "require-dev": {
  7367. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  7368. },
  7369. "type": "library",
  7370. "extra": {
  7371. "branch-alias": {
  7372. "dev-master": "1.3-dev"
  7373. }
  7374. },
  7375. "autoload": {
  7376. "psr-4": {
  7377. "Webmozart\\Assert\\": "src/"
  7378. }
  7379. },
  7380. "notification-url": "https://packagist.org/downloads/",
  7381. "license": [
  7382. "MIT"
  7383. ],
  7384. "authors": [
  7385. {
  7386. "name": "Bernhard Schussek",
  7387. "email": "bschussek@gmail.com"
  7388. }
  7389. ],
  7390. "description": "Assertions to validate method input/output with nice error messages.",
  7391. "keywords": [
  7392. "assert",
  7393. "check",
  7394. "validate"
  7395. ],
  7396. "time": "2019-08-24T08:43:50+00:00"
  7397. }
  7398. ],
  7399. "aliases": [],
  7400. "minimum-stability": "dev",
  7401. "stability-flags": [],
  7402. "prefer-stable": true,
  7403. "prefer-lowest": false,
  7404. "platform": {
  7405. "php": "^7.2"
  7406. },
  7407. "platform-dev": []
  7408. }