composer.lock 379 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571
  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": "235680d5acdc65329fb3070b347a2165",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.1.5",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  73. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "sdk-team@alibabacloud.com",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2023-04-11T02:12:12+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.10",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  153. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.19",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "sdk-team@alibabacloud.com"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  184. },
  185. "time": "2023-11-23T07:01:20+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dysmsapi-20170525",
  189. "version": "2.0.24",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  193. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  198. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.8",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.19",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "sdk-team@alibabacloud.com"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.24"
  227. },
  228. "time": "2023-07-04T11:32:11+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "sdk-team@alibabacloud.com"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "sdk-team@alibabacloud.com"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "sdk-team@alibabacloud.com"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "sdk-team@alibabacloud.com",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.19",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  434. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "sdk-team@alibabacloud.com"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2023-06-26T09:49:19+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "sdk-team@alibabacloud.com"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "asm89/stack-cors",
  509. "version": "v2.2.0",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/asm89/stack-cors.git",
  513. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  518. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "php": "^7.3|^8.0",
  523. "symfony/http-foundation": "^5.3|^6|^7",
  524. "symfony/http-kernel": "^5.3|^6|^7"
  525. },
  526. "require-dev": {
  527. "phpunit/phpunit": "^9",
  528. "squizlabs/php_codesniffer": "^3.5"
  529. },
  530. "type": "library",
  531. "extra": {
  532. "branch-alias": {
  533. "dev-master": "2.2-dev"
  534. }
  535. },
  536. "autoload": {
  537. "psr-4": {
  538. "Asm89\\Stack\\": "src/"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Alexander",
  548. "email": "iam.asm89@gmail.com"
  549. }
  550. ],
  551. "description": "Cross-origin resource sharing library and stack middleware",
  552. "homepage": "https://github.com/asm89/stack-cors",
  553. "keywords": [
  554. "cors",
  555. "stack"
  556. ],
  557. "support": {
  558. "issues": "https://github.com/asm89/stack-cors/issues",
  559. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  560. },
  561. "time": "2023-11-14T13:51:46+00:00"
  562. },
  563. {
  564. "name": "brick/math",
  565. "version": "0.11.0",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/brick/math.git",
  569. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  574. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "php": "^8.0"
  579. },
  580. "require-dev": {
  581. "php-coveralls/php-coveralls": "^2.2",
  582. "phpunit/phpunit": "^9.0",
  583. "vimeo/psalm": "5.0.0"
  584. },
  585. "type": "library",
  586. "autoload": {
  587. "psr-4": {
  588. "Brick\\Math\\": "src/"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "description": "Arbitrary-precision arithmetic library",
  596. "keywords": [
  597. "Arbitrary-precision",
  598. "BigInteger",
  599. "BigRational",
  600. "arithmetic",
  601. "bigdecimal",
  602. "bignum",
  603. "brick",
  604. "math"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/brick/math/issues",
  608. "source": "https://github.com/brick/math/tree/0.11.0"
  609. },
  610. "funding": [
  611. {
  612. "url": "https://github.com/BenMorel",
  613. "type": "github"
  614. }
  615. ],
  616. "time": "2023-01-15T23:15:59+00:00"
  617. },
  618. {
  619. "name": "cache/adapter-common",
  620. "version": "1.3.0",
  621. "source": {
  622. "type": "git",
  623. "url": "https://github.com/php-cache/adapter-common.git",
  624. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  625. },
  626. "dist": {
  627. "type": "zip",
  628. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  629. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  630. "shasum": ""
  631. },
  632. "require": {
  633. "cache/tag-interop": "^1.0",
  634. "php": ">=7.4",
  635. "psr/cache": "^1.0 || ^2.0",
  636. "psr/log": "^1.0 || ^2.0 || ^3.0",
  637. "psr/simple-cache": "^1.0"
  638. },
  639. "require-dev": {
  640. "cache/integration-tests": "^0.17",
  641. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  642. },
  643. "type": "library",
  644. "extra": {
  645. "branch-alias": {
  646. "dev-master": "1.1-dev"
  647. }
  648. },
  649. "autoload": {
  650. "psr-4": {
  651. "Cache\\Adapter\\Common\\": ""
  652. }
  653. },
  654. "notification-url": "https://packagist.org/downloads/",
  655. "license": [
  656. "MIT"
  657. ],
  658. "authors": [
  659. {
  660. "name": "Aaron Scherer",
  661. "email": "aequasi@gmail.com",
  662. "homepage": "https://github.com/aequasi"
  663. },
  664. {
  665. "name": "Tobias Nyholm",
  666. "email": "tobias.nyholm@gmail.com",
  667. "homepage": "https://github.com/nyholm"
  668. }
  669. ],
  670. "description": "Common classes for PSR-6 adapters",
  671. "homepage": "http://www.php-cache.com/en/latest/",
  672. "keywords": [
  673. "cache",
  674. "psr-6",
  675. "tag"
  676. ],
  677. "support": {
  678. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  679. },
  680. "time": "2022-01-15T15:47:19+00:00"
  681. },
  682. {
  683. "name": "cache/filesystem-adapter",
  684. "version": "1.2.0",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/php-cache/filesystem-adapter.git",
  688. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/f1faaae40aaa696ef899cef6f6888aedb90b419b",
  693. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b",
  694. "shasum": ""
  695. },
  696. "require": {
  697. "cache/adapter-common": "^1.0",
  698. "league/flysystem": "^1.0",
  699. "php": ">=7.4",
  700. "psr/cache": "^1.0 || ^2.0",
  701. "psr/simple-cache": "^1.0"
  702. },
  703. "provide": {
  704. "psr/cache-implementation": "^1.0",
  705. "psr/simple-cache-implementation": "^1.0"
  706. },
  707. "require-dev": {
  708. "cache/integration-tests": "^0.17",
  709. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  710. },
  711. "type": "library",
  712. "extra": {
  713. "branch-alias": {
  714. "dev-master": "1.1-dev"
  715. }
  716. },
  717. "autoload": {
  718. "psr-4": {
  719. "Cache\\Adapter\\Filesystem\\": ""
  720. },
  721. "exclude-from-classmap": [
  722. "/Tests/"
  723. ]
  724. },
  725. "notification-url": "https://packagist.org/downloads/",
  726. "license": [
  727. "MIT"
  728. ],
  729. "authors": [
  730. {
  731. "name": "Aaron Scherer",
  732. "email": "aequasi@gmail.com",
  733. "homepage": "https://github.com/aequasi"
  734. },
  735. {
  736. "name": "Tobias Nyholm",
  737. "email": "tobias.nyholm@gmail.com",
  738. "homepage": "https://github.com/nyholm"
  739. }
  740. ],
  741. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  742. "homepage": "http://www.php-cache.com/en/latest/",
  743. "keywords": [
  744. "cache",
  745. "filesystem",
  746. "psr-6",
  747. "tag"
  748. ],
  749. "support": {
  750. "source": "https://github.com/php-cache/filesystem-adapter/tree/1.2.0"
  751. },
  752. "time": "2022-01-15T15:47:19+00:00"
  753. },
  754. {
  755. "name": "cache/tag-interop",
  756. "version": "1.1.0",
  757. "source": {
  758. "type": "git",
  759. "url": "https://github.com/php-cache/tag-interop.git",
  760. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  761. },
  762. "dist": {
  763. "type": "zip",
  764. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  765. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  766. "shasum": ""
  767. },
  768. "require": {
  769. "php": "^5.5 || ^7.0 || ^8.0",
  770. "psr/cache": "^1.0 || ^2.0"
  771. },
  772. "type": "library",
  773. "extra": {
  774. "branch-alias": {
  775. "dev-master": "1.1-dev"
  776. }
  777. },
  778. "autoload": {
  779. "psr-4": {
  780. "Cache\\TagInterop\\": ""
  781. }
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "MIT"
  786. ],
  787. "authors": [
  788. {
  789. "name": "Tobias Nyholm",
  790. "email": "tobias.nyholm@gmail.com",
  791. "homepage": "https://github.com/nyholm"
  792. },
  793. {
  794. "name": "Nicolas Grekas",
  795. "email": "p@tchwork.com",
  796. "homepage": "https://github.com/nicolas-grekas"
  797. }
  798. ],
  799. "description": "Framework interoperable interfaces for tags",
  800. "homepage": "https://www.php-cache.com/en/latest/",
  801. "keywords": [
  802. "cache",
  803. "psr",
  804. "psr6",
  805. "tag"
  806. ],
  807. "support": {
  808. "issues": "https://github.com/php-cache/tag-interop/issues",
  809. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  810. },
  811. "time": "2021-12-31T10:03:23+00:00"
  812. },
  813. {
  814. "name": "carbonphp/carbon-doctrine-types",
  815. "version": "2.1.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  819. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  824. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "php": "^7.4 || ^8.0"
  829. },
  830. "conflict": {
  831. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  832. },
  833. "require-dev": {
  834. "doctrine/dbal": "^3.7.0",
  835. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  836. "phpunit/phpunit": "^10.3"
  837. },
  838. "type": "library",
  839. "autoload": {
  840. "psr-4": {
  841. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "KyleKatarn",
  851. "email": "kylekatarnls@gmail.com"
  852. }
  853. ],
  854. "description": "Types to use Carbon in Doctrine",
  855. "keywords": [
  856. "carbon",
  857. "date",
  858. "datetime",
  859. "doctrine",
  860. "time"
  861. ],
  862. "support": {
  863. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  864. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  865. },
  866. "funding": [
  867. {
  868. "url": "https://github.com/kylekatarnls",
  869. "type": "github"
  870. },
  871. {
  872. "url": "https://opencollective.com/Carbon",
  873. "type": "open_collective"
  874. },
  875. {
  876. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  877. "type": "tidelift"
  878. }
  879. ],
  880. "time": "2023-12-11T17:09:12+00:00"
  881. },
  882. {
  883. "name": "cboden/ratchet",
  884. "version": "v0.4.4",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/ratchetphp/Ratchet.git",
  888. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  893. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "guzzlehttp/psr7": "^1.7|^2.0",
  898. "php": ">=5.4.2",
  899. "ratchet/rfc6455": "^0.3.1",
  900. "react/event-loop": ">=0.4",
  901. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  902. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  903. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "~4.8"
  907. },
  908. "type": "library",
  909. "autoload": {
  910. "psr-4": {
  911. "Ratchet\\": "src/Ratchet"
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "MIT"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Chris Boden",
  921. "email": "cboden@gmail.com",
  922. "role": "Developer"
  923. },
  924. {
  925. "name": "Matt Bonneau",
  926. "role": "Developer"
  927. }
  928. ],
  929. "description": "PHP WebSocket library",
  930. "homepage": "http://socketo.me",
  931. "keywords": [
  932. "Ratchet",
  933. "WebSockets",
  934. "server",
  935. "sockets",
  936. "websocket"
  937. ],
  938. "support": {
  939. "chat": "https://gitter.im/reactphp/reactphp",
  940. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  941. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  942. },
  943. "time": "2021-12-14T00:20:41+00:00"
  944. },
  945. {
  946. "name": "composer/semver",
  947. "version": "3.4.0",
  948. "source": {
  949. "type": "git",
  950. "url": "https://github.com/composer/semver.git",
  951. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  952. },
  953. "dist": {
  954. "type": "zip",
  955. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  956. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  957. "shasum": ""
  958. },
  959. "require": {
  960. "php": "^5.3.2 || ^7.0 || ^8.0"
  961. },
  962. "require-dev": {
  963. "phpstan/phpstan": "^1.4",
  964. "symfony/phpunit-bridge": "^4.2 || ^5"
  965. },
  966. "type": "library",
  967. "extra": {
  968. "branch-alias": {
  969. "dev-main": "3.x-dev"
  970. }
  971. },
  972. "autoload": {
  973. "psr-4": {
  974. "Composer\\Semver\\": "src"
  975. }
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "authors": [
  982. {
  983. "name": "Nils Adermann",
  984. "email": "naderman@naderman.de",
  985. "homepage": "http://www.naderman.de"
  986. },
  987. {
  988. "name": "Jordi Boggiano",
  989. "email": "j.boggiano@seld.be",
  990. "homepage": "http://seld.be"
  991. },
  992. {
  993. "name": "Rob Bast",
  994. "email": "rob.bast@gmail.com",
  995. "homepage": "http://robbast.nl"
  996. }
  997. ],
  998. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  999. "keywords": [
  1000. "semantic",
  1001. "semver",
  1002. "validation",
  1003. "versioning"
  1004. ],
  1005. "support": {
  1006. "irc": "ircs://irc.libera.chat:6697/composer",
  1007. "issues": "https://github.com/composer/semver/issues",
  1008. "source": "https://github.com/composer/semver/tree/3.4.0"
  1009. },
  1010. "funding": [
  1011. {
  1012. "url": "https://packagist.com",
  1013. "type": "custom"
  1014. },
  1015. {
  1016. "url": "https://github.com/composer",
  1017. "type": "github"
  1018. },
  1019. {
  1020. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1021. "type": "tidelift"
  1022. }
  1023. ],
  1024. "time": "2023-08-31T09:50:34+00:00"
  1025. },
  1026. {
  1027. "name": "dflydev/dot-access-data",
  1028. "version": "v3.0.2",
  1029. "source": {
  1030. "type": "git",
  1031. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1032. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1033. },
  1034. "dist": {
  1035. "type": "zip",
  1036. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1037. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1038. "shasum": ""
  1039. },
  1040. "require": {
  1041. "php": "^7.1 || ^8.0"
  1042. },
  1043. "require-dev": {
  1044. "phpstan/phpstan": "^0.12.42",
  1045. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1046. "scrutinizer/ocular": "1.6.0",
  1047. "squizlabs/php_codesniffer": "^3.5",
  1048. "vimeo/psalm": "^4.0.0"
  1049. },
  1050. "type": "library",
  1051. "extra": {
  1052. "branch-alias": {
  1053. "dev-main": "3.x-dev"
  1054. }
  1055. },
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Dflydev\\DotAccessData\\": "src/"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "Dragonfly Development Inc.",
  1068. "email": "info@dflydev.com",
  1069. "homepage": "http://dflydev.com"
  1070. },
  1071. {
  1072. "name": "Beau Simensen",
  1073. "email": "beau@dflydev.com",
  1074. "homepage": "http://beausimensen.com"
  1075. },
  1076. {
  1077. "name": "Carlos Frutos",
  1078. "email": "carlos@kiwing.it",
  1079. "homepage": "https://github.com/cfrutos"
  1080. },
  1081. {
  1082. "name": "Colin O'Dell",
  1083. "email": "colinodell@gmail.com",
  1084. "homepage": "https://www.colinodell.com"
  1085. }
  1086. ],
  1087. "description": "Given a deep data structure, access data by dot notation.",
  1088. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1089. "keywords": [
  1090. "access",
  1091. "data",
  1092. "dot",
  1093. "notation"
  1094. ],
  1095. "support": {
  1096. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1097. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1098. },
  1099. "time": "2022-10-27T11:44:00+00:00"
  1100. },
  1101. {
  1102. "name": "doctrine/inflector",
  1103. "version": "2.0.8",
  1104. "source": {
  1105. "type": "git",
  1106. "url": "https://github.com/doctrine/inflector.git",
  1107. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  1108. },
  1109. "dist": {
  1110. "type": "zip",
  1111. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1112. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1113. "shasum": ""
  1114. },
  1115. "require": {
  1116. "php": "^7.2 || ^8.0"
  1117. },
  1118. "require-dev": {
  1119. "doctrine/coding-standard": "^11.0",
  1120. "phpstan/phpstan": "^1.8",
  1121. "phpstan/phpstan-phpunit": "^1.1",
  1122. "phpstan/phpstan-strict-rules": "^1.3",
  1123. "phpunit/phpunit": "^8.5 || ^9.5",
  1124. "vimeo/psalm": "^4.25 || ^5.4"
  1125. },
  1126. "type": "library",
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Guilherme Blanco",
  1139. "email": "guilhermeblanco@gmail.com"
  1140. },
  1141. {
  1142. "name": "Roman Borschel",
  1143. "email": "roman@code-factory.org"
  1144. },
  1145. {
  1146. "name": "Benjamin Eberlei",
  1147. "email": "kontakt@beberlei.de"
  1148. },
  1149. {
  1150. "name": "Jonathan Wage",
  1151. "email": "jonwage@gmail.com"
  1152. },
  1153. {
  1154. "name": "Johannes Schmitt",
  1155. "email": "schmittjoh@gmail.com"
  1156. }
  1157. ],
  1158. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1159. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1160. "keywords": [
  1161. "inflection",
  1162. "inflector",
  1163. "lowercase",
  1164. "manipulation",
  1165. "php",
  1166. "plural",
  1167. "singular",
  1168. "strings",
  1169. "uppercase",
  1170. "words"
  1171. ],
  1172. "support": {
  1173. "issues": "https://github.com/doctrine/inflector/issues",
  1174. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1175. },
  1176. "funding": [
  1177. {
  1178. "url": "https://www.doctrine-project.org/sponsorship.html",
  1179. "type": "custom"
  1180. },
  1181. {
  1182. "url": "https://www.patreon.com/phpdoctrine",
  1183. "type": "patreon"
  1184. },
  1185. {
  1186. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1187. "type": "tidelift"
  1188. }
  1189. ],
  1190. "time": "2023-06-16T13:40:37+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/lexer",
  1194. "version": "1.2.3",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/lexer.git",
  1198. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1203. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "php": "^7.1 || ^8.0"
  1208. },
  1209. "require-dev": {
  1210. "doctrine/coding-standard": "^9.0",
  1211. "phpstan/phpstan": "^1.3",
  1212. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1213. "vimeo/psalm": "^4.11"
  1214. },
  1215. "type": "library",
  1216. "autoload": {
  1217. "psr-4": {
  1218. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1219. }
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "authors": [
  1226. {
  1227. "name": "Guilherme Blanco",
  1228. "email": "guilhermeblanco@gmail.com"
  1229. },
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Johannes Schmitt",
  1236. "email": "schmittjoh@gmail.com"
  1237. }
  1238. ],
  1239. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1240. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1241. "keywords": [
  1242. "annotations",
  1243. "docblock",
  1244. "lexer",
  1245. "parser",
  1246. "php"
  1247. ],
  1248. "support": {
  1249. "issues": "https://github.com/doctrine/lexer/issues",
  1250. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1251. },
  1252. "funding": [
  1253. {
  1254. "url": "https://www.doctrine-project.org/sponsorship.html",
  1255. "type": "custom"
  1256. },
  1257. {
  1258. "url": "https://www.patreon.com/phpdoctrine",
  1259. "type": "patreon"
  1260. },
  1261. {
  1262. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1263. "type": "tidelift"
  1264. }
  1265. ],
  1266. "time": "2022-02-28T11:07:21+00:00"
  1267. },
  1268. {
  1269. "name": "dragonmantank/cron-expression",
  1270. "version": "v3.3.3",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/dragonmantank/cron-expression.git",
  1274. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1279. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "php": "^7.2|^8.0",
  1284. "webmozart/assert": "^1.0"
  1285. },
  1286. "replace": {
  1287. "mtdowling/cron-expression": "^1.0"
  1288. },
  1289. "require-dev": {
  1290. "phpstan/extension-installer": "^1.0",
  1291. "phpstan/phpstan": "^1.0",
  1292. "phpstan/phpstan-webmozart-assert": "^1.0",
  1293. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1294. },
  1295. "type": "library",
  1296. "autoload": {
  1297. "psr-4": {
  1298. "Cron\\": "src/Cron/"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "authors": [
  1306. {
  1307. "name": "Chris Tankersley",
  1308. "email": "chris@ctankersley.com",
  1309. "homepage": "https://github.com/dragonmantank"
  1310. }
  1311. ],
  1312. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1313. "keywords": [
  1314. "cron",
  1315. "schedule"
  1316. ],
  1317. "support": {
  1318. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1319. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1320. },
  1321. "funding": [
  1322. {
  1323. "url": "https://github.com/dragonmantank",
  1324. "type": "github"
  1325. }
  1326. ],
  1327. "time": "2023-08-10T19:36:49+00:00"
  1328. },
  1329. {
  1330. "name": "egulias/email-validator",
  1331. "version": "2.1.25",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/egulias/EmailValidator.git",
  1335. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1340. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "doctrine/lexer": "^1.0.1",
  1345. "php": ">=5.5",
  1346. "symfony/polyfill-intl-idn": "^1.10"
  1347. },
  1348. "require-dev": {
  1349. "dominicsayers/isemail": "^3.0.7",
  1350. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1351. "satooshi/php-coveralls": "^1.0.1"
  1352. },
  1353. "suggest": {
  1354. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1355. },
  1356. "type": "library",
  1357. "extra": {
  1358. "branch-alias": {
  1359. "dev-master": "2.1.x-dev"
  1360. }
  1361. },
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Egulias\\EmailValidator\\": "src"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Eduardo Gulias Davis"
  1374. }
  1375. ],
  1376. "description": "A library for validating emails against several RFCs",
  1377. "homepage": "https://github.com/egulias/EmailValidator",
  1378. "keywords": [
  1379. "email",
  1380. "emailvalidation",
  1381. "emailvalidator",
  1382. "validation",
  1383. "validator"
  1384. ],
  1385. "support": {
  1386. "issues": "https://github.com/egulias/EmailValidator/issues",
  1387. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1388. },
  1389. "funding": [
  1390. {
  1391. "url": "https://github.com/egulias",
  1392. "type": "github"
  1393. }
  1394. ],
  1395. "time": "2020-12-29T14:50:06+00:00"
  1396. },
  1397. {
  1398. "name": "evenement/evenement",
  1399. "version": "v3.0.2",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/igorw/evenement.git",
  1403. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1408. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1409. "shasum": ""
  1410. },
  1411. "require": {
  1412. "php": ">=7.0"
  1413. },
  1414. "require-dev": {
  1415. "phpunit/phpunit": "^9 || ^6"
  1416. },
  1417. "type": "library",
  1418. "autoload": {
  1419. "psr-4": {
  1420. "Evenement\\": "src/"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Igor Wiedler",
  1430. "email": "igor@wiedler.ch"
  1431. }
  1432. ],
  1433. "description": "Événement is a very simple event dispatching library for PHP",
  1434. "keywords": [
  1435. "event-dispatcher",
  1436. "event-emitter"
  1437. ],
  1438. "support": {
  1439. "issues": "https://github.com/igorw/evenement/issues",
  1440. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1441. },
  1442. "time": "2023-08-08T05:53:35+00:00"
  1443. },
  1444. {
  1445. "name": "ezyang/htmlpurifier",
  1446. "version": "v4.17.0",
  1447. "source": {
  1448. "type": "git",
  1449. "url": "https://github.com/ezyang/htmlpurifier.git",
  1450. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1451. },
  1452. "dist": {
  1453. "type": "zip",
  1454. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1455. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1456. "shasum": ""
  1457. },
  1458. "require": {
  1459. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1460. },
  1461. "require-dev": {
  1462. "cerdic/css-tidy": "^1.7 || ^2.0",
  1463. "simpletest/simpletest": "dev-master"
  1464. },
  1465. "suggest": {
  1466. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1467. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1468. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1469. "ext-tidy": "Used for pretty-printing HTML"
  1470. },
  1471. "type": "library",
  1472. "autoload": {
  1473. "files": [
  1474. "library/HTMLPurifier.composer.php"
  1475. ],
  1476. "psr-0": {
  1477. "HTMLPurifier": "library/"
  1478. },
  1479. "exclude-from-classmap": [
  1480. "/library/HTMLPurifier/Language/"
  1481. ]
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "LGPL-2.1-or-later"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Edward Z. Yang",
  1490. "email": "admin@htmlpurifier.org",
  1491. "homepage": "http://ezyang.com"
  1492. }
  1493. ],
  1494. "description": "Standards compliant HTML filter written in PHP",
  1495. "homepage": "http://htmlpurifier.org/",
  1496. "keywords": [
  1497. "html"
  1498. ],
  1499. "support": {
  1500. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1501. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1502. },
  1503. "time": "2023-11-17T15:01:25+00:00"
  1504. },
  1505. {
  1506. "name": "fideloper/proxy",
  1507. "version": "4.4.2",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/fideloper/TrustedProxy.git",
  1511. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1516. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1521. "php": ">=5.4.0"
  1522. },
  1523. "require-dev": {
  1524. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1525. "mockery/mockery": "^1.0",
  1526. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1527. },
  1528. "type": "library",
  1529. "extra": {
  1530. "laravel": {
  1531. "providers": [
  1532. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1533. ]
  1534. }
  1535. },
  1536. "autoload": {
  1537. "psr-4": {
  1538. "Fideloper\\Proxy\\": "src/"
  1539. }
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "authors": [
  1546. {
  1547. "name": "Chris Fidao",
  1548. "email": "fideloper@gmail.com"
  1549. }
  1550. ],
  1551. "description": "Set trusted proxies for Laravel",
  1552. "keywords": [
  1553. "load balancing",
  1554. "proxy",
  1555. "trusted proxy"
  1556. ],
  1557. "support": {
  1558. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1559. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1560. },
  1561. "time": "2022-02-09T13:33:34+00:00"
  1562. },
  1563. {
  1564. "name": "fruitcake/laravel-cors",
  1565. "version": "v2.2.0",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/fruitcake/laravel-cors.git",
  1569. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1574. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "asm89/stack-cors": "^2.0.1",
  1579. "illuminate/contracts": "^6|^7|^8|^9",
  1580. "illuminate/support": "^6|^7|^8|^9",
  1581. "php": ">=7.2"
  1582. },
  1583. "require-dev": {
  1584. "laravel/framework": "^6|^7.24|^8",
  1585. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1586. "phpunit/phpunit": "^6|^7|^8|^9",
  1587. "squizlabs/php_codesniffer": "^3.5"
  1588. },
  1589. "type": "library",
  1590. "extra": {
  1591. "branch-alias": {
  1592. "dev-master": "2.1-dev"
  1593. },
  1594. "laravel": {
  1595. "providers": [
  1596. "Fruitcake\\Cors\\CorsServiceProvider"
  1597. ]
  1598. }
  1599. },
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Fruitcake\\Cors\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Fruitcake",
  1612. "homepage": "https://fruitcake.nl"
  1613. },
  1614. {
  1615. "name": "Barry vd. Heuvel",
  1616. "email": "barryvdh@gmail.com"
  1617. }
  1618. ],
  1619. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1620. "keywords": [
  1621. "api",
  1622. "cors",
  1623. "crossdomain",
  1624. "laravel"
  1625. ],
  1626. "support": {
  1627. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1628. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1629. },
  1630. "funding": [
  1631. {
  1632. "url": "https://fruitcake.nl",
  1633. "type": "custom"
  1634. },
  1635. {
  1636. "url": "https://github.com/barryvdh",
  1637. "type": "github"
  1638. }
  1639. ],
  1640. "abandoned": true,
  1641. "time": "2022-02-23T14:25:13+00:00"
  1642. },
  1643. {
  1644. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  1645. "version": "dev-master",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  1649. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  1654. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  1655. "shasum": ""
  1656. },
  1657. "default-branch": true,
  1658. "type": "library",
  1659. "autoload": {
  1660. "classmap": [
  1661. ""
  1662. ]
  1663. },
  1664. "notification-url": "https://packagist.org/downloads/",
  1665. "license": [
  1666. "MIT"
  1667. ],
  1668. "authors": [
  1669. {
  1670. "name": "getui",
  1671. "homepage": "https://www.getui.com/cn"
  1672. }
  1673. ],
  1674. "description": "getui php client V2",
  1675. "homepage": "https://www.getui.com/cn/",
  1676. "keywords": [
  1677. "GeTui",
  1678. "GetuiLaboratory",
  1679. "getui-pushapi-php-client",
  1680. "getui-pushapi-php-client-v2",
  1681. "pushapi"
  1682. ],
  1683. "support": {
  1684. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  1685. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  1686. },
  1687. "time": "2021-06-21T03:22:42+00:00"
  1688. },
  1689. {
  1690. "name": "graham-campbell/result-type",
  1691. "version": "v1.1.2",
  1692. "source": {
  1693. "type": "git",
  1694. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1695. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1696. },
  1697. "dist": {
  1698. "type": "zip",
  1699. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1700. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1701. "shasum": ""
  1702. },
  1703. "require": {
  1704. "php": "^7.2.5 || ^8.0",
  1705. "phpoption/phpoption": "^1.9.2"
  1706. },
  1707. "require-dev": {
  1708. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1709. },
  1710. "type": "library",
  1711. "autoload": {
  1712. "psr-4": {
  1713. "GrahamCampbell\\ResultType\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Graham Campbell",
  1723. "email": "hello@gjcampbell.co.uk",
  1724. "homepage": "https://github.com/GrahamCampbell"
  1725. }
  1726. ],
  1727. "description": "An Implementation Of The Result Type",
  1728. "keywords": [
  1729. "Graham Campbell",
  1730. "GrahamCampbell",
  1731. "Result Type",
  1732. "Result-Type",
  1733. "result"
  1734. ],
  1735. "support": {
  1736. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1737. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1738. },
  1739. "funding": [
  1740. {
  1741. "url": "https://github.com/GrahamCampbell",
  1742. "type": "github"
  1743. },
  1744. {
  1745. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1746. "type": "tidelift"
  1747. }
  1748. ],
  1749. "time": "2023-11-12T22:16:48+00:00"
  1750. },
  1751. {
  1752. "name": "gregwar/captcha",
  1753. "version": "v1.2.1",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/Gregwar/Captcha.git",
  1757. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1762. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "ext-gd": "*",
  1767. "ext-mbstring": "*",
  1768. "php": ">=5.3.0",
  1769. "symfony/finder": "*"
  1770. },
  1771. "require-dev": {
  1772. "phpunit/phpunit": "^6.4"
  1773. },
  1774. "type": "library",
  1775. "autoload": {
  1776. "psr-4": {
  1777. "Gregwar\\": "src/Gregwar"
  1778. }
  1779. },
  1780. "notification-url": "https://packagist.org/downloads/",
  1781. "license": [
  1782. "MIT"
  1783. ],
  1784. "authors": [
  1785. {
  1786. "name": "Grégoire Passault",
  1787. "email": "g.passault@gmail.com",
  1788. "homepage": "http://www.gregwar.com/"
  1789. },
  1790. {
  1791. "name": "Jeremy Livingston",
  1792. "email": "jeremy.j.livingston@gmail.com"
  1793. }
  1794. ],
  1795. "description": "Captcha generator",
  1796. "homepage": "https://github.com/Gregwar/Captcha",
  1797. "keywords": [
  1798. "bot",
  1799. "captcha",
  1800. "spam"
  1801. ],
  1802. "support": {
  1803. "issues": "https://github.com/Gregwar/Captcha/issues",
  1804. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1805. },
  1806. "time": "2023-09-26T13:45:37+00:00"
  1807. },
  1808. {
  1809. "name": "guzzlehttp/guzzle",
  1810. "version": "7.8.1",
  1811. "source": {
  1812. "type": "git",
  1813. "url": "https://github.com/guzzle/guzzle.git",
  1814. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1815. },
  1816. "dist": {
  1817. "type": "zip",
  1818. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1819. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1820. "shasum": ""
  1821. },
  1822. "require": {
  1823. "ext-json": "*",
  1824. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1825. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1826. "php": "^7.2.5 || ^8.0",
  1827. "psr/http-client": "^1.0",
  1828. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1829. },
  1830. "provide": {
  1831. "psr/http-client-implementation": "1.0"
  1832. },
  1833. "require-dev": {
  1834. "bamarni/composer-bin-plugin": "^1.8.2",
  1835. "ext-curl": "*",
  1836. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1837. "php-http/message-factory": "^1.1",
  1838. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1839. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1840. },
  1841. "suggest": {
  1842. "ext-curl": "Required for CURL handler support",
  1843. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1844. "psr/log": "Required for using the Log middleware"
  1845. },
  1846. "type": "library",
  1847. "extra": {
  1848. "bamarni-bin": {
  1849. "bin-links": true,
  1850. "forward-command": false
  1851. }
  1852. },
  1853. "autoload": {
  1854. "files": [
  1855. "src/functions_include.php"
  1856. ],
  1857. "psr-4": {
  1858. "GuzzleHttp\\": "src/"
  1859. }
  1860. },
  1861. "notification-url": "https://packagist.org/downloads/",
  1862. "license": [
  1863. "MIT"
  1864. ],
  1865. "authors": [
  1866. {
  1867. "name": "Graham Campbell",
  1868. "email": "hello@gjcampbell.co.uk",
  1869. "homepage": "https://github.com/GrahamCampbell"
  1870. },
  1871. {
  1872. "name": "Michael Dowling",
  1873. "email": "mtdowling@gmail.com",
  1874. "homepage": "https://github.com/mtdowling"
  1875. },
  1876. {
  1877. "name": "Jeremy Lindblom",
  1878. "email": "jeremeamia@gmail.com",
  1879. "homepage": "https://github.com/jeremeamia"
  1880. },
  1881. {
  1882. "name": "George Mponos",
  1883. "email": "gmponos@gmail.com",
  1884. "homepage": "https://github.com/gmponos"
  1885. },
  1886. {
  1887. "name": "Tobias Nyholm",
  1888. "email": "tobias.nyholm@gmail.com",
  1889. "homepage": "https://github.com/Nyholm"
  1890. },
  1891. {
  1892. "name": "Márk Sági-Kazár",
  1893. "email": "mark.sagikazar@gmail.com",
  1894. "homepage": "https://github.com/sagikazarmark"
  1895. },
  1896. {
  1897. "name": "Tobias Schultze",
  1898. "email": "webmaster@tubo-world.de",
  1899. "homepage": "https://github.com/Tobion"
  1900. }
  1901. ],
  1902. "description": "Guzzle is a PHP HTTP client library",
  1903. "keywords": [
  1904. "client",
  1905. "curl",
  1906. "framework",
  1907. "http",
  1908. "http client",
  1909. "psr-18",
  1910. "psr-7",
  1911. "rest",
  1912. "web service"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/guzzle/guzzle/issues",
  1916. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1917. },
  1918. "funding": [
  1919. {
  1920. "url": "https://github.com/GrahamCampbell",
  1921. "type": "github"
  1922. },
  1923. {
  1924. "url": "https://github.com/Nyholm",
  1925. "type": "github"
  1926. },
  1927. {
  1928. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1929. "type": "tidelift"
  1930. }
  1931. ],
  1932. "time": "2023-12-03T20:35:24+00:00"
  1933. },
  1934. {
  1935. "name": "guzzlehttp/promises",
  1936. "version": "2.0.2",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/guzzle/promises.git",
  1940. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  1945. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "php": "^7.2.5 || ^8.0"
  1950. },
  1951. "require-dev": {
  1952. "bamarni/composer-bin-plugin": "^1.8.2",
  1953. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1954. },
  1955. "type": "library",
  1956. "extra": {
  1957. "bamarni-bin": {
  1958. "bin-links": true,
  1959. "forward-command": false
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "GuzzleHttp\\Promise\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Graham Campbell",
  1974. "email": "hello@gjcampbell.co.uk",
  1975. "homepage": "https://github.com/GrahamCampbell"
  1976. },
  1977. {
  1978. "name": "Michael Dowling",
  1979. "email": "mtdowling@gmail.com",
  1980. "homepage": "https://github.com/mtdowling"
  1981. },
  1982. {
  1983. "name": "Tobias Nyholm",
  1984. "email": "tobias.nyholm@gmail.com",
  1985. "homepage": "https://github.com/Nyholm"
  1986. },
  1987. {
  1988. "name": "Tobias Schultze",
  1989. "email": "webmaster@tubo-world.de",
  1990. "homepage": "https://github.com/Tobion"
  1991. }
  1992. ],
  1993. "description": "Guzzle promises library",
  1994. "keywords": [
  1995. "promise"
  1996. ],
  1997. "support": {
  1998. "issues": "https://github.com/guzzle/promises/issues",
  1999. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2000. },
  2001. "funding": [
  2002. {
  2003. "url": "https://github.com/GrahamCampbell",
  2004. "type": "github"
  2005. },
  2006. {
  2007. "url": "https://github.com/Nyholm",
  2008. "type": "github"
  2009. },
  2010. {
  2011. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2012. "type": "tidelift"
  2013. }
  2014. ],
  2015. "time": "2023-12-03T20:19:20+00:00"
  2016. },
  2017. {
  2018. "name": "guzzlehttp/psr7",
  2019. "version": "2.6.2",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/guzzle/psr7.git",
  2023. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2028. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2029. "shasum": ""
  2030. },
  2031. "require": {
  2032. "php": "^7.2.5 || ^8.0",
  2033. "psr/http-factory": "^1.0",
  2034. "psr/http-message": "^1.1 || ^2.0",
  2035. "ralouphie/getallheaders": "^3.0"
  2036. },
  2037. "provide": {
  2038. "psr/http-factory-implementation": "1.0",
  2039. "psr/http-message-implementation": "1.0"
  2040. },
  2041. "require-dev": {
  2042. "bamarni/composer-bin-plugin": "^1.8.2",
  2043. "http-interop/http-factory-tests": "^0.9",
  2044. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2045. },
  2046. "suggest": {
  2047. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "bamarni-bin": {
  2052. "bin-links": true,
  2053. "forward-command": false
  2054. }
  2055. },
  2056. "autoload": {
  2057. "psr-4": {
  2058. "GuzzleHttp\\Psr7\\": "src/"
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Graham Campbell",
  2068. "email": "hello@gjcampbell.co.uk",
  2069. "homepage": "https://github.com/GrahamCampbell"
  2070. },
  2071. {
  2072. "name": "Michael Dowling",
  2073. "email": "mtdowling@gmail.com",
  2074. "homepage": "https://github.com/mtdowling"
  2075. },
  2076. {
  2077. "name": "George Mponos",
  2078. "email": "gmponos@gmail.com",
  2079. "homepage": "https://github.com/gmponos"
  2080. },
  2081. {
  2082. "name": "Tobias Nyholm",
  2083. "email": "tobias.nyholm@gmail.com",
  2084. "homepage": "https://github.com/Nyholm"
  2085. },
  2086. {
  2087. "name": "Márk Sági-Kazár",
  2088. "email": "mark.sagikazar@gmail.com",
  2089. "homepage": "https://github.com/sagikazarmark"
  2090. },
  2091. {
  2092. "name": "Tobias Schultze",
  2093. "email": "webmaster@tubo-world.de",
  2094. "homepage": "https://github.com/Tobion"
  2095. },
  2096. {
  2097. "name": "Márk Sági-Kazár",
  2098. "email": "mark.sagikazar@gmail.com",
  2099. "homepage": "https://sagikazarmark.hu"
  2100. }
  2101. ],
  2102. "description": "PSR-7 message implementation that also provides common utility methods",
  2103. "keywords": [
  2104. "http",
  2105. "message",
  2106. "psr-7",
  2107. "request",
  2108. "response",
  2109. "stream",
  2110. "uri",
  2111. "url"
  2112. ],
  2113. "support": {
  2114. "issues": "https://github.com/guzzle/psr7/issues",
  2115. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2116. },
  2117. "funding": [
  2118. {
  2119. "url": "https://github.com/GrahamCampbell",
  2120. "type": "github"
  2121. },
  2122. {
  2123. "url": "https://github.com/Nyholm",
  2124. "type": "github"
  2125. },
  2126. {
  2127. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2128. "type": "tidelift"
  2129. }
  2130. ],
  2131. "time": "2023-12-03T20:05:35+00:00"
  2132. },
  2133. {
  2134. "name": "jaeger/g-http",
  2135. "version": "V1.7.2",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/jae-jae/GHttp.git",
  2139. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2144. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "cache/filesystem-adapter": "^1",
  2149. "guzzlehttp/guzzle": "^6.0 | ^7.0"
  2150. },
  2151. "type": "library",
  2152. "autoload": {
  2153. "psr-4": {
  2154. "Jaeger\\": "src"
  2155. }
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "MIT"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "Jaeger",
  2164. "email": "JaegerCode@gmail.com"
  2165. }
  2166. ],
  2167. "description": "Simple Http client base on GuzzleHttp",
  2168. "support": {
  2169. "issues": "https://github.com/jae-jae/GHttp/issues",
  2170. "source": "https://github.com/jae-jae/GHttp/tree/V1.7.2"
  2171. },
  2172. "time": "2021-08-08T04:59:44+00:00"
  2173. },
  2174. {
  2175. "name": "jaeger/phpquery-single",
  2176. "version": "1.1.1",
  2177. "source": {
  2178. "type": "git",
  2179. "url": "https://github.com/jae-jae/phpQuery-single.git",
  2180. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  2181. },
  2182. "dist": {
  2183. "type": "zip",
  2184. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  2185. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  2186. "shasum": ""
  2187. },
  2188. "require": {
  2189. "php": ">=5.3.0"
  2190. },
  2191. "type": "library",
  2192. "autoload": {
  2193. "classmap": [
  2194. "phpQuery.php"
  2195. ]
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "MIT"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Tobiasz Cudnik",
  2204. "email": "tobiasz.cudnik@gmail.com",
  2205. "homepage": "https://github.com/TobiaszCudnik",
  2206. "role": "Developer"
  2207. },
  2208. {
  2209. "name": "Jaeger",
  2210. "role": "Packager"
  2211. }
  2212. ],
  2213. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  2214. "homepage": "http://code.google.com/p/phpquery/",
  2215. "support": {
  2216. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  2217. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  2218. },
  2219. "time": "2022-03-26T15:01:16+00:00"
  2220. },
  2221. {
  2222. "name": "jaeger/querylist",
  2223. "version": "V4.2.8",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/jae-jae/QueryList.git",
  2227. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2232. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2233. "shasum": ""
  2234. },
  2235. "require": {
  2236. "ext-dom": "*",
  2237. "jaeger/g-http": "^1.1",
  2238. "jaeger/phpquery-single": "^1",
  2239. "php": ">=7.1",
  2240. "tightenco/collect": ">5.0"
  2241. },
  2242. "require-dev": {
  2243. "phpunit/phpunit": "^8.5",
  2244. "symfony/var-dumper": "^3.3"
  2245. },
  2246. "type": "library",
  2247. "autoload": {
  2248. "psr-4": {
  2249. "QL\\": "src"
  2250. }
  2251. },
  2252. "notification-url": "https://packagist.org/downloads/",
  2253. "license": [
  2254. "MIT"
  2255. ],
  2256. "authors": [
  2257. {
  2258. "name": "Jaeger",
  2259. "email": "JaegerCode@gmail.com"
  2260. }
  2261. ],
  2262. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  2263. "homepage": "http://querylist.cc",
  2264. "keywords": [
  2265. "QueryList",
  2266. "phpQuery",
  2267. "spider"
  2268. ],
  2269. "support": {
  2270. "issues": "https://github.com/jae-jae/QueryList/issues",
  2271. "source": "https://github.com/jae-jae/QueryList/tree/V4.2.8"
  2272. },
  2273. "funding": [
  2274. {
  2275. "url": "https://opencollective.com/querylist",
  2276. "type": "open_collective"
  2277. }
  2278. ],
  2279. "time": "2021-07-05T06:07:58+00:00"
  2280. },
  2281. {
  2282. "name": "laravel/framework",
  2283. "version": "v8.83.27",
  2284. "source": {
  2285. "type": "git",
  2286. "url": "https://github.com/laravel/framework.git",
  2287. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2288. },
  2289. "dist": {
  2290. "type": "zip",
  2291. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2292. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2293. "shasum": ""
  2294. },
  2295. "require": {
  2296. "doctrine/inflector": "^1.4|^2.0",
  2297. "dragonmantank/cron-expression": "^3.0.2",
  2298. "egulias/email-validator": "^2.1.10",
  2299. "ext-json": "*",
  2300. "ext-mbstring": "*",
  2301. "ext-openssl": "*",
  2302. "laravel/serializable-closure": "^1.0",
  2303. "league/commonmark": "^1.3|^2.0.2",
  2304. "league/flysystem": "^1.1",
  2305. "monolog/monolog": "^2.0",
  2306. "nesbot/carbon": "^2.53.1",
  2307. "opis/closure": "^3.6",
  2308. "php": "^7.3|^8.0",
  2309. "psr/container": "^1.0",
  2310. "psr/log": "^1.0|^2.0",
  2311. "psr/simple-cache": "^1.0",
  2312. "ramsey/uuid": "^4.2.2",
  2313. "swiftmailer/swiftmailer": "^6.3",
  2314. "symfony/console": "^5.4",
  2315. "symfony/error-handler": "^5.4",
  2316. "symfony/finder": "^5.4",
  2317. "symfony/http-foundation": "^5.4",
  2318. "symfony/http-kernel": "^5.4",
  2319. "symfony/mime": "^5.4",
  2320. "symfony/process": "^5.4",
  2321. "symfony/routing": "^5.4",
  2322. "symfony/var-dumper": "^5.4",
  2323. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2324. "vlucas/phpdotenv": "^5.4.1",
  2325. "voku/portable-ascii": "^1.6.1"
  2326. },
  2327. "conflict": {
  2328. "tightenco/collect": "<5.5.33"
  2329. },
  2330. "provide": {
  2331. "psr/container-implementation": "1.0",
  2332. "psr/simple-cache-implementation": "1.0"
  2333. },
  2334. "replace": {
  2335. "illuminate/auth": "self.version",
  2336. "illuminate/broadcasting": "self.version",
  2337. "illuminate/bus": "self.version",
  2338. "illuminate/cache": "self.version",
  2339. "illuminate/collections": "self.version",
  2340. "illuminate/config": "self.version",
  2341. "illuminate/console": "self.version",
  2342. "illuminate/container": "self.version",
  2343. "illuminate/contracts": "self.version",
  2344. "illuminate/cookie": "self.version",
  2345. "illuminate/database": "self.version",
  2346. "illuminate/encryption": "self.version",
  2347. "illuminate/events": "self.version",
  2348. "illuminate/filesystem": "self.version",
  2349. "illuminate/hashing": "self.version",
  2350. "illuminate/http": "self.version",
  2351. "illuminate/log": "self.version",
  2352. "illuminate/macroable": "self.version",
  2353. "illuminate/mail": "self.version",
  2354. "illuminate/notifications": "self.version",
  2355. "illuminate/pagination": "self.version",
  2356. "illuminate/pipeline": "self.version",
  2357. "illuminate/queue": "self.version",
  2358. "illuminate/redis": "self.version",
  2359. "illuminate/routing": "self.version",
  2360. "illuminate/session": "self.version",
  2361. "illuminate/support": "self.version",
  2362. "illuminate/testing": "self.version",
  2363. "illuminate/translation": "self.version",
  2364. "illuminate/validation": "self.version",
  2365. "illuminate/view": "self.version"
  2366. },
  2367. "require-dev": {
  2368. "aws/aws-sdk-php": "^3.198.1",
  2369. "doctrine/dbal": "^2.13.3|^3.1.4",
  2370. "filp/whoops": "^2.14.3",
  2371. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2372. "league/flysystem-cached-adapter": "^1.0",
  2373. "mockery/mockery": "^1.4.4",
  2374. "orchestra/testbench-core": "^6.27",
  2375. "pda/pheanstalk": "^4.0",
  2376. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2377. "predis/predis": "^1.1.9",
  2378. "symfony/cache": "^5.4"
  2379. },
  2380. "suggest": {
  2381. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2382. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2383. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2384. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2385. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2386. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2387. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2388. "ext-memcached": "Required to use the memcache cache driver.",
  2389. "ext-pcntl": "Required to use all features of the queue worker.",
  2390. "ext-posix": "Required to use all features of the queue worker.",
  2391. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2392. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2393. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2394. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2395. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2396. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2397. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2398. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2399. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2400. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2401. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2402. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2403. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2404. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2405. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2406. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2407. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2408. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2409. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2410. },
  2411. "type": "library",
  2412. "extra": {
  2413. "branch-alias": {
  2414. "dev-master": "8.x-dev"
  2415. }
  2416. },
  2417. "autoload": {
  2418. "files": [
  2419. "src/Illuminate/Collections/helpers.php",
  2420. "src/Illuminate/Events/functions.php",
  2421. "src/Illuminate/Foundation/helpers.php",
  2422. "src/Illuminate/Support/helpers.php"
  2423. ],
  2424. "psr-4": {
  2425. "Illuminate\\": "src/Illuminate/",
  2426. "Illuminate\\Support\\": [
  2427. "src/Illuminate/Macroable/",
  2428. "src/Illuminate/Collections/"
  2429. ]
  2430. }
  2431. },
  2432. "notification-url": "https://packagist.org/downloads/",
  2433. "license": [
  2434. "MIT"
  2435. ],
  2436. "authors": [
  2437. {
  2438. "name": "Taylor Otwell",
  2439. "email": "taylor@laravel.com"
  2440. }
  2441. ],
  2442. "description": "The Laravel Framework.",
  2443. "homepage": "https://laravel.com",
  2444. "keywords": [
  2445. "framework",
  2446. "laravel"
  2447. ],
  2448. "support": {
  2449. "issues": "https://github.com/laravel/framework/issues",
  2450. "source": "https://github.com/laravel/framework"
  2451. },
  2452. "time": "2022-12-08T15:28:55+00:00"
  2453. },
  2454. {
  2455. "name": "laravel/serializable-closure",
  2456. "version": "v1.3.3",
  2457. "source": {
  2458. "type": "git",
  2459. "url": "https://github.com/laravel/serializable-closure.git",
  2460. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2461. },
  2462. "dist": {
  2463. "type": "zip",
  2464. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2465. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2466. "shasum": ""
  2467. },
  2468. "require": {
  2469. "php": "^7.3|^8.0"
  2470. },
  2471. "require-dev": {
  2472. "nesbot/carbon": "^2.61",
  2473. "pestphp/pest": "^1.21.3",
  2474. "phpstan/phpstan": "^1.8.2",
  2475. "symfony/var-dumper": "^5.4.11"
  2476. },
  2477. "type": "library",
  2478. "extra": {
  2479. "branch-alias": {
  2480. "dev-master": "1.x-dev"
  2481. }
  2482. },
  2483. "autoload": {
  2484. "psr-4": {
  2485. "Laravel\\SerializableClosure\\": "src/"
  2486. }
  2487. },
  2488. "notification-url": "https://packagist.org/downloads/",
  2489. "license": [
  2490. "MIT"
  2491. ],
  2492. "authors": [
  2493. {
  2494. "name": "Taylor Otwell",
  2495. "email": "taylor@laravel.com"
  2496. },
  2497. {
  2498. "name": "Nuno Maduro",
  2499. "email": "nuno@laravel.com"
  2500. }
  2501. ],
  2502. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2503. "keywords": [
  2504. "closure",
  2505. "laravel",
  2506. "serializable"
  2507. ],
  2508. "support": {
  2509. "issues": "https://github.com/laravel/serializable-closure/issues",
  2510. "source": "https://github.com/laravel/serializable-closure"
  2511. },
  2512. "time": "2023-11-08T14:08:06+00:00"
  2513. },
  2514. {
  2515. "name": "laravel/socialite",
  2516. "version": "v5.11.0",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/laravel/socialite.git",
  2520. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/laravel/socialite/zipball/4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2525. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2526. "shasum": ""
  2527. },
  2528. "require": {
  2529. "ext-json": "*",
  2530. "guzzlehttp/guzzle": "^6.0|^7.0",
  2531. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2532. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2533. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2534. "league/oauth1-client": "^1.10.1",
  2535. "php": "^7.2|^8.0"
  2536. },
  2537. "require-dev": {
  2538. "mockery/mockery": "^1.0",
  2539. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2540. "phpstan/phpstan": "^1.10",
  2541. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2542. },
  2543. "type": "library",
  2544. "extra": {
  2545. "branch-alias": {
  2546. "dev-master": "5.x-dev"
  2547. },
  2548. "laravel": {
  2549. "providers": [
  2550. "Laravel\\Socialite\\SocialiteServiceProvider"
  2551. ],
  2552. "aliases": {
  2553. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2554. }
  2555. }
  2556. },
  2557. "autoload": {
  2558. "psr-4": {
  2559. "Laravel\\Socialite\\": "src/"
  2560. }
  2561. },
  2562. "notification-url": "https://packagist.org/downloads/",
  2563. "license": [
  2564. "MIT"
  2565. ],
  2566. "authors": [
  2567. {
  2568. "name": "Taylor Otwell",
  2569. "email": "taylor@laravel.com"
  2570. }
  2571. ],
  2572. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2573. "homepage": "https://laravel.com",
  2574. "keywords": [
  2575. "laravel",
  2576. "oauth"
  2577. ],
  2578. "support": {
  2579. "issues": "https://github.com/laravel/socialite/issues",
  2580. "source": "https://github.com/laravel/socialite"
  2581. },
  2582. "time": "2023-12-02T18:22:36+00:00"
  2583. },
  2584. {
  2585. "name": "laravel/tinker",
  2586. "version": "v2.8.2",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/laravel/tinker.git",
  2590. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2595. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2596. "shasum": ""
  2597. },
  2598. "require": {
  2599. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2600. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2601. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2602. "php": "^7.2.5|^8.0",
  2603. "psy/psysh": "^0.10.4|^0.11.1",
  2604. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2605. },
  2606. "require-dev": {
  2607. "mockery/mockery": "~1.3.3|^1.4.2",
  2608. "phpstan/phpstan": "^1.10",
  2609. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2610. },
  2611. "suggest": {
  2612. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2613. },
  2614. "type": "library",
  2615. "extra": {
  2616. "branch-alias": {
  2617. "dev-master": "2.x-dev"
  2618. },
  2619. "laravel": {
  2620. "providers": [
  2621. "Laravel\\Tinker\\TinkerServiceProvider"
  2622. ]
  2623. }
  2624. },
  2625. "autoload": {
  2626. "psr-4": {
  2627. "Laravel\\Tinker\\": "src/"
  2628. }
  2629. },
  2630. "notification-url": "https://packagist.org/downloads/",
  2631. "license": [
  2632. "MIT"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "Taylor Otwell",
  2637. "email": "taylor@laravel.com"
  2638. }
  2639. ],
  2640. "description": "Powerful REPL for the Laravel framework.",
  2641. "keywords": [
  2642. "REPL",
  2643. "Tinker",
  2644. "laravel",
  2645. "psysh"
  2646. ],
  2647. "support": {
  2648. "issues": "https://github.com/laravel/tinker/issues",
  2649. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  2650. },
  2651. "time": "2023-08-15T14:27:00+00:00"
  2652. },
  2653. {
  2654. "name": "league/commonmark",
  2655. "version": "2.4.1",
  2656. "source": {
  2657. "type": "git",
  2658. "url": "https://github.com/thephpleague/commonmark.git",
  2659. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2660. },
  2661. "dist": {
  2662. "type": "zip",
  2663. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2664. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2665. "shasum": ""
  2666. },
  2667. "require": {
  2668. "ext-mbstring": "*",
  2669. "league/config": "^1.1.1",
  2670. "php": "^7.4 || ^8.0",
  2671. "psr/event-dispatcher": "^1.0",
  2672. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2673. "symfony/polyfill-php80": "^1.16"
  2674. },
  2675. "require-dev": {
  2676. "cebe/markdown": "^1.0",
  2677. "commonmark/cmark": "0.30.0",
  2678. "commonmark/commonmark.js": "0.30.0",
  2679. "composer/package-versions-deprecated": "^1.8",
  2680. "embed/embed": "^4.4",
  2681. "erusev/parsedown": "^1.0",
  2682. "ext-json": "*",
  2683. "github/gfm": "0.29.0",
  2684. "michelf/php-markdown": "^1.4 || ^2.0",
  2685. "nyholm/psr7": "^1.5",
  2686. "phpstan/phpstan": "^1.8.2",
  2687. "phpunit/phpunit": "^9.5.21",
  2688. "scrutinizer/ocular": "^1.8.1",
  2689. "symfony/finder": "^5.3 | ^6.0",
  2690. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2691. "unleashedtech/php-coding-standard": "^3.1.1",
  2692. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2693. },
  2694. "suggest": {
  2695. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2696. },
  2697. "type": "library",
  2698. "extra": {
  2699. "branch-alias": {
  2700. "dev-main": "2.5-dev"
  2701. }
  2702. },
  2703. "autoload": {
  2704. "psr-4": {
  2705. "League\\CommonMark\\": "src"
  2706. }
  2707. },
  2708. "notification-url": "https://packagist.org/downloads/",
  2709. "license": [
  2710. "BSD-3-Clause"
  2711. ],
  2712. "authors": [
  2713. {
  2714. "name": "Colin O'Dell",
  2715. "email": "colinodell@gmail.com",
  2716. "homepage": "https://www.colinodell.com",
  2717. "role": "Lead Developer"
  2718. }
  2719. ],
  2720. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2721. "homepage": "https://commonmark.thephpleague.com",
  2722. "keywords": [
  2723. "commonmark",
  2724. "flavored",
  2725. "gfm",
  2726. "github",
  2727. "github-flavored",
  2728. "markdown",
  2729. "md",
  2730. "parser"
  2731. ],
  2732. "support": {
  2733. "docs": "https://commonmark.thephpleague.com/",
  2734. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2735. "issues": "https://github.com/thephpleague/commonmark/issues",
  2736. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2737. "source": "https://github.com/thephpleague/commonmark"
  2738. },
  2739. "funding": [
  2740. {
  2741. "url": "https://www.colinodell.com/sponsor",
  2742. "type": "custom"
  2743. },
  2744. {
  2745. "url": "https://www.paypal.me/colinpodell/10.00",
  2746. "type": "custom"
  2747. },
  2748. {
  2749. "url": "https://github.com/colinodell",
  2750. "type": "github"
  2751. },
  2752. {
  2753. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2754. "type": "tidelift"
  2755. }
  2756. ],
  2757. "time": "2023-08-30T16:55:00+00:00"
  2758. },
  2759. {
  2760. "name": "league/config",
  2761. "version": "v1.2.0",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/thephpleague/config.git",
  2765. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2770. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2771. "shasum": ""
  2772. },
  2773. "require": {
  2774. "dflydev/dot-access-data": "^3.0.1",
  2775. "nette/schema": "^1.2",
  2776. "php": "^7.4 || ^8.0"
  2777. },
  2778. "require-dev": {
  2779. "phpstan/phpstan": "^1.8.2",
  2780. "phpunit/phpunit": "^9.5.5",
  2781. "scrutinizer/ocular": "^1.8.1",
  2782. "unleashedtech/php-coding-standard": "^3.1",
  2783. "vimeo/psalm": "^4.7.3"
  2784. },
  2785. "type": "library",
  2786. "extra": {
  2787. "branch-alias": {
  2788. "dev-main": "1.2-dev"
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-4": {
  2793. "League\\Config\\": "src"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "BSD-3-Clause"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "Colin O'Dell",
  2803. "email": "colinodell@gmail.com",
  2804. "homepage": "https://www.colinodell.com",
  2805. "role": "Lead Developer"
  2806. }
  2807. ],
  2808. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2809. "homepage": "https://config.thephpleague.com",
  2810. "keywords": [
  2811. "array",
  2812. "config",
  2813. "configuration",
  2814. "dot",
  2815. "dot-access",
  2816. "nested",
  2817. "schema"
  2818. ],
  2819. "support": {
  2820. "docs": "https://config.thephpleague.com/",
  2821. "issues": "https://github.com/thephpleague/config/issues",
  2822. "rss": "https://github.com/thephpleague/config/releases.atom",
  2823. "source": "https://github.com/thephpleague/config"
  2824. },
  2825. "funding": [
  2826. {
  2827. "url": "https://www.colinodell.com/sponsor",
  2828. "type": "custom"
  2829. },
  2830. {
  2831. "url": "https://www.paypal.me/colinpodell/10.00",
  2832. "type": "custom"
  2833. },
  2834. {
  2835. "url": "https://github.com/colinodell",
  2836. "type": "github"
  2837. }
  2838. ],
  2839. "time": "2022-12-11T20:36:23+00:00"
  2840. },
  2841. {
  2842. "name": "league/flysystem",
  2843. "version": "1.1.10",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/thephpleague/flysystem.git",
  2847. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2852. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2853. "shasum": ""
  2854. },
  2855. "require": {
  2856. "ext-fileinfo": "*",
  2857. "league/mime-type-detection": "^1.3",
  2858. "php": "^7.2.5 || ^8.0"
  2859. },
  2860. "conflict": {
  2861. "league/flysystem-sftp": "<1.0.6"
  2862. },
  2863. "require-dev": {
  2864. "phpspec/prophecy": "^1.11.1",
  2865. "phpunit/phpunit": "^8.5.8"
  2866. },
  2867. "suggest": {
  2868. "ext-ftp": "Allows you to use FTP server storage",
  2869. "ext-openssl": "Allows you to use FTPS server storage",
  2870. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2871. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2872. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2873. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2874. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2875. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2876. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2877. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2878. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2879. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2880. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2881. },
  2882. "type": "library",
  2883. "extra": {
  2884. "branch-alias": {
  2885. "dev-master": "1.1-dev"
  2886. }
  2887. },
  2888. "autoload": {
  2889. "psr-4": {
  2890. "League\\Flysystem\\": "src/"
  2891. }
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "Frank de Jonge",
  2900. "email": "info@frenky.net"
  2901. }
  2902. ],
  2903. "description": "Filesystem abstraction: Many filesystems, one API.",
  2904. "keywords": [
  2905. "Cloud Files",
  2906. "WebDAV",
  2907. "abstraction",
  2908. "aws",
  2909. "cloud",
  2910. "copy.com",
  2911. "dropbox",
  2912. "file systems",
  2913. "files",
  2914. "filesystem",
  2915. "filesystems",
  2916. "ftp",
  2917. "rackspace",
  2918. "remote",
  2919. "s3",
  2920. "sftp",
  2921. "storage"
  2922. ],
  2923. "support": {
  2924. "issues": "https://github.com/thephpleague/flysystem/issues",
  2925. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2926. },
  2927. "funding": [
  2928. {
  2929. "url": "https://offset.earth/frankdejonge",
  2930. "type": "other"
  2931. }
  2932. ],
  2933. "time": "2022-10-04T09:16:37+00:00"
  2934. },
  2935. {
  2936. "name": "league/mime-type-detection",
  2937. "version": "1.14.0",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2941. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
  2946. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "ext-fileinfo": "*",
  2951. "php": "^7.4 || ^8.0"
  2952. },
  2953. "require-dev": {
  2954. "friendsofphp/php-cs-fixer": "^3.2",
  2955. "phpstan/phpstan": "^0.12.68",
  2956. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2957. },
  2958. "type": "library",
  2959. "autoload": {
  2960. "psr-4": {
  2961. "League\\MimeTypeDetection\\": "src"
  2962. }
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Frank de Jonge",
  2971. "email": "info@frankdejonge.nl"
  2972. }
  2973. ],
  2974. "description": "Mime-type detection for Flysystem",
  2975. "support": {
  2976. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2977. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
  2978. },
  2979. "funding": [
  2980. {
  2981. "url": "https://github.com/frankdejonge",
  2982. "type": "github"
  2983. },
  2984. {
  2985. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2986. "type": "tidelift"
  2987. }
  2988. ],
  2989. "time": "2023-10-17T14:13:20+00:00"
  2990. },
  2991. {
  2992. "name": "league/oauth1-client",
  2993. "version": "v1.10.1",
  2994. "source": {
  2995. "type": "git",
  2996. "url": "https://github.com/thephpleague/oauth1-client.git",
  2997. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2998. },
  2999. "dist": {
  3000. "type": "zip",
  3001. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3002. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3003. "shasum": ""
  3004. },
  3005. "require": {
  3006. "ext-json": "*",
  3007. "ext-openssl": "*",
  3008. "guzzlehttp/guzzle": "^6.0|^7.0",
  3009. "guzzlehttp/psr7": "^1.7|^2.0",
  3010. "php": ">=7.1||>=8.0"
  3011. },
  3012. "require-dev": {
  3013. "ext-simplexml": "*",
  3014. "friendsofphp/php-cs-fixer": "^2.17",
  3015. "mockery/mockery": "^1.3.3",
  3016. "phpstan/phpstan": "^0.12.42",
  3017. "phpunit/phpunit": "^7.5||9.5"
  3018. },
  3019. "suggest": {
  3020. "ext-simplexml": "For decoding XML-based responses."
  3021. },
  3022. "type": "library",
  3023. "extra": {
  3024. "branch-alias": {
  3025. "dev-master": "1.0-dev",
  3026. "dev-develop": "2.0-dev"
  3027. }
  3028. },
  3029. "autoload": {
  3030. "psr-4": {
  3031. "League\\OAuth1\\Client\\": "src/"
  3032. }
  3033. },
  3034. "notification-url": "https://packagist.org/downloads/",
  3035. "license": [
  3036. "MIT"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Ben Corlett",
  3041. "email": "bencorlett@me.com",
  3042. "homepage": "http://www.webcomm.com.au",
  3043. "role": "Developer"
  3044. }
  3045. ],
  3046. "description": "OAuth 1.0 Client Library",
  3047. "keywords": [
  3048. "Authentication",
  3049. "SSO",
  3050. "authorization",
  3051. "bitbucket",
  3052. "identity",
  3053. "idp",
  3054. "oauth",
  3055. "oauth1",
  3056. "single sign on",
  3057. "trello",
  3058. "tumblr",
  3059. "twitter"
  3060. ],
  3061. "support": {
  3062. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3063. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3064. },
  3065. "time": "2022-04-15T14:02:14+00:00"
  3066. },
  3067. {
  3068. "name": "lizhichao/one-sm",
  3069. "version": "1.10",
  3070. "source": {
  3071. "type": "git",
  3072. "url": "https://github.com/lizhichao/sm.git",
  3073. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  3074. },
  3075. "dist": {
  3076. "type": "zip",
  3077. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  3078. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  3079. "shasum": ""
  3080. },
  3081. "require": {
  3082. "php": ">=5.6"
  3083. },
  3084. "type": "library",
  3085. "autoload": {
  3086. "psr-4": {
  3087. "OneSm\\": "src/"
  3088. }
  3089. },
  3090. "notification-url": "https://packagist.org/downloads/",
  3091. "license": [
  3092. "Apache-2.0"
  3093. ],
  3094. "authors": [
  3095. {
  3096. "name": "tanszhe",
  3097. "email": "1018595261@qq.com"
  3098. }
  3099. ],
  3100. "description": "国密sm3",
  3101. "keywords": [
  3102. "php",
  3103. "sm3"
  3104. ],
  3105. "support": {
  3106. "issues": "https://github.com/lizhichao/sm/issues",
  3107. "source": "https://github.com/lizhichao/sm/tree/1.10"
  3108. },
  3109. "funding": [
  3110. {
  3111. "url": "https://www.vicsdf.com/img/w.jpg",
  3112. "type": "custom"
  3113. },
  3114. {
  3115. "url": "https://www.vicsdf.com/img/z.jpg",
  3116. "type": "custom"
  3117. }
  3118. ],
  3119. "time": "2021-05-26T06:19:22+00:00"
  3120. },
  3121. {
  3122. "name": "maatwebsite/excel",
  3123. "version": "3.1.51",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3127. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  3132. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "composer/semver": "^3.3",
  3137. "ext-json": "*",
  3138. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0",
  3139. "php": "^7.0||^8.0",
  3140. "phpoffice/phpspreadsheet": "^1.18",
  3141. "psr/simple-cache": "^1.0||^2.0||^3.0"
  3142. },
  3143. "require-dev": {
  3144. "orchestra/testbench": "^6.0||^7.0||^8.0",
  3145. "predis/predis": "^1.1"
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "laravel": {
  3150. "providers": [
  3151. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3152. ],
  3153. "aliases": {
  3154. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3155. }
  3156. }
  3157. },
  3158. "autoload": {
  3159. "psr-4": {
  3160. "Maatwebsite\\Excel\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "authors": [
  3168. {
  3169. "name": "Patrick Brouwers",
  3170. "email": "patrick@spartner.nl"
  3171. }
  3172. ],
  3173. "description": "Supercharged Excel exports and imports in Laravel",
  3174. "keywords": [
  3175. "PHPExcel",
  3176. "batch",
  3177. "csv",
  3178. "excel",
  3179. "export",
  3180. "import",
  3181. "laravel",
  3182. "php",
  3183. "phpspreadsheet"
  3184. ],
  3185. "support": {
  3186. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3187. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.51"
  3188. },
  3189. "funding": [
  3190. {
  3191. "url": "https://laravel-excel.com/commercial-support",
  3192. "type": "custom"
  3193. },
  3194. {
  3195. "url": "https://github.com/patrickbrouwers",
  3196. "type": "github"
  3197. }
  3198. ],
  3199. "time": "2023-12-08T12:44:49+00:00"
  3200. },
  3201. {
  3202. "name": "maennchen/zipstream-php",
  3203. "version": "2.4.0",
  3204. "source": {
  3205. "type": "git",
  3206. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3207. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  3208. },
  3209. "dist": {
  3210. "type": "zip",
  3211. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3212. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3213. "shasum": ""
  3214. },
  3215. "require": {
  3216. "ext-mbstring": "*",
  3217. "myclabs/php-enum": "^1.5",
  3218. "php": "^8.0",
  3219. "psr/http-message": "^1.0"
  3220. },
  3221. "require-dev": {
  3222. "ext-zip": "*",
  3223. "friendsofphp/php-cs-fixer": "^3.9",
  3224. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3225. "mikey179/vfsstream": "^1.6",
  3226. "php-coveralls/php-coveralls": "^2.4",
  3227. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3228. "vimeo/psalm": "^5.0"
  3229. },
  3230. "type": "library",
  3231. "autoload": {
  3232. "psr-4": {
  3233. "ZipStream\\": "src/"
  3234. }
  3235. },
  3236. "notification-url": "https://packagist.org/downloads/",
  3237. "license": [
  3238. "MIT"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "Paul Duncan",
  3243. "email": "pabs@pablotron.org"
  3244. },
  3245. {
  3246. "name": "Jonatan Männchen",
  3247. "email": "jonatan@maennchen.ch"
  3248. },
  3249. {
  3250. "name": "Jesse Donat",
  3251. "email": "donatj@gmail.com"
  3252. },
  3253. {
  3254. "name": "András Kolesár",
  3255. "email": "kolesar@kolesar.hu"
  3256. }
  3257. ],
  3258. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3259. "keywords": [
  3260. "stream",
  3261. "zip"
  3262. ],
  3263. "support": {
  3264. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3265. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  3266. },
  3267. "funding": [
  3268. {
  3269. "url": "https://github.com/maennchen",
  3270. "type": "github"
  3271. },
  3272. {
  3273. "url": "https://opencollective.com/zipstream",
  3274. "type": "open_collective"
  3275. }
  3276. ],
  3277. "time": "2022-12-08T12:29:14+00:00"
  3278. },
  3279. {
  3280. "name": "markbaker/complex",
  3281. "version": "3.0.2",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3285. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3290. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3291. "shasum": ""
  3292. },
  3293. "require": {
  3294. "php": "^7.2 || ^8.0"
  3295. },
  3296. "require-dev": {
  3297. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3298. "phpcompatibility/php-compatibility": "^9.3",
  3299. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3300. "squizlabs/php_codesniffer": "^3.7"
  3301. },
  3302. "type": "library",
  3303. "autoload": {
  3304. "psr-4": {
  3305. "Complex\\": "classes/src/"
  3306. }
  3307. },
  3308. "notification-url": "https://packagist.org/downloads/",
  3309. "license": [
  3310. "MIT"
  3311. ],
  3312. "authors": [
  3313. {
  3314. "name": "Mark Baker",
  3315. "email": "mark@lange.demon.co.uk"
  3316. }
  3317. ],
  3318. "description": "PHP Class for working with complex numbers",
  3319. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3320. "keywords": [
  3321. "complex",
  3322. "mathematics"
  3323. ],
  3324. "support": {
  3325. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3326. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3327. },
  3328. "time": "2022-12-06T16:21:08+00:00"
  3329. },
  3330. {
  3331. "name": "markbaker/matrix",
  3332. "version": "3.0.1",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3336. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3341. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": "^7.1 || ^8.0"
  3346. },
  3347. "require-dev": {
  3348. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3349. "phpcompatibility/php-compatibility": "^9.3",
  3350. "phpdocumentor/phpdocumentor": "2.*",
  3351. "phploc/phploc": "^4.0",
  3352. "phpmd/phpmd": "2.*",
  3353. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3354. "sebastian/phpcpd": "^4.0",
  3355. "squizlabs/php_codesniffer": "^3.7"
  3356. },
  3357. "type": "library",
  3358. "autoload": {
  3359. "psr-4": {
  3360. "Matrix\\": "classes/src/"
  3361. }
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "MIT"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Mark Baker",
  3370. "email": "mark@demon-angel.eu"
  3371. }
  3372. ],
  3373. "description": "PHP Class for working with matrices",
  3374. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3375. "keywords": [
  3376. "mathematics",
  3377. "matrix",
  3378. "vector"
  3379. ],
  3380. "support": {
  3381. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3382. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3383. },
  3384. "time": "2022-12-02T22:17:43+00:00"
  3385. },
  3386. {
  3387. "name": "monolog/monolog",
  3388. "version": "2.9.2",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/Seldaek/monolog.git",
  3392. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3397. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3398. "shasum": ""
  3399. },
  3400. "require": {
  3401. "php": ">=7.2",
  3402. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3403. },
  3404. "provide": {
  3405. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3406. },
  3407. "require-dev": {
  3408. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3409. "doctrine/couchdb": "~1.0@dev",
  3410. "elasticsearch/elasticsearch": "^7 || ^8",
  3411. "ext-json": "*",
  3412. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3413. "guzzlehttp/guzzle": "^7.4",
  3414. "guzzlehttp/psr7": "^2.2",
  3415. "mongodb/mongodb": "^1.8",
  3416. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3417. "phpspec/prophecy": "^1.15",
  3418. "phpstan/phpstan": "^0.12.91",
  3419. "phpunit/phpunit": "^8.5.14",
  3420. "predis/predis": "^1.1 || ^2.0",
  3421. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3422. "ruflin/elastica": "^7",
  3423. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3424. "symfony/mailer": "^5.4 || ^6",
  3425. "symfony/mime": "^5.4 || ^6"
  3426. },
  3427. "suggest": {
  3428. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3429. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3430. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3431. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3432. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3433. "ext-mbstring": "Allow to work properly with unicode symbols",
  3434. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3435. "ext-openssl": "Required to send log messages using SSL",
  3436. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3437. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3438. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3439. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3440. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3441. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3442. },
  3443. "type": "library",
  3444. "extra": {
  3445. "branch-alias": {
  3446. "dev-main": "2.x-dev"
  3447. }
  3448. },
  3449. "autoload": {
  3450. "psr-4": {
  3451. "Monolog\\": "src/Monolog"
  3452. }
  3453. },
  3454. "notification-url": "https://packagist.org/downloads/",
  3455. "license": [
  3456. "MIT"
  3457. ],
  3458. "authors": [
  3459. {
  3460. "name": "Jordi Boggiano",
  3461. "email": "j.boggiano@seld.be",
  3462. "homepage": "https://seld.be"
  3463. }
  3464. ],
  3465. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3466. "homepage": "https://github.com/Seldaek/monolog",
  3467. "keywords": [
  3468. "log",
  3469. "logging",
  3470. "psr-3"
  3471. ],
  3472. "support": {
  3473. "issues": "https://github.com/Seldaek/monolog/issues",
  3474. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3475. },
  3476. "funding": [
  3477. {
  3478. "url": "https://github.com/Seldaek",
  3479. "type": "github"
  3480. },
  3481. {
  3482. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3483. "type": "tidelift"
  3484. }
  3485. ],
  3486. "time": "2023-10-27T15:25:26+00:00"
  3487. },
  3488. {
  3489. "name": "myclabs/php-enum",
  3490. "version": "1.8.4",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/myclabs/php-enum.git",
  3494. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3499. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3500. "shasum": ""
  3501. },
  3502. "require": {
  3503. "ext-json": "*",
  3504. "php": "^7.3 || ^8.0"
  3505. },
  3506. "require-dev": {
  3507. "phpunit/phpunit": "^9.5",
  3508. "squizlabs/php_codesniffer": "1.*",
  3509. "vimeo/psalm": "^4.6.2"
  3510. },
  3511. "type": "library",
  3512. "autoload": {
  3513. "psr-4": {
  3514. "MyCLabs\\Enum\\": "src/"
  3515. },
  3516. "classmap": [
  3517. "stubs/Stringable.php"
  3518. ]
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "MIT"
  3523. ],
  3524. "authors": [
  3525. {
  3526. "name": "PHP Enum contributors",
  3527. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3528. }
  3529. ],
  3530. "description": "PHP Enum implementation",
  3531. "homepage": "http://github.com/myclabs/php-enum",
  3532. "keywords": [
  3533. "enum"
  3534. ],
  3535. "support": {
  3536. "issues": "https://github.com/myclabs/php-enum/issues",
  3537. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3538. },
  3539. "funding": [
  3540. {
  3541. "url": "https://github.com/mnapoli",
  3542. "type": "github"
  3543. },
  3544. {
  3545. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3546. "type": "tidelift"
  3547. }
  3548. ],
  3549. "time": "2022-08-04T09:53:51+00:00"
  3550. },
  3551. {
  3552. "name": "nesbot/carbon",
  3553. "version": "2.72.1",
  3554. "source": {
  3555. "type": "git",
  3556. "url": "https://github.com/briannesbitt/Carbon.git",
  3557. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  3558. },
  3559. "dist": {
  3560. "type": "zip",
  3561. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3562. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3563. "shasum": ""
  3564. },
  3565. "require": {
  3566. "carbonphp/carbon-doctrine-types": "*",
  3567. "ext-json": "*",
  3568. "php": "^7.1.8 || ^8.0",
  3569. "psr/clock": "^1.0",
  3570. "symfony/polyfill-mbstring": "^1.0",
  3571. "symfony/polyfill-php80": "^1.16",
  3572. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3573. },
  3574. "provide": {
  3575. "psr/clock-implementation": "1.0"
  3576. },
  3577. "require-dev": {
  3578. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3579. "doctrine/orm": "^2.7 || ^3.0",
  3580. "friendsofphp/php-cs-fixer": "^3.0",
  3581. "kylekatarnls/multi-tester": "^2.0",
  3582. "ondrejmirtes/better-reflection": "*",
  3583. "phpmd/phpmd": "^2.9",
  3584. "phpstan/extension-installer": "^1.0",
  3585. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3586. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3587. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3588. "squizlabs/php_codesniffer": "^3.4"
  3589. },
  3590. "bin": [
  3591. "bin/carbon"
  3592. ],
  3593. "type": "library",
  3594. "extra": {
  3595. "branch-alias": {
  3596. "dev-3.x": "3.x-dev",
  3597. "dev-master": "2.x-dev"
  3598. },
  3599. "laravel": {
  3600. "providers": [
  3601. "Carbon\\Laravel\\ServiceProvider"
  3602. ]
  3603. },
  3604. "phpstan": {
  3605. "includes": [
  3606. "extension.neon"
  3607. ]
  3608. }
  3609. },
  3610. "autoload": {
  3611. "psr-4": {
  3612. "Carbon\\": "src/Carbon/"
  3613. }
  3614. },
  3615. "notification-url": "https://packagist.org/downloads/",
  3616. "license": [
  3617. "MIT"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "Brian Nesbitt",
  3622. "email": "brian@nesbot.com",
  3623. "homepage": "https://markido.com"
  3624. },
  3625. {
  3626. "name": "kylekatarnls",
  3627. "homepage": "https://github.com/kylekatarnls"
  3628. }
  3629. ],
  3630. "description": "An API extension for DateTime that supports 281 different languages.",
  3631. "homepage": "https://carbon.nesbot.com",
  3632. "keywords": [
  3633. "date",
  3634. "datetime",
  3635. "time"
  3636. ],
  3637. "support": {
  3638. "docs": "https://carbon.nesbot.com/docs",
  3639. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3640. "source": "https://github.com/briannesbitt/Carbon"
  3641. },
  3642. "funding": [
  3643. {
  3644. "url": "https://github.com/sponsors/kylekatarnls",
  3645. "type": "github"
  3646. },
  3647. {
  3648. "url": "https://opencollective.com/Carbon#sponsor",
  3649. "type": "opencollective"
  3650. },
  3651. {
  3652. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3653. "type": "tidelift"
  3654. }
  3655. ],
  3656. "time": "2023-12-08T23:47:49+00:00"
  3657. },
  3658. {
  3659. "name": "nette/schema",
  3660. "version": "v1.2.5",
  3661. "source": {
  3662. "type": "git",
  3663. "url": "https://github.com/nette/schema.git",
  3664. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3665. },
  3666. "dist": {
  3667. "type": "zip",
  3668. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3669. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3670. "shasum": ""
  3671. },
  3672. "require": {
  3673. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3674. "php": "7.1 - 8.3"
  3675. },
  3676. "require-dev": {
  3677. "nette/tester": "^2.3 || ^2.4",
  3678. "phpstan/phpstan-nette": "^1.0",
  3679. "tracy/tracy": "^2.7"
  3680. },
  3681. "type": "library",
  3682. "extra": {
  3683. "branch-alias": {
  3684. "dev-master": "1.2-dev"
  3685. }
  3686. },
  3687. "autoload": {
  3688. "classmap": [
  3689. "src/"
  3690. ]
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "BSD-3-Clause",
  3695. "GPL-2.0-only",
  3696. "GPL-3.0-only"
  3697. ],
  3698. "authors": [
  3699. {
  3700. "name": "David Grudl",
  3701. "homepage": "https://davidgrudl.com"
  3702. },
  3703. {
  3704. "name": "Nette Community",
  3705. "homepage": "https://nette.org/contributors"
  3706. }
  3707. ],
  3708. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3709. "homepage": "https://nette.org",
  3710. "keywords": [
  3711. "config",
  3712. "nette"
  3713. ],
  3714. "support": {
  3715. "issues": "https://github.com/nette/schema/issues",
  3716. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3717. },
  3718. "time": "2023-10-05T20:37:59+00:00"
  3719. },
  3720. {
  3721. "name": "nette/utils",
  3722. "version": "v4.0.3",
  3723. "source": {
  3724. "type": "git",
  3725. "url": "https://github.com/nette/utils.git",
  3726. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  3727. },
  3728. "dist": {
  3729. "type": "zip",
  3730. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  3731. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  3732. "shasum": ""
  3733. },
  3734. "require": {
  3735. "php": ">=8.0 <8.4"
  3736. },
  3737. "conflict": {
  3738. "nette/finder": "<3",
  3739. "nette/schema": "<1.2.2"
  3740. },
  3741. "require-dev": {
  3742. "jetbrains/phpstorm-attributes": "dev-master",
  3743. "nette/tester": "^2.5",
  3744. "phpstan/phpstan": "^1.0",
  3745. "tracy/tracy": "^2.9"
  3746. },
  3747. "suggest": {
  3748. "ext-gd": "to use Image",
  3749. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3750. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3751. "ext-json": "to use Nette\\Utils\\Json",
  3752. "ext-mbstring": "to use Strings::lower() etc...",
  3753. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3754. },
  3755. "type": "library",
  3756. "extra": {
  3757. "branch-alias": {
  3758. "dev-master": "4.0-dev"
  3759. }
  3760. },
  3761. "autoload": {
  3762. "classmap": [
  3763. "src/"
  3764. ]
  3765. },
  3766. "notification-url": "https://packagist.org/downloads/",
  3767. "license": [
  3768. "BSD-3-Clause",
  3769. "GPL-2.0-only",
  3770. "GPL-3.0-only"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "David Grudl",
  3775. "homepage": "https://davidgrudl.com"
  3776. },
  3777. {
  3778. "name": "Nette Community",
  3779. "homepage": "https://nette.org/contributors"
  3780. }
  3781. ],
  3782. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3783. "homepage": "https://nette.org",
  3784. "keywords": [
  3785. "array",
  3786. "core",
  3787. "datetime",
  3788. "images",
  3789. "json",
  3790. "nette",
  3791. "paginator",
  3792. "password",
  3793. "slugify",
  3794. "string",
  3795. "unicode",
  3796. "utf-8",
  3797. "utility",
  3798. "validation"
  3799. ],
  3800. "support": {
  3801. "issues": "https://github.com/nette/utils/issues",
  3802. "source": "https://github.com/nette/utils/tree/v4.0.3"
  3803. },
  3804. "time": "2023-10-29T21:02:13+00:00"
  3805. },
  3806. {
  3807. "name": "nikic/php-parser",
  3808. "version": "v4.18.0",
  3809. "source": {
  3810. "type": "git",
  3811. "url": "https://github.com/nikic/PHP-Parser.git",
  3812. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  3813. },
  3814. "dist": {
  3815. "type": "zip",
  3816. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3817. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3818. "shasum": ""
  3819. },
  3820. "require": {
  3821. "ext-tokenizer": "*",
  3822. "php": ">=7.0"
  3823. },
  3824. "require-dev": {
  3825. "ircmaxell/php-yacc": "^0.0.7",
  3826. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3827. },
  3828. "bin": [
  3829. "bin/php-parse"
  3830. ],
  3831. "type": "library",
  3832. "extra": {
  3833. "branch-alias": {
  3834. "dev-master": "4.9-dev"
  3835. }
  3836. },
  3837. "autoload": {
  3838. "psr-4": {
  3839. "PhpParser\\": "lib/PhpParser"
  3840. }
  3841. },
  3842. "notification-url": "https://packagist.org/downloads/",
  3843. "license": [
  3844. "BSD-3-Clause"
  3845. ],
  3846. "authors": [
  3847. {
  3848. "name": "Nikita Popov"
  3849. }
  3850. ],
  3851. "description": "A PHP parser written in PHP",
  3852. "keywords": [
  3853. "parser",
  3854. "php"
  3855. ],
  3856. "support": {
  3857. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3858. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  3859. },
  3860. "time": "2023-12-10T21:03:43+00:00"
  3861. },
  3862. {
  3863. "name": "opis/closure",
  3864. "version": "3.6.3",
  3865. "source": {
  3866. "type": "git",
  3867. "url": "https://github.com/opis/closure.git",
  3868. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3869. },
  3870. "dist": {
  3871. "type": "zip",
  3872. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3873. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3874. "shasum": ""
  3875. },
  3876. "require": {
  3877. "php": "^5.4 || ^7.0 || ^8.0"
  3878. },
  3879. "require-dev": {
  3880. "jeremeamia/superclosure": "^2.0",
  3881. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-master": "3.6.x-dev"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "files": [
  3891. "functions.php"
  3892. ],
  3893. "psr-4": {
  3894. "Opis\\Closure\\": "src/"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Marius Sarca",
  3904. "email": "marius.sarca@gmail.com"
  3905. },
  3906. {
  3907. "name": "Sorin Sarca",
  3908. "email": "sarca_sorin@hotmail.com"
  3909. }
  3910. ],
  3911. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3912. "homepage": "https://opis.io/closure",
  3913. "keywords": [
  3914. "anonymous functions",
  3915. "closure",
  3916. "function",
  3917. "serializable",
  3918. "serialization",
  3919. "serialize"
  3920. ],
  3921. "support": {
  3922. "issues": "https://github.com/opis/closure/issues",
  3923. "source": "https://github.com/opis/closure/tree/3.6.3"
  3924. },
  3925. "time": "2022-01-27T09:35:39+00:00"
  3926. },
  3927. {
  3928. "name": "phpoffice/phpspreadsheet",
  3929. "version": "1.29.0",
  3930. "source": {
  3931. "type": "git",
  3932. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3933. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3934. },
  3935. "dist": {
  3936. "type": "zip",
  3937. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3938. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3939. "shasum": ""
  3940. },
  3941. "require": {
  3942. "ext-ctype": "*",
  3943. "ext-dom": "*",
  3944. "ext-fileinfo": "*",
  3945. "ext-gd": "*",
  3946. "ext-iconv": "*",
  3947. "ext-libxml": "*",
  3948. "ext-mbstring": "*",
  3949. "ext-simplexml": "*",
  3950. "ext-xml": "*",
  3951. "ext-xmlreader": "*",
  3952. "ext-xmlwriter": "*",
  3953. "ext-zip": "*",
  3954. "ext-zlib": "*",
  3955. "ezyang/htmlpurifier": "^4.15",
  3956. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3957. "markbaker/complex": "^3.0",
  3958. "markbaker/matrix": "^3.0",
  3959. "php": "^7.4 || ^8.0",
  3960. "psr/http-client": "^1.0",
  3961. "psr/http-factory": "^1.0",
  3962. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3963. },
  3964. "require-dev": {
  3965. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3966. "dompdf/dompdf": "^1.0 || ^2.0",
  3967. "friendsofphp/php-cs-fixer": "^3.2",
  3968. "mitoteam/jpgraph": "^10.3",
  3969. "mpdf/mpdf": "^8.1.1",
  3970. "phpcompatibility/php-compatibility": "^9.3",
  3971. "phpstan/phpstan": "^1.1",
  3972. "phpstan/phpstan-phpunit": "^1.0",
  3973. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  3974. "squizlabs/php_codesniffer": "^3.7",
  3975. "tecnickcom/tcpdf": "^6.5"
  3976. },
  3977. "suggest": {
  3978. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3979. "ext-intl": "PHP Internationalization Functions",
  3980. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3981. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3982. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3983. },
  3984. "type": "library",
  3985. "autoload": {
  3986. "psr-4": {
  3987. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3988. }
  3989. },
  3990. "notification-url": "https://packagist.org/downloads/",
  3991. "license": [
  3992. "MIT"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "Maarten Balliauw",
  3997. "homepage": "https://blog.maartenballiauw.be"
  3998. },
  3999. {
  4000. "name": "Mark Baker",
  4001. "homepage": "https://markbakeruk.net"
  4002. },
  4003. {
  4004. "name": "Franck Lefevre",
  4005. "homepage": "https://rootslabs.net"
  4006. },
  4007. {
  4008. "name": "Erik Tilt"
  4009. },
  4010. {
  4011. "name": "Adrien Crivelli"
  4012. }
  4013. ],
  4014. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4015. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4016. "keywords": [
  4017. "OpenXML",
  4018. "excel",
  4019. "gnumeric",
  4020. "ods",
  4021. "php",
  4022. "spreadsheet",
  4023. "xls",
  4024. "xlsx"
  4025. ],
  4026. "support": {
  4027. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4028. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  4029. },
  4030. "time": "2023-06-14T22:48:31+00:00"
  4031. },
  4032. {
  4033. "name": "phpoption/phpoption",
  4034. "version": "1.9.2",
  4035. "source": {
  4036. "type": "git",
  4037. "url": "https://github.com/schmittjoh/php-option.git",
  4038. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4039. },
  4040. "dist": {
  4041. "type": "zip",
  4042. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4043. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4044. "shasum": ""
  4045. },
  4046. "require": {
  4047. "php": "^7.2.5 || ^8.0"
  4048. },
  4049. "require-dev": {
  4050. "bamarni/composer-bin-plugin": "^1.8.2",
  4051. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4052. },
  4053. "type": "library",
  4054. "extra": {
  4055. "bamarni-bin": {
  4056. "bin-links": true,
  4057. "forward-command": true
  4058. },
  4059. "branch-alias": {
  4060. "dev-master": "1.9-dev"
  4061. }
  4062. },
  4063. "autoload": {
  4064. "psr-4": {
  4065. "PhpOption\\": "src/PhpOption/"
  4066. }
  4067. },
  4068. "notification-url": "https://packagist.org/downloads/",
  4069. "license": [
  4070. "Apache-2.0"
  4071. ],
  4072. "authors": [
  4073. {
  4074. "name": "Johannes M. Schmitt",
  4075. "email": "schmittjoh@gmail.com",
  4076. "homepage": "https://github.com/schmittjoh"
  4077. },
  4078. {
  4079. "name": "Graham Campbell",
  4080. "email": "hello@gjcampbell.co.uk",
  4081. "homepage": "https://github.com/GrahamCampbell"
  4082. }
  4083. ],
  4084. "description": "Option Type for PHP",
  4085. "keywords": [
  4086. "language",
  4087. "option",
  4088. "php",
  4089. "type"
  4090. ],
  4091. "support": {
  4092. "issues": "https://github.com/schmittjoh/php-option/issues",
  4093. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4094. },
  4095. "funding": [
  4096. {
  4097. "url": "https://github.com/GrahamCampbell",
  4098. "type": "github"
  4099. },
  4100. {
  4101. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4102. "type": "tidelift"
  4103. }
  4104. ],
  4105. "time": "2023-11-12T21:59:55+00:00"
  4106. },
  4107. {
  4108. "name": "psr/cache",
  4109. "version": "2.0.0",
  4110. "source": {
  4111. "type": "git",
  4112. "url": "https://github.com/php-fig/cache.git",
  4113. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  4114. },
  4115. "dist": {
  4116. "type": "zip",
  4117. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4118. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4119. "shasum": ""
  4120. },
  4121. "require": {
  4122. "php": ">=8.0.0"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "1.0.x-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Psr\\Cache\\": "src/"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "PHP-FIG",
  4142. "homepage": "https://www.php-fig.org/"
  4143. }
  4144. ],
  4145. "description": "Common interface for caching libraries",
  4146. "keywords": [
  4147. "cache",
  4148. "psr",
  4149. "psr-6"
  4150. ],
  4151. "support": {
  4152. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  4153. },
  4154. "time": "2021-02-03T23:23:37+00:00"
  4155. },
  4156. {
  4157. "name": "psr/clock",
  4158. "version": "1.0.0",
  4159. "source": {
  4160. "type": "git",
  4161. "url": "https://github.com/php-fig/clock.git",
  4162. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4163. },
  4164. "dist": {
  4165. "type": "zip",
  4166. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4167. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4168. "shasum": ""
  4169. },
  4170. "require": {
  4171. "php": "^7.0 || ^8.0"
  4172. },
  4173. "type": "library",
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Psr\\Clock\\": "src/"
  4177. }
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "PHP-FIG",
  4186. "homepage": "https://www.php-fig.org/"
  4187. }
  4188. ],
  4189. "description": "Common interface for reading the clock.",
  4190. "homepage": "https://github.com/php-fig/clock",
  4191. "keywords": [
  4192. "clock",
  4193. "now",
  4194. "psr",
  4195. "psr-20",
  4196. "time"
  4197. ],
  4198. "support": {
  4199. "issues": "https://github.com/php-fig/clock/issues",
  4200. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4201. },
  4202. "time": "2022-11-25T14:36:26+00:00"
  4203. },
  4204. {
  4205. "name": "psr/container",
  4206. "version": "1.1.2",
  4207. "source": {
  4208. "type": "git",
  4209. "url": "https://github.com/php-fig/container.git",
  4210. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4211. },
  4212. "dist": {
  4213. "type": "zip",
  4214. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4215. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4216. "shasum": ""
  4217. },
  4218. "require": {
  4219. "php": ">=7.4.0"
  4220. },
  4221. "type": "library",
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Psr\\Container\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "PHP-FIG",
  4234. "homepage": "https://www.php-fig.org/"
  4235. }
  4236. ],
  4237. "description": "Common Container Interface (PHP FIG PSR-11)",
  4238. "homepage": "https://github.com/php-fig/container",
  4239. "keywords": [
  4240. "PSR-11",
  4241. "container",
  4242. "container-interface",
  4243. "container-interop",
  4244. "psr"
  4245. ],
  4246. "support": {
  4247. "issues": "https://github.com/php-fig/container/issues",
  4248. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4249. },
  4250. "time": "2021-11-05T16:50:12+00:00"
  4251. },
  4252. {
  4253. "name": "psr/event-dispatcher",
  4254. "version": "1.0.0",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/php-fig/event-dispatcher.git",
  4258. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4263. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4264. "shasum": ""
  4265. },
  4266. "require": {
  4267. "php": ">=7.2.0"
  4268. },
  4269. "type": "library",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-master": "1.0.x-dev"
  4273. }
  4274. },
  4275. "autoload": {
  4276. "psr-4": {
  4277. "Psr\\EventDispatcher\\": "src/"
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "PHP-FIG",
  4287. "homepage": "http://www.php-fig.org/"
  4288. }
  4289. ],
  4290. "description": "Standard interfaces for event handling.",
  4291. "keywords": [
  4292. "events",
  4293. "psr",
  4294. "psr-14"
  4295. ],
  4296. "support": {
  4297. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4298. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4299. },
  4300. "time": "2019-01-08T18:20:26+00:00"
  4301. },
  4302. {
  4303. "name": "psr/http-client",
  4304. "version": "1.0.3",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://github.com/php-fig/http-client.git",
  4308. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4309. },
  4310. "dist": {
  4311. "type": "zip",
  4312. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4313. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4314. "shasum": ""
  4315. },
  4316. "require": {
  4317. "php": "^7.0 || ^8.0",
  4318. "psr/http-message": "^1.0 || ^2.0"
  4319. },
  4320. "type": "library",
  4321. "extra": {
  4322. "branch-alias": {
  4323. "dev-master": "1.0.x-dev"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "psr-4": {
  4328. "Psr\\Http\\Client\\": "src/"
  4329. }
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "PHP-FIG",
  4338. "homepage": "https://www.php-fig.org/"
  4339. }
  4340. ],
  4341. "description": "Common interface for HTTP clients",
  4342. "homepage": "https://github.com/php-fig/http-client",
  4343. "keywords": [
  4344. "http",
  4345. "http-client",
  4346. "psr",
  4347. "psr-18"
  4348. ],
  4349. "support": {
  4350. "source": "https://github.com/php-fig/http-client"
  4351. },
  4352. "time": "2023-09-23T14:17:50+00:00"
  4353. },
  4354. {
  4355. "name": "psr/http-factory",
  4356. "version": "1.0.2",
  4357. "source": {
  4358. "type": "git",
  4359. "url": "https://github.com/php-fig/http-factory.git",
  4360. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4361. },
  4362. "dist": {
  4363. "type": "zip",
  4364. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4365. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4366. "shasum": ""
  4367. },
  4368. "require": {
  4369. "php": ">=7.0.0",
  4370. "psr/http-message": "^1.0 || ^2.0"
  4371. },
  4372. "type": "library",
  4373. "extra": {
  4374. "branch-alias": {
  4375. "dev-master": "1.0.x-dev"
  4376. }
  4377. },
  4378. "autoload": {
  4379. "psr-4": {
  4380. "Psr\\Http\\Message\\": "src/"
  4381. }
  4382. },
  4383. "notification-url": "https://packagist.org/downloads/",
  4384. "license": [
  4385. "MIT"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "PHP-FIG",
  4390. "homepage": "https://www.php-fig.org/"
  4391. }
  4392. ],
  4393. "description": "Common interfaces for PSR-7 HTTP message factories",
  4394. "keywords": [
  4395. "factory",
  4396. "http",
  4397. "message",
  4398. "psr",
  4399. "psr-17",
  4400. "psr-7",
  4401. "request",
  4402. "response"
  4403. ],
  4404. "support": {
  4405. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4406. },
  4407. "time": "2023-04-10T20:10:41+00:00"
  4408. },
  4409. {
  4410. "name": "psr/http-message",
  4411. "version": "1.1",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/php-fig/http-message.git",
  4415. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4420. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "php": "^7.2 || ^8.0"
  4425. },
  4426. "type": "library",
  4427. "extra": {
  4428. "branch-alias": {
  4429. "dev-master": "1.1.x-dev"
  4430. }
  4431. },
  4432. "autoload": {
  4433. "psr-4": {
  4434. "Psr\\Http\\Message\\": "src/"
  4435. }
  4436. },
  4437. "notification-url": "https://packagist.org/downloads/",
  4438. "license": [
  4439. "MIT"
  4440. ],
  4441. "authors": [
  4442. {
  4443. "name": "PHP-FIG",
  4444. "homepage": "http://www.php-fig.org/"
  4445. }
  4446. ],
  4447. "description": "Common interface for HTTP messages",
  4448. "homepage": "https://github.com/php-fig/http-message",
  4449. "keywords": [
  4450. "http",
  4451. "http-message",
  4452. "psr",
  4453. "psr-7",
  4454. "request",
  4455. "response"
  4456. ],
  4457. "support": {
  4458. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4459. },
  4460. "time": "2023-04-04T09:50:52+00:00"
  4461. },
  4462. {
  4463. "name": "psr/log",
  4464. "version": "2.0.0",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/php-fig/log.git",
  4468. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4473. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "php": ">=8.0.0"
  4478. },
  4479. "type": "library",
  4480. "extra": {
  4481. "branch-alias": {
  4482. "dev-master": "2.0.x-dev"
  4483. }
  4484. },
  4485. "autoload": {
  4486. "psr-4": {
  4487. "Psr\\Log\\": "src"
  4488. }
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "PHP-FIG",
  4497. "homepage": "https://www.php-fig.org/"
  4498. }
  4499. ],
  4500. "description": "Common interface for logging libraries",
  4501. "homepage": "https://github.com/php-fig/log",
  4502. "keywords": [
  4503. "log",
  4504. "psr",
  4505. "psr-3"
  4506. ],
  4507. "support": {
  4508. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4509. },
  4510. "time": "2021-07-14T16:41:46+00:00"
  4511. },
  4512. {
  4513. "name": "psr/simple-cache",
  4514. "version": "1.0.1",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://github.com/php-fig/simple-cache.git",
  4518. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4523. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4524. "shasum": ""
  4525. },
  4526. "require": {
  4527. "php": ">=5.3.0"
  4528. },
  4529. "type": "library",
  4530. "extra": {
  4531. "branch-alias": {
  4532. "dev-master": "1.0.x-dev"
  4533. }
  4534. },
  4535. "autoload": {
  4536. "psr-4": {
  4537. "Psr\\SimpleCache\\": "src/"
  4538. }
  4539. },
  4540. "notification-url": "https://packagist.org/downloads/",
  4541. "license": [
  4542. "MIT"
  4543. ],
  4544. "authors": [
  4545. {
  4546. "name": "PHP-FIG",
  4547. "homepage": "http://www.php-fig.org/"
  4548. }
  4549. ],
  4550. "description": "Common interfaces for simple caching",
  4551. "keywords": [
  4552. "cache",
  4553. "caching",
  4554. "psr",
  4555. "psr-16",
  4556. "simple-cache"
  4557. ],
  4558. "support": {
  4559. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4560. },
  4561. "time": "2017-10-23T01:57:42+00:00"
  4562. },
  4563. {
  4564. "name": "psy/psysh",
  4565. "version": "v0.11.22",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://github.com/bobthecow/psysh.git",
  4569. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  4574. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  4575. "shasum": ""
  4576. },
  4577. "require": {
  4578. "ext-json": "*",
  4579. "ext-tokenizer": "*",
  4580. "nikic/php-parser": "^4.0 || ^3.1",
  4581. "php": "^8.0 || ^7.0.8",
  4582. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4583. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4584. },
  4585. "conflict": {
  4586. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4587. },
  4588. "require-dev": {
  4589. "bamarni/composer-bin-plugin": "^1.2"
  4590. },
  4591. "suggest": {
  4592. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4593. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4594. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4595. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4596. },
  4597. "bin": [
  4598. "bin/psysh"
  4599. ],
  4600. "type": "library",
  4601. "extra": {
  4602. "branch-alias": {
  4603. "dev-0.11": "0.11.x-dev"
  4604. },
  4605. "bamarni-bin": {
  4606. "bin-links": false,
  4607. "forward-command": false
  4608. }
  4609. },
  4610. "autoload": {
  4611. "files": [
  4612. "src/functions.php"
  4613. ],
  4614. "psr-4": {
  4615. "Psy\\": "src/"
  4616. }
  4617. },
  4618. "notification-url": "https://packagist.org/downloads/",
  4619. "license": [
  4620. "MIT"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "Justin Hileman",
  4625. "email": "justin@justinhileman.info",
  4626. "homepage": "http://justinhileman.com"
  4627. }
  4628. ],
  4629. "description": "An interactive shell for modern PHP.",
  4630. "homepage": "http://psysh.org",
  4631. "keywords": [
  4632. "REPL",
  4633. "console",
  4634. "interactive",
  4635. "shell"
  4636. ],
  4637. "support": {
  4638. "issues": "https://github.com/bobthecow/psysh/issues",
  4639. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  4640. },
  4641. "time": "2023-10-14T21:56:36+00:00"
  4642. },
  4643. {
  4644. "name": "ralouphie/getallheaders",
  4645. "version": "3.0.3",
  4646. "source": {
  4647. "type": "git",
  4648. "url": "https://github.com/ralouphie/getallheaders.git",
  4649. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4650. },
  4651. "dist": {
  4652. "type": "zip",
  4653. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4654. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4655. "shasum": ""
  4656. },
  4657. "require": {
  4658. "php": ">=5.6"
  4659. },
  4660. "require-dev": {
  4661. "php-coveralls/php-coveralls": "^2.1",
  4662. "phpunit/phpunit": "^5 || ^6.5"
  4663. },
  4664. "type": "library",
  4665. "autoload": {
  4666. "files": [
  4667. "src/getallheaders.php"
  4668. ]
  4669. },
  4670. "notification-url": "https://packagist.org/downloads/",
  4671. "license": [
  4672. "MIT"
  4673. ],
  4674. "authors": [
  4675. {
  4676. "name": "Ralph Khattar",
  4677. "email": "ralph.khattar@gmail.com"
  4678. }
  4679. ],
  4680. "description": "A polyfill for getallheaders.",
  4681. "support": {
  4682. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4683. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4684. },
  4685. "time": "2019-03-08T08:55:37+00:00"
  4686. },
  4687. {
  4688. "name": "ramsey/collection",
  4689. "version": "1.3.0",
  4690. "source": {
  4691. "type": "git",
  4692. "url": "https://github.com/ramsey/collection.git",
  4693. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4694. },
  4695. "dist": {
  4696. "type": "zip",
  4697. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4698. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4699. "shasum": ""
  4700. },
  4701. "require": {
  4702. "php": "^7.4 || ^8.0",
  4703. "symfony/polyfill-php81": "^1.23"
  4704. },
  4705. "require-dev": {
  4706. "captainhook/plugin-composer": "^5.3",
  4707. "ergebnis/composer-normalize": "^2.28.3",
  4708. "fakerphp/faker": "^1.21",
  4709. "hamcrest/hamcrest-php": "^2.0",
  4710. "jangregor/phpstan-prophecy": "^1.0",
  4711. "mockery/mockery": "^1.5",
  4712. "php-parallel-lint/php-console-highlighter": "^1.0",
  4713. "php-parallel-lint/php-parallel-lint": "^1.3",
  4714. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4715. "phpspec/prophecy-phpunit": "^2.0",
  4716. "phpstan/extension-installer": "^1.2",
  4717. "phpstan/phpstan": "^1.9",
  4718. "phpstan/phpstan-mockery": "^1.1",
  4719. "phpstan/phpstan-phpunit": "^1.3",
  4720. "phpunit/phpunit": "^9.5",
  4721. "psalm/plugin-mockery": "^1.1",
  4722. "psalm/plugin-phpunit": "^0.18.4",
  4723. "ramsey/coding-standard": "^2.0.3",
  4724. "ramsey/conventional-commits": "^1.3",
  4725. "vimeo/psalm": "^5.4"
  4726. },
  4727. "type": "library",
  4728. "extra": {
  4729. "captainhook": {
  4730. "force-install": true
  4731. },
  4732. "ramsey/conventional-commits": {
  4733. "configFile": "conventional-commits.json"
  4734. }
  4735. },
  4736. "autoload": {
  4737. "psr-4": {
  4738. "Ramsey\\Collection\\": "src/"
  4739. }
  4740. },
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "MIT"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "Ben Ramsey",
  4748. "email": "ben@benramsey.com",
  4749. "homepage": "https://benramsey.com"
  4750. }
  4751. ],
  4752. "description": "A PHP library for representing and manipulating collections.",
  4753. "keywords": [
  4754. "array",
  4755. "collection",
  4756. "hash",
  4757. "map",
  4758. "queue",
  4759. "set"
  4760. ],
  4761. "support": {
  4762. "issues": "https://github.com/ramsey/collection/issues",
  4763. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4764. },
  4765. "funding": [
  4766. {
  4767. "url": "https://github.com/ramsey",
  4768. "type": "github"
  4769. },
  4770. {
  4771. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4772. "type": "tidelift"
  4773. }
  4774. ],
  4775. "time": "2022-12-27T19:12:24+00:00"
  4776. },
  4777. {
  4778. "name": "ramsey/uuid",
  4779. "version": "4.7.5",
  4780. "source": {
  4781. "type": "git",
  4782. "url": "https://github.com/ramsey/uuid.git",
  4783. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  4784. },
  4785. "dist": {
  4786. "type": "zip",
  4787. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4788. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4789. "shasum": ""
  4790. },
  4791. "require": {
  4792. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4793. "ext-json": "*",
  4794. "php": "^8.0",
  4795. "ramsey/collection": "^1.2 || ^2.0"
  4796. },
  4797. "replace": {
  4798. "rhumsaa/uuid": "self.version"
  4799. },
  4800. "require-dev": {
  4801. "captainhook/captainhook": "^5.10",
  4802. "captainhook/plugin-composer": "^5.3",
  4803. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4804. "doctrine/annotations": "^1.8",
  4805. "ergebnis/composer-normalize": "^2.15",
  4806. "mockery/mockery": "^1.3",
  4807. "paragonie/random-lib": "^2",
  4808. "php-mock/php-mock": "^2.2",
  4809. "php-mock/php-mock-mockery": "^1.3",
  4810. "php-parallel-lint/php-parallel-lint": "^1.1",
  4811. "phpbench/phpbench": "^1.0",
  4812. "phpstan/extension-installer": "^1.1",
  4813. "phpstan/phpstan": "^1.8",
  4814. "phpstan/phpstan-mockery": "^1.1",
  4815. "phpstan/phpstan-phpunit": "^1.1",
  4816. "phpunit/phpunit": "^8.5 || ^9",
  4817. "ramsey/composer-repl": "^1.4",
  4818. "slevomat/coding-standard": "^8.4",
  4819. "squizlabs/php_codesniffer": "^3.5",
  4820. "vimeo/psalm": "^4.9"
  4821. },
  4822. "suggest": {
  4823. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4824. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4825. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4826. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4827. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4828. },
  4829. "type": "library",
  4830. "extra": {
  4831. "captainhook": {
  4832. "force-install": true
  4833. }
  4834. },
  4835. "autoload": {
  4836. "files": [
  4837. "src/functions.php"
  4838. ],
  4839. "psr-4": {
  4840. "Ramsey\\Uuid\\": "src/"
  4841. }
  4842. },
  4843. "notification-url": "https://packagist.org/downloads/",
  4844. "license": [
  4845. "MIT"
  4846. ],
  4847. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4848. "keywords": [
  4849. "guid",
  4850. "identifier",
  4851. "uuid"
  4852. ],
  4853. "support": {
  4854. "issues": "https://github.com/ramsey/uuid/issues",
  4855. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  4856. },
  4857. "funding": [
  4858. {
  4859. "url": "https://github.com/ramsey",
  4860. "type": "github"
  4861. },
  4862. {
  4863. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4864. "type": "tidelift"
  4865. }
  4866. ],
  4867. "time": "2023-11-08T05:53:05+00:00"
  4868. },
  4869. {
  4870. "name": "ratchet/rfc6455",
  4871. "version": "v0.3.1",
  4872. "source": {
  4873. "type": "git",
  4874. "url": "https://github.com/ratchetphp/RFC6455.git",
  4875. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4876. },
  4877. "dist": {
  4878. "type": "zip",
  4879. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4880. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4881. "shasum": ""
  4882. },
  4883. "require": {
  4884. "guzzlehttp/psr7": "^2 || ^1.7",
  4885. "php": ">=5.4.2"
  4886. },
  4887. "require-dev": {
  4888. "phpunit/phpunit": "^5.7",
  4889. "react/socket": "^1.3"
  4890. },
  4891. "type": "library",
  4892. "autoload": {
  4893. "psr-4": {
  4894. "Ratchet\\RFC6455\\": "src"
  4895. }
  4896. },
  4897. "notification-url": "https://packagist.org/downloads/",
  4898. "license": [
  4899. "MIT"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "Chris Boden",
  4904. "email": "cboden@gmail.com",
  4905. "role": "Developer"
  4906. },
  4907. {
  4908. "name": "Matt Bonneau",
  4909. "role": "Developer"
  4910. }
  4911. ],
  4912. "description": "RFC6455 WebSocket protocol handler",
  4913. "homepage": "http://socketo.me",
  4914. "keywords": [
  4915. "WebSockets",
  4916. "rfc6455",
  4917. "websocket"
  4918. ],
  4919. "support": {
  4920. "chat": "https://gitter.im/reactphp/reactphp",
  4921. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4922. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4923. },
  4924. "time": "2021-12-09T23:20:49+00:00"
  4925. },
  4926. {
  4927. "name": "react/cache",
  4928. "version": "v1.2.0",
  4929. "source": {
  4930. "type": "git",
  4931. "url": "https://github.com/reactphp/cache.git",
  4932. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4933. },
  4934. "dist": {
  4935. "type": "zip",
  4936. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4937. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4938. "shasum": ""
  4939. },
  4940. "require": {
  4941. "php": ">=5.3.0",
  4942. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4943. },
  4944. "require-dev": {
  4945. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4946. },
  4947. "type": "library",
  4948. "autoload": {
  4949. "psr-4": {
  4950. "React\\Cache\\": "src/"
  4951. }
  4952. },
  4953. "notification-url": "https://packagist.org/downloads/",
  4954. "license": [
  4955. "MIT"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "Christian Lück",
  4960. "email": "christian@clue.engineering",
  4961. "homepage": "https://clue.engineering/"
  4962. },
  4963. {
  4964. "name": "Cees-Jan Kiewiet",
  4965. "email": "reactphp@ceesjankiewiet.nl",
  4966. "homepage": "https://wyrihaximus.net/"
  4967. },
  4968. {
  4969. "name": "Jan Sorgalla",
  4970. "email": "jsorgalla@gmail.com",
  4971. "homepage": "https://sorgalla.com/"
  4972. },
  4973. {
  4974. "name": "Chris Boden",
  4975. "email": "cboden@gmail.com",
  4976. "homepage": "https://cboden.dev/"
  4977. }
  4978. ],
  4979. "description": "Async, Promise-based cache interface for ReactPHP",
  4980. "keywords": [
  4981. "cache",
  4982. "caching",
  4983. "promise",
  4984. "reactphp"
  4985. ],
  4986. "support": {
  4987. "issues": "https://github.com/reactphp/cache/issues",
  4988. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4989. },
  4990. "funding": [
  4991. {
  4992. "url": "https://opencollective.com/reactphp",
  4993. "type": "open_collective"
  4994. }
  4995. ],
  4996. "time": "2022-11-30T15:59:55+00:00"
  4997. },
  4998. {
  4999. "name": "react/dns",
  5000. "version": "v1.12.0",
  5001. "source": {
  5002. "type": "git",
  5003. "url": "https://github.com/reactphp/dns.git",
  5004. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  5005. },
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  5009. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  5010. "shasum": ""
  5011. },
  5012. "require": {
  5013. "php": ">=5.3.0",
  5014. "react/cache": "^1.0 || ^0.6 || ^0.5",
  5015. "react/event-loop": "^1.2",
  5016. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  5017. },
  5018. "require-dev": {
  5019. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5020. "react/async": "^4 || ^3 || ^2",
  5021. "react/promise-timer": "^1.9"
  5022. },
  5023. "type": "library",
  5024. "autoload": {
  5025. "psr-4": {
  5026. "React\\Dns\\": "src/"
  5027. }
  5028. },
  5029. "notification-url": "https://packagist.org/downloads/",
  5030. "license": [
  5031. "MIT"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "Christian Lück",
  5036. "email": "christian@clue.engineering",
  5037. "homepage": "https://clue.engineering/"
  5038. },
  5039. {
  5040. "name": "Cees-Jan Kiewiet",
  5041. "email": "reactphp@ceesjankiewiet.nl",
  5042. "homepage": "https://wyrihaximus.net/"
  5043. },
  5044. {
  5045. "name": "Jan Sorgalla",
  5046. "email": "jsorgalla@gmail.com",
  5047. "homepage": "https://sorgalla.com/"
  5048. },
  5049. {
  5050. "name": "Chris Boden",
  5051. "email": "cboden@gmail.com",
  5052. "homepage": "https://cboden.dev/"
  5053. }
  5054. ],
  5055. "description": "Async DNS resolver for ReactPHP",
  5056. "keywords": [
  5057. "async",
  5058. "dns",
  5059. "dns-resolver",
  5060. "reactphp"
  5061. ],
  5062. "support": {
  5063. "issues": "https://github.com/reactphp/dns/issues",
  5064. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  5065. },
  5066. "funding": [
  5067. {
  5068. "url": "https://opencollective.com/reactphp",
  5069. "type": "open_collective"
  5070. }
  5071. ],
  5072. "time": "2023-11-29T12:41:06+00:00"
  5073. },
  5074. {
  5075. "name": "react/event-loop",
  5076. "version": "v1.5.0",
  5077. "source": {
  5078. "type": "git",
  5079. "url": "https://github.com/reactphp/event-loop.git",
  5080. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  5081. },
  5082. "dist": {
  5083. "type": "zip",
  5084. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5085. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5086. "shasum": ""
  5087. },
  5088. "require": {
  5089. "php": ">=5.3.0"
  5090. },
  5091. "require-dev": {
  5092. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5093. },
  5094. "suggest": {
  5095. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  5096. },
  5097. "type": "library",
  5098. "autoload": {
  5099. "psr-4": {
  5100. "React\\EventLoop\\": "src/"
  5101. }
  5102. },
  5103. "notification-url": "https://packagist.org/downloads/",
  5104. "license": [
  5105. "MIT"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Christian Lück",
  5110. "email": "christian@clue.engineering",
  5111. "homepage": "https://clue.engineering/"
  5112. },
  5113. {
  5114. "name": "Cees-Jan Kiewiet",
  5115. "email": "reactphp@ceesjankiewiet.nl",
  5116. "homepage": "https://wyrihaximus.net/"
  5117. },
  5118. {
  5119. "name": "Jan Sorgalla",
  5120. "email": "jsorgalla@gmail.com",
  5121. "homepage": "https://sorgalla.com/"
  5122. },
  5123. {
  5124. "name": "Chris Boden",
  5125. "email": "cboden@gmail.com",
  5126. "homepage": "https://cboden.dev/"
  5127. }
  5128. ],
  5129. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5130. "keywords": [
  5131. "asynchronous",
  5132. "event-loop"
  5133. ],
  5134. "support": {
  5135. "issues": "https://github.com/reactphp/event-loop/issues",
  5136. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  5137. },
  5138. "funding": [
  5139. {
  5140. "url": "https://opencollective.com/reactphp",
  5141. "type": "open_collective"
  5142. }
  5143. ],
  5144. "time": "2023-11-13T13:48:05+00:00"
  5145. },
  5146. {
  5147. "name": "react/promise",
  5148. "version": "v3.1.0",
  5149. "source": {
  5150. "type": "git",
  5151. "url": "https://github.com/reactphp/promise.git",
  5152. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  5153. },
  5154. "dist": {
  5155. "type": "zip",
  5156. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5157. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5158. "shasum": ""
  5159. },
  5160. "require": {
  5161. "php": ">=7.1.0"
  5162. },
  5163. "require-dev": {
  5164. "phpstan/phpstan": "1.10.39 || 1.4.10",
  5165. "phpunit/phpunit": "^9.6 || ^7.5"
  5166. },
  5167. "type": "library",
  5168. "autoload": {
  5169. "files": [
  5170. "src/functions_include.php"
  5171. ],
  5172. "psr-4": {
  5173. "React\\Promise\\": "src/"
  5174. }
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "license": [
  5178. "MIT"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Jan Sorgalla",
  5183. "email": "jsorgalla@gmail.com",
  5184. "homepage": "https://sorgalla.com/"
  5185. },
  5186. {
  5187. "name": "Christian Lück",
  5188. "email": "christian@clue.engineering",
  5189. "homepage": "https://clue.engineering/"
  5190. },
  5191. {
  5192. "name": "Cees-Jan Kiewiet",
  5193. "email": "reactphp@ceesjankiewiet.nl",
  5194. "homepage": "https://wyrihaximus.net/"
  5195. },
  5196. {
  5197. "name": "Chris Boden",
  5198. "email": "cboden@gmail.com",
  5199. "homepage": "https://cboden.dev/"
  5200. }
  5201. ],
  5202. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5203. "keywords": [
  5204. "promise",
  5205. "promises"
  5206. ],
  5207. "support": {
  5208. "issues": "https://github.com/reactphp/promise/issues",
  5209. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  5210. },
  5211. "funding": [
  5212. {
  5213. "url": "https://opencollective.com/reactphp",
  5214. "type": "open_collective"
  5215. }
  5216. ],
  5217. "time": "2023-11-16T16:21:57+00:00"
  5218. },
  5219. {
  5220. "name": "react/socket",
  5221. "version": "v1.15.0",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/reactphp/socket.git",
  5225. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  5230. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  5231. "shasum": ""
  5232. },
  5233. "require": {
  5234. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5235. "php": ">=5.3.0",
  5236. "react/dns": "^1.11",
  5237. "react/event-loop": "^1.2",
  5238. "react/promise": "^3 || ^2.6 || ^1.2.1",
  5239. "react/stream": "^1.2"
  5240. },
  5241. "require-dev": {
  5242. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5243. "react/async": "^4 || ^3 || ^2",
  5244. "react/promise-stream": "^1.4",
  5245. "react/promise-timer": "^1.10"
  5246. },
  5247. "type": "library",
  5248. "autoload": {
  5249. "psr-4": {
  5250. "React\\Socket\\": "src/"
  5251. }
  5252. },
  5253. "notification-url": "https://packagist.org/downloads/",
  5254. "license": [
  5255. "MIT"
  5256. ],
  5257. "authors": [
  5258. {
  5259. "name": "Christian Lück",
  5260. "email": "christian@clue.engineering",
  5261. "homepage": "https://clue.engineering/"
  5262. },
  5263. {
  5264. "name": "Cees-Jan Kiewiet",
  5265. "email": "reactphp@ceesjankiewiet.nl",
  5266. "homepage": "https://wyrihaximus.net/"
  5267. },
  5268. {
  5269. "name": "Jan Sorgalla",
  5270. "email": "jsorgalla@gmail.com",
  5271. "homepage": "https://sorgalla.com/"
  5272. },
  5273. {
  5274. "name": "Chris Boden",
  5275. "email": "cboden@gmail.com",
  5276. "homepage": "https://cboden.dev/"
  5277. }
  5278. ],
  5279. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5280. "keywords": [
  5281. "Connection",
  5282. "Socket",
  5283. "async",
  5284. "reactphp",
  5285. "stream"
  5286. ],
  5287. "support": {
  5288. "issues": "https://github.com/reactphp/socket/issues",
  5289. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  5290. },
  5291. "funding": [
  5292. {
  5293. "url": "https://opencollective.com/reactphp",
  5294. "type": "open_collective"
  5295. }
  5296. ],
  5297. "time": "2023-12-15T11:02:10+00:00"
  5298. },
  5299. {
  5300. "name": "react/stream",
  5301. "version": "v1.3.0",
  5302. "source": {
  5303. "type": "git",
  5304. "url": "https://github.com/reactphp/stream.git",
  5305. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  5306. },
  5307. "dist": {
  5308. "type": "zip",
  5309. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5310. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5311. "shasum": ""
  5312. },
  5313. "require": {
  5314. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5315. "php": ">=5.3.8",
  5316. "react/event-loop": "^1.2"
  5317. },
  5318. "require-dev": {
  5319. "clue/stream-filter": "~1.2",
  5320. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  5321. },
  5322. "type": "library",
  5323. "autoload": {
  5324. "psr-4": {
  5325. "React\\Stream\\": "src/"
  5326. }
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Christian Lück",
  5335. "email": "christian@clue.engineering",
  5336. "homepage": "https://clue.engineering/"
  5337. },
  5338. {
  5339. "name": "Cees-Jan Kiewiet",
  5340. "email": "reactphp@ceesjankiewiet.nl",
  5341. "homepage": "https://wyrihaximus.net/"
  5342. },
  5343. {
  5344. "name": "Jan Sorgalla",
  5345. "email": "jsorgalla@gmail.com",
  5346. "homepage": "https://sorgalla.com/"
  5347. },
  5348. {
  5349. "name": "Chris Boden",
  5350. "email": "cboden@gmail.com",
  5351. "homepage": "https://cboden.dev/"
  5352. }
  5353. ],
  5354. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5355. "keywords": [
  5356. "event-driven",
  5357. "io",
  5358. "non-blocking",
  5359. "pipe",
  5360. "reactphp",
  5361. "readable",
  5362. "stream",
  5363. "writable"
  5364. ],
  5365. "support": {
  5366. "issues": "https://github.com/reactphp/stream/issues",
  5367. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  5368. },
  5369. "funding": [
  5370. {
  5371. "url": "https://opencollective.com/reactphp",
  5372. "type": "open_collective"
  5373. }
  5374. ],
  5375. "time": "2023-06-16T10:52:11+00:00"
  5376. },
  5377. {
  5378. "name": "socialiteproviders/manager",
  5379. "version": "v4.4.0",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://github.com/SocialiteProviders/Manager.git",
  5383. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5388. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5389. "shasum": ""
  5390. },
  5391. "require": {
  5392. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  5393. "laravel/socialite": "~5.0",
  5394. "php": "^8.0"
  5395. },
  5396. "require-dev": {
  5397. "mockery/mockery": "^1.2",
  5398. "phpunit/phpunit": "^6.0 || ^9.0"
  5399. },
  5400. "type": "library",
  5401. "extra": {
  5402. "laravel": {
  5403. "providers": [
  5404. "SocialiteProviders\\Manager\\ServiceProvider"
  5405. ]
  5406. }
  5407. },
  5408. "autoload": {
  5409. "psr-4": {
  5410. "SocialiteProviders\\Manager\\": "src/"
  5411. }
  5412. },
  5413. "notification-url": "https://packagist.org/downloads/",
  5414. "license": [
  5415. "MIT"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Andy Wendt",
  5420. "email": "andy@awendt.com"
  5421. },
  5422. {
  5423. "name": "Anton Komarev",
  5424. "email": "a.komarev@cybercog.su"
  5425. },
  5426. {
  5427. "name": "Miguel Piedrafita",
  5428. "email": "soy@miguelpiedrafita.com"
  5429. },
  5430. {
  5431. "name": "atymic",
  5432. "email": "atymicq@gmail.com",
  5433. "homepage": "https://atymic.dev"
  5434. }
  5435. ],
  5436. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5437. "homepage": "https://socialiteproviders.com",
  5438. "keywords": [
  5439. "laravel",
  5440. "manager",
  5441. "oauth",
  5442. "providers",
  5443. "socialite"
  5444. ],
  5445. "support": {
  5446. "issues": "https://github.com/socialiteproviders/manager/issues",
  5447. "source": "https://github.com/socialiteproviders/manager"
  5448. },
  5449. "time": "2023-08-27T23:46:34+00:00"
  5450. },
  5451. {
  5452. "name": "socialiteproviders/weixin",
  5453. "version": "4.1.0",
  5454. "source": {
  5455. "type": "git",
  5456. "url": "https://github.com/SocialiteProviders/Weixin.git",
  5457. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  5458. },
  5459. "dist": {
  5460. "type": "zip",
  5461. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5462. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5463. "shasum": ""
  5464. },
  5465. "require": {
  5466. "ext-json": "*",
  5467. "php": "^7.2 || ^8.0",
  5468. "socialiteproviders/manager": "~4.0"
  5469. },
  5470. "type": "library",
  5471. "autoload": {
  5472. "psr-4": {
  5473. "SocialiteProviders\\Weixin\\": ""
  5474. }
  5475. },
  5476. "notification-url": "https://packagist.org/downloads/",
  5477. "license": [
  5478. "MIT"
  5479. ],
  5480. "authors": [
  5481. {
  5482. "name": "xyxu",
  5483. "email": "techxu@gmail.com"
  5484. },
  5485. {
  5486. "name": "xiami",
  5487. "email": "jhdxr@php.net"
  5488. }
  5489. ],
  5490. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  5491. "support": {
  5492. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  5493. },
  5494. "time": "2020-12-01T23:10:59+00:00"
  5495. },
  5496. {
  5497. "name": "socialiteproviders/weixin-web",
  5498. "version": "4.1.0",
  5499. "source": {
  5500. "type": "git",
  5501. "url": "https://github.com/SocialiteProviders/Weixin-Web.git",
  5502. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3"
  5503. },
  5504. "dist": {
  5505. "type": "zip",
  5506. "url": "https://api.github.com/repos/SocialiteProviders/Weixin-Web/zipball/3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  5507. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  5508. "shasum": ""
  5509. },
  5510. "require": {
  5511. "ext-json": "*",
  5512. "php": "^7.2 || ^8.0",
  5513. "socialiteproviders/manager": "~4.0"
  5514. },
  5515. "type": "library",
  5516. "autoload": {
  5517. "psr-4": {
  5518. "SocialiteProviders\\WeixinWeb\\": ""
  5519. }
  5520. },
  5521. "notification-url": "https://packagist.org/downloads/",
  5522. "license": [
  5523. "MIT"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "xyxu",
  5528. "email": "techxu@gmail.com"
  5529. }
  5530. ],
  5531. "description": "Weixin-Web OAuth2 Provider for Laravel Socialite",
  5532. "support": {
  5533. "source": "https://github.com/SocialiteProviders/Weixin-Web/tree/4.1.0"
  5534. },
  5535. "time": "2020-12-01T23:10:59+00:00"
  5536. },
  5537. {
  5538. "name": "swiftmailer/swiftmailer",
  5539. "version": "v6.3.0",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5543. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5548. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5549. "shasum": ""
  5550. },
  5551. "require": {
  5552. "egulias/email-validator": "^2.0|^3.1",
  5553. "php": ">=7.0.0",
  5554. "symfony/polyfill-iconv": "^1.0",
  5555. "symfony/polyfill-intl-idn": "^1.10",
  5556. "symfony/polyfill-mbstring": "^1.0"
  5557. },
  5558. "require-dev": {
  5559. "mockery/mockery": "^1.0",
  5560. "symfony/phpunit-bridge": "^4.4|^5.4"
  5561. },
  5562. "suggest": {
  5563. "ext-intl": "Needed to support internationalized email addresses"
  5564. },
  5565. "type": "library",
  5566. "extra": {
  5567. "branch-alias": {
  5568. "dev-master": "6.2-dev"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "files": [
  5573. "lib/swift_required.php"
  5574. ]
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "Chris Corbyn"
  5583. },
  5584. {
  5585. "name": "Fabien Potencier",
  5586. "email": "fabien@symfony.com"
  5587. }
  5588. ],
  5589. "description": "Swiftmailer, free feature-rich PHP mailer",
  5590. "homepage": "https://swiftmailer.symfony.com",
  5591. "keywords": [
  5592. "email",
  5593. "mail",
  5594. "mailer"
  5595. ],
  5596. "support": {
  5597. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5598. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5599. },
  5600. "funding": [
  5601. {
  5602. "url": "https://github.com/fabpot",
  5603. "type": "github"
  5604. },
  5605. {
  5606. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5607. "type": "tidelift"
  5608. }
  5609. ],
  5610. "abandoned": "symfony/mailer",
  5611. "time": "2021-10-18T15:26:12+00:00"
  5612. },
  5613. {
  5614. "name": "symfony/console",
  5615. "version": "v5.4.32",
  5616. "source": {
  5617. "type": "git",
  5618. "url": "https://github.com/symfony/console.git",
  5619. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7"
  5620. },
  5621. "dist": {
  5622. "type": "zip",
  5623. "url": "https://api.github.com/repos/symfony/console/zipball/c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  5624. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  5625. "shasum": ""
  5626. },
  5627. "require": {
  5628. "php": ">=7.2.5",
  5629. "symfony/deprecation-contracts": "^2.1|^3",
  5630. "symfony/polyfill-mbstring": "~1.0",
  5631. "symfony/polyfill-php73": "^1.9",
  5632. "symfony/polyfill-php80": "^1.16",
  5633. "symfony/service-contracts": "^1.1|^2|^3",
  5634. "symfony/string": "^5.1|^6.0"
  5635. },
  5636. "conflict": {
  5637. "psr/log": ">=3",
  5638. "symfony/dependency-injection": "<4.4",
  5639. "symfony/dotenv": "<5.1",
  5640. "symfony/event-dispatcher": "<4.4",
  5641. "symfony/lock": "<4.4",
  5642. "symfony/process": "<4.4"
  5643. },
  5644. "provide": {
  5645. "psr/log-implementation": "1.0|2.0"
  5646. },
  5647. "require-dev": {
  5648. "psr/log": "^1|^2",
  5649. "symfony/config": "^4.4|^5.0|^6.0",
  5650. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5651. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5652. "symfony/lock": "^4.4|^5.0|^6.0",
  5653. "symfony/process": "^4.4|^5.0|^6.0",
  5654. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5655. },
  5656. "suggest": {
  5657. "psr/log": "For using the console logger",
  5658. "symfony/event-dispatcher": "",
  5659. "symfony/lock": "",
  5660. "symfony/process": ""
  5661. },
  5662. "type": "library",
  5663. "autoload": {
  5664. "psr-4": {
  5665. "Symfony\\Component\\Console\\": ""
  5666. },
  5667. "exclude-from-classmap": [
  5668. "/Tests/"
  5669. ]
  5670. },
  5671. "notification-url": "https://packagist.org/downloads/",
  5672. "license": [
  5673. "MIT"
  5674. ],
  5675. "authors": [
  5676. {
  5677. "name": "Fabien Potencier",
  5678. "email": "fabien@symfony.com"
  5679. },
  5680. {
  5681. "name": "Symfony Community",
  5682. "homepage": "https://symfony.com/contributors"
  5683. }
  5684. ],
  5685. "description": "Eases the creation of beautiful and testable command line interfaces",
  5686. "homepage": "https://symfony.com",
  5687. "keywords": [
  5688. "cli",
  5689. "command-line",
  5690. "console",
  5691. "terminal"
  5692. ],
  5693. "support": {
  5694. "source": "https://github.com/symfony/console/tree/v5.4.32"
  5695. },
  5696. "funding": [
  5697. {
  5698. "url": "https://symfony.com/sponsor",
  5699. "type": "custom"
  5700. },
  5701. {
  5702. "url": "https://github.com/fabpot",
  5703. "type": "github"
  5704. },
  5705. {
  5706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5707. "type": "tidelift"
  5708. }
  5709. ],
  5710. "time": "2023-11-18T18:23:04+00:00"
  5711. },
  5712. {
  5713. "name": "symfony/css-selector",
  5714. "version": "v6.0.19",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/symfony/css-selector.git",
  5718. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5723. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5724. "shasum": ""
  5725. },
  5726. "require": {
  5727. "php": ">=8.0.2"
  5728. },
  5729. "type": "library",
  5730. "autoload": {
  5731. "psr-4": {
  5732. "Symfony\\Component\\CssSelector\\": ""
  5733. },
  5734. "exclude-from-classmap": [
  5735. "/Tests/"
  5736. ]
  5737. },
  5738. "notification-url": "https://packagist.org/downloads/",
  5739. "license": [
  5740. "MIT"
  5741. ],
  5742. "authors": [
  5743. {
  5744. "name": "Fabien Potencier",
  5745. "email": "fabien@symfony.com"
  5746. },
  5747. {
  5748. "name": "Jean-François Simon",
  5749. "email": "jeanfrancois.simon@sensiolabs.com"
  5750. },
  5751. {
  5752. "name": "Symfony Community",
  5753. "homepage": "https://symfony.com/contributors"
  5754. }
  5755. ],
  5756. "description": "Converts CSS selectors to XPath expressions",
  5757. "homepage": "https://symfony.com",
  5758. "support": {
  5759. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5760. },
  5761. "funding": [
  5762. {
  5763. "url": "https://symfony.com/sponsor",
  5764. "type": "custom"
  5765. },
  5766. {
  5767. "url": "https://github.com/fabpot",
  5768. "type": "github"
  5769. },
  5770. {
  5771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5772. "type": "tidelift"
  5773. }
  5774. ],
  5775. "time": "2023-01-01T08:36:10+00:00"
  5776. },
  5777. {
  5778. "name": "symfony/deprecation-contracts",
  5779. "version": "v3.0.2",
  5780. "source": {
  5781. "type": "git",
  5782. "url": "https://github.com/symfony/deprecation-contracts.git",
  5783. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5784. },
  5785. "dist": {
  5786. "type": "zip",
  5787. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5788. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5789. "shasum": ""
  5790. },
  5791. "require": {
  5792. "php": ">=8.0.2"
  5793. },
  5794. "type": "library",
  5795. "extra": {
  5796. "branch-alias": {
  5797. "dev-main": "3.0-dev"
  5798. },
  5799. "thanks": {
  5800. "name": "symfony/contracts",
  5801. "url": "https://github.com/symfony/contracts"
  5802. }
  5803. },
  5804. "autoload": {
  5805. "files": [
  5806. "function.php"
  5807. ]
  5808. },
  5809. "notification-url": "https://packagist.org/downloads/",
  5810. "license": [
  5811. "MIT"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "Nicolas Grekas",
  5816. "email": "p@tchwork.com"
  5817. },
  5818. {
  5819. "name": "Symfony Community",
  5820. "homepage": "https://symfony.com/contributors"
  5821. }
  5822. ],
  5823. "description": "A generic function and convention to trigger deprecation notices",
  5824. "homepage": "https://symfony.com",
  5825. "support": {
  5826. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5827. },
  5828. "funding": [
  5829. {
  5830. "url": "https://symfony.com/sponsor",
  5831. "type": "custom"
  5832. },
  5833. {
  5834. "url": "https://github.com/fabpot",
  5835. "type": "github"
  5836. },
  5837. {
  5838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5839. "type": "tidelift"
  5840. }
  5841. ],
  5842. "time": "2022-01-02T09:55:41+00:00"
  5843. },
  5844. {
  5845. "name": "symfony/error-handler",
  5846. "version": "v5.4.29",
  5847. "source": {
  5848. "type": "git",
  5849. "url": "https://github.com/symfony/error-handler.git",
  5850. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  5851. },
  5852. "dist": {
  5853. "type": "zip",
  5854. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5855. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5856. "shasum": ""
  5857. },
  5858. "require": {
  5859. "php": ">=7.2.5",
  5860. "psr/log": "^1|^2|^3",
  5861. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5862. },
  5863. "require-dev": {
  5864. "symfony/deprecation-contracts": "^2.1|^3",
  5865. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5866. "symfony/serializer": "^4.4|^5.0|^6.0"
  5867. },
  5868. "bin": [
  5869. "Resources/bin/patch-type-declarations"
  5870. ],
  5871. "type": "library",
  5872. "autoload": {
  5873. "psr-4": {
  5874. "Symfony\\Component\\ErrorHandler\\": ""
  5875. },
  5876. "exclude-from-classmap": [
  5877. "/Tests/"
  5878. ]
  5879. },
  5880. "notification-url": "https://packagist.org/downloads/",
  5881. "license": [
  5882. "MIT"
  5883. ],
  5884. "authors": [
  5885. {
  5886. "name": "Fabien Potencier",
  5887. "email": "fabien@symfony.com"
  5888. },
  5889. {
  5890. "name": "Symfony Community",
  5891. "homepage": "https://symfony.com/contributors"
  5892. }
  5893. ],
  5894. "description": "Provides tools to manage errors and ease debugging PHP code",
  5895. "homepage": "https://symfony.com",
  5896. "support": {
  5897. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  5898. },
  5899. "funding": [
  5900. {
  5901. "url": "https://symfony.com/sponsor",
  5902. "type": "custom"
  5903. },
  5904. {
  5905. "url": "https://github.com/fabpot",
  5906. "type": "github"
  5907. },
  5908. {
  5909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5910. "type": "tidelift"
  5911. }
  5912. ],
  5913. "time": "2023-09-06T21:54:06+00:00"
  5914. },
  5915. {
  5916. "name": "symfony/event-dispatcher",
  5917. "version": "v6.0.19",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/symfony/event-dispatcher.git",
  5921. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5926. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5927. "shasum": ""
  5928. },
  5929. "require": {
  5930. "php": ">=8.0.2",
  5931. "symfony/event-dispatcher-contracts": "^2|^3"
  5932. },
  5933. "conflict": {
  5934. "symfony/dependency-injection": "<5.4"
  5935. },
  5936. "provide": {
  5937. "psr/event-dispatcher-implementation": "1.0",
  5938. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5939. },
  5940. "require-dev": {
  5941. "psr/log": "^1|^2|^3",
  5942. "symfony/config": "^5.4|^6.0",
  5943. "symfony/dependency-injection": "^5.4|^6.0",
  5944. "symfony/error-handler": "^5.4|^6.0",
  5945. "symfony/expression-language": "^5.4|^6.0",
  5946. "symfony/http-foundation": "^5.4|^6.0",
  5947. "symfony/service-contracts": "^1.1|^2|^3",
  5948. "symfony/stopwatch": "^5.4|^6.0"
  5949. },
  5950. "suggest": {
  5951. "symfony/dependency-injection": "",
  5952. "symfony/http-kernel": ""
  5953. },
  5954. "type": "library",
  5955. "autoload": {
  5956. "psr-4": {
  5957. "Symfony\\Component\\EventDispatcher\\": ""
  5958. },
  5959. "exclude-from-classmap": [
  5960. "/Tests/"
  5961. ]
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Fabien Potencier",
  5970. "email": "fabien@symfony.com"
  5971. },
  5972. {
  5973. "name": "Symfony Community",
  5974. "homepage": "https://symfony.com/contributors"
  5975. }
  5976. ],
  5977. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5978. "homepage": "https://symfony.com",
  5979. "support": {
  5980. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5981. },
  5982. "funding": [
  5983. {
  5984. "url": "https://symfony.com/sponsor",
  5985. "type": "custom"
  5986. },
  5987. {
  5988. "url": "https://github.com/fabpot",
  5989. "type": "github"
  5990. },
  5991. {
  5992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5993. "type": "tidelift"
  5994. }
  5995. ],
  5996. "time": "2023-01-01T08:36:10+00:00"
  5997. },
  5998. {
  5999. "name": "symfony/event-dispatcher-contracts",
  6000. "version": "v3.0.2",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6004. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  6009. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  6010. "shasum": ""
  6011. },
  6012. "require": {
  6013. "php": ">=8.0.2",
  6014. "psr/event-dispatcher": "^1"
  6015. },
  6016. "suggest": {
  6017. "symfony/event-dispatcher-implementation": ""
  6018. },
  6019. "type": "library",
  6020. "extra": {
  6021. "branch-alias": {
  6022. "dev-main": "3.0-dev"
  6023. },
  6024. "thanks": {
  6025. "name": "symfony/contracts",
  6026. "url": "https://github.com/symfony/contracts"
  6027. }
  6028. },
  6029. "autoload": {
  6030. "psr-4": {
  6031. "Symfony\\Contracts\\EventDispatcher\\": ""
  6032. }
  6033. },
  6034. "notification-url": "https://packagist.org/downloads/",
  6035. "license": [
  6036. "MIT"
  6037. ],
  6038. "authors": [
  6039. {
  6040. "name": "Nicolas Grekas",
  6041. "email": "p@tchwork.com"
  6042. },
  6043. {
  6044. "name": "Symfony Community",
  6045. "homepage": "https://symfony.com/contributors"
  6046. }
  6047. ],
  6048. "description": "Generic abstractions related to dispatching event",
  6049. "homepage": "https://symfony.com",
  6050. "keywords": [
  6051. "abstractions",
  6052. "contracts",
  6053. "decoupling",
  6054. "interfaces",
  6055. "interoperability",
  6056. "standards"
  6057. ],
  6058. "support": {
  6059. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  6060. },
  6061. "funding": [
  6062. {
  6063. "url": "https://symfony.com/sponsor",
  6064. "type": "custom"
  6065. },
  6066. {
  6067. "url": "https://github.com/fabpot",
  6068. "type": "github"
  6069. },
  6070. {
  6071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6072. "type": "tidelift"
  6073. }
  6074. ],
  6075. "time": "2022-01-02T09:55:41+00:00"
  6076. },
  6077. {
  6078. "name": "symfony/finder",
  6079. "version": "v5.4.27",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/symfony/finder.git",
  6083. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6088. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6089. "shasum": ""
  6090. },
  6091. "require": {
  6092. "php": ">=7.2.5",
  6093. "symfony/deprecation-contracts": "^2.1|^3",
  6094. "symfony/polyfill-php80": "^1.16"
  6095. },
  6096. "type": "library",
  6097. "autoload": {
  6098. "psr-4": {
  6099. "Symfony\\Component\\Finder\\": ""
  6100. },
  6101. "exclude-from-classmap": [
  6102. "/Tests/"
  6103. ]
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "MIT"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Fabien Potencier",
  6112. "email": "fabien@symfony.com"
  6113. },
  6114. {
  6115. "name": "Symfony Community",
  6116. "homepage": "https://symfony.com/contributors"
  6117. }
  6118. ],
  6119. "description": "Finds files and directories via an intuitive fluent interface",
  6120. "homepage": "https://symfony.com",
  6121. "support": {
  6122. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  6123. },
  6124. "funding": [
  6125. {
  6126. "url": "https://symfony.com/sponsor",
  6127. "type": "custom"
  6128. },
  6129. {
  6130. "url": "https://github.com/fabpot",
  6131. "type": "github"
  6132. },
  6133. {
  6134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6135. "type": "tidelift"
  6136. }
  6137. ],
  6138. "time": "2023-07-31T08:02:31+00:00"
  6139. },
  6140. {
  6141. "name": "symfony/http-foundation",
  6142. "version": "v5.4.32",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://github.com/symfony/http-foundation.git",
  6146. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6151. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6152. "shasum": ""
  6153. },
  6154. "require": {
  6155. "php": ">=7.2.5",
  6156. "symfony/deprecation-contracts": "^2.1|^3",
  6157. "symfony/polyfill-mbstring": "~1.1",
  6158. "symfony/polyfill-php80": "^1.16"
  6159. },
  6160. "require-dev": {
  6161. "predis/predis": "~1.0",
  6162. "symfony/cache": "^4.4|^5.0|^6.0",
  6163. "symfony/dependency-injection": "^5.4|^6.0",
  6164. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6165. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6166. "symfony/mime": "^4.4|^5.0|^6.0",
  6167. "symfony/rate-limiter": "^5.2|^6.0"
  6168. },
  6169. "suggest": {
  6170. "symfony/mime": "To use the file extension guesser"
  6171. },
  6172. "type": "library",
  6173. "autoload": {
  6174. "psr-4": {
  6175. "Symfony\\Component\\HttpFoundation\\": ""
  6176. },
  6177. "exclude-from-classmap": [
  6178. "/Tests/"
  6179. ]
  6180. },
  6181. "notification-url": "https://packagist.org/downloads/",
  6182. "license": [
  6183. "MIT"
  6184. ],
  6185. "authors": [
  6186. {
  6187. "name": "Fabien Potencier",
  6188. "email": "fabien@symfony.com"
  6189. },
  6190. {
  6191. "name": "Symfony Community",
  6192. "homepage": "https://symfony.com/contributors"
  6193. }
  6194. ],
  6195. "description": "Defines an object-oriented layer for the HTTP specification",
  6196. "homepage": "https://symfony.com",
  6197. "support": {
  6198. "source": "https://github.com/symfony/http-foundation/tree/v5.4.32"
  6199. },
  6200. "funding": [
  6201. {
  6202. "url": "https://symfony.com/sponsor",
  6203. "type": "custom"
  6204. },
  6205. {
  6206. "url": "https://github.com/fabpot",
  6207. "type": "github"
  6208. },
  6209. {
  6210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6211. "type": "tidelift"
  6212. }
  6213. ],
  6214. "time": "2023-11-20T15:40:25+00:00"
  6215. },
  6216. {
  6217. "name": "symfony/http-kernel",
  6218. "version": "v5.4.33",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/symfony/http-kernel.git",
  6222. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/892636f9279f953dc266dc088f900b03eecb4ffa",
  6227. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa",
  6228. "shasum": ""
  6229. },
  6230. "require": {
  6231. "php": ">=7.2.5",
  6232. "psr/log": "^1|^2",
  6233. "symfony/deprecation-contracts": "^2.1|^3",
  6234. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6235. "symfony/event-dispatcher": "^5.0|^6.0",
  6236. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6237. "symfony/polyfill-ctype": "^1.8",
  6238. "symfony/polyfill-php73": "^1.9",
  6239. "symfony/polyfill-php80": "^1.16"
  6240. },
  6241. "conflict": {
  6242. "symfony/browser-kit": "<5.4",
  6243. "symfony/cache": "<5.0",
  6244. "symfony/config": "<5.0",
  6245. "symfony/console": "<4.4",
  6246. "symfony/dependency-injection": "<5.3",
  6247. "symfony/doctrine-bridge": "<5.0",
  6248. "symfony/form": "<5.0",
  6249. "symfony/http-client": "<5.0",
  6250. "symfony/mailer": "<5.0",
  6251. "symfony/messenger": "<5.0",
  6252. "symfony/translation": "<5.0",
  6253. "symfony/twig-bridge": "<5.0",
  6254. "symfony/validator": "<5.0",
  6255. "twig/twig": "<2.13"
  6256. },
  6257. "provide": {
  6258. "psr/log-implementation": "1.0|2.0"
  6259. },
  6260. "require-dev": {
  6261. "psr/cache": "^1.0|^2.0|^3.0",
  6262. "symfony/browser-kit": "^5.4|^6.0",
  6263. "symfony/config": "^5.0|^6.0",
  6264. "symfony/console": "^4.4|^5.0|^6.0",
  6265. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6266. "symfony/dependency-injection": "^5.3|^6.0",
  6267. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6268. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6269. "symfony/finder": "^4.4|^5.0|^6.0",
  6270. "symfony/http-client-contracts": "^1.1|^2|^3",
  6271. "symfony/process": "^4.4|^5.0|^6.0",
  6272. "symfony/routing": "^4.4|^5.0|^6.0",
  6273. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6274. "symfony/translation": "^4.4|^5.0|^6.0",
  6275. "symfony/translation-contracts": "^1.1|^2|^3",
  6276. "twig/twig": "^2.13|^3.0.4"
  6277. },
  6278. "suggest": {
  6279. "symfony/browser-kit": "",
  6280. "symfony/config": "",
  6281. "symfony/console": "",
  6282. "symfony/dependency-injection": ""
  6283. },
  6284. "type": "library",
  6285. "autoload": {
  6286. "psr-4": {
  6287. "Symfony\\Component\\HttpKernel\\": ""
  6288. },
  6289. "exclude-from-classmap": [
  6290. "/Tests/"
  6291. ]
  6292. },
  6293. "notification-url": "https://packagist.org/downloads/",
  6294. "license": [
  6295. "MIT"
  6296. ],
  6297. "authors": [
  6298. {
  6299. "name": "Fabien Potencier",
  6300. "email": "fabien@symfony.com"
  6301. },
  6302. {
  6303. "name": "Symfony Community",
  6304. "homepage": "https://symfony.com/contributors"
  6305. }
  6306. ],
  6307. "description": "Provides a structured process for converting a Request into a Response",
  6308. "homepage": "https://symfony.com",
  6309. "support": {
  6310. "source": "https://github.com/symfony/http-kernel/tree/v5.4.33"
  6311. },
  6312. "funding": [
  6313. {
  6314. "url": "https://symfony.com/sponsor",
  6315. "type": "custom"
  6316. },
  6317. {
  6318. "url": "https://github.com/fabpot",
  6319. "type": "github"
  6320. },
  6321. {
  6322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6323. "type": "tidelift"
  6324. }
  6325. ],
  6326. "time": "2023-12-01T16:51:11+00:00"
  6327. },
  6328. {
  6329. "name": "symfony/mime",
  6330. "version": "v5.4.26",
  6331. "source": {
  6332. "type": "git",
  6333. "url": "https://github.com/symfony/mime.git",
  6334. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  6335. },
  6336. "dist": {
  6337. "type": "zip",
  6338. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6339. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6340. "shasum": ""
  6341. },
  6342. "require": {
  6343. "php": ">=7.2.5",
  6344. "symfony/deprecation-contracts": "^2.1|^3",
  6345. "symfony/polyfill-intl-idn": "^1.10",
  6346. "symfony/polyfill-mbstring": "^1.0",
  6347. "symfony/polyfill-php80": "^1.16"
  6348. },
  6349. "conflict": {
  6350. "egulias/email-validator": "~3.0.0",
  6351. "phpdocumentor/reflection-docblock": "<3.2.2",
  6352. "phpdocumentor/type-resolver": "<1.4.0",
  6353. "symfony/mailer": "<4.4",
  6354. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  6355. },
  6356. "require-dev": {
  6357. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6358. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6359. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6360. "symfony/property-access": "^4.4|^5.1|^6.0",
  6361. "symfony/property-info": "^4.4|^5.1|^6.0",
  6362. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  6363. },
  6364. "type": "library",
  6365. "autoload": {
  6366. "psr-4": {
  6367. "Symfony\\Component\\Mime\\": ""
  6368. },
  6369. "exclude-from-classmap": [
  6370. "/Tests/"
  6371. ]
  6372. },
  6373. "notification-url": "https://packagist.org/downloads/",
  6374. "license": [
  6375. "MIT"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "Fabien Potencier",
  6380. "email": "fabien@symfony.com"
  6381. },
  6382. {
  6383. "name": "Symfony Community",
  6384. "homepage": "https://symfony.com/contributors"
  6385. }
  6386. ],
  6387. "description": "Allows manipulating MIME messages",
  6388. "homepage": "https://symfony.com",
  6389. "keywords": [
  6390. "mime",
  6391. "mime-type"
  6392. ],
  6393. "support": {
  6394. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  6395. },
  6396. "funding": [
  6397. {
  6398. "url": "https://symfony.com/sponsor",
  6399. "type": "custom"
  6400. },
  6401. {
  6402. "url": "https://github.com/fabpot",
  6403. "type": "github"
  6404. },
  6405. {
  6406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6407. "type": "tidelift"
  6408. }
  6409. ],
  6410. "time": "2023-07-27T06:29:31+00:00"
  6411. },
  6412. {
  6413. "name": "symfony/polyfill-ctype",
  6414. "version": "v1.28.0",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://github.com/symfony/polyfill-ctype.git",
  6418. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6423. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6424. "shasum": ""
  6425. },
  6426. "require": {
  6427. "php": ">=7.1"
  6428. },
  6429. "provide": {
  6430. "ext-ctype": "*"
  6431. },
  6432. "suggest": {
  6433. "ext-ctype": "For best performance"
  6434. },
  6435. "type": "library",
  6436. "extra": {
  6437. "branch-alias": {
  6438. "dev-main": "1.28-dev"
  6439. },
  6440. "thanks": {
  6441. "name": "symfony/polyfill",
  6442. "url": "https://github.com/symfony/polyfill"
  6443. }
  6444. },
  6445. "autoload": {
  6446. "files": [
  6447. "bootstrap.php"
  6448. ],
  6449. "psr-4": {
  6450. "Symfony\\Polyfill\\Ctype\\": ""
  6451. }
  6452. },
  6453. "notification-url": "https://packagist.org/downloads/",
  6454. "license": [
  6455. "MIT"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "Gert de Pagter",
  6460. "email": "BackEndTea@gmail.com"
  6461. },
  6462. {
  6463. "name": "Symfony Community",
  6464. "homepage": "https://symfony.com/contributors"
  6465. }
  6466. ],
  6467. "description": "Symfony polyfill for ctype functions",
  6468. "homepage": "https://symfony.com",
  6469. "keywords": [
  6470. "compatibility",
  6471. "ctype",
  6472. "polyfill",
  6473. "portable"
  6474. ],
  6475. "support": {
  6476. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6477. },
  6478. "funding": [
  6479. {
  6480. "url": "https://symfony.com/sponsor",
  6481. "type": "custom"
  6482. },
  6483. {
  6484. "url": "https://github.com/fabpot",
  6485. "type": "github"
  6486. },
  6487. {
  6488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6489. "type": "tidelift"
  6490. }
  6491. ],
  6492. "time": "2023-01-26T09:26:14+00:00"
  6493. },
  6494. {
  6495. "name": "symfony/polyfill-iconv",
  6496. "version": "v1.28.0",
  6497. "source": {
  6498. "type": "git",
  6499. "url": "https://github.com/symfony/polyfill-iconv.git",
  6500. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  6501. },
  6502. "dist": {
  6503. "type": "zip",
  6504. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  6505. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  6506. "shasum": ""
  6507. },
  6508. "require": {
  6509. "php": ">=7.1"
  6510. },
  6511. "provide": {
  6512. "ext-iconv": "*"
  6513. },
  6514. "suggest": {
  6515. "ext-iconv": "For best performance"
  6516. },
  6517. "type": "library",
  6518. "extra": {
  6519. "branch-alias": {
  6520. "dev-main": "1.28-dev"
  6521. },
  6522. "thanks": {
  6523. "name": "symfony/polyfill",
  6524. "url": "https://github.com/symfony/polyfill"
  6525. }
  6526. },
  6527. "autoload": {
  6528. "files": [
  6529. "bootstrap.php"
  6530. ],
  6531. "psr-4": {
  6532. "Symfony\\Polyfill\\Iconv\\": ""
  6533. }
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "Nicolas Grekas",
  6542. "email": "p@tchwork.com"
  6543. },
  6544. {
  6545. "name": "Symfony Community",
  6546. "homepage": "https://symfony.com/contributors"
  6547. }
  6548. ],
  6549. "description": "Symfony polyfill for the Iconv extension",
  6550. "homepage": "https://symfony.com",
  6551. "keywords": [
  6552. "compatibility",
  6553. "iconv",
  6554. "polyfill",
  6555. "portable",
  6556. "shim"
  6557. ],
  6558. "support": {
  6559. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  6560. },
  6561. "funding": [
  6562. {
  6563. "url": "https://symfony.com/sponsor",
  6564. "type": "custom"
  6565. },
  6566. {
  6567. "url": "https://github.com/fabpot",
  6568. "type": "github"
  6569. },
  6570. {
  6571. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6572. "type": "tidelift"
  6573. }
  6574. ],
  6575. "time": "2023-01-26T09:26:14+00:00"
  6576. },
  6577. {
  6578. "name": "symfony/polyfill-intl-grapheme",
  6579. "version": "v1.28.0",
  6580. "source": {
  6581. "type": "git",
  6582. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6583. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6584. },
  6585. "dist": {
  6586. "type": "zip",
  6587. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6588. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6589. "shasum": ""
  6590. },
  6591. "require": {
  6592. "php": ">=7.1"
  6593. },
  6594. "suggest": {
  6595. "ext-intl": "For best performance"
  6596. },
  6597. "type": "library",
  6598. "extra": {
  6599. "branch-alias": {
  6600. "dev-main": "1.28-dev"
  6601. },
  6602. "thanks": {
  6603. "name": "symfony/polyfill",
  6604. "url": "https://github.com/symfony/polyfill"
  6605. }
  6606. },
  6607. "autoload": {
  6608. "files": [
  6609. "bootstrap.php"
  6610. ],
  6611. "psr-4": {
  6612. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6613. }
  6614. },
  6615. "notification-url": "https://packagist.org/downloads/",
  6616. "license": [
  6617. "MIT"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "Nicolas Grekas",
  6622. "email": "p@tchwork.com"
  6623. },
  6624. {
  6625. "name": "Symfony Community",
  6626. "homepage": "https://symfony.com/contributors"
  6627. }
  6628. ],
  6629. "description": "Symfony polyfill for intl's grapheme_* functions",
  6630. "homepage": "https://symfony.com",
  6631. "keywords": [
  6632. "compatibility",
  6633. "grapheme",
  6634. "intl",
  6635. "polyfill",
  6636. "portable",
  6637. "shim"
  6638. ],
  6639. "support": {
  6640. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6641. },
  6642. "funding": [
  6643. {
  6644. "url": "https://symfony.com/sponsor",
  6645. "type": "custom"
  6646. },
  6647. {
  6648. "url": "https://github.com/fabpot",
  6649. "type": "github"
  6650. },
  6651. {
  6652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6653. "type": "tidelift"
  6654. }
  6655. ],
  6656. "time": "2023-01-26T09:26:14+00:00"
  6657. },
  6658. {
  6659. "name": "symfony/polyfill-intl-idn",
  6660. "version": "v1.28.0",
  6661. "source": {
  6662. "type": "git",
  6663. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6664. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  6665. },
  6666. "dist": {
  6667. "type": "zip",
  6668. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  6669. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  6670. "shasum": ""
  6671. },
  6672. "require": {
  6673. "php": ">=7.1",
  6674. "symfony/polyfill-intl-normalizer": "^1.10",
  6675. "symfony/polyfill-php72": "^1.10"
  6676. },
  6677. "suggest": {
  6678. "ext-intl": "For best performance"
  6679. },
  6680. "type": "library",
  6681. "extra": {
  6682. "branch-alias": {
  6683. "dev-main": "1.28-dev"
  6684. },
  6685. "thanks": {
  6686. "name": "symfony/polyfill",
  6687. "url": "https://github.com/symfony/polyfill"
  6688. }
  6689. },
  6690. "autoload": {
  6691. "files": [
  6692. "bootstrap.php"
  6693. ],
  6694. "psr-4": {
  6695. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6696. }
  6697. },
  6698. "notification-url": "https://packagist.org/downloads/",
  6699. "license": [
  6700. "MIT"
  6701. ],
  6702. "authors": [
  6703. {
  6704. "name": "Laurent Bassin",
  6705. "email": "laurent@bassin.info"
  6706. },
  6707. {
  6708. "name": "Trevor Rowbotham",
  6709. "email": "trevor.rowbotham@pm.me"
  6710. },
  6711. {
  6712. "name": "Symfony Community",
  6713. "homepage": "https://symfony.com/contributors"
  6714. }
  6715. ],
  6716. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6717. "homepage": "https://symfony.com",
  6718. "keywords": [
  6719. "compatibility",
  6720. "idn",
  6721. "intl",
  6722. "polyfill",
  6723. "portable",
  6724. "shim"
  6725. ],
  6726. "support": {
  6727. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  6728. },
  6729. "funding": [
  6730. {
  6731. "url": "https://symfony.com/sponsor",
  6732. "type": "custom"
  6733. },
  6734. {
  6735. "url": "https://github.com/fabpot",
  6736. "type": "github"
  6737. },
  6738. {
  6739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6740. "type": "tidelift"
  6741. }
  6742. ],
  6743. "time": "2023-01-26T09:30:37+00:00"
  6744. },
  6745. {
  6746. "name": "symfony/polyfill-intl-normalizer",
  6747. "version": "v1.28.0",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6751. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6756. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "php": ">=7.1"
  6761. },
  6762. "suggest": {
  6763. "ext-intl": "For best performance"
  6764. },
  6765. "type": "library",
  6766. "extra": {
  6767. "branch-alias": {
  6768. "dev-main": "1.28-dev"
  6769. },
  6770. "thanks": {
  6771. "name": "symfony/polyfill",
  6772. "url": "https://github.com/symfony/polyfill"
  6773. }
  6774. },
  6775. "autoload": {
  6776. "files": [
  6777. "bootstrap.php"
  6778. ],
  6779. "psr-4": {
  6780. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6781. },
  6782. "classmap": [
  6783. "Resources/stubs"
  6784. ]
  6785. },
  6786. "notification-url": "https://packagist.org/downloads/",
  6787. "license": [
  6788. "MIT"
  6789. ],
  6790. "authors": [
  6791. {
  6792. "name": "Nicolas Grekas",
  6793. "email": "p@tchwork.com"
  6794. },
  6795. {
  6796. "name": "Symfony Community",
  6797. "homepage": "https://symfony.com/contributors"
  6798. }
  6799. ],
  6800. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6801. "homepage": "https://symfony.com",
  6802. "keywords": [
  6803. "compatibility",
  6804. "intl",
  6805. "normalizer",
  6806. "polyfill",
  6807. "portable",
  6808. "shim"
  6809. ],
  6810. "support": {
  6811. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  6812. },
  6813. "funding": [
  6814. {
  6815. "url": "https://symfony.com/sponsor",
  6816. "type": "custom"
  6817. },
  6818. {
  6819. "url": "https://github.com/fabpot",
  6820. "type": "github"
  6821. },
  6822. {
  6823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6824. "type": "tidelift"
  6825. }
  6826. ],
  6827. "time": "2023-01-26T09:26:14+00:00"
  6828. },
  6829. {
  6830. "name": "symfony/polyfill-mbstring",
  6831. "version": "v1.28.0",
  6832. "source": {
  6833. "type": "git",
  6834. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6835. "reference": "42292d99c55abe617799667f454222c54c60e229"
  6836. },
  6837. "dist": {
  6838. "type": "zip",
  6839. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  6840. "reference": "42292d99c55abe617799667f454222c54c60e229",
  6841. "shasum": ""
  6842. },
  6843. "require": {
  6844. "php": ">=7.1"
  6845. },
  6846. "provide": {
  6847. "ext-mbstring": "*"
  6848. },
  6849. "suggest": {
  6850. "ext-mbstring": "For best performance"
  6851. },
  6852. "type": "library",
  6853. "extra": {
  6854. "branch-alias": {
  6855. "dev-main": "1.28-dev"
  6856. },
  6857. "thanks": {
  6858. "name": "symfony/polyfill",
  6859. "url": "https://github.com/symfony/polyfill"
  6860. }
  6861. },
  6862. "autoload": {
  6863. "files": [
  6864. "bootstrap.php"
  6865. ],
  6866. "psr-4": {
  6867. "Symfony\\Polyfill\\Mbstring\\": ""
  6868. }
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Nicolas Grekas",
  6877. "email": "p@tchwork.com"
  6878. },
  6879. {
  6880. "name": "Symfony Community",
  6881. "homepage": "https://symfony.com/contributors"
  6882. }
  6883. ],
  6884. "description": "Symfony polyfill for the Mbstring extension",
  6885. "homepage": "https://symfony.com",
  6886. "keywords": [
  6887. "compatibility",
  6888. "mbstring",
  6889. "polyfill",
  6890. "portable",
  6891. "shim"
  6892. ],
  6893. "support": {
  6894. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  6895. },
  6896. "funding": [
  6897. {
  6898. "url": "https://symfony.com/sponsor",
  6899. "type": "custom"
  6900. },
  6901. {
  6902. "url": "https://github.com/fabpot",
  6903. "type": "github"
  6904. },
  6905. {
  6906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6907. "type": "tidelift"
  6908. }
  6909. ],
  6910. "time": "2023-07-28T09:04:16+00:00"
  6911. },
  6912. {
  6913. "name": "symfony/polyfill-php72",
  6914. "version": "v1.28.0",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/symfony/polyfill-php72.git",
  6918. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  6923. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "php": ">=7.1"
  6928. },
  6929. "type": "library",
  6930. "extra": {
  6931. "branch-alias": {
  6932. "dev-main": "1.28-dev"
  6933. },
  6934. "thanks": {
  6935. "name": "symfony/polyfill",
  6936. "url": "https://github.com/symfony/polyfill"
  6937. }
  6938. },
  6939. "autoload": {
  6940. "files": [
  6941. "bootstrap.php"
  6942. ],
  6943. "psr-4": {
  6944. "Symfony\\Polyfill\\Php72\\": ""
  6945. }
  6946. },
  6947. "notification-url": "https://packagist.org/downloads/",
  6948. "license": [
  6949. "MIT"
  6950. ],
  6951. "authors": [
  6952. {
  6953. "name": "Nicolas Grekas",
  6954. "email": "p@tchwork.com"
  6955. },
  6956. {
  6957. "name": "Symfony Community",
  6958. "homepage": "https://symfony.com/contributors"
  6959. }
  6960. ],
  6961. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6962. "homepage": "https://symfony.com",
  6963. "keywords": [
  6964. "compatibility",
  6965. "polyfill",
  6966. "portable",
  6967. "shim"
  6968. ],
  6969. "support": {
  6970. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  6971. },
  6972. "funding": [
  6973. {
  6974. "url": "https://symfony.com/sponsor",
  6975. "type": "custom"
  6976. },
  6977. {
  6978. "url": "https://github.com/fabpot",
  6979. "type": "github"
  6980. },
  6981. {
  6982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6983. "type": "tidelift"
  6984. }
  6985. ],
  6986. "time": "2023-01-26T09:26:14+00:00"
  6987. },
  6988. {
  6989. "name": "symfony/polyfill-php73",
  6990. "version": "v1.28.0",
  6991. "source": {
  6992. "type": "git",
  6993. "url": "https://github.com/symfony/polyfill-php73.git",
  6994. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6995. },
  6996. "dist": {
  6997. "type": "zip",
  6998. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6999. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7000. "shasum": ""
  7001. },
  7002. "require": {
  7003. "php": ">=7.1"
  7004. },
  7005. "type": "library",
  7006. "extra": {
  7007. "branch-alias": {
  7008. "dev-main": "1.28-dev"
  7009. },
  7010. "thanks": {
  7011. "name": "symfony/polyfill",
  7012. "url": "https://github.com/symfony/polyfill"
  7013. }
  7014. },
  7015. "autoload": {
  7016. "files": [
  7017. "bootstrap.php"
  7018. ],
  7019. "psr-4": {
  7020. "Symfony\\Polyfill\\Php73\\": ""
  7021. },
  7022. "classmap": [
  7023. "Resources/stubs"
  7024. ]
  7025. },
  7026. "notification-url": "https://packagist.org/downloads/",
  7027. "license": [
  7028. "MIT"
  7029. ],
  7030. "authors": [
  7031. {
  7032. "name": "Nicolas Grekas",
  7033. "email": "p@tchwork.com"
  7034. },
  7035. {
  7036. "name": "Symfony Community",
  7037. "homepage": "https://symfony.com/contributors"
  7038. }
  7039. ],
  7040. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7041. "homepage": "https://symfony.com",
  7042. "keywords": [
  7043. "compatibility",
  7044. "polyfill",
  7045. "portable",
  7046. "shim"
  7047. ],
  7048. "support": {
  7049. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7050. },
  7051. "funding": [
  7052. {
  7053. "url": "https://symfony.com/sponsor",
  7054. "type": "custom"
  7055. },
  7056. {
  7057. "url": "https://github.com/fabpot",
  7058. "type": "github"
  7059. },
  7060. {
  7061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7062. "type": "tidelift"
  7063. }
  7064. ],
  7065. "time": "2023-01-26T09:26:14+00:00"
  7066. },
  7067. {
  7068. "name": "symfony/polyfill-php80",
  7069. "version": "v1.28.0",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://github.com/symfony/polyfill-php80.git",
  7073. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7078. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7079. "shasum": ""
  7080. },
  7081. "require": {
  7082. "php": ">=7.1"
  7083. },
  7084. "type": "library",
  7085. "extra": {
  7086. "branch-alias": {
  7087. "dev-main": "1.28-dev"
  7088. },
  7089. "thanks": {
  7090. "name": "symfony/polyfill",
  7091. "url": "https://github.com/symfony/polyfill"
  7092. }
  7093. },
  7094. "autoload": {
  7095. "files": [
  7096. "bootstrap.php"
  7097. ],
  7098. "psr-4": {
  7099. "Symfony\\Polyfill\\Php80\\": ""
  7100. },
  7101. "classmap": [
  7102. "Resources/stubs"
  7103. ]
  7104. },
  7105. "notification-url": "https://packagist.org/downloads/",
  7106. "license": [
  7107. "MIT"
  7108. ],
  7109. "authors": [
  7110. {
  7111. "name": "Ion Bazan",
  7112. "email": "ion.bazan@gmail.com"
  7113. },
  7114. {
  7115. "name": "Nicolas Grekas",
  7116. "email": "p@tchwork.com"
  7117. },
  7118. {
  7119. "name": "Symfony Community",
  7120. "homepage": "https://symfony.com/contributors"
  7121. }
  7122. ],
  7123. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7124. "homepage": "https://symfony.com",
  7125. "keywords": [
  7126. "compatibility",
  7127. "polyfill",
  7128. "portable",
  7129. "shim"
  7130. ],
  7131. "support": {
  7132. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7133. },
  7134. "funding": [
  7135. {
  7136. "url": "https://symfony.com/sponsor",
  7137. "type": "custom"
  7138. },
  7139. {
  7140. "url": "https://github.com/fabpot",
  7141. "type": "github"
  7142. },
  7143. {
  7144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7145. "type": "tidelift"
  7146. }
  7147. ],
  7148. "time": "2023-01-26T09:26:14+00:00"
  7149. },
  7150. {
  7151. "name": "symfony/polyfill-php81",
  7152. "version": "v1.28.0",
  7153. "source": {
  7154. "type": "git",
  7155. "url": "https://github.com/symfony/polyfill-php81.git",
  7156. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  7157. },
  7158. "dist": {
  7159. "type": "zip",
  7160. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  7161. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7162. "shasum": ""
  7163. },
  7164. "require": {
  7165. "php": ">=7.1"
  7166. },
  7167. "type": "library",
  7168. "extra": {
  7169. "branch-alias": {
  7170. "dev-main": "1.28-dev"
  7171. },
  7172. "thanks": {
  7173. "name": "symfony/polyfill",
  7174. "url": "https://github.com/symfony/polyfill"
  7175. }
  7176. },
  7177. "autoload": {
  7178. "files": [
  7179. "bootstrap.php"
  7180. ],
  7181. "psr-4": {
  7182. "Symfony\\Polyfill\\Php81\\": ""
  7183. },
  7184. "classmap": [
  7185. "Resources/stubs"
  7186. ]
  7187. },
  7188. "notification-url": "https://packagist.org/downloads/",
  7189. "license": [
  7190. "MIT"
  7191. ],
  7192. "authors": [
  7193. {
  7194. "name": "Nicolas Grekas",
  7195. "email": "p@tchwork.com"
  7196. },
  7197. {
  7198. "name": "Symfony Community",
  7199. "homepage": "https://symfony.com/contributors"
  7200. }
  7201. ],
  7202. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7203. "homepage": "https://symfony.com",
  7204. "keywords": [
  7205. "compatibility",
  7206. "polyfill",
  7207. "portable",
  7208. "shim"
  7209. ],
  7210. "support": {
  7211. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  7212. },
  7213. "funding": [
  7214. {
  7215. "url": "https://symfony.com/sponsor",
  7216. "type": "custom"
  7217. },
  7218. {
  7219. "url": "https://github.com/fabpot",
  7220. "type": "github"
  7221. },
  7222. {
  7223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7224. "type": "tidelift"
  7225. }
  7226. ],
  7227. "time": "2023-01-26T09:26:14+00:00"
  7228. },
  7229. {
  7230. "name": "symfony/process",
  7231. "version": "v5.4.28",
  7232. "source": {
  7233. "type": "git",
  7234. "url": "https://github.com/symfony/process.git",
  7235. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
  7236. },
  7237. "dist": {
  7238. "type": "zip",
  7239. "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7240. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7241. "shasum": ""
  7242. },
  7243. "require": {
  7244. "php": ">=7.2.5",
  7245. "symfony/polyfill-php80": "^1.16"
  7246. },
  7247. "type": "library",
  7248. "autoload": {
  7249. "psr-4": {
  7250. "Symfony\\Component\\Process\\": ""
  7251. },
  7252. "exclude-from-classmap": [
  7253. "/Tests/"
  7254. ]
  7255. },
  7256. "notification-url": "https://packagist.org/downloads/",
  7257. "license": [
  7258. "MIT"
  7259. ],
  7260. "authors": [
  7261. {
  7262. "name": "Fabien Potencier",
  7263. "email": "fabien@symfony.com"
  7264. },
  7265. {
  7266. "name": "Symfony Community",
  7267. "homepage": "https://symfony.com/contributors"
  7268. }
  7269. ],
  7270. "description": "Executes commands in sub-processes",
  7271. "homepage": "https://symfony.com",
  7272. "support": {
  7273. "source": "https://github.com/symfony/process/tree/v5.4.28"
  7274. },
  7275. "funding": [
  7276. {
  7277. "url": "https://symfony.com/sponsor",
  7278. "type": "custom"
  7279. },
  7280. {
  7281. "url": "https://github.com/fabpot",
  7282. "type": "github"
  7283. },
  7284. {
  7285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7286. "type": "tidelift"
  7287. }
  7288. ],
  7289. "time": "2023-08-07T10:36:04+00:00"
  7290. },
  7291. {
  7292. "name": "symfony/routing",
  7293. "version": "v5.4.33",
  7294. "source": {
  7295. "type": "git",
  7296. "url": "https://github.com/symfony/routing.git",
  7297. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04"
  7298. },
  7299. "dist": {
  7300. "type": "zip",
  7301. "url": "https://api.github.com/repos/symfony/routing/zipball/5b5b86670f947db92ab54cdcff585e76064d0b04",
  7302. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04",
  7303. "shasum": ""
  7304. },
  7305. "require": {
  7306. "php": ">=7.2.5",
  7307. "symfony/deprecation-contracts": "^2.1|^3",
  7308. "symfony/polyfill-php80": "^1.16"
  7309. },
  7310. "conflict": {
  7311. "doctrine/annotations": "<1.12",
  7312. "symfony/config": "<5.3",
  7313. "symfony/dependency-injection": "<4.4",
  7314. "symfony/yaml": "<4.4"
  7315. },
  7316. "require-dev": {
  7317. "doctrine/annotations": "^1.12|^2",
  7318. "psr/log": "^1|^2|^3",
  7319. "symfony/config": "^5.3|^6.0",
  7320. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7321. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7322. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7323. "symfony/yaml": "^4.4|^5.0|^6.0"
  7324. },
  7325. "suggest": {
  7326. "symfony/config": "For using the all-in-one router or any loader",
  7327. "symfony/expression-language": "For using expression matching",
  7328. "symfony/http-foundation": "For using a Symfony Request object",
  7329. "symfony/yaml": "For using the YAML loader"
  7330. },
  7331. "type": "library",
  7332. "autoload": {
  7333. "psr-4": {
  7334. "Symfony\\Component\\Routing\\": ""
  7335. },
  7336. "exclude-from-classmap": [
  7337. "/Tests/"
  7338. ]
  7339. },
  7340. "notification-url": "https://packagist.org/downloads/",
  7341. "license": [
  7342. "MIT"
  7343. ],
  7344. "authors": [
  7345. {
  7346. "name": "Fabien Potencier",
  7347. "email": "fabien@symfony.com"
  7348. },
  7349. {
  7350. "name": "Symfony Community",
  7351. "homepage": "https://symfony.com/contributors"
  7352. }
  7353. ],
  7354. "description": "Maps an HTTP request to a set of configuration variables",
  7355. "homepage": "https://symfony.com",
  7356. "keywords": [
  7357. "router",
  7358. "routing",
  7359. "uri",
  7360. "url"
  7361. ],
  7362. "support": {
  7363. "source": "https://github.com/symfony/routing/tree/v5.4.33"
  7364. },
  7365. "funding": [
  7366. {
  7367. "url": "https://symfony.com/sponsor",
  7368. "type": "custom"
  7369. },
  7370. {
  7371. "url": "https://github.com/fabpot",
  7372. "type": "github"
  7373. },
  7374. {
  7375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7376. "type": "tidelift"
  7377. }
  7378. ],
  7379. "time": "2023-12-01T09:28:00+00:00"
  7380. },
  7381. {
  7382. "name": "symfony/service-contracts",
  7383. "version": "v2.5.2",
  7384. "source": {
  7385. "type": "git",
  7386. "url": "https://github.com/symfony/service-contracts.git",
  7387. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7388. },
  7389. "dist": {
  7390. "type": "zip",
  7391. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7392. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7393. "shasum": ""
  7394. },
  7395. "require": {
  7396. "php": ">=7.2.5",
  7397. "psr/container": "^1.1",
  7398. "symfony/deprecation-contracts": "^2.1|^3"
  7399. },
  7400. "conflict": {
  7401. "ext-psr": "<1.1|>=2"
  7402. },
  7403. "suggest": {
  7404. "symfony/service-implementation": ""
  7405. },
  7406. "type": "library",
  7407. "extra": {
  7408. "branch-alias": {
  7409. "dev-main": "2.5-dev"
  7410. },
  7411. "thanks": {
  7412. "name": "symfony/contracts",
  7413. "url": "https://github.com/symfony/contracts"
  7414. }
  7415. },
  7416. "autoload": {
  7417. "psr-4": {
  7418. "Symfony\\Contracts\\Service\\": ""
  7419. }
  7420. },
  7421. "notification-url": "https://packagist.org/downloads/",
  7422. "license": [
  7423. "MIT"
  7424. ],
  7425. "authors": [
  7426. {
  7427. "name": "Nicolas Grekas",
  7428. "email": "p@tchwork.com"
  7429. },
  7430. {
  7431. "name": "Symfony Community",
  7432. "homepage": "https://symfony.com/contributors"
  7433. }
  7434. ],
  7435. "description": "Generic abstractions related to writing services",
  7436. "homepage": "https://symfony.com",
  7437. "keywords": [
  7438. "abstractions",
  7439. "contracts",
  7440. "decoupling",
  7441. "interfaces",
  7442. "interoperability",
  7443. "standards"
  7444. ],
  7445. "support": {
  7446. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7447. },
  7448. "funding": [
  7449. {
  7450. "url": "https://symfony.com/sponsor",
  7451. "type": "custom"
  7452. },
  7453. {
  7454. "url": "https://github.com/fabpot",
  7455. "type": "github"
  7456. },
  7457. {
  7458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7459. "type": "tidelift"
  7460. }
  7461. ],
  7462. "time": "2022-05-30T19:17:29+00:00"
  7463. },
  7464. {
  7465. "name": "symfony/string",
  7466. "version": "v6.0.19",
  7467. "source": {
  7468. "type": "git",
  7469. "url": "https://github.com/symfony/string.git",
  7470. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7471. },
  7472. "dist": {
  7473. "type": "zip",
  7474. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7475. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7476. "shasum": ""
  7477. },
  7478. "require": {
  7479. "php": ">=8.0.2",
  7480. "symfony/polyfill-ctype": "~1.8",
  7481. "symfony/polyfill-intl-grapheme": "~1.0",
  7482. "symfony/polyfill-intl-normalizer": "~1.0",
  7483. "symfony/polyfill-mbstring": "~1.0"
  7484. },
  7485. "conflict": {
  7486. "symfony/translation-contracts": "<2.0"
  7487. },
  7488. "require-dev": {
  7489. "symfony/error-handler": "^5.4|^6.0",
  7490. "symfony/http-client": "^5.4|^6.0",
  7491. "symfony/translation-contracts": "^2.0|^3.0",
  7492. "symfony/var-exporter": "^5.4|^6.0"
  7493. },
  7494. "type": "library",
  7495. "autoload": {
  7496. "files": [
  7497. "Resources/functions.php"
  7498. ],
  7499. "psr-4": {
  7500. "Symfony\\Component\\String\\": ""
  7501. },
  7502. "exclude-from-classmap": [
  7503. "/Tests/"
  7504. ]
  7505. },
  7506. "notification-url": "https://packagist.org/downloads/",
  7507. "license": [
  7508. "MIT"
  7509. ],
  7510. "authors": [
  7511. {
  7512. "name": "Nicolas Grekas",
  7513. "email": "p@tchwork.com"
  7514. },
  7515. {
  7516. "name": "Symfony Community",
  7517. "homepage": "https://symfony.com/contributors"
  7518. }
  7519. ],
  7520. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7521. "homepage": "https://symfony.com",
  7522. "keywords": [
  7523. "grapheme",
  7524. "i18n",
  7525. "string",
  7526. "unicode",
  7527. "utf-8",
  7528. "utf8"
  7529. ],
  7530. "support": {
  7531. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7532. },
  7533. "funding": [
  7534. {
  7535. "url": "https://symfony.com/sponsor",
  7536. "type": "custom"
  7537. },
  7538. {
  7539. "url": "https://github.com/fabpot",
  7540. "type": "github"
  7541. },
  7542. {
  7543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7544. "type": "tidelift"
  7545. }
  7546. ],
  7547. "time": "2023-01-01T08:36:10+00:00"
  7548. },
  7549. {
  7550. "name": "symfony/translation",
  7551. "version": "v6.0.19",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/symfony/translation.git",
  7555. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7560. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7561. "shasum": ""
  7562. },
  7563. "require": {
  7564. "php": ">=8.0.2",
  7565. "symfony/polyfill-mbstring": "~1.0",
  7566. "symfony/translation-contracts": "^2.3|^3.0"
  7567. },
  7568. "conflict": {
  7569. "symfony/config": "<5.4",
  7570. "symfony/console": "<5.4",
  7571. "symfony/dependency-injection": "<5.4",
  7572. "symfony/http-kernel": "<5.4",
  7573. "symfony/twig-bundle": "<5.4",
  7574. "symfony/yaml": "<5.4"
  7575. },
  7576. "provide": {
  7577. "symfony/translation-implementation": "2.3|3.0"
  7578. },
  7579. "require-dev": {
  7580. "psr/log": "^1|^2|^3",
  7581. "symfony/config": "^5.4|^6.0",
  7582. "symfony/console": "^5.4|^6.0",
  7583. "symfony/dependency-injection": "^5.4|^6.0",
  7584. "symfony/finder": "^5.4|^6.0",
  7585. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7586. "symfony/http-kernel": "^5.4|^6.0",
  7587. "symfony/intl": "^5.4|^6.0",
  7588. "symfony/polyfill-intl-icu": "^1.21",
  7589. "symfony/service-contracts": "^1.1.2|^2|^3",
  7590. "symfony/yaml": "^5.4|^6.0"
  7591. },
  7592. "suggest": {
  7593. "psr/log-implementation": "To use logging capability in translator",
  7594. "symfony/config": "",
  7595. "symfony/yaml": ""
  7596. },
  7597. "type": "library",
  7598. "autoload": {
  7599. "files": [
  7600. "Resources/functions.php"
  7601. ],
  7602. "psr-4": {
  7603. "Symfony\\Component\\Translation\\": ""
  7604. },
  7605. "exclude-from-classmap": [
  7606. "/Tests/"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Fabien Potencier",
  7616. "email": "fabien@symfony.com"
  7617. },
  7618. {
  7619. "name": "Symfony Community",
  7620. "homepage": "https://symfony.com/contributors"
  7621. }
  7622. ],
  7623. "description": "Provides tools to internationalize your application",
  7624. "homepage": "https://symfony.com",
  7625. "support": {
  7626. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7627. },
  7628. "funding": [
  7629. {
  7630. "url": "https://symfony.com/sponsor",
  7631. "type": "custom"
  7632. },
  7633. {
  7634. "url": "https://github.com/fabpot",
  7635. "type": "github"
  7636. },
  7637. {
  7638. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7639. "type": "tidelift"
  7640. }
  7641. ],
  7642. "time": "2023-01-01T08:36:10+00:00"
  7643. },
  7644. {
  7645. "name": "symfony/translation-contracts",
  7646. "version": "v3.0.2",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/symfony/translation-contracts.git",
  7650. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7655. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7656. "shasum": ""
  7657. },
  7658. "require": {
  7659. "php": ">=8.0.2"
  7660. },
  7661. "suggest": {
  7662. "symfony/translation-implementation": ""
  7663. },
  7664. "type": "library",
  7665. "extra": {
  7666. "branch-alias": {
  7667. "dev-main": "3.0-dev"
  7668. },
  7669. "thanks": {
  7670. "name": "symfony/contracts",
  7671. "url": "https://github.com/symfony/contracts"
  7672. }
  7673. },
  7674. "autoload": {
  7675. "psr-4": {
  7676. "Symfony\\Contracts\\Translation\\": ""
  7677. }
  7678. },
  7679. "notification-url": "https://packagist.org/downloads/",
  7680. "license": [
  7681. "MIT"
  7682. ],
  7683. "authors": [
  7684. {
  7685. "name": "Nicolas Grekas",
  7686. "email": "p@tchwork.com"
  7687. },
  7688. {
  7689. "name": "Symfony Community",
  7690. "homepage": "https://symfony.com/contributors"
  7691. }
  7692. ],
  7693. "description": "Generic abstractions related to translation",
  7694. "homepage": "https://symfony.com",
  7695. "keywords": [
  7696. "abstractions",
  7697. "contracts",
  7698. "decoupling",
  7699. "interfaces",
  7700. "interoperability",
  7701. "standards"
  7702. ],
  7703. "support": {
  7704. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7705. },
  7706. "funding": [
  7707. {
  7708. "url": "https://symfony.com/sponsor",
  7709. "type": "custom"
  7710. },
  7711. {
  7712. "url": "https://github.com/fabpot",
  7713. "type": "github"
  7714. },
  7715. {
  7716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7717. "type": "tidelift"
  7718. }
  7719. ],
  7720. "time": "2022-06-27T17:10:44+00:00"
  7721. },
  7722. {
  7723. "name": "symfony/var-dumper",
  7724. "version": "v5.4.29",
  7725. "source": {
  7726. "type": "git",
  7727. "url": "https://github.com/symfony/var-dumper.git",
  7728. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  7729. },
  7730. "dist": {
  7731. "type": "zip",
  7732. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7733. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7734. "shasum": ""
  7735. },
  7736. "require": {
  7737. "php": ">=7.2.5",
  7738. "symfony/polyfill-mbstring": "~1.0",
  7739. "symfony/polyfill-php80": "^1.16"
  7740. },
  7741. "conflict": {
  7742. "symfony/console": "<4.4"
  7743. },
  7744. "require-dev": {
  7745. "ext-iconv": "*",
  7746. "symfony/console": "^4.4|^5.0|^6.0",
  7747. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7748. "symfony/process": "^4.4|^5.0|^6.0",
  7749. "symfony/uid": "^5.1|^6.0",
  7750. "twig/twig": "^2.13|^3.0.4"
  7751. },
  7752. "suggest": {
  7753. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7754. "ext-intl": "To show region name in time zone dump",
  7755. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7756. },
  7757. "bin": [
  7758. "Resources/bin/var-dump-server"
  7759. ],
  7760. "type": "library",
  7761. "autoload": {
  7762. "files": [
  7763. "Resources/functions/dump.php"
  7764. ],
  7765. "psr-4": {
  7766. "Symfony\\Component\\VarDumper\\": ""
  7767. },
  7768. "exclude-from-classmap": [
  7769. "/Tests/"
  7770. ]
  7771. },
  7772. "notification-url": "https://packagist.org/downloads/",
  7773. "license": [
  7774. "MIT"
  7775. ],
  7776. "authors": [
  7777. {
  7778. "name": "Nicolas Grekas",
  7779. "email": "p@tchwork.com"
  7780. },
  7781. {
  7782. "name": "Symfony Community",
  7783. "homepage": "https://symfony.com/contributors"
  7784. }
  7785. ],
  7786. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7787. "homepage": "https://symfony.com",
  7788. "keywords": [
  7789. "debug",
  7790. "dump"
  7791. ],
  7792. "support": {
  7793. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7794. },
  7795. "funding": [
  7796. {
  7797. "url": "https://symfony.com/sponsor",
  7798. "type": "custom"
  7799. },
  7800. {
  7801. "url": "https://github.com/fabpot",
  7802. "type": "github"
  7803. },
  7804. {
  7805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7806. "type": "tidelift"
  7807. }
  7808. ],
  7809. "time": "2023-09-12T10:09:58+00:00"
  7810. },
  7811. {
  7812. "name": "tightenco/collect",
  7813. "version": "v9.52.7",
  7814. "source": {
  7815. "type": "git",
  7816. "url": "https://github.com/tighten/collect.git",
  7817. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d"
  7818. },
  7819. "dist": {
  7820. "type": "zip",
  7821. "url": "https://api.github.com/repos/tighten/collect/zipball/b15143cd11fe01a700fcc449df61adc64452fa6d",
  7822. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d",
  7823. "shasum": ""
  7824. },
  7825. "require": {
  7826. "php": "^8.0",
  7827. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  7828. },
  7829. "require-dev": {
  7830. "mockery/mockery": "^1.0",
  7831. "nesbot/carbon": "^2.23.0",
  7832. "phpunit/phpunit": "^8.3"
  7833. },
  7834. "type": "library",
  7835. "autoload": {
  7836. "files": [
  7837. "src/Collect/Support/helpers.php",
  7838. "src/Collect/Support/alias.php"
  7839. ],
  7840. "psr-4": {
  7841. "Tightenco\\Collect\\": "src/Collect"
  7842. }
  7843. },
  7844. "notification-url": "https://packagist.org/downloads/",
  7845. "license": [
  7846. "MIT"
  7847. ],
  7848. "authors": [
  7849. {
  7850. "name": "Taylor Otwell",
  7851. "email": "taylorotwell@gmail.com"
  7852. }
  7853. ],
  7854. "description": "Collect - Illuminate Collections as a separate package.",
  7855. "keywords": [
  7856. "collection",
  7857. "laravel"
  7858. ],
  7859. "support": {
  7860. "issues": "https://github.com/tighten/collect/issues",
  7861. "source": "https://github.com/tighten/collect/tree/v9.52.7"
  7862. },
  7863. "time": "2023-04-14T21:51:36+00:00"
  7864. },
  7865. {
  7866. "name": "tijsverkoyen/css-to-inline-styles",
  7867. "version": "v2.2.7",
  7868. "source": {
  7869. "type": "git",
  7870. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7871. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7872. },
  7873. "dist": {
  7874. "type": "zip",
  7875. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7876. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7877. "shasum": ""
  7878. },
  7879. "require": {
  7880. "ext-dom": "*",
  7881. "ext-libxml": "*",
  7882. "php": "^5.5 || ^7.0 || ^8.0",
  7883. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7884. },
  7885. "require-dev": {
  7886. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7887. },
  7888. "type": "library",
  7889. "extra": {
  7890. "branch-alias": {
  7891. "dev-master": "2.2.x-dev"
  7892. }
  7893. },
  7894. "autoload": {
  7895. "psr-4": {
  7896. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7897. }
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "BSD-3-Clause"
  7902. ],
  7903. "authors": [
  7904. {
  7905. "name": "Tijs Verkoyen",
  7906. "email": "css_to_inline_styles@verkoyen.eu",
  7907. "role": "Developer"
  7908. }
  7909. ],
  7910. "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.",
  7911. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7912. "support": {
  7913. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7914. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7915. },
  7916. "time": "2023-12-08T13:03:43+00:00"
  7917. },
  7918. {
  7919. "name": "vlucas/phpdotenv",
  7920. "version": "v5.6.0",
  7921. "source": {
  7922. "type": "git",
  7923. "url": "https://github.com/vlucas/phpdotenv.git",
  7924. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7925. },
  7926. "dist": {
  7927. "type": "zip",
  7928. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7929. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7930. "shasum": ""
  7931. },
  7932. "require": {
  7933. "ext-pcre": "*",
  7934. "graham-campbell/result-type": "^1.1.2",
  7935. "php": "^7.2.5 || ^8.0",
  7936. "phpoption/phpoption": "^1.9.2",
  7937. "symfony/polyfill-ctype": "^1.24",
  7938. "symfony/polyfill-mbstring": "^1.24",
  7939. "symfony/polyfill-php80": "^1.24"
  7940. },
  7941. "require-dev": {
  7942. "bamarni/composer-bin-plugin": "^1.8.2",
  7943. "ext-filter": "*",
  7944. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7945. },
  7946. "suggest": {
  7947. "ext-filter": "Required to use the boolean validator."
  7948. },
  7949. "type": "library",
  7950. "extra": {
  7951. "bamarni-bin": {
  7952. "bin-links": true,
  7953. "forward-command": true
  7954. },
  7955. "branch-alias": {
  7956. "dev-master": "5.6-dev"
  7957. }
  7958. },
  7959. "autoload": {
  7960. "psr-4": {
  7961. "Dotenv\\": "src/"
  7962. }
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "BSD-3-Clause"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Graham Campbell",
  7971. "email": "hello@gjcampbell.co.uk",
  7972. "homepage": "https://github.com/GrahamCampbell"
  7973. },
  7974. {
  7975. "name": "Vance Lucas",
  7976. "email": "vance@vancelucas.com",
  7977. "homepage": "https://github.com/vlucas"
  7978. }
  7979. ],
  7980. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7981. "keywords": [
  7982. "dotenv",
  7983. "env",
  7984. "environment"
  7985. ],
  7986. "support": {
  7987. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7988. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7989. },
  7990. "funding": [
  7991. {
  7992. "url": "https://github.com/GrahamCampbell",
  7993. "type": "github"
  7994. },
  7995. {
  7996. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7997. "type": "tidelift"
  7998. }
  7999. ],
  8000. "time": "2023-11-12T22:43:29+00:00"
  8001. },
  8002. {
  8003. "name": "voku/portable-ascii",
  8004. "version": "1.6.1",
  8005. "source": {
  8006. "type": "git",
  8007. "url": "https://github.com/voku/portable-ascii.git",
  8008. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8009. },
  8010. "dist": {
  8011. "type": "zip",
  8012. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8013. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8014. "shasum": ""
  8015. },
  8016. "require": {
  8017. "php": ">=7.0.0"
  8018. },
  8019. "require-dev": {
  8020. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8021. },
  8022. "suggest": {
  8023. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8024. },
  8025. "type": "library",
  8026. "autoload": {
  8027. "psr-4": {
  8028. "voku\\": "src/voku/"
  8029. }
  8030. },
  8031. "notification-url": "https://packagist.org/downloads/",
  8032. "license": [
  8033. "MIT"
  8034. ],
  8035. "authors": [
  8036. {
  8037. "name": "Lars Moelleken",
  8038. "homepage": "http://www.moelleken.org/"
  8039. }
  8040. ],
  8041. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8042. "homepage": "https://github.com/voku/portable-ascii",
  8043. "keywords": [
  8044. "ascii",
  8045. "clean",
  8046. "php"
  8047. ],
  8048. "support": {
  8049. "issues": "https://github.com/voku/portable-ascii/issues",
  8050. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8051. },
  8052. "funding": [
  8053. {
  8054. "url": "https://www.paypal.me/moelleken",
  8055. "type": "custom"
  8056. },
  8057. {
  8058. "url": "https://github.com/voku",
  8059. "type": "github"
  8060. },
  8061. {
  8062. "url": "https://opencollective.com/portable-ascii",
  8063. "type": "open_collective"
  8064. },
  8065. {
  8066. "url": "https://www.patreon.com/voku",
  8067. "type": "patreon"
  8068. },
  8069. {
  8070. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8071. "type": "tidelift"
  8072. }
  8073. ],
  8074. "time": "2022-01-24T18:55:24+00:00"
  8075. },
  8076. {
  8077. "name": "webmozart/assert",
  8078. "version": "1.11.0",
  8079. "source": {
  8080. "type": "git",
  8081. "url": "https://github.com/webmozarts/assert.git",
  8082. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8083. },
  8084. "dist": {
  8085. "type": "zip",
  8086. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8087. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8088. "shasum": ""
  8089. },
  8090. "require": {
  8091. "ext-ctype": "*",
  8092. "php": "^7.2 || ^8.0"
  8093. },
  8094. "conflict": {
  8095. "phpstan/phpstan": "<0.12.20",
  8096. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8097. },
  8098. "require-dev": {
  8099. "phpunit/phpunit": "^8.5.13"
  8100. },
  8101. "type": "library",
  8102. "extra": {
  8103. "branch-alias": {
  8104. "dev-master": "1.10-dev"
  8105. }
  8106. },
  8107. "autoload": {
  8108. "psr-4": {
  8109. "Webmozart\\Assert\\": "src/"
  8110. }
  8111. },
  8112. "notification-url": "https://packagist.org/downloads/",
  8113. "license": [
  8114. "MIT"
  8115. ],
  8116. "authors": [
  8117. {
  8118. "name": "Bernhard Schussek",
  8119. "email": "bschussek@gmail.com"
  8120. }
  8121. ],
  8122. "description": "Assertions to validate method input/output with nice error messages.",
  8123. "keywords": [
  8124. "assert",
  8125. "check",
  8126. "validate"
  8127. ],
  8128. "support": {
  8129. "issues": "https://github.com/webmozarts/assert/issues",
  8130. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8131. },
  8132. "time": "2022-06-03T18:03:27+00:00"
  8133. },
  8134. {
  8135. "name": "wechatpay/wechatpay-guzzle-middleware",
  8136. "version": "0.2.2",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  8140. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8145. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "ext-openssl": "*",
  8150. "php": ">=5.5"
  8151. },
  8152. "require-dev": {
  8153. "guzzlehttp/guzzle": "^6.3"
  8154. },
  8155. "suggest": {
  8156. "ext-bcmath": "Require bcmath in php 5.* version.",
  8157. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  8158. },
  8159. "bin": [
  8160. "tool/CertificateDownloader.php"
  8161. ],
  8162. "type": "library",
  8163. "autoload": {
  8164. "psr-4": {
  8165. "WechatPay\\GuzzleMiddleware\\": "src/"
  8166. }
  8167. },
  8168. "notification-url": "https://packagist.org/downloads/",
  8169. "license": [
  8170. "Apache-2.0"
  8171. ],
  8172. "description": "WechatPay API V3 Guzzle Middleware",
  8173. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  8174. "keywords": [
  8175. "wechatpay"
  8176. ],
  8177. "support": {
  8178. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  8179. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  8180. },
  8181. "time": "2021-03-05T03:09:29+00:00"
  8182. },
  8183. {
  8184. "name": "yansongda/pay",
  8185. "version": "v3.4.2",
  8186. "source": {
  8187. "type": "git",
  8188. "url": "https://github.com/yansongda/pay.git",
  8189. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  8190. },
  8191. "dist": {
  8192. "type": "zip",
  8193. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  8194. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  8195. "shasum": ""
  8196. },
  8197. "require": {
  8198. "ext-bcmath": "*",
  8199. "ext-json": "*",
  8200. "ext-libxml": "*",
  8201. "ext-openssl": "*",
  8202. "ext-simplexml": "*",
  8203. "php": ">=8.0",
  8204. "psr/container": "^1.1 || ^2.0",
  8205. "psr/event-dispatcher": "^1.0",
  8206. "psr/http-client": "^1.0",
  8207. "psr/http-message": "^1.1 || ^2.0",
  8208. "psr/log": "^1.1 || ^2.0 || ^3.0",
  8209. "yansongda/supports": "~4.0.0"
  8210. },
  8211. "conflict": {
  8212. "hyperf/framework": "<3.0"
  8213. },
  8214. "require-dev": {
  8215. "friendsofphp/php-cs-fixer": "^3.0",
  8216. "guzzlehttp/guzzle": "^7.0",
  8217. "hyperf/pimple": "^2.2",
  8218. "mockery/mockery": "^1.4",
  8219. "monolog/monolog": "^2.2",
  8220. "phpstan/phpstan": "^1.0.0",
  8221. "phpunit/phpunit": "^9.0",
  8222. "symfony/event-dispatcher": "^5.2.0",
  8223. "symfony/http-foundation": "^5.2.0",
  8224. "symfony/psr-http-message-bridge": "^2.1",
  8225. "symfony/var-dumper": "^5.1"
  8226. },
  8227. "suggest": {
  8228. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  8229. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  8230. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  8231. },
  8232. "type": "library",
  8233. "autoload": {
  8234. "files": [
  8235. "src/Functions.php"
  8236. ],
  8237. "psr-4": {
  8238. "Yansongda\\Pay\\": "src"
  8239. }
  8240. },
  8241. "notification-url": "https://packagist.org/downloads/",
  8242. "license": [
  8243. "MIT"
  8244. ],
  8245. "authors": [
  8246. {
  8247. "name": "yansongda",
  8248. "email": "me@yansongda.cn"
  8249. }
  8250. ],
  8251. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8252. "keywords": [
  8253. "alipay",
  8254. "pay",
  8255. "wechat"
  8256. ],
  8257. "support": {
  8258. "homepage": "https://pay.yansongda.cn",
  8259. "issues": "https://github.com/yansongda/pay/issues",
  8260. "source": "https://github.com/yansongda/pay"
  8261. },
  8262. "time": "2023-06-27T09:54:37+00:00"
  8263. },
  8264. {
  8265. "name": "yansongda/supports",
  8266. "version": "v4.0.3",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/yansongda/supports.git",
  8270. "reference": "73e01ed827202b33395c0827943410f6dbd790a4"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/yansongda/supports/zipball/73e01ed827202b33395c0827943410f6dbd790a4",
  8275. "reference": "73e01ed827202b33395c0827943410f6dbd790a4",
  8276. "shasum": ""
  8277. },
  8278. "require": {
  8279. "php": ">=8.0"
  8280. },
  8281. "require-dev": {
  8282. "friendsofphp/php-cs-fixer": "^3.0",
  8283. "mockery/mockery": "^1.4",
  8284. "phpstan/phpstan": "^1.1.0",
  8285. "phpunit/phpunit": "^9.0"
  8286. },
  8287. "suggest": {
  8288. "monolog/monolog": "Use logger",
  8289. "symfony/console": "Use stdout logger"
  8290. },
  8291. "type": "library",
  8292. "autoload": {
  8293. "files": [
  8294. "src/Functions.php"
  8295. ],
  8296. "psr-4": {
  8297. "Yansongda\\Supports\\": "src/"
  8298. }
  8299. },
  8300. "notification-url": "https://packagist.org/downloads/",
  8301. "license": [
  8302. "MIT"
  8303. ],
  8304. "authors": [
  8305. {
  8306. "name": "yansongda",
  8307. "email": "me@yansongda.cn"
  8308. }
  8309. ],
  8310. "description": "common components",
  8311. "keywords": [
  8312. "array",
  8313. "collection",
  8314. "config",
  8315. "support"
  8316. ],
  8317. "support": {
  8318. "issues": "https://github.com/yansongda/supports/issues",
  8319. "source": "https://github.com/yansongda/supports"
  8320. },
  8321. "time": "2023-12-23T15:04:07+00:00"
  8322. }
  8323. ],
  8324. "packages-dev": [
  8325. {
  8326. "name": "doctrine/instantiator",
  8327. "version": "1.5.0",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/doctrine/instantiator.git",
  8331. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8336. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "php": "^7.1 || ^8.0"
  8341. },
  8342. "require-dev": {
  8343. "doctrine/coding-standard": "^9 || ^11",
  8344. "ext-pdo": "*",
  8345. "ext-phar": "*",
  8346. "phpbench/phpbench": "^0.16 || ^1",
  8347. "phpstan/phpstan": "^1.4",
  8348. "phpstan/phpstan-phpunit": "^1",
  8349. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8350. "vimeo/psalm": "^4.30 || ^5.4"
  8351. },
  8352. "type": "library",
  8353. "autoload": {
  8354. "psr-4": {
  8355. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8356. }
  8357. },
  8358. "notification-url": "https://packagist.org/downloads/",
  8359. "license": [
  8360. "MIT"
  8361. ],
  8362. "authors": [
  8363. {
  8364. "name": "Marco Pivetta",
  8365. "email": "ocramius@gmail.com",
  8366. "homepage": "https://ocramius.github.io/"
  8367. }
  8368. ],
  8369. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8370. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8371. "keywords": [
  8372. "constructor",
  8373. "instantiate"
  8374. ],
  8375. "support": {
  8376. "issues": "https://github.com/doctrine/instantiator/issues",
  8377. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8378. },
  8379. "funding": [
  8380. {
  8381. "url": "https://www.doctrine-project.org/sponsorship.html",
  8382. "type": "custom"
  8383. },
  8384. {
  8385. "url": "https://www.patreon.com/phpdoctrine",
  8386. "type": "patreon"
  8387. },
  8388. {
  8389. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8390. "type": "tidelift"
  8391. }
  8392. ],
  8393. "time": "2022-12-30T00:15:36+00:00"
  8394. },
  8395. {
  8396. "name": "facade/flare-client-php",
  8397. "version": "1.10.0",
  8398. "source": {
  8399. "type": "git",
  8400. "url": "https://github.com/facade/flare-client-php.git",
  8401. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8402. },
  8403. "dist": {
  8404. "type": "zip",
  8405. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8406. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8407. "shasum": ""
  8408. },
  8409. "require": {
  8410. "facade/ignition-contracts": "~1.0",
  8411. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8412. "php": "^7.1|^8.0",
  8413. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8414. "symfony/mime": "^3.4|^4.0|^5.1",
  8415. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8416. },
  8417. "require-dev": {
  8418. "friendsofphp/php-cs-fixer": "^2.14",
  8419. "phpunit/phpunit": "^7.5",
  8420. "spatie/phpunit-snapshot-assertions": "^2.0"
  8421. },
  8422. "type": "library",
  8423. "extra": {
  8424. "branch-alias": {
  8425. "dev-master": "1.0-dev"
  8426. }
  8427. },
  8428. "autoload": {
  8429. "files": [
  8430. "src/helpers.php"
  8431. ],
  8432. "psr-4": {
  8433. "Facade\\FlareClient\\": "src"
  8434. }
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "description": "Send PHP errors to Flare",
  8441. "homepage": "https://github.com/facade/flare-client-php",
  8442. "keywords": [
  8443. "exception",
  8444. "facade",
  8445. "flare",
  8446. "reporting"
  8447. ],
  8448. "support": {
  8449. "issues": "https://github.com/facade/flare-client-php/issues",
  8450. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://github.com/spatie",
  8455. "type": "github"
  8456. }
  8457. ],
  8458. "time": "2022-08-09T11:23:57+00:00"
  8459. },
  8460. {
  8461. "name": "facade/ignition",
  8462. "version": "2.17.7",
  8463. "source": {
  8464. "type": "git",
  8465. "url": "https://github.com/facade/ignition.git",
  8466. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8467. },
  8468. "dist": {
  8469. "type": "zip",
  8470. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8471. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8472. "shasum": ""
  8473. },
  8474. "require": {
  8475. "ext-curl": "*",
  8476. "ext-json": "*",
  8477. "ext-mbstring": "*",
  8478. "facade/flare-client-php": "^1.9.1",
  8479. "facade/ignition-contracts": "^1.0.2",
  8480. "illuminate/support": "^7.0|^8.0",
  8481. "monolog/monolog": "^2.0",
  8482. "php": "^7.2.5|^8.0",
  8483. "symfony/console": "^5.0",
  8484. "symfony/var-dumper": "^5.0"
  8485. },
  8486. "require-dev": {
  8487. "friendsofphp/php-cs-fixer": "^2.14",
  8488. "livewire/livewire": "^2.4",
  8489. "mockery/mockery": "^1.3",
  8490. "orchestra/testbench": "^5.0|^6.0",
  8491. "psalm/plugin-laravel": "^1.2"
  8492. },
  8493. "suggest": {
  8494. "laravel/telescope": "^3.1"
  8495. },
  8496. "type": "library",
  8497. "extra": {
  8498. "branch-alias": {
  8499. "dev-master": "2.x-dev"
  8500. },
  8501. "laravel": {
  8502. "providers": [
  8503. "Facade\\Ignition\\IgnitionServiceProvider"
  8504. ],
  8505. "aliases": {
  8506. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8507. }
  8508. }
  8509. },
  8510. "autoload": {
  8511. "files": [
  8512. "src/helpers.php"
  8513. ],
  8514. "psr-4": {
  8515. "Facade\\Ignition\\": "src"
  8516. }
  8517. },
  8518. "notification-url": "https://packagist.org/downloads/",
  8519. "license": [
  8520. "MIT"
  8521. ],
  8522. "description": "A beautiful error page for Laravel applications.",
  8523. "homepage": "https://github.com/facade/ignition",
  8524. "keywords": [
  8525. "error",
  8526. "flare",
  8527. "laravel",
  8528. "page"
  8529. ],
  8530. "support": {
  8531. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8532. "forum": "https://twitter.com/flareappio",
  8533. "issues": "https://github.com/facade/ignition/issues",
  8534. "source": "https://github.com/facade/ignition"
  8535. },
  8536. "time": "2023-01-26T12:34:59+00:00"
  8537. },
  8538. {
  8539. "name": "facade/ignition-contracts",
  8540. "version": "1.0.2",
  8541. "source": {
  8542. "type": "git",
  8543. "url": "https://github.com/facade/ignition-contracts.git",
  8544. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8545. },
  8546. "dist": {
  8547. "type": "zip",
  8548. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8549. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8550. "shasum": ""
  8551. },
  8552. "require": {
  8553. "php": "^7.3|^8.0"
  8554. },
  8555. "require-dev": {
  8556. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8557. "phpunit/phpunit": "^9.3.11",
  8558. "vimeo/psalm": "^3.17.1"
  8559. },
  8560. "type": "library",
  8561. "autoload": {
  8562. "psr-4": {
  8563. "Facade\\IgnitionContracts\\": "src"
  8564. }
  8565. },
  8566. "notification-url": "https://packagist.org/downloads/",
  8567. "license": [
  8568. "MIT"
  8569. ],
  8570. "authors": [
  8571. {
  8572. "name": "Freek Van der Herten",
  8573. "email": "freek@spatie.be",
  8574. "homepage": "https://flareapp.io",
  8575. "role": "Developer"
  8576. }
  8577. ],
  8578. "description": "Solution contracts for Ignition",
  8579. "homepage": "https://github.com/facade/ignition-contracts",
  8580. "keywords": [
  8581. "contracts",
  8582. "flare",
  8583. "ignition"
  8584. ],
  8585. "support": {
  8586. "issues": "https://github.com/facade/ignition-contracts/issues",
  8587. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8588. },
  8589. "time": "2020-10-16T08:27:54+00:00"
  8590. },
  8591. {
  8592. "name": "fakerphp/faker",
  8593. "version": "v1.23.0",
  8594. "source": {
  8595. "type": "git",
  8596. "url": "https://github.com/FakerPHP/Faker.git",
  8597. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8598. },
  8599. "dist": {
  8600. "type": "zip",
  8601. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8602. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8603. "shasum": ""
  8604. },
  8605. "require": {
  8606. "php": "^7.4 || ^8.0",
  8607. "psr/container": "^1.0 || ^2.0",
  8608. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8609. },
  8610. "conflict": {
  8611. "fzaninotto/faker": "*"
  8612. },
  8613. "require-dev": {
  8614. "bamarni/composer-bin-plugin": "^1.4.1",
  8615. "doctrine/persistence": "^1.3 || ^2.0",
  8616. "ext-intl": "*",
  8617. "phpunit/phpunit": "^9.5.26",
  8618. "symfony/phpunit-bridge": "^5.4.16"
  8619. },
  8620. "suggest": {
  8621. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8622. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8623. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8624. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8625. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8626. },
  8627. "type": "library",
  8628. "extra": {
  8629. "branch-alias": {
  8630. "dev-main": "v1.21-dev"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "psr-4": {
  8635. "Faker\\": "src/Faker/"
  8636. }
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "MIT"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "François Zaninotto"
  8645. }
  8646. ],
  8647. "description": "Faker is a PHP library that generates fake data for you.",
  8648. "keywords": [
  8649. "data",
  8650. "faker",
  8651. "fixtures"
  8652. ],
  8653. "support": {
  8654. "issues": "https://github.com/FakerPHP/Faker/issues",
  8655. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8656. },
  8657. "time": "2023-06-12T08:44:38+00:00"
  8658. },
  8659. {
  8660. "name": "filp/whoops",
  8661. "version": "2.15.4",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/filp/whoops.git",
  8665. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8670. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8671. "shasum": ""
  8672. },
  8673. "require": {
  8674. "php": "^5.5.9 || ^7.0 || ^8.0",
  8675. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8676. },
  8677. "require-dev": {
  8678. "mockery/mockery": "^0.9 || ^1.0",
  8679. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8680. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8681. },
  8682. "suggest": {
  8683. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8684. "whoops/soap": "Formats errors as SOAP responses"
  8685. },
  8686. "type": "library",
  8687. "extra": {
  8688. "branch-alias": {
  8689. "dev-master": "2.7-dev"
  8690. }
  8691. },
  8692. "autoload": {
  8693. "psr-4": {
  8694. "Whoops\\": "src/Whoops/"
  8695. }
  8696. },
  8697. "notification-url": "https://packagist.org/downloads/",
  8698. "license": [
  8699. "MIT"
  8700. ],
  8701. "authors": [
  8702. {
  8703. "name": "Filipe Dobreira",
  8704. "homepage": "https://github.com/filp",
  8705. "role": "Developer"
  8706. }
  8707. ],
  8708. "description": "php error handling for cool kids",
  8709. "homepage": "https://filp.github.io/whoops/",
  8710. "keywords": [
  8711. "error",
  8712. "exception",
  8713. "handling",
  8714. "library",
  8715. "throwable",
  8716. "whoops"
  8717. ],
  8718. "support": {
  8719. "issues": "https://github.com/filp/whoops/issues",
  8720. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8721. },
  8722. "funding": [
  8723. {
  8724. "url": "https://github.com/denis-sokolov",
  8725. "type": "github"
  8726. }
  8727. ],
  8728. "time": "2023-11-03T12:00:00+00:00"
  8729. },
  8730. {
  8731. "name": "hamcrest/hamcrest-php",
  8732. "version": "v2.0.1",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8736. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8741. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": "^5.3|^7.0|^8.0"
  8746. },
  8747. "replace": {
  8748. "cordoval/hamcrest-php": "*",
  8749. "davedevelopment/hamcrest-php": "*",
  8750. "kodova/hamcrest-php": "*"
  8751. },
  8752. "require-dev": {
  8753. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8754. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8755. },
  8756. "type": "library",
  8757. "extra": {
  8758. "branch-alias": {
  8759. "dev-master": "2.1-dev"
  8760. }
  8761. },
  8762. "autoload": {
  8763. "classmap": [
  8764. "hamcrest"
  8765. ]
  8766. },
  8767. "notification-url": "https://packagist.org/downloads/",
  8768. "license": [
  8769. "BSD-3-Clause"
  8770. ],
  8771. "description": "This is the PHP port of Hamcrest Matchers",
  8772. "keywords": [
  8773. "test"
  8774. ],
  8775. "support": {
  8776. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8777. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8778. },
  8779. "time": "2020-07-09T08:09:16+00:00"
  8780. },
  8781. {
  8782. "name": "mockery/mockery",
  8783. "version": "1.6.7",
  8784. "source": {
  8785. "type": "git",
  8786. "url": "https://github.com/mockery/mockery.git",
  8787. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06"
  8788. },
  8789. "dist": {
  8790. "type": "zip",
  8791. "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  8792. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  8793. "shasum": ""
  8794. },
  8795. "require": {
  8796. "hamcrest/hamcrest-php": "^2.0.1",
  8797. "lib-pcre": ">=7.0",
  8798. "php": ">=7.3"
  8799. },
  8800. "conflict": {
  8801. "phpunit/phpunit": "<8.0"
  8802. },
  8803. "require-dev": {
  8804. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8805. "symplify/easy-coding-standard": "^12.0.8"
  8806. },
  8807. "type": "library",
  8808. "autoload": {
  8809. "files": [
  8810. "library/helpers.php",
  8811. "library/Mockery.php"
  8812. ],
  8813. "psr-4": {
  8814. "Mockery\\": "library/Mockery"
  8815. }
  8816. },
  8817. "notification-url": "https://packagist.org/downloads/",
  8818. "license": [
  8819. "BSD-3-Clause"
  8820. ],
  8821. "authors": [
  8822. {
  8823. "name": "Pádraic Brady",
  8824. "email": "padraic.brady@gmail.com",
  8825. "homepage": "https://github.com/padraic",
  8826. "role": "Author"
  8827. },
  8828. {
  8829. "name": "Dave Marshall",
  8830. "email": "dave.marshall@atstsolutions.co.uk",
  8831. "homepage": "https://davedevelopment.co.uk",
  8832. "role": "Developer"
  8833. },
  8834. {
  8835. "name": "Nathanael Esayeas",
  8836. "email": "nathanael.esayeas@protonmail.com",
  8837. "homepage": "https://github.com/ghostwriter",
  8838. "role": "Lead Developer"
  8839. }
  8840. ],
  8841. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8842. "homepage": "https://github.com/mockery/mockery",
  8843. "keywords": [
  8844. "BDD",
  8845. "TDD",
  8846. "library",
  8847. "mock",
  8848. "mock objects",
  8849. "mockery",
  8850. "stub",
  8851. "test",
  8852. "test double",
  8853. "testing"
  8854. ],
  8855. "support": {
  8856. "docs": "https://docs.mockery.io/",
  8857. "issues": "https://github.com/mockery/mockery/issues",
  8858. "rss": "https://github.com/mockery/mockery/releases.atom",
  8859. "security": "https://github.com/mockery/mockery/security/advisories",
  8860. "source": "https://github.com/mockery/mockery"
  8861. },
  8862. "time": "2023-12-10T02:24:34+00:00"
  8863. },
  8864. {
  8865. "name": "myclabs/deep-copy",
  8866. "version": "1.11.1",
  8867. "source": {
  8868. "type": "git",
  8869. "url": "https://github.com/myclabs/DeepCopy.git",
  8870. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8871. },
  8872. "dist": {
  8873. "type": "zip",
  8874. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8875. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8876. "shasum": ""
  8877. },
  8878. "require": {
  8879. "php": "^7.1 || ^8.0"
  8880. },
  8881. "conflict": {
  8882. "doctrine/collections": "<1.6.8",
  8883. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8884. },
  8885. "require-dev": {
  8886. "doctrine/collections": "^1.6.8",
  8887. "doctrine/common": "^2.13.3 || ^3.2.2",
  8888. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8889. },
  8890. "type": "library",
  8891. "autoload": {
  8892. "files": [
  8893. "src/DeepCopy/deep_copy.php"
  8894. ],
  8895. "psr-4": {
  8896. "DeepCopy\\": "src/DeepCopy/"
  8897. }
  8898. },
  8899. "notification-url": "https://packagist.org/downloads/",
  8900. "license": [
  8901. "MIT"
  8902. ],
  8903. "description": "Create deep copies (clones) of your objects",
  8904. "keywords": [
  8905. "clone",
  8906. "copy",
  8907. "duplicate",
  8908. "object",
  8909. "object graph"
  8910. ],
  8911. "support": {
  8912. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8913. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8914. },
  8915. "funding": [
  8916. {
  8917. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8918. "type": "tidelift"
  8919. }
  8920. ],
  8921. "time": "2023-03-08T13:26:56+00:00"
  8922. },
  8923. {
  8924. "name": "nunomaduro/collision",
  8925. "version": "v5.11.0",
  8926. "source": {
  8927. "type": "git",
  8928. "url": "https://github.com/nunomaduro/collision.git",
  8929. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8930. },
  8931. "dist": {
  8932. "type": "zip",
  8933. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8934. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8935. "shasum": ""
  8936. },
  8937. "require": {
  8938. "facade/ignition-contracts": "^1.0",
  8939. "filp/whoops": "^2.14.3",
  8940. "php": "^7.3 || ^8.0",
  8941. "symfony/console": "^5.0"
  8942. },
  8943. "require-dev": {
  8944. "brianium/paratest": "^6.1",
  8945. "fideloper/proxy": "^4.4.1",
  8946. "fruitcake/laravel-cors": "^2.0.3",
  8947. "laravel/framework": "8.x-dev",
  8948. "nunomaduro/larastan": "^0.6.2",
  8949. "nunomaduro/mock-final-classes": "^1.0",
  8950. "orchestra/testbench": "^6.0",
  8951. "phpstan/phpstan": "^0.12.64",
  8952. "phpunit/phpunit": "^9.5.0"
  8953. },
  8954. "type": "library",
  8955. "extra": {
  8956. "laravel": {
  8957. "providers": [
  8958. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8959. ]
  8960. }
  8961. },
  8962. "autoload": {
  8963. "psr-4": {
  8964. "NunoMaduro\\Collision\\": "src/"
  8965. }
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "MIT"
  8970. ],
  8971. "authors": [
  8972. {
  8973. "name": "Nuno Maduro",
  8974. "email": "enunomaduro@gmail.com"
  8975. }
  8976. ],
  8977. "description": "Cli error handling for console/command-line PHP applications.",
  8978. "keywords": [
  8979. "artisan",
  8980. "cli",
  8981. "command-line",
  8982. "console",
  8983. "error",
  8984. "handling",
  8985. "laravel",
  8986. "laravel-zero",
  8987. "php",
  8988. "symfony"
  8989. ],
  8990. "support": {
  8991. "issues": "https://github.com/nunomaduro/collision/issues",
  8992. "source": "https://github.com/nunomaduro/collision"
  8993. },
  8994. "funding": [
  8995. {
  8996. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8997. "type": "custom"
  8998. },
  8999. {
  9000. "url": "https://github.com/nunomaduro",
  9001. "type": "github"
  9002. },
  9003. {
  9004. "url": "https://www.patreon.com/nunomaduro",
  9005. "type": "patreon"
  9006. }
  9007. ],
  9008. "time": "2022-01-10T16:22:52+00:00"
  9009. },
  9010. {
  9011. "name": "phar-io/manifest",
  9012. "version": "2.0.3",
  9013. "source": {
  9014. "type": "git",
  9015. "url": "https://github.com/phar-io/manifest.git",
  9016. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9017. },
  9018. "dist": {
  9019. "type": "zip",
  9020. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9021. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9022. "shasum": ""
  9023. },
  9024. "require": {
  9025. "ext-dom": "*",
  9026. "ext-phar": "*",
  9027. "ext-xmlwriter": "*",
  9028. "phar-io/version": "^3.0.1",
  9029. "php": "^7.2 || ^8.0"
  9030. },
  9031. "type": "library",
  9032. "extra": {
  9033. "branch-alias": {
  9034. "dev-master": "2.0.x-dev"
  9035. }
  9036. },
  9037. "autoload": {
  9038. "classmap": [
  9039. "src/"
  9040. ]
  9041. },
  9042. "notification-url": "https://packagist.org/downloads/",
  9043. "license": [
  9044. "BSD-3-Clause"
  9045. ],
  9046. "authors": [
  9047. {
  9048. "name": "Arne Blankerts",
  9049. "email": "arne@blankerts.de",
  9050. "role": "Developer"
  9051. },
  9052. {
  9053. "name": "Sebastian Heuer",
  9054. "email": "sebastian@phpeople.de",
  9055. "role": "Developer"
  9056. },
  9057. {
  9058. "name": "Sebastian Bergmann",
  9059. "email": "sebastian@phpunit.de",
  9060. "role": "Developer"
  9061. }
  9062. ],
  9063. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9064. "support": {
  9065. "issues": "https://github.com/phar-io/manifest/issues",
  9066. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9067. },
  9068. "time": "2021-07-20T11:28:43+00:00"
  9069. },
  9070. {
  9071. "name": "phar-io/version",
  9072. "version": "3.2.1",
  9073. "source": {
  9074. "type": "git",
  9075. "url": "https://github.com/phar-io/version.git",
  9076. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9077. },
  9078. "dist": {
  9079. "type": "zip",
  9080. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9081. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9082. "shasum": ""
  9083. },
  9084. "require": {
  9085. "php": "^7.2 || ^8.0"
  9086. },
  9087. "type": "library",
  9088. "autoload": {
  9089. "classmap": [
  9090. "src/"
  9091. ]
  9092. },
  9093. "notification-url": "https://packagist.org/downloads/",
  9094. "license": [
  9095. "BSD-3-Clause"
  9096. ],
  9097. "authors": [
  9098. {
  9099. "name": "Arne Blankerts",
  9100. "email": "arne@blankerts.de",
  9101. "role": "Developer"
  9102. },
  9103. {
  9104. "name": "Sebastian Heuer",
  9105. "email": "sebastian@phpeople.de",
  9106. "role": "Developer"
  9107. },
  9108. {
  9109. "name": "Sebastian Bergmann",
  9110. "email": "sebastian@phpunit.de",
  9111. "role": "Developer"
  9112. }
  9113. ],
  9114. "description": "Library for handling version information and constraints",
  9115. "support": {
  9116. "issues": "https://github.com/phar-io/version/issues",
  9117. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9118. },
  9119. "time": "2022-02-21T01:04:05+00:00"
  9120. },
  9121. {
  9122. "name": "phpunit/php-code-coverage",
  9123. "version": "9.2.30",
  9124. "source": {
  9125. "type": "git",
  9126. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9127. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  9128. },
  9129. "dist": {
  9130. "type": "zip",
  9131. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9132. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9133. "shasum": ""
  9134. },
  9135. "require": {
  9136. "ext-dom": "*",
  9137. "ext-libxml": "*",
  9138. "ext-xmlwriter": "*",
  9139. "nikic/php-parser": "^4.18 || ^5.0",
  9140. "php": ">=7.3",
  9141. "phpunit/php-file-iterator": "^3.0.3",
  9142. "phpunit/php-text-template": "^2.0.2",
  9143. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9144. "sebastian/complexity": "^2.0",
  9145. "sebastian/environment": "^5.1.2",
  9146. "sebastian/lines-of-code": "^1.0.3",
  9147. "sebastian/version": "^3.0.1",
  9148. "theseer/tokenizer": "^1.2.0"
  9149. },
  9150. "require-dev": {
  9151. "phpunit/phpunit": "^9.3"
  9152. },
  9153. "suggest": {
  9154. "ext-pcov": "PHP extension that provides line coverage",
  9155. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9156. },
  9157. "type": "library",
  9158. "extra": {
  9159. "branch-alias": {
  9160. "dev-master": "9.2-dev"
  9161. }
  9162. },
  9163. "autoload": {
  9164. "classmap": [
  9165. "src/"
  9166. ]
  9167. },
  9168. "notification-url": "https://packagist.org/downloads/",
  9169. "license": [
  9170. "BSD-3-Clause"
  9171. ],
  9172. "authors": [
  9173. {
  9174. "name": "Sebastian Bergmann",
  9175. "email": "sebastian@phpunit.de",
  9176. "role": "lead"
  9177. }
  9178. ],
  9179. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9180. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9181. "keywords": [
  9182. "coverage",
  9183. "testing",
  9184. "xunit"
  9185. ],
  9186. "support": {
  9187. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9188. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9189. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://github.com/sebastianbergmann",
  9194. "type": "github"
  9195. }
  9196. ],
  9197. "time": "2023-12-22T06:47:57+00:00"
  9198. },
  9199. {
  9200. "name": "phpunit/php-file-iterator",
  9201. "version": "3.0.6",
  9202. "source": {
  9203. "type": "git",
  9204. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9205. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9206. },
  9207. "dist": {
  9208. "type": "zip",
  9209. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9210. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9211. "shasum": ""
  9212. },
  9213. "require": {
  9214. "php": ">=7.3"
  9215. },
  9216. "require-dev": {
  9217. "phpunit/phpunit": "^9.3"
  9218. },
  9219. "type": "library",
  9220. "extra": {
  9221. "branch-alias": {
  9222. "dev-master": "3.0-dev"
  9223. }
  9224. },
  9225. "autoload": {
  9226. "classmap": [
  9227. "src/"
  9228. ]
  9229. },
  9230. "notification-url": "https://packagist.org/downloads/",
  9231. "license": [
  9232. "BSD-3-Clause"
  9233. ],
  9234. "authors": [
  9235. {
  9236. "name": "Sebastian Bergmann",
  9237. "email": "sebastian@phpunit.de",
  9238. "role": "lead"
  9239. }
  9240. ],
  9241. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9242. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9243. "keywords": [
  9244. "filesystem",
  9245. "iterator"
  9246. ],
  9247. "support": {
  9248. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9249. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9250. },
  9251. "funding": [
  9252. {
  9253. "url": "https://github.com/sebastianbergmann",
  9254. "type": "github"
  9255. }
  9256. ],
  9257. "time": "2021-12-02T12:48:52+00:00"
  9258. },
  9259. {
  9260. "name": "phpunit/php-invoker",
  9261. "version": "3.1.1",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9265. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9270. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9271. "shasum": ""
  9272. },
  9273. "require": {
  9274. "php": ">=7.3"
  9275. },
  9276. "require-dev": {
  9277. "ext-pcntl": "*",
  9278. "phpunit/phpunit": "^9.3"
  9279. },
  9280. "suggest": {
  9281. "ext-pcntl": "*"
  9282. },
  9283. "type": "library",
  9284. "extra": {
  9285. "branch-alias": {
  9286. "dev-master": "3.1-dev"
  9287. }
  9288. },
  9289. "autoload": {
  9290. "classmap": [
  9291. "src/"
  9292. ]
  9293. },
  9294. "notification-url": "https://packagist.org/downloads/",
  9295. "license": [
  9296. "BSD-3-Clause"
  9297. ],
  9298. "authors": [
  9299. {
  9300. "name": "Sebastian Bergmann",
  9301. "email": "sebastian@phpunit.de",
  9302. "role": "lead"
  9303. }
  9304. ],
  9305. "description": "Invoke callables with a timeout",
  9306. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9307. "keywords": [
  9308. "process"
  9309. ],
  9310. "support": {
  9311. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9312. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9313. },
  9314. "funding": [
  9315. {
  9316. "url": "https://github.com/sebastianbergmann",
  9317. "type": "github"
  9318. }
  9319. ],
  9320. "time": "2020-09-28T05:58:55+00:00"
  9321. },
  9322. {
  9323. "name": "phpunit/php-text-template",
  9324. "version": "2.0.4",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9328. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9333. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "php": ">=7.3"
  9338. },
  9339. "require-dev": {
  9340. "phpunit/phpunit": "^9.3"
  9341. },
  9342. "type": "library",
  9343. "extra": {
  9344. "branch-alias": {
  9345. "dev-master": "2.0-dev"
  9346. }
  9347. },
  9348. "autoload": {
  9349. "classmap": [
  9350. "src/"
  9351. ]
  9352. },
  9353. "notification-url": "https://packagist.org/downloads/",
  9354. "license": [
  9355. "BSD-3-Clause"
  9356. ],
  9357. "authors": [
  9358. {
  9359. "name": "Sebastian Bergmann",
  9360. "email": "sebastian@phpunit.de",
  9361. "role": "lead"
  9362. }
  9363. ],
  9364. "description": "Simple template engine.",
  9365. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9366. "keywords": [
  9367. "template"
  9368. ],
  9369. "support": {
  9370. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9371. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9372. },
  9373. "funding": [
  9374. {
  9375. "url": "https://github.com/sebastianbergmann",
  9376. "type": "github"
  9377. }
  9378. ],
  9379. "time": "2020-10-26T05:33:50+00:00"
  9380. },
  9381. {
  9382. "name": "phpunit/php-timer",
  9383. "version": "5.0.3",
  9384. "source": {
  9385. "type": "git",
  9386. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9387. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9388. },
  9389. "dist": {
  9390. "type": "zip",
  9391. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9392. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9393. "shasum": ""
  9394. },
  9395. "require": {
  9396. "php": ">=7.3"
  9397. },
  9398. "require-dev": {
  9399. "phpunit/phpunit": "^9.3"
  9400. },
  9401. "type": "library",
  9402. "extra": {
  9403. "branch-alias": {
  9404. "dev-master": "5.0-dev"
  9405. }
  9406. },
  9407. "autoload": {
  9408. "classmap": [
  9409. "src/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "BSD-3-Clause"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Sebastian Bergmann",
  9419. "email": "sebastian@phpunit.de",
  9420. "role": "lead"
  9421. }
  9422. ],
  9423. "description": "Utility class for timing",
  9424. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9425. "keywords": [
  9426. "timer"
  9427. ],
  9428. "support": {
  9429. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9430. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9431. },
  9432. "funding": [
  9433. {
  9434. "url": "https://github.com/sebastianbergmann",
  9435. "type": "github"
  9436. }
  9437. ],
  9438. "time": "2020-10-26T13:16:10+00:00"
  9439. },
  9440. {
  9441. "name": "phpunit/phpunit",
  9442. "version": "9.6.15",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9446. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9451. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "doctrine/instantiator": "^1.3.1 || ^2",
  9456. "ext-dom": "*",
  9457. "ext-json": "*",
  9458. "ext-libxml": "*",
  9459. "ext-mbstring": "*",
  9460. "ext-xml": "*",
  9461. "ext-xmlwriter": "*",
  9462. "myclabs/deep-copy": "^1.10.1",
  9463. "phar-io/manifest": "^2.0.3",
  9464. "phar-io/version": "^3.0.2",
  9465. "php": ">=7.3",
  9466. "phpunit/php-code-coverage": "^9.2.28",
  9467. "phpunit/php-file-iterator": "^3.0.5",
  9468. "phpunit/php-invoker": "^3.1.1",
  9469. "phpunit/php-text-template": "^2.0.3",
  9470. "phpunit/php-timer": "^5.0.2",
  9471. "sebastian/cli-parser": "^1.0.1",
  9472. "sebastian/code-unit": "^1.0.6",
  9473. "sebastian/comparator": "^4.0.8",
  9474. "sebastian/diff": "^4.0.3",
  9475. "sebastian/environment": "^5.1.3",
  9476. "sebastian/exporter": "^4.0.5",
  9477. "sebastian/global-state": "^5.0.1",
  9478. "sebastian/object-enumerator": "^4.0.3",
  9479. "sebastian/resource-operations": "^3.0.3",
  9480. "sebastian/type": "^3.2",
  9481. "sebastian/version": "^3.0.2"
  9482. },
  9483. "suggest": {
  9484. "ext-soap": "To be able to generate mocks based on WSDL files",
  9485. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9486. },
  9487. "bin": [
  9488. "phpunit"
  9489. ],
  9490. "type": "library",
  9491. "extra": {
  9492. "branch-alias": {
  9493. "dev-master": "9.6-dev"
  9494. }
  9495. },
  9496. "autoload": {
  9497. "files": [
  9498. "src/Framework/Assert/Functions.php"
  9499. ],
  9500. "classmap": [
  9501. "src/"
  9502. ]
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "BSD-3-Clause"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "Sebastian Bergmann",
  9511. "email": "sebastian@phpunit.de",
  9512. "role": "lead"
  9513. }
  9514. ],
  9515. "description": "The PHP Unit Testing framework.",
  9516. "homepage": "https://phpunit.de/",
  9517. "keywords": [
  9518. "phpunit",
  9519. "testing",
  9520. "xunit"
  9521. ],
  9522. "support": {
  9523. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9524. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9525. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9526. },
  9527. "funding": [
  9528. {
  9529. "url": "https://phpunit.de/sponsors.html",
  9530. "type": "custom"
  9531. },
  9532. {
  9533. "url": "https://github.com/sebastianbergmann",
  9534. "type": "github"
  9535. },
  9536. {
  9537. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9538. "type": "tidelift"
  9539. }
  9540. ],
  9541. "time": "2023-12-01T16:55:19+00:00"
  9542. },
  9543. {
  9544. "name": "sebastian/cli-parser",
  9545. "version": "1.0.1",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9549. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9554. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "php": ">=7.3"
  9559. },
  9560. "require-dev": {
  9561. "phpunit/phpunit": "^9.3"
  9562. },
  9563. "type": "library",
  9564. "extra": {
  9565. "branch-alias": {
  9566. "dev-master": "1.0-dev"
  9567. }
  9568. },
  9569. "autoload": {
  9570. "classmap": [
  9571. "src/"
  9572. ]
  9573. },
  9574. "notification-url": "https://packagist.org/downloads/",
  9575. "license": [
  9576. "BSD-3-Clause"
  9577. ],
  9578. "authors": [
  9579. {
  9580. "name": "Sebastian Bergmann",
  9581. "email": "sebastian@phpunit.de",
  9582. "role": "lead"
  9583. }
  9584. ],
  9585. "description": "Library for parsing CLI options",
  9586. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9587. "support": {
  9588. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9589. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9590. },
  9591. "funding": [
  9592. {
  9593. "url": "https://github.com/sebastianbergmann",
  9594. "type": "github"
  9595. }
  9596. ],
  9597. "time": "2020-09-28T06:08:49+00:00"
  9598. },
  9599. {
  9600. "name": "sebastian/code-unit",
  9601. "version": "1.0.8",
  9602. "source": {
  9603. "type": "git",
  9604. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9605. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9606. },
  9607. "dist": {
  9608. "type": "zip",
  9609. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9610. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9611. "shasum": ""
  9612. },
  9613. "require": {
  9614. "php": ">=7.3"
  9615. },
  9616. "require-dev": {
  9617. "phpunit/phpunit": "^9.3"
  9618. },
  9619. "type": "library",
  9620. "extra": {
  9621. "branch-alias": {
  9622. "dev-master": "1.0-dev"
  9623. }
  9624. },
  9625. "autoload": {
  9626. "classmap": [
  9627. "src/"
  9628. ]
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "license": [
  9632. "BSD-3-Clause"
  9633. ],
  9634. "authors": [
  9635. {
  9636. "name": "Sebastian Bergmann",
  9637. "email": "sebastian@phpunit.de",
  9638. "role": "lead"
  9639. }
  9640. ],
  9641. "description": "Collection of value objects that represent the PHP code units",
  9642. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9643. "support": {
  9644. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9645. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9646. },
  9647. "funding": [
  9648. {
  9649. "url": "https://github.com/sebastianbergmann",
  9650. "type": "github"
  9651. }
  9652. ],
  9653. "time": "2020-10-26T13:08:54+00:00"
  9654. },
  9655. {
  9656. "name": "sebastian/code-unit-reverse-lookup",
  9657. "version": "2.0.3",
  9658. "source": {
  9659. "type": "git",
  9660. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9661. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9662. },
  9663. "dist": {
  9664. "type": "zip",
  9665. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9666. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9667. "shasum": ""
  9668. },
  9669. "require": {
  9670. "php": ">=7.3"
  9671. },
  9672. "require-dev": {
  9673. "phpunit/phpunit": "^9.3"
  9674. },
  9675. "type": "library",
  9676. "extra": {
  9677. "branch-alias": {
  9678. "dev-master": "2.0-dev"
  9679. }
  9680. },
  9681. "autoload": {
  9682. "classmap": [
  9683. "src/"
  9684. ]
  9685. },
  9686. "notification-url": "https://packagist.org/downloads/",
  9687. "license": [
  9688. "BSD-3-Clause"
  9689. ],
  9690. "authors": [
  9691. {
  9692. "name": "Sebastian Bergmann",
  9693. "email": "sebastian@phpunit.de"
  9694. }
  9695. ],
  9696. "description": "Looks up which function or method a line of code belongs to",
  9697. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9698. "support": {
  9699. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9700. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9701. },
  9702. "funding": [
  9703. {
  9704. "url": "https://github.com/sebastianbergmann",
  9705. "type": "github"
  9706. }
  9707. ],
  9708. "time": "2020-09-28T05:30:19+00:00"
  9709. },
  9710. {
  9711. "name": "sebastian/comparator",
  9712. "version": "4.0.8",
  9713. "source": {
  9714. "type": "git",
  9715. "url": "https://github.com/sebastianbergmann/comparator.git",
  9716. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9717. },
  9718. "dist": {
  9719. "type": "zip",
  9720. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9721. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9722. "shasum": ""
  9723. },
  9724. "require": {
  9725. "php": ">=7.3",
  9726. "sebastian/diff": "^4.0",
  9727. "sebastian/exporter": "^4.0"
  9728. },
  9729. "require-dev": {
  9730. "phpunit/phpunit": "^9.3"
  9731. },
  9732. "type": "library",
  9733. "extra": {
  9734. "branch-alias": {
  9735. "dev-master": "4.0-dev"
  9736. }
  9737. },
  9738. "autoload": {
  9739. "classmap": [
  9740. "src/"
  9741. ]
  9742. },
  9743. "notification-url": "https://packagist.org/downloads/",
  9744. "license": [
  9745. "BSD-3-Clause"
  9746. ],
  9747. "authors": [
  9748. {
  9749. "name": "Sebastian Bergmann",
  9750. "email": "sebastian@phpunit.de"
  9751. },
  9752. {
  9753. "name": "Jeff Welch",
  9754. "email": "whatthejeff@gmail.com"
  9755. },
  9756. {
  9757. "name": "Volker Dusch",
  9758. "email": "github@wallbash.com"
  9759. },
  9760. {
  9761. "name": "Bernhard Schussek",
  9762. "email": "bschussek@2bepublished.at"
  9763. }
  9764. ],
  9765. "description": "Provides the functionality to compare PHP values for equality",
  9766. "homepage": "https://github.com/sebastianbergmann/comparator",
  9767. "keywords": [
  9768. "comparator",
  9769. "compare",
  9770. "equality"
  9771. ],
  9772. "support": {
  9773. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9774. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9775. },
  9776. "funding": [
  9777. {
  9778. "url": "https://github.com/sebastianbergmann",
  9779. "type": "github"
  9780. }
  9781. ],
  9782. "time": "2022-09-14T12:41:17+00:00"
  9783. },
  9784. {
  9785. "name": "sebastian/complexity",
  9786. "version": "2.0.3",
  9787. "source": {
  9788. "type": "git",
  9789. "url": "https://github.com/sebastianbergmann/complexity.git",
  9790. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9791. },
  9792. "dist": {
  9793. "type": "zip",
  9794. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9795. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9796. "shasum": ""
  9797. },
  9798. "require": {
  9799. "nikic/php-parser": "^4.18 || ^5.0",
  9800. "php": ">=7.3"
  9801. },
  9802. "require-dev": {
  9803. "phpunit/phpunit": "^9.3"
  9804. },
  9805. "type": "library",
  9806. "extra": {
  9807. "branch-alias": {
  9808. "dev-master": "2.0-dev"
  9809. }
  9810. },
  9811. "autoload": {
  9812. "classmap": [
  9813. "src/"
  9814. ]
  9815. },
  9816. "notification-url": "https://packagist.org/downloads/",
  9817. "license": [
  9818. "BSD-3-Clause"
  9819. ],
  9820. "authors": [
  9821. {
  9822. "name": "Sebastian Bergmann",
  9823. "email": "sebastian@phpunit.de",
  9824. "role": "lead"
  9825. }
  9826. ],
  9827. "description": "Library for calculating the complexity of PHP code units",
  9828. "homepage": "https://github.com/sebastianbergmann/complexity",
  9829. "support": {
  9830. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9831. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9832. },
  9833. "funding": [
  9834. {
  9835. "url": "https://github.com/sebastianbergmann",
  9836. "type": "github"
  9837. }
  9838. ],
  9839. "time": "2023-12-22T06:19:30+00:00"
  9840. },
  9841. {
  9842. "name": "sebastian/diff",
  9843. "version": "4.0.5",
  9844. "source": {
  9845. "type": "git",
  9846. "url": "https://github.com/sebastianbergmann/diff.git",
  9847. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9848. },
  9849. "dist": {
  9850. "type": "zip",
  9851. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9852. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9853. "shasum": ""
  9854. },
  9855. "require": {
  9856. "php": ">=7.3"
  9857. },
  9858. "require-dev": {
  9859. "phpunit/phpunit": "^9.3",
  9860. "symfony/process": "^4.2 || ^5"
  9861. },
  9862. "type": "library",
  9863. "extra": {
  9864. "branch-alias": {
  9865. "dev-master": "4.0-dev"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "classmap": [
  9870. "src/"
  9871. ]
  9872. },
  9873. "notification-url": "https://packagist.org/downloads/",
  9874. "license": [
  9875. "BSD-3-Clause"
  9876. ],
  9877. "authors": [
  9878. {
  9879. "name": "Sebastian Bergmann",
  9880. "email": "sebastian@phpunit.de"
  9881. },
  9882. {
  9883. "name": "Kore Nordmann",
  9884. "email": "mail@kore-nordmann.de"
  9885. }
  9886. ],
  9887. "description": "Diff implementation",
  9888. "homepage": "https://github.com/sebastianbergmann/diff",
  9889. "keywords": [
  9890. "diff",
  9891. "udiff",
  9892. "unidiff",
  9893. "unified diff"
  9894. ],
  9895. "support": {
  9896. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9897. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9898. },
  9899. "funding": [
  9900. {
  9901. "url": "https://github.com/sebastianbergmann",
  9902. "type": "github"
  9903. }
  9904. ],
  9905. "time": "2023-05-07T05:35:17+00:00"
  9906. },
  9907. {
  9908. "name": "sebastian/environment",
  9909. "version": "5.1.5",
  9910. "source": {
  9911. "type": "git",
  9912. "url": "https://github.com/sebastianbergmann/environment.git",
  9913. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9914. },
  9915. "dist": {
  9916. "type": "zip",
  9917. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9918. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9919. "shasum": ""
  9920. },
  9921. "require": {
  9922. "php": ">=7.3"
  9923. },
  9924. "require-dev": {
  9925. "phpunit/phpunit": "^9.3"
  9926. },
  9927. "suggest": {
  9928. "ext-posix": "*"
  9929. },
  9930. "type": "library",
  9931. "extra": {
  9932. "branch-alias": {
  9933. "dev-master": "5.1-dev"
  9934. }
  9935. },
  9936. "autoload": {
  9937. "classmap": [
  9938. "src/"
  9939. ]
  9940. },
  9941. "notification-url": "https://packagist.org/downloads/",
  9942. "license": [
  9943. "BSD-3-Clause"
  9944. ],
  9945. "authors": [
  9946. {
  9947. "name": "Sebastian Bergmann",
  9948. "email": "sebastian@phpunit.de"
  9949. }
  9950. ],
  9951. "description": "Provides functionality to handle HHVM/PHP environments",
  9952. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9953. "keywords": [
  9954. "Xdebug",
  9955. "environment",
  9956. "hhvm"
  9957. ],
  9958. "support": {
  9959. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9960. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9961. },
  9962. "funding": [
  9963. {
  9964. "url": "https://github.com/sebastianbergmann",
  9965. "type": "github"
  9966. }
  9967. ],
  9968. "time": "2023-02-03T06:03:51+00:00"
  9969. },
  9970. {
  9971. "name": "sebastian/exporter",
  9972. "version": "4.0.5",
  9973. "source": {
  9974. "type": "git",
  9975. "url": "https://github.com/sebastianbergmann/exporter.git",
  9976. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9977. },
  9978. "dist": {
  9979. "type": "zip",
  9980. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9981. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9982. "shasum": ""
  9983. },
  9984. "require": {
  9985. "php": ">=7.3",
  9986. "sebastian/recursion-context": "^4.0"
  9987. },
  9988. "require-dev": {
  9989. "ext-mbstring": "*",
  9990. "phpunit/phpunit": "^9.3"
  9991. },
  9992. "type": "library",
  9993. "extra": {
  9994. "branch-alias": {
  9995. "dev-master": "4.0-dev"
  9996. }
  9997. },
  9998. "autoload": {
  9999. "classmap": [
  10000. "src/"
  10001. ]
  10002. },
  10003. "notification-url": "https://packagist.org/downloads/",
  10004. "license": [
  10005. "BSD-3-Clause"
  10006. ],
  10007. "authors": [
  10008. {
  10009. "name": "Sebastian Bergmann",
  10010. "email": "sebastian@phpunit.de"
  10011. },
  10012. {
  10013. "name": "Jeff Welch",
  10014. "email": "whatthejeff@gmail.com"
  10015. },
  10016. {
  10017. "name": "Volker Dusch",
  10018. "email": "github@wallbash.com"
  10019. },
  10020. {
  10021. "name": "Adam Harvey",
  10022. "email": "aharvey@php.net"
  10023. },
  10024. {
  10025. "name": "Bernhard Schussek",
  10026. "email": "bschussek@gmail.com"
  10027. }
  10028. ],
  10029. "description": "Provides the functionality to export PHP variables for visualization",
  10030. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10031. "keywords": [
  10032. "export",
  10033. "exporter"
  10034. ],
  10035. "support": {
  10036. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10037. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10038. },
  10039. "funding": [
  10040. {
  10041. "url": "https://github.com/sebastianbergmann",
  10042. "type": "github"
  10043. }
  10044. ],
  10045. "time": "2022-09-14T06:03:37+00:00"
  10046. },
  10047. {
  10048. "name": "sebastian/global-state",
  10049. "version": "5.0.6",
  10050. "source": {
  10051. "type": "git",
  10052. "url": "https://github.com/sebastianbergmann/global-state.git",
  10053. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10054. },
  10055. "dist": {
  10056. "type": "zip",
  10057. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10058. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10059. "shasum": ""
  10060. },
  10061. "require": {
  10062. "php": ">=7.3",
  10063. "sebastian/object-reflector": "^2.0",
  10064. "sebastian/recursion-context": "^4.0"
  10065. },
  10066. "require-dev": {
  10067. "ext-dom": "*",
  10068. "phpunit/phpunit": "^9.3"
  10069. },
  10070. "suggest": {
  10071. "ext-uopz": "*"
  10072. },
  10073. "type": "library",
  10074. "extra": {
  10075. "branch-alias": {
  10076. "dev-master": "5.0-dev"
  10077. }
  10078. },
  10079. "autoload": {
  10080. "classmap": [
  10081. "src/"
  10082. ]
  10083. },
  10084. "notification-url": "https://packagist.org/downloads/",
  10085. "license": [
  10086. "BSD-3-Clause"
  10087. ],
  10088. "authors": [
  10089. {
  10090. "name": "Sebastian Bergmann",
  10091. "email": "sebastian@phpunit.de"
  10092. }
  10093. ],
  10094. "description": "Snapshotting of global state",
  10095. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10096. "keywords": [
  10097. "global state"
  10098. ],
  10099. "support": {
  10100. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10101. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10102. },
  10103. "funding": [
  10104. {
  10105. "url": "https://github.com/sebastianbergmann",
  10106. "type": "github"
  10107. }
  10108. ],
  10109. "time": "2023-08-02T09:26:13+00:00"
  10110. },
  10111. {
  10112. "name": "sebastian/lines-of-code",
  10113. "version": "1.0.4",
  10114. "source": {
  10115. "type": "git",
  10116. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10117. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10118. },
  10119. "dist": {
  10120. "type": "zip",
  10121. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10122. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10123. "shasum": ""
  10124. },
  10125. "require": {
  10126. "nikic/php-parser": "^4.18 || ^5.0",
  10127. "php": ">=7.3"
  10128. },
  10129. "require-dev": {
  10130. "phpunit/phpunit": "^9.3"
  10131. },
  10132. "type": "library",
  10133. "extra": {
  10134. "branch-alias": {
  10135. "dev-master": "1.0-dev"
  10136. }
  10137. },
  10138. "autoload": {
  10139. "classmap": [
  10140. "src/"
  10141. ]
  10142. },
  10143. "notification-url": "https://packagist.org/downloads/",
  10144. "license": [
  10145. "BSD-3-Clause"
  10146. ],
  10147. "authors": [
  10148. {
  10149. "name": "Sebastian Bergmann",
  10150. "email": "sebastian@phpunit.de",
  10151. "role": "lead"
  10152. }
  10153. ],
  10154. "description": "Library for counting the lines of code in PHP source code",
  10155. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10156. "support": {
  10157. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10158. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10159. },
  10160. "funding": [
  10161. {
  10162. "url": "https://github.com/sebastianbergmann",
  10163. "type": "github"
  10164. }
  10165. ],
  10166. "time": "2023-12-22T06:20:34+00:00"
  10167. },
  10168. {
  10169. "name": "sebastian/object-enumerator",
  10170. "version": "4.0.4",
  10171. "source": {
  10172. "type": "git",
  10173. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10174. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10175. },
  10176. "dist": {
  10177. "type": "zip",
  10178. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10179. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10180. "shasum": ""
  10181. },
  10182. "require": {
  10183. "php": ">=7.3",
  10184. "sebastian/object-reflector": "^2.0",
  10185. "sebastian/recursion-context": "^4.0"
  10186. },
  10187. "require-dev": {
  10188. "phpunit/phpunit": "^9.3"
  10189. },
  10190. "type": "library",
  10191. "extra": {
  10192. "branch-alias": {
  10193. "dev-master": "4.0-dev"
  10194. }
  10195. },
  10196. "autoload": {
  10197. "classmap": [
  10198. "src/"
  10199. ]
  10200. },
  10201. "notification-url": "https://packagist.org/downloads/",
  10202. "license": [
  10203. "BSD-3-Clause"
  10204. ],
  10205. "authors": [
  10206. {
  10207. "name": "Sebastian Bergmann",
  10208. "email": "sebastian@phpunit.de"
  10209. }
  10210. ],
  10211. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10212. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10213. "support": {
  10214. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10215. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10216. },
  10217. "funding": [
  10218. {
  10219. "url": "https://github.com/sebastianbergmann",
  10220. "type": "github"
  10221. }
  10222. ],
  10223. "time": "2020-10-26T13:12:34+00:00"
  10224. },
  10225. {
  10226. "name": "sebastian/object-reflector",
  10227. "version": "2.0.4",
  10228. "source": {
  10229. "type": "git",
  10230. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10231. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10232. },
  10233. "dist": {
  10234. "type": "zip",
  10235. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10236. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10237. "shasum": ""
  10238. },
  10239. "require": {
  10240. "php": ">=7.3"
  10241. },
  10242. "require-dev": {
  10243. "phpunit/phpunit": "^9.3"
  10244. },
  10245. "type": "library",
  10246. "extra": {
  10247. "branch-alias": {
  10248. "dev-master": "2.0-dev"
  10249. }
  10250. },
  10251. "autoload": {
  10252. "classmap": [
  10253. "src/"
  10254. ]
  10255. },
  10256. "notification-url": "https://packagist.org/downloads/",
  10257. "license": [
  10258. "BSD-3-Clause"
  10259. ],
  10260. "authors": [
  10261. {
  10262. "name": "Sebastian Bergmann",
  10263. "email": "sebastian@phpunit.de"
  10264. }
  10265. ],
  10266. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10267. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10268. "support": {
  10269. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10270. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10271. },
  10272. "funding": [
  10273. {
  10274. "url": "https://github.com/sebastianbergmann",
  10275. "type": "github"
  10276. }
  10277. ],
  10278. "time": "2020-10-26T13:14:26+00:00"
  10279. },
  10280. {
  10281. "name": "sebastian/recursion-context",
  10282. "version": "4.0.5",
  10283. "source": {
  10284. "type": "git",
  10285. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10286. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10287. },
  10288. "dist": {
  10289. "type": "zip",
  10290. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10291. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10292. "shasum": ""
  10293. },
  10294. "require": {
  10295. "php": ">=7.3"
  10296. },
  10297. "require-dev": {
  10298. "phpunit/phpunit": "^9.3"
  10299. },
  10300. "type": "library",
  10301. "extra": {
  10302. "branch-alias": {
  10303. "dev-master": "4.0-dev"
  10304. }
  10305. },
  10306. "autoload": {
  10307. "classmap": [
  10308. "src/"
  10309. ]
  10310. },
  10311. "notification-url": "https://packagist.org/downloads/",
  10312. "license": [
  10313. "BSD-3-Clause"
  10314. ],
  10315. "authors": [
  10316. {
  10317. "name": "Sebastian Bergmann",
  10318. "email": "sebastian@phpunit.de"
  10319. },
  10320. {
  10321. "name": "Jeff Welch",
  10322. "email": "whatthejeff@gmail.com"
  10323. },
  10324. {
  10325. "name": "Adam Harvey",
  10326. "email": "aharvey@php.net"
  10327. }
  10328. ],
  10329. "description": "Provides functionality to recursively process PHP variables",
  10330. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10331. "support": {
  10332. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10333. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10334. },
  10335. "funding": [
  10336. {
  10337. "url": "https://github.com/sebastianbergmann",
  10338. "type": "github"
  10339. }
  10340. ],
  10341. "time": "2023-02-03T06:07:39+00:00"
  10342. },
  10343. {
  10344. "name": "sebastian/resource-operations",
  10345. "version": "3.0.3",
  10346. "source": {
  10347. "type": "git",
  10348. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10349. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10350. },
  10351. "dist": {
  10352. "type": "zip",
  10353. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10354. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10355. "shasum": ""
  10356. },
  10357. "require": {
  10358. "php": ">=7.3"
  10359. },
  10360. "require-dev": {
  10361. "phpunit/phpunit": "^9.0"
  10362. },
  10363. "type": "library",
  10364. "extra": {
  10365. "branch-alias": {
  10366. "dev-master": "3.0-dev"
  10367. }
  10368. },
  10369. "autoload": {
  10370. "classmap": [
  10371. "src/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "BSD-3-Clause"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Sebastian Bergmann",
  10381. "email": "sebastian@phpunit.de"
  10382. }
  10383. ],
  10384. "description": "Provides a list of PHP built-in functions that operate on resources",
  10385. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10386. "support": {
  10387. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10388. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10389. },
  10390. "funding": [
  10391. {
  10392. "url": "https://github.com/sebastianbergmann",
  10393. "type": "github"
  10394. }
  10395. ],
  10396. "time": "2020-09-28T06:45:17+00:00"
  10397. },
  10398. {
  10399. "name": "sebastian/type",
  10400. "version": "3.2.1",
  10401. "source": {
  10402. "type": "git",
  10403. "url": "https://github.com/sebastianbergmann/type.git",
  10404. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10405. },
  10406. "dist": {
  10407. "type": "zip",
  10408. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10409. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10410. "shasum": ""
  10411. },
  10412. "require": {
  10413. "php": ">=7.3"
  10414. },
  10415. "require-dev": {
  10416. "phpunit/phpunit": "^9.5"
  10417. },
  10418. "type": "library",
  10419. "extra": {
  10420. "branch-alias": {
  10421. "dev-master": "3.2-dev"
  10422. }
  10423. },
  10424. "autoload": {
  10425. "classmap": [
  10426. "src/"
  10427. ]
  10428. },
  10429. "notification-url": "https://packagist.org/downloads/",
  10430. "license": [
  10431. "BSD-3-Clause"
  10432. ],
  10433. "authors": [
  10434. {
  10435. "name": "Sebastian Bergmann",
  10436. "email": "sebastian@phpunit.de",
  10437. "role": "lead"
  10438. }
  10439. ],
  10440. "description": "Collection of value objects that represent the types of the PHP type system",
  10441. "homepage": "https://github.com/sebastianbergmann/type",
  10442. "support": {
  10443. "issues": "https://github.com/sebastianbergmann/type/issues",
  10444. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10445. },
  10446. "funding": [
  10447. {
  10448. "url": "https://github.com/sebastianbergmann",
  10449. "type": "github"
  10450. }
  10451. ],
  10452. "time": "2023-02-03T06:13:03+00:00"
  10453. },
  10454. {
  10455. "name": "sebastian/version",
  10456. "version": "3.0.2",
  10457. "source": {
  10458. "type": "git",
  10459. "url": "https://github.com/sebastianbergmann/version.git",
  10460. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10461. },
  10462. "dist": {
  10463. "type": "zip",
  10464. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10465. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10466. "shasum": ""
  10467. },
  10468. "require": {
  10469. "php": ">=7.3"
  10470. },
  10471. "type": "library",
  10472. "extra": {
  10473. "branch-alias": {
  10474. "dev-master": "3.0-dev"
  10475. }
  10476. },
  10477. "autoload": {
  10478. "classmap": [
  10479. "src/"
  10480. ]
  10481. },
  10482. "notification-url": "https://packagist.org/downloads/",
  10483. "license": [
  10484. "BSD-3-Clause"
  10485. ],
  10486. "authors": [
  10487. {
  10488. "name": "Sebastian Bergmann",
  10489. "email": "sebastian@phpunit.de",
  10490. "role": "lead"
  10491. }
  10492. ],
  10493. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10494. "homepage": "https://github.com/sebastianbergmann/version",
  10495. "support": {
  10496. "issues": "https://github.com/sebastianbergmann/version/issues",
  10497. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10498. },
  10499. "funding": [
  10500. {
  10501. "url": "https://github.com/sebastianbergmann",
  10502. "type": "github"
  10503. }
  10504. ],
  10505. "time": "2020-09-28T06:39:44+00:00"
  10506. },
  10507. {
  10508. "name": "theseer/tokenizer",
  10509. "version": "1.2.2",
  10510. "source": {
  10511. "type": "git",
  10512. "url": "https://github.com/theseer/tokenizer.git",
  10513. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  10514. },
  10515. "dist": {
  10516. "type": "zip",
  10517. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10518. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10519. "shasum": ""
  10520. },
  10521. "require": {
  10522. "ext-dom": "*",
  10523. "ext-tokenizer": "*",
  10524. "ext-xmlwriter": "*",
  10525. "php": "^7.2 || ^8.0"
  10526. },
  10527. "type": "library",
  10528. "autoload": {
  10529. "classmap": [
  10530. "src/"
  10531. ]
  10532. },
  10533. "notification-url": "https://packagist.org/downloads/",
  10534. "license": [
  10535. "BSD-3-Clause"
  10536. ],
  10537. "authors": [
  10538. {
  10539. "name": "Arne Blankerts",
  10540. "email": "arne@blankerts.de",
  10541. "role": "Developer"
  10542. }
  10543. ],
  10544. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10545. "support": {
  10546. "issues": "https://github.com/theseer/tokenizer/issues",
  10547. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  10548. },
  10549. "funding": [
  10550. {
  10551. "url": "https://github.com/theseer",
  10552. "type": "github"
  10553. }
  10554. ],
  10555. "time": "2023-11-20T00:12:19+00:00"
  10556. }
  10557. ],
  10558. "aliases": [],
  10559. "minimum-stability": "dev",
  10560. "stability-flags": {
  10561. "getuilaboratory/getui-pushapi-php-client-v2": 20
  10562. },
  10563. "prefer-stable": true,
  10564. "prefer-lowest": false,
  10565. "platform": {
  10566. "php": "^8.0",
  10567. "ext-json": "*"
  10568. },
  10569. "platform-dev": [],
  10570. "plugin-api-version": "2.6.0"
  10571. }