composer.lock 352 KB

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