composer.lock 249 KB

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