composer.lock 340 KB

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