composer.lock 314 KB

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