composer.lock 309 KB

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