composer.lock 286 KB

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