composer.lock 284 KB

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