composer.lock 483 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373
  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": "c231087c2ffc42dd2f35c6017528a473",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.x"
  65. },
  66. "time": "2019-01-01T23:59:15+00:00"
  67. },
  68. {
  69. "name": "alexpechkarev/geometry-library",
  70. "version": "1.0.4",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/alexpechkarev/geometry-library.git",
  74. "reference": "71e40bd2ecdc86d3d985422b0c32d5f0d91a5612"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/alexpechkarev/geometry-library/zipball/71e40bd2ecdc86d3d985422b0c32d5f0d91a5612",
  79. "reference": "71e40bd2ecdc86d3d985422b0c32d5f0d91a5612",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "type": "library",
  89. "extra": {
  90. "branch-alias": {
  91. "dev-master": "1.0-dev"
  92. }
  93. },
  94. "autoload": {
  95. "psr-4": {
  96. "GeometryLibrary\\": "/"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "MIT"
  102. ],
  103. "authors": [
  104. {
  105. "name": "Alexander Pechkarev",
  106. "email": "alexpechkarev@gmail.com"
  107. }
  108. ],
  109. "description": "PHP Geometry library provides utility functions for the computation of geometric data on the surface of the Earth.",
  110. "homepage": "https://alexpechkarev.github.io/geometry-library/",
  111. "keywords": [
  112. "computations polygons and polylines",
  113. "encoding and decoding polyline paths utilities",
  114. "google maps geometry library",
  115. "php geometry library",
  116. "spherical geometry utilities"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/alexpechkarev/geometry-library/issues",
  120. "source": "https://github.com/alexpechkarev/geometry-library/tree/1.0.4"
  121. },
  122. "time": "2021-10-18T15:15:05+00:00"
  123. },
  124. {
  125. "name": "alexpechkarev/google-maps",
  126. "version": "8.0",
  127. "source": {
  128. "type": "git",
  129. "url": "https://github.com/alexpechkarev/google-maps.git",
  130. "reference": "cf10b7a5cbe18d4e0f845acf05d6979647f7b279"
  131. },
  132. "dist": {
  133. "type": "zip",
  134. "url": "https://api.github.com/repos/alexpechkarev/google-maps/zipball/cf10b7a5cbe18d4e0f845acf05d6979647f7b279",
  135. "reference": "cf10b7a5cbe18d4e0f845acf05d6979647f7b279",
  136. "shasum": "",
  137. "mirrors": [
  138. {
  139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  140. "preferred": true
  141. }
  142. ]
  143. },
  144. "require": {
  145. "alexpechkarev/geometry-library": "^1.0.2",
  146. "ext-curl": "*",
  147. "ext-json": "*",
  148. "illuminate/config": "^8.0",
  149. "illuminate/support": "^8.0",
  150. "jbroadway/urlify": "^1.1"
  151. },
  152. "require-dev": {
  153. "phpunit/phpunit": "4.7.*"
  154. },
  155. "type": "library",
  156. "extra": {
  157. "branch-alias": {
  158. "dev-master": "8.0-dev"
  159. },
  160. "laravel": {
  161. "providers": [
  162. "GoogleMaps\\ServiceProvider\\GoogleMapsServiceProvider"
  163. ],
  164. "aliases": {
  165. "GoogleMaps": "GoogleMaps\\Facade\\GoogleMapsFacade"
  166. }
  167. }
  168. },
  169. "autoload": {
  170. "psr-4": {
  171. "GoogleMaps\\": "src/"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Alexander Pechkarev",
  181. "email": "alexpechkarev@gmail.com"
  182. }
  183. ],
  184. "description": "Collection of Google Maps API Web Services for Laravel",
  185. "homepage": "https://alexpechkarev.github.io/google-maps/",
  186. "keywords": [
  187. "Google Maps API",
  188. "directions api",
  189. "distance matrix api",
  190. "elevation api",
  191. "geocoding api",
  192. "geolocation api",
  193. "google maps api for laravel",
  194. "google maps web service for laravel",
  195. "laravel google maps api",
  196. "places api web service",
  197. "roads api",
  198. "time zone api"
  199. ],
  200. "support": {
  201. "issues": "https://github.com/alexpechkarev/google-maps/issues",
  202. "source": "https://github.com/alexpechkarev/google-maps/tree/8.0"
  203. },
  204. "time": "2020-09-13T09:00:11+00:00"
  205. },
  206. {
  207. "name": "alibabacloud/client",
  208. "version": "1.5.31",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  212. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  217. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  218. "shasum": "",
  219. "mirrors": [
  220. {
  221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  222. "preferred": true
  223. }
  224. ]
  225. },
  226. "require": {
  227. "adbario/php-dot-notation": "^2.2",
  228. "clagiordano/weblibs-configmanager": "^1.0",
  229. "danielstjules/stringy": "^3.1",
  230. "ext-curl": "*",
  231. "ext-json": "*",
  232. "ext-libxml": "*",
  233. "ext-mbstring": "*",
  234. "ext-openssl": "*",
  235. "ext-simplexml": "*",
  236. "ext-xmlwriter": "*",
  237. "guzzlehttp/guzzle": "^6.3|^7.0",
  238. "mtdowling/jmespath.php": "^2.5",
  239. "php": ">=5.5"
  240. },
  241. "require-dev": {
  242. "composer/composer": "^1.8",
  243. "drupal/coder": "^8.3",
  244. "ext-dom": "*",
  245. "ext-pcre": "*",
  246. "ext-sockets": "*",
  247. "ext-spl": "*",
  248. "league/climate": "^3.2.4",
  249. "mikey179/vfsstream": "^1.6",
  250. "monolog/monolog": "^1.24",
  251. "phpunit/phpunit": "^5.7.27|^6.1",
  252. "psr/cache": "^1.0",
  253. "symfony/dotenv": "^3.4",
  254. "symfony/var-dumper": "^3.4"
  255. },
  256. "suggest": {
  257. "ext-sockets": "To use client-side monitoring"
  258. },
  259. "type": "library",
  260. "autoload": {
  261. "files": [
  262. "src/Functions.php"
  263. ],
  264. "psr-4": {
  265. "AlibabaCloud\\Client\\": "src"
  266. }
  267. },
  268. "notification-url": "https://packagist.org/downloads/",
  269. "license": [
  270. "Apache-2.0"
  271. ],
  272. "authors": [
  273. {
  274. "name": "Alibaba Cloud SDK",
  275. "email": "sdk-team@alibabacloud.com",
  276. "homepage": "http://www.alibabacloud.com"
  277. }
  278. ],
  279. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  280. "homepage": "https://www.alibabacloud.com/",
  281. "keywords": [
  282. "alibaba",
  283. "alibabacloud",
  284. "aliyun",
  285. "client",
  286. "cloud",
  287. "library",
  288. "sdk",
  289. "tool"
  290. ],
  291. "support": {
  292. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  293. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  294. },
  295. "time": "2021-05-13T06:26:38+00:00"
  296. },
  297. {
  298. "name": "alibabacloud/iot",
  299. "version": "1.8.958",
  300. "source": {
  301. "type": "git",
  302. "url": "https://github.com/alibabacloud-sdk-php/iot.git",
  303. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea"
  304. },
  305. "dist": {
  306. "type": "zip",
  307. "url": "https://api.github.com/repos/alibabacloud-sdk-php/iot/zipball/1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  308. "reference": "1be6b0444e6eeba93ad8bf1eef0f1afe2b477bea",
  309. "shasum": "",
  310. "mirrors": [
  311. {
  312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  313. "preferred": true
  314. }
  315. ]
  316. },
  317. "require": {
  318. "alibabacloud/client": "^1.5",
  319. "php": ">=5.5"
  320. },
  321. "type": "library",
  322. "autoload": {
  323. "psr-4": {
  324. "AlibabaCloud\\Iot\\": ""
  325. }
  326. },
  327. "notification-url": "https://packagist.org/downloads/",
  328. "license": [
  329. "Apache-2.0"
  330. ],
  331. "authors": [
  332. {
  333. "name": "Alibaba Cloud SDK",
  334. "email": "sdk-team@alibabacloud.com",
  335. "homepage": "http://www.alibabacloud.com"
  336. }
  337. ],
  338. "description": "Alibaba Cloud Iot SDK for PHP",
  339. "homepage": "https://www.alibabacloud.com/",
  340. "keywords": [
  341. "alibaba",
  342. "alibabacloud",
  343. "aliyun",
  344. "cloud",
  345. "iot",
  346. "library",
  347. "sdk"
  348. ],
  349. "support": {
  350. "issues": "https://github.com/alibabacloud-sdk-php/iot/issues",
  351. "source": "https://github.com/alibabacloud-sdk-php/iot"
  352. },
  353. "time": "2021-04-29T09:15:22+00:00"
  354. },
  355. {
  356. "name": "aliyuncs/oss-sdk-php",
  357. "version": "v2.5.0",
  358. "source": {
  359. "type": "git",
  360. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  361. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  362. },
  363. "dist": {
  364. "type": "zip",
  365. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  366. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  367. "shasum": "",
  368. "mirrors": [
  369. {
  370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  371. "preferred": true
  372. }
  373. ]
  374. },
  375. "require": {
  376. "php": ">=5.3"
  377. },
  378. "require-dev": {
  379. "phpunit/phpunit": "*",
  380. "satooshi/php-coveralls": "*"
  381. },
  382. "type": "library",
  383. "autoload": {
  384. "psr-4": {
  385. "OSS\\": "src/OSS"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Aliyuncs",
  395. "homepage": "http://www.aliyun.com"
  396. }
  397. ],
  398. "description": "Aliyun OSS SDK for PHP",
  399. "homepage": "http://www.aliyun.com/product/oss/",
  400. "support": {
  401. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  402. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  403. },
  404. "time": "2022-05-13T07:41:28+00:00"
  405. },
  406. {
  407. "name": "asm89/stack-cors",
  408. "version": "v2.1.1",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/asm89/stack-cors.git",
  412. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  417. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  418. "shasum": "",
  419. "mirrors": [
  420. {
  421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  422. "preferred": true
  423. }
  424. ]
  425. },
  426. "require": {
  427. "php": "^7.2|^8.0",
  428. "symfony/http-foundation": "^4|^5|^6",
  429. "symfony/http-kernel": "^4|^5|^6"
  430. },
  431. "require-dev": {
  432. "phpunit/phpunit": "^7|^9",
  433. "squizlabs/php_codesniffer": "^3.5"
  434. },
  435. "type": "library",
  436. "extra": {
  437. "branch-alias": {
  438. "dev-master": "2.1-dev"
  439. }
  440. },
  441. "autoload": {
  442. "psr-4": {
  443. "Asm89\\Stack\\": "src/"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Alexander",
  453. "email": "iam.asm89@gmail.com"
  454. }
  455. ],
  456. "description": "Cross-origin resource sharing library and stack middleware",
  457. "homepage": "https://github.com/asm89/stack-cors",
  458. "keywords": [
  459. "cors",
  460. "stack"
  461. ],
  462. "support": {
  463. "issues": "https://github.com/asm89/stack-cors/issues",
  464. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  465. },
  466. "time": "2022-01-18T09:12:03+00:00"
  467. },
  468. {
  469. "name": "bacon/bacon-qr-code",
  470. "version": "2.0.6",
  471. "source": {
  472. "type": "git",
  473. "url": "https://github.com/Bacon/BaconQrCode.git",
  474. "reference": "0069435e2a01a57193b25790f105a5d3168653c1"
  475. },
  476. "dist": {
  477. "type": "zip",
  478. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/0069435e2a01a57193b25790f105a5d3168653c1",
  479. "reference": "0069435e2a01a57193b25790f105a5d3168653c1",
  480. "shasum": "",
  481. "mirrors": [
  482. {
  483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  484. "preferred": true
  485. }
  486. ]
  487. },
  488. "require": {
  489. "dasprid/enum": "^1.0.3",
  490. "ext-iconv": "*",
  491. "php": "^7.1 || ^8.0"
  492. },
  493. "require-dev": {
  494. "phly/keep-a-changelog": "^2.1",
  495. "phpunit/phpunit": "^7 | ^8 | ^9",
  496. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  497. "squizlabs/php_codesniffer": "^3.4"
  498. },
  499. "suggest": {
  500. "ext-imagick": "to generate QR code images"
  501. },
  502. "type": "library",
  503. "autoload": {
  504. "psr-4": {
  505. "BaconQrCode\\": "src/"
  506. }
  507. },
  508. "notification-url": "https://packagist.org/downloads/",
  509. "license": [
  510. "BSD-2-Clause"
  511. ],
  512. "authors": [
  513. {
  514. "name": "Ben Scholzen 'DASPRiD'",
  515. "email": "mail@dasprids.de",
  516. "homepage": "https://dasprids.de/",
  517. "role": "Developer"
  518. }
  519. ],
  520. "description": "BaconQrCode is a QR code generator for PHP.",
  521. "homepage": "https://github.com/Bacon/BaconQrCode",
  522. "support": {
  523. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  524. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.6"
  525. },
  526. "time": "2022-02-04T20:16:05+00:00"
  527. },
  528. {
  529. "name": "barryvdh/laravel-snappy",
  530. "version": "v0.4.8",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/barryvdh/laravel-snappy.git",
  534. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  539. "reference": "1903ab84171072b6bff8d98eb58d38b2c9aaf645",
  540. "shasum": "",
  541. "mirrors": [
  542. {
  543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  544. "preferred": true
  545. }
  546. ]
  547. },
  548. "require": {
  549. "illuminate/filesystem": "^5.5|^6|^7|^8",
  550. "illuminate/support": "^5.5|^6|^7|^8",
  551. "knplabs/knp-snappy": "^1",
  552. "php": ">=7"
  553. },
  554. "type": "library",
  555. "extra": {
  556. "branch-alias": {
  557. "dev-master": "0.4-dev"
  558. },
  559. "laravel": {
  560. "providers": [
  561. "Barryvdh\\Snappy\\ServiceProvider"
  562. ],
  563. "aliases": {
  564. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  565. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  566. }
  567. }
  568. },
  569. "autoload": {
  570. "psr-4": {
  571. "Barryvdh\\Snappy\\": "src/"
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "Barry vd. Heuvel",
  581. "email": "barryvdh@gmail.com"
  582. }
  583. ],
  584. "description": "Snappy PDF/Image for Laravel",
  585. "keywords": [
  586. "image",
  587. "laravel",
  588. "pdf",
  589. "snappy",
  590. "wkhtmltoimage",
  591. "wkhtmltopdf"
  592. ],
  593. "support": {
  594. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  595. "source": "https://github.com/barryvdh/laravel-snappy/tree/master"
  596. },
  597. "time": "2020-09-07T12:33:10+00:00"
  598. },
  599. {
  600. "name": "bensampo/laravel-enum",
  601. "version": "v4.2.0",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/BenSampo/laravel-enum.git",
  605. "reference": "ab1e261cd3214cf43521101858c50504bcd8e431"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/BenSampo/laravel-enum/zipball/ab1e261cd3214cf43521101858c50504bcd8e431",
  610. "reference": "ab1e261cd3214cf43521101858c50504bcd8e431",
  611. "shasum": "",
  612. "mirrors": [
  613. {
  614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  615. "preferred": true
  616. }
  617. ]
  618. },
  619. "require": {
  620. "hanneskod/classtools": "^1.2",
  621. "illuminate/contracts": "^8.0",
  622. "illuminate/support": "^8.0",
  623. "laminas/laminas-code": "^3.4|^4.0",
  624. "nikic/php-parser": "^4.10",
  625. "php": "^7.3|^8.0"
  626. },
  627. "require-dev": {
  628. "doctrine/dbal": "^2.9|^3.0",
  629. "mockery/mockery": "^1.4",
  630. "orchestra/testbench": "^6.2",
  631. "phpstan/phpstan": "^0.12.59",
  632. "phpunit/phpunit": "^8.5",
  633. "squizlabs/php_codesniffer": "^3.0"
  634. },
  635. "type": "library",
  636. "extra": {
  637. "branch-alias": {
  638. "dev-master": "1.0-dev"
  639. },
  640. "laravel": {
  641. "providers": [
  642. "BenSampo\\Enum\\EnumServiceProvider"
  643. ]
  644. },
  645. "phpstan": {
  646. "includes": [
  647. "extension.neon"
  648. ]
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "BenSampo\\Enum\\": "src"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Ben Sampson",
  663. "homepage": "https://sampo.co.uk",
  664. "role": "Developer"
  665. }
  666. ],
  667. "description": "Simple, extensible and powerful enumeration implementation for Laravel.",
  668. "homepage": "https://github.com/bensampo/laravel-enum",
  669. "keywords": [
  670. "bensampo",
  671. "enum",
  672. "laravel",
  673. "package",
  674. "validation"
  675. ],
  676. "support": {
  677. "issues": "https://github.com/BenSampo/laravel-enum/issues",
  678. "source": "https://github.com/BenSampo/laravel-enum/tree/v4.2.0"
  679. },
  680. "funding": [
  681. {
  682. "url": "https://github.com/bensampo",
  683. "type": "github"
  684. }
  685. ],
  686. "time": "2022-01-31T19:46:11+00:00"
  687. },
  688. {
  689. "name": "box/spout",
  690. "version": "v3.3.0",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/box/spout.git",
  694. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  699. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  700. "shasum": "",
  701. "mirrors": [
  702. {
  703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  704. "preferred": true
  705. }
  706. ]
  707. },
  708. "require": {
  709. "ext-dom": "*",
  710. "ext-xmlreader": "*",
  711. "ext-zip": "*",
  712. "php": ">=7.2.0"
  713. },
  714. "require-dev": {
  715. "friendsofphp/php-cs-fixer": "^2",
  716. "phpunit/phpunit": "^8"
  717. },
  718. "suggest": {
  719. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  720. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  721. },
  722. "type": "library",
  723. "extra": {
  724. "branch-alias": {
  725. "dev-master": "3.1.x-dev"
  726. }
  727. },
  728. "autoload": {
  729. "psr-4": {
  730. "Box\\Spout\\": "src/Spout"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "Apache-2.0"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Adrien Loison",
  740. "email": "adrien@box.com"
  741. }
  742. ],
  743. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  744. "homepage": "https://www.github.com/box/spout",
  745. "keywords": [
  746. "OOXML",
  747. "csv",
  748. "excel",
  749. "memory",
  750. "odf",
  751. "ods",
  752. "office",
  753. "open",
  754. "php",
  755. "read",
  756. "scale",
  757. "spreadsheet",
  758. "stream",
  759. "write",
  760. "xlsx"
  761. ],
  762. "support": {
  763. "issues": "https://github.com/box/spout/issues",
  764. "source": "https://github.com/box/spout/tree/v3.3.0"
  765. },
  766. "time": "2021-05-14T21:18:09+00:00"
  767. },
  768. {
  769. "name": "brick/math",
  770. "version": "0.9.3",
  771. "source": {
  772. "type": "git",
  773. "url": "https://github.com/brick/math.git",
  774. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  775. },
  776. "dist": {
  777. "type": "zip",
  778. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  779. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  780. "shasum": "",
  781. "mirrors": [
  782. {
  783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  784. "preferred": true
  785. }
  786. ]
  787. },
  788. "require": {
  789. "ext-json": "*",
  790. "php": "^7.1 || ^8.0"
  791. },
  792. "require-dev": {
  793. "php-coveralls/php-coveralls": "^2.2",
  794. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  795. "vimeo/psalm": "4.9.2"
  796. },
  797. "type": "library",
  798. "autoload": {
  799. "psr-4": {
  800. "Brick\\Math\\": "src/"
  801. }
  802. },
  803. "notification-url": "https://packagist.org/downloads/",
  804. "license": [
  805. "MIT"
  806. ],
  807. "description": "Arbitrary-precision arithmetic library",
  808. "keywords": [
  809. "Arbitrary-precision",
  810. "BigInteger",
  811. "BigRational",
  812. "arithmetic",
  813. "bigdecimal",
  814. "bignum",
  815. "brick",
  816. "math"
  817. ],
  818. "support": {
  819. "issues": "https://github.com/brick/math/issues",
  820. "source": "https://github.com/brick/math/tree/0.9.3"
  821. },
  822. "funding": [
  823. {
  824. "url": "https://github.com/BenMorel",
  825. "type": "github"
  826. },
  827. {
  828. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  829. "type": "tidelift"
  830. }
  831. ],
  832. "time": "2021-08-15T20:50:18+00:00"
  833. },
  834. {
  835. "name": "clagiordano/weblibs-configmanager",
  836. "version": "v1.2.0",
  837. "source": {
  838. "type": "git",
  839. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  840. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  841. },
  842. "dist": {
  843. "type": "zip",
  844. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  845. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  846. "shasum": "",
  847. "mirrors": [
  848. {
  849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  850. "preferred": true
  851. }
  852. ]
  853. },
  854. "require": {
  855. "php": ">=5.4"
  856. },
  857. "require-dev": {
  858. "clagiordano/phpunit-result-printer": "^1",
  859. "phpunit/phpunit": "^4.8"
  860. },
  861. "type": "library",
  862. "autoload": {
  863. "psr-4": {
  864. "clagiordano\\weblibs\\configmanager\\": "src/"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "LGPL-3.0-or-later"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Claudio Giordano",
  874. "email": "claudio.giordano@autistici.org",
  875. "role": "Developer"
  876. }
  877. ],
  878. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  879. "keywords": [
  880. "clagiordano",
  881. "configuration",
  882. "manager",
  883. "tool",
  884. "weblibs"
  885. ],
  886. "support": {
  887. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  888. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  889. },
  890. "time": "2021-05-18T17:55:57+00:00"
  891. },
  892. {
  893. "name": "danielstjules/stringy",
  894. "version": "3.1.0",
  895. "source": {
  896. "type": "git",
  897. "url": "https://github.com/danielstjules/Stringy.git",
  898. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  899. },
  900. "dist": {
  901. "type": "zip",
  902. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  903. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  904. "shasum": "",
  905. "mirrors": [
  906. {
  907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  908. "preferred": true
  909. }
  910. ]
  911. },
  912. "require": {
  913. "php": ">=5.4.0",
  914. "symfony/polyfill-mbstring": "~1.1"
  915. },
  916. "require-dev": {
  917. "phpunit/phpunit": "~4.0"
  918. },
  919. "type": "library",
  920. "autoload": {
  921. "files": [
  922. "src/Create.php"
  923. ],
  924. "psr-4": {
  925. "Stringy\\": "src/"
  926. }
  927. },
  928. "notification-url": "https://packagist.org/downloads/",
  929. "license": [
  930. "MIT"
  931. ],
  932. "authors": [
  933. {
  934. "name": "Daniel St. Jules",
  935. "email": "danielst.jules@gmail.com",
  936. "homepage": "http://www.danielstjules.com"
  937. }
  938. ],
  939. "description": "A string manipulation library with multibyte support",
  940. "homepage": "https://github.com/danielstjules/Stringy",
  941. "keywords": [
  942. "UTF",
  943. "helpers",
  944. "manipulation",
  945. "methods",
  946. "multibyte",
  947. "string",
  948. "utf-8",
  949. "utility",
  950. "utils"
  951. ],
  952. "support": {
  953. "issues": "https://github.com/danielstjules/Stringy/issues",
  954. "source": "https://github.com/danielstjules/Stringy"
  955. },
  956. "time": "2017-06-12T01:10:27+00:00"
  957. },
  958. {
  959. "name": "dasprid/enum",
  960. "version": "1.0.3",
  961. "source": {
  962. "type": "git",
  963. "url": "https://github.com/DASPRiD/Enum.git",
  964. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  965. },
  966. "dist": {
  967. "type": "zip",
  968. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  969. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  970. "shasum": "",
  971. "mirrors": [
  972. {
  973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  974. "preferred": true
  975. }
  976. ]
  977. },
  978. "require-dev": {
  979. "phpunit/phpunit": "^7 | ^8 | ^9",
  980. "squizlabs/php_codesniffer": "^3.4"
  981. },
  982. "type": "library",
  983. "autoload": {
  984. "psr-4": {
  985. "DASPRiD\\Enum\\": "src/"
  986. }
  987. },
  988. "notification-url": "https://packagist.org/downloads/",
  989. "license": [
  990. "BSD-2-Clause"
  991. ],
  992. "authors": [
  993. {
  994. "name": "Ben Scholzen 'DASPRiD'",
  995. "email": "mail@dasprids.de",
  996. "homepage": "https://dasprids.de/",
  997. "role": "Developer"
  998. }
  999. ],
  1000. "description": "PHP 7.1 enum implementation",
  1001. "keywords": [
  1002. "enum",
  1003. "map"
  1004. ],
  1005. "support": {
  1006. "issues": "https://github.com/DASPRiD/Enum/issues",
  1007. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  1008. },
  1009. "time": "2020-10-02T16:03:48+00:00"
  1010. },
  1011. {
  1012. "name": "dcat/easy-excel",
  1013. "version": "1.1.0",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/jqhph/easy-excel.git",
  1017. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  1022. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  1023. "shasum": "",
  1024. "mirrors": [
  1025. {
  1026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1027. "preferred": true
  1028. }
  1029. ]
  1030. },
  1031. "require": {
  1032. "box/spout": "~3",
  1033. "league/flysystem": "~1|~2|~3",
  1034. "php": ">=7.1.0"
  1035. },
  1036. "require-dev": {
  1037. "friendsofphp/php-cs-fixer": "^2",
  1038. "phpunit/phpunit": "~7|~8.0"
  1039. },
  1040. "type": "library",
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Dcat\\EasyExcel\\": "src/"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "MIT"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "jqh",
  1053. "email": "841324345@qq.com"
  1054. }
  1055. ],
  1056. "description": "使用简单实用的语义化接口快速读写Excel文件",
  1057. "homepage": "https://github.com/jqhph/easy-excel",
  1058. "keywords": [
  1059. "box spout",
  1060. "csv",
  1061. "easy excel",
  1062. "excel",
  1063. "ods",
  1064. "office",
  1065. "read",
  1066. "spreadsheet",
  1067. "stream",
  1068. "xlsx"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/jqhph/easy-excel/issues",
  1072. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  1073. },
  1074. "time": "2022-03-03T03:04:13+00:00"
  1075. },
  1076. {
  1077. "name": "dcat/laravel-admin",
  1078. "version": "2.2.0-beta",
  1079. "source": {
  1080. "type": "git",
  1081. "url": "https://github.com/jqhph/dcat-admin.git",
  1082. "reference": "904d434f9479dd2957342cdd75e1a8035d17f1fb"
  1083. },
  1084. "dist": {
  1085. "type": "zip",
  1086. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/904d434f9479dd2957342cdd75e1a8035d17f1fb",
  1087. "reference": "904d434f9479dd2957342cdd75e1a8035d17f1fb",
  1088. "shasum": "",
  1089. "mirrors": [
  1090. {
  1091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1092. "preferred": true
  1093. }
  1094. ]
  1095. },
  1096. "require": {
  1097. "doctrine/dbal": "^2.6|^3.0",
  1098. "laravel/framework": "~5.5|~6.0|~7.0|~8.0|~9.0",
  1099. "php": ">=7.1.0",
  1100. "spatie/eloquent-sortable": "3.*|4.*"
  1101. },
  1102. "require-dev": {
  1103. "fzaninotto/faker": "^1.4",
  1104. "laravel/dusk": "~5.9|~6",
  1105. "mockery/mockery": "^1.0",
  1106. "phpstan/phpstan": "^0.12.0",
  1107. "phpunit/phpunit": "^7.5|~9"
  1108. },
  1109. "type": "library",
  1110. "extra": {
  1111. "laravel": {
  1112. "providers": [
  1113. "Dcat\\Admin\\AdminServiceProvider"
  1114. ]
  1115. }
  1116. },
  1117. "autoload": {
  1118. "files": [
  1119. "src/Support/helpers.php"
  1120. ],
  1121. "psr-4": {
  1122. "Dcat\\Admin\\": "src/"
  1123. }
  1124. },
  1125. "notification-url": "https://packagist.org/downloads/",
  1126. "license": [
  1127. "MIT"
  1128. ],
  1129. "authors": [
  1130. {
  1131. "name": "jqh",
  1132. "email": "841324345@qq.com"
  1133. }
  1134. ],
  1135. "description": "dcat admin",
  1136. "homepage": "https://github.com/jqhph/dcat-admin",
  1137. "keywords": [
  1138. "admin",
  1139. "dcat",
  1140. "form",
  1141. "grid",
  1142. "laravel",
  1143. "laravel admin"
  1144. ],
  1145. "support": {
  1146. "issues": "https://github.com/jqhph/dcat-admin/issues",
  1147. "source": "https://github.com/jqhph/dcat-admin/tree/2.2.0-beta"
  1148. },
  1149. "time": "2022-02-19T16:03:19+00:00"
  1150. },
  1151. {
  1152. "name": "dflydev/dot-access-data",
  1153. "version": "v3.0.1",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1157. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  1162. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  1163. "shasum": "",
  1164. "mirrors": [
  1165. {
  1166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1167. "preferred": true
  1168. }
  1169. ]
  1170. },
  1171. "require": {
  1172. "php": "^7.1 || ^8.0"
  1173. },
  1174. "require-dev": {
  1175. "phpstan/phpstan": "^0.12.42",
  1176. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1177. "scrutinizer/ocular": "1.6.0",
  1178. "squizlabs/php_codesniffer": "^3.5",
  1179. "vimeo/psalm": "^3.14"
  1180. },
  1181. "type": "library",
  1182. "extra": {
  1183. "branch-alias": {
  1184. "dev-main": "3.x-dev"
  1185. }
  1186. },
  1187. "autoload": {
  1188. "psr-4": {
  1189. "Dflydev\\DotAccessData\\": "src/"
  1190. }
  1191. },
  1192. "notification-url": "https://packagist.org/downloads/",
  1193. "license": [
  1194. "MIT"
  1195. ],
  1196. "authors": [
  1197. {
  1198. "name": "Dragonfly Development Inc.",
  1199. "email": "info@dflydev.com",
  1200. "homepage": "http://dflydev.com"
  1201. },
  1202. {
  1203. "name": "Beau Simensen",
  1204. "email": "beau@dflydev.com",
  1205. "homepage": "http://beausimensen.com"
  1206. },
  1207. {
  1208. "name": "Carlos Frutos",
  1209. "email": "carlos@kiwing.it",
  1210. "homepage": "https://github.com/cfrutos"
  1211. },
  1212. {
  1213. "name": "Colin O'Dell",
  1214. "email": "colinodell@gmail.com",
  1215. "homepage": "https://www.colinodell.com"
  1216. }
  1217. ],
  1218. "description": "Given a deep data structure, access data by dot notation.",
  1219. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1220. "keywords": [
  1221. "access",
  1222. "data",
  1223. "dot",
  1224. "notation"
  1225. ],
  1226. "support": {
  1227. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1228. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  1229. },
  1230. "time": "2021-08-13T13:06:58+00:00"
  1231. },
  1232. {
  1233. "name": "dingo/api",
  1234. "version": "v3.0.8",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/dingo/api.git",
  1238. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/dingo/api/zipball/42b6afa6e20a27f938a45e676665e57d26422cea",
  1243. "reference": "42b6afa6e20a27f938a45e676665e57d26422cea",
  1244. "shasum": "",
  1245. "mirrors": [
  1246. {
  1247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1248. "preferred": true
  1249. }
  1250. ]
  1251. },
  1252. "require": {
  1253. "dingo/blueprint": "^0.4",
  1254. "illuminate/routing": "^7.0|^8.0",
  1255. "illuminate/support": "^7.0|^8.0",
  1256. "league/fractal": "^0.19",
  1257. "php": "^7.2.5|^8.0"
  1258. },
  1259. "require-dev": {
  1260. "friendsofphp/php-cs-fixer": "~2",
  1261. "illuminate/auth": "^7.0|^8.0",
  1262. "illuminate/cache": "^7.0|^8.0",
  1263. "illuminate/console": "^7.0|^8.0",
  1264. "illuminate/database": "^7.0|^8.0",
  1265. "illuminate/events": "^7.0|^8.0",
  1266. "illuminate/filesystem": "^7.0|^8.0",
  1267. "illuminate/log": "^7.0|^8.0",
  1268. "illuminate/pagination": "^7.0|^8.0",
  1269. "laravel/lumen-framework": "^7.0|^8.0",
  1270. "mockery/mockery": "~1.0",
  1271. "phpunit/phpunit": "^8.5|^9.0",
  1272. "squizlabs/php_codesniffer": "~2.0",
  1273. "tymon/jwt-auth": "1.0.*"
  1274. },
  1275. "suggest": {
  1276. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  1277. },
  1278. "type": "library",
  1279. "extra": {
  1280. "branch-alias": {
  1281. "dev-master": "2.0-dev"
  1282. },
  1283. "laravel": {
  1284. "providers": [
  1285. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  1286. ],
  1287. "aliases": {
  1288. "API": "Dingo\\Api\\Facade\\API"
  1289. }
  1290. }
  1291. },
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Dingo\\Api\\": "src/"
  1295. },
  1296. "files": [
  1297. "src/helpers.php"
  1298. ]
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "BSD-3-Clause"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Jason Lewis",
  1307. "email": "jason.lewis1991@gmail.com"
  1308. }
  1309. ],
  1310. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  1311. "keywords": [
  1312. "api",
  1313. "dingo",
  1314. "laravel",
  1315. "restful"
  1316. ],
  1317. "support": {
  1318. "issues": "https://github.com/dingo/api/issues",
  1319. "source": "https://github.com/dingo/api/tree/v3.0.8"
  1320. },
  1321. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  1322. "time": "2022-01-27T15:11:20+00:00"
  1323. },
  1324. {
  1325. "name": "dingo/blueprint",
  1326. "version": "v0.4.3",
  1327. "source": {
  1328. "type": "git",
  1329. "url": "https://github.com/dingo/blueprint.git",
  1330. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88"
  1331. },
  1332. "dist": {
  1333. "type": "zip",
  1334. "url": "https://api.github.com/repos/dingo/blueprint/zipball/e3a8f19ae10716670079c3c162540756dbd20a88",
  1335. "reference": "e3a8f19ae10716670079c3c162540756dbd20a88",
  1336. "shasum": "",
  1337. "mirrors": [
  1338. {
  1339. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1340. "preferred": true
  1341. }
  1342. ]
  1343. },
  1344. "require": {
  1345. "doctrine/annotations": "~1.2",
  1346. "illuminate/filesystem": "^7.0|^8.0",
  1347. "illuminate/support": "^7.0|^8.0",
  1348. "php": "^7.2.5|^8.0",
  1349. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  1350. },
  1351. "require-dev": {
  1352. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  1353. "squizlabs/php_codesniffer": "~2.0"
  1354. },
  1355. "type": "library",
  1356. "extra": {
  1357. "branch-alias": {
  1358. "dev-master": "0.2-dev"
  1359. }
  1360. },
  1361. "autoload": {
  1362. "psr-4": {
  1363. "Dingo\\Blueprint\\": "src"
  1364. }
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "BSD-3-Clause"
  1369. ],
  1370. "authors": [
  1371. {
  1372. "name": "Jason Lewis",
  1373. "email": "jason.lewis1991@gmail.com"
  1374. }
  1375. ],
  1376. "description": "API Blueprint documentation generator.",
  1377. "keywords": [
  1378. "api",
  1379. "blueprint",
  1380. "dingo",
  1381. "docs",
  1382. "laravel"
  1383. ],
  1384. "support": {
  1385. "issues": "https://github.com/dingo/blueprint/issues",
  1386. "source": "https://github.com/dingo/blueprint/tree/v0.4.3"
  1387. },
  1388. "time": "2021-04-30T11:20:38+00:00"
  1389. },
  1390. {
  1391. "name": "doctrine/annotations",
  1392. "version": "1.13.2",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/doctrine/annotations.git",
  1396. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  1401. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  1402. "shasum": "",
  1403. "mirrors": [
  1404. {
  1405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1406. "preferred": true
  1407. }
  1408. ]
  1409. },
  1410. "require": {
  1411. "doctrine/lexer": "1.*",
  1412. "ext-tokenizer": "*",
  1413. "php": "^7.1 || ^8.0",
  1414. "psr/cache": "^1 || ^2 || ^3"
  1415. },
  1416. "require-dev": {
  1417. "doctrine/cache": "^1.11 || ^2.0",
  1418. "doctrine/coding-standard": "^6.0 || ^8.1",
  1419. "phpstan/phpstan": "^0.12.20",
  1420. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1421. "symfony/cache": "^4.4 || ^5.2"
  1422. },
  1423. "type": "library",
  1424. "autoload": {
  1425. "psr-4": {
  1426. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Guilherme Blanco",
  1436. "email": "guilhermeblanco@gmail.com"
  1437. },
  1438. {
  1439. "name": "Roman Borschel",
  1440. "email": "roman@code-factory.org"
  1441. },
  1442. {
  1443. "name": "Benjamin Eberlei",
  1444. "email": "kontakt@beberlei.de"
  1445. },
  1446. {
  1447. "name": "Jonathan Wage",
  1448. "email": "jonwage@gmail.com"
  1449. },
  1450. {
  1451. "name": "Johannes Schmitt",
  1452. "email": "schmittjoh@gmail.com"
  1453. }
  1454. ],
  1455. "description": "Docblock Annotations Parser",
  1456. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1457. "keywords": [
  1458. "annotations",
  1459. "docblock",
  1460. "parser"
  1461. ],
  1462. "support": {
  1463. "issues": "https://github.com/doctrine/annotations/issues",
  1464. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  1465. },
  1466. "time": "2021-08-05T19:00:23+00:00"
  1467. },
  1468. {
  1469. "name": "doctrine/cache",
  1470. "version": "2.1.1",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/doctrine/cache.git",
  1474. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  1479. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  1480. "shasum": "",
  1481. "mirrors": [
  1482. {
  1483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1484. "preferred": true
  1485. }
  1486. ]
  1487. },
  1488. "require": {
  1489. "php": "~7.1 || ^8.0"
  1490. },
  1491. "conflict": {
  1492. "doctrine/common": ">2.2,<2.4"
  1493. },
  1494. "require-dev": {
  1495. "alcaeus/mongo-php-adapter": "^1.1",
  1496. "cache/integration-tests": "dev-master",
  1497. "doctrine/coding-standard": "^8.0",
  1498. "mongodb/mongodb": "^1.1",
  1499. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1500. "predis/predis": "~1.0",
  1501. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1502. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  1503. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  1504. },
  1505. "suggest": {
  1506. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1507. },
  1508. "type": "library",
  1509. "autoload": {
  1510. "psr-4": {
  1511. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Guilherme Blanco",
  1521. "email": "guilhermeblanco@gmail.com"
  1522. },
  1523. {
  1524. "name": "Roman Borschel",
  1525. "email": "roman@code-factory.org"
  1526. },
  1527. {
  1528. "name": "Benjamin Eberlei",
  1529. "email": "kontakt@beberlei.de"
  1530. },
  1531. {
  1532. "name": "Jonathan Wage",
  1533. "email": "jonwage@gmail.com"
  1534. },
  1535. {
  1536. "name": "Johannes Schmitt",
  1537. "email": "schmittjoh@gmail.com"
  1538. }
  1539. ],
  1540. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1541. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1542. "keywords": [
  1543. "abstraction",
  1544. "apcu",
  1545. "cache",
  1546. "caching",
  1547. "couchdb",
  1548. "memcached",
  1549. "php",
  1550. "redis",
  1551. "xcache"
  1552. ],
  1553. "support": {
  1554. "issues": "https://github.com/doctrine/cache/issues",
  1555. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  1556. },
  1557. "funding": [
  1558. {
  1559. "url": "https://www.doctrine-project.org/sponsorship.html",
  1560. "type": "custom"
  1561. },
  1562. {
  1563. "url": "https://www.patreon.com/phpdoctrine",
  1564. "type": "patreon"
  1565. },
  1566. {
  1567. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1568. "type": "tidelift"
  1569. }
  1570. ],
  1571. "time": "2021-07-17T14:49:29+00:00"
  1572. },
  1573. {
  1574. "name": "doctrine/dbal",
  1575. "version": "3.3.7",
  1576. "source": {
  1577. "type": "git",
  1578. "url": "https://github.com/doctrine/dbal.git",
  1579. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a"
  1580. },
  1581. "dist": {
  1582. "type": "zip",
  1583. "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1584. "reference": "9f79d4650430b582f4598fe0954ef4d52fbc0a8a",
  1585. "shasum": "",
  1586. "mirrors": [
  1587. {
  1588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1589. "preferred": true
  1590. }
  1591. ]
  1592. },
  1593. "require": {
  1594. "composer-runtime-api": "^2",
  1595. "doctrine/cache": "^1.11|^2.0",
  1596. "doctrine/deprecations": "^0.5.3|^1",
  1597. "doctrine/event-manager": "^1.0",
  1598. "php": "^7.3 || ^8.0",
  1599. "psr/cache": "^1|^2|^3",
  1600. "psr/log": "^1|^2|^3"
  1601. },
  1602. "require-dev": {
  1603. "doctrine/coding-standard": "9.0.0",
  1604. "jetbrains/phpstorm-stubs": "2022.1",
  1605. "phpstan/phpstan": "1.7.13",
  1606. "phpstan/phpstan-strict-rules": "^1.2",
  1607. "phpunit/phpunit": "9.5.20",
  1608. "psalm/plugin-phpunit": "0.16.1",
  1609. "squizlabs/php_codesniffer": "3.7.0",
  1610. "symfony/cache": "^5.2|^6.0",
  1611. "symfony/console": "^2.7|^3.0|^4.0|^5.0|^6.0",
  1612. "vimeo/psalm": "4.23.0"
  1613. },
  1614. "suggest": {
  1615. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1616. },
  1617. "bin": [
  1618. "bin/doctrine-dbal"
  1619. ],
  1620. "type": "library",
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Doctrine\\DBAL\\": "src"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Guilherme Blanco",
  1633. "email": "guilhermeblanco@gmail.com"
  1634. },
  1635. {
  1636. "name": "Roman Borschel",
  1637. "email": "roman@code-factory.org"
  1638. },
  1639. {
  1640. "name": "Benjamin Eberlei",
  1641. "email": "kontakt@beberlei.de"
  1642. },
  1643. {
  1644. "name": "Jonathan Wage",
  1645. "email": "jonwage@gmail.com"
  1646. }
  1647. ],
  1648. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1649. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1650. "keywords": [
  1651. "abstraction",
  1652. "database",
  1653. "db2",
  1654. "dbal",
  1655. "mariadb",
  1656. "mssql",
  1657. "mysql",
  1658. "oci8",
  1659. "oracle",
  1660. "pdo",
  1661. "pgsql",
  1662. "postgresql",
  1663. "queryobject",
  1664. "sasql",
  1665. "sql",
  1666. "sqlite",
  1667. "sqlserver",
  1668. "sqlsrv"
  1669. ],
  1670. "support": {
  1671. "issues": "https://github.com/doctrine/dbal/issues",
  1672. "source": "https://github.com/doctrine/dbal/tree/3.3.7"
  1673. },
  1674. "funding": [
  1675. {
  1676. "url": "https://www.doctrine-project.org/sponsorship.html",
  1677. "type": "custom"
  1678. },
  1679. {
  1680. "url": "https://www.patreon.com/phpdoctrine",
  1681. "type": "patreon"
  1682. },
  1683. {
  1684. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1685. "type": "tidelift"
  1686. }
  1687. ],
  1688. "time": "2022-06-13T21:43:03+00:00"
  1689. },
  1690. {
  1691. "name": "doctrine/deprecations",
  1692. "version": "v0.5.3",
  1693. "source": {
  1694. "type": "git",
  1695. "url": "https://github.com/doctrine/deprecations.git",
  1696. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  1697. },
  1698. "dist": {
  1699. "type": "zip",
  1700. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  1701. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  1702. "shasum": "",
  1703. "mirrors": [
  1704. {
  1705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1706. "preferred": true
  1707. }
  1708. ]
  1709. },
  1710. "require": {
  1711. "php": "^7.1|^8.0"
  1712. },
  1713. "require-dev": {
  1714. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  1715. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  1716. "psr/log": "^1.0"
  1717. },
  1718. "suggest": {
  1719. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1720. },
  1721. "type": "library",
  1722. "autoload": {
  1723. "psr-4": {
  1724. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1725. }
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "MIT"
  1730. ],
  1731. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1732. "homepage": "https://www.doctrine-project.org/",
  1733. "support": {
  1734. "issues": "https://github.com/doctrine/deprecations/issues",
  1735. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  1736. },
  1737. "time": "2021-03-21T12:59:47+00:00"
  1738. },
  1739. {
  1740. "name": "doctrine/event-manager",
  1741. "version": "1.1.1",
  1742. "source": {
  1743. "type": "git",
  1744. "url": "https://github.com/doctrine/event-manager.git",
  1745. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1746. },
  1747. "dist": {
  1748. "type": "zip",
  1749. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1750. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1751. "shasum": "",
  1752. "mirrors": [
  1753. {
  1754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1755. "preferred": true
  1756. }
  1757. ]
  1758. },
  1759. "require": {
  1760. "php": "^7.1 || ^8.0"
  1761. },
  1762. "conflict": {
  1763. "doctrine/common": "<2.9@dev"
  1764. },
  1765. "require-dev": {
  1766. "doctrine/coding-standard": "^6.0",
  1767. "phpunit/phpunit": "^7.0"
  1768. },
  1769. "type": "library",
  1770. "extra": {
  1771. "branch-alias": {
  1772. "dev-master": "1.0.x-dev"
  1773. }
  1774. },
  1775. "autoload": {
  1776. "psr-4": {
  1777. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1778. }
  1779. },
  1780. "notification-url": "https://packagist.org/downloads/",
  1781. "license": [
  1782. "MIT"
  1783. ],
  1784. "authors": [
  1785. {
  1786. "name": "Guilherme Blanco",
  1787. "email": "guilhermeblanco@gmail.com"
  1788. },
  1789. {
  1790. "name": "Roman Borschel",
  1791. "email": "roman@code-factory.org"
  1792. },
  1793. {
  1794. "name": "Benjamin Eberlei",
  1795. "email": "kontakt@beberlei.de"
  1796. },
  1797. {
  1798. "name": "Jonathan Wage",
  1799. "email": "jonwage@gmail.com"
  1800. },
  1801. {
  1802. "name": "Johannes Schmitt",
  1803. "email": "schmittjoh@gmail.com"
  1804. },
  1805. {
  1806. "name": "Marco Pivetta",
  1807. "email": "ocramius@gmail.com"
  1808. }
  1809. ],
  1810. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1811. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1812. "keywords": [
  1813. "event",
  1814. "event dispatcher",
  1815. "event manager",
  1816. "event system",
  1817. "events"
  1818. ],
  1819. "support": {
  1820. "issues": "https://github.com/doctrine/event-manager/issues",
  1821. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1822. },
  1823. "funding": [
  1824. {
  1825. "url": "https://www.doctrine-project.org/sponsorship.html",
  1826. "type": "custom"
  1827. },
  1828. {
  1829. "url": "https://www.patreon.com/phpdoctrine",
  1830. "type": "patreon"
  1831. },
  1832. {
  1833. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1834. "type": "tidelift"
  1835. }
  1836. ],
  1837. "time": "2020-05-29T18:28:51+00:00"
  1838. },
  1839. {
  1840. "name": "doctrine/inflector",
  1841. "version": "2.0.4",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/doctrine/inflector.git",
  1845. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1850. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  1851. "shasum": "",
  1852. "mirrors": [
  1853. {
  1854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1855. "preferred": true
  1856. }
  1857. ]
  1858. },
  1859. "require": {
  1860. "php": "^7.2 || ^8.0"
  1861. },
  1862. "require-dev": {
  1863. "doctrine/coding-standard": "^8.2",
  1864. "phpstan/phpstan": "^0.12",
  1865. "phpstan/phpstan-phpunit": "^0.12",
  1866. "phpstan/phpstan-strict-rules": "^0.12",
  1867. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1868. "vimeo/psalm": "^4.10"
  1869. },
  1870. "type": "library",
  1871. "autoload": {
  1872. "psr-4": {
  1873. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1874. }
  1875. },
  1876. "notification-url": "https://packagist.org/downloads/",
  1877. "license": [
  1878. "MIT"
  1879. ],
  1880. "authors": [
  1881. {
  1882. "name": "Guilherme Blanco",
  1883. "email": "guilhermeblanco@gmail.com"
  1884. },
  1885. {
  1886. "name": "Roman Borschel",
  1887. "email": "roman@code-factory.org"
  1888. },
  1889. {
  1890. "name": "Benjamin Eberlei",
  1891. "email": "kontakt@beberlei.de"
  1892. },
  1893. {
  1894. "name": "Jonathan Wage",
  1895. "email": "jonwage@gmail.com"
  1896. },
  1897. {
  1898. "name": "Johannes Schmitt",
  1899. "email": "schmittjoh@gmail.com"
  1900. }
  1901. ],
  1902. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1903. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1904. "keywords": [
  1905. "inflection",
  1906. "inflector",
  1907. "lowercase",
  1908. "manipulation",
  1909. "php",
  1910. "plural",
  1911. "singular",
  1912. "strings",
  1913. "uppercase",
  1914. "words"
  1915. ],
  1916. "support": {
  1917. "issues": "https://github.com/doctrine/inflector/issues",
  1918. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  1919. },
  1920. "funding": [
  1921. {
  1922. "url": "https://www.doctrine-project.org/sponsorship.html",
  1923. "type": "custom"
  1924. },
  1925. {
  1926. "url": "https://www.patreon.com/phpdoctrine",
  1927. "type": "patreon"
  1928. },
  1929. {
  1930. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1931. "type": "tidelift"
  1932. }
  1933. ],
  1934. "time": "2021-10-22T20:16:43+00:00"
  1935. },
  1936. {
  1937. "name": "doctrine/lexer",
  1938. "version": "1.2.3",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/doctrine/lexer.git",
  1942. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1947. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1948. "shasum": "",
  1949. "mirrors": [
  1950. {
  1951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1952. "preferred": true
  1953. }
  1954. ]
  1955. },
  1956. "require": {
  1957. "php": "^7.1 || ^8.0"
  1958. },
  1959. "require-dev": {
  1960. "doctrine/coding-standard": "^9.0",
  1961. "phpstan/phpstan": "^1.3",
  1962. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1963. "vimeo/psalm": "^4.11"
  1964. },
  1965. "type": "library",
  1966. "autoload": {
  1967. "psr-4": {
  1968. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1969. }
  1970. },
  1971. "notification-url": "https://packagist.org/downloads/",
  1972. "license": [
  1973. "MIT"
  1974. ],
  1975. "authors": [
  1976. {
  1977. "name": "Guilherme Blanco",
  1978. "email": "guilhermeblanco@gmail.com"
  1979. },
  1980. {
  1981. "name": "Roman Borschel",
  1982. "email": "roman@code-factory.org"
  1983. },
  1984. {
  1985. "name": "Johannes Schmitt",
  1986. "email": "schmittjoh@gmail.com"
  1987. }
  1988. ],
  1989. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1990. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1991. "keywords": [
  1992. "annotations",
  1993. "docblock",
  1994. "lexer",
  1995. "parser",
  1996. "php"
  1997. ],
  1998. "support": {
  1999. "issues": "https://github.com/doctrine/lexer/issues",
  2000. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  2001. },
  2002. "funding": [
  2003. {
  2004. "url": "https://www.doctrine-project.org/sponsorship.html",
  2005. "type": "custom"
  2006. },
  2007. {
  2008. "url": "https://www.patreon.com/phpdoctrine",
  2009. "type": "patreon"
  2010. },
  2011. {
  2012. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  2013. "type": "tidelift"
  2014. }
  2015. ],
  2016. "time": "2022-02-28T11:07:21+00:00"
  2017. },
  2018. {
  2019. "name": "dragonmantank/cron-expression",
  2020. "version": "v3.3.1",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/dragonmantank/cron-expression.git",
  2024. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  2029. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  2030. "shasum": "",
  2031. "mirrors": [
  2032. {
  2033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2034. "preferred": true
  2035. }
  2036. ]
  2037. },
  2038. "require": {
  2039. "php": "^7.2|^8.0",
  2040. "webmozart/assert": "^1.0"
  2041. },
  2042. "replace": {
  2043. "mtdowling/cron-expression": "^1.0"
  2044. },
  2045. "require-dev": {
  2046. "phpstan/extension-installer": "^1.0",
  2047. "phpstan/phpstan": "^1.0",
  2048. "phpstan/phpstan-webmozart-assert": "^1.0",
  2049. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2050. },
  2051. "type": "library",
  2052. "autoload": {
  2053. "psr-4": {
  2054. "Cron\\": "src/Cron/"
  2055. }
  2056. },
  2057. "notification-url": "https://packagist.org/downloads/",
  2058. "license": [
  2059. "MIT"
  2060. ],
  2061. "authors": [
  2062. {
  2063. "name": "Chris Tankersley",
  2064. "email": "chris@ctankersley.com",
  2065. "homepage": "https://github.com/dragonmantank"
  2066. }
  2067. ],
  2068. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  2069. "keywords": [
  2070. "cron",
  2071. "schedule"
  2072. ],
  2073. "support": {
  2074. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  2075. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  2076. },
  2077. "funding": [
  2078. {
  2079. "url": "https://github.com/dragonmantank",
  2080. "type": "github"
  2081. }
  2082. ],
  2083. "time": "2022-01-18T15:43:28+00:00"
  2084. },
  2085. {
  2086. "name": "easywechat-composer/easywechat-composer",
  2087. "version": "1.4.1",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/mingyoung/easywechat-composer.git",
  2091. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  2096. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  2097. "shasum": "",
  2098. "mirrors": [
  2099. {
  2100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2101. "preferred": true
  2102. }
  2103. ]
  2104. },
  2105. "require": {
  2106. "composer-plugin-api": "^1.0 || ^2.0",
  2107. "php": ">=7.0"
  2108. },
  2109. "require-dev": {
  2110. "composer/composer": "^1.0 || ^2.0",
  2111. "phpunit/phpunit": "^6.5 || ^7.0"
  2112. },
  2113. "type": "composer-plugin",
  2114. "extra": {
  2115. "class": "EasyWeChatComposer\\Plugin"
  2116. },
  2117. "autoload": {
  2118. "psr-4": {
  2119. "EasyWeChatComposer\\": "src/"
  2120. }
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "MIT"
  2125. ],
  2126. "authors": [
  2127. {
  2128. "name": "张铭阳",
  2129. "email": "mingyoungcheung@gmail.com"
  2130. }
  2131. ],
  2132. "description": "The composer plugin for EasyWeChat",
  2133. "support": {
  2134. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  2135. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  2136. },
  2137. "time": "2021-07-05T04:03:22+00:00"
  2138. },
  2139. {
  2140. "name": "egulias/email-validator",
  2141. "version": "2.1.25",
  2142. "source": {
  2143. "type": "git",
  2144. "url": "https://github.com/egulias/EmailValidator.git",
  2145. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  2146. },
  2147. "dist": {
  2148. "type": "zip",
  2149. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  2150. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  2151. "shasum": "",
  2152. "mirrors": [
  2153. {
  2154. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2155. "preferred": true
  2156. }
  2157. ]
  2158. },
  2159. "require": {
  2160. "doctrine/lexer": "^1.0.1",
  2161. "php": ">=5.5",
  2162. "symfony/polyfill-intl-idn": "^1.10"
  2163. },
  2164. "require-dev": {
  2165. "dominicsayers/isemail": "^3.0.7",
  2166. "phpunit/phpunit": "^4.8.36|^7.5.15",
  2167. "satooshi/php-coveralls": "^1.0.1"
  2168. },
  2169. "suggest": {
  2170. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  2171. },
  2172. "type": "library",
  2173. "extra": {
  2174. "branch-alias": {
  2175. "dev-master": "2.1.x-dev"
  2176. }
  2177. },
  2178. "autoload": {
  2179. "psr-4": {
  2180. "Egulias\\EmailValidator\\": "src"
  2181. }
  2182. },
  2183. "notification-url": "https://packagist.org/downloads/",
  2184. "license": [
  2185. "MIT"
  2186. ],
  2187. "authors": [
  2188. {
  2189. "name": "Eduardo Gulias Davis"
  2190. }
  2191. ],
  2192. "description": "A library for validating emails against several RFCs",
  2193. "homepage": "https://github.com/egulias/EmailValidator",
  2194. "keywords": [
  2195. "email",
  2196. "emailvalidation",
  2197. "emailvalidator",
  2198. "validation",
  2199. "validator"
  2200. ],
  2201. "support": {
  2202. "issues": "https://github.com/egulias/EmailValidator/issues",
  2203. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  2204. },
  2205. "funding": [
  2206. {
  2207. "url": "https://github.com/egulias",
  2208. "type": "github"
  2209. }
  2210. ],
  2211. "time": "2020-12-29T14:50:06+00:00"
  2212. },
  2213. {
  2214. "name": "fruitcake/laravel-cors",
  2215. "version": "v2.2.0",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://github.com/fruitcake/laravel-cors.git",
  2219. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2224. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2225. "shasum": "",
  2226. "mirrors": [
  2227. {
  2228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2229. "preferred": true
  2230. }
  2231. ]
  2232. },
  2233. "require": {
  2234. "asm89/stack-cors": "^2.0.1",
  2235. "illuminate/contracts": "^6|^7|^8|^9",
  2236. "illuminate/support": "^6|^7|^8|^9",
  2237. "php": ">=7.2"
  2238. },
  2239. "require-dev": {
  2240. "laravel/framework": "^6|^7.24|^8",
  2241. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  2242. "phpunit/phpunit": "^6|^7|^8|^9",
  2243. "squizlabs/php_codesniffer": "^3.5"
  2244. },
  2245. "type": "library",
  2246. "extra": {
  2247. "branch-alias": {
  2248. "dev-master": "2.1-dev"
  2249. },
  2250. "laravel": {
  2251. "providers": [
  2252. "Fruitcake\\Cors\\CorsServiceProvider"
  2253. ]
  2254. }
  2255. },
  2256. "autoload": {
  2257. "psr-4": {
  2258. "Fruitcake\\Cors\\": "src/"
  2259. }
  2260. },
  2261. "notification-url": "https://packagist.org/downloads/",
  2262. "license": [
  2263. "MIT"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Fruitcake",
  2268. "homepage": "https://fruitcake.nl"
  2269. },
  2270. {
  2271. "name": "Barry vd. Heuvel",
  2272. "email": "barryvdh@gmail.com"
  2273. }
  2274. ],
  2275. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  2276. "keywords": [
  2277. "api",
  2278. "cors",
  2279. "crossdomain",
  2280. "laravel"
  2281. ],
  2282. "support": {
  2283. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  2284. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  2285. },
  2286. "funding": [
  2287. {
  2288. "url": "https://fruitcake.nl",
  2289. "type": "custom"
  2290. },
  2291. {
  2292. "url": "https://github.com/barryvdh",
  2293. "type": "github"
  2294. }
  2295. ],
  2296. "time": "2022-02-23T14:25:13+00:00"
  2297. },
  2298. {
  2299. "name": "graham-campbell/result-type",
  2300. "version": "v1.0.4",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2304. "reference": "0690bde05318336c7221785f2a932467f98b64ca"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca",
  2309. "reference": "0690bde05318336c7221785f2a932467f98b64ca",
  2310. "shasum": "",
  2311. "mirrors": [
  2312. {
  2313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2314. "preferred": true
  2315. }
  2316. ]
  2317. },
  2318. "require": {
  2319. "php": "^7.0 || ^8.0",
  2320. "phpoption/phpoption": "^1.8"
  2321. },
  2322. "require-dev": {
  2323. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  2324. },
  2325. "type": "library",
  2326. "autoload": {
  2327. "psr-4": {
  2328. "GrahamCampbell\\ResultType\\": "src/"
  2329. }
  2330. },
  2331. "notification-url": "https://packagist.org/downloads/",
  2332. "license": [
  2333. "MIT"
  2334. ],
  2335. "authors": [
  2336. {
  2337. "name": "Graham Campbell",
  2338. "email": "hello@gjcampbell.co.uk",
  2339. "homepage": "https://github.com/GrahamCampbell"
  2340. }
  2341. ],
  2342. "description": "An Implementation Of The Result Type",
  2343. "keywords": [
  2344. "Graham Campbell",
  2345. "GrahamCampbell",
  2346. "Result Type",
  2347. "Result-Type",
  2348. "result"
  2349. ],
  2350. "support": {
  2351. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2352. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.4"
  2353. },
  2354. "funding": [
  2355. {
  2356. "url": "https://github.com/GrahamCampbell",
  2357. "type": "github"
  2358. },
  2359. {
  2360. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2361. "type": "tidelift"
  2362. }
  2363. ],
  2364. "time": "2021-11-21T21:41:47+00:00"
  2365. },
  2366. {
  2367. "name": "guzzlehttp/guzzle",
  2368. "version": "7.4.4",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/guzzle/guzzle.git",
  2372. "reference": "e3ff079b22820c2029d4c2a87796b6a0b8716ad8"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/e3ff079b22820c2029d4c2a87796b6a0b8716ad8",
  2377. "reference": "e3ff079b22820c2029d4c2a87796b6a0b8716ad8",
  2378. "shasum": "",
  2379. "mirrors": [
  2380. {
  2381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2382. "preferred": true
  2383. }
  2384. ]
  2385. },
  2386. "require": {
  2387. "ext-json": "*",
  2388. "guzzlehttp/promises": "^1.5",
  2389. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  2390. "php": "^7.2.5 || ^8.0",
  2391. "psr/http-client": "^1.0",
  2392. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2393. },
  2394. "provide": {
  2395. "psr/http-client-implementation": "1.0"
  2396. },
  2397. "require-dev": {
  2398. "bamarni/composer-bin-plugin": "^1.4.1",
  2399. "ext-curl": "*",
  2400. "php-http/client-integration-tests": "^3.0",
  2401. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  2402. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2403. },
  2404. "suggest": {
  2405. "ext-curl": "Required for CURL handler support",
  2406. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2407. "psr/log": "Required for using the Log middleware"
  2408. },
  2409. "type": "library",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-master": "7.4-dev"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "files": [
  2417. "src/functions_include.php"
  2418. ],
  2419. "psr-4": {
  2420. "GuzzleHttp\\": "src/"
  2421. }
  2422. },
  2423. "notification-url": "https://packagist.org/downloads/",
  2424. "license": [
  2425. "MIT"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "Graham Campbell",
  2430. "email": "hello@gjcampbell.co.uk",
  2431. "homepage": "https://github.com/GrahamCampbell"
  2432. },
  2433. {
  2434. "name": "Michael Dowling",
  2435. "email": "mtdowling@gmail.com",
  2436. "homepage": "https://github.com/mtdowling"
  2437. },
  2438. {
  2439. "name": "Jeremy Lindblom",
  2440. "email": "jeremeamia@gmail.com",
  2441. "homepage": "https://github.com/jeremeamia"
  2442. },
  2443. {
  2444. "name": "George Mponos",
  2445. "email": "gmponos@gmail.com",
  2446. "homepage": "https://github.com/gmponos"
  2447. },
  2448. {
  2449. "name": "Tobias Nyholm",
  2450. "email": "tobias.nyholm@gmail.com",
  2451. "homepage": "https://github.com/Nyholm"
  2452. },
  2453. {
  2454. "name": "Márk Sági-Kazár",
  2455. "email": "mark.sagikazar@gmail.com",
  2456. "homepage": "https://github.com/sagikazarmark"
  2457. },
  2458. {
  2459. "name": "Tobias Schultze",
  2460. "email": "webmaster@tubo-world.de",
  2461. "homepage": "https://github.com/Tobion"
  2462. }
  2463. ],
  2464. "description": "Guzzle is a PHP HTTP client library",
  2465. "keywords": [
  2466. "client",
  2467. "curl",
  2468. "framework",
  2469. "http",
  2470. "http client",
  2471. "psr-18",
  2472. "psr-7",
  2473. "rest",
  2474. "web service"
  2475. ],
  2476. "support": {
  2477. "issues": "https://github.com/guzzle/guzzle/issues",
  2478. "source": "https://github.com/guzzle/guzzle/tree/7.4.4"
  2479. },
  2480. "funding": [
  2481. {
  2482. "url": "https://github.com/GrahamCampbell",
  2483. "type": "github"
  2484. },
  2485. {
  2486. "url": "https://github.com/Nyholm",
  2487. "type": "github"
  2488. },
  2489. {
  2490. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2491. "type": "tidelift"
  2492. }
  2493. ],
  2494. "time": "2022-06-09T21:39:15+00:00"
  2495. },
  2496. {
  2497. "name": "guzzlehttp/promises",
  2498. "version": "1.5.1",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://github.com/guzzle/promises.git",
  2502. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2507. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  2508. "shasum": "",
  2509. "mirrors": [
  2510. {
  2511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2512. "preferred": true
  2513. }
  2514. ]
  2515. },
  2516. "require": {
  2517. "php": ">=5.5"
  2518. },
  2519. "require-dev": {
  2520. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2521. },
  2522. "type": "library",
  2523. "extra": {
  2524. "branch-alias": {
  2525. "dev-master": "1.5-dev"
  2526. }
  2527. },
  2528. "autoload": {
  2529. "files": [
  2530. "src/functions_include.php"
  2531. ],
  2532. "psr-4": {
  2533. "GuzzleHttp\\Promise\\": "src/"
  2534. }
  2535. },
  2536. "notification-url": "https://packagist.org/downloads/",
  2537. "license": [
  2538. "MIT"
  2539. ],
  2540. "authors": [
  2541. {
  2542. "name": "Graham Campbell",
  2543. "email": "hello@gjcampbell.co.uk",
  2544. "homepage": "https://github.com/GrahamCampbell"
  2545. },
  2546. {
  2547. "name": "Michael Dowling",
  2548. "email": "mtdowling@gmail.com",
  2549. "homepage": "https://github.com/mtdowling"
  2550. },
  2551. {
  2552. "name": "Tobias Nyholm",
  2553. "email": "tobias.nyholm@gmail.com",
  2554. "homepage": "https://github.com/Nyholm"
  2555. },
  2556. {
  2557. "name": "Tobias Schultze",
  2558. "email": "webmaster@tubo-world.de",
  2559. "homepage": "https://github.com/Tobion"
  2560. }
  2561. ],
  2562. "description": "Guzzle promises library",
  2563. "keywords": [
  2564. "promise"
  2565. ],
  2566. "support": {
  2567. "issues": "https://github.com/guzzle/promises/issues",
  2568. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  2569. },
  2570. "funding": [
  2571. {
  2572. "url": "https://github.com/GrahamCampbell",
  2573. "type": "github"
  2574. },
  2575. {
  2576. "url": "https://github.com/Nyholm",
  2577. "type": "github"
  2578. },
  2579. {
  2580. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2581. "type": "tidelift"
  2582. }
  2583. ],
  2584. "time": "2021-10-22T20:56:57+00:00"
  2585. },
  2586. {
  2587. "name": "guzzlehttp/psr7",
  2588. "version": "2.3.0",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/guzzle/psr7.git",
  2592. "reference": "83260bb50b8fc753c72d14dc1621a2dac31877ee"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/guzzle/psr7/zipball/83260bb50b8fc753c72d14dc1621a2dac31877ee",
  2597. "reference": "83260bb50b8fc753c72d14dc1621a2dac31877ee",
  2598. "shasum": "",
  2599. "mirrors": [
  2600. {
  2601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2602. "preferred": true
  2603. }
  2604. ]
  2605. },
  2606. "require": {
  2607. "php": "^7.2.5 || ^8.0",
  2608. "psr/http-factory": "^1.0",
  2609. "psr/http-message": "^1.0",
  2610. "ralouphie/getallheaders": "^3.0"
  2611. },
  2612. "provide": {
  2613. "psr/http-factory-implementation": "1.0",
  2614. "psr/http-message-implementation": "1.0"
  2615. },
  2616. "require-dev": {
  2617. "bamarni/composer-bin-plugin": "^1.4.1",
  2618. "http-interop/http-factory-tests": "^0.9",
  2619. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  2620. },
  2621. "suggest": {
  2622. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2623. },
  2624. "type": "library",
  2625. "extra": {
  2626. "branch-alias": {
  2627. "dev-master": "2.3-dev"
  2628. }
  2629. },
  2630. "autoload": {
  2631. "psr-4": {
  2632. "GuzzleHttp\\Psr7\\": "src/"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Graham Campbell",
  2642. "email": "hello@gjcampbell.co.uk",
  2643. "homepage": "https://github.com/GrahamCampbell"
  2644. },
  2645. {
  2646. "name": "Michael Dowling",
  2647. "email": "mtdowling@gmail.com",
  2648. "homepage": "https://github.com/mtdowling"
  2649. },
  2650. {
  2651. "name": "George Mponos",
  2652. "email": "gmponos@gmail.com",
  2653. "homepage": "https://github.com/gmponos"
  2654. },
  2655. {
  2656. "name": "Tobias Nyholm",
  2657. "email": "tobias.nyholm@gmail.com",
  2658. "homepage": "https://github.com/Nyholm"
  2659. },
  2660. {
  2661. "name": "Márk Sági-Kazár",
  2662. "email": "mark.sagikazar@gmail.com",
  2663. "homepage": "https://github.com/sagikazarmark"
  2664. },
  2665. {
  2666. "name": "Tobias Schultze",
  2667. "email": "webmaster@tubo-world.de",
  2668. "homepage": "https://github.com/Tobion"
  2669. },
  2670. {
  2671. "name": "Márk Sági-Kazár",
  2672. "email": "mark.sagikazar@gmail.com",
  2673. "homepage": "https://sagikazarmark.hu"
  2674. }
  2675. ],
  2676. "description": "PSR-7 message implementation that also provides common utility methods",
  2677. "keywords": [
  2678. "http",
  2679. "message",
  2680. "psr-7",
  2681. "request",
  2682. "response",
  2683. "stream",
  2684. "uri",
  2685. "url"
  2686. ],
  2687. "support": {
  2688. "issues": "https://github.com/guzzle/psr7/issues",
  2689. "source": "https://github.com/guzzle/psr7/tree/2.3.0"
  2690. },
  2691. "funding": [
  2692. {
  2693. "url": "https://github.com/GrahamCampbell",
  2694. "type": "github"
  2695. },
  2696. {
  2697. "url": "https://github.com/Nyholm",
  2698. "type": "github"
  2699. },
  2700. {
  2701. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2702. "type": "tidelift"
  2703. }
  2704. ],
  2705. "time": "2022-06-09T08:26:02+00:00"
  2706. },
  2707. {
  2708. "name": "h4cc/wkhtmltopdf-amd64",
  2709. "version": "0.12.4",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://github.com/h4cc/wkhtmltopdf-amd64.git",
  2713. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-amd64/zipball/4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2718. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  2719. "shasum": "",
  2720. "mirrors": [
  2721. {
  2722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2723. "preferred": true
  2724. }
  2725. ]
  2726. },
  2727. "bin": [
  2728. "bin/wkhtmltopdf-amd64"
  2729. ],
  2730. "type": "library",
  2731. "autoload": {
  2732. "psr-4": {
  2733. "h4cc\\WKHTMLToPDF\\": ""
  2734. }
  2735. },
  2736. "notification-url": "https://packagist.org/downloads/",
  2737. "license": [
  2738. "LGPL Version 3"
  2739. ],
  2740. "authors": [
  2741. {
  2742. "name": "Julius Beckmann",
  2743. "email": "github@h4cc.de"
  2744. }
  2745. ],
  2746. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for amd64 systems.",
  2747. "homepage": "http://wkhtmltopdf.org/",
  2748. "keywords": [
  2749. "binary",
  2750. "convert",
  2751. "pdf",
  2752. "snapshot",
  2753. "thumbnail",
  2754. "wkhtmltopdf"
  2755. ],
  2756. "support": {
  2757. "issues": "https://github.com/h4cc/wkhtmltopdf-amd64/issues",
  2758. "source": "https://github.com/h4cc/wkhtmltopdf-amd64/tree/master"
  2759. },
  2760. "time": "2018-01-15T06:57:33+00:00"
  2761. },
  2762. {
  2763. "name": "h4cc/wkhtmltopdf-i386",
  2764. "version": "0.12.4",
  2765. "source": {
  2766. "type": "git",
  2767. "url": "https://github.com/h4cc/wkhtmltopdf-i386.git",
  2768. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3"
  2769. },
  2770. "dist": {
  2771. "type": "zip",
  2772. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-i386/zipball/da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2773. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  2774. "shasum": "",
  2775. "mirrors": [
  2776. {
  2777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2778. "preferred": true
  2779. }
  2780. ]
  2781. },
  2782. "bin": [
  2783. "bin/wkhtmltopdf-i386"
  2784. ],
  2785. "type": "library",
  2786. "notification-url": "https://packagist.org/downloads/",
  2787. "license": [
  2788. "LGPL Version 3"
  2789. ],
  2790. "authors": [
  2791. {
  2792. "name": "Julius Beckmann",
  2793. "email": "github@h4cc.de"
  2794. }
  2795. ],
  2796. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for i386 systems.",
  2797. "homepage": "http://wkhtmltopdf.org/",
  2798. "keywords": [
  2799. "binary",
  2800. "convert",
  2801. "pdf",
  2802. "snapshot",
  2803. "thumbnail",
  2804. "wkhtmltopdf"
  2805. ],
  2806. "support": {
  2807. "issues": "https://github.com/h4cc/wkhtmltopdf-i386/issues",
  2808. "source": "https://github.com/h4cc/wkhtmltopdf-i386/tree/master"
  2809. },
  2810. "time": "2018-01-15T07:18:15+00:00"
  2811. },
  2812. {
  2813. "name": "hanneskod/classtools",
  2814. "version": "1.2.1",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/hanneskod/classtools.git",
  2818. "reference": "d365ddac0e602027c0471ea292f4ba2afcb49394"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/hanneskod/classtools/zipball/d365ddac0e602027c0471ea292f4ba2afcb49394",
  2823. "reference": "d365ddac0e602027c0471ea292f4ba2afcb49394",
  2824. "shasum": "",
  2825. "mirrors": [
  2826. {
  2827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2828. "preferred": true
  2829. }
  2830. ]
  2831. },
  2832. "require": {
  2833. "nikic/php-parser": "^4",
  2834. "php": ">=7.1",
  2835. "symfony/finder": "^4|^5"
  2836. },
  2837. "type": "library",
  2838. "autoload": {
  2839. "psr-4": {
  2840. "hanneskod\\classtools\\": "src/"
  2841. }
  2842. },
  2843. "notification-url": "https://packagist.org/downloads/",
  2844. "license": [
  2845. "WTFPL"
  2846. ],
  2847. "authors": [
  2848. {
  2849. "name": "Hannes Forsgård",
  2850. "email": "hannes.forsgard@fripost.org"
  2851. }
  2852. ],
  2853. "description": "Find, extract and process classes from file system",
  2854. "homepage": "https://github.com/hanneskod/classtools",
  2855. "keywords": [
  2856. "class finder",
  2857. "code generator",
  2858. "metaprogramming",
  2859. "minimizer"
  2860. ],
  2861. "support": {
  2862. "issues": "https://github.com/hanneskod/classtools/issues",
  2863. "source": "https://github.com/hanneskod/classtools/tree/1.0"
  2864. },
  2865. "time": "2020-03-05T20:41:28+00:00"
  2866. },
  2867. {
  2868. "name": "iidestiny/flysystem-oss",
  2869. "version": "2.7",
  2870. "source": {
  2871. "type": "git",
  2872. "url": "https://github.com/iiDestiny/flysystem-oss.git",
  2873. "reference": "c943ce550e973129955275bb17e8182fe8a74020"
  2874. },
  2875. "dist": {
  2876. "type": "zip",
  2877. "url": "https://api.github.com/repos/iiDestiny/flysystem-oss/zipball/c943ce550e973129955275bb17e8182fe8a74020",
  2878. "reference": "c943ce550e973129955275bb17e8182fe8a74020",
  2879. "shasum": "",
  2880. "mirrors": [
  2881. {
  2882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2883. "preferred": true
  2884. }
  2885. ]
  2886. },
  2887. "require": {
  2888. "aliyuncs/oss-sdk-php": "^2.4",
  2889. "ext-curl": "*",
  2890. "ext-json": "*",
  2891. "ext-openssl": "*",
  2892. "league/flysystem": "^1.0",
  2893. "nesbot/carbon": "^1.24.1 || ^2.0",
  2894. "php": "^7.0 || ^8.0"
  2895. },
  2896. "require-dev": {
  2897. "mockery/mockery": "^1.2",
  2898. "phpunit/phpunit": "^6.5",
  2899. "symfony/var-dumper": "^3.4"
  2900. },
  2901. "type": "library",
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Iidestiny\\Flysystem\\Oss\\": "src"
  2905. }
  2906. },
  2907. "notification-url": "https://packagist.org/downloads/",
  2908. "license": [
  2909. "MIT"
  2910. ],
  2911. "authors": [
  2912. {
  2913. "name": "iidestiny",
  2914. "email": "iidestiny@vip.qq.com"
  2915. }
  2916. ],
  2917. "description": "Flysystem adapter for the Oss storage.",
  2918. "keywords": [
  2919. "alioss",
  2920. "laravel",
  2921. "oss",
  2922. "阿里oss"
  2923. ],
  2924. "support": {
  2925. "issues": "https://github.com/iiDestiny/flysystem-oss/issues",
  2926. "source": "https://github.com/iiDestiny/flysystem-oss/tree/2.7"
  2927. },
  2928. "time": "2021-06-14T10:18:58+00:00"
  2929. },
  2930. {
  2931. "name": "iidestiny/laravel-filesystem-oss",
  2932. "version": "2.1",
  2933. "source": {
  2934. "type": "git",
  2935. "url": "https://github.com/iiDestiny/laravel-filesystem-oss.git",
  2936. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223"
  2937. },
  2938. "dist": {
  2939. "type": "zip",
  2940. "url": "https://api.github.com/repos/iiDestiny/laravel-filesystem-oss/zipball/ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2941. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2942. "shasum": "",
  2943. "mirrors": [
  2944. {
  2945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2946. "preferred": true
  2947. }
  2948. ]
  2949. },
  2950. "require": {
  2951. "iidestiny/flysystem-oss": "~2.0",
  2952. "php": "^7.0|^8.0"
  2953. },
  2954. "type": "library",
  2955. "extra": {
  2956. "laravel": {
  2957. "providers": [
  2958. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  2959. ]
  2960. }
  2961. },
  2962. "autoload": {
  2963. "psr-4": {
  2964. "Iidestiny\\LaravelFilesystemOss\\": "src"
  2965. }
  2966. },
  2967. "notification-url": "https://packagist.org/downloads/",
  2968. "license": [
  2969. "MIT"
  2970. ],
  2971. "authors": [
  2972. {
  2973. "name": "iidestiny",
  2974. "email": "iidestiny@vip.qq.com"
  2975. }
  2976. ],
  2977. "description": "Oss storage filesystem for Laravel.",
  2978. "support": {
  2979. "issues": "https://github.com/iiDestiny/laravel-filesystem-oss/issues",
  2980. "source": "https://github.com/iiDestiny/laravel-filesystem-oss/tree/2.1"
  2981. },
  2982. "time": "2020-11-30T06:17:22+00:00"
  2983. },
  2984. {
  2985. "name": "jbroadway/urlify",
  2986. "version": "1.2.3-stable",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/jbroadway/urlify.git",
  2990. "reference": "b7c142a247bd5fac2bb62ca2491bd151c4d1dee4"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/jbroadway/urlify/zipball/b7c142a247bd5fac2bb62ca2491bd151c4d1dee4",
  2995. "reference": "b7c142a247bd5fac2bb62ca2491bd151c4d1dee4",
  2996. "shasum": "",
  2997. "mirrors": [
  2998. {
  2999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3000. "preferred": true
  3001. }
  3002. ]
  3003. },
  3004. "require": {
  3005. "php": ">=7.2",
  3006. "voku/portable-ascii": "^1.4",
  3007. "voku/stop-words": "^2.0"
  3008. },
  3009. "require-dev": {
  3010. "phpunit/phpunit": "^8.5"
  3011. },
  3012. "type": "library",
  3013. "extra": {
  3014. "branch-alias": {
  3015. "dev-master": "1.0-dev"
  3016. }
  3017. },
  3018. "autoload": {
  3019. "psr-0": {
  3020. "URLify": ""
  3021. }
  3022. },
  3023. "notification-url": "https://packagist.org/downloads/",
  3024. "license": [
  3025. "BSD-3-Clause-Clear"
  3026. ],
  3027. "authors": [
  3028. {
  3029. "name": "Johnny Broadway",
  3030. "email": "johnny@johnnybroadway.com",
  3031. "homepage": "http://www.johnnybroadway.com/"
  3032. }
  3033. ],
  3034. "description": "A fast PHP slug generator and transliteration library that converts non-ascii characters for use in URLs.",
  3035. "homepage": "https://github.com/jbroadway/urlify",
  3036. "keywords": [
  3037. "ascii",
  3038. "blogging",
  3039. "blogs",
  3040. "downcode",
  3041. "encode",
  3042. "iconv",
  3043. "link",
  3044. "seo",
  3045. "slug",
  3046. "slugify",
  3047. "slugs",
  3048. "translit",
  3049. "transliterate",
  3050. "transliteration",
  3051. "unicode",
  3052. "url",
  3053. "urlify"
  3054. ],
  3055. "support": {
  3056. "issues": "https://github.com/jbroadway/urlify/issues",
  3057. "source": "https://github.com/jbroadway/urlify/tree/1.2.3-stable"
  3058. },
  3059. "time": "2021-12-29T21:23:40+00:00"
  3060. },
  3061. {
  3062. "name": "jormin/laravel-ddoc",
  3063. "version": "v1.1.5",
  3064. "source": {
  3065. "type": "git",
  3066. "url": "https://github.com/jormin/laravel-ddoc.git",
  3067. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77"
  3068. },
  3069. "dist": {
  3070. "type": "zip",
  3071. "url": "https://api.github.com/repos/jormin/laravel-ddoc/zipball/d7608d3395f7fd1085a3ce7b82441d2360769c77",
  3072. "reference": "d7608d3395f7fd1085a3ce7b82441d2360769c77",
  3073. "shasum": "",
  3074. "mirrors": [
  3075. {
  3076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3077. "preferred": true
  3078. }
  3079. ]
  3080. },
  3081. "require": {
  3082. "barryvdh/laravel-snappy": "^0.4.0",
  3083. "h4cc/wkhtmltopdf-amd64": "0.12.x",
  3084. "h4cc/wkhtmltopdf-i386": "0.12.x",
  3085. "php": ">=5.6",
  3086. "wemersonjanuario/wkhtmltopdf-windows": "0.12.x"
  3087. },
  3088. "require-dev": {
  3089. "phpunit/phpunit": "~4.0||~5.0",
  3090. "squizlabs/php_codesniffer": "^2.3"
  3091. },
  3092. "type": "library",
  3093. "extra": {
  3094. "branch-alias": {
  3095. "dev-master": "1.1.x-dev"
  3096. },
  3097. "laravel": {
  3098. "providers": [
  3099. "Jormin\\DDoc\\DDocServiceProvider"
  3100. ]
  3101. }
  3102. },
  3103. "autoload": {
  3104. "psr-4": {
  3105. "Jormin\\DDoc\\": "src"
  3106. }
  3107. },
  3108. "notification-url": "https://packagist.org/downloads/",
  3109. "license": [
  3110. "MIT"
  3111. ],
  3112. "authors": [
  3113. {
  3114. "name": "Jormin",
  3115. "email": "jorminxee@gmail.com",
  3116. "homepage": "https://blog.lerzen.com",
  3117. "role": "Developer"
  3118. }
  3119. ],
  3120. "description": "每次开发项目时,总是会被要求提供数据字典,每次手动写文档太累了,所以写了这个扩展,自动读取数据库信息并显示在网页上,支持导出Html和PDF文件。",
  3121. "homepage": "https://github.com/jormin/laravel-ddoc",
  3122. "keywords": [
  3123. "DDoc",
  3124. "Jormin",
  3125. "laravel"
  3126. ],
  3127. "support": {
  3128. "issues": "https://github.com/jormin/laravel-ddoc/issues",
  3129. "source": "https://github.com/jormin/laravel-ddoc/tree/v1.1.5"
  3130. },
  3131. "time": "2021-09-07T04:26:43+00:00"
  3132. },
  3133. {
  3134. "name": "jpush/jpush",
  3135. "version": "v3.6.8",
  3136. "source": {
  3137. "type": "git",
  3138. "url": "https://github.com/jpush/jpush-api-php-client.git",
  3139. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  3140. },
  3141. "dist": {
  3142. "type": "zip",
  3143. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  3144. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  3145. "shasum": "",
  3146. "mirrors": [
  3147. {
  3148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3149. "preferred": true
  3150. }
  3151. ]
  3152. },
  3153. "require": {
  3154. "ext-curl": "*",
  3155. "php": ">=5.3.3"
  3156. },
  3157. "require-dev": {
  3158. "phpunit/phpunit": "*"
  3159. },
  3160. "type": "library",
  3161. "autoload": {
  3162. "psr-4": {
  3163. "JPush\\": "src/JPush/"
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "JPush",
  3173. "email": "support@jpush.cn",
  3174. "homepage": "https://www.jpush.cn/",
  3175. "role": "Developer"
  3176. }
  3177. ],
  3178. "description": "JPush API PHP Client",
  3179. "homepage": "https://github.com/jpush/jpush-api-php-client",
  3180. "support": {
  3181. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  3182. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  3183. },
  3184. "time": "2021-08-12T07:43:39+00:00"
  3185. },
  3186. {
  3187. "name": "knplabs/knp-snappy",
  3188. "version": "v1.4.1",
  3189. "source": {
  3190. "type": "git",
  3191. "url": "https://github.com/KnpLabs/snappy.git",
  3192. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67"
  3193. },
  3194. "dist": {
  3195. "type": "zip",
  3196. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/5126fb5b335ec929a226314d40cd8dad497c3d67",
  3197. "reference": "5126fb5b335ec929a226314d40cd8dad497c3d67",
  3198. "shasum": "",
  3199. "mirrors": [
  3200. {
  3201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3202. "preferred": true
  3203. }
  3204. ]
  3205. },
  3206. "require": {
  3207. "php": ">=7.1",
  3208. "psr/log": "^1.0||^2.0||^3.0",
  3209. "symfony/process": "~3.4||~4.3||~5.0||~6.0"
  3210. },
  3211. "require-dev": {
  3212. "friendsofphp/php-cs-fixer": "^2.16||^3.0",
  3213. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3214. "phpstan/phpstan": "^0.12.7",
  3215. "phpstan/phpstan-phpunit": "^0.12.6",
  3216. "phpunit/phpunit": "~7.4||~8.5"
  3217. },
  3218. "suggest": {
  3219. "h4cc/wkhtmltoimage-amd64": "Provides wkhtmltoimage-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  3220. "h4cc/wkhtmltoimage-i386": "Provides wkhtmltoimage-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  3221. "h4cc/wkhtmltopdf-amd64": "Provides wkhtmltopdf-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  3222. "h4cc/wkhtmltopdf-i386": "Provides wkhtmltopdf-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  3223. "wemersonjanuario/wkhtmltopdf-windows": "Provides wkhtmltopdf executable for Windows, use version `~0.12` as dependency"
  3224. },
  3225. "type": "library",
  3226. "extra": {
  3227. "branch-alias": {
  3228. "dev-master": "1.x-dev"
  3229. }
  3230. },
  3231. "autoload": {
  3232. "psr-4": {
  3233. "Knp\\Snappy\\": "src/Knp/Snappy"
  3234. }
  3235. },
  3236. "notification-url": "https://packagist.org/downloads/",
  3237. "license": [
  3238. "MIT"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "KNP Labs Team",
  3243. "homepage": "http://knplabs.com"
  3244. },
  3245. {
  3246. "name": "Symfony Community",
  3247. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3248. }
  3249. ],
  3250. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3251. "homepage": "http://github.com/KnpLabs/snappy",
  3252. "keywords": [
  3253. "knp",
  3254. "knplabs",
  3255. "pdf",
  3256. "snapshot",
  3257. "thumbnail",
  3258. "wkhtmltopdf"
  3259. ],
  3260. "support": {
  3261. "issues": "https://github.com/KnpLabs/snappy/issues",
  3262. "source": "https://github.com/KnpLabs/snappy/tree/v1.4.1"
  3263. },
  3264. "time": "2022-01-07T13:03:38+00:00"
  3265. },
  3266. {
  3267. "name": "laminas/laminas-code",
  3268. "version": "4.5.1",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/laminas/laminas-code.git",
  3272. "reference": "6fd96d4d913571a2cd056a27b123fa28cb90ac4e"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/6fd96d4d913571a2cd056a27b123fa28cb90ac4e",
  3277. "reference": "6fd96d4d913571a2cd056a27b123fa28cb90ac4e",
  3278. "shasum": "",
  3279. "mirrors": [
  3280. {
  3281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3282. "preferred": true
  3283. }
  3284. ]
  3285. },
  3286. "require": {
  3287. "php": ">=7.4, <8.2"
  3288. },
  3289. "require-dev": {
  3290. "doctrine/annotations": "^1.13.2",
  3291. "ext-phar": "*",
  3292. "laminas/laminas-coding-standard": "^2.3.0",
  3293. "laminas/laminas-stdlib": "^3.6.1",
  3294. "phpunit/phpunit": "^9.5.10",
  3295. "psalm/plugin-phpunit": "^0.16.1",
  3296. "vimeo/psalm": "^4.13.1"
  3297. },
  3298. "suggest": {
  3299. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  3300. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  3301. },
  3302. "type": "library",
  3303. "autoload": {
  3304. "files": [
  3305. "polyfill/ReflectionEnumPolyfill.php"
  3306. ],
  3307. "psr-4": {
  3308. "Laminas\\Code\\": "src/"
  3309. }
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "BSD-3-Clause"
  3314. ],
  3315. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  3316. "homepage": "https://laminas.dev",
  3317. "keywords": [
  3318. "code",
  3319. "laminas",
  3320. "laminasframework"
  3321. ],
  3322. "support": {
  3323. "chat": "https://laminas.dev/chat",
  3324. "docs": "https://docs.laminas.dev/laminas-code/",
  3325. "forum": "https://discourse.laminas.dev",
  3326. "issues": "https://github.com/laminas/laminas-code/issues",
  3327. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  3328. "source": "https://github.com/laminas/laminas-code"
  3329. },
  3330. "funding": [
  3331. {
  3332. "url": "https://funding.communitybridge.org/projects/laminas-project",
  3333. "type": "community_bridge"
  3334. }
  3335. ],
  3336. "time": "2021-12-19T18:06:55+00:00"
  3337. },
  3338. {
  3339. "name": "laravel-lang/lang",
  3340. "version": "3.0.62",
  3341. "source": {
  3342. "type": "git",
  3343. "url": "https://github.com/Laravel-Lang/lang.git",
  3344. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7"
  3345. },
  3346. "dist": {
  3347. "type": "zip",
  3348. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  3349. "reference": "fcb8cec051b175278e0a9efa440f0b1033d12dd7",
  3350. "shasum": "",
  3351. "mirrors": [
  3352. {
  3353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3354. "preferred": true
  3355. }
  3356. ]
  3357. },
  3358. "require-dev": {
  3359. "friendsofphp/php-cs-fixer": "^2.10"
  3360. },
  3361. "suggest": {
  3362. "ablunier/laravel-lang-installer": "Command for easily add languages to a Laravel project",
  3363. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  3364. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  3365. "overtrue/laravel-lang": "Command to add languages in your project"
  3366. },
  3367. "type": "library",
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "caouecs",
  3375. "email": "caouecs@caouecs.net"
  3376. }
  3377. ],
  3378. "description": "Languages for Laravel",
  3379. "keywords": [
  3380. "lang",
  3381. "languages",
  3382. "laravel",
  3383. "lpm"
  3384. ],
  3385. "support": {
  3386. "issues": "https://github.com/Laravel-Lang/lang/issues",
  3387. "source": "https://github.com/Laravel-Lang/lang/tree/3.0.62"
  3388. },
  3389. "time": "2019-03-17T10:36:46+00:00"
  3390. },
  3391. {
  3392. "name": "laravel/framework",
  3393. "version": "v8.83.16",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://github.com/laravel/framework.git",
  3397. "reference": "6be5abd144faf517879af7298e9d79f06f250f75"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://api.github.com/repos/laravel/framework/zipball/6be5abd144faf517879af7298e9d79f06f250f75",
  3402. "reference": "6be5abd144faf517879af7298e9d79f06f250f75",
  3403. "shasum": "",
  3404. "mirrors": [
  3405. {
  3406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3407. "preferred": true
  3408. }
  3409. ]
  3410. },
  3411. "require": {
  3412. "doctrine/inflector": "^1.4|^2.0",
  3413. "dragonmantank/cron-expression": "^3.0.2",
  3414. "egulias/email-validator": "^2.1.10",
  3415. "ext-json": "*",
  3416. "ext-mbstring": "*",
  3417. "ext-openssl": "*",
  3418. "laravel/serializable-closure": "^1.0",
  3419. "league/commonmark": "^1.3|^2.0.2",
  3420. "league/flysystem": "^1.1",
  3421. "monolog/monolog": "^2.0",
  3422. "nesbot/carbon": "^2.53.1",
  3423. "opis/closure": "^3.6",
  3424. "php": "^7.3|^8.0",
  3425. "psr/container": "^1.0",
  3426. "psr/log": "^1.0|^2.0",
  3427. "psr/simple-cache": "^1.0",
  3428. "ramsey/uuid": "^4.2.2",
  3429. "swiftmailer/swiftmailer": "^6.3",
  3430. "symfony/console": "^5.4",
  3431. "symfony/error-handler": "^5.4",
  3432. "symfony/finder": "^5.4",
  3433. "symfony/http-foundation": "^5.4",
  3434. "symfony/http-kernel": "^5.4",
  3435. "symfony/mime": "^5.4",
  3436. "symfony/process": "^5.4",
  3437. "symfony/routing": "^5.4",
  3438. "symfony/var-dumper": "^5.4",
  3439. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3440. "vlucas/phpdotenv": "^5.4.1",
  3441. "voku/portable-ascii": "^1.6.1"
  3442. },
  3443. "conflict": {
  3444. "tightenco/collect": "<5.5.33"
  3445. },
  3446. "provide": {
  3447. "psr/container-implementation": "1.0",
  3448. "psr/simple-cache-implementation": "1.0"
  3449. },
  3450. "replace": {
  3451. "illuminate/auth": "self.version",
  3452. "illuminate/broadcasting": "self.version",
  3453. "illuminate/bus": "self.version",
  3454. "illuminate/cache": "self.version",
  3455. "illuminate/collections": "self.version",
  3456. "illuminate/config": "self.version",
  3457. "illuminate/console": "self.version",
  3458. "illuminate/container": "self.version",
  3459. "illuminate/contracts": "self.version",
  3460. "illuminate/cookie": "self.version",
  3461. "illuminate/database": "self.version",
  3462. "illuminate/encryption": "self.version",
  3463. "illuminate/events": "self.version",
  3464. "illuminate/filesystem": "self.version",
  3465. "illuminate/hashing": "self.version",
  3466. "illuminate/http": "self.version",
  3467. "illuminate/log": "self.version",
  3468. "illuminate/macroable": "self.version",
  3469. "illuminate/mail": "self.version",
  3470. "illuminate/notifications": "self.version",
  3471. "illuminate/pagination": "self.version",
  3472. "illuminate/pipeline": "self.version",
  3473. "illuminate/queue": "self.version",
  3474. "illuminate/redis": "self.version",
  3475. "illuminate/routing": "self.version",
  3476. "illuminate/session": "self.version",
  3477. "illuminate/support": "self.version",
  3478. "illuminate/testing": "self.version",
  3479. "illuminate/translation": "self.version",
  3480. "illuminate/validation": "self.version",
  3481. "illuminate/view": "self.version"
  3482. },
  3483. "require-dev": {
  3484. "aws/aws-sdk-php": "^3.198.1",
  3485. "doctrine/dbal": "^2.13.3|^3.1.4",
  3486. "filp/whoops": "^2.14.3",
  3487. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3488. "league/flysystem-cached-adapter": "^1.0",
  3489. "mockery/mockery": "^1.4.4",
  3490. "orchestra/testbench-core": "^6.27",
  3491. "pda/pheanstalk": "^4.0",
  3492. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3493. "predis/predis": "^1.1.9",
  3494. "symfony/cache": "^5.4"
  3495. },
  3496. "suggest": {
  3497. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3498. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3499. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3500. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3501. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3502. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3503. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3504. "ext-memcached": "Required to use the memcache cache driver.",
  3505. "ext-pcntl": "Required to use all features of the queue worker.",
  3506. "ext-posix": "Required to use all features of the queue worker.",
  3507. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3508. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3509. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3510. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3511. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3512. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3513. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3514. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3515. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3516. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3517. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3518. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3519. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3520. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3521. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3522. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3523. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3524. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3525. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3526. },
  3527. "type": "library",
  3528. "extra": {
  3529. "branch-alias": {
  3530. "dev-master": "8.x-dev"
  3531. }
  3532. },
  3533. "autoload": {
  3534. "files": [
  3535. "src/Illuminate/Collections/helpers.php",
  3536. "src/Illuminate/Events/functions.php",
  3537. "src/Illuminate/Foundation/helpers.php",
  3538. "src/Illuminate/Support/helpers.php"
  3539. ],
  3540. "psr-4": {
  3541. "Illuminate\\": "src/Illuminate/",
  3542. "Illuminate\\Support\\": [
  3543. "src/Illuminate/Macroable/",
  3544. "src/Illuminate/Collections/"
  3545. ]
  3546. }
  3547. },
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "MIT"
  3551. ],
  3552. "authors": [
  3553. {
  3554. "name": "Taylor Otwell",
  3555. "email": "taylor@laravel.com"
  3556. }
  3557. ],
  3558. "description": "The Laravel Framework.",
  3559. "homepage": "https://laravel.com",
  3560. "keywords": [
  3561. "framework",
  3562. "laravel"
  3563. ],
  3564. "support": {
  3565. "issues": "https://github.com/laravel/framework/issues",
  3566. "source": "https://github.com/laravel/framework"
  3567. },
  3568. "time": "2022-06-07T15:09:06+00:00"
  3569. },
  3570. {
  3571. "name": "laravel/sanctum",
  3572. "version": "v2.15.1",
  3573. "source": {
  3574. "type": "git",
  3575. "url": "https://github.com/laravel/sanctum.git",
  3576. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  3577. },
  3578. "dist": {
  3579. "type": "zip",
  3580. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3581. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  3582. "shasum": "",
  3583. "mirrors": [
  3584. {
  3585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3586. "preferred": true
  3587. }
  3588. ]
  3589. },
  3590. "require": {
  3591. "ext-json": "*",
  3592. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  3593. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  3594. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  3595. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  3596. "php": "^7.2|^8.0"
  3597. },
  3598. "require-dev": {
  3599. "mockery/mockery": "^1.0",
  3600. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3601. "phpunit/phpunit": "^8.0|^9.3"
  3602. },
  3603. "type": "library",
  3604. "extra": {
  3605. "branch-alias": {
  3606. "dev-master": "2.x-dev"
  3607. },
  3608. "laravel": {
  3609. "providers": [
  3610. "Laravel\\Sanctum\\SanctumServiceProvider"
  3611. ]
  3612. }
  3613. },
  3614. "autoload": {
  3615. "psr-4": {
  3616. "Laravel\\Sanctum\\": "src/"
  3617. }
  3618. },
  3619. "notification-url": "https://packagist.org/downloads/",
  3620. "license": [
  3621. "MIT"
  3622. ],
  3623. "authors": [
  3624. {
  3625. "name": "Taylor Otwell",
  3626. "email": "taylor@laravel.com"
  3627. }
  3628. ],
  3629. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3630. "keywords": [
  3631. "auth",
  3632. "laravel",
  3633. "sanctum"
  3634. ],
  3635. "support": {
  3636. "issues": "https://github.com/laravel/sanctum/issues",
  3637. "source": "https://github.com/laravel/sanctum"
  3638. },
  3639. "time": "2022-04-08T13:39:49+00:00"
  3640. },
  3641. {
  3642. "name": "laravel/serializable-closure",
  3643. "version": "v1.1.1",
  3644. "source": {
  3645. "type": "git",
  3646. "url": "https://github.com/laravel/serializable-closure.git",
  3647. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e"
  3648. },
  3649. "dist": {
  3650. "type": "zip",
  3651. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  3652. "reference": "9e4b005daa20b0c161f3845040046dc9ddc1d74e",
  3653. "shasum": "",
  3654. "mirrors": [
  3655. {
  3656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3657. "preferred": true
  3658. }
  3659. ]
  3660. },
  3661. "require": {
  3662. "php": "^7.3|^8.0"
  3663. },
  3664. "require-dev": {
  3665. "pestphp/pest": "^1.18",
  3666. "phpstan/phpstan": "^0.12.98",
  3667. "symfony/var-dumper": "^5.3"
  3668. },
  3669. "type": "library",
  3670. "extra": {
  3671. "branch-alias": {
  3672. "dev-master": "1.x-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Laravel\\SerializableClosure\\": "src/"
  3678. }
  3679. },
  3680. "notification-url": "https://packagist.org/downloads/",
  3681. "license": [
  3682. "MIT"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "Taylor Otwell",
  3687. "email": "taylor@laravel.com"
  3688. },
  3689. {
  3690. "name": "Nuno Maduro",
  3691. "email": "nuno@laravel.com"
  3692. }
  3693. ],
  3694. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3695. "keywords": [
  3696. "closure",
  3697. "laravel",
  3698. "serializable"
  3699. ],
  3700. "support": {
  3701. "issues": "https://github.com/laravel/serializable-closure/issues",
  3702. "source": "https://github.com/laravel/serializable-closure"
  3703. },
  3704. "time": "2022-02-11T19:23:53+00:00"
  3705. },
  3706. {
  3707. "name": "laravel/socialite",
  3708. "version": "v5.5.1",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/laravel/socialite.git",
  3712. "reference": "9b96dfd69e9c1de69c23205cb390550bc71c357e"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/laravel/socialite/zipball/9b96dfd69e9c1de69c23205cb390550bc71c357e",
  3717. "reference": "9b96dfd69e9c1de69c23205cb390550bc71c357e",
  3718. "shasum": "",
  3719. "mirrors": [
  3720. {
  3721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3722. "preferred": true
  3723. }
  3724. ]
  3725. },
  3726. "require": {
  3727. "ext-json": "*",
  3728. "guzzlehttp/guzzle": "^6.0|^7.0",
  3729. "illuminate/http": "^6.0|^7.0|^8.0|^9.0",
  3730. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3731. "league/oauth1-client": "^1.0",
  3732. "php": "^7.2|^8.0"
  3733. },
  3734. "require-dev": {
  3735. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3736. "mockery/mockery": "^1.0",
  3737. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  3738. "phpunit/phpunit": "^8.0|^9.3"
  3739. },
  3740. "type": "library",
  3741. "extra": {
  3742. "branch-alias": {
  3743. "dev-master": "5.x-dev"
  3744. },
  3745. "laravel": {
  3746. "providers": [
  3747. "Laravel\\Socialite\\SocialiteServiceProvider"
  3748. ],
  3749. "aliases": {
  3750. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3751. }
  3752. }
  3753. },
  3754. "autoload": {
  3755. "psr-4": {
  3756. "Laravel\\Socialite\\": "src/"
  3757. }
  3758. },
  3759. "notification-url": "https://packagist.org/downloads/",
  3760. "license": [
  3761. "MIT"
  3762. ],
  3763. "authors": [
  3764. {
  3765. "name": "Taylor Otwell",
  3766. "email": "taylor@laravel.com"
  3767. }
  3768. ],
  3769. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3770. "homepage": "https://laravel.com",
  3771. "keywords": [
  3772. "laravel",
  3773. "oauth"
  3774. ],
  3775. "support": {
  3776. "issues": "https://github.com/laravel/socialite/issues",
  3777. "source": "https://github.com/laravel/socialite"
  3778. },
  3779. "time": "2022-02-07T16:08:19+00:00"
  3780. },
  3781. {
  3782. "name": "laravel/tinker",
  3783. "version": "v2.7.2",
  3784. "source": {
  3785. "type": "git",
  3786. "url": "https://github.com/laravel/tinker.git",
  3787. "reference": "dff39b661e827dae6e092412f976658df82dbac5"
  3788. },
  3789. "dist": {
  3790. "type": "zip",
  3791. "url": "https://api.github.com/repos/laravel/tinker/zipball/dff39b661e827dae6e092412f976658df82dbac5",
  3792. "reference": "dff39b661e827dae6e092412f976658df82dbac5",
  3793. "shasum": "",
  3794. "mirrors": [
  3795. {
  3796. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3797. "preferred": true
  3798. }
  3799. ]
  3800. },
  3801. "require": {
  3802. "illuminate/console": "^6.0|^7.0|^8.0|^9.0",
  3803. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0",
  3804. "illuminate/support": "^6.0|^7.0|^8.0|^9.0",
  3805. "php": "^7.2.5|^8.0",
  3806. "psy/psysh": "^0.10.4|^0.11.1",
  3807. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3808. },
  3809. "require-dev": {
  3810. "mockery/mockery": "~1.3.3|^1.4.2",
  3811. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3812. },
  3813. "suggest": {
  3814. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0)."
  3815. },
  3816. "type": "library",
  3817. "extra": {
  3818. "branch-alias": {
  3819. "dev-master": "2.x-dev"
  3820. },
  3821. "laravel": {
  3822. "providers": [
  3823. "Laravel\\Tinker\\TinkerServiceProvider"
  3824. ]
  3825. }
  3826. },
  3827. "autoload": {
  3828. "psr-4": {
  3829. "Laravel\\Tinker\\": "src/"
  3830. }
  3831. },
  3832. "notification-url": "https://packagist.org/downloads/",
  3833. "license": [
  3834. "MIT"
  3835. ],
  3836. "authors": [
  3837. {
  3838. "name": "Taylor Otwell",
  3839. "email": "taylor@laravel.com"
  3840. }
  3841. ],
  3842. "description": "Powerful REPL for the Laravel framework.",
  3843. "keywords": [
  3844. "REPL",
  3845. "Tinker",
  3846. "laravel",
  3847. "psysh"
  3848. ],
  3849. "support": {
  3850. "issues": "https://github.com/laravel/tinker/issues",
  3851. "source": "https://github.com/laravel/tinker/tree/v2.7.2"
  3852. },
  3853. "time": "2022-03-23T12:38:24+00:00"
  3854. },
  3855. {
  3856. "name": "lcobucci/clock",
  3857. "version": "2.1.0",
  3858. "source": {
  3859. "type": "git",
  3860. "url": "https://github.com/lcobucci/clock.git",
  3861. "reference": "903513d28e85376a33385ebc601afd2ee69e5653"
  3862. },
  3863. "dist": {
  3864. "type": "zip",
  3865. "url": "https://api.github.com/repos/lcobucci/clock/zipball/903513d28e85376a33385ebc601afd2ee69e5653",
  3866. "reference": "903513d28e85376a33385ebc601afd2ee69e5653",
  3867. "shasum": "",
  3868. "mirrors": [
  3869. {
  3870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3871. "preferred": true
  3872. }
  3873. ]
  3874. },
  3875. "require": {
  3876. "php": "^8.0"
  3877. },
  3878. "require-dev": {
  3879. "infection/infection": "^0.25",
  3880. "lcobucci/coding-standard": "^8.0",
  3881. "phpstan/extension-installer": "^1.1",
  3882. "phpstan/phpstan": "^0.12",
  3883. "phpstan/phpstan-deprecation-rules": "^0.12",
  3884. "phpstan/phpstan-phpunit": "^0.12",
  3885. "phpstan/phpstan-strict-rules": "^0.12",
  3886. "phpunit/phpunit": "^9.5"
  3887. },
  3888. "type": "library",
  3889. "autoload": {
  3890. "psr-4": {
  3891. "Lcobucci\\Clock\\": "src"
  3892. }
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Luís Cobucci",
  3901. "email": "lcobucci@gmail.com"
  3902. }
  3903. ],
  3904. "description": "Yet another clock abstraction",
  3905. "support": {
  3906. "issues": "https://github.com/lcobucci/clock/issues",
  3907. "source": "https://github.com/lcobucci/clock/tree/2.1.0"
  3908. },
  3909. "funding": [
  3910. {
  3911. "url": "https://github.com/lcobucci",
  3912. "type": "github"
  3913. },
  3914. {
  3915. "url": "https://www.patreon.com/lcobucci",
  3916. "type": "patreon"
  3917. }
  3918. ],
  3919. "time": "2021-10-31T21:32:07+00:00"
  3920. },
  3921. {
  3922. "name": "lcobucci/jwt",
  3923. "version": "4.0.4",
  3924. "source": {
  3925. "type": "git",
  3926. "url": "https://github.com/lcobucci/jwt.git",
  3927. "reference": "55564265fddf810504110bd68ca311932324b0e9"
  3928. },
  3929. "dist": {
  3930. "type": "zip",
  3931. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
  3932. "reference": "55564265fddf810504110bd68ca311932324b0e9",
  3933. "shasum": "",
  3934. "mirrors": [
  3935. {
  3936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3937. "preferred": true
  3938. }
  3939. ]
  3940. },
  3941. "require": {
  3942. "ext-mbstring": "*",
  3943. "ext-openssl": "*",
  3944. "lcobucci/clock": "^2.0",
  3945. "php": "^7.4 || ^8.0"
  3946. },
  3947. "require-dev": {
  3948. "infection/infection": "^0.20",
  3949. "lcobucci/coding-standard": "^6.0",
  3950. "mikey179/vfsstream": "^1.6",
  3951. "phpbench/phpbench": "^0.17",
  3952. "phpstan/extension-installer": "^1.0",
  3953. "phpstan/phpstan": "^0.12",
  3954. "phpstan/phpstan-deprecation-rules": "^0.12",
  3955. "phpstan/phpstan-phpunit": "^0.12",
  3956. "phpstan/phpstan-strict-rules": "^0.12",
  3957. "phpunit/php-invoker": "^3.1",
  3958. "phpunit/phpunit": "^9.4"
  3959. },
  3960. "type": "library",
  3961. "extra": {
  3962. "branch-alias": {
  3963. "dev-master": "4.0-dev"
  3964. }
  3965. },
  3966. "autoload": {
  3967. "psr-4": {
  3968. "Lcobucci\\JWT\\": "src"
  3969. }
  3970. },
  3971. "notification-url": "https://packagist.org/downloads/",
  3972. "license": [
  3973. "BSD-3-Clause"
  3974. ],
  3975. "authors": [
  3976. {
  3977. "name": "Luís Cobucci",
  3978. "email": "lcobucci@gmail.com",
  3979. "role": "Developer"
  3980. }
  3981. ],
  3982. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3983. "keywords": [
  3984. "JWS",
  3985. "jwt"
  3986. ],
  3987. "support": {
  3988. "issues": "https://github.com/lcobucci/jwt/issues",
  3989. "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
  3990. },
  3991. "funding": [
  3992. {
  3993. "url": "https://github.com/lcobucci",
  3994. "type": "github"
  3995. },
  3996. {
  3997. "url": "https://www.patreon.com/lcobucci",
  3998. "type": "patreon"
  3999. }
  4000. ],
  4001. "time": "2021-09-28T19:18:28+00:00"
  4002. },
  4003. {
  4004. "name": "league/commonmark",
  4005. "version": "2.3.0",
  4006. "source": {
  4007. "type": "git",
  4008. "url": "https://github.com/thephpleague/commonmark.git",
  4009. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955"
  4010. },
  4011. "dist": {
  4012. "type": "zip",
  4013. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  4014. "reference": "32a49eb2b38fe5e5c417ab748a45d0beaab97955",
  4015. "shasum": "",
  4016. "mirrors": [
  4017. {
  4018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4019. "preferred": true
  4020. }
  4021. ]
  4022. },
  4023. "require": {
  4024. "ext-mbstring": "*",
  4025. "league/config": "^1.1.1",
  4026. "php": "^7.4 || ^8.0",
  4027. "psr/event-dispatcher": "^1.0",
  4028. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  4029. "symfony/polyfill-php80": "^1.16"
  4030. },
  4031. "require-dev": {
  4032. "cebe/markdown": "^1.0",
  4033. "commonmark/cmark": "0.30.0",
  4034. "commonmark/commonmark.js": "0.30.0",
  4035. "composer/package-versions-deprecated": "^1.8",
  4036. "embed/embed": "^4.4",
  4037. "erusev/parsedown": "^1.0",
  4038. "ext-json": "*",
  4039. "github/gfm": "0.29.0",
  4040. "michelf/php-markdown": "^1.4",
  4041. "nyholm/psr7": "^1.5",
  4042. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  4043. "phpunit/phpunit": "^9.5.5",
  4044. "scrutinizer/ocular": "^1.8.1",
  4045. "symfony/finder": "^5.3",
  4046. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  4047. "unleashedtech/php-coding-standard": "^3.1",
  4048. "vimeo/psalm": "^4.7.3"
  4049. },
  4050. "suggest": {
  4051. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  4052. },
  4053. "type": "library",
  4054. "extra": {
  4055. "branch-alias": {
  4056. "dev-main": "2.4-dev"
  4057. }
  4058. },
  4059. "autoload": {
  4060. "psr-4": {
  4061. "League\\CommonMark\\": "src"
  4062. }
  4063. },
  4064. "notification-url": "https://packagist.org/downloads/",
  4065. "license": [
  4066. "BSD-3-Clause"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "Colin O'Dell",
  4071. "email": "colinodell@gmail.com",
  4072. "homepage": "https://www.colinodell.com",
  4073. "role": "Lead Developer"
  4074. }
  4075. ],
  4076. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  4077. "homepage": "https://commonmark.thephpleague.com",
  4078. "keywords": [
  4079. "commonmark",
  4080. "flavored",
  4081. "gfm",
  4082. "github",
  4083. "github-flavored",
  4084. "markdown",
  4085. "md",
  4086. "parser"
  4087. ],
  4088. "support": {
  4089. "docs": "https://commonmark.thephpleague.com/",
  4090. "forum": "https://github.com/thephpleague/commonmark/discussions",
  4091. "issues": "https://github.com/thephpleague/commonmark/issues",
  4092. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  4093. "source": "https://github.com/thephpleague/commonmark"
  4094. },
  4095. "funding": [
  4096. {
  4097. "url": "https://www.colinodell.com/sponsor",
  4098. "type": "custom"
  4099. },
  4100. {
  4101. "url": "https://www.paypal.me/colinpodell/10.00",
  4102. "type": "custom"
  4103. },
  4104. {
  4105. "url": "https://github.com/colinodell",
  4106. "type": "github"
  4107. },
  4108. {
  4109. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  4110. "type": "tidelift"
  4111. }
  4112. ],
  4113. "time": "2022-04-07T22:37:05+00:00"
  4114. },
  4115. {
  4116. "name": "league/config",
  4117. "version": "v1.1.1",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://github.com/thephpleague/config.git",
  4121. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  4126. "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e",
  4127. "shasum": "",
  4128. "mirrors": [
  4129. {
  4130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4131. "preferred": true
  4132. }
  4133. ]
  4134. },
  4135. "require": {
  4136. "dflydev/dot-access-data": "^3.0.1",
  4137. "nette/schema": "^1.2",
  4138. "php": "^7.4 || ^8.0"
  4139. },
  4140. "require-dev": {
  4141. "phpstan/phpstan": "^0.12.90",
  4142. "phpunit/phpunit": "^9.5.5",
  4143. "scrutinizer/ocular": "^1.8.1",
  4144. "unleashedtech/php-coding-standard": "^3.1",
  4145. "vimeo/psalm": "^4.7.3"
  4146. },
  4147. "type": "library",
  4148. "extra": {
  4149. "branch-alias": {
  4150. "dev-main": "1.2-dev"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "psr-4": {
  4155. "League\\Config\\": "src"
  4156. }
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "BSD-3-Clause"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "Colin O'Dell",
  4165. "email": "colinodell@gmail.com",
  4166. "homepage": "https://www.colinodell.com",
  4167. "role": "Lead Developer"
  4168. }
  4169. ],
  4170. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  4171. "homepage": "https://config.thephpleague.com",
  4172. "keywords": [
  4173. "array",
  4174. "config",
  4175. "configuration",
  4176. "dot",
  4177. "dot-access",
  4178. "nested",
  4179. "schema"
  4180. ],
  4181. "support": {
  4182. "docs": "https://config.thephpleague.com/",
  4183. "issues": "https://github.com/thephpleague/config/issues",
  4184. "rss": "https://github.com/thephpleague/config/releases.atom",
  4185. "source": "https://github.com/thephpleague/config"
  4186. },
  4187. "funding": [
  4188. {
  4189. "url": "https://www.colinodell.com/sponsor",
  4190. "type": "custom"
  4191. },
  4192. {
  4193. "url": "https://www.paypal.me/colinpodell/10.00",
  4194. "type": "custom"
  4195. },
  4196. {
  4197. "url": "https://github.com/colinodell",
  4198. "type": "github"
  4199. }
  4200. ],
  4201. "time": "2021-08-14T12:15:32+00:00"
  4202. },
  4203. {
  4204. "name": "league/flysystem",
  4205. "version": "1.1.9",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/thephpleague/flysystem.git",
  4209. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  4214. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  4215. "shasum": "",
  4216. "mirrors": [
  4217. {
  4218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4219. "preferred": true
  4220. }
  4221. ]
  4222. },
  4223. "require": {
  4224. "ext-fileinfo": "*",
  4225. "league/mime-type-detection": "^1.3",
  4226. "php": "^7.2.5 || ^8.0"
  4227. },
  4228. "conflict": {
  4229. "league/flysystem-sftp": "<1.0.6"
  4230. },
  4231. "require-dev": {
  4232. "phpspec/prophecy": "^1.11.1",
  4233. "phpunit/phpunit": "^8.5.8"
  4234. },
  4235. "suggest": {
  4236. "ext-ftp": "Allows you to use FTP server storage",
  4237. "ext-openssl": "Allows you to use FTPS server storage",
  4238. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  4239. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  4240. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  4241. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  4242. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  4243. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  4244. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  4245. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  4246. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  4247. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  4248. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  4249. },
  4250. "type": "library",
  4251. "extra": {
  4252. "branch-alias": {
  4253. "dev-master": "1.1-dev"
  4254. }
  4255. },
  4256. "autoload": {
  4257. "psr-4": {
  4258. "League\\Flysystem\\": "src/"
  4259. }
  4260. },
  4261. "notification-url": "https://packagist.org/downloads/",
  4262. "license": [
  4263. "MIT"
  4264. ],
  4265. "authors": [
  4266. {
  4267. "name": "Frank de Jonge",
  4268. "email": "info@frenky.net"
  4269. }
  4270. ],
  4271. "description": "Filesystem abstraction: Many filesystems, one API.",
  4272. "keywords": [
  4273. "Cloud Files",
  4274. "WebDAV",
  4275. "abstraction",
  4276. "aws",
  4277. "cloud",
  4278. "copy.com",
  4279. "dropbox",
  4280. "file systems",
  4281. "files",
  4282. "filesystem",
  4283. "filesystems",
  4284. "ftp",
  4285. "rackspace",
  4286. "remote",
  4287. "s3",
  4288. "sftp",
  4289. "storage"
  4290. ],
  4291. "support": {
  4292. "issues": "https://github.com/thephpleague/flysystem/issues",
  4293. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  4294. },
  4295. "funding": [
  4296. {
  4297. "url": "https://offset.earth/frankdejonge",
  4298. "type": "other"
  4299. }
  4300. ],
  4301. "time": "2021-12-09T09:40:50+00:00"
  4302. },
  4303. {
  4304. "name": "league/fractal",
  4305. "version": "0.19.2",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://github.com/thephpleague/fractal.git",
  4309. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  4314. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  4315. "shasum": "",
  4316. "mirrors": [
  4317. {
  4318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4319. "preferred": true
  4320. }
  4321. ]
  4322. },
  4323. "require": {
  4324. "php": ">=5.4"
  4325. },
  4326. "require-dev": {
  4327. "doctrine/orm": "^2.5",
  4328. "illuminate/contracts": "~5.0",
  4329. "mockery/mockery": "~0.9",
  4330. "pagerfanta/pagerfanta": "~1.0.0",
  4331. "phpunit/phpunit": "^4.8.35 || ^7.5",
  4332. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  4333. "zendframework/zend-paginator": "~2.3"
  4334. },
  4335. "suggest": {
  4336. "illuminate/pagination": "The Illuminate Pagination component.",
  4337. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  4338. "zendframework/zend-paginator": "Zend Framework Paginator"
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-master": "0.13-dev"
  4344. }
  4345. },
  4346. "autoload": {
  4347. "psr-4": {
  4348. "League\\Fractal\\": "src"
  4349. }
  4350. },
  4351. "notification-url": "https://packagist.org/downloads/",
  4352. "license": [
  4353. "MIT"
  4354. ],
  4355. "authors": [
  4356. {
  4357. "name": "Phil Sturgeon",
  4358. "email": "me@philsturgeon.uk",
  4359. "homepage": "http://philsturgeon.uk/",
  4360. "role": "Developer"
  4361. }
  4362. ],
  4363. "description": "Handle the output of complex data structures ready for API output.",
  4364. "homepage": "http://fractal.thephpleague.com/",
  4365. "keywords": [
  4366. "api",
  4367. "json",
  4368. "league",
  4369. "rest"
  4370. ],
  4371. "support": {
  4372. "issues": "https://github.com/thephpleague/fractal/issues",
  4373. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  4374. },
  4375. "time": "2020-01-24T23:17:29+00:00"
  4376. },
  4377. {
  4378. "name": "league/mime-type-detection",
  4379. "version": "1.11.0",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4383. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  4384. },
  4385. "dist": {
  4386. "type": "zip",
  4387. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  4388. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  4389. "shasum": "",
  4390. "mirrors": [
  4391. {
  4392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4393. "preferred": true
  4394. }
  4395. ]
  4396. },
  4397. "require": {
  4398. "ext-fileinfo": "*",
  4399. "php": "^7.2 || ^8.0"
  4400. },
  4401. "require-dev": {
  4402. "friendsofphp/php-cs-fixer": "^3.2",
  4403. "phpstan/phpstan": "^0.12.68",
  4404. "phpunit/phpunit": "^8.5.8 || ^9.3"
  4405. },
  4406. "type": "library",
  4407. "autoload": {
  4408. "psr-4": {
  4409. "League\\MimeTypeDetection\\": "src"
  4410. }
  4411. },
  4412. "notification-url": "https://packagist.org/downloads/",
  4413. "license": [
  4414. "MIT"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Frank de Jonge",
  4419. "email": "info@frankdejonge.nl"
  4420. }
  4421. ],
  4422. "description": "Mime-type detection for Flysystem",
  4423. "support": {
  4424. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4425. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  4426. },
  4427. "funding": [
  4428. {
  4429. "url": "https://github.com/frankdejonge",
  4430. "type": "github"
  4431. },
  4432. {
  4433. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4434. "type": "tidelift"
  4435. }
  4436. ],
  4437. "time": "2022-04-17T13:12:02+00:00"
  4438. },
  4439. {
  4440. "name": "league/oauth1-client",
  4441. "version": "v1.10.1",
  4442. "source": {
  4443. "type": "git",
  4444. "url": "https://github.com/thephpleague/oauth1-client.git",
  4445. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4446. },
  4447. "dist": {
  4448. "type": "zip",
  4449. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4450. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4451. "shasum": "",
  4452. "mirrors": [
  4453. {
  4454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4455. "preferred": true
  4456. }
  4457. ]
  4458. },
  4459. "require": {
  4460. "ext-json": "*",
  4461. "ext-openssl": "*",
  4462. "guzzlehttp/guzzle": "^6.0|^7.0",
  4463. "guzzlehttp/psr7": "^1.7|^2.0",
  4464. "php": ">=7.1||>=8.0"
  4465. },
  4466. "require-dev": {
  4467. "ext-simplexml": "*",
  4468. "friendsofphp/php-cs-fixer": "^2.17",
  4469. "mockery/mockery": "^1.3.3",
  4470. "phpstan/phpstan": "^0.12.42",
  4471. "phpunit/phpunit": "^7.5||9.5"
  4472. },
  4473. "suggest": {
  4474. "ext-simplexml": "For decoding XML-based responses."
  4475. },
  4476. "type": "library",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "1.0-dev",
  4480. "dev-develop": "2.0-dev"
  4481. }
  4482. },
  4483. "autoload": {
  4484. "psr-4": {
  4485. "League\\OAuth1\\Client\\": "src/"
  4486. }
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Ben Corlett",
  4495. "email": "bencorlett@me.com",
  4496. "homepage": "http://www.webcomm.com.au",
  4497. "role": "Developer"
  4498. }
  4499. ],
  4500. "description": "OAuth 1.0 Client Library",
  4501. "keywords": [
  4502. "Authentication",
  4503. "SSO",
  4504. "authorization",
  4505. "bitbucket",
  4506. "identity",
  4507. "idp",
  4508. "oauth",
  4509. "oauth1",
  4510. "single sign on",
  4511. "trello",
  4512. "tumblr",
  4513. "twitter"
  4514. ],
  4515. "support": {
  4516. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4517. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4518. },
  4519. "time": "2022-04-15T14:02:14+00:00"
  4520. },
  4521. {
  4522. "name": "liyu/dingo-serializer-switch",
  4523. "version": "0.3.2",
  4524. "source": {
  4525. "type": "git",
  4526. "url": "https://github.com/liyu001989/dingo-serializer-switch.git",
  4527. "reference": "a150dc0deaaec41f694538e9b7a3ba538ea565ed"
  4528. },
  4529. "dist": {
  4530. "type": "zip",
  4531. "url": "https://api.github.com/repos/liyu001989/dingo-serializer-switch/zipball/a150dc0deaaec41f694538e9b7a3ba538ea565ed",
  4532. "reference": "a150dc0deaaec41f694538e9b7a3ba538ea565ed",
  4533. "shasum": "",
  4534. "mirrors": [
  4535. {
  4536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4537. "preferred": true
  4538. }
  4539. ]
  4540. },
  4541. "require": {
  4542. "dingo/api": "^2.0|^3.0",
  4543. "php": ">=7.0"
  4544. },
  4545. "type": "library",
  4546. "extra": {
  4547. "laravel": {
  4548. "providers": [
  4549. "Liyu\\Dingo\\ServiceProvider"
  4550. ]
  4551. }
  4552. },
  4553. "autoload": {
  4554. "psr-4": {
  4555. "Liyu\\Dingo\\": "src"
  4556. }
  4557. },
  4558. "notification-url": "https://packagist.org/downloads/",
  4559. "license": [
  4560. "MIT"
  4561. ],
  4562. "authors": [
  4563. {
  4564. "name": "Yu Li",
  4565. "email": "liyu001989@gmail.com"
  4566. }
  4567. ],
  4568. "description": "A middleware to switch dingo serializer",
  4569. "support": {
  4570. "issues": "https://github.com/liyu001989/dingo-serializer-switch/issues",
  4571. "source": "https://github.com/liyu001989/dingo-serializer-switch/tree/master"
  4572. },
  4573. "time": "2020-06-24T04:09:03+00:00"
  4574. },
  4575. {
  4576. "name": "mavinoo/laravel-batch",
  4577. "version": "v2.3.4",
  4578. "source": {
  4579. "type": "git",
  4580. "url": "https://github.com/mavinoo/laravelBatch.git",
  4581. "reference": "126f077dec4ecabb67331694e71bf28b427daa60"
  4582. },
  4583. "dist": {
  4584. "type": "zip",
  4585. "url": "https://api.github.com/repos/mavinoo/laravelBatch/zipball/126f077dec4ecabb67331694e71bf28b427daa60",
  4586. "reference": "126f077dec4ecabb67331694e71bf28b427daa60",
  4587. "shasum": "",
  4588. "mirrors": [
  4589. {
  4590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4591. "preferred": true
  4592. }
  4593. ]
  4594. },
  4595. "require": {
  4596. "ext-json": "*"
  4597. },
  4598. "require-dev": {
  4599. "phpunit/phpunit": "^9.3@dev"
  4600. },
  4601. "type": "library",
  4602. "extra": {
  4603. "laravel": {
  4604. "providers": [
  4605. "Mavinoo\\Batch\\BatchServiceProvider"
  4606. ],
  4607. "aliases": {
  4608. "Batch": "Mavinoo\\Batch\\BatchFacade"
  4609. }
  4610. }
  4611. },
  4612. "autoload": {
  4613. "files": [
  4614. "src/Common/Helpers.php"
  4615. ],
  4616. "psr-4": {
  4617. "Mavinoo\\Batch\\": "src/"
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Mohammad Ghanbari",
  4627. "email": "mavin.developer@gmail.com"
  4628. }
  4629. ],
  4630. "description": "Insert and update batch (bulk) in laravel",
  4631. "support": {
  4632. "issues": "https://github.com/mavinoo/laravelBatch/issues",
  4633. "source": "https://github.com/mavinoo/laravelBatch/tree/v2.3.4"
  4634. },
  4635. "time": "2022-04-20T12:04:23+00:00"
  4636. },
  4637. {
  4638. "name": "monolog/monolog",
  4639. "version": "2.7.0",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://github.com/Seldaek/monolog.git",
  4643. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524",
  4648. "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524",
  4649. "shasum": "",
  4650. "mirrors": [
  4651. {
  4652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4653. "preferred": true
  4654. }
  4655. ]
  4656. },
  4657. "require": {
  4658. "php": ">=7.2",
  4659. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4660. },
  4661. "provide": {
  4662. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4663. },
  4664. "require-dev": {
  4665. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4666. "doctrine/couchdb": "~1.0@dev",
  4667. "elasticsearch/elasticsearch": "^7 || ^8",
  4668. "ext-json": "*",
  4669. "graylog2/gelf-php": "^1.4.2",
  4670. "guzzlehttp/guzzle": "^7.4",
  4671. "guzzlehttp/psr7": "^2.2",
  4672. "mongodb/mongodb": "^1.8",
  4673. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4674. "php-console/php-console": "^3.1.3",
  4675. "phpspec/prophecy": "^1.15",
  4676. "phpstan/phpstan": "^0.12.91",
  4677. "phpunit/phpunit": "^8.5.14",
  4678. "predis/predis": "^1.1",
  4679. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4680. "ruflin/elastica": "^7",
  4681. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4682. "symfony/mailer": "^5.4 || ^6",
  4683. "symfony/mime": "^5.4 || ^6"
  4684. },
  4685. "suggest": {
  4686. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4687. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4688. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4689. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4690. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4691. "ext-mbstring": "Allow to work properly with unicode symbols",
  4692. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4693. "ext-openssl": "Required to send log messages using SSL",
  4694. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4695. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4696. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4697. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4698. "php-console/php-console": "Allow sending log messages to Google Chrome",
  4699. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4700. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4701. },
  4702. "type": "library",
  4703. "extra": {
  4704. "branch-alias": {
  4705. "dev-main": "2.x-dev"
  4706. }
  4707. },
  4708. "autoload": {
  4709. "psr-4": {
  4710. "Monolog\\": "src/Monolog"
  4711. }
  4712. },
  4713. "notification-url": "https://packagist.org/downloads/",
  4714. "license": [
  4715. "MIT"
  4716. ],
  4717. "authors": [
  4718. {
  4719. "name": "Jordi Boggiano",
  4720. "email": "j.boggiano@seld.be",
  4721. "homepage": "https://seld.be"
  4722. }
  4723. ],
  4724. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4725. "homepage": "https://github.com/Seldaek/monolog",
  4726. "keywords": [
  4727. "log",
  4728. "logging",
  4729. "psr-3"
  4730. ],
  4731. "support": {
  4732. "issues": "https://github.com/Seldaek/monolog/issues",
  4733. "source": "https://github.com/Seldaek/monolog/tree/2.7.0"
  4734. },
  4735. "funding": [
  4736. {
  4737. "url": "https://github.com/Seldaek",
  4738. "type": "github"
  4739. },
  4740. {
  4741. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4742. "type": "tidelift"
  4743. }
  4744. ],
  4745. "time": "2022-06-09T08:59:12+00:00"
  4746. },
  4747. {
  4748. "name": "mtdowling/jmespath.php",
  4749. "version": "2.6.1",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://github.com/jmespath/jmespath.php.git",
  4753. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4758. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  4759. "shasum": "",
  4760. "mirrors": [
  4761. {
  4762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4763. "preferred": true
  4764. }
  4765. ]
  4766. },
  4767. "require": {
  4768. "php": "^5.4 || ^7.0 || ^8.0",
  4769. "symfony/polyfill-mbstring": "^1.17"
  4770. },
  4771. "require-dev": {
  4772. "composer/xdebug-handler": "^1.4 || ^2.0",
  4773. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  4774. },
  4775. "bin": [
  4776. "bin/jp.php"
  4777. ],
  4778. "type": "library",
  4779. "extra": {
  4780. "branch-alias": {
  4781. "dev-master": "2.6-dev"
  4782. }
  4783. },
  4784. "autoload": {
  4785. "files": [
  4786. "src/JmesPath.php"
  4787. ],
  4788. "psr-4": {
  4789. "JmesPath\\": "src/"
  4790. }
  4791. },
  4792. "notification-url": "https://packagist.org/downloads/",
  4793. "license": [
  4794. "MIT"
  4795. ],
  4796. "authors": [
  4797. {
  4798. "name": "Michael Dowling",
  4799. "email": "mtdowling@gmail.com",
  4800. "homepage": "https://github.com/mtdowling"
  4801. }
  4802. ],
  4803. "description": "Declaratively specify how to extract elements from a JSON document",
  4804. "keywords": [
  4805. "json",
  4806. "jsonpath"
  4807. ],
  4808. "support": {
  4809. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4810. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  4811. },
  4812. "time": "2021-06-14T00:11:39+00:00"
  4813. },
  4814. {
  4815. "name": "namshi/jose",
  4816. "version": "7.2.3",
  4817. "source": {
  4818. "type": "git",
  4819. "url": "https://github.com/namshi/jose.git",
  4820. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4821. },
  4822. "dist": {
  4823. "type": "zip",
  4824. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4825. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4826. "shasum": "",
  4827. "mirrors": [
  4828. {
  4829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4830. "preferred": true
  4831. }
  4832. ]
  4833. },
  4834. "require": {
  4835. "ext-date": "*",
  4836. "ext-hash": "*",
  4837. "ext-json": "*",
  4838. "ext-pcre": "*",
  4839. "ext-spl": "*",
  4840. "php": ">=5.5",
  4841. "symfony/polyfill-php56": "^1.0"
  4842. },
  4843. "require-dev": {
  4844. "phpseclib/phpseclib": "^2.0",
  4845. "phpunit/phpunit": "^4.5|^5.0",
  4846. "satooshi/php-coveralls": "^1.0"
  4847. },
  4848. "suggest": {
  4849. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4850. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4851. },
  4852. "type": "library",
  4853. "autoload": {
  4854. "psr-4": {
  4855. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4856. }
  4857. },
  4858. "notification-url": "https://packagist.org/downloads/",
  4859. "license": [
  4860. "MIT"
  4861. ],
  4862. "authors": [
  4863. {
  4864. "name": "Alessandro Nadalin",
  4865. "email": "alessandro.nadalin@gmail.com"
  4866. },
  4867. {
  4868. "name": "Alessandro Cinelli (cirpo)",
  4869. "email": "alessandro.cinelli@gmail.com"
  4870. }
  4871. ],
  4872. "description": "JSON Object Signing and Encryption library for PHP.",
  4873. "keywords": [
  4874. "JSON Web Signature",
  4875. "JSON Web Token",
  4876. "JWS",
  4877. "json",
  4878. "jwt",
  4879. "token"
  4880. ],
  4881. "support": {
  4882. "issues": "https://github.com/namshi/jose/issues",
  4883. "source": "https://github.com/namshi/jose/tree/master"
  4884. },
  4885. "time": "2016-12-05T07:27:31+00:00"
  4886. },
  4887. {
  4888. "name": "nesbot/carbon",
  4889. "version": "2.58.0",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://github.com/briannesbitt/Carbon.git",
  4893. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/97a34af22bde8d0ac20ab34b29d7bfe360902055",
  4898. "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055",
  4899. "shasum": "",
  4900. "mirrors": [
  4901. {
  4902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4903. "preferred": true
  4904. }
  4905. ]
  4906. },
  4907. "require": {
  4908. "ext-json": "*",
  4909. "php": "^7.1.8 || ^8.0",
  4910. "symfony/polyfill-mbstring": "^1.0",
  4911. "symfony/polyfill-php80": "^1.16",
  4912. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4913. },
  4914. "require-dev": {
  4915. "doctrine/dbal": "^2.0 || ^3.0",
  4916. "doctrine/orm": "^2.7",
  4917. "friendsofphp/php-cs-fixer": "^3.0",
  4918. "kylekatarnls/multi-tester": "^2.0",
  4919. "phpmd/phpmd": "^2.9",
  4920. "phpstan/extension-installer": "^1.0",
  4921. "phpstan/phpstan": "^0.12.54 || ^1.0",
  4922. "phpunit/php-file-iterator": "^2.0.5",
  4923. "phpunit/phpunit": "^7.5.20 || ^8.5.23",
  4924. "squizlabs/php_codesniffer": "^3.4"
  4925. },
  4926. "bin": [
  4927. "bin/carbon"
  4928. ],
  4929. "type": "library",
  4930. "extra": {
  4931. "branch-alias": {
  4932. "dev-3.x": "3.x-dev",
  4933. "dev-master": "2.x-dev"
  4934. },
  4935. "laravel": {
  4936. "providers": [
  4937. "Carbon\\Laravel\\ServiceProvider"
  4938. ]
  4939. },
  4940. "phpstan": {
  4941. "includes": [
  4942. "extension.neon"
  4943. ]
  4944. }
  4945. },
  4946. "autoload": {
  4947. "psr-4": {
  4948. "Carbon\\": "src/Carbon/"
  4949. }
  4950. },
  4951. "notification-url": "https://packagist.org/downloads/",
  4952. "license": [
  4953. "MIT"
  4954. ],
  4955. "authors": [
  4956. {
  4957. "name": "Brian Nesbitt",
  4958. "email": "brian@nesbot.com",
  4959. "homepage": "https://markido.com"
  4960. },
  4961. {
  4962. "name": "kylekatarnls",
  4963. "homepage": "https://github.com/kylekatarnls"
  4964. }
  4965. ],
  4966. "description": "An API extension for DateTime that supports 281 different languages.",
  4967. "homepage": "https://carbon.nesbot.com",
  4968. "keywords": [
  4969. "date",
  4970. "datetime",
  4971. "time"
  4972. ],
  4973. "support": {
  4974. "docs": "https://carbon.nesbot.com/docs",
  4975. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4976. "source": "https://github.com/briannesbitt/Carbon"
  4977. },
  4978. "funding": [
  4979. {
  4980. "url": "https://opencollective.com/Carbon",
  4981. "type": "open_collective"
  4982. },
  4983. {
  4984. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  4985. "type": "tidelift"
  4986. }
  4987. ],
  4988. "time": "2022-04-25T19:31:17+00:00"
  4989. },
  4990. {
  4991. "name": "nette/schema",
  4992. "version": "v1.2.2",
  4993. "source": {
  4994. "type": "git",
  4995. "url": "https://github.com/nette/schema.git",
  4996. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df"
  4997. },
  4998. "dist": {
  4999. "type": "zip",
  5000. "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df",
  5001. "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df",
  5002. "shasum": "",
  5003. "mirrors": [
  5004. {
  5005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5006. "preferred": true
  5007. }
  5008. ]
  5009. },
  5010. "require": {
  5011. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  5012. "php": ">=7.1 <8.2"
  5013. },
  5014. "require-dev": {
  5015. "nette/tester": "^2.3 || ^2.4",
  5016. "phpstan/phpstan-nette": "^0.12",
  5017. "tracy/tracy": "^2.7"
  5018. },
  5019. "type": "library",
  5020. "extra": {
  5021. "branch-alias": {
  5022. "dev-master": "1.2-dev"
  5023. }
  5024. },
  5025. "autoload": {
  5026. "classmap": [
  5027. "src/"
  5028. ]
  5029. },
  5030. "notification-url": "https://packagist.org/downloads/",
  5031. "license": [
  5032. "BSD-3-Clause",
  5033. "GPL-2.0-only",
  5034. "GPL-3.0-only"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "David Grudl",
  5039. "homepage": "https://davidgrudl.com"
  5040. },
  5041. {
  5042. "name": "Nette Community",
  5043. "homepage": "https://nette.org/contributors"
  5044. }
  5045. ],
  5046. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  5047. "homepage": "https://nette.org",
  5048. "keywords": [
  5049. "config",
  5050. "nette"
  5051. ],
  5052. "support": {
  5053. "issues": "https://github.com/nette/schema/issues",
  5054. "source": "https://github.com/nette/schema/tree/v1.2.2"
  5055. },
  5056. "time": "2021-10-15T11:40:02+00:00"
  5057. },
  5058. {
  5059. "name": "nette/utils",
  5060. "version": "v3.2.7",
  5061. "source": {
  5062. "type": "git",
  5063. "url": "https://github.com/nette/utils.git",
  5064. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  5065. },
  5066. "dist": {
  5067. "type": "zip",
  5068. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  5069. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  5070. "shasum": "",
  5071. "mirrors": [
  5072. {
  5073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5074. "preferred": true
  5075. }
  5076. ]
  5077. },
  5078. "require": {
  5079. "php": ">=7.2 <8.2"
  5080. },
  5081. "conflict": {
  5082. "nette/di": "<3.0.6"
  5083. },
  5084. "require-dev": {
  5085. "nette/tester": "~2.0",
  5086. "phpstan/phpstan": "^1.0",
  5087. "tracy/tracy": "^2.3"
  5088. },
  5089. "suggest": {
  5090. "ext-gd": "to use Image",
  5091. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5092. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5093. "ext-json": "to use Nette\\Utils\\Json",
  5094. "ext-mbstring": "to use Strings::lower() etc...",
  5095. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  5096. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  5097. },
  5098. "type": "library",
  5099. "extra": {
  5100. "branch-alias": {
  5101. "dev-master": "3.2-dev"
  5102. }
  5103. },
  5104. "autoload": {
  5105. "classmap": [
  5106. "src/"
  5107. ]
  5108. },
  5109. "notification-url": "https://packagist.org/downloads/",
  5110. "license": [
  5111. "BSD-3-Clause",
  5112. "GPL-2.0-only",
  5113. "GPL-3.0-only"
  5114. ],
  5115. "authors": [
  5116. {
  5117. "name": "David Grudl",
  5118. "homepage": "https://davidgrudl.com"
  5119. },
  5120. {
  5121. "name": "Nette Community",
  5122. "homepage": "https://nette.org/contributors"
  5123. }
  5124. ],
  5125. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5126. "homepage": "https://nette.org",
  5127. "keywords": [
  5128. "array",
  5129. "core",
  5130. "datetime",
  5131. "images",
  5132. "json",
  5133. "nette",
  5134. "paginator",
  5135. "password",
  5136. "slugify",
  5137. "string",
  5138. "unicode",
  5139. "utf-8",
  5140. "utility",
  5141. "validation"
  5142. ],
  5143. "support": {
  5144. "issues": "https://github.com/nette/utils/issues",
  5145. "source": "https://github.com/nette/utils/tree/v3.2.7"
  5146. },
  5147. "time": "2022-01-24T11:29:14+00:00"
  5148. },
  5149. {
  5150. "name": "nikic/php-parser",
  5151. "version": "v4.13.2",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://github.com/nikic/PHP-Parser.git",
  5155. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  5156. },
  5157. "dist": {
  5158. "type": "zip",
  5159. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  5160. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  5161. "shasum": "",
  5162. "mirrors": [
  5163. {
  5164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5165. "preferred": true
  5166. }
  5167. ]
  5168. },
  5169. "require": {
  5170. "ext-tokenizer": "*",
  5171. "php": ">=7.0"
  5172. },
  5173. "require-dev": {
  5174. "ircmaxell/php-yacc": "^0.0.7",
  5175. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5176. },
  5177. "bin": [
  5178. "bin/php-parse"
  5179. ],
  5180. "type": "library",
  5181. "extra": {
  5182. "branch-alias": {
  5183. "dev-master": "4.9-dev"
  5184. }
  5185. },
  5186. "autoload": {
  5187. "psr-4": {
  5188. "PhpParser\\": "lib/PhpParser"
  5189. }
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "BSD-3-Clause"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Nikita Popov"
  5198. }
  5199. ],
  5200. "description": "A PHP parser written in PHP",
  5201. "keywords": [
  5202. "parser",
  5203. "php"
  5204. ],
  5205. "support": {
  5206. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5207. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  5208. },
  5209. "time": "2021-11-30T19:35:32+00:00"
  5210. },
  5211. {
  5212. "name": "opis/closure",
  5213. "version": "3.6.3",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://github.com/opis/closure.git",
  5217. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  5218. },
  5219. "dist": {
  5220. "type": "zip",
  5221. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  5222. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  5223. "shasum": "",
  5224. "mirrors": [
  5225. {
  5226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5227. "preferred": true
  5228. }
  5229. ]
  5230. },
  5231. "require": {
  5232. "php": "^5.4 || ^7.0 || ^8.0"
  5233. },
  5234. "require-dev": {
  5235. "jeremeamia/superclosure": "^2.0",
  5236. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5237. },
  5238. "type": "library",
  5239. "extra": {
  5240. "branch-alias": {
  5241. "dev-master": "3.6.x-dev"
  5242. }
  5243. },
  5244. "autoload": {
  5245. "files": [
  5246. "functions.php"
  5247. ],
  5248. "psr-4": {
  5249. "Opis\\Closure\\": "src/"
  5250. }
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Marius Sarca",
  5259. "email": "marius.sarca@gmail.com"
  5260. },
  5261. {
  5262. "name": "Sorin Sarca",
  5263. "email": "sarca_sorin@hotmail.com"
  5264. }
  5265. ],
  5266. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  5267. "homepage": "https://opis.io/closure",
  5268. "keywords": [
  5269. "anonymous functions",
  5270. "closure",
  5271. "function",
  5272. "serializable",
  5273. "serialization",
  5274. "serialize"
  5275. ],
  5276. "support": {
  5277. "issues": "https://github.com/opis/closure/issues",
  5278. "source": "https://github.com/opis/closure/tree/3.6.3"
  5279. },
  5280. "time": "2022-01-27T09:35:39+00:00"
  5281. },
  5282. {
  5283. "name": "overtrue/easy-sms",
  5284. "version": "1.3.2",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/overtrue/easy-sms.git",
  5288. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  5293. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  5294. "shasum": "",
  5295. "mirrors": [
  5296. {
  5297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5298. "preferred": true
  5299. }
  5300. ]
  5301. },
  5302. "require": {
  5303. "ext-json": "*",
  5304. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5305. "php": ">=5.6"
  5306. },
  5307. "require-dev": {
  5308. "mockery/mockery": "1.3.1",
  5309. "phpunit/phpunit": "^5.7 || ^7.5"
  5310. },
  5311. "type": "library",
  5312. "autoload": {
  5313. "psr-4": {
  5314. "Overtrue\\EasySms\\": "src"
  5315. }
  5316. },
  5317. "notification-url": "https://packagist.org/downloads/",
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "overtrue",
  5324. "email": "i@overtrue.me"
  5325. }
  5326. ],
  5327. "description": "The easiest way to send short message.",
  5328. "support": {
  5329. "issues": "https://github.com/overtrue/easy-sms/issues",
  5330. "source": "https://github.com/overtrue/easy-sms/tree/1.3.2"
  5331. },
  5332. "time": "2021-01-22T06:52:59+00:00"
  5333. },
  5334. {
  5335. "name": "overtrue/laravel-lang",
  5336. "version": "3.0.19",
  5337. "source": {
  5338. "type": "git",
  5339. "url": "https://github.com/overtrue/laravel-lang.git",
  5340. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89"
  5341. },
  5342. "dist": {
  5343. "type": "zip",
  5344. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/fb6de57a454792833c96ffdcd4999c90468deb89",
  5345. "reference": "fb6de57a454792833c96ffdcd4999c90468deb89",
  5346. "shasum": "",
  5347. "mirrors": [
  5348. {
  5349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5350. "preferred": true
  5351. }
  5352. ]
  5353. },
  5354. "require": {
  5355. "laravel-lang/lang": "~3.0"
  5356. },
  5357. "type": "library",
  5358. "extra": {
  5359. "laravel": {
  5360. "providers": [
  5361. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  5362. ]
  5363. }
  5364. },
  5365. "autoload": {
  5366. "files": [
  5367. "src/helpers.php"
  5368. ],
  5369. "psr-4": {
  5370. "Overtrue\\LaravelLang\\": "src/"
  5371. }
  5372. },
  5373. "notification-url": "https://packagist.org/downloads/",
  5374. "license": [
  5375. "MIT"
  5376. ],
  5377. "authors": [
  5378. {
  5379. "name": "overtrue",
  5380. "email": "anzhengchao@gmail.com"
  5381. }
  5382. ],
  5383. "description": "List of 52 languages for Laravel 5",
  5384. "keywords": [
  5385. "languages",
  5386. "laravel",
  5387. "overtrue"
  5388. ],
  5389. "support": {
  5390. "issues": "https://github.com/overtrue/laravel-lang/issues",
  5391. "source": "https://github.com/overtrue/laravel-lang/tree/3.0.19"
  5392. },
  5393. "funding": [
  5394. {
  5395. "url": "https://www.patreon.com/overtrue",
  5396. "type": "patreon"
  5397. }
  5398. ],
  5399. "time": "2021-04-28T03:36:48+00:00"
  5400. },
  5401. {
  5402. "name": "overtrue/laravel-wechat",
  5403. "version": "5.1.0",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/overtrue/laravel-wechat.git",
  5407. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  5412. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  5413. "shasum": "",
  5414. "mirrors": [
  5415. {
  5416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5417. "preferred": true
  5418. }
  5419. ]
  5420. },
  5421. "require": {
  5422. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  5423. "overtrue/wechat": "^4.0"
  5424. },
  5425. "require-dev": {
  5426. "friendsofphp/php-cs-fixer": "^2.16",
  5427. "laravel/framework": "^8.5"
  5428. },
  5429. "type": "library",
  5430. "extra": {
  5431. "laravel": {
  5432. "providers": [
  5433. "Overtrue\\LaravelWeChat\\ServiceProvider"
  5434. ],
  5435. "aliases": {
  5436. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  5437. }
  5438. }
  5439. },
  5440. "autoload": {
  5441. "psr-4": {
  5442. "Overtrue\\LaravelWeChat\\": "src/"
  5443. }
  5444. },
  5445. "notification-url": "https://packagist.org/downloads/",
  5446. "license": [
  5447. "MIT"
  5448. ],
  5449. "authors": [
  5450. {
  5451. "name": "overtrue",
  5452. "email": "anzhengchao@gmail.com"
  5453. }
  5454. ],
  5455. "description": "微信 SDK for Laravel",
  5456. "keywords": [
  5457. "laravel",
  5458. "sdk",
  5459. "wechat",
  5460. "weixin"
  5461. ],
  5462. "support": {
  5463. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  5464. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  5465. },
  5466. "time": "2020-09-27T08:32:30+00:00"
  5467. },
  5468. {
  5469. "name": "overtrue/socialite",
  5470. "version": "2.0.24",
  5471. "source": {
  5472. "type": "git",
  5473. "url": "https://github.com/overtrue/socialite.git",
  5474. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  5475. },
  5476. "dist": {
  5477. "type": "zip",
  5478. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5479. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  5480. "shasum": "",
  5481. "mirrors": [
  5482. {
  5483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5484. "preferred": true
  5485. }
  5486. ]
  5487. },
  5488. "require": {
  5489. "ext-json": "*",
  5490. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  5491. "php": ">=5.6",
  5492. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  5493. },
  5494. "require-dev": {
  5495. "mockery/mockery": "~1.2",
  5496. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  5497. },
  5498. "type": "library",
  5499. "autoload": {
  5500. "psr-4": {
  5501. "Overtrue\\Socialite\\": "src/"
  5502. }
  5503. },
  5504. "notification-url": "https://packagist.org/downloads/",
  5505. "license": [
  5506. "MIT"
  5507. ],
  5508. "authors": [
  5509. {
  5510. "name": "overtrue",
  5511. "email": "anzhengchao@gmail.com"
  5512. }
  5513. ],
  5514. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  5515. "keywords": [
  5516. "login",
  5517. "oauth",
  5518. "qq",
  5519. "social",
  5520. "wechat",
  5521. "weibo"
  5522. ],
  5523. "support": {
  5524. "issues": "https://github.com/overtrue/socialite/issues",
  5525. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  5526. },
  5527. "funding": [
  5528. {
  5529. "url": "https://www.patreon.com/overtrue",
  5530. "type": "patreon"
  5531. }
  5532. ],
  5533. "time": "2021-05-13T16:04:48+00:00"
  5534. },
  5535. {
  5536. "name": "overtrue/wechat",
  5537. "version": "4.5.0",
  5538. "source": {
  5539. "type": "git",
  5540. "url": "https://github.com/w7corp/easywechat.git",
  5541. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  5542. },
  5543. "dist": {
  5544. "type": "zip",
  5545. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5546. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  5547. "shasum": "",
  5548. "mirrors": [
  5549. {
  5550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5551. "preferred": true
  5552. }
  5553. ]
  5554. },
  5555. "require": {
  5556. "easywechat-composer/easywechat-composer": "^1.1",
  5557. "ext-fileinfo": "*",
  5558. "ext-openssl": "*",
  5559. "ext-simplexml": "*",
  5560. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  5561. "monolog/monolog": "^1.22 || ^2.0",
  5562. "overtrue/socialite": "~2.0",
  5563. "php": ">=7.2",
  5564. "pimple/pimple": "^3.0",
  5565. "psr/simple-cache": "^1.0",
  5566. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  5567. "symfony/event-dispatcher": "^4.3 || ^5.0",
  5568. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  5569. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  5570. },
  5571. "require-dev": {
  5572. "friendsofphp/php-cs-fixer": "^2.15",
  5573. "mikey179/vfsstream": "^1.6",
  5574. "mockery/mockery": "^1.2.3",
  5575. "phpstan/phpstan": "^0.12.0",
  5576. "phpunit/phpunit": "^7.5"
  5577. },
  5578. "type": "library",
  5579. "autoload": {
  5580. "files": [
  5581. "src/Kernel/Support/Helpers.php",
  5582. "src/Kernel/Helpers.php"
  5583. ],
  5584. "psr-4": {
  5585. "EasyWeChat\\": "src/"
  5586. }
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "overtrue",
  5595. "email": "anzhengchao@gmail.com"
  5596. }
  5597. ],
  5598. "description": "微信SDK",
  5599. "keywords": [
  5600. "easywechat",
  5601. "sdk",
  5602. "wechat",
  5603. "weixin",
  5604. "weixin-sdk"
  5605. ],
  5606. "support": {
  5607. "issues": "https://github.com/w7corp/easywechat/issues",
  5608. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  5609. },
  5610. "funding": [
  5611. {
  5612. "url": "https://github.com/overtrue",
  5613. "type": "github"
  5614. }
  5615. ],
  5616. "time": "2021-12-27T13:56:47+00:00"
  5617. },
  5618. {
  5619. "name": "phpdocumentor/reflection-common",
  5620. "version": "2.2.0",
  5621. "source": {
  5622. "type": "git",
  5623. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5624. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5625. },
  5626. "dist": {
  5627. "type": "zip",
  5628. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5629. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5630. "shasum": "",
  5631. "mirrors": [
  5632. {
  5633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5634. "preferred": true
  5635. }
  5636. ]
  5637. },
  5638. "require": {
  5639. "php": "^7.2 || ^8.0"
  5640. },
  5641. "type": "library",
  5642. "extra": {
  5643. "branch-alias": {
  5644. "dev-2.x": "2.x-dev"
  5645. }
  5646. },
  5647. "autoload": {
  5648. "psr-4": {
  5649. "phpDocumentor\\Reflection\\": "src/"
  5650. }
  5651. },
  5652. "notification-url": "https://packagist.org/downloads/",
  5653. "license": [
  5654. "MIT"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Jaap van Otterdijk",
  5659. "email": "opensource@ijaap.nl"
  5660. }
  5661. ],
  5662. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5663. "homepage": "http://www.phpdoc.org",
  5664. "keywords": [
  5665. "FQSEN",
  5666. "phpDocumentor",
  5667. "phpdoc",
  5668. "reflection",
  5669. "static analysis"
  5670. ],
  5671. "support": {
  5672. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5673. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5674. },
  5675. "time": "2020-06-27T09:03:43+00:00"
  5676. },
  5677. {
  5678. "name": "phpdocumentor/reflection-docblock",
  5679. "version": "5.3.0",
  5680. "source": {
  5681. "type": "git",
  5682. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5683. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5684. },
  5685. "dist": {
  5686. "type": "zip",
  5687. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5688. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5689. "shasum": "",
  5690. "mirrors": [
  5691. {
  5692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5693. "preferred": true
  5694. }
  5695. ]
  5696. },
  5697. "require": {
  5698. "ext-filter": "*",
  5699. "php": "^7.2 || ^8.0",
  5700. "phpdocumentor/reflection-common": "^2.2",
  5701. "phpdocumentor/type-resolver": "^1.3",
  5702. "webmozart/assert": "^1.9.1"
  5703. },
  5704. "require-dev": {
  5705. "mockery/mockery": "~1.3.2",
  5706. "psalm/phar": "^4.8"
  5707. },
  5708. "type": "library",
  5709. "extra": {
  5710. "branch-alias": {
  5711. "dev-master": "5.x-dev"
  5712. }
  5713. },
  5714. "autoload": {
  5715. "psr-4": {
  5716. "phpDocumentor\\Reflection\\": "src"
  5717. }
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "MIT"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "Mike van Riel",
  5726. "email": "me@mikevanriel.com"
  5727. },
  5728. {
  5729. "name": "Jaap van Otterdijk",
  5730. "email": "account@ijaap.nl"
  5731. }
  5732. ],
  5733. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5734. "support": {
  5735. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5736. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5737. },
  5738. "time": "2021-10-19T17:43:47+00:00"
  5739. },
  5740. {
  5741. "name": "phpdocumentor/type-resolver",
  5742. "version": "1.6.1",
  5743. "source": {
  5744. "type": "git",
  5745. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5746. "reference": "77a32518733312af16a44300404e945338981de3"
  5747. },
  5748. "dist": {
  5749. "type": "zip",
  5750. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5751. "reference": "77a32518733312af16a44300404e945338981de3",
  5752. "shasum": "",
  5753. "mirrors": [
  5754. {
  5755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5756. "preferred": true
  5757. }
  5758. ]
  5759. },
  5760. "require": {
  5761. "php": "^7.2 || ^8.0",
  5762. "phpdocumentor/reflection-common": "^2.0"
  5763. },
  5764. "require-dev": {
  5765. "ext-tokenizer": "*",
  5766. "psalm/phar": "^4.8"
  5767. },
  5768. "type": "library",
  5769. "extra": {
  5770. "branch-alias": {
  5771. "dev-1.x": "1.x-dev"
  5772. }
  5773. },
  5774. "autoload": {
  5775. "psr-4": {
  5776. "phpDocumentor\\Reflection\\": "src"
  5777. }
  5778. },
  5779. "notification-url": "https://packagist.org/downloads/",
  5780. "license": [
  5781. "MIT"
  5782. ],
  5783. "authors": [
  5784. {
  5785. "name": "Mike van Riel",
  5786. "email": "me@mikevanriel.com"
  5787. }
  5788. ],
  5789. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5790. "support": {
  5791. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5792. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5793. },
  5794. "time": "2022-03-15T21:29:03+00:00"
  5795. },
  5796. {
  5797. "name": "phpoption/phpoption",
  5798. "version": "1.8.1",
  5799. "source": {
  5800. "type": "git",
  5801. "url": "https://github.com/schmittjoh/php-option.git",
  5802. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15"
  5803. },
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5807. "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15",
  5808. "shasum": "",
  5809. "mirrors": [
  5810. {
  5811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5812. "preferred": true
  5813. }
  5814. ]
  5815. },
  5816. "require": {
  5817. "php": "^7.0 || ^8.0"
  5818. },
  5819. "require-dev": {
  5820. "bamarni/composer-bin-plugin": "^1.4.1",
  5821. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8"
  5822. },
  5823. "type": "library",
  5824. "extra": {
  5825. "branch-alias": {
  5826. "dev-master": "1.8-dev"
  5827. }
  5828. },
  5829. "autoload": {
  5830. "psr-4": {
  5831. "PhpOption\\": "src/PhpOption/"
  5832. }
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "Apache-2.0"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Johannes M. Schmitt",
  5841. "email": "schmittjoh@gmail.com",
  5842. "homepage": "https://github.com/schmittjoh"
  5843. },
  5844. {
  5845. "name": "Graham Campbell",
  5846. "email": "hello@gjcampbell.co.uk",
  5847. "homepage": "https://github.com/GrahamCampbell"
  5848. }
  5849. ],
  5850. "description": "Option Type for PHP",
  5851. "keywords": [
  5852. "language",
  5853. "option",
  5854. "php",
  5855. "type"
  5856. ],
  5857. "support": {
  5858. "issues": "https://github.com/schmittjoh/php-option/issues",
  5859. "source": "https://github.com/schmittjoh/php-option/tree/1.8.1"
  5860. },
  5861. "funding": [
  5862. {
  5863. "url": "https://github.com/GrahamCampbell",
  5864. "type": "github"
  5865. },
  5866. {
  5867. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5868. "type": "tidelift"
  5869. }
  5870. ],
  5871. "time": "2021-12-04T23:24:31+00:00"
  5872. },
  5873. {
  5874. "name": "pimple/pimple",
  5875. "version": "v3.5.0",
  5876. "source": {
  5877. "type": "git",
  5878. "url": "https://github.com/silexphp/Pimple.git",
  5879. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5880. },
  5881. "dist": {
  5882. "type": "zip",
  5883. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5884. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5885. "shasum": "",
  5886. "mirrors": [
  5887. {
  5888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5889. "preferred": true
  5890. }
  5891. ]
  5892. },
  5893. "require": {
  5894. "php": ">=7.2.5",
  5895. "psr/container": "^1.1 || ^2.0"
  5896. },
  5897. "require-dev": {
  5898. "symfony/phpunit-bridge": "^5.4@dev"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-master": "3.4.x-dev"
  5904. }
  5905. },
  5906. "autoload": {
  5907. "psr-0": {
  5908. "Pimple": "src/"
  5909. }
  5910. },
  5911. "notification-url": "https://packagist.org/downloads/",
  5912. "license": [
  5913. "MIT"
  5914. ],
  5915. "authors": [
  5916. {
  5917. "name": "Fabien Potencier",
  5918. "email": "fabien@symfony.com"
  5919. }
  5920. ],
  5921. "description": "Pimple, a simple Dependency Injection Container",
  5922. "homepage": "https://pimple.symfony.com",
  5923. "keywords": [
  5924. "container",
  5925. "dependency injection"
  5926. ],
  5927. "support": {
  5928. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5929. },
  5930. "time": "2021-10-28T11:13:42+00:00"
  5931. },
  5932. {
  5933. "name": "prettus/l5-repository",
  5934. "version": "2.8.0",
  5935. "source": {
  5936. "type": "git",
  5937. "url": "https://github.com/andersao/l5-repository.git",
  5938. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea"
  5939. },
  5940. "dist": {
  5941. "type": "zip",
  5942. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5943. "reference": "bdaf12dcf1fcc2637ccbe06999f789a9ff522fea",
  5944. "shasum": "",
  5945. "mirrors": [
  5946. {
  5947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5948. "preferred": true
  5949. }
  5950. ]
  5951. },
  5952. "require": {
  5953. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5954. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5955. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5956. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5957. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5958. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5959. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5960. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0",
  5961. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4"
  5962. },
  5963. "suggest": {
  5964. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  5965. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  5966. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  5967. },
  5968. "type": "library",
  5969. "extra": {
  5970. "laravel": {
  5971. "providers": [
  5972. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  5973. ]
  5974. }
  5975. },
  5976. "autoload": {
  5977. "psr-4": {
  5978. "Prettus\\Repository\\": "src/Prettus/Repository/"
  5979. }
  5980. },
  5981. "notification-url": "https://packagist.org/downloads/",
  5982. "license": [
  5983. "MIT"
  5984. ],
  5985. "authors": [
  5986. {
  5987. "name": "Anderson Andrade",
  5988. "email": "contato@andersonandra.de",
  5989. "homepage": "http://andersonandra.de",
  5990. "role": "Developer"
  5991. }
  5992. ],
  5993. "description": "Laravel 5|6|7|8|9 - Repositories to the database layer",
  5994. "homepage": "http://andersao.github.io/l5-repository",
  5995. "keywords": [
  5996. "cache",
  5997. "eloquent",
  5998. "laravel",
  5999. "model",
  6000. "repository"
  6001. ],
  6002. "support": {
  6003. "docs": "http://andersao.github.io/l5-repository",
  6004. "email": "contato@andersonandra.de",
  6005. "issues": "https://github.com/andersao/l5-repository/issues",
  6006. "source": "https://github.com/andersao/l5-repository",
  6007. "wiki": "https://github.com/andersao/l5-repository"
  6008. },
  6009. "time": "2022-02-21T11:19:35+00:00"
  6010. },
  6011. {
  6012. "name": "prettus/laravel-validation",
  6013. "version": "1.4.0",
  6014. "source": {
  6015. "type": "git",
  6016. "url": "https://github.com/andersao/laravel-validator.git",
  6017. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9"
  6018. },
  6019. "dist": {
  6020. "type": "zip",
  6021. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  6022. "reference": "45d6b64e35d966aa0866d6f5fd22ecbb33ea41d9",
  6023. "shasum": "",
  6024. "mirrors": [
  6025. {
  6026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6027. "preferred": true
  6028. }
  6029. ]
  6030. },
  6031. "require": {
  6032. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0",
  6033. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0",
  6034. "php": ">=5.4.0"
  6035. },
  6036. "type": "library",
  6037. "autoload": {
  6038. "psr-4": {
  6039. "Prettus\\Validator\\": "src/Prettus/Validator/"
  6040. }
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "authors": [
  6044. {
  6045. "name": "Anderson Andrade",
  6046. "email": "contato@andersonandra.de",
  6047. "homepage": "http://andersonandra.de",
  6048. "role": "Developer"
  6049. }
  6050. ],
  6051. "description": "Laravel Validation Service",
  6052. "homepage": "http://andersao.github.io/laravel-validation",
  6053. "keywords": [
  6054. "laravel",
  6055. "service",
  6056. "validation"
  6057. ],
  6058. "support": {
  6059. "docs": "http://andersao.github.io/laravel-validation",
  6060. "email": "contato@andersonandra.de",
  6061. "issues": "https://github.com/andersao/laravel-validation/issues",
  6062. "source": "https://github.com/andersao/laravel-validation",
  6063. "wiki": "https://github.com/andersao/laravel-validation"
  6064. },
  6065. "time": "2022-02-21T11:18:30+00:00"
  6066. },
  6067. {
  6068. "name": "psr/cache",
  6069. "version": "2.0.0",
  6070. "source": {
  6071. "type": "git",
  6072. "url": "https://github.com/php-fig/cache.git",
  6073. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  6074. },
  6075. "dist": {
  6076. "type": "zip",
  6077. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  6078. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  6079. "shasum": "",
  6080. "mirrors": [
  6081. {
  6082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6083. "preferred": true
  6084. }
  6085. ]
  6086. },
  6087. "require": {
  6088. "php": ">=8.0.0"
  6089. },
  6090. "type": "library",
  6091. "extra": {
  6092. "branch-alias": {
  6093. "dev-master": "1.0.x-dev"
  6094. }
  6095. },
  6096. "autoload": {
  6097. "psr-4": {
  6098. "Psr\\Cache\\": "src/"
  6099. }
  6100. },
  6101. "notification-url": "https://packagist.org/downloads/",
  6102. "license": [
  6103. "MIT"
  6104. ],
  6105. "authors": [
  6106. {
  6107. "name": "PHP-FIG",
  6108. "homepage": "https://www.php-fig.org/"
  6109. }
  6110. ],
  6111. "description": "Common interface for caching libraries",
  6112. "keywords": [
  6113. "cache",
  6114. "psr",
  6115. "psr-6"
  6116. ],
  6117. "support": {
  6118. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  6119. },
  6120. "time": "2021-02-03T23:23:37+00:00"
  6121. },
  6122. {
  6123. "name": "psr/container",
  6124. "version": "1.1.2",
  6125. "source": {
  6126. "type": "git",
  6127. "url": "https://github.com/php-fig/container.git",
  6128. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  6129. },
  6130. "dist": {
  6131. "type": "zip",
  6132. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  6133. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  6134. "shasum": "",
  6135. "mirrors": [
  6136. {
  6137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6138. "preferred": true
  6139. }
  6140. ]
  6141. },
  6142. "require": {
  6143. "php": ">=7.4.0"
  6144. },
  6145. "type": "library",
  6146. "autoload": {
  6147. "psr-4": {
  6148. "Psr\\Container\\": "src/"
  6149. }
  6150. },
  6151. "notification-url": "https://packagist.org/downloads/",
  6152. "license": [
  6153. "MIT"
  6154. ],
  6155. "authors": [
  6156. {
  6157. "name": "PHP-FIG",
  6158. "homepage": "https://www.php-fig.org/"
  6159. }
  6160. ],
  6161. "description": "Common Container Interface (PHP FIG PSR-11)",
  6162. "homepage": "https://github.com/php-fig/container",
  6163. "keywords": [
  6164. "PSR-11",
  6165. "container",
  6166. "container-interface",
  6167. "container-interop",
  6168. "psr"
  6169. ],
  6170. "support": {
  6171. "issues": "https://github.com/php-fig/container/issues",
  6172. "source": "https://github.com/php-fig/container/tree/1.1.2"
  6173. },
  6174. "time": "2021-11-05T16:50:12+00:00"
  6175. },
  6176. {
  6177. "name": "psr/event-dispatcher",
  6178. "version": "1.0.0",
  6179. "source": {
  6180. "type": "git",
  6181. "url": "https://github.com/php-fig/event-dispatcher.git",
  6182. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6183. },
  6184. "dist": {
  6185. "type": "zip",
  6186. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6187. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6188. "shasum": "",
  6189. "mirrors": [
  6190. {
  6191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6192. "preferred": true
  6193. }
  6194. ]
  6195. },
  6196. "require": {
  6197. "php": ">=7.2.0"
  6198. },
  6199. "type": "library",
  6200. "extra": {
  6201. "branch-alias": {
  6202. "dev-master": "1.0.x-dev"
  6203. }
  6204. },
  6205. "autoload": {
  6206. "psr-4": {
  6207. "Psr\\EventDispatcher\\": "src/"
  6208. }
  6209. },
  6210. "notification-url": "https://packagist.org/downloads/",
  6211. "license": [
  6212. "MIT"
  6213. ],
  6214. "authors": [
  6215. {
  6216. "name": "PHP-FIG",
  6217. "homepage": "http://www.php-fig.org/"
  6218. }
  6219. ],
  6220. "description": "Standard interfaces for event handling.",
  6221. "keywords": [
  6222. "events",
  6223. "psr",
  6224. "psr-14"
  6225. ],
  6226. "support": {
  6227. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6228. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6229. },
  6230. "time": "2019-01-08T18:20:26+00:00"
  6231. },
  6232. {
  6233. "name": "psr/http-client",
  6234. "version": "1.0.1",
  6235. "source": {
  6236. "type": "git",
  6237. "url": "https://github.com/php-fig/http-client.git",
  6238. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  6239. },
  6240. "dist": {
  6241. "type": "zip",
  6242. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  6243. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  6244. "shasum": "",
  6245. "mirrors": [
  6246. {
  6247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6248. "preferred": true
  6249. }
  6250. ]
  6251. },
  6252. "require": {
  6253. "php": "^7.0 || ^8.0",
  6254. "psr/http-message": "^1.0"
  6255. },
  6256. "type": "library",
  6257. "extra": {
  6258. "branch-alias": {
  6259. "dev-master": "1.0.x-dev"
  6260. }
  6261. },
  6262. "autoload": {
  6263. "psr-4": {
  6264. "Psr\\Http\\Client\\": "src/"
  6265. }
  6266. },
  6267. "notification-url": "https://packagist.org/downloads/",
  6268. "license": [
  6269. "MIT"
  6270. ],
  6271. "authors": [
  6272. {
  6273. "name": "PHP-FIG",
  6274. "homepage": "http://www.php-fig.org/"
  6275. }
  6276. ],
  6277. "description": "Common interface for HTTP clients",
  6278. "homepage": "https://github.com/php-fig/http-client",
  6279. "keywords": [
  6280. "http",
  6281. "http-client",
  6282. "psr",
  6283. "psr-18"
  6284. ],
  6285. "support": {
  6286. "source": "https://github.com/php-fig/http-client/tree/master"
  6287. },
  6288. "time": "2020-06-29T06:28:15+00:00"
  6289. },
  6290. {
  6291. "name": "psr/http-factory",
  6292. "version": "1.0.1",
  6293. "source": {
  6294. "type": "git",
  6295. "url": "https://github.com/php-fig/http-factory.git",
  6296. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  6297. },
  6298. "dist": {
  6299. "type": "zip",
  6300. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  6301. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  6302. "shasum": "",
  6303. "mirrors": [
  6304. {
  6305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6306. "preferred": true
  6307. }
  6308. ]
  6309. },
  6310. "require": {
  6311. "php": ">=7.0.0",
  6312. "psr/http-message": "^1.0"
  6313. },
  6314. "type": "library",
  6315. "extra": {
  6316. "branch-alias": {
  6317. "dev-master": "1.0.x-dev"
  6318. }
  6319. },
  6320. "autoload": {
  6321. "psr-4": {
  6322. "Psr\\Http\\Message\\": "src/"
  6323. }
  6324. },
  6325. "notification-url": "https://packagist.org/downloads/",
  6326. "license": [
  6327. "MIT"
  6328. ],
  6329. "authors": [
  6330. {
  6331. "name": "PHP-FIG",
  6332. "homepage": "http://www.php-fig.org/"
  6333. }
  6334. ],
  6335. "description": "Common interfaces for PSR-7 HTTP message factories",
  6336. "keywords": [
  6337. "factory",
  6338. "http",
  6339. "message",
  6340. "psr",
  6341. "psr-17",
  6342. "psr-7",
  6343. "request",
  6344. "response"
  6345. ],
  6346. "support": {
  6347. "source": "https://github.com/php-fig/http-factory/tree/master"
  6348. },
  6349. "time": "2019-04-30T12:38:16+00:00"
  6350. },
  6351. {
  6352. "name": "psr/http-message",
  6353. "version": "1.0.1",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/php-fig/http-message.git",
  6357. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6362. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6363. "shasum": "",
  6364. "mirrors": [
  6365. {
  6366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6367. "preferred": true
  6368. }
  6369. ]
  6370. },
  6371. "require": {
  6372. "php": ">=5.3.0"
  6373. },
  6374. "type": "library",
  6375. "extra": {
  6376. "branch-alias": {
  6377. "dev-master": "1.0.x-dev"
  6378. }
  6379. },
  6380. "autoload": {
  6381. "psr-4": {
  6382. "Psr\\Http\\Message\\": "src/"
  6383. }
  6384. },
  6385. "notification-url": "https://packagist.org/downloads/",
  6386. "license": [
  6387. "MIT"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "PHP-FIG",
  6392. "homepage": "http://www.php-fig.org/"
  6393. }
  6394. ],
  6395. "description": "Common interface for HTTP messages",
  6396. "homepage": "https://github.com/php-fig/http-message",
  6397. "keywords": [
  6398. "http",
  6399. "http-message",
  6400. "psr",
  6401. "psr-7",
  6402. "request",
  6403. "response"
  6404. ],
  6405. "support": {
  6406. "source": "https://github.com/php-fig/http-message/tree/master"
  6407. },
  6408. "time": "2016-08-06T14:39:51+00:00"
  6409. },
  6410. {
  6411. "name": "psr/log",
  6412. "version": "2.0.0",
  6413. "source": {
  6414. "type": "git",
  6415. "url": "https://github.com/php-fig/log.git",
  6416. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  6417. },
  6418. "dist": {
  6419. "type": "zip",
  6420. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  6421. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  6422. "shasum": "",
  6423. "mirrors": [
  6424. {
  6425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6426. "preferred": true
  6427. }
  6428. ]
  6429. },
  6430. "require": {
  6431. "php": ">=8.0.0"
  6432. },
  6433. "type": "library",
  6434. "extra": {
  6435. "branch-alias": {
  6436. "dev-master": "2.0.x-dev"
  6437. }
  6438. },
  6439. "autoload": {
  6440. "psr-4": {
  6441. "Psr\\Log\\": "src"
  6442. }
  6443. },
  6444. "notification-url": "https://packagist.org/downloads/",
  6445. "license": [
  6446. "MIT"
  6447. ],
  6448. "authors": [
  6449. {
  6450. "name": "PHP-FIG",
  6451. "homepage": "https://www.php-fig.org/"
  6452. }
  6453. ],
  6454. "description": "Common interface for logging libraries",
  6455. "homepage": "https://github.com/php-fig/log",
  6456. "keywords": [
  6457. "log",
  6458. "psr",
  6459. "psr-3"
  6460. ],
  6461. "support": {
  6462. "source": "https://github.com/php-fig/log/tree/2.0.0"
  6463. },
  6464. "time": "2021-07-14T16:41:46+00:00"
  6465. },
  6466. {
  6467. "name": "psr/simple-cache",
  6468. "version": "1.0.1",
  6469. "source": {
  6470. "type": "git",
  6471. "url": "https://github.com/php-fig/simple-cache.git",
  6472. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  6473. },
  6474. "dist": {
  6475. "type": "zip",
  6476. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6477. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6478. "shasum": "",
  6479. "mirrors": [
  6480. {
  6481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6482. "preferred": true
  6483. }
  6484. ]
  6485. },
  6486. "require": {
  6487. "php": ">=5.3.0"
  6488. },
  6489. "type": "library",
  6490. "extra": {
  6491. "branch-alias": {
  6492. "dev-master": "1.0.x-dev"
  6493. }
  6494. },
  6495. "autoload": {
  6496. "psr-4": {
  6497. "Psr\\SimpleCache\\": "src/"
  6498. }
  6499. },
  6500. "notification-url": "https://packagist.org/downloads/",
  6501. "license": [
  6502. "MIT"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "PHP-FIG",
  6507. "homepage": "http://www.php-fig.org/"
  6508. }
  6509. ],
  6510. "description": "Common interfaces for simple caching",
  6511. "keywords": [
  6512. "cache",
  6513. "caching",
  6514. "psr",
  6515. "psr-16",
  6516. "simple-cache"
  6517. ],
  6518. "support": {
  6519. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6520. },
  6521. "time": "2017-10-23T01:57:42+00:00"
  6522. },
  6523. {
  6524. "name": "psy/psysh",
  6525. "version": "v0.11.5",
  6526. "source": {
  6527. "type": "git",
  6528. "url": "https://github.com/bobthecow/psysh.git",
  6529. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf"
  6530. },
  6531. "dist": {
  6532. "type": "zip",
  6533. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/c23686f9c48ca202710dbb967df8385a952a2daf",
  6534. "reference": "c23686f9c48ca202710dbb967df8385a952a2daf",
  6535. "shasum": "",
  6536. "mirrors": [
  6537. {
  6538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6539. "preferred": true
  6540. }
  6541. ]
  6542. },
  6543. "require": {
  6544. "ext-json": "*",
  6545. "ext-tokenizer": "*",
  6546. "nikic/php-parser": "^4.0 || ^3.1",
  6547. "php": "^8.0 || ^7.0.8",
  6548. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  6549. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  6550. },
  6551. "conflict": {
  6552. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6553. },
  6554. "require-dev": {
  6555. "bamarni/composer-bin-plugin": "^1.2"
  6556. },
  6557. "suggest": {
  6558. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6559. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6560. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6561. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  6562. },
  6563. "bin": [
  6564. "bin/psysh"
  6565. ],
  6566. "type": "library",
  6567. "extra": {
  6568. "branch-alias": {
  6569. "dev-main": "0.11.x-dev"
  6570. }
  6571. },
  6572. "autoload": {
  6573. "files": [
  6574. "src/functions.php"
  6575. ],
  6576. "psr-4": {
  6577. "Psy\\": "src/"
  6578. }
  6579. },
  6580. "notification-url": "https://packagist.org/downloads/",
  6581. "license": [
  6582. "MIT"
  6583. ],
  6584. "authors": [
  6585. {
  6586. "name": "Justin Hileman",
  6587. "email": "justin@justinhileman.info",
  6588. "homepage": "http://justinhileman.com"
  6589. }
  6590. ],
  6591. "description": "An interactive shell for modern PHP.",
  6592. "homepage": "http://psysh.org",
  6593. "keywords": [
  6594. "REPL",
  6595. "console",
  6596. "interactive",
  6597. "shell"
  6598. ],
  6599. "support": {
  6600. "issues": "https://github.com/bobthecow/psysh/issues",
  6601. "source": "https://github.com/bobthecow/psysh/tree/v0.11.5"
  6602. },
  6603. "time": "2022-05-27T18:03:49+00:00"
  6604. },
  6605. {
  6606. "name": "ralouphie/getallheaders",
  6607. "version": "3.0.3",
  6608. "source": {
  6609. "type": "git",
  6610. "url": "https://github.com/ralouphie/getallheaders.git",
  6611. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6612. },
  6613. "dist": {
  6614. "type": "zip",
  6615. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6616. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6617. "shasum": "",
  6618. "mirrors": [
  6619. {
  6620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6621. "preferred": true
  6622. }
  6623. ]
  6624. },
  6625. "require": {
  6626. "php": ">=5.6"
  6627. },
  6628. "require-dev": {
  6629. "php-coveralls/php-coveralls": "^2.1",
  6630. "phpunit/phpunit": "^5 || ^6.5"
  6631. },
  6632. "type": "library",
  6633. "autoload": {
  6634. "files": [
  6635. "src/getallheaders.php"
  6636. ]
  6637. },
  6638. "notification-url": "https://packagist.org/downloads/",
  6639. "license": [
  6640. "MIT"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "Ralph Khattar",
  6645. "email": "ralph.khattar@gmail.com"
  6646. }
  6647. ],
  6648. "description": "A polyfill for getallheaders.",
  6649. "support": {
  6650. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6651. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6652. },
  6653. "time": "2019-03-08T08:55:37+00:00"
  6654. },
  6655. {
  6656. "name": "ramsey/collection",
  6657. "version": "1.2.2",
  6658. "source": {
  6659. "type": "git",
  6660. "url": "https://github.com/ramsey/collection.git",
  6661. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  6662. },
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6666. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  6667. "shasum": "",
  6668. "mirrors": [
  6669. {
  6670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6671. "preferred": true
  6672. }
  6673. ]
  6674. },
  6675. "require": {
  6676. "php": "^7.3 || ^8",
  6677. "symfony/polyfill-php81": "^1.23"
  6678. },
  6679. "require-dev": {
  6680. "captainhook/captainhook": "^5.3",
  6681. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6682. "ergebnis/composer-normalize": "^2.6",
  6683. "fakerphp/faker": "^1.5",
  6684. "hamcrest/hamcrest-php": "^2",
  6685. "jangregor/phpstan-prophecy": "^0.8",
  6686. "mockery/mockery": "^1.3",
  6687. "phpspec/prophecy-phpunit": "^2.0",
  6688. "phpstan/extension-installer": "^1",
  6689. "phpstan/phpstan": "^0.12.32",
  6690. "phpstan/phpstan-mockery": "^0.12.5",
  6691. "phpstan/phpstan-phpunit": "^0.12.11",
  6692. "phpunit/phpunit": "^8.5 || ^9",
  6693. "psy/psysh": "^0.10.4",
  6694. "slevomat/coding-standard": "^6.3",
  6695. "squizlabs/php_codesniffer": "^3.5",
  6696. "vimeo/psalm": "^4.4"
  6697. },
  6698. "type": "library",
  6699. "autoload": {
  6700. "psr-4": {
  6701. "Ramsey\\Collection\\": "src/"
  6702. }
  6703. },
  6704. "notification-url": "https://packagist.org/downloads/",
  6705. "license": [
  6706. "MIT"
  6707. ],
  6708. "authors": [
  6709. {
  6710. "name": "Ben Ramsey",
  6711. "email": "ben@benramsey.com",
  6712. "homepage": "https://benramsey.com"
  6713. }
  6714. ],
  6715. "description": "A PHP library for representing and manipulating collections.",
  6716. "keywords": [
  6717. "array",
  6718. "collection",
  6719. "hash",
  6720. "map",
  6721. "queue",
  6722. "set"
  6723. ],
  6724. "support": {
  6725. "issues": "https://github.com/ramsey/collection/issues",
  6726. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  6727. },
  6728. "funding": [
  6729. {
  6730. "url": "https://github.com/ramsey",
  6731. "type": "github"
  6732. },
  6733. {
  6734. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6735. "type": "tidelift"
  6736. }
  6737. ],
  6738. "time": "2021-10-10T03:01:02+00:00"
  6739. },
  6740. {
  6741. "name": "ramsey/uuid",
  6742. "version": "4.2.3",
  6743. "source": {
  6744. "type": "git",
  6745. "url": "https://github.com/ramsey/uuid.git",
  6746. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  6747. },
  6748. "dist": {
  6749. "type": "zip",
  6750. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  6751. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  6752. "shasum": "",
  6753. "mirrors": [
  6754. {
  6755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6756. "preferred": true
  6757. }
  6758. ]
  6759. },
  6760. "require": {
  6761. "brick/math": "^0.8 || ^0.9",
  6762. "ext-json": "*",
  6763. "php": "^7.2 || ^8.0",
  6764. "ramsey/collection": "^1.0",
  6765. "symfony/polyfill-ctype": "^1.8",
  6766. "symfony/polyfill-php80": "^1.14"
  6767. },
  6768. "replace": {
  6769. "rhumsaa/uuid": "self.version"
  6770. },
  6771. "require-dev": {
  6772. "captainhook/captainhook": "^5.10",
  6773. "captainhook/plugin-composer": "^5.3",
  6774. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6775. "doctrine/annotations": "^1.8",
  6776. "ergebnis/composer-normalize": "^2.15",
  6777. "mockery/mockery": "^1.3",
  6778. "moontoast/math": "^1.1",
  6779. "paragonie/random-lib": "^2",
  6780. "php-mock/php-mock": "^2.2",
  6781. "php-mock/php-mock-mockery": "^1.3",
  6782. "php-parallel-lint/php-parallel-lint": "^1.1",
  6783. "phpbench/phpbench": "^1.0",
  6784. "phpstan/extension-installer": "^1.0",
  6785. "phpstan/phpstan": "^0.12",
  6786. "phpstan/phpstan-mockery": "^0.12",
  6787. "phpstan/phpstan-phpunit": "^0.12",
  6788. "phpunit/phpunit": "^8.5 || ^9",
  6789. "slevomat/coding-standard": "^7.0",
  6790. "squizlabs/php_codesniffer": "^3.5",
  6791. "vimeo/psalm": "^4.9"
  6792. },
  6793. "suggest": {
  6794. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6795. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  6796. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6797. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6798. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6799. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6800. },
  6801. "type": "library",
  6802. "extra": {
  6803. "branch-alias": {
  6804. "dev-main": "4.x-dev"
  6805. },
  6806. "captainhook": {
  6807. "force-install": true
  6808. }
  6809. },
  6810. "autoload": {
  6811. "files": [
  6812. "src/functions.php"
  6813. ],
  6814. "psr-4": {
  6815. "Ramsey\\Uuid\\": "src/"
  6816. }
  6817. },
  6818. "notification-url": "https://packagist.org/downloads/",
  6819. "license": [
  6820. "MIT"
  6821. ],
  6822. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6823. "keywords": [
  6824. "guid",
  6825. "identifier",
  6826. "uuid"
  6827. ],
  6828. "support": {
  6829. "issues": "https://github.com/ramsey/uuid/issues",
  6830. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  6831. },
  6832. "funding": [
  6833. {
  6834. "url": "https://github.com/ramsey",
  6835. "type": "github"
  6836. },
  6837. {
  6838. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6839. "type": "tidelift"
  6840. }
  6841. ],
  6842. "time": "2021-09-25T23:10:38+00:00"
  6843. },
  6844. {
  6845. "name": "simplesoftwareio/simple-qrcode",
  6846. "version": "4.2.0",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  6850. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  6855. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  6856. "shasum": "",
  6857. "mirrors": [
  6858. {
  6859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6860. "preferred": true
  6861. }
  6862. ]
  6863. },
  6864. "require": {
  6865. "bacon/bacon-qr-code": "^2.0",
  6866. "ext-gd": "*",
  6867. "php": ">=7.2|^8.0"
  6868. },
  6869. "require-dev": {
  6870. "mockery/mockery": "~1",
  6871. "phpunit/phpunit": "~9"
  6872. },
  6873. "suggest": {
  6874. "ext-imagick": "Allows the generation of PNG QrCodes.",
  6875. "illuminate/support": "Allows for use within Laravel."
  6876. },
  6877. "type": "library",
  6878. "extra": {
  6879. "laravel": {
  6880. "providers": [
  6881. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  6882. ],
  6883. "aliases": {
  6884. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  6885. }
  6886. }
  6887. },
  6888. "autoload": {
  6889. "psr-4": {
  6890. "SimpleSoftwareIO\\QrCode\\": "src"
  6891. }
  6892. },
  6893. "notification-url": "https://packagist.org/downloads/",
  6894. "license": [
  6895. "MIT"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "Simple Software LLC",
  6900. "email": "support@simplesoftware.io"
  6901. }
  6902. ],
  6903. "description": "Simple QrCode is a QR code generator made for Laravel.",
  6904. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  6905. "keywords": [
  6906. "Simple",
  6907. "generator",
  6908. "laravel",
  6909. "qrcode",
  6910. "wrapper"
  6911. ],
  6912. "support": {
  6913. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  6914. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  6915. },
  6916. "time": "2021-02-08T20:43:55+00:00"
  6917. },
  6918. {
  6919. "name": "socialiteproviders/facebook",
  6920. "version": "4.1.0",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://github.com/SocialiteProviders/Facebook.git",
  6924. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://api.github.com/repos/SocialiteProviders/Facebook/zipball/9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6929. "reference": "9b94a9334b5d0f61de8f5a20928d63d4d8f4e00d",
  6930. "shasum": "",
  6931. "mirrors": [
  6932. {
  6933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6934. "preferred": true
  6935. }
  6936. ]
  6937. },
  6938. "require": {
  6939. "ext-json": "*",
  6940. "php": "^7.2 || ^8.0",
  6941. "socialiteproviders/manager": "~4.0"
  6942. },
  6943. "type": "library",
  6944. "autoload": {
  6945. "psr-4": {
  6946. "SocialiteProviders\\Facebook\\": ""
  6947. }
  6948. },
  6949. "notification-url": "https://packagist.org/downloads/",
  6950. "license": [
  6951. "MIT"
  6952. ],
  6953. "authors": [
  6954. {
  6955. "name": "Oleksandr Prypkhan (Alex Wells)",
  6956. "email": "autaut03@googlemail.com"
  6957. }
  6958. ],
  6959. "description": "Facebook (facebook.com) OAuth2 Provider for Laravel Socialite",
  6960. "support": {
  6961. "source": "https://github.com/SocialiteProviders/Facebook/tree/4.1.0"
  6962. },
  6963. "time": "2020-12-01T23:10:59+00:00"
  6964. },
  6965. {
  6966. "name": "socialiteproviders/manager",
  6967. "version": "v4.1.0",
  6968. "source": {
  6969. "type": "git",
  6970. "url": "https://github.com/SocialiteProviders/Manager.git",
  6971. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9"
  6972. },
  6973. "dist": {
  6974. "type": "zip",
  6975. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6976. "reference": "4e63afbd26dc45ff263591de2a0970436a6a0bf9",
  6977. "shasum": "",
  6978. "mirrors": [
  6979. {
  6980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6981. "preferred": true
  6982. }
  6983. ]
  6984. },
  6985. "require": {
  6986. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  6987. "laravel/socialite": "~4.0 || ~5.0",
  6988. "php": "^7.2 || ^8.0"
  6989. },
  6990. "require-dev": {
  6991. "mockery/mockery": "^1.2",
  6992. "phpunit/phpunit": "^6.0 || ^9.0"
  6993. },
  6994. "type": "library",
  6995. "extra": {
  6996. "laravel": {
  6997. "providers": [
  6998. "SocialiteProviders\\Manager\\ServiceProvider"
  6999. ]
  7000. }
  7001. },
  7002. "autoload": {
  7003. "psr-4": {
  7004. "SocialiteProviders\\Manager\\": "src/"
  7005. }
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "MIT"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Andy Wendt",
  7014. "email": "andy@awendt.com"
  7015. },
  7016. {
  7017. "name": "Anton Komarev",
  7018. "email": "a.komarev@cybercog.su"
  7019. },
  7020. {
  7021. "name": "Miguel Piedrafita",
  7022. "email": "soy@miguelpiedrafita.com"
  7023. },
  7024. {
  7025. "name": "atymic",
  7026. "email": "atymicq@gmail.com",
  7027. "homepage": "https://atymic.dev"
  7028. }
  7029. ],
  7030. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  7031. "homepage": "https://socialiteproviders.com",
  7032. "keywords": [
  7033. "laravel",
  7034. "manager",
  7035. "oauth",
  7036. "providers",
  7037. "socialite"
  7038. ],
  7039. "support": {
  7040. "issues": "https://github.com/socialiteproviders/manager/issues",
  7041. "source": "https://github.com/socialiteproviders/manager"
  7042. },
  7043. "time": "2022-01-23T22:40:23+00:00"
  7044. },
  7045. {
  7046. "name": "socialiteproviders/weixin",
  7047. "version": "4.1.0",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://github.com/SocialiteProviders/Weixin.git",
  7051. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  7056. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  7057. "shasum": "",
  7058. "mirrors": [
  7059. {
  7060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7061. "preferred": true
  7062. }
  7063. ]
  7064. },
  7065. "require": {
  7066. "ext-json": "*",
  7067. "php": "^7.2 || ^8.0",
  7068. "socialiteproviders/manager": "~4.0"
  7069. },
  7070. "type": "library",
  7071. "autoload": {
  7072. "psr-4": {
  7073. "SocialiteProviders\\Weixin\\": ""
  7074. }
  7075. },
  7076. "notification-url": "https://packagist.org/downloads/",
  7077. "license": [
  7078. "MIT"
  7079. ],
  7080. "authors": [
  7081. {
  7082. "name": "xyxu",
  7083. "email": "techxu@gmail.com"
  7084. },
  7085. {
  7086. "name": "xiami",
  7087. "email": "jhdxr@php.net"
  7088. }
  7089. ],
  7090. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  7091. "support": {
  7092. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  7093. },
  7094. "time": "2020-12-01T23:10:59+00:00"
  7095. },
  7096. {
  7097. "name": "spatie/eloquent-sortable",
  7098. "version": "4.0.1",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/spatie/eloquent-sortable.git",
  7102. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  7107. "reference": "64a3365c0d5a7b4a1837b2f29d01ee4c578c416a",
  7108. "shasum": "",
  7109. "mirrors": [
  7110. {
  7111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7112. "preferred": true
  7113. }
  7114. ]
  7115. },
  7116. "require": {
  7117. "illuminate/database": "^8.0|^9.0",
  7118. "illuminate/support": "^8.0|^9.0",
  7119. "php": "^8.0",
  7120. "spatie/laravel-package-tools": "^1.9"
  7121. },
  7122. "require-dev": {
  7123. "orchestra/testbench": "^6.0|^7.0",
  7124. "phpunit/phpunit": "^9.5"
  7125. },
  7126. "type": "library",
  7127. "extra": {
  7128. "laravel": {
  7129. "providers": [
  7130. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  7131. ]
  7132. }
  7133. },
  7134. "autoload": {
  7135. "psr-4": {
  7136. "Spatie\\EloquentSortable\\": "src/"
  7137. }
  7138. },
  7139. "notification-url": "https://packagist.org/downloads/",
  7140. "license": [
  7141. "MIT"
  7142. ],
  7143. "authors": [
  7144. {
  7145. "name": "Freek Van der Herten",
  7146. "email": "freek@spatie.be"
  7147. }
  7148. ],
  7149. "description": "Sortable behaviour for eloquent models",
  7150. "homepage": "https://github.com/spatie/eloquent-sortable",
  7151. "keywords": [
  7152. "behaviour",
  7153. "eloquent",
  7154. "laravel",
  7155. "model",
  7156. "sort",
  7157. "sortable"
  7158. ],
  7159. "support": {
  7160. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  7161. "source": "https://github.com/spatie/eloquent-sortable/tree/4.0.1"
  7162. },
  7163. "funding": [
  7164. {
  7165. "url": "https://spatie.be/open-source/support-us",
  7166. "type": "custom"
  7167. },
  7168. {
  7169. "url": "https://github.com/spatie",
  7170. "type": "github"
  7171. }
  7172. ],
  7173. "time": "2022-01-21T08:32:41+00:00"
  7174. },
  7175. {
  7176. "name": "spatie/laravel-package-tools",
  7177. "version": "1.12.0",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/spatie/laravel-package-tools.git",
  7181. "reference": "9e6c0382553f1317c02f1ae0ee71c64821eb5af0"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/9e6c0382553f1317c02f1ae0ee71c64821eb5af0",
  7186. "reference": "9e6c0382553f1317c02f1ae0ee71c64821eb5af0",
  7187. "shasum": "",
  7188. "mirrors": [
  7189. {
  7190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7191. "preferred": true
  7192. }
  7193. ]
  7194. },
  7195. "require": {
  7196. "illuminate/contracts": "^7.0|^8.0|^9.0",
  7197. "php": "^7.4|^8.0"
  7198. },
  7199. "require-dev": {
  7200. "mockery/mockery": "^1.4",
  7201. "orchestra/testbench": "^5.0|^6.23|^7.0",
  7202. "phpunit/phpunit": "^9.4",
  7203. "spatie/test-time": "^1.2"
  7204. },
  7205. "type": "library",
  7206. "autoload": {
  7207. "psr-4": {
  7208. "Spatie\\LaravelPackageTools\\": "src"
  7209. }
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "MIT"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Freek Van der Herten",
  7218. "email": "freek@spatie.be",
  7219. "role": "Developer"
  7220. }
  7221. ],
  7222. "description": "Tools for creating Laravel packages",
  7223. "homepage": "https://github.com/spatie/laravel-package-tools",
  7224. "keywords": [
  7225. "laravel-package-tools",
  7226. "spatie"
  7227. ],
  7228. "support": {
  7229. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  7230. "source": "https://github.com/spatie/laravel-package-tools/tree/1.12.0"
  7231. },
  7232. "funding": [
  7233. {
  7234. "url": "https://github.com/spatie",
  7235. "type": "github"
  7236. }
  7237. ],
  7238. "time": "2022-06-19T20:01:24+00:00"
  7239. },
  7240. {
  7241. "name": "stomp-php/stomp-php",
  7242. "version": "5.0.0",
  7243. "source": {
  7244. "type": "git",
  7245. "url": "https://github.com/stomp-php/stomp-php.git",
  7246. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98"
  7247. },
  7248. "dist": {
  7249. "type": "zip",
  7250. "url": "https://api.github.com/repos/stomp-php/stomp-php/zipball/50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  7251. "reference": "50f6e6e9aa1ba4696faa40cd1cbe180a96679f98",
  7252. "shasum": "",
  7253. "mirrors": [
  7254. {
  7255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7256. "preferred": true
  7257. }
  7258. ]
  7259. },
  7260. "require": {
  7261. "php": "^7.3|^8.0"
  7262. },
  7263. "require-dev": {
  7264. "phpunit/phpunit": "^9.5"
  7265. },
  7266. "type": "library",
  7267. "autoload": {
  7268. "psr-4": {
  7269. "Stomp\\": "src/"
  7270. }
  7271. },
  7272. "notification-url": "https://packagist.org/downloads/",
  7273. "license": [
  7274. "Apache-2.0"
  7275. ],
  7276. "authors": [
  7277. {
  7278. "name": "Dejan Bosnanac",
  7279. "email": "dejan@nighttale.net",
  7280. "homepage": "http://www.nighttale.net"
  7281. },
  7282. {
  7283. "name": "Sören Rohweder",
  7284. "email": "s.rohweder@blage.net",
  7285. "homepage": "http://www.monofone.de"
  7286. },
  7287. {
  7288. "name": "Jens Radtke",
  7289. "email": "swefl@fin-sn.de",
  7290. "homepage": "http://www.fin-sn.de"
  7291. }
  7292. ],
  7293. "description": "stomp support for PHP",
  7294. "homepage": "http://github.com/stomp-php/stomp-php",
  7295. "keywords": [
  7296. "activeMQ",
  7297. "apollomq",
  7298. "jms",
  7299. "messaging",
  7300. "rabbitmq",
  7301. "stomp"
  7302. ],
  7303. "support": {
  7304. "issues": "https://github.com/stomp-php/stomp-php/issues",
  7305. "source": "https://github.com/stomp-php/stomp-php/tree/5.0.0"
  7306. },
  7307. "funding": [
  7308. {
  7309. "url": "https://github.com/jmglsn",
  7310. "type": "github"
  7311. },
  7312. {
  7313. "url": "https://github.com/staabm",
  7314. "type": "github"
  7315. }
  7316. ],
  7317. "time": "2021-02-02T19:25:59+00:00"
  7318. },
  7319. {
  7320. "name": "swiftmailer/swiftmailer",
  7321. "version": "v6.3.0",
  7322. "source": {
  7323. "type": "git",
  7324. "url": "https://github.com/swiftmailer/swiftmailer.git",
  7325. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  7326. },
  7327. "dist": {
  7328. "type": "zip",
  7329. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  7330. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  7331. "shasum": "",
  7332. "mirrors": [
  7333. {
  7334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7335. "preferred": true
  7336. }
  7337. ]
  7338. },
  7339. "require": {
  7340. "egulias/email-validator": "^2.0|^3.1",
  7341. "php": ">=7.0.0",
  7342. "symfony/polyfill-iconv": "^1.0",
  7343. "symfony/polyfill-intl-idn": "^1.10",
  7344. "symfony/polyfill-mbstring": "^1.0"
  7345. },
  7346. "require-dev": {
  7347. "mockery/mockery": "^1.0",
  7348. "symfony/phpunit-bridge": "^4.4|^5.4"
  7349. },
  7350. "suggest": {
  7351. "ext-intl": "Needed to support internationalized email addresses"
  7352. },
  7353. "type": "library",
  7354. "extra": {
  7355. "branch-alias": {
  7356. "dev-master": "6.2-dev"
  7357. }
  7358. },
  7359. "autoload": {
  7360. "files": [
  7361. "lib/swift_required.php"
  7362. ]
  7363. },
  7364. "notification-url": "https://packagist.org/downloads/",
  7365. "license": [
  7366. "MIT"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "Chris Corbyn"
  7371. },
  7372. {
  7373. "name": "Fabien Potencier",
  7374. "email": "fabien@symfony.com"
  7375. }
  7376. ],
  7377. "description": "Swiftmailer, free feature-rich PHP mailer",
  7378. "homepage": "https://swiftmailer.symfony.com",
  7379. "keywords": [
  7380. "email",
  7381. "mail",
  7382. "mailer"
  7383. ],
  7384. "support": {
  7385. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  7386. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  7387. },
  7388. "funding": [
  7389. {
  7390. "url": "https://github.com/fabpot",
  7391. "type": "github"
  7392. },
  7393. {
  7394. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  7395. "type": "tidelift"
  7396. }
  7397. ],
  7398. "abandoned": "symfony/mailer",
  7399. "time": "2021-10-18T15:26:12+00:00"
  7400. },
  7401. {
  7402. "name": "symfony/cache",
  7403. "version": "v5.4.9",
  7404. "source": {
  7405. "type": "git",
  7406. "url": "https://github.com/symfony/cache.git",
  7407. "reference": "a50b7249bea81ddd6d3b799ce40c5521c2f72f0b"
  7408. },
  7409. "dist": {
  7410. "type": "zip",
  7411. "url": "https://api.github.com/repos/symfony/cache/zipball/a50b7249bea81ddd6d3b799ce40c5521c2f72f0b",
  7412. "reference": "a50b7249bea81ddd6d3b799ce40c5521c2f72f0b",
  7413. "shasum": "",
  7414. "mirrors": [
  7415. {
  7416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7417. "preferred": true
  7418. }
  7419. ]
  7420. },
  7421. "require": {
  7422. "php": ">=7.2.5",
  7423. "psr/cache": "^1.0|^2.0",
  7424. "psr/log": "^1.1|^2|^3",
  7425. "symfony/cache-contracts": "^1.1.7|^2",
  7426. "symfony/deprecation-contracts": "^2.1|^3",
  7427. "symfony/polyfill-php73": "^1.9",
  7428. "symfony/polyfill-php80": "^1.16",
  7429. "symfony/service-contracts": "^1.1|^2|^3",
  7430. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7431. },
  7432. "conflict": {
  7433. "doctrine/dbal": "<2.13.1",
  7434. "symfony/dependency-injection": "<4.4",
  7435. "symfony/http-kernel": "<4.4",
  7436. "symfony/var-dumper": "<4.4"
  7437. },
  7438. "provide": {
  7439. "psr/cache-implementation": "1.0|2.0",
  7440. "psr/simple-cache-implementation": "1.0|2.0",
  7441. "symfony/cache-implementation": "1.0|2.0"
  7442. },
  7443. "require-dev": {
  7444. "cache/integration-tests": "dev-master",
  7445. "doctrine/cache": "^1.6|^2.0",
  7446. "doctrine/dbal": "^2.13.1|^3.0",
  7447. "predis/predis": "^1.1",
  7448. "psr/simple-cache": "^1.0|^2.0",
  7449. "symfony/config": "^4.4|^5.0|^6.0",
  7450. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7451. "symfony/filesystem": "^4.4|^5.0|^6.0",
  7452. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7453. "symfony/messenger": "^4.4|^5.0|^6.0",
  7454. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7455. },
  7456. "type": "library",
  7457. "autoload": {
  7458. "psr-4": {
  7459. "Symfony\\Component\\Cache\\": ""
  7460. },
  7461. "exclude-from-classmap": [
  7462. "/Tests/"
  7463. ]
  7464. },
  7465. "notification-url": "https://packagist.org/downloads/",
  7466. "license": [
  7467. "MIT"
  7468. ],
  7469. "authors": [
  7470. {
  7471. "name": "Nicolas Grekas",
  7472. "email": "p@tchwork.com"
  7473. },
  7474. {
  7475. "name": "Symfony Community",
  7476. "homepage": "https://symfony.com/contributors"
  7477. }
  7478. ],
  7479. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  7480. "homepage": "https://symfony.com",
  7481. "keywords": [
  7482. "caching",
  7483. "psr6"
  7484. ],
  7485. "support": {
  7486. "source": "https://github.com/symfony/cache/tree/v5.4.9"
  7487. },
  7488. "funding": [
  7489. {
  7490. "url": "https://symfony.com/sponsor",
  7491. "type": "custom"
  7492. },
  7493. {
  7494. "url": "https://github.com/fabpot",
  7495. "type": "github"
  7496. },
  7497. {
  7498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7499. "type": "tidelift"
  7500. }
  7501. ],
  7502. "time": "2022-05-21T10:24:18+00:00"
  7503. },
  7504. {
  7505. "name": "symfony/cache-contracts",
  7506. "version": "v2.5.1",
  7507. "source": {
  7508. "type": "git",
  7509. "url": "https://github.com/symfony/cache-contracts.git",
  7510. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  7511. },
  7512. "dist": {
  7513. "type": "zip",
  7514. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7515. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7516. "shasum": "",
  7517. "mirrors": [
  7518. {
  7519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7520. "preferred": true
  7521. }
  7522. ]
  7523. },
  7524. "require": {
  7525. "php": ">=7.2.5",
  7526. "psr/cache": "^1.0|^2.0|^3.0"
  7527. },
  7528. "suggest": {
  7529. "symfony/cache-implementation": ""
  7530. },
  7531. "type": "library",
  7532. "extra": {
  7533. "branch-alias": {
  7534. "dev-main": "2.5-dev"
  7535. },
  7536. "thanks": {
  7537. "name": "symfony/contracts",
  7538. "url": "https://github.com/symfony/contracts"
  7539. }
  7540. },
  7541. "autoload": {
  7542. "psr-4": {
  7543. "Symfony\\Contracts\\Cache\\": ""
  7544. }
  7545. },
  7546. "notification-url": "https://packagist.org/downloads/",
  7547. "license": [
  7548. "MIT"
  7549. ],
  7550. "authors": [
  7551. {
  7552. "name": "Nicolas Grekas",
  7553. "email": "p@tchwork.com"
  7554. },
  7555. {
  7556. "name": "Symfony Community",
  7557. "homepage": "https://symfony.com/contributors"
  7558. }
  7559. ],
  7560. "description": "Generic abstractions related to caching",
  7561. "homepage": "https://symfony.com",
  7562. "keywords": [
  7563. "abstractions",
  7564. "contracts",
  7565. "decoupling",
  7566. "interfaces",
  7567. "interoperability",
  7568. "standards"
  7569. ],
  7570. "support": {
  7571. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.1"
  7572. },
  7573. "funding": [
  7574. {
  7575. "url": "https://symfony.com/sponsor",
  7576. "type": "custom"
  7577. },
  7578. {
  7579. "url": "https://github.com/fabpot",
  7580. "type": "github"
  7581. },
  7582. {
  7583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7584. "type": "tidelift"
  7585. }
  7586. ],
  7587. "time": "2022-01-02T09:53:40+00:00"
  7588. },
  7589. {
  7590. "name": "symfony/console",
  7591. "version": "v5.4.9",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/symfony/console.git",
  7595. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/symfony/console/zipball/829d5d1bf60b2efeb0887b7436873becc71a45eb",
  7600. "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb",
  7601. "shasum": "",
  7602. "mirrors": [
  7603. {
  7604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7605. "preferred": true
  7606. }
  7607. ]
  7608. },
  7609. "require": {
  7610. "php": ">=7.2.5",
  7611. "symfony/deprecation-contracts": "^2.1|^3",
  7612. "symfony/polyfill-mbstring": "~1.0",
  7613. "symfony/polyfill-php73": "^1.9",
  7614. "symfony/polyfill-php80": "^1.16",
  7615. "symfony/service-contracts": "^1.1|^2|^3",
  7616. "symfony/string": "^5.1|^6.0"
  7617. },
  7618. "conflict": {
  7619. "psr/log": ">=3",
  7620. "symfony/dependency-injection": "<4.4",
  7621. "symfony/dotenv": "<5.1",
  7622. "symfony/event-dispatcher": "<4.4",
  7623. "symfony/lock": "<4.4",
  7624. "symfony/process": "<4.4"
  7625. },
  7626. "provide": {
  7627. "psr/log-implementation": "1.0|2.0"
  7628. },
  7629. "require-dev": {
  7630. "psr/log": "^1|^2",
  7631. "symfony/config": "^4.4|^5.0|^6.0",
  7632. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7633. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7634. "symfony/lock": "^4.4|^5.0|^6.0",
  7635. "symfony/process": "^4.4|^5.0|^6.0",
  7636. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7637. },
  7638. "suggest": {
  7639. "psr/log": "For using the console logger",
  7640. "symfony/event-dispatcher": "",
  7641. "symfony/lock": "",
  7642. "symfony/process": ""
  7643. },
  7644. "type": "library",
  7645. "autoload": {
  7646. "psr-4": {
  7647. "Symfony\\Component\\Console\\": ""
  7648. },
  7649. "exclude-from-classmap": [
  7650. "/Tests/"
  7651. ]
  7652. },
  7653. "notification-url": "https://packagist.org/downloads/",
  7654. "license": [
  7655. "MIT"
  7656. ],
  7657. "authors": [
  7658. {
  7659. "name": "Fabien Potencier",
  7660. "email": "fabien@symfony.com"
  7661. },
  7662. {
  7663. "name": "Symfony Community",
  7664. "homepage": "https://symfony.com/contributors"
  7665. }
  7666. ],
  7667. "description": "Eases the creation of beautiful and testable command line interfaces",
  7668. "homepage": "https://symfony.com",
  7669. "keywords": [
  7670. "cli",
  7671. "command line",
  7672. "console",
  7673. "terminal"
  7674. ],
  7675. "support": {
  7676. "source": "https://github.com/symfony/console/tree/v5.4.9"
  7677. },
  7678. "funding": [
  7679. {
  7680. "url": "https://symfony.com/sponsor",
  7681. "type": "custom"
  7682. },
  7683. {
  7684. "url": "https://github.com/fabpot",
  7685. "type": "github"
  7686. },
  7687. {
  7688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7689. "type": "tidelift"
  7690. }
  7691. ],
  7692. "time": "2022-05-18T06:17:34+00:00"
  7693. },
  7694. {
  7695. "name": "symfony/css-selector",
  7696. "version": "v6.0.3",
  7697. "source": {
  7698. "type": "git",
  7699. "url": "https://github.com/symfony/css-selector.git",
  7700. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a"
  7701. },
  7702. "dist": {
  7703. "type": "zip",
  7704. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1955d595c12c111629cc814d3f2a2ff13580508a",
  7705. "reference": "1955d595c12c111629cc814d3f2a2ff13580508a",
  7706. "shasum": "",
  7707. "mirrors": [
  7708. {
  7709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7710. "preferred": true
  7711. }
  7712. ]
  7713. },
  7714. "require": {
  7715. "php": ">=8.0.2"
  7716. },
  7717. "type": "library",
  7718. "autoload": {
  7719. "psr-4": {
  7720. "Symfony\\Component\\CssSelector\\": ""
  7721. },
  7722. "exclude-from-classmap": [
  7723. "/Tests/"
  7724. ]
  7725. },
  7726. "notification-url": "https://packagist.org/downloads/",
  7727. "license": [
  7728. "MIT"
  7729. ],
  7730. "authors": [
  7731. {
  7732. "name": "Fabien Potencier",
  7733. "email": "fabien@symfony.com"
  7734. },
  7735. {
  7736. "name": "Jean-François Simon",
  7737. "email": "jeanfrancois.simon@sensiolabs.com"
  7738. },
  7739. {
  7740. "name": "Symfony Community",
  7741. "homepage": "https://symfony.com/contributors"
  7742. }
  7743. ],
  7744. "description": "Converts CSS selectors to XPath expressions",
  7745. "homepage": "https://symfony.com",
  7746. "support": {
  7747. "source": "https://github.com/symfony/css-selector/tree/v6.0.3"
  7748. },
  7749. "funding": [
  7750. {
  7751. "url": "https://symfony.com/sponsor",
  7752. "type": "custom"
  7753. },
  7754. {
  7755. "url": "https://github.com/fabpot",
  7756. "type": "github"
  7757. },
  7758. {
  7759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7760. "type": "tidelift"
  7761. }
  7762. ],
  7763. "time": "2022-01-02T09:55:41+00:00"
  7764. },
  7765. {
  7766. "name": "symfony/deprecation-contracts",
  7767. "version": "v3.0.1",
  7768. "source": {
  7769. "type": "git",
  7770. "url": "https://github.com/symfony/deprecation-contracts.git",
  7771. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7772. },
  7773. "dist": {
  7774. "type": "zip",
  7775. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7776. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7777. "shasum": "",
  7778. "mirrors": [
  7779. {
  7780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7781. "preferred": true
  7782. }
  7783. ]
  7784. },
  7785. "require": {
  7786. "php": ">=8.0.2"
  7787. },
  7788. "type": "library",
  7789. "extra": {
  7790. "branch-alias": {
  7791. "dev-main": "3.0-dev"
  7792. },
  7793. "thanks": {
  7794. "name": "symfony/contracts",
  7795. "url": "https://github.com/symfony/contracts"
  7796. }
  7797. },
  7798. "autoload": {
  7799. "files": [
  7800. "function.php"
  7801. ]
  7802. },
  7803. "notification-url": "https://packagist.org/downloads/",
  7804. "license": [
  7805. "MIT"
  7806. ],
  7807. "authors": [
  7808. {
  7809. "name": "Nicolas Grekas",
  7810. "email": "p@tchwork.com"
  7811. },
  7812. {
  7813. "name": "Symfony Community",
  7814. "homepage": "https://symfony.com/contributors"
  7815. }
  7816. ],
  7817. "description": "A generic function and convention to trigger deprecation notices",
  7818. "homepage": "https://symfony.com",
  7819. "support": {
  7820. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.1"
  7821. },
  7822. "funding": [
  7823. {
  7824. "url": "https://symfony.com/sponsor",
  7825. "type": "custom"
  7826. },
  7827. {
  7828. "url": "https://github.com/fabpot",
  7829. "type": "github"
  7830. },
  7831. {
  7832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7833. "type": "tidelift"
  7834. }
  7835. ],
  7836. "time": "2022-01-02T09:55:41+00:00"
  7837. },
  7838. {
  7839. "name": "symfony/error-handler",
  7840. "version": "v5.4.9",
  7841. "source": {
  7842. "type": "git",
  7843. "url": "https://github.com/symfony/error-handler.git",
  7844. "reference": "c116cda1f51c678782768dce89a45f13c949455d"
  7845. },
  7846. "dist": {
  7847. "type": "zip",
  7848. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c116cda1f51c678782768dce89a45f13c949455d",
  7849. "reference": "c116cda1f51c678782768dce89a45f13c949455d",
  7850. "shasum": "",
  7851. "mirrors": [
  7852. {
  7853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7854. "preferred": true
  7855. }
  7856. ]
  7857. },
  7858. "require": {
  7859. "php": ">=7.2.5",
  7860. "psr/log": "^1|^2|^3",
  7861. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7862. },
  7863. "require-dev": {
  7864. "symfony/deprecation-contracts": "^2.1|^3",
  7865. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7866. "symfony/serializer": "^4.4|^5.0|^6.0"
  7867. },
  7868. "bin": [
  7869. "Resources/bin/patch-type-declarations"
  7870. ],
  7871. "type": "library",
  7872. "autoload": {
  7873. "psr-4": {
  7874. "Symfony\\Component\\ErrorHandler\\": ""
  7875. },
  7876. "exclude-from-classmap": [
  7877. "/Tests/"
  7878. ]
  7879. },
  7880. "notification-url": "https://packagist.org/downloads/",
  7881. "license": [
  7882. "MIT"
  7883. ],
  7884. "authors": [
  7885. {
  7886. "name": "Fabien Potencier",
  7887. "email": "fabien@symfony.com"
  7888. },
  7889. {
  7890. "name": "Symfony Community",
  7891. "homepage": "https://symfony.com/contributors"
  7892. }
  7893. ],
  7894. "description": "Provides tools to manage errors and ease debugging PHP code",
  7895. "homepage": "https://symfony.com",
  7896. "support": {
  7897. "source": "https://github.com/symfony/error-handler/tree/v5.4.9"
  7898. },
  7899. "funding": [
  7900. {
  7901. "url": "https://symfony.com/sponsor",
  7902. "type": "custom"
  7903. },
  7904. {
  7905. "url": "https://github.com/fabpot",
  7906. "type": "github"
  7907. },
  7908. {
  7909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7910. "type": "tidelift"
  7911. }
  7912. ],
  7913. "time": "2022-05-21T13:57:48+00:00"
  7914. },
  7915. {
  7916. "name": "symfony/event-dispatcher",
  7917. "version": "v5.4.9",
  7918. "source": {
  7919. "type": "git",
  7920. "url": "https://github.com/symfony/event-dispatcher.git",
  7921. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  7922. },
  7923. "dist": {
  7924. "type": "zip",
  7925. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7926. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  7927. "shasum": "",
  7928. "mirrors": [
  7929. {
  7930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7931. "preferred": true
  7932. }
  7933. ]
  7934. },
  7935. "require": {
  7936. "php": ">=7.2.5",
  7937. "symfony/deprecation-contracts": "^2.1|^3",
  7938. "symfony/event-dispatcher-contracts": "^2|^3",
  7939. "symfony/polyfill-php80": "^1.16"
  7940. },
  7941. "conflict": {
  7942. "symfony/dependency-injection": "<4.4"
  7943. },
  7944. "provide": {
  7945. "psr/event-dispatcher-implementation": "1.0",
  7946. "symfony/event-dispatcher-implementation": "2.0"
  7947. },
  7948. "require-dev": {
  7949. "psr/log": "^1|^2|^3",
  7950. "symfony/config": "^4.4|^5.0|^6.0",
  7951. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7952. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7953. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7954. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7955. "symfony/service-contracts": "^1.1|^2|^3",
  7956. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  7957. },
  7958. "suggest": {
  7959. "symfony/dependency-injection": "",
  7960. "symfony/http-kernel": ""
  7961. },
  7962. "type": "library",
  7963. "autoload": {
  7964. "psr-4": {
  7965. "Symfony\\Component\\EventDispatcher\\": ""
  7966. },
  7967. "exclude-from-classmap": [
  7968. "/Tests/"
  7969. ]
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Fabien Potencier",
  7978. "email": "fabien@symfony.com"
  7979. },
  7980. {
  7981. "name": "Symfony Community",
  7982. "homepage": "https://symfony.com/contributors"
  7983. }
  7984. ],
  7985. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7986. "homepage": "https://symfony.com",
  7987. "support": {
  7988. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  7989. },
  7990. "funding": [
  7991. {
  7992. "url": "https://symfony.com/sponsor",
  7993. "type": "custom"
  7994. },
  7995. {
  7996. "url": "https://github.com/fabpot",
  7997. "type": "github"
  7998. },
  7999. {
  8000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8001. "type": "tidelift"
  8002. }
  8003. ],
  8004. "time": "2022-05-05T16:45:39+00:00"
  8005. },
  8006. {
  8007. "name": "symfony/event-dispatcher-contracts",
  8008. "version": "v3.0.1",
  8009. "source": {
  8010. "type": "git",
  8011. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8012. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  8013. },
  8014. "dist": {
  8015. "type": "zip",
  8016. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  8017. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  8018. "shasum": "",
  8019. "mirrors": [
  8020. {
  8021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8022. "preferred": true
  8023. }
  8024. ]
  8025. },
  8026. "require": {
  8027. "php": ">=8.0.2",
  8028. "psr/event-dispatcher": "^1"
  8029. },
  8030. "suggest": {
  8031. "symfony/event-dispatcher-implementation": ""
  8032. },
  8033. "type": "library",
  8034. "extra": {
  8035. "branch-alias": {
  8036. "dev-main": "3.0-dev"
  8037. },
  8038. "thanks": {
  8039. "name": "symfony/contracts",
  8040. "url": "https://github.com/symfony/contracts"
  8041. }
  8042. },
  8043. "autoload": {
  8044. "psr-4": {
  8045. "Symfony\\Contracts\\EventDispatcher\\": ""
  8046. }
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "MIT"
  8051. ],
  8052. "authors": [
  8053. {
  8054. "name": "Nicolas Grekas",
  8055. "email": "p@tchwork.com"
  8056. },
  8057. {
  8058. "name": "Symfony Community",
  8059. "homepage": "https://symfony.com/contributors"
  8060. }
  8061. ],
  8062. "description": "Generic abstractions related to dispatching event",
  8063. "homepage": "https://symfony.com",
  8064. "keywords": [
  8065. "abstractions",
  8066. "contracts",
  8067. "decoupling",
  8068. "interfaces",
  8069. "interoperability",
  8070. "standards"
  8071. ],
  8072. "support": {
  8073. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.1"
  8074. },
  8075. "funding": [
  8076. {
  8077. "url": "https://symfony.com/sponsor",
  8078. "type": "custom"
  8079. },
  8080. {
  8081. "url": "https://github.com/fabpot",
  8082. "type": "github"
  8083. },
  8084. {
  8085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8086. "type": "tidelift"
  8087. }
  8088. ],
  8089. "time": "2022-01-02T09:55:41+00:00"
  8090. },
  8091. {
  8092. "name": "symfony/finder",
  8093. "version": "v5.4.8",
  8094. "source": {
  8095. "type": "git",
  8096. "url": "https://github.com/symfony/finder.git",
  8097. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
  8098. },
  8099. "dist": {
  8100. "type": "zip",
  8101. "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
  8102. "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
  8103. "shasum": "",
  8104. "mirrors": [
  8105. {
  8106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8107. "preferred": true
  8108. }
  8109. ]
  8110. },
  8111. "require": {
  8112. "php": ">=7.2.5",
  8113. "symfony/deprecation-contracts": "^2.1|^3",
  8114. "symfony/polyfill-php80": "^1.16"
  8115. },
  8116. "type": "library",
  8117. "autoload": {
  8118. "psr-4": {
  8119. "Symfony\\Component\\Finder\\": ""
  8120. },
  8121. "exclude-from-classmap": [
  8122. "/Tests/"
  8123. ]
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Fabien Potencier",
  8132. "email": "fabien@symfony.com"
  8133. },
  8134. {
  8135. "name": "Symfony Community",
  8136. "homepage": "https://symfony.com/contributors"
  8137. }
  8138. ],
  8139. "description": "Finds files and directories via an intuitive fluent interface",
  8140. "homepage": "https://symfony.com",
  8141. "support": {
  8142. "source": "https://github.com/symfony/finder/tree/v5.4.8"
  8143. },
  8144. "funding": [
  8145. {
  8146. "url": "https://symfony.com/sponsor",
  8147. "type": "custom"
  8148. },
  8149. {
  8150. "url": "https://github.com/fabpot",
  8151. "type": "github"
  8152. },
  8153. {
  8154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8155. "type": "tidelift"
  8156. }
  8157. ],
  8158. "time": "2022-04-15T08:07:45+00:00"
  8159. },
  8160. {
  8161. "name": "symfony/http-foundation",
  8162. "version": "v5.4.9",
  8163. "source": {
  8164. "type": "git",
  8165. "url": "https://github.com/symfony/http-foundation.git",
  8166. "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522"
  8167. },
  8168. "dist": {
  8169. "type": "zip",
  8170. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6b0d0e4aca38d57605dcd11e2416994b38774522",
  8171. "reference": "6b0d0e4aca38d57605dcd11e2416994b38774522",
  8172. "shasum": "",
  8173. "mirrors": [
  8174. {
  8175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8176. "preferred": true
  8177. }
  8178. ]
  8179. },
  8180. "require": {
  8181. "php": ">=7.2.5",
  8182. "symfony/deprecation-contracts": "^2.1|^3",
  8183. "symfony/polyfill-mbstring": "~1.1",
  8184. "symfony/polyfill-php80": "^1.16"
  8185. },
  8186. "require-dev": {
  8187. "predis/predis": "~1.0",
  8188. "symfony/cache": "^4.4|^5.0|^6.0",
  8189. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8190. "symfony/mime": "^4.4|^5.0|^6.0"
  8191. },
  8192. "suggest": {
  8193. "symfony/mime": "To use the file extension guesser"
  8194. },
  8195. "type": "library",
  8196. "autoload": {
  8197. "psr-4": {
  8198. "Symfony\\Component\\HttpFoundation\\": ""
  8199. },
  8200. "exclude-from-classmap": [
  8201. "/Tests/"
  8202. ]
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "MIT"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "Fabien Potencier",
  8211. "email": "fabien@symfony.com"
  8212. },
  8213. {
  8214. "name": "Symfony Community",
  8215. "homepage": "https://symfony.com/contributors"
  8216. }
  8217. ],
  8218. "description": "Defines an object-oriented layer for the HTTP specification",
  8219. "homepage": "https://symfony.com",
  8220. "support": {
  8221. "source": "https://github.com/symfony/http-foundation/tree/v5.4.9"
  8222. },
  8223. "funding": [
  8224. {
  8225. "url": "https://symfony.com/sponsor",
  8226. "type": "custom"
  8227. },
  8228. {
  8229. "url": "https://github.com/fabpot",
  8230. "type": "github"
  8231. },
  8232. {
  8233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8234. "type": "tidelift"
  8235. }
  8236. ],
  8237. "time": "2022-05-17T15:07:29+00:00"
  8238. },
  8239. {
  8240. "name": "symfony/http-kernel",
  8241. "version": "v5.4.9",
  8242. "source": {
  8243. "type": "git",
  8244. "url": "https://github.com/symfony/http-kernel.git",
  8245. "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8"
  8246. },
  8247. "dist": {
  8248. "type": "zip",
  8249. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
  8250. "reference": "34b121ad3dc761f35fe1346d2f15618f8cbf77f8",
  8251. "shasum": "",
  8252. "mirrors": [
  8253. {
  8254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8255. "preferred": true
  8256. }
  8257. ]
  8258. },
  8259. "require": {
  8260. "php": ">=7.2.5",
  8261. "psr/log": "^1|^2",
  8262. "symfony/deprecation-contracts": "^2.1|^3",
  8263. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8264. "symfony/event-dispatcher": "^5.0|^6.0",
  8265. "symfony/http-foundation": "^5.3.7|^6.0",
  8266. "symfony/polyfill-ctype": "^1.8",
  8267. "symfony/polyfill-php73": "^1.9",
  8268. "symfony/polyfill-php80": "^1.16"
  8269. },
  8270. "conflict": {
  8271. "symfony/browser-kit": "<5.4",
  8272. "symfony/cache": "<5.0",
  8273. "symfony/config": "<5.0",
  8274. "symfony/console": "<4.4",
  8275. "symfony/dependency-injection": "<5.3",
  8276. "symfony/doctrine-bridge": "<5.0",
  8277. "symfony/form": "<5.0",
  8278. "symfony/http-client": "<5.0",
  8279. "symfony/mailer": "<5.0",
  8280. "symfony/messenger": "<5.0",
  8281. "symfony/translation": "<5.0",
  8282. "symfony/twig-bridge": "<5.0",
  8283. "symfony/validator": "<5.0",
  8284. "twig/twig": "<2.13"
  8285. },
  8286. "provide": {
  8287. "psr/log-implementation": "1.0|2.0"
  8288. },
  8289. "require-dev": {
  8290. "psr/cache": "^1.0|^2.0|^3.0",
  8291. "symfony/browser-kit": "^5.4|^6.0",
  8292. "symfony/config": "^5.0|^6.0",
  8293. "symfony/console": "^4.4|^5.0|^6.0",
  8294. "symfony/css-selector": "^4.4|^5.0|^6.0",
  8295. "symfony/dependency-injection": "^5.3|^6.0",
  8296. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  8297. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8298. "symfony/finder": "^4.4|^5.0|^6.0",
  8299. "symfony/http-client-contracts": "^1.1|^2|^3",
  8300. "symfony/process": "^4.4|^5.0|^6.0",
  8301. "symfony/routing": "^4.4|^5.0|^6.0",
  8302. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  8303. "symfony/translation": "^4.4|^5.0|^6.0",
  8304. "symfony/translation-contracts": "^1.1|^2|^3",
  8305. "twig/twig": "^2.13|^3.0.4"
  8306. },
  8307. "suggest": {
  8308. "symfony/browser-kit": "",
  8309. "symfony/config": "",
  8310. "symfony/console": "",
  8311. "symfony/dependency-injection": ""
  8312. },
  8313. "type": "library",
  8314. "autoload": {
  8315. "psr-4": {
  8316. "Symfony\\Component\\HttpKernel\\": ""
  8317. },
  8318. "exclude-from-classmap": [
  8319. "/Tests/"
  8320. ]
  8321. },
  8322. "notification-url": "https://packagist.org/downloads/",
  8323. "license": [
  8324. "MIT"
  8325. ],
  8326. "authors": [
  8327. {
  8328. "name": "Fabien Potencier",
  8329. "email": "fabien@symfony.com"
  8330. },
  8331. {
  8332. "name": "Symfony Community",
  8333. "homepage": "https://symfony.com/contributors"
  8334. }
  8335. ],
  8336. "description": "Provides a structured process for converting a Request into a Response",
  8337. "homepage": "https://symfony.com",
  8338. "support": {
  8339. "source": "https://github.com/symfony/http-kernel/tree/v5.4.9"
  8340. },
  8341. "funding": [
  8342. {
  8343. "url": "https://symfony.com/sponsor",
  8344. "type": "custom"
  8345. },
  8346. {
  8347. "url": "https://github.com/fabpot",
  8348. "type": "github"
  8349. },
  8350. {
  8351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8352. "type": "tidelift"
  8353. }
  8354. ],
  8355. "time": "2022-05-27T07:09:08+00:00"
  8356. },
  8357. {
  8358. "name": "symfony/mime",
  8359. "version": "v5.4.9",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/symfony/mime.git",
  8363. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/symfony/mime/zipball/2b3802a24e48d0cfccf885173d2aac91e73df92e",
  8368. "reference": "2b3802a24e48d0cfccf885173d2aac91e73df92e",
  8369. "shasum": "",
  8370. "mirrors": [
  8371. {
  8372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8373. "preferred": true
  8374. }
  8375. ]
  8376. },
  8377. "require": {
  8378. "php": ">=7.2.5",
  8379. "symfony/deprecation-contracts": "^2.1|^3",
  8380. "symfony/polyfill-intl-idn": "^1.10",
  8381. "symfony/polyfill-mbstring": "^1.0",
  8382. "symfony/polyfill-php80": "^1.16"
  8383. },
  8384. "conflict": {
  8385. "egulias/email-validator": "~3.0.0",
  8386. "phpdocumentor/reflection-docblock": "<3.2.2",
  8387. "phpdocumentor/type-resolver": "<1.4.0",
  8388. "symfony/mailer": "<4.4"
  8389. },
  8390. "require-dev": {
  8391. "egulias/email-validator": "^2.1.10|^3.1",
  8392. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8393. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8394. "symfony/property-access": "^4.4|^5.1|^6.0",
  8395. "symfony/property-info": "^4.4|^5.1|^6.0",
  8396. "symfony/serializer": "^5.2|^6.0"
  8397. },
  8398. "type": "library",
  8399. "autoload": {
  8400. "psr-4": {
  8401. "Symfony\\Component\\Mime\\": ""
  8402. },
  8403. "exclude-from-classmap": [
  8404. "/Tests/"
  8405. ]
  8406. },
  8407. "notification-url": "https://packagist.org/downloads/",
  8408. "license": [
  8409. "MIT"
  8410. ],
  8411. "authors": [
  8412. {
  8413. "name": "Fabien Potencier",
  8414. "email": "fabien@symfony.com"
  8415. },
  8416. {
  8417. "name": "Symfony Community",
  8418. "homepage": "https://symfony.com/contributors"
  8419. }
  8420. ],
  8421. "description": "Allows manipulating MIME messages",
  8422. "homepage": "https://symfony.com",
  8423. "keywords": [
  8424. "mime",
  8425. "mime-type"
  8426. ],
  8427. "support": {
  8428. "source": "https://github.com/symfony/mime/tree/v5.4.9"
  8429. },
  8430. "funding": [
  8431. {
  8432. "url": "https://symfony.com/sponsor",
  8433. "type": "custom"
  8434. },
  8435. {
  8436. "url": "https://github.com/fabpot",
  8437. "type": "github"
  8438. },
  8439. {
  8440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8441. "type": "tidelift"
  8442. }
  8443. ],
  8444. "time": "2022-05-21T10:24:18+00:00"
  8445. },
  8446. {
  8447. "name": "symfony/polyfill-ctype",
  8448. "version": "v1.26.0",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/symfony/polyfill-ctype.git",
  8452. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8457. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  8458. "shasum": "",
  8459. "mirrors": [
  8460. {
  8461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8462. "preferred": true
  8463. }
  8464. ]
  8465. },
  8466. "require": {
  8467. "php": ">=7.1"
  8468. },
  8469. "provide": {
  8470. "ext-ctype": "*"
  8471. },
  8472. "suggest": {
  8473. "ext-ctype": "For best performance"
  8474. },
  8475. "type": "library",
  8476. "extra": {
  8477. "branch-alias": {
  8478. "dev-main": "1.26-dev"
  8479. },
  8480. "thanks": {
  8481. "name": "symfony/polyfill",
  8482. "url": "https://github.com/symfony/polyfill"
  8483. }
  8484. },
  8485. "autoload": {
  8486. "files": [
  8487. "bootstrap.php"
  8488. ],
  8489. "psr-4": {
  8490. "Symfony\\Polyfill\\Ctype\\": ""
  8491. }
  8492. },
  8493. "notification-url": "https://packagist.org/downloads/",
  8494. "license": [
  8495. "MIT"
  8496. ],
  8497. "authors": [
  8498. {
  8499. "name": "Gert de Pagter",
  8500. "email": "BackEndTea@gmail.com"
  8501. },
  8502. {
  8503. "name": "Symfony Community",
  8504. "homepage": "https://symfony.com/contributors"
  8505. }
  8506. ],
  8507. "description": "Symfony polyfill for ctype functions",
  8508. "homepage": "https://symfony.com",
  8509. "keywords": [
  8510. "compatibility",
  8511. "ctype",
  8512. "polyfill",
  8513. "portable"
  8514. ],
  8515. "support": {
  8516. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  8517. },
  8518. "funding": [
  8519. {
  8520. "url": "https://symfony.com/sponsor",
  8521. "type": "custom"
  8522. },
  8523. {
  8524. "url": "https://github.com/fabpot",
  8525. "type": "github"
  8526. },
  8527. {
  8528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8529. "type": "tidelift"
  8530. }
  8531. ],
  8532. "time": "2022-05-24T11:49:31+00:00"
  8533. },
  8534. {
  8535. "name": "symfony/polyfill-iconv",
  8536. "version": "v1.26.0",
  8537. "source": {
  8538. "type": "git",
  8539. "url": "https://github.com/symfony/polyfill-iconv.git",
  8540. "reference": "143f1881e655bebca1312722af8068de235ae5dc"
  8541. },
  8542. "dist": {
  8543. "type": "zip",
  8544. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/143f1881e655bebca1312722af8068de235ae5dc",
  8545. "reference": "143f1881e655bebca1312722af8068de235ae5dc",
  8546. "shasum": "",
  8547. "mirrors": [
  8548. {
  8549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8550. "preferred": true
  8551. }
  8552. ]
  8553. },
  8554. "require": {
  8555. "php": ">=7.1"
  8556. },
  8557. "provide": {
  8558. "ext-iconv": "*"
  8559. },
  8560. "suggest": {
  8561. "ext-iconv": "For best performance"
  8562. },
  8563. "type": "library",
  8564. "extra": {
  8565. "branch-alias": {
  8566. "dev-main": "1.26-dev"
  8567. },
  8568. "thanks": {
  8569. "name": "symfony/polyfill",
  8570. "url": "https://github.com/symfony/polyfill"
  8571. }
  8572. },
  8573. "autoload": {
  8574. "files": [
  8575. "bootstrap.php"
  8576. ],
  8577. "psr-4": {
  8578. "Symfony\\Polyfill\\Iconv\\": ""
  8579. }
  8580. },
  8581. "notification-url": "https://packagist.org/downloads/",
  8582. "license": [
  8583. "MIT"
  8584. ],
  8585. "authors": [
  8586. {
  8587. "name": "Nicolas Grekas",
  8588. "email": "p@tchwork.com"
  8589. },
  8590. {
  8591. "name": "Symfony Community",
  8592. "homepage": "https://symfony.com/contributors"
  8593. }
  8594. ],
  8595. "description": "Symfony polyfill for the Iconv extension",
  8596. "homepage": "https://symfony.com",
  8597. "keywords": [
  8598. "compatibility",
  8599. "iconv",
  8600. "polyfill",
  8601. "portable",
  8602. "shim"
  8603. ],
  8604. "support": {
  8605. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.26.0"
  8606. },
  8607. "funding": [
  8608. {
  8609. "url": "https://symfony.com/sponsor",
  8610. "type": "custom"
  8611. },
  8612. {
  8613. "url": "https://github.com/fabpot",
  8614. "type": "github"
  8615. },
  8616. {
  8617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8618. "type": "tidelift"
  8619. }
  8620. ],
  8621. "time": "2022-05-24T11:49:31+00:00"
  8622. },
  8623. {
  8624. "name": "symfony/polyfill-intl-grapheme",
  8625. "version": "v1.25.0",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8629. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  8634. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  8635. "shasum": "",
  8636. "mirrors": [
  8637. {
  8638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8639. "preferred": true
  8640. }
  8641. ]
  8642. },
  8643. "require": {
  8644. "php": ">=7.1"
  8645. },
  8646. "suggest": {
  8647. "ext-intl": "For best performance"
  8648. },
  8649. "type": "library",
  8650. "extra": {
  8651. "branch-alias": {
  8652. "dev-main": "1.23-dev"
  8653. },
  8654. "thanks": {
  8655. "name": "symfony/polyfill",
  8656. "url": "https://github.com/symfony/polyfill"
  8657. }
  8658. },
  8659. "autoload": {
  8660. "files": [
  8661. "bootstrap.php"
  8662. ],
  8663. "psr-4": {
  8664. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8665. }
  8666. },
  8667. "notification-url": "https://packagist.org/downloads/",
  8668. "license": [
  8669. "MIT"
  8670. ],
  8671. "authors": [
  8672. {
  8673. "name": "Nicolas Grekas",
  8674. "email": "p@tchwork.com"
  8675. },
  8676. {
  8677. "name": "Symfony Community",
  8678. "homepage": "https://symfony.com/contributors"
  8679. }
  8680. ],
  8681. "description": "Symfony polyfill for intl's grapheme_* functions",
  8682. "homepage": "https://symfony.com",
  8683. "keywords": [
  8684. "compatibility",
  8685. "grapheme",
  8686. "intl",
  8687. "polyfill",
  8688. "portable",
  8689. "shim"
  8690. ],
  8691. "support": {
  8692. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  8693. },
  8694. "funding": [
  8695. {
  8696. "url": "https://symfony.com/sponsor",
  8697. "type": "custom"
  8698. },
  8699. {
  8700. "url": "https://github.com/fabpot",
  8701. "type": "github"
  8702. },
  8703. {
  8704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8705. "type": "tidelift"
  8706. }
  8707. ],
  8708. "time": "2021-11-23T21:10:46+00:00"
  8709. },
  8710. {
  8711. "name": "symfony/polyfill-intl-idn",
  8712. "version": "v1.25.0",
  8713. "source": {
  8714. "type": "git",
  8715. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8716. "reference": "749045c69efb97c70d25d7463abba812e91f3a44"
  8717. },
  8718. "dist": {
  8719. "type": "zip",
  8720. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44",
  8721. "reference": "749045c69efb97c70d25d7463abba812e91f3a44",
  8722. "shasum": "",
  8723. "mirrors": [
  8724. {
  8725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8726. "preferred": true
  8727. }
  8728. ]
  8729. },
  8730. "require": {
  8731. "php": ">=7.1",
  8732. "symfony/polyfill-intl-normalizer": "^1.10",
  8733. "symfony/polyfill-php72": "^1.10"
  8734. },
  8735. "suggest": {
  8736. "ext-intl": "For best performance"
  8737. },
  8738. "type": "library",
  8739. "extra": {
  8740. "branch-alias": {
  8741. "dev-main": "1.23-dev"
  8742. },
  8743. "thanks": {
  8744. "name": "symfony/polyfill",
  8745. "url": "https://github.com/symfony/polyfill"
  8746. }
  8747. },
  8748. "autoload": {
  8749. "files": [
  8750. "bootstrap.php"
  8751. ],
  8752. "psr-4": {
  8753. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8754. }
  8755. },
  8756. "notification-url": "https://packagist.org/downloads/",
  8757. "license": [
  8758. "MIT"
  8759. ],
  8760. "authors": [
  8761. {
  8762. "name": "Laurent Bassin",
  8763. "email": "laurent@bassin.info"
  8764. },
  8765. {
  8766. "name": "Trevor Rowbotham",
  8767. "email": "trevor.rowbotham@pm.me"
  8768. },
  8769. {
  8770. "name": "Symfony Community",
  8771. "homepage": "https://symfony.com/contributors"
  8772. }
  8773. ],
  8774. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8775. "homepage": "https://symfony.com",
  8776. "keywords": [
  8777. "compatibility",
  8778. "idn",
  8779. "intl",
  8780. "polyfill",
  8781. "portable",
  8782. "shim"
  8783. ],
  8784. "support": {
  8785. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0"
  8786. },
  8787. "funding": [
  8788. {
  8789. "url": "https://symfony.com/sponsor",
  8790. "type": "custom"
  8791. },
  8792. {
  8793. "url": "https://github.com/fabpot",
  8794. "type": "github"
  8795. },
  8796. {
  8797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8798. "type": "tidelift"
  8799. }
  8800. ],
  8801. "time": "2021-09-14T14:02:44+00:00"
  8802. },
  8803. {
  8804. "name": "symfony/polyfill-intl-normalizer",
  8805. "version": "v1.26.0",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8809. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  8814. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  8815. "shasum": "",
  8816. "mirrors": [
  8817. {
  8818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8819. "preferred": true
  8820. }
  8821. ]
  8822. },
  8823. "require": {
  8824. "php": ">=7.1"
  8825. },
  8826. "suggest": {
  8827. "ext-intl": "For best performance"
  8828. },
  8829. "type": "library",
  8830. "extra": {
  8831. "branch-alias": {
  8832. "dev-main": "1.26-dev"
  8833. },
  8834. "thanks": {
  8835. "name": "symfony/polyfill",
  8836. "url": "https://github.com/symfony/polyfill"
  8837. }
  8838. },
  8839. "autoload": {
  8840. "files": [
  8841. "bootstrap.php"
  8842. ],
  8843. "psr-4": {
  8844. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8845. },
  8846. "classmap": [
  8847. "Resources/stubs"
  8848. ]
  8849. },
  8850. "notification-url": "https://packagist.org/downloads/",
  8851. "license": [
  8852. "MIT"
  8853. ],
  8854. "authors": [
  8855. {
  8856. "name": "Nicolas Grekas",
  8857. "email": "p@tchwork.com"
  8858. },
  8859. {
  8860. "name": "Symfony Community",
  8861. "homepage": "https://symfony.com/contributors"
  8862. }
  8863. ],
  8864. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8865. "homepage": "https://symfony.com",
  8866. "keywords": [
  8867. "compatibility",
  8868. "intl",
  8869. "normalizer",
  8870. "polyfill",
  8871. "portable",
  8872. "shim"
  8873. ],
  8874. "support": {
  8875. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  8876. },
  8877. "funding": [
  8878. {
  8879. "url": "https://symfony.com/sponsor",
  8880. "type": "custom"
  8881. },
  8882. {
  8883. "url": "https://github.com/fabpot",
  8884. "type": "github"
  8885. },
  8886. {
  8887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8888. "type": "tidelift"
  8889. }
  8890. ],
  8891. "time": "2022-05-24T11:49:31+00:00"
  8892. },
  8893. {
  8894. "name": "symfony/polyfill-mbstring",
  8895. "version": "v1.26.0",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8899. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8904. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  8905. "shasum": "",
  8906. "mirrors": [
  8907. {
  8908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8909. "preferred": true
  8910. }
  8911. ]
  8912. },
  8913. "require": {
  8914. "php": ">=7.1"
  8915. },
  8916. "provide": {
  8917. "ext-mbstring": "*"
  8918. },
  8919. "suggest": {
  8920. "ext-mbstring": "For best performance"
  8921. },
  8922. "type": "library",
  8923. "extra": {
  8924. "branch-alias": {
  8925. "dev-main": "1.26-dev"
  8926. },
  8927. "thanks": {
  8928. "name": "symfony/polyfill",
  8929. "url": "https://github.com/symfony/polyfill"
  8930. }
  8931. },
  8932. "autoload": {
  8933. "files": [
  8934. "bootstrap.php"
  8935. ],
  8936. "psr-4": {
  8937. "Symfony\\Polyfill\\Mbstring\\": ""
  8938. }
  8939. },
  8940. "notification-url": "https://packagist.org/downloads/",
  8941. "license": [
  8942. "MIT"
  8943. ],
  8944. "authors": [
  8945. {
  8946. "name": "Nicolas Grekas",
  8947. "email": "p@tchwork.com"
  8948. },
  8949. {
  8950. "name": "Symfony Community",
  8951. "homepage": "https://symfony.com/contributors"
  8952. }
  8953. ],
  8954. "description": "Symfony polyfill for the Mbstring extension",
  8955. "homepage": "https://symfony.com",
  8956. "keywords": [
  8957. "compatibility",
  8958. "mbstring",
  8959. "polyfill",
  8960. "portable",
  8961. "shim"
  8962. ],
  8963. "support": {
  8964. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  8965. },
  8966. "funding": [
  8967. {
  8968. "url": "https://symfony.com/sponsor",
  8969. "type": "custom"
  8970. },
  8971. {
  8972. "url": "https://github.com/fabpot",
  8973. "type": "github"
  8974. },
  8975. {
  8976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8977. "type": "tidelift"
  8978. }
  8979. ],
  8980. "time": "2022-05-24T11:49:31+00:00"
  8981. },
  8982. {
  8983. "name": "symfony/polyfill-php56",
  8984. "version": "v1.20.0",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/symfony/polyfill-php56.git",
  8988. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8993. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  8994. "shasum": "",
  8995. "mirrors": [
  8996. {
  8997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8998. "preferred": true
  8999. }
  9000. ]
  9001. },
  9002. "require": {
  9003. "php": ">=7.1"
  9004. },
  9005. "type": "metapackage",
  9006. "extra": {
  9007. "branch-alias": {
  9008. "dev-main": "1.20-dev"
  9009. },
  9010. "thanks": {
  9011. "name": "symfony/polyfill",
  9012. "url": "https://github.com/symfony/polyfill"
  9013. }
  9014. },
  9015. "notification-url": "https://packagist.org/downloads/",
  9016. "license": [
  9017. "MIT"
  9018. ],
  9019. "authors": [
  9020. {
  9021. "name": "Nicolas Grekas",
  9022. "email": "p@tchwork.com"
  9023. },
  9024. {
  9025. "name": "Symfony Community",
  9026. "homepage": "https://symfony.com/contributors"
  9027. }
  9028. ],
  9029. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  9030. "homepage": "https://symfony.com",
  9031. "keywords": [
  9032. "compatibility",
  9033. "polyfill",
  9034. "portable",
  9035. "shim"
  9036. ],
  9037. "support": {
  9038. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  9039. },
  9040. "funding": [
  9041. {
  9042. "url": "https://symfony.com/sponsor",
  9043. "type": "custom"
  9044. },
  9045. {
  9046. "url": "https://github.com/fabpot",
  9047. "type": "github"
  9048. },
  9049. {
  9050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9051. "type": "tidelift"
  9052. }
  9053. ],
  9054. "time": "2020-10-23T14:02:19+00:00"
  9055. },
  9056. {
  9057. "name": "symfony/polyfill-php72",
  9058. "version": "v1.26.0",
  9059. "source": {
  9060. "type": "git",
  9061. "url": "https://github.com/symfony/polyfill-php72.git",
  9062. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  9063. },
  9064. "dist": {
  9065. "type": "zip",
  9066. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  9067. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  9068. "shasum": "",
  9069. "mirrors": [
  9070. {
  9071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9072. "preferred": true
  9073. }
  9074. ]
  9075. },
  9076. "require": {
  9077. "php": ">=7.1"
  9078. },
  9079. "type": "library",
  9080. "extra": {
  9081. "branch-alias": {
  9082. "dev-main": "1.26-dev"
  9083. },
  9084. "thanks": {
  9085. "name": "symfony/polyfill",
  9086. "url": "https://github.com/symfony/polyfill"
  9087. }
  9088. },
  9089. "autoload": {
  9090. "files": [
  9091. "bootstrap.php"
  9092. ],
  9093. "psr-4": {
  9094. "Symfony\\Polyfill\\Php72\\": ""
  9095. }
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "MIT"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Nicolas Grekas",
  9104. "email": "p@tchwork.com"
  9105. },
  9106. {
  9107. "name": "Symfony Community",
  9108. "homepage": "https://symfony.com/contributors"
  9109. }
  9110. ],
  9111. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9112. "homepage": "https://symfony.com",
  9113. "keywords": [
  9114. "compatibility",
  9115. "polyfill",
  9116. "portable",
  9117. "shim"
  9118. ],
  9119. "support": {
  9120. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  9121. },
  9122. "funding": [
  9123. {
  9124. "url": "https://symfony.com/sponsor",
  9125. "type": "custom"
  9126. },
  9127. {
  9128. "url": "https://github.com/fabpot",
  9129. "type": "github"
  9130. },
  9131. {
  9132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9133. "type": "tidelift"
  9134. }
  9135. ],
  9136. "time": "2022-05-24T11:49:31+00:00"
  9137. },
  9138. {
  9139. "name": "symfony/polyfill-php73",
  9140. "version": "v1.26.0",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/symfony/polyfill-php73.git",
  9144. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  9149. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  9150. "shasum": "",
  9151. "mirrors": [
  9152. {
  9153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9154. "preferred": true
  9155. }
  9156. ]
  9157. },
  9158. "require": {
  9159. "php": ">=7.1"
  9160. },
  9161. "type": "library",
  9162. "extra": {
  9163. "branch-alias": {
  9164. "dev-main": "1.26-dev"
  9165. },
  9166. "thanks": {
  9167. "name": "symfony/polyfill",
  9168. "url": "https://github.com/symfony/polyfill"
  9169. }
  9170. },
  9171. "autoload": {
  9172. "files": [
  9173. "bootstrap.php"
  9174. ],
  9175. "psr-4": {
  9176. "Symfony\\Polyfill\\Php73\\": ""
  9177. },
  9178. "classmap": [
  9179. "Resources/stubs"
  9180. ]
  9181. },
  9182. "notification-url": "https://packagist.org/downloads/",
  9183. "license": [
  9184. "MIT"
  9185. ],
  9186. "authors": [
  9187. {
  9188. "name": "Nicolas Grekas",
  9189. "email": "p@tchwork.com"
  9190. },
  9191. {
  9192. "name": "Symfony Community",
  9193. "homepage": "https://symfony.com/contributors"
  9194. }
  9195. ],
  9196. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  9197. "homepage": "https://symfony.com",
  9198. "keywords": [
  9199. "compatibility",
  9200. "polyfill",
  9201. "portable",
  9202. "shim"
  9203. ],
  9204. "support": {
  9205. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  9206. },
  9207. "funding": [
  9208. {
  9209. "url": "https://symfony.com/sponsor",
  9210. "type": "custom"
  9211. },
  9212. {
  9213. "url": "https://github.com/fabpot",
  9214. "type": "github"
  9215. },
  9216. {
  9217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9218. "type": "tidelift"
  9219. }
  9220. ],
  9221. "time": "2022-05-24T11:49:31+00:00"
  9222. },
  9223. {
  9224. "name": "symfony/polyfill-php80",
  9225. "version": "v1.26.0",
  9226. "source": {
  9227. "type": "git",
  9228. "url": "https://github.com/symfony/polyfill-php80.git",
  9229. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  9230. },
  9231. "dist": {
  9232. "type": "zip",
  9233. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  9234. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  9235. "shasum": "",
  9236. "mirrors": [
  9237. {
  9238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9239. "preferred": true
  9240. }
  9241. ]
  9242. },
  9243. "require": {
  9244. "php": ">=7.1"
  9245. },
  9246. "type": "library",
  9247. "extra": {
  9248. "branch-alias": {
  9249. "dev-main": "1.26-dev"
  9250. },
  9251. "thanks": {
  9252. "name": "symfony/polyfill",
  9253. "url": "https://github.com/symfony/polyfill"
  9254. }
  9255. },
  9256. "autoload": {
  9257. "files": [
  9258. "bootstrap.php"
  9259. ],
  9260. "psr-4": {
  9261. "Symfony\\Polyfill\\Php80\\": ""
  9262. },
  9263. "classmap": [
  9264. "Resources/stubs"
  9265. ]
  9266. },
  9267. "notification-url": "https://packagist.org/downloads/",
  9268. "license": [
  9269. "MIT"
  9270. ],
  9271. "authors": [
  9272. {
  9273. "name": "Ion Bazan",
  9274. "email": "ion.bazan@gmail.com"
  9275. },
  9276. {
  9277. "name": "Nicolas Grekas",
  9278. "email": "p@tchwork.com"
  9279. },
  9280. {
  9281. "name": "Symfony Community",
  9282. "homepage": "https://symfony.com/contributors"
  9283. }
  9284. ],
  9285. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9286. "homepage": "https://symfony.com",
  9287. "keywords": [
  9288. "compatibility",
  9289. "polyfill",
  9290. "portable",
  9291. "shim"
  9292. ],
  9293. "support": {
  9294. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  9295. },
  9296. "funding": [
  9297. {
  9298. "url": "https://symfony.com/sponsor",
  9299. "type": "custom"
  9300. },
  9301. {
  9302. "url": "https://github.com/fabpot",
  9303. "type": "github"
  9304. },
  9305. {
  9306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9307. "type": "tidelift"
  9308. }
  9309. ],
  9310. "time": "2022-05-10T07:21:04+00:00"
  9311. },
  9312. {
  9313. "name": "symfony/polyfill-php81",
  9314. "version": "v1.26.0",
  9315. "source": {
  9316. "type": "git",
  9317. "url": "https://github.com/symfony/polyfill-php81.git",
  9318. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  9319. },
  9320. "dist": {
  9321. "type": "zip",
  9322. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  9323. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  9324. "shasum": "",
  9325. "mirrors": [
  9326. {
  9327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9328. "preferred": true
  9329. }
  9330. ]
  9331. },
  9332. "require": {
  9333. "php": ">=7.1"
  9334. },
  9335. "type": "library",
  9336. "extra": {
  9337. "branch-alias": {
  9338. "dev-main": "1.26-dev"
  9339. },
  9340. "thanks": {
  9341. "name": "symfony/polyfill",
  9342. "url": "https://github.com/symfony/polyfill"
  9343. }
  9344. },
  9345. "autoload": {
  9346. "files": [
  9347. "bootstrap.php"
  9348. ],
  9349. "psr-4": {
  9350. "Symfony\\Polyfill\\Php81\\": ""
  9351. },
  9352. "classmap": [
  9353. "Resources/stubs"
  9354. ]
  9355. },
  9356. "notification-url": "https://packagist.org/downloads/",
  9357. "license": [
  9358. "MIT"
  9359. ],
  9360. "authors": [
  9361. {
  9362. "name": "Nicolas Grekas",
  9363. "email": "p@tchwork.com"
  9364. },
  9365. {
  9366. "name": "Symfony Community",
  9367. "homepage": "https://symfony.com/contributors"
  9368. }
  9369. ],
  9370. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9371. "homepage": "https://symfony.com",
  9372. "keywords": [
  9373. "compatibility",
  9374. "polyfill",
  9375. "portable",
  9376. "shim"
  9377. ],
  9378. "support": {
  9379. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  9380. },
  9381. "funding": [
  9382. {
  9383. "url": "https://symfony.com/sponsor",
  9384. "type": "custom"
  9385. },
  9386. {
  9387. "url": "https://github.com/fabpot",
  9388. "type": "github"
  9389. },
  9390. {
  9391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9392. "type": "tidelift"
  9393. }
  9394. ],
  9395. "time": "2022-05-24T11:49:31+00:00"
  9396. },
  9397. {
  9398. "name": "symfony/process",
  9399. "version": "v5.4.8",
  9400. "source": {
  9401. "type": "git",
  9402. "url": "https://github.com/symfony/process.git",
  9403. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
  9404. },
  9405. "dist": {
  9406. "type": "zip",
  9407. "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  9408. "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
  9409. "shasum": "",
  9410. "mirrors": [
  9411. {
  9412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9413. "preferred": true
  9414. }
  9415. ]
  9416. },
  9417. "require": {
  9418. "php": ">=7.2.5",
  9419. "symfony/polyfill-php80": "^1.16"
  9420. },
  9421. "type": "library",
  9422. "autoload": {
  9423. "psr-4": {
  9424. "Symfony\\Component\\Process\\": ""
  9425. },
  9426. "exclude-from-classmap": [
  9427. "/Tests/"
  9428. ]
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Fabien Potencier",
  9437. "email": "fabien@symfony.com"
  9438. },
  9439. {
  9440. "name": "Symfony Community",
  9441. "homepage": "https://symfony.com/contributors"
  9442. }
  9443. ],
  9444. "description": "Executes commands in sub-processes",
  9445. "homepage": "https://symfony.com",
  9446. "support": {
  9447. "source": "https://github.com/symfony/process/tree/v5.4.8"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://symfony.com/sponsor",
  9452. "type": "custom"
  9453. },
  9454. {
  9455. "url": "https://github.com/fabpot",
  9456. "type": "github"
  9457. },
  9458. {
  9459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9460. "type": "tidelift"
  9461. }
  9462. ],
  9463. "time": "2022-04-08T05:07:18+00:00"
  9464. },
  9465. {
  9466. "name": "symfony/psr-http-message-bridge",
  9467. "version": "v2.1.2",
  9468. "source": {
  9469. "type": "git",
  9470. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9471. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  9472. },
  9473. "dist": {
  9474. "type": "zip",
  9475. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9476. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  9477. "shasum": "",
  9478. "mirrors": [
  9479. {
  9480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9481. "preferred": true
  9482. }
  9483. ]
  9484. },
  9485. "require": {
  9486. "php": ">=7.1",
  9487. "psr/http-message": "^1.0",
  9488. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  9489. },
  9490. "require-dev": {
  9491. "nyholm/psr7": "^1.1",
  9492. "psr/log": "^1.1 || ^2 || ^3",
  9493. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  9494. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  9495. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  9496. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  9497. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  9498. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  9499. },
  9500. "suggest": {
  9501. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9502. },
  9503. "type": "symfony-bridge",
  9504. "extra": {
  9505. "branch-alias": {
  9506. "dev-main": "2.1-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "psr-4": {
  9511. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9512. },
  9513. "exclude-from-classmap": [
  9514. "/Tests/"
  9515. ]
  9516. },
  9517. "notification-url": "https://packagist.org/downloads/",
  9518. "license": [
  9519. "MIT"
  9520. ],
  9521. "authors": [
  9522. {
  9523. "name": "Fabien Potencier",
  9524. "email": "fabien@symfony.com"
  9525. },
  9526. {
  9527. "name": "Symfony Community",
  9528. "homepage": "http://symfony.com/contributors"
  9529. }
  9530. ],
  9531. "description": "PSR HTTP message bridge",
  9532. "homepage": "http://symfony.com",
  9533. "keywords": [
  9534. "http",
  9535. "http-message",
  9536. "psr-17",
  9537. "psr-7"
  9538. ],
  9539. "support": {
  9540. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9541. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  9542. },
  9543. "funding": [
  9544. {
  9545. "url": "https://symfony.com/sponsor",
  9546. "type": "custom"
  9547. },
  9548. {
  9549. "url": "https://github.com/fabpot",
  9550. "type": "github"
  9551. },
  9552. {
  9553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9554. "type": "tidelift"
  9555. }
  9556. ],
  9557. "time": "2021-11-05T13:13:39+00:00"
  9558. },
  9559. {
  9560. "name": "symfony/routing",
  9561. "version": "v5.4.8",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/symfony/routing.git",
  9565. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/symfony/routing/zipball/e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9570. "reference": "e07817bb6244ea33ef5ad31abc4a9288bef3f2f7",
  9571. "shasum": "",
  9572. "mirrors": [
  9573. {
  9574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9575. "preferred": true
  9576. }
  9577. ]
  9578. },
  9579. "require": {
  9580. "php": ">=7.2.5",
  9581. "symfony/deprecation-contracts": "^2.1|^3",
  9582. "symfony/polyfill-php80": "^1.16"
  9583. },
  9584. "conflict": {
  9585. "doctrine/annotations": "<1.12",
  9586. "symfony/config": "<5.3",
  9587. "symfony/dependency-injection": "<4.4",
  9588. "symfony/yaml": "<4.4"
  9589. },
  9590. "require-dev": {
  9591. "doctrine/annotations": "^1.12",
  9592. "psr/log": "^1|^2|^3",
  9593. "symfony/config": "^5.3|^6.0",
  9594. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9595. "symfony/expression-language": "^4.4|^5.0|^6.0",
  9596. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  9597. "symfony/yaml": "^4.4|^5.0|^6.0"
  9598. },
  9599. "suggest": {
  9600. "symfony/config": "For using the all-in-one router or any loader",
  9601. "symfony/expression-language": "For using expression matching",
  9602. "symfony/http-foundation": "For using a Symfony Request object",
  9603. "symfony/yaml": "For using the YAML loader"
  9604. },
  9605. "type": "library",
  9606. "autoload": {
  9607. "psr-4": {
  9608. "Symfony\\Component\\Routing\\": ""
  9609. },
  9610. "exclude-from-classmap": [
  9611. "/Tests/"
  9612. ]
  9613. },
  9614. "notification-url": "https://packagist.org/downloads/",
  9615. "license": [
  9616. "MIT"
  9617. ],
  9618. "authors": [
  9619. {
  9620. "name": "Fabien Potencier",
  9621. "email": "fabien@symfony.com"
  9622. },
  9623. {
  9624. "name": "Symfony Community",
  9625. "homepage": "https://symfony.com/contributors"
  9626. }
  9627. ],
  9628. "description": "Maps an HTTP request to a set of configuration variables",
  9629. "homepage": "https://symfony.com",
  9630. "keywords": [
  9631. "router",
  9632. "routing",
  9633. "uri",
  9634. "url"
  9635. ],
  9636. "support": {
  9637. "source": "https://github.com/symfony/routing/tree/v5.4.8"
  9638. },
  9639. "funding": [
  9640. {
  9641. "url": "https://symfony.com/sponsor",
  9642. "type": "custom"
  9643. },
  9644. {
  9645. "url": "https://github.com/fabpot",
  9646. "type": "github"
  9647. },
  9648. {
  9649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9650. "type": "tidelift"
  9651. }
  9652. ],
  9653. "time": "2022-04-18T21:45:37+00:00"
  9654. },
  9655. {
  9656. "name": "symfony/service-contracts",
  9657. "version": "v2.5.1",
  9658. "source": {
  9659. "type": "git",
  9660. "url": "https://github.com/symfony/service-contracts.git",
  9661. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
  9662. },
  9663. "dist": {
  9664. "type": "zip",
  9665. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  9666. "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
  9667. "shasum": "",
  9668. "mirrors": [
  9669. {
  9670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9671. "preferred": true
  9672. }
  9673. ]
  9674. },
  9675. "require": {
  9676. "php": ">=7.2.5",
  9677. "psr/container": "^1.1",
  9678. "symfony/deprecation-contracts": "^2.1|^3"
  9679. },
  9680. "conflict": {
  9681. "ext-psr": "<1.1|>=2"
  9682. },
  9683. "suggest": {
  9684. "symfony/service-implementation": ""
  9685. },
  9686. "type": "library",
  9687. "extra": {
  9688. "branch-alias": {
  9689. "dev-main": "2.5-dev"
  9690. },
  9691. "thanks": {
  9692. "name": "symfony/contracts",
  9693. "url": "https://github.com/symfony/contracts"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "psr-4": {
  9698. "Symfony\\Contracts\\Service\\": ""
  9699. }
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "MIT"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Nicolas Grekas",
  9708. "email": "p@tchwork.com"
  9709. },
  9710. {
  9711. "name": "Symfony Community",
  9712. "homepage": "https://symfony.com/contributors"
  9713. }
  9714. ],
  9715. "description": "Generic abstractions related to writing services",
  9716. "homepage": "https://symfony.com",
  9717. "keywords": [
  9718. "abstractions",
  9719. "contracts",
  9720. "decoupling",
  9721. "interfaces",
  9722. "interoperability",
  9723. "standards"
  9724. ],
  9725. "support": {
  9726. "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
  9727. },
  9728. "funding": [
  9729. {
  9730. "url": "https://symfony.com/sponsor",
  9731. "type": "custom"
  9732. },
  9733. {
  9734. "url": "https://github.com/fabpot",
  9735. "type": "github"
  9736. },
  9737. {
  9738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9739. "type": "tidelift"
  9740. }
  9741. ],
  9742. "time": "2022-03-13T20:07:29+00:00"
  9743. },
  9744. {
  9745. "name": "symfony/string",
  9746. "version": "v6.0.9",
  9747. "source": {
  9748. "type": "git",
  9749. "url": "https://github.com/symfony/string.git",
  9750. "reference": "df9f03d595aa2d446498ba92fe803a519b2c43cc"
  9751. },
  9752. "dist": {
  9753. "type": "zip",
  9754. "url": "https://api.github.com/repos/symfony/string/zipball/df9f03d595aa2d446498ba92fe803a519b2c43cc",
  9755. "reference": "df9f03d595aa2d446498ba92fe803a519b2c43cc",
  9756. "shasum": "",
  9757. "mirrors": [
  9758. {
  9759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9760. "preferred": true
  9761. }
  9762. ]
  9763. },
  9764. "require": {
  9765. "php": ">=8.0.2",
  9766. "symfony/polyfill-ctype": "~1.8",
  9767. "symfony/polyfill-intl-grapheme": "~1.0",
  9768. "symfony/polyfill-intl-normalizer": "~1.0",
  9769. "symfony/polyfill-mbstring": "~1.0"
  9770. },
  9771. "conflict": {
  9772. "symfony/translation-contracts": "<2.0"
  9773. },
  9774. "require-dev": {
  9775. "symfony/error-handler": "^5.4|^6.0",
  9776. "symfony/http-client": "^5.4|^6.0",
  9777. "symfony/translation-contracts": "^2.0|^3.0",
  9778. "symfony/var-exporter": "^5.4|^6.0"
  9779. },
  9780. "type": "library",
  9781. "autoload": {
  9782. "files": [
  9783. "Resources/functions.php"
  9784. ],
  9785. "psr-4": {
  9786. "Symfony\\Component\\String\\": ""
  9787. },
  9788. "exclude-from-classmap": [
  9789. "/Tests/"
  9790. ]
  9791. },
  9792. "notification-url": "https://packagist.org/downloads/",
  9793. "license": [
  9794. "MIT"
  9795. ],
  9796. "authors": [
  9797. {
  9798. "name": "Nicolas Grekas",
  9799. "email": "p@tchwork.com"
  9800. },
  9801. {
  9802. "name": "Symfony Community",
  9803. "homepage": "https://symfony.com/contributors"
  9804. }
  9805. ],
  9806. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9807. "homepage": "https://symfony.com",
  9808. "keywords": [
  9809. "grapheme",
  9810. "i18n",
  9811. "string",
  9812. "unicode",
  9813. "utf-8",
  9814. "utf8"
  9815. ],
  9816. "support": {
  9817. "source": "https://github.com/symfony/string/tree/v6.0.9"
  9818. },
  9819. "funding": [
  9820. {
  9821. "url": "https://symfony.com/sponsor",
  9822. "type": "custom"
  9823. },
  9824. {
  9825. "url": "https://github.com/fabpot",
  9826. "type": "github"
  9827. },
  9828. {
  9829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9830. "type": "tidelift"
  9831. }
  9832. ],
  9833. "time": "2022-04-22T08:18:02+00:00"
  9834. },
  9835. {
  9836. "name": "symfony/translation",
  9837. "version": "v6.0.9",
  9838. "source": {
  9839. "type": "git",
  9840. "url": "https://github.com/symfony/translation.git",
  9841. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6"
  9842. },
  9843. "dist": {
  9844. "type": "zip",
  9845. "url": "https://api.github.com/repos/symfony/translation/zipball/9ba011309943955a3807b8236c17cff3b88f67b6",
  9846. "reference": "9ba011309943955a3807b8236c17cff3b88f67b6",
  9847. "shasum": "",
  9848. "mirrors": [
  9849. {
  9850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9851. "preferred": true
  9852. }
  9853. ]
  9854. },
  9855. "require": {
  9856. "php": ">=8.0.2",
  9857. "symfony/polyfill-mbstring": "~1.0",
  9858. "symfony/translation-contracts": "^2.3|^3.0"
  9859. },
  9860. "conflict": {
  9861. "symfony/config": "<5.4",
  9862. "symfony/console": "<5.4",
  9863. "symfony/dependency-injection": "<5.4",
  9864. "symfony/http-kernel": "<5.4",
  9865. "symfony/twig-bundle": "<5.4",
  9866. "symfony/yaml": "<5.4"
  9867. },
  9868. "provide": {
  9869. "symfony/translation-implementation": "2.3|3.0"
  9870. },
  9871. "require-dev": {
  9872. "psr/log": "^1|^2|^3",
  9873. "symfony/config": "^5.4|^6.0",
  9874. "symfony/console": "^5.4|^6.0",
  9875. "symfony/dependency-injection": "^5.4|^6.0",
  9876. "symfony/finder": "^5.4|^6.0",
  9877. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9878. "symfony/http-kernel": "^5.4|^6.0",
  9879. "symfony/intl": "^5.4|^6.0",
  9880. "symfony/polyfill-intl-icu": "^1.21",
  9881. "symfony/service-contracts": "^1.1.2|^2|^3",
  9882. "symfony/yaml": "^5.4|^6.0"
  9883. },
  9884. "suggest": {
  9885. "psr/log-implementation": "To use logging capability in translator",
  9886. "symfony/config": "",
  9887. "symfony/yaml": ""
  9888. },
  9889. "type": "library",
  9890. "autoload": {
  9891. "files": [
  9892. "Resources/functions.php"
  9893. ],
  9894. "psr-4": {
  9895. "Symfony\\Component\\Translation\\": ""
  9896. },
  9897. "exclude-from-classmap": [
  9898. "/Tests/"
  9899. ]
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "MIT"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Fabien Potencier",
  9908. "email": "fabien@symfony.com"
  9909. },
  9910. {
  9911. "name": "Symfony Community",
  9912. "homepage": "https://symfony.com/contributors"
  9913. }
  9914. ],
  9915. "description": "Provides tools to internationalize your application",
  9916. "homepage": "https://symfony.com",
  9917. "support": {
  9918. "source": "https://github.com/symfony/translation/tree/v6.0.9"
  9919. },
  9920. "funding": [
  9921. {
  9922. "url": "https://symfony.com/sponsor",
  9923. "type": "custom"
  9924. },
  9925. {
  9926. "url": "https://github.com/fabpot",
  9927. "type": "github"
  9928. },
  9929. {
  9930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9931. "type": "tidelift"
  9932. }
  9933. ],
  9934. "time": "2022-05-06T14:27:17+00:00"
  9935. },
  9936. {
  9937. "name": "symfony/translation-contracts",
  9938. "version": "v3.0.1",
  9939. "source": {
  9940. "type": "git",
  9941. "url": "https://github.com/symfony/translation-contracts.git",
  9942. "reference": "c4183fc3ef0f0510893cbeedc7718fb5cafc9ac9"
  9943. },
  9944. "dist": {
  9945. "type": "zip",
  9946. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/c4183fc3ef0f0510893cbeedc7718fb5cafc9ac9",
  9947. "reference": "c4183fc3ef0f0510893cbeedc7718fb5cafc9ac9",
  9948. "shasum": "",
  9949. "mirrors": [
  9950. {
  9951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9952. "preferred": true
  9953. }
  9954. ]
  9955. },
  9956. "require": {
  9957. "php": ">=8.0.2"
  9958. },
  9959. "suggest": {
  9960. "symfony/translation-implementation": ""
  9961. },
  9962. "type": "library",
  9963. "extra": {
  9964. "branch-alias": {
  9965. "dev-main": "3.0-dev"
  9966. },
  9967. "thanks": {
  9968. "name": "symfony/contracts",
  9969. "url": "https://github.com/symfony/contracts"
  9970. }
  9971. },
  9972. "autoload": {
  9973. "psr-4": {
  9974. "Symfony\\Contracts\\Translation\\": ""
  9975. }
  9976. },
  9977. "notification-url": "https://packagist.org/downloads/",
  9978. "license": [
  9979. "MIT"
  9980. ],
  9981. "authors": [
  9982. {
  9983. "name": "Nicolas Grekas",
  9984. "email": "p@tchwork.com"
  9985. },
  9986. {
  9987. "name": "Symfony Community",
  9988. "homepage": "https://symfony.com/contributors"
  9989. }
  9990. ],
  9991. "description": "Generic abstractions related to translation",
  9992. "homepage": "https://symfony.com",
  9993. "keywords": [
  9994. "abstractions",
  9995. "contracts",
  9996. "decoupling",
  9997. "interfaces",
  9998. "interoperability",
  9999. "standards"
  10000. ],
  10001. "support": {
  10002. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.1"
  10003. },
  10004. "funding": [
  10005. {
  10006. "url": "https://symfony.com/sponsor",
  10007. "type": "custom"
  10008. },
  10009. {
  10010. "url": "https://github.com/fabpot",
  10011. "type": "github"
  10012. },
  10013. {
  10014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10015. "type": "tidelift"
  10016. }
  10017. ],
  10018. "time": "2022-01-02T09:55:41+00:00"
  10019. },
  10020. {
  10021. "name": "symfony/var-dumper",
  10022. "version": "v5.4.9",
  10023. "source": {
  10024. "type": "git",
  10025. "url": "https://github.com/symfony/var-dumper.git",
  10026. "reference": "af52239a330fafd192c773795520dc2dd62b5657"
  10027. },
  10028. "dist": {
  10029. "type": "zip",
  10030. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/af52239a330fafd192c773795520dc2dd62b5657",
  10031. "reference": "af52239a330fafd192c773795520dc2dd62b5657",
  10032. "shasum": "",
  10033. "mirrors": [
  10034. {
  10035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10036. "preferred": true
  10037. }
  10038. ]
  10039. },
  10040. "require": {
  10041. "php": ">=7.2.5",
  10042. "symfony/polyfill-mbstring": "~1.0",
  10043. "symfony/polyfill-php80": "^1.16"
  10044. },
  10045. "conflict": {
  10046. "phpunit/phpunit": "<5.4.3",
  10047. "symfony/console": "<4.4"
  10048. },
  10049. "require-dev": {
  10050. "ext-iconv": "*",
  10051. "symfony/console": "^4.4|^5.0|^6.0",
  10052. "symfony/process": "^4.4|^5.0|^6.0",
  10053. "symfony/uid": "^5.1|^6.0",
  10054. "twig/twig": "^2.13|^3.0.4"
  10055. },
  10056. "suggest": {
  10057. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10058. "ext-intl": "To show region name in time zone dump",
  10059. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  10060. },
  10061. "bin": [
  10062. "Resources/bin/var-dump-server"
  10063. ],
  10064. "type": "library",
  10065. "autoload": {
  10066. "files": [
  10067. "Resources/functions/dump.php"
  10068. ],
  10069. "psr-4": {
  10070. "Symfony\\Component\\VarDumper\\": ""
  10071. },
  10072. "exclude-from-classmap": [
  10073. "/Tests/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "MIT"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Nicolas Grekas",
  10083. "email": "p@tchwork.com"
  10084. },
  10085. {
  10086. "name": "Symfony Community",
  10087. "homepage": "https://symfony.com/contributors"
  10088. }
  10089. ],
  10090. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10091. "homepage": "https://symfony.com",
  10092. "keywords": [
  10093. "debug",
  10094. "dump"
  10095. ],
  10096. "support": {
  10097. "source": "https://github.com/symfony/var-dumper/tree/v5.4.9"
  10098. },
  10099. "funding": [
  10100. {
  10101. "url": "https://symfony.com/sponsor",
  10102. "type": "custom"
  10103. },
  10104. {
  10105. "url": "https://github.com/fabpot",
  10106. "type": "github"
  10107. },
  10108. {
  10109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10110. "type": "tidelift"
  10111. }
  10112. ],
  10113. "time": "2022-05-21T10:24:18+00:00"
  10114. },
  10115. {
  10116. "name": "symfony/var-exporter",
  10117. "version": "v6.0.9",
  10118. "source": {
  10119. "type": "git",
  10120. "url": "https://github.com/symfony/var-exporter.git",
  10121. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e"
  10122. },
  10123. "dist": {
  10124. "type": "zip",
  10125. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/51c9947398d4f87f0b5a861999534a95afcd971e",
  10126. "reference": "51c9947398d4f87f0b5a861999534a95afcd971e",
  10127. "shasum": "",
  10128. "mirrors": [
  10129. {
  10130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10131. "preferred": true
  10132. }
  10133. ]
  10134. },
  10135. "require": {
  10136. "php": ">=8.0.2"
  10137. },
  10138. "require-dev": {
  10139. "symfony/var-dumper": "^5.4|^6.0"
  10140. },
  10141. "type": "library",
  10142. "autoload": {
  10143. "psr-4": {
  10144. "Symfony\\Component\\VarExporter\\": ""
  10145. },
  10146. "exclude-from-classmap": [
  10147. "/Tests/"
  10148. ]
  10149. },
  10150. "notification-url": "https://packagist.org/downloads/",
  10151. "license": [
  10152. "MIT"
  10153. ],
  10154. "authors": [
  10155. {
  10156. "name": "Nicolas Grekas",
  10157. "email": "p@tchwork.com"
  10158. },
  10159. {
  10160. "name": "Symfony Community",
  10161. "homepage": "https://symfony.com/contributors"
  10162. }
  10163. ],
  10164. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10165. "homepage": "https://symfony.com",
  10166. "keywords": [
  10167. "clone",
  10168. "construct",
  10169. "export",
  10170. "hydrate",
  10171. "instantiate",
  10172. "serialize"
  10173. ],
  10174. "support": {
  10175. "source": "https://github.com/symfony/var-exporter/tree/v6.0.9"
  10176. },
  10177. "funding": [
  10178. {
  10179. "url": "https://symfony.com/sponsor",
  10180. "type": "custom"
  10181. },
  10182. {
  10183. "url": "https://github.com/fabpot",
  10184. "type": "github"
  10185. },
  10186. {
  10187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10188. "type": "tidelift"
  10189. }
  10190. ],
  10191. "time": "2022-05-21T13:33:31+00:00"
  10192. },
  10193. {
  10194. "name": "tencent/tls-sig-api-v2",
  10195. "version": "v1.0",
  10196. "source": {
  10197. "type": "git",
  10198. "url": "https://github.com/tencentyun/tls-sig-api-v2-php.git",
  10199. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f"
  10200. },
  10201. "dist": {
  10202. "type": "zip",
  10203. "url": "https://api.github.com/repos/tencentyun/tls-sig-api-v2-php/zipball/af947437779ac6f18233e24c3e12ad5dae866a9f",
  10204. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f",
  10205. "shasum": "",
  10206. "mirrors": [
  10207. {
  10208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10209. "preferred": true
  10210. }
  10211. ]
  10212. },
  10213. "require": {
  10214. "php": ">=5.3.0"
  10215. },
  10216. "type": "library",
  10217. "autoload": {
  10218. "psr-4": {
  10219. "Tencent\\": "src/"
  10220. }
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "weijunyi",
  10229. "email": "weijunyi@tencent.com",
  10230. "role": "Developer"
  10231. }
  10232. ],
  10233. "description": "tls-sig-api-v2 适用于腾讯云通信生成用户账号签名。",
  10234. "homepage": "https://github.com/tencentyun/tls-sig-api-v2-php",
  10235. "keywords": [
  10236. "im",
  10237. "tencent"
  10238. ],
  10239. "support": {
  10240. "issues": "https://github.com/tencentyun/tls-sig-api-v2-php/issues",
  10241. "source": "https://github.com/tencentyun/tls-sig-api-v2-php/tree/v1.0"
  10242. },
  10243. "time": "2019-06-20T08:42:03+00:00"
  10244. },
  10245. {
  10246. "name": "tencentcloud/tencentcloud-sdk-php",
  10247. "version": "3.0.651",
  10248. "source": {
  10249. "type": "git",
  10250. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  10251. "reference": "6c7611803e782f5364046684e3270bc6225093f8"
  10252. },
  10253. "dist": {
  10254. "type": "zip",
  10255. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/6c7611803e782f5364046684e3270bc6225093f8",
  10256. "reference": "6c7611803e782f5364046684e3270bc6225093f8",
  10257. "shasum": "",
  10258. "mirrors": [
  10259. {
  10260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10261. "preferred": true
  10262. }
  10263. ]
  10264. },
  10265. "require": {
  10266. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  10267. "php": ">=5.6.0"
  10268. },
  10269. "type": "library",
  10270. "autoload": {
  10271. "psr-4": {
  10272. "TencentCloud\\": "./src/TencentCloud"
  10273. },
  10274. "classmap": [
  10275. "src/QcloudApi/QcloudApi.php"
  10276. ]
  10277. },
  10278. "notification-url": "https://packagist.org/downloads/",
  10279. "license": [
  10280. "Apache-2.0"
  10281. ],
  10282. "authors": [
  10283. {
  10284. "name": "coolli",
  10285. "email": "tencentcloudapi@tencent.com",
  10286. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  10287. "role": "Developer"
  10288. }
  10289. ],
  10290. "description": "TencentCloudApi php sdk",
  10291. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  10292. "support": {
  10293. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  10294. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.651"
  10295. },
  10296. "time": "2022-06-16T22:40:51+00:00"
  10297. },
  10298. {
  10299. "name": "tijsverkoyen/css-to-inline-styles",
  10300. "version": "2.2.4",
  10301. "source": {
  10302. "type": "git",
  10303. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  10304. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c"
  10305. },
  10306. "dist": {
  10307. "type": "zip",
  10308. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c",
  10309. "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c",
  10310. "shasum": "",
  10311. "mirrors": [
  10312. {
  10313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10314. "preferred": true
  10315. }
  10316. ]
  10317. },
  10318. "require": {
  10319. "ext-dom": "*",
  10320. "ext-libxml": "*",
  10321. "php": "^5.5 || ^7.0 || ^8.0",
  10322. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  10323. },
  10324. "require-dev": {
  10325. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  10326. },
  10327. "type": "library",
  10328. "extra": {
  10329. "branch-alias": {
  10330. "dev-master": "2.2.x-dev"
  10331. }
  10332. },
  10333. "autoload": {
  10334. "psr-4": {
  10335. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  10336. }
  10337. },
  10338. "notification-url": "https://packagist.org/downloads/",
  10339. "license": [
  10340. "BSD-3-Clause"
  10341. ],
  10342. "authors": [
  10343. {
  10344. "name": "Tijs Verkoyen",
  10345. "email": "css_to_inline_styles@verkoyen.eu",
  10346. "role": "Developer"
  10347. }
  10348. ],
  10349. "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.",
  10350. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  10351. "support": {
  10352. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  10353. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4"
  10354. },
  10355. "time": "2021-12-08T09:12:39+00:00"
  10356. },
  10357. {
  10358. "name": "tymon/jwt-auth",
  10359. "version": "dev-develop",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/tymondesigns/jwt-auth.git",
  10363. "reference": "014be8d493d228d14bbc291b24e835d330c092a0"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/014be8d493d228d14bbc291b24e835d330c092a0",
  10368. "reference": "014be8d493d228d14bbc291b24e835d330c092a0",
  10369. "shasum": "",
  10370. "mirrors": [
  10371. {
  10372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10373. "preferred": true
  10374. }
  10375. ]
  10376. },
  10377. "require": {
  10378. "illuminate/auth": "^5.2|^6|^7|^8|^9",
  10379. "illuminate/contracts": "^5.2|^6|^7|^8|^9",
  10380. "illuminate/http": "^5.2|^6|^7|^8|^9",
  10381. "illuminate/support": "^5.2|^6|^7|^8|^9",
  10382. "lcobucci/jwt": "^3.4|^4.0",
  10383. "namshi/jose": "^7.0",
  10384. "nesbot/carbon": "^1.0|^2.0",
  10385. "php": "^7.4|^8.0"
  10386. },
  10387. "require-dev": {
  10388. "illuminate/console": "^5.2|^6|^7|^8|^9",
  10389. "illuminate/database": "^5.2|^6|^7|^8|^9",
  10390. "illuminate/routing": "^5.2|^6|^7|^8|^9",
  10391. "mockery/mockery": ">=0.9.9",
  10392. "phpunit/phpunit": "^8.5|^9.4",
  10393. "yoast/phpunit-polyfills": "^0.2.0"
  10394. },
  10395. "default-branch": true,
  10396. "type": "library",
  10397. "extra": {
  10398. "branch-alias": {
  10399. "dev-develop": "1.0-dev"
  10400. },
  10401. "laravel": {
  10402. "aliases": {
  10403. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  10404. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  10405. },
  10406. "providers": [
  10407. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  10408. ]
  10409. }
  10410. },
  10411. "autoload": {
  10412. "psr-4": {
  10413. "Tymon\\JWTAuth\\": "src/"
  10414. }
  10415. },
  10416. "notification-url": "https://packagist.org/downloads/",
  10417. "license": [
  10418. "MIT"
  10419. ],
  10420. "authors": [
  10421. {
  10422. "name": "Sean Tymon",
  10423. "email": "tymon148@gmail.com",
  10424. "homepage": "https://tymon.xyz",
  10425. "role": "Developer"
  10426. }
  10427. ],
  10428. "description": "JSON Web Token Authentication for Laravel and Lumen",
  10429. "homepage": "https://github.com/tymondesigns/jwt-auth",
  10430. "keywords": [
  10431. "Authentication",
  10432. "JSON Web Token",
  10433. "auth",
  10434. "jwt",
  10435. "laravel"
  10436. ],
  10437. "support": {
  10438. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  10439. "source": "https://github.com/tymondesigns/jwt-auth"
  10440. },
  10441. "funding": [
  10442. {
  10443. "url": "https://www.patreon.com/seantymon",
  10444. "type": "patreon"
  10445. }
  10446. ],
  10447. "time": "2022-04-27T08:53:50+00:00"
  10448. },
  10449. {
  10450. "name": "vlucas/phpdotenv",
  10451. "version": "v5.4.1",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/vlucas/phpdotenv.git",
  10455. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  10460. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  10461. "shasum": "",
  10462. "mirrors": [
  10463. {
  10464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10465. "preferred": true
  10466. }
  10467. ]
  10468. },
  10469. "require": {
  10470. "ext-pcre": "*",
  10471. "graham-campbell/result-type": "^1.0.2",
  10472. "php": "^7.1.3 || ^8.0",
  10473. "phpoption/phpoption": "^1.8",
  10474. "symfony/polyfill-ctype": "^1.23",
  10475. "symfony/polyfill-mbstring": "^1.23.1",
  10476. "symfony/polyfill-php80": "^1.23.1"
  10477. },
  10478. "require-dev": {
  10479. "bamarni/composer-bin-plugin": "^1.4.1",
  10480. "ext-filter": "*",
  10481. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  10482. },
  10483. "suggest": {
  10484. "ext-filter": "Required to use the boolean validator."
  10485. },
  10486. "type": "library",
  10487. "extra": {
  10488. "branch-alias": {
  10489. "dev-master": "5.4-dev"
  10490. }
  10491. },
  10492. "autoload": {
  10493. "psr-4": {
  10494. "Dotenv\\": "src/"
  10495. }
  10496. },
  10497. "notification-url": "https://packagist.org/downloads/",
  10498. "license": [
  10499. "BSD-3-Clause"
  10500. ],
  10501. "authors": [
  10502. {
  10503. "name": "Graham Campbell",
  10504. "email": "hello@gjcampbell.co.uk",
  10505. "homepage": "https://github.com/GrahamCampbell"
  10506. },
  10507. {
  10508. "name": "Vance Lucas",
  10509. "email": "vance@vancelucas.com",
  10510. "homepage": "https://github.com/vlucas"
  10511. }
  10512. ],
  10513. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10514. "keywords": [
  10515. "dotenv",
  10516. "env",
  10517. "environment"
  10518. ],
  10519. "support": {
  10520. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10521. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  10522. },
  10523. "funding": [
  10524. {
  10525. "url": "https://github.com/GrahamCampbell",
  10526. "type": "github"
  10527. },
  10528. {
  10529. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10530. "type": "tidelift"
  10531. }
  10532. ],
  10533. "time": "2021-12-12T23:22:04+00:00"
  10534. },
  10535. {
  10536. "name": "voku/portable-ascii",
  10537. "version": "1.6.1",
  10538. "source": {
  10539. "type": "git",
  10540. "url": "https://github.com/voku/portable-ascii.git",
  10541. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  10542. },
  10543. "dist": {
  10544. "type": "zip",
  10545. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  10546. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  10547. "shasum": "",
  10548. "mirrors": [
  10549. {
  10550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10551. "preferred": true
  10552. }
  10553. ]
  10554. },
  10555. "require": {
  10556. "php": ">=7.0.0"
  10557. },
  10558. "require-dev": {
  10559. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10560. },
  10561. "suggest": {
  10562. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10563. },
  10564. "type": "library",
  10565. "autoload": {
  10566. "psr-4": {
  10567. "voku\\": "src/voku/"
  10568. }
  10569. },
  10570. "notification-url": "https://packagist.org/downloads/",
  10571. "license": [
  10572. "MIT"
  10573. ],
  10574. "authors": [
  10575. {
  10576. "name": "Lars Moelleken",
  10577. "homepage": "http://www.moelleken.org/"
  10578. }
  10579. ],
  10580. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10581. "homepage": "https://github.com/voku/portable-ascii",
  10582. "keywords": [
  10583. "ascii",
  10584. "clean",
  10585. "php"
  10586. ],
  10587. "support": {
  10588. "issues": "https://github.com/voku/portable-ascii/issues",
  10589. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  10590. },
  10591. "funding": [
  10592. {
  10593. "url": "https://www.paypal.me/moelleken",
  10594. "type": "custom"
  10595. },
  10596. {
  10597. "url": "https://github.com/voku",
  10598. "type": "github"
  10599. },
  10600. {
  10601. "url": "https://opencollective.com/portable-ascii",
  10602. "type": "open_collective"
  10603. },
  10604. {
  10605. "url": "https://www.patreon.com/voku",
  10606. "type": "patreon"
  10607. },
  10608. {
  10609. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10610. "type": "tidelift"
  10611. }
  10612. ],
  10613. "time": "2022-01-24T18:55:24+00:00"
  10614. },
  10615. {
  10616. "name": "voku/stop-words",
  10617. "version": "2.0.1",
  10618. "source": {
  10619. "type": "git",
  10620. "url": "https://github.com/voku/stop-words.git",
  10621. "reference": "8e63c0af20f800b1600783764e0ce19e53969f71"
  10622. },
  10623. "dist": {
  10624. "type": "zip",
  10625. "url": "https://api.github.com/repos/voku/stop-words/zipball/8e63c0af20f800b1600783764e0ce19e53969f71",
  10626. "reference": "8e63c0af20f800b1600783764e0ce19e53969f71",
  10627. "shasum": "",
  10628. "mirrors": [
  10629. {
  10630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10631. "preferred": true
  10632. }
  10633. ]
  10634. },
  10635. "require": {
  10636. "php": ">=7.0.0"
  10637. },
  10638. "require-dev": {
  10639. "phpunit/phpunit": "~6.0"
  10640. },
  10641. "type": "library",
  10642. "autoload": {
  10643. "psr-4": {
  10644. "voku\\": "src/voku/"
  10645. }
  10646. },
  10647. "notification-url": "https://packagist.org/downloads/",
  10648. "license": [
  10649. "MIT"
  10650. ],
  10651. "authors": [
  10652. {
  10653. "name": "Lars Moelleken",
  10654. "homepage": "http://www.moelleken.org/"
  10655. }
  10656. ],
  10657. "description": "Stop-Words via PHP",
  10658. "keywords": [
  10659. "stop words",
  10660. "stop-words"
  10661. ],
  10662. "support": {
  10663. "issues": "https://github.com/voku/stop-words/issues",
  10664. "source": "https://github.com/voku/stop-words/tree/master"
  10665. },
  10666. "time": "2018-11-23T01:37:27+00:00"
  10667. },
  10668. {
  10669. "name": "webmozart/assert",
  10670. "version": "1.10.0",
  10671. "source": {
  10672. "type": "git",
  10673. "url": "https://github.com/webmozarts/assert.git",
  10674. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10675. },
  10676. "dist": {
  10677. "type": "zip",
  10678. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10679. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10680. "shasum": "",
  10681. "mirrors": [
  10682. {
  10683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10684. "preferred": true
  10685. }
  10686. ]
  10687. },
  10688. "require": {
  10689. "php": "^7.2 || ^8.0",
  10690. "symfony/polyfill-ctype": "^1.8"
  10691. },
  10692. "conflict": {
  10693. "phpstan/phpstan": "<0.12.20",
  10694. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10695. },
  10696. "require-dev": {
  10697. "phpunit/phpunit": "^8.5.13"
  10698. },
  10699. "type": "library",
  10700. "extra": {
  10701. "branch-alias": {
  10702. "dev-master": "1.10-dev"
  10703. }
  10704. },
  10705. "autoload": {
  10706. "psr-4": {
  10707. "Webmozart\\Assert\\": "src/"
  10708. }
  10709. },
  10710. "notification-url": "https://packagist.org/downloads/",
  10711. "license": [
  10712. "MIT"
  10713. ],
  10714. "authors": [
  10715. {
  10716. "name": "Bernhard Schussek",
  10717. "email": "bschussek@gmail.com"
  10718. }
  10719. ],
  10720. "description": "Assertions to validate method input/output with nice error messages.",
  10721. "keywords": [
  10722. "assert",
  10723. "check",
  10724. "validate"
  10725. ],
  10726. "support": {
  10727. "issues": "https://github.com/webmozarts/assert/issues",
  10728. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10729. },
  10730. "time": "2021-03-09T10:59:23+00:00"
  10731. },
  10732. {
  10733. "name": "wemersonjanuario/wkhtmltopdf-windows",
  10734. "version": "0.12.2.3",
  10735. "source": {
  10736. "type": "git",
  10737. "url": "https://github.com/wemersonjanuario/wkhtmltopdf-windows.git",
  10738. "reference": "90fcd3487cad5931287742113c449b926e9e48d8"
  10739. },
  10740. "dist": {
  10741. "type": "zip",
  10742. "url": "https://api.github.com/repos/wemersonjanuario/wkhtmltopdf-windows/zipball/90fcd3487cad5931287742113c449b926e9e48d8",
  10743. "reference": "90fcd3487cad5931287742113c449b926e9e48d8",
  10744. "shasum": "",
  10745. "mirrors": [
  10746. {
  10747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10748. "preferred": true
  10749. }
  10750. ]
  10751. },
  10752. "suggest": {
  10753. "h4cc/wkhtmltopdf-amd64": "*",
  10754. "h4cc/wkhtmltopdf-i386": "*",
  10755. "wemersonjanuario/laravelpdf": "1.0.*"
  10756. },
  10757. "bin": [
  10758. "bin/32bit/wkhtmltopdf.exe",
  10759. "bin/32bit/wkhtmltoimage.exe",
  10760. "bin/64bit/wkhtmltopdf.exe",
  10761. "bin/64bit/wkhtmltoimage.exe"
  10762. ],
  10763. "type": "library",
  10764. "notification-url": "https://packagist.org/downloads/",
  10765. "license": [
  10766. "LGPL Version 3"
  10767. ],
  10768. "authors": [
  10769. {
  10770. "name": "Wemerson Januario",
  10771. "email": "wemerson.januario@gmail.com",
  10772. "homepage": "http://wemersonjanuario.com.br"
  10773. }
  10774. ],
  10775. "description": "Convert html to pdf using webkit (qtwebkit). Static linked windows binary for 32 bit and 64 bit systems.",
  10776. "homepage": "http://wkhtmltopdf.org/",
  10777. "keywords": [
  10778. "binary",
  10779. "convert",
  10780. "htmltoimage",
  10781. "htmltopdf",
  10782. "pdf",
  10783. "snapshot",
  10784. "thumbnail",
  10785. "wkhtmltopdf"
  10786. ],
  10787. "support": {
  10788. "issues": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/issues?state=open",
  10789. "source": "https://github.com/wemersonjanuario/wkhtmltopdf-windows/tree/master"
  10790. },
  10791. "time": "2015-06-30T20:19:22+00:00"
  10792. }
  10793. ],
  10794. "packages-dev": [
  10795. {
  10796. "name": "doctrine/instantiator",
  10797. "version": "1.4.1",
  10798. "source": {
  10799. "type": "git",
  10800. "url": "https://github.com/doctrine/instantiator.git",
  10801. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  10802. },
  10803. "dist": {
  10804. "type": "zip",
  10805. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  10806. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  10807. "shasum": "",
  10808. "mirrors": [
  10809. {
  10810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10811. "preferred": true
  10812. }
  10813. ]
  10814. },
  10815. "require": {
  10816. "php": "^7.1 || ^8.0"
  10817. },
  10818. "require-dev": {
  10819. "doctrine/coding-standard": "^9",
  10820. "ext-pdo": "*",
  10821. "ext-phar": "*",
  10822. "phpbench/phpbench": "^0.16 || ^1",
  10823. "phpstan/phpstan": "^1.4",
  10824. "phpstan/phpstan-phpunit": "^1",
  10825. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10826. "vimeo/psalm": "^4.22"
  10827. },
  10828. "type": "library",
  10829. "autoload": {
  10830. "psr-4": {
  10831. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10832. }
  10833. },
  10834. "notification-url": "https://packagist.org/downloads/",
  10835. "license": [
  10836. "MIT"
  10837. ],
  10838. "authors": [
  10839. {
  10840. "name": "Marco Pivetta",
  10841. "email": "ocramius@gmail.com",
  10842. "homepage": "https://ocramius.github.io/"
  10843. }
  10844. ],
  10845. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10846. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10847. "keywords": [
  10848. "constructor",
  10849. "instantiate"
  10850. ],
  10851. "support": {
  10852. "issues": "https://github.com/doctrine/instantiator/issues",
  10853. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  10854. },
  10855. "funding": [
  10856. {
  10857. "url": "https://www.doctrine-project.org/sponsorship.html",
  10858. "type": "custom"
  10859. },
  10860. {
  10861. "url": "https://www.patreon.com/phpdoctrine",
  10862. "type": "patreon"
  10863. },
  10864. {
  10865. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10866. "type": "tidelift"
  10867. }
  10868. ],
  10869. "time": "2022-03-03T08:28:38+00:00"
  10870. },
  10871. {
  10872. "name": "facade/flare-client-php",
  10873. "version": "1.9.1",
  10874. "source": {
  10875. "type": "git",
  10876. "url": "https://github.com/facade/flare-client-php.git",
  10877. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  10878. },
  10879. "dist": {
  10880. "type": "zip",
  10881. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10882. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  10883. "shasum": "",
  10884. "mirrors": [
  10885. {
  10886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10887. "preferred": true
  10888. }
  10889. ]
  10890. },
  10891. "require": {
  10892. "facade/ignition-contracts": "~1.0",
  10893. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  10894. "php": "^7.1|^8.0",
  10895. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  10896. "symfony/mime": "^3.4|^4.0|^5.1",
  10897. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  10898. },
  10899. "require-dev": {
  10900. "friendsofphp/php-cs-fixer": "^2.14",
  10901. "phpunit/phpunit": "^7.5.16",
  10902. "spatie/phpunit-snapshot-assertions": "^2.0"
  10903. },
  10904. "type": "library",
  10905. "extra": {
  10906. "branch-alias": {
  10907. "dev-master": "1.0-dev"
  10908. }
  10909. },
  10910. "autoload": {
  10911. "files": [
  10912. "src/helpers.php"
  10913. ],
  10914. "psr-4": {
  10915. "Facade\\FlareClient\\": "src"
  10916. }
  10917. },
  10918. "notification-url": "https://packagist.org/downloads/",
  10919. "license": [
  10920. "MIT"
  10921. ],
  10922. "description": "Send PHP errors to Flare",
  10923. "homepage": "https://github.com/facade/flare-client-php",
  10924. "keywords": [
  10925. "exception",
  10926. "facade",
  10927. "flare",
  10928. "reporting"
  10929. ],
  10930. "support": {
  10931. "issues": "https://github.com/facade/flare-client-php/issues",
  10932. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  10933. },
  10934. "funding": [
  10935. {
  10936. "url": "https://github.com/spatie",
  10937. "type": "github"
  10938. }
  10939. ],
  10940. "time": "2021-09-13T12:16:46+00:00"
  10941. },
  10942. {
  10943. "name": "facade/ignition",
  10944. "version": "2.17.5",
  10945. "source": {
  10946. "type": "git",
  10947. "url": "https://github.com/facade/ignition.git",
  10948. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c"
  10949. },
  10950. "dist": {
  10951. "type": "zip",
  10952. "url": "https://api.github.com/repos/facade/ignition/zipball/1d71996f83c9a5a7807331b8986ac890352b7a0c",
  10953. "reference": "1d71996f83c9a5a7807331b8986ac890352b7a0c",
  10954. "shasum": "",
  10955. "mirrors": [
  10956. {
  10957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10958. "preferred": true
  10959. }
  10960. ]
  10961. },
  10962. "require": {
  10963. "ext-curl": "*",
  10964. "ext-json": "*",
  10965. "ext-mbstring": "*",
  10966. "facade/flare-client-php": "^1.9.1",
  10967. "facade/ignition-contracts": "^1.0.2",
  10968. "illuminate/support": "^7.0|^8.0",
  10969. "monolog/monolog": "^2.0",
  10970. "php": "^7.2.5|^8.0",
  10971. "symfony/console": "^5.0",
  10972. "symfony/var-dumper": "^5.0"
  10973. },
  10974. "require-dev": {
  10975. "friendsofphp/php-cs-fixer": "^2.14",
  10976. "livewire/livewire": "^2.4",
  10977. "mockery/mockery": "^1.3",
  10978. "orchestra/testbench": "^5.0|^6.0",
  10979. "psalm/plugin-laravel": "^1.2"
  10980. },
  10981. "suggest": {
  10982. "laravel/telescope": "^3.1"
  10983. },
  10984. "type": "library",
  10985. "extra": {
  10986. "branch-alias": {
  10987. "dev-master": "2.x-dev"
  10988. },
  10989. "laravel": {
  10990. "providers": [
  10991. "Facade\\Ignition\\IgnitionServiceProvider"
  10992. ],
  10993. "aliases": {
  10994. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10995. }
  10996. }
  10997. },
  10998. "autoload": {
  10999. "files": [
  11000. "src/helpers.php"
  11001. ],
  11002. "psr-4": {
  11003. "Facade\\Ignition\\": "src"
  11004. }
  11005. },
  11006. "notification-url": "https://packagist.org/downloads/",
  11007. "license": [
  11008. "MIT"
  11009. ],
  11010. "description": "A beautiful error page for Laravel applications.",
  11011. "homepage": "https://github.com/facade/ignition",
  11012. "keywords": [
  11013. "error",
  11014. "flare",
  11015. "laravel",
  11016. "page"
  11017. ],
  11018. "support": {
  11019. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11020. "forum": "https://twitter.com/flareappio",
  11021. "issues": "https://github.com/facade/ignition/issues",
  11022. "source": "https://github.com/facade/ignition"
  11023. },
  11024. "time": "2022-02-23T18:31:24+00:00"
  11025. },
  11026. {
  11027. "name": "facade/ignition-contracts",
  11028. "version": "1.0.2",
  11029. "source": {
  11030. "type": "git",
  11031. "url": "https://github.com/facade/ignition-contracts.git",
  11032. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  11033. },
  11034. "dist": {
  11035. "type": "zip",
  11036. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  11037. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  11038. "shasum": "",
  11039. "mirrors": [
  11040. {
  11041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11042. "preferred": true
  11043. }
  11044. ]
  11045. },
  11046. "require": {
  11047. "php": "^7.3|^8.0"
  11048. },
  11049. "require-dev": {
  11050. "friendsofphp/php-cs-fixer": "^v2.15.8",
  11051. "phpunit/phpunit": "^9.3.11",
  11052. "vimeo/psalm": "^3.17.1"
  11053. },
  11054. "type": "library",
  11055. "autoload": {
  11056. "psr-4": {
  11057. "Facade\\IgnitionContracts\\": "src"
  11058. }
  11059. },
  11060. "notification-url": "https://packagist.org/downloads/",
  11061. "license": [
  11062. "MIT"
  11063. ],
  11064. "authors": [
  11065. {
  11066. "name": "Freek Van der Herten",
  11067. "email": "freek@spatie.be",
  11068. "homepage": "https://flareapp.io",
  11069. "role": "Developer"
  11070. }
  11071. ],
  11072. "description": "Solution contracts for Ignition",
  11073. "homepage": "https://github.com/facade/ignition-contracts",
  11074. "keywords": [
  11075. "contracts",
  11076. "flare",
  11077. "ignition"
  11078. ],
  11079. "support": {
  11080. "issues": "https://github.com/facade/ignition-contracts/issues",
  11081. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  11082. },
  11083. "time": "2020-10-16T08:27:54+00:00"
  11084. },
  11085. {
  11086. "name": "fakerphp/faker",
  11087. "version": "v1.19.0",
  11088. "source": {
  11089. "type": "git",
  11090. "url": "https://github.com/FakerPHP/Faker.git",
  11091. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75"
  11092. },
  11093. "dist": {
  11094. "type": "zip",
  11095. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75",
  11096. "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75",
  11097. "shasum": "",
  11098. "mirrors": [
  11099. {
  11100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11101. "preferred": true
  11102. }
  11103. ]
  11104. },
  11105. "require": {
  11106. "php": "^7.1 || ^8.0",
  11107. "psr/container": "^1.0 || ^2.0",
  11108. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  11109. },
  11110. "conflict": {
  11111. "fzaninotto/faker": "*"
  11112. },
  11113. "require-dev": {
  11114. "bamarni/composer-bin-plugin": "^1.4.1",
  11115. "doctrine/persistence": "^1.3 || ^2.0",
  11116. "ext-intl": "*",
  11117. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  11118. },
  11119. "suggest": {
  11120. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  11121. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  11122. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  11123. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  11124. "ext-mbstring": "Required for multibyte Unicode string functionality."
  11125. },
  11126. "type": "library",
  11127. "extra": {
  11128. "branch-alias": {
  11129. "dev-main": "v1.19-dev"
  11130. }
  11131. },
  11132. "autoload": {
  11133. "psr-4": {
  11134. "Faker\\": "src/Faker/"
  11135. }
  11136. },
  11137. "notification-url": "https://packagist.org/downloads/",
  11138. "license": [
  11139. "MIT"
  11140. ],
  11141. "authors": [
  11142. {
  11143. "name": "François Zaninotto"
  11144. }
  11145. ],
  11146. "description": "Faker is a PHP library that generates fake data for you.",
  11147. "keywords": [
  11148. "data",
  11149. "faker",
  11150. "fixtures"
  11151. ],
  11152. "support": {
  11153. "issues": "https://github.com/FakerPHP/Faker/issues",
  11154. "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0"
  11155. },
  11156. "time": "2022-02-02T17:38:57+00:00"
  11157. },
  11158. {
  11159. "name": "filp/whoops",
  11160. "version": "2.14.5",
  11161. "source": {
  11162. "type": "git",
  11163. "url": "https://github.com/filp/whoops.git",
  11164. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
  11165. },
  11166. "dist": {
  11167. "type": "zip",
  11168. "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  11169. "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
  11170. "shasum": "",
  11171. "mirrors": [
  11172. {
  11173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11174. "preferred": true
  11175. }
  11176. ]
  11177. },
  11178. "require": {
  11179. "php": "^5.5.9 || ^7.0 || ^8.0",
  11180. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  11181. },
  11182. "require-dev": {
  11183. "mockery/mockery": "^0.9 || ^1.0",
  11184. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  11185. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  11186. },
  11187. "suggest": {
  11188. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  11189. "whoops/soap": "Formats errors as SOAP responses"
  11190. },
  11191. "type": "library",
  11192. "extra": {
  11193. "branch-alias": {
  11194. "dev-master": "2.7-dev"
  11195. }
  11196. },
  11197. "autoload": {
  11198. "psr-4": {
  11199. "Whoops\\": "src/Whoops/"
  11200. }
  11201. },
  11202. "notification-url": "https://packagist.org/downloads/",
  11203. "license": [
  11204. "MIT"
  11205. ],
  11206. "authors": [
  11207. {
  11208. "name": "Filipe Dobreira",
  11209. "homepage": "https://github.com/filp",
  11210. "role": "Developer"
  11211. }
  11212. ],
  11213. "description": "php error handling for cool kids",
  11214. "homepage": "https://filp.github.io/whoops/",
  11215. "keywords": [
  11216. "error",
  11217. "exception",
  11218. "handling",
  11219. "library",
  11220. "throwable",
  11221. "whoops"
  11222. ],
  11223. "support": {
  11224. "issues": "https://github.com/filp/whoops/issues",
  11225. "source": "https://github.com/filp/whoops/tree/2.14.5"
  11226. },
  11227. "funding": [
  11228. {
  11229. "url": "https://github.com/denis-sokolov",
  11230. "type": "github"
  11231. }
  11232. ],
  11233. "time": "2022-01-07T12:00:00+00:00"
  11234. },
  11235. {
  11236. "name": "hamcrest/hamcrest-php",
  11237. "version": "v2.0.1",
  11238. "source": {
  11239. "type": "git",
  11240. "url": "https://github.com/hamcrest/hamcrest-php.git",
  11241. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  11242. },
  11243. "dist": {
  11244. "type": "zip",
  11245. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  11246. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  11247. "shasum": "",
  11248. "mirrors": [
  11249. {
  11250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11251. "preferred": true
  11252. }
  11253. ]
  11254. },
  11255. "require": {
  11256. "php": "^5.3|^7.0|^8.0"
  11257. },
  11258. "replace": {
  11259. "cordoval/hamcrest-php": "*",
  11260. "davedevelopment/hamcrest-php": "*",
  11261. "kodova/hamcrest-php": "*"
  11262. },
  11263. "require-dev": {
  11264. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  11265. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  11266. },
  11267. "type": "library",
  11268. "extra": {
  11269. "branch-alias": {
  11270. "dev-master": "2.1-dev"
  11271. }
  11272. },
  11273. "autoload": {
  11274. "classmap": [
  11275. "hamcrest"
  11276. ]
  11277. },
  11278. "notification-url": "https://packagist.org/downloads/",
  11279. "license": [
  11280. "BSD-3-Clause"
  11281. ],
  11282. "description": "This is the PHP port of Hamcrest Matchers",
  11283. "keywords": [
  11284. "test"
  11285. ],
  11286. "support": {
  11287. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  11288. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  11289. },
  11290. "time": "2020-07-09T08:09:16+00:00"
  11291. },
  11292. {
  11293. "name": "laravel/sail",
  11294. "version": "v1.14.9",
  11295. "source": {
  11296. "type": "git",
  11297. "url": "https://github.com/laravel/sail.git",
  11298. "reference": "8435763e7735f6eff15b03df014cea1217fc826e"
  11299. },
  11300. "dist": {
  11301. "type": "zip",
  11302. "url": "https://api.github.com/repos/laravel/sail/zipball/8435763e7735f6eff15b03df014cea1217fc826e",
  11303. "reference": "8435763e7735f6eff15b03df014cea1217fc826e",
  11304. "shasum": "",
  11305. "mirrors": [
  11306. {
  11307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11308. "preferred": true
  11309. }
  11310. ]
  11311. },
  11312. "require": {
  11313. "illuminate/console": "^8.0|^9.0",
  11314. "illuminate/contracts": "^8.0|^9.0",
  11315. "illuminate/support": "^8.0|^9.0",
  11316. "php": "^7.3|^8.0"
  11317. },
  11318. "bin": [
  11319. "bin/sail"
  11320. ],
  11321. "type": "library",
  11322. "extra": {
  11323. "branch-alias": {
  11324. "dev-master": "1.x-dev"
  11325. },
  11326. "laravel": {
  11327. "providers": [
  11328. "Laravel\\Sail\\SailServiceProvider"
  11329. ]
  11330. }
  11331. },
  11332. "autoload": {
  11333. "psr-4": {
  11334. "Laravel\\Sail\\": "src/"
  11335. }
  11336. },
  11337. "notification-url": "https://packagist.org/downloads/",
  11338. "license": [
  11339. "MIT"
  11340. ],
  11341. "authors": [
  11342. {
  11343. "name": "Taylor Otwell",
  11344. "email": "taylor@laravel.com"
  11345. }
  11346. ],
  11347. "description": "Docker files for running a basic Laravel application.",
  11348. "keywords": [
  11349. "docker",
  11350. "laravel"
  11351. ],
  11352. "support": {
  11353. "issues": "https://github.com/laravel/sail/issues",
  11354. "source": "https://github.com/laravel/sail"
  11355. },
  11356. "time": "2022-06-06T14:28:04+00:00"
  11357. },
  11358. {
  11359. "name": "mockery/mockery",
  11360. "version": "1.5.0",
  11361. "source": {
  11362. "type": "git",
  11363. "url": "https://github.com/mockery/mockery.git",
  11364. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac"
  11365. },
  11366. "dist": {
  11367. "type": "zip",
  11368. "url": "https://api.github.com/repos/mockery/mockery/zipball/c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11369. "reference": "c10a5f6e06fc2470ab1822fa13fa2a7380f8fbac",
  11370. "shasum": "",
  11371. "mirrors": [
  11372. {
  11373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11374. "preferred": true
  11375. }
  11376. ]
  11377. },
  11378. "require": {
  11379. "hamcrest/hamcrest-php": "^2.0.1",
  11380. "lib-pcre": ">=7.0",
  11381. "php": "^7.3 || ^8.0"
  11382. },
  11383. "conflict": {
  11384. "phpunit/phpunit": "<8.0"
  11385. },
  11386. "require-dev": {
  11387. "phpunit/phpunit": "^8.5 || ^9.3"
  11388. },
  11389. "type": "library",
  11390. "extra": {
  11391. "branch-alias": {
  11392. "dev-master": "1.4.x-dev"
  11393. }
  11394. },
  11395. "autoload": {
  11396. "psr-0": {
  11397. "Mockery": "library/"
  11398. }
  11399. },
  11400. "notification-url": "https://packagist.org/downloads/",
  11401. "license": [
  11402. "BSD-3-Clause"
  11403. ],
  11404. "authors": [
  11405. {
  11406. "name": "Pádraic Brady",
  11407. "email": "padraic.brady@gmail.com",
  11408. "homepage": "http://blog.astrumfutura.com"
  11409. },
  11410. {
  11411. "name": "Dave Marshall",
  11412. "email": "dave.marshall@atstsolutions.co.uk",
  11413. "homepage": "http://davedevelopment.co.uk"
  11414. }
  11415. ],
  11416. "description": "Mockery is a simple yet flexible PHP mock object framework",
  11417. "homepage": "https://github.com/mockery/mockery",
  11418. "keywords": [
  11419. "BDD",
  11420. "TDD",
  11421. "library",
  11422. "mock",
  11423. "mock objects",
  11424. "mockery",
  11425. "stub",
  11426. "test",
  11427. "test double",
  11428. "testing"
  11429. ],
  11430. "support": {
  11431. "issues": "https://github.com/mockery/mockery/issues",
  11432. "source": "https://github.com/mockery/mockery/tree/1.5.0"
  11433. },
  11434. "time": "2022-01-20T13:18:17+00:00"
  11435. },
  11436. {
  11437. "name": "myclabs/deep-copy",
  11438. "version": "1.11.0",
  11439. "source": {
  11440. "type": "git",
  11441. "url": "https://github.com/myclabs/DeepCopy.git",
  11442. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  11443. },
  11444. "dist": {
  11445. "type": "zip",
  11446. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11447. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  11448. "shasum": "",
  11449. "mirrors": [
  11450. {
  11451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11452. "preferred": true
  11453. }
  11454. ]
  11455. },
  11456. "require": {
  11457. "php": "^7.1 || ^8.0"
  11458. },
  11459. "conflict": {
  11460. "doctrine/collections": "<1.6.8",
  11461. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  11462. },
  11463. "require-dev": {
  11464. "doctrine/collections": "^1.6.8",
  11465. "doctrine/common": "^2.13.3 || ^3.2.2",
  11466. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  11467. },
  11468. "type": "library",
  11469. "autoload": {
  11470. "files": [
  11471. "src/DeepCopy/deep_copy.php"
  11472. ],
  11473. "psr-4": {
  11474. "DeepCopy\\": "src/DeepCopy/"
  11475. }
  11476. },
  11477. "notification-url": "https://packagist.org/downloads/",
  11478. "license": [
  11479. "MIT"
  11480. ],
  11481. "description": "Create deep copies (clones) of your objects",
  11482. "keywords": [
  11483. "clone",
  11484. "copy",
  11485. "duplicate",
  11486. "object",
  11487. "object graph"
  11488. ],
  11489. "support": {
  11490. "issues": "https://github.com/myclabs/DeepCopy/issues",
  11491. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  11492. },
  11493. "funding": [
  11494. {
  11495. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  11496. "type": "tidelift"
  11497. }
  11498. ],
  11499. "time": "2022-03-03T13:19:32+00:00"
  11500. },
  11501. {
  11502. "name": "nunomaduro/collision",
  11503. "version": "v5.11.0",
  11504. "source": {
  11505. "type": "git",
  11506. "url": "https://github.com/nunomaduro/collision.git",
  11507. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  11508. },
  11509. "dist": {
  11510. "type": "zip",
  11511. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11512. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  11513. "shasum": "",
  11514. "mirrors": [
  11515. {
  11516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11517. "preferred": true
  11518. }
  11519. ]
  11520. },
  11521. "require": {
  11522. "facade/ignition-contracts": "^1.0",
  11523. "filp/whoops": "^2.14.3",
  11524. "php": "^7.3 || ^8.0",
  11525. "symfony/console": "^5.0"
  11526. },
  11527. "require-dev": {
  11528. "brianium/paratest": "^6.1",
  11529. "fideloper/proxy": "^4.4.1",
  11530. "fruitcake/laravel-cors": "^2.0.3",
  11531. "laravel/framework": "8.x-dev",
  11532. "nunomaduro/larastan": "^0.6.2",
  11533. "nunomaduro/mock-final-classes": "^1.0",
  11534. "orchestra/testbench": "^6.0",
  11535. "phpstan/phpstan": "^0.12.64",
  11536. "phpunit/phpunit": "^9.5.0"
  11537. },
  11538. "type": "library",
  11539. "extra": {
  11540. "laravel": {
  11541. "providers": [
  11542. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11543. ]
  11544. }
  11545. },
  11546. "autoload": {
  11547. "psr-4": {
  11548. "NunoMaduro\\Collision\\": "src/"
  11549. }
  11550. },
  11551. "notification-url": "https://packagist.org/downloads/",
  11552. "license": [
  11553. "MIT"
  11554. ],
  11555. "authors": [
  11556. {
  11557. "name": "Nuno Maduro",
  11558. "email": "enunomaduro@gmail.com"
  11559. }
  11560. ],
  11561. "description": "Cli error handling for console/command-line PHP applications.",
  11562. "keywords": [
  11563. "artisan",
  11564. "cli",
  11565. "command-line",
  11566. "console",
  11567. "error",
  11568. "handling",
  11569. "laravel",
  11570. "laravel-zero",
  11571. "php",
  11572. "symfony"
  11573. ],
  11574. "support": {
  11575. "issues": "https://github.com/nunomaduro/collision/issues",
  11576. "source": "https://github.com/nunomaduro/collision"
  11577. },
  11578. "funding": [
  11579. {
  11580. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11581. "type": "custom"
  11582. },
  11583. {
  11584. "url": "https://github.com/nunomaduro",
  11585. "type": "github"
  11586. },
  11587. {
  11588. "url": "https://www.patreon.com/nunomaduro",
  11589. "type": "patreon"
  11590. }
  11591. ],
  11592. "time": "2022-01-10T16:22:52+00:00"
  11593. },
  11594. {
  11595. "name": "phar-io/manifest",
  11596. "version": "2.0.3",
  11597. "source": {
  11598. "type": "git",
  11599. "url": "https://github.com/phar-io/manifest.git",
  11600. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  11601. },
  11602. "dist": {
  11603. "type": "zip",
  11604. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  11605. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  11606. "shasum": "",
  11607. "mirrors": [
  11608. {
  11609. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11610. "preferred": true
  11611. }
  11612. ]
  11613. },
  11614. "require": {
  11615. "ext-dom": "*",
  11616. "ext-phar": "*",
  11617. "ext-xmlwriter": "*",
  11618. "phar-io/version": "^3.0.1",
  11619. "php": "^7.2 || ^8.0"
  11620. },
  11621. "type": "library",
  11622. "extra": {
  11623. "branch-alias": {
  11624. "dev-master": "2.0.x-dev"
  11625. }
  11626. },
  11627. "autoload": {
  11628. "classmap": [
  11629. "src/"
  11630. ]
  11631. },
  11632. "notification-url": "https://packagist.org/downloads/",
  11633. "license": [
  11634. "BSD-3-Clause"
  11635. ],
  11636. "authors": [
  11637. {
  11638. "name": "Arne Blankerts",
  11639. "email": "arne@blankerts.de",
  11640. "role": "Developer"
  11641. },
  11642. {
  11643. "name": "Sebastian Heuer",
  11644. "email": "sebastian@phpeople.de",
  11645. "role": "Developer"
  11646. },
  11647. {
  11648. "name": "Sebastian Bergmann",
  11649. "email": "sebastian@phpunit.de",
  11650. "role": "Developer"
  11651. }
  11652. ],
  11653. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11654. "support": {
  11655. "issues": "https://github.com/phar-io/manifest/issues",
  11656. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11657. },
  11658. "time": "2021-07-20T11:28:43+00:00"
  11659. },
  11660. {
  11661. "name": "phar-io/version",
  11662. "version": "3.2.1",
  11663. "source": {
  11664. "type": "git",
  11665. "url": "https://github.com/phar-io/version.git",
  11666. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11667. },
  11668. "dist": {
  11669. "type": "zip",
  11670. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11671. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11672. "shasum": "",
  11673. "mirrors": [
  11674. {
  11675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11676. "preferred": true
  11677. }
  11678. ]
  11679. },
  11680. "require": {
  11681. "php": "^7.2 || ^8.0"
  11682. },
  11683. "type": "library",
  11684. "autoload": {
  11685. "classmap": [
  11686. "src/"
  11687. ]
  11688. },
  11689. "notification-url": "https://packagist.org/downloads/",
  11690. "license": [
  11691. "BSD-3-Clause"
  11692. ],
  11693. "authors": [
  11694. {
  11695. "name": "Arne Blankerts",
  11696. "email": "arne@blankerts.de",
  11697. "role": "Developer"
  11698. },
  11699. {
  11700. "name": "Sebastian Heuer",
  11701. "email": "sebastian@phpeople.de",
  11702. "role": "Developer"
  11703. },
  11704. {
  11705. "name": "Sebastian Bergmann",
  11706. "email": "sebastian@phpunit.de",
  11707. "role": "Developer"
  11708. }
  11709. ],
  11710. "description": "Library for handling version information and constraints",
  11711. "support": {
  11712. "issues": "https://github.com/phar-io/version/issues",
  11713. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11714. },
  11715. "time": "2022-02-21T01:04:05+00:00"
  11716. },
  11717. {
  11718. "name": "phpspec/prophecy",
  11719. "version": "v1.15.0",
  11720. "source": {
  11721. "type": "git",
  11722. "url": "https://github.com/phpspec/prophecy.git",
  11723. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  11724. },
  11725. "dist": {
  11726. "type": "zip",
  11727. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11728. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  11729. "shasum": "",
  11730. "mirrors": [
  11731. {
  11732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11733. "preferred": true
  11734. }
  11735. ]
  11736. },
  11737. "require": {
  11738. "doctrine/instantiator": "^1.2",
  11739. "php": "^7.2 || ~8.0, <8.2",
  11740. "phpdocumentor/reflection-docblock": "^5.2",
  11741. "sebastian/comparator": "^3.0 || ^4.0",
  11742. "sebastian/recursion-context": "^3.0 || ^4.0"
  11743. },
  11744. "require-dev": {
  11745. "phpspec/phpspec": "^6.0 || ^7.0",
  11746. "phpunit/phpunit": "^8.0 || ^9.0"
  11747. },
  11748. "type": "library",
  11749. "extra": {
  11750. "branch-alias": {
  11751. "dev-master": "1.x-dev"
  11752. }
  11753. },
  11754. "autoload": {
  11755. "psr-4": {
  11756. "Prophecy\\": "src/Prophecy"
  11757. }
  11758. },
  11759. "notification-url": "https://packagist.org/downloads/",
  11760. "license": [
  11761. "MIT"
  11762. ],
  11763. "authors": [
  11764. {
  11765. "name": "Konstantin Kudryashov",
  11766. "email": "ever.zet@gmail.com",
  11767. "homepage": "http://everzet.com"
  11768. },
  11769. {
  11770. "name": "Marcello Duarte",
  11771. "email": "marcello.duarte@gmail.com"
  11772. }
  11773. ],
  11774. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11775. "homepage": "https://github.com/phpspec/prophecy",
  11776. "keywords": [
  11777. "Double",
  11778. "Dummy",
  11779. "fake",
  11780. "mock",
  11781. "spy",
  11782. "stub"
  11783. ],
  11784. "support": {
  11785. "issues": "https://github.com/phpspec/prophecy/issues",
  11786. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  11787. },
  11788. "time": "2021-12-08T12:19:24+00:00"
  11789. },
  11790. {
  11791. "name": "phpunit/php-code-coverage",
  11792. "version": "9.2.15",
  11793. "source": {
  11794. "type": "git",
  11795. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11796. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f"
  11797. },
  11798. "dist": {
  11799. "type": "zip",
  11800. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11801. "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f",
  11802. "shasum": "",
  11803. "mirrors": [
  11804. {
  11805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11806. "preferred": true
  11807. }
  11808. ]
  11809. },
  11810. "require": {
  11811. "ext-dom": "*",
  11812. "ext-libxml": "*",
  11813. "ext-xmlwriter": "*",
  11814. "nikic/php-parser": "^4.13.0",
  11815. "php": ">=7.3",
  11816. "phpunit/php-file-iterator": "^3.0.3",
  11817. "phpunit/php-text-template": "^2.0.2",
  11818. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11819. "sebastian/complexity": "^2.0",
  11820. "sebastian/environment": "^5.1.2",
  11821. "sebastian/lines-of-code": "^1.0.3",
  11822. "sebastian/version": "^3.0.1",
  11823. "theseer/tokenizer": "^1.2.0"
  11824. },
  11825. "require-dev": {
  11826. "phpunit/phpunit": "^9.3"
  11827. },
  11828. "suggest": {
  11829. "ext-pcov": "*",
  11830. "ext-xdebug": "*"
  11831. },
  11832. "type": "library",
  11833. "extra": {
  11834. "branch-alias": {
  11835. "dev-master": "9.2-dev"
  11836. }
  11837. },
  11838. "autoload": {
  11839. "classmap": [
  11840. "src/"
  11841. ]
  11842. },
  11843. "notification-url": "https://packagist.org/downloads/",
  11844. "license": [
  11845. "BSD-3-Clause"
  11846. ],
  11847. "authors": [
  11848. {
  11849. "name": "Sebastian Bergmann",
  11850. "email": "sebastian@phpunit.de",
  11851. "role": "lead"
  11852. }
  11853. ],
  11854. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11855. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11856. "keywords": [
  11857. "coverage",
  11858. "testing",
  11859. "xunit"
  11860. ],
  11861. "support": {
  11862. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11863. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15"
  11864. },
  11865. "funding": [
  11866. {
  11867. "url": "https://github.com/sebastianbergmann",
  11868. "type": "github"
  11869. }
  11870. ],
  11871. "time": "2022-03-07T09:28:20+00:00"
  11872. },
  11873. {
  11874. "name": "phpunit/php-file-iterator",
  11875. "version": "3.0.6",
  11876. "source": {
  11877. "type": "git",
  11878. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11879. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11880. },
  11881. "dist": {
  11882. "type": "zip",
  11883. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11884. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11885. "shasum": "",
  11886. "mirrors": [
  11887. {
  11888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11889. "preferred": true
  11890. }
  11891. ]
  11892. },
  11893. "require": {
  11894. "php": ">=7.3"
  11895. },
  11896. "require-dev": {
  11897. "phpunit/phpunit": "^9.3"
  11898. },
  11899. "type": "library",
  11900. "extra": {
  11901. "branch-alias": {
  11902. "dev-master": "3.0-dev"
  11903. }
  11904. },
  11905. "autoload": {
  11906. "classmap": [
  11907. "src/"
  11908. ]
  11909. },
  11910. "notification-url": "https://packagist.org/downloads/",
  11911. "license": [
  11912. "BSD-3-Clause"
  11913. ],
  11914. "authors": [
  11915. {
  11916. "name": "Sebastian Bergmann",
  11917. "email": "sebastian@phpunit.de",
  11918. "role": "lead"
  11919. }
  11920. ],
  11921. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11922. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11923. "keywords": [
  11924. "filesystem",
  11925. "iterator"
  11926. ],
  11927. "support": {
  11928. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11929. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11930. },
  11931. "funding": [
  11932. {
  11933. "url": "https://github.com/sebastianbergmann",
  11934. "type": "github"
  11935. }
  11936. ],
  11937. "time": "2021-12-02T12:48:52+00:00"
  11938. },
  11939. {
  11940. "name": "phpunit/php-invoker",
  11941. "version": "3.1.1",
  11942. "source": {
  11943. "type": "git",
  11944. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11945. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11946. },
  11947. "dist": {
  11948. "type": "zip",
  11949. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11950. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11951. "shasum": "",
  11952. "mirrors": [
  11953. {
  11954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11955. "preferred": true
  11956. }
  11957. ]
  11958. },
  11959. "require": {
  11960. "php": ">=7.3"
  11961. },
  11962. "require-dev": {
  11963. "ext-pcntl": "*",
  11964. "phpunit/phpunit": "^9.3"
  11965. },
  11966. "suggest": {
  11967. "ext-pcntl": "*"
  11968. },
  11969. "type": "library",
  11970. "extra": {
  11971. "branch-alias": {
  11972. "dev-master": "3.1-dev"
  11973. }
  11974. },
  11975. "autoload": {
  11976. "classmap": [
  11977. "src/"
  11978. ]
  11979. },
  11980. "notification-url": "https://packagist.org/downloads/",
  11981. "license": [
  11982. "BSD-3-Clause"
  11983. ],
  11984. "authors": [
  11985. {
  11986. "name": "Sebastian Bergmann",
  11987. "email": "sebastian@phpunit.de",
  11988. "role": "lead"
  11989. }
  11990. ],
  11991. "description": "Invoke callables with a timeout",
  11992. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11993. "keywords": [
  11994. "process"
  11995. ],
  11996. "support": {
  11997. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11998. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11999. },
  12000. "funding": [
  12001. {
  12002. "url": "https://github.com/sebastianbergmann",
  12003. "type": "github"
  12004. }
  12005. ],
  12006. "time": "2020-09-28T05:58:55+00:00"
  12007. },
  12008. {
  12009. "name": "phpunit/php-text-template",
  12010. "version": "2.0.4",
  12011. "source": {
  12012. "type": "git",
  12013. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  12014. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  12015. },
  12016. "dist": {
  12017. "type": "zip",
  12018. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  12019. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  12020. "shasum": "",
  12021. "mirrors": [
  12022. {
  12023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12024. "preferred": true
  12025. }
  12026. ]
  12027. },
  12028. "require": {
  12029. "php": ">=7.3"
  12030. },
  12031. "require-dev": {
  12032. "phpunit/phpunit": "^9.3"
  12033. },
  12034. "type": "library",
  12035. "extra": {
  12036. "branch-alias": {
  12037. "dev-master": "2.0-dev"
  12038. }
  12039. },
  12040. "autoload": {
  12041. "classmap": [
  12042. "src/"
  12043. ]
  12044. },
  12045. "notification-url": "https://packagist.org/downloads/",
  12046. "license": [
  12047. "BSD-3-Clause"
  12048. ],
  12049. "authors": [
  12050. {
  12051. "name": "Sebastian Bergmann",
  12052. "email": "sebastian@phpunit.de",
  12053. "role": "lead"
  12054. }
  12055. ],
  12056. "description": "Simple template engine.",
  12057. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12058. "keywords": [
  12059. "template"
  12060. ],
  12061. "support": {
  12062. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  12063. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  12064. },
  12065. "funding": [
  12066. {
  12067. "url": "https://github.com/sebastianbergmann",
  12068. "type": "github"
  12069. }
  12070. ],
  12071. "time": "2020-10-26T05:33:50+00:00"
  12072. },
  12073. {
  12074. "name": "phpunit/php-timer",
  12075. "version": "5.0.3",
  12076. "source": {
  12077. "type": "git",
  12078. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12079. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  12080. },
  12081. "dist": {
  12082. "type": "zip",
  12083. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  12084. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  12085. "shasum": "",
  12086. "mirrors": [
  12087. {
  12088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12089. "preferred": true
  12090. }
  12091. ]
  12092. },
  12093. "require": {
  12094. "php": ">=7.3"
  12095. },
  12096. "require-dev": {
  12097. "phpunit/phpunit": "^9.3"
  12098. },
  12099. "type": "library",
  12100. "extra": {
  12101. "branch-alias": {
  12102. "dev-master": "5.0-dev"
  12103. }
  12104. },
  12105. "autoload": {
  12106. "classmap": [
  12107. "src/"
  12108. ]
  12109. },
  12110. "notification-url": "https://packagist.org/downloads/",
  12111. "license": [
  12112. "BSD-3-Clause"
  12113. ],
  12114. "authors": [
  12115. {
  12116. "name": "Sebastian Bergmann",
  12117. "email": "sebastian@phpunit.de",
  12118. "role": "lead"
  12119. }
  12120. ],
  12121. "description": "Utility class for timing",
  12122. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12123. "keywords": [
  12124. "timer"
  12125. ],
  12126. "support": {
  12127. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  12128. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  12129. },
  12130. "funding": [
  12131. {
  12132. "url": "https://github.com/sebastianbergmann",
  12133. "type": "github"
  12134. }
  12135. ],
  12136. "time": "2020-10-26T13:16:10+00:00"
  12137. },
  12138. {
  12139. "name": "phpunit/phpunit",
  12140. "version": "9.5.21",
  12141. "source": {
  12142. "type": "git",
  12143. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12144. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1"
  12145. },
  12146. "dist": {
  12147. "type": "zip",
  12148. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1",
  12149. "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1",
  12150. "shasum": "",
  12151. "mirrors": [
  12152. {
  12153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12154. "preferred": true
  12155. }
  12156. ]
  12157. },
  12158. "require": {
  12159. "doctrine/instantiator": "^1.3.1",
  12160. "ext-dom": "*",
  12161. "ext-json": "*",
  12162. "ext-libxml": "*",
  12163. "ext-mbstring": "*",
  12164. "ext-xml": "*",
  12165. "ext-xmlwriter": "*",
  12166. "myclabs/deep-copy": "^1.10.1",
  12167. "phar-io/manifest": "^2.0.3",
  12168. "phar-io/version": "^3.0.2",
  12169. "php": ">=7.3",
  12170. "phpspec/prophecy": "^1.12.1",
  12171. "phpunit/php-code-coverage": "^9.2.13",
  12172. "phpunit/php-file-iterator": "^3.0.5",
  12173. "phpunit/php-invoker": "^3.1.1",
  12174. "phpunit/php-text-template": "^2.0.3",
  12175. "phpunit/php-timer": "^5.0.2",
  12176. "sebastian/cli-parser": "^1.0.1",
  12177. "sebastian/code-unit": "^1.0.6",
  12178. "sebastian/comparator": "^4.0.5",
  12179. "sebastian/diff": "^4.0.3",
  12180. "sebastian/environment": "^5.1.3",
  12181. "sebastian/exporter": "^4.0.3",
  12182. "sebastian/global-state": "^5.0.1",
  12183. "sebastian/object-enumerator": "^4.0.3",
  12184. "sebastian/resource-operations": "^3.0.3",
  12185. "sebastian/type": "^3.0",
  12186. "sebastian/version": "^3.0.2"
  12187. },
  12188. "require-dev": {
  12189. "phpspec/prophecy-phpunit": "^2.0.1"
  12190. },
  12191. "suggest": {
  12192. "ext-soap": "*",
  12193. "ext-xdebug": "*"
  12194. },
  12195. "bin": [
  12196. "phpunit"
  12197. ],
  12198. "type": "library",
  12199. "extra": {
  12200. "branch-alias": {
  12201. "dev-master": "9.5-dev"
  12202. }
  12203. },
  12204. "autoload": {
  12205. "files": [
  12206. "src/Framework/Assert/Functions.php"
  12207. ],
  12208. "classmap": [
  12209. "src/"
  12210. ]
  12211. },
  12212. "notification-url": "https://packagist.org/downloads/",
  12213. "license": [
  12214. "BSD-3-Clause"
  12215. ],
  12216. "authors": [
  12217. {
  12218. "name": "Sebastian Bergmann",
  12219. "email": "sebastian@phpunit.de",
  12220. "role": "lead"
  12221. }
  12222. ],
  12223. "description": "The PHP Unit Testing framework.",
  12224. "homepage": "https://phpunit.de/",
  12225. "keywords": [
  12226. "phpunit",
  12227. "testing",
  12228. "xunit"
  12229. ],
  12230. "support": {
  12231. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  12232. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21"
  12233. },
  12234. "funding": [
  12235. {
  12236. "url": "https://phpunit.de/sponsors.html",
  12237. "type": "custom"
  12238. },
  12239. {
  12240. "url": "https://github.com/sebastianbergmann",
  12241. "type": "github"
  12242. }
  12243. ],
  12244. "time": "2022-06-19T12:14:25+00:00"
  12245. },
  12246. {
  12247. "name": "sebastian/cli-parser",
  12248. "version": "1.0.1",
  12249. "source": {
  12250. "type": "git",
  12251. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  12252. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  12253. },
  12254. "dist": {
  12255. "type": "zip",
  12256. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12257. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  12258. "shasum": "",
  12259. "mirrors": [
  12260. {
  12261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12262. "preferred": true
  12263. }
  12264. ]
  12265. },
  12266. "require": {
  12267. "php": ">=7.3"
  12268. },
  12269. "require-dev": {
  12270. "phpunit/phpunit": "^9.3"
  12271. },
  12272. "type": "library",
  12273. "extra": {
  12274. "branch-alias": {
  12275. "dev-master": "1.0-dev"
  12276. }
  12277. },
  12278. "autoload": {
  12279. "classmap": [
  12280. "src/"
  12281. ]
  12282. },
  12283. "notification-url": "https://packagist.org/downloads/",
  12284. "license": [
  12285. "BSD-3-Clause"
  12286. ],
  12287. "authors": [
  12288. {
  12289. "name": "Sebastian Bergmann",
  12290. "email": "sebastian@phpunit.de",
  12291. "role": "lead"
  12292. }
  12293. ],
  12294. "description": "Library for parsing CLI options",
  12295. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  12296. "support": {
  12297. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  12298. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  12299. },
  12300. "funding": [
  12301. {
  12302. "url": "https://github.com/sebastianbergmann",
  12303. "type": "github"
  12304. }
  12305. ],
  12306. "time": "2020-09-28T06:08:49+00:00"
  12307. },
  12308. {
  12309. "name": "sebastian/code-unit",
  12310. "version": "1.0.8",
  12311. "source": {
  12312. "type": "git",
  12313. "url": "https://github.com/sebastianbergmann/code-unit.git",
  12314. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  12315. },
  12316. "dist": {
  12317. "type": "zip",
  12318. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12319. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  12320. "shasum": "",
  12321. "mirrors": [
  12322. {
  12323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12324. "preferred": true
  12325. }
  12326. ]
  12327. },
  12328. "require": {
  12329. "php": ">=7.3"
  12330. },
  12331. "require-dev": {
  12332. "phpunit/phpunit": "^9.3"
  12333. },
  12334. "type": "library",
  12335. "extra": {
  12336. "branch-alias": {
  12337. "dev-master": "1.0-dev"
  12338. }
  12339. },
  12340. "autoload": {
  12341. "classmap": [
  12342. "src/"
  12343. ]
  12344. },
  12345. "notification-url": "https://packagist.org/downloads/",
  12346. "license": [
  12347. "BSD-3-Clause"
  12348. ],
  12349. "authors": [
  12350. {
  12351. "name": "Sebastian Bergmann",
  12352. "email": "sebastian@phpunit.de",
  12353. "role": "lead"
  12354. }
  12355. ],
  12356. "description": "Collection of value objects that represent the PHP code units",
  12357. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12358. "support": {
  12359. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12360. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  12361. },
  12362. "funding": [
  12363. {
  12364. "url": "https://github.com/sebastianbergmann",
  12365. "type": "github"
  12366. }
  12367. ],
  12368. "time": "2020-10-26T13:08:54+00:00"
  12369. },
  12370. {
  12371. "name": "sebastian/code-unit-reverse-lookup",
  12372. "version": "2.0.3",
  12373. "source": {
  12374. "type": "git",
  12375. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12376. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  12377. },
  12378. "dist": {
  12379. "type": "zip",
  12380. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12381. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  12382. "shasum": "",
  12383. "mirrors": [
  12384. {
  12385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12386. "preferred": true
  12387. }
  12388. ]
  12389. },
  12390. "require": {
  12391. "php": ">=7.3"
  12392. },
  12393. "require-dev": {
  12394. "phpunit/phpunit": "^9.3"
  12395. },
  12396. "type": "library",
  12397. "extra": {
  12398. "branch-alias": {
  12399. "dev-master": "2.0-dev"
  12400. }
  12401. },
  12402. "autoload": {
  12403. "classmap": [
  12404. "src/"
  12405. ]
  12406. },
  12407. "notification-url": "https://packagist.org/downloads/",
  12408. "license": [
  12409. "BSD-3-Clause"
  12410. ],
  12411. "authors": [
  12412. {
  12413. "name": "Sebastian Bergmann",
  12414. "email": "sebastian@phpunit.de"
  12415. }
  12416. ],
  12417. "description": "Looks up which function or method a line of code belongs to",
  12418. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12419. "support": {
  12420. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12421. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  12422. },
  12423. "funding": [
  12424. {
  12425. "url": "https://github.com/sebastianbergmann",
  12426. "type": "github"
  12427. }
  12428. ],
  12429. "time": "2020-09-28T05:30:19+00:00"
  12430. },
  12431. {
  12432. "name": "sebastian/comparator",
  12433. "version": "4.0.6",
  12434. "source": {
  12435. "type": "git",
  12436. "url": "https://github.com/sebastianbergmann/comparator.git",
  12437. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  12438. },
  12439. "dist": {
  12440. "type": "zip",
  12441. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  12442. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  12443. "shasum": "",
  12444. "mirrors": [
  12445. {
  12446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12447. "preferred": true
  12448. }
  12449. ]
  12450. },
  12451. "require": {
  12452. "php": ">=7.3",
  12453. "sebastian/diff": "^4.0",
  12454. "sebastian/exporter": "^4.0"
  12455. },
  12456. "require-dev": {
  12457. "phpunit/phpunit": "^9.3"
  12458. },
  12459. "type": "library",
  12460. "extra": {
  12461. "branch-alias": {
  12462. "dev-master": "4.0-dev"
  12463. }
  12464. },
  12465. "autoload": {
  12466. "classmap": [
  12467. "src/"
  12468. ]
  12469. },
  12470. "notification-url": "https://packagist.org/downloads/",
  12471. "license": [
  12472. "BSD-3-Clause"
  12473. ],
  12474. "authors": [
  12475. {
  12476. "name": "Sebastian Bergmann",
  12477. "email": "sebastian@phpunit.de"
  12478. },
  12479. {
  12480. "name": "Jeff Welch",
  12481. "email": "whatthejeff@gmail.com"
  12482. },
  12483. {
  12484. "name": "Volker Dusch",
  12485. "email": "github@wallbash.com"
  12486. },
  12487. {
  12488. "name": "Bernhard Schussek",
  12489. "email": "bschussek@2bepublished.at"
  12490. }
  12491. ],
  12492. "description": "Provides the functionality to compare PHP values for equality",
  12493. "homepage": "https://github.com/sebastianbergmann/comparator",
  12494. "keywords": [
  12495. "comparator",
  12496. "compare",
  12497. "equality"
  12498. ],
  12499. "support": {
  12500. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12501. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  12502. },
  12503. "funding": [
  12504. {
  12505. "url": "https://github.com/sebastianbergmann",
  12506. "type": "github"
  12507. }
  12508. ],
  12509. "time": "2020-10-26T15:49:45+00:00"
  12510. },
  12511. {
  12512. "name": "sebastian/complexity",
  12513. "version": "2.0.2",
  12514. "source": {
  12515. "type": "git",
  12516. "url": "https://github.com/sebastianbergmann/complexity.git",
  12517. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  12518. },
  12519. "dist": {
  12520. "type": "zip",
  12521. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  12522. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  12523. "shasum": "",
  12524. "mirrors": [
  12525. {
  12526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12527. "preferred": true
  12528. }
  12529. ]
  12530. },
  12531. "require": {
  12532. "nikic/php-parser": "^4.7",
  12533. "php": ">=7.3"
  12534. },
  12535. "require-dev": {
  12536. "phpunit/phpunit": "^9.3"
  12537. },
  12538. "type": "library",
  12539. "extra": {
  12540. "branch-alias": {
  12541. "dev-master": "2.0-dev"
  12542. }
  12543. },
  12544. "autoload": {
  12545. "classmap": [
  12546. "src/"
  12547. ]
  12548. },
  12549. "notification-url": "https://packagist.org/downloads/",
  12550. "license": [
  12551. "BSD-3-Clause"
  12552. ],
  12553. "authors": [
  12554. {
  12555. "name": "Sebastian Bergmann",
  12556. "email": "sebastian@phpunit.de",
  12557. "role": "lead"
  12558. }
  12559. ],
  12560. "description": "Library for calculating the complexity of PHP code units",
  12561. "homepage": "https://github.com/sebastianbergmann/complexity",
  12562. "support": {
  12563. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12564. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  12565. },
  12566. "funding": [
  12567. {
  12568. "url": "https://github.com/sebastianbergmann",
  12569. "type": "github"
  12570. }
  12571. ],
  12572. "time": "2020-10-26T15:52:27+00:00"
  12573. },
  12574. {
  12575. "name": "sebastian/diff",
  12576. "version": "4.0.4",
  12577. "source": {
  12578. "type": "git",
  12579. "url": "https://github.com/sebastianbergmann/diff.git",
  12580. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  12581. },
  12582. "dist": {
  12583. "type": "zip",
  12584. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12585. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  12586. "shasum": "",
  12587. "mirrors": [
  12588. {
  12589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12590. "preferred": true
  12591. }
  12592. ]
  12593. },
  12594. "require": {
  12595. "php": ">=7.3"
  12596. },
  12597. "require-dev": {
  12598. "phpunit/phpunit": "^9.3",
  12599. "symfony/process": "^4.2 || ^5"
  12600. },
  12601. "type": "library",
  12602. "extra": {
  12603. "branch-alias": {
  12604. "dev-master": "4.0-dev"
  12605. }
  12606. },
  12607. "autoload": {
  12608. "classmap": [
  12609. "src/"
  12610. ]
  12611. },
  12612. "notification-url": "https://packagist.org/downloads/",
  12613. "license": [
  12614. "BSD-3-Clause"
  12615. ],
  12616. "authors": [
  12617. {
  12618. "name": "Sebastian Bergmann",
  12619. "email": "sebastian@phpunit.de"
  12620. },
  12621. {
  12622. "name": "Kore Nordmann",
  12623. "email": "mail@kore-nordmann.de"
  12624. }
  12625. ],
  12626. "description": "Diff implementation",
  12627. "homepage": "https://github.com/sebastianbergmann/diff",
  12628. "keywords": [
  12629. "diff",
  12630. "udiff",
  12631. "unidiff",
  12632. "unified diff"
  12633. ],
  12634. "support": {
  12635. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12636. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  12637. },
  12638. "funding": [
  12639. {
  12640. "url": "https://github.com/sebastianbergmann",
  12641. "type": "github"
  12642. }
  12643. ],
  12644. "time": "2020-10-26T13:10:38+00:00"
  12645. },
  12646. {
  12647. "name": "sebastian/environment",
  12648. "version": "5.1.4",
  12649. "source": {
  12650. "type": "git",
  12651. "url": "https://github.com/sebastianbergmann/environment.git",
  12652. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  12653. },
  12654. "dist": {
  12655. "type": "zip",
  12656. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12657. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  12658. "shasum": "",
  12659. "mirrors": [
  12660. {
  12661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12662. "preferred": true
  12663. }
  12664. ]
  12665. },
  12666. "require": {
  12667. "php": ">=7.3"
  12668. },
  12669. "require-dev": {
  12670. "phpunit/phpunit": "^9.3"
  12671. },
  12672. "suggest": {
  12673. "ext-posix": "*"
  12674. },
  12675. "type": "library",
  12676. "extra": {
  12677. "branch-alias": {
  12678. "dev-master": "5.1-dev"
  12679. }
  12680. },
  12681. "autoload": {
  12682. "classmap": [
  12683. "src/"
  12684. ]
  12685. },
  12686. "notification-url": "https://packagist.org/downloads/",
  12687. "license": [
  12688. "BSD-3-Clause"
  12689. ],
  12690. "authors": [
  12691. {
  12692. "name": "Sebastian Bergmann",
  12693. "email": "sebastian@phpunit.de"
  12694. }
  12695. ],
  12696. "description": "Provides functionality to handle HHVM/PHP environments",
  12697. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12698. "keywords": [
  12699. "Xdebug",
  12700. "environment",
  12701. "hhvm"
  12702. ],
  12703. "support": {
  12704. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12705. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  12706. },
  12707. "funding": [
  12708. {
  12709. "url": "https://github.com/sebastianbergmann",
  12710. "type": "github"
  12711. }
  12712. ],
  12713. "time": "2022-04-03T09:37:03+00:00"
  12714. },
  12715. {
  12716. "name": "sebastian/exporter",
  12717. "version": "4.0.4",
  12718. "source": {
  12719. "type": "git",
  12720. "url": "https://github.com/sebastianbergmann/exporter.git",
  12721. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  12722. },
  12723. "dist": {
  12724. "type": "zip",
  12725. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12726. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  12727. "shasum": "",
  12728. "mirrors": [
  12729. {
  12730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12731. "preferred": true
  12732. }
  12733. ]
  12734. },
  12735. "require": {
  12736. "php": ">=7.3",
  12737. "sebastian/recursion-context": "^4.0"
  12738. },
  12739. "require-dev": {
  12740. "ext-mbstring": "*",
  12741. "phpunit/phpunit": "^9.3"
  12742. },
  12743. "type": "library",
  12744. "extra": {
  12745. "branch-alias": {
  12746. "dev-master": "4.0-dev"
  12747. }
  12748. },
  12749. "autoload": {
  12750. "classmap": [
  12751. "src/"
  12752. ]
  12753. },
  12754. "notification-url": "https://packagist.org/downloads/",
  12755. "license": [
  12756. "BSD-3-Clause"
  12757. ],
  12758. "authors": [
  12759. {
  12760. "name": "Sebastian Bergmann",
  12761. "email": "sebastian@phpunit.de"
  12762. },
  12763. {
  12764. "name": "Jeff Welch",
  12765. "email": "whatthejeff@gmail.com"
  12766. },
  12767. {
  12768. "name": "Volker Dusch",
  12769. "email": "github@wallbash.com"
  12770. },
  12771. {
  12772. "name": "Adam Harvey",
  12773. "email": "aharvey@php.net"
  12774. },
  12775. {
  12776. "name": "Bernhard Schussek",
  12777. "email": "bschussek@gmail.com"
  12778. }
  12779. ],
  12780. "description": "Provides the functionality to export PHP variables for visualization",
  12781. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12782. "keywords": [
  12783. "export",
  12784. "exporter"
  12785. ],
  12786. "support": {
  12787. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12788. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  12789. },
  12790. "funding": [
  12791. {
  12792. "url": "https://github.com/sebastianbergmann",
  12793. "type": "github"
  12794. }
  12795. ],
  12796. "time": "2021-11-11T14:18:36+00:00"
  12797. },
  12798. {
  12799. "name": "sebastian/global-state",
  12800. "version": "5.0.5",
  12801. "source": {
  12802. "type": "git",
  12803. "url": "https://github.com/sebastianbergmann/global-state.git",
  12804. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  12805. },
  12806. "dist": {
  12807. "type": "zip",
  12808. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12809. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  12810. "shasum": "",
  12811. "mirrors": [
  12812. {
  12813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12814. "preferred": true
  12815. }
  12816. ]
  12817. },
  12818. "require": {
  12819. "php": ">=7.3",
  12820. "sebastian/object-reflector": "^2.0",
  12821. "sebastian/recursion-context": "^4.0"
  12822. },
  12823. "require-dev": {
  12824. "ext-dom": "*",
  12825. "phpunit/phpunit": "^9.3"
  12826. },
  12827. "suggest": {
  12828. "ext-uopz": "*"
  12829. },
  12830. "type": "library",
  12831. "extra": {
  12832. "branch-alias": {
  12833. "dev-master": "5.0-dev"
  12834. }
  12835. },
  12836. "autoload": {
  12837. "classmap": [
  12838. "src/"
  12839. ]
  12840. },
  12841. "notification-url": "https://packagist.org/downloads/",
  12842. "license": [
  12843. "BSD-3-Clause"
  12844. ],
  12845. "authors": [
  12846. {
  12847. "name": "Sebastian Bergmann",
  12848. "email": "sebastian@phpunit.de"
  12849. }
  12850. ],
  12851. "description": "Snapshotting of global state",
  12852. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12853. "keywords": [
  12854. "global state"
  12855. ],
  12856. "support": {
  12857. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12858. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  12859. },
  12860. "funding": [
  12861. {
  12862. "url": "https://github.com/sebastianbergmann",
  12863. "type": "github"
  12864. }
  12865. ],
  12866. "time": "2022-02-14T08:28:10+00:00"
  12867. },
  12868. {
  12869. "name": "sebastian/lines-of-code",
  12870. "version": "1.0.3",
  12871. "source": {
  12872. "type": "git",
  12873. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12874. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  12875. },
  12876. "dist": {
  12877. "type": "zip",
  12878. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12879. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  12880. "shasum": "",
  12881. "mirrors": [
  12882. {
  12883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12884. "preferred": true
  12885. }
  12886. ]
  12887. },
  12888. "require": {
  12889. "nikic/php-parser": "^4.6",
  12890. "php": ">=7.3"
  12891. },
  12892. "require-dev": {
  12893. "phpunit/phpunit": "^9.3"
  12894. },
  12895. "type": "library",
  12896. "extra": {
  12897. "branch-alias": {
  12898. "dev-master": "1.0-dev"
  12899. }
  12900. },
  12901. "autoload": {
  12902. "classmap": [
  12903. "src/"
  12904. ]
  12905. },
  12906. "notification-url": "https://packagist.org/downloads/",
  12907. "license": [
  12908. "BSD-3-Clause"
  12909. ],
  12910. "authors": [
  12911. {
  12912. "name": "Sebastian Bergmann",
  12913. "email": "sebastian@phpunit.de",
  12914. "role": "lead"
  12915. }
  12916. ],
  12917. "description": "Library for counting the lines of code in PHP source code",
  12918. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12919. "support": {
  12920. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12921. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  12922. },
  12923. "funding": [
  12924. {
  12925. "url": "https://github.com/sebastianbergmann",
  12926. "type": "github"
  12927. }
  12928. ],
  12929. "time": "2020-11-28T06:42:11+00:00"
  12930. },
  12931. {
  12932. "name": "sebastian/object-enumerator",
  12933. "version": "4.0.4",
  12934. "source": {
  12935. "type": "git",
  12936. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12937. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12938. },
  12939. "dist": {
  12940. "type": "zip",
  12941. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12942. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12943. "shasum": "",
  12944. "mirrors": [
  12945. {
  12946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12947. "preferred": true
  12948. }
  12949. ]
  12950. },
  12951. "require": {
  12952. "php": ">=7.3",
  12953. "sebastian/object-reflector": "^2.0",
  12954. "sebastian/recursion-context": "^4.0"
  12955. },
  12956. "require-dev": {
  12957. "phpunit/phpunit": "^9.3"
  12958. },
  12959. "type": "library",
  12960. "extra": {
  12961. "branch-alias": {
  12962. "dev-master": "4.0-dev"
  12963. }
  12964. },
  12965. "autoload": {
  12966. "classmap": [
  12967. "src/"
  12968. ]
  12969. },
  12970. "notification-url": "https://packagist.org/downloads/",
  12971. "license": [
  12972. "BSD-3-Clause"
  12973. ],
  12974. "authors": [
  12975. {
  12976. "name": "Sebastian Bergmann",
  12977. "email": "sebastian@phpunit.de"
  12978. }
  12979. ],
  12980. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12981. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12982. "support": {
  12983. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12984. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12985. },
  12986. "funding": [
  12987. {
  12988. "url": "https://github.com/sebastianbergmann",
  12989. "type": "github"
  12990. }
  12991. ],
  12992. "time": "2020-10-26T13:12:34+00:00"
  12993. },
  12994. {
  12995. "name": "sebastian/object-reflector",
  12996. "version": "2.0.4",
  12997. "source": {
  12998. "type": "git",
  12999. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  13000. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  13001. },
  13002. "dist": {
  13003. "type": "zip",
  13004. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  13005. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  13006. "shasum": "",
  13007. "mirrors": [
  13008. {
  13009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13010. "preferred": true
  13011. }
  13012. ]
  13013. },
  13014. "require": {
  13015. "php": ">=7.3"
  13016. },
  13017. "require-dev": {
  13018. "phpunit/phpunit": "^9.3"
  13019. },
  13020. "type": "library",
  13021. "extra": {
  13022. "branch-alias": {
  13023. "dev-master": "2.0-dev"
  13024. }
  13025. },
  13026. "autoload": {
  13027. "classmap": [
  13028. "src/"
  13029. ]
  13030. },
  13031. "notification-url": "https://packagist.org/downloads/",
  13032. "license": [
  13033. "BSD-3-Clause"
  13034. ],
  13035. "authors": [
  13036. {
  13037. "name": "Sebastian Bergmann",
  13038. "email": "sebastian@phpunit.de"
  13039. }
  13040. ],
  13041. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  13042. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  13043. "support": {
  13044. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  13045. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  13046. },
  13047. "funding": [
  13048. {
  13049. "url": "https://github.com/sebastianbergmann",
  13050. "type": "github"
  13051. }
  13052. ],
  13053. "time": "2020-10-26T13:14:26+00:00"
  13054. },
  13055. {
  13056. "name": "sebastian/recursion-context",
  13057. "version": "4.0.4",
  13058. "source": {
  13059. "type": "git",
  13060. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  13061. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  13062. },
  13063. "dist": {
  13064. "type": "zip",
  13065. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  13066. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  13067. "shasum": "",
  13068. "mirrors": [
  13069. {
  13070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13071. "preferred": true
  13072. }
  13073. ]
  13074. },
  13075. "require": {
  13076. "php": ">=7.3"
  13077. },
  13078. "require-dev": {
  13079. "phpunit/phpunit": "^9.3"
  13080. },
  13081. "type": "library",
  13082. "extra": {
  13083. "branch-alias": {
  13084. "dev-master": "4.0-dev"
  13085. }
  13086. },
  13087. "autoload": {
  13088. "classmap": [
  13089. "src/"
  13090. ]
  13091. },
  13092. "notification-url": "https://packagist.org/downloads/",
  13093. "license": [
  13094. "BSD-3-Clause"
  13095. ],
  13096. "authors": [
  13097. {
  13098. "name": "Sebastian Bergmann",
  13099. "email": "sebastian@phpunit.de"
  13100. },
  13101. {
  13102. "name": "Jeff Welch",
  13103. "email": "whatthejeff@gmail.com"
  13104. },
  13105. {
  13106. "name": "Adam Harvey",
  13107. "email": "aharvey@php.net"
  13108. }
  13109. ],
  13110. "description": "Provides functionality to recursively process PHP variables",
  13111. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  13112. "support": {
  13113. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  13114. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  13115. },
  13116. "funding": [
  13117. {
  13118. "url": "https://github.com/sebastianbergmann",
  13119. "type": "github"
  13120. }
  13121. ],
  13122. "time": "2020-10-26T13:17:30+00:00"
  13123. },
  13124. {
  13125. "name": "sebastian/resource-operations",
  13126. "version": "3.0.3",
  13127. "source": {
  13128. "type": "git",
  13129. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  13130. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  13131. },
  13132. "dist": {
  13133. "type": "zip",
  13134. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  13135. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  13136. "shasum": "",
  13137. "mirrors": [
  13138. {
  13139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13140. "preferred": true
  13141. }
  13142. ]
  13143. },
  13144. "require": {
  13145. "php": ">=7.3"
  13146. },
  13147. "require-dev": {
  13148. "phpunit/phpunit": "^9.0"
  13149. },
  13150. "type": "library",
  13151. "extra": {
  13152. "branch-alias": {
  13153. "dev-master": "3.0-dev"
  13154. }
  13155. },
  13156. "autoload": {
  13157. "classmap": [
  13158. "src/"
  13159. ]
  13160. },
  13161. "notification-url": "https://packagist.org/downloads/",
  13162. "license": [
  13163. "BSD-3-Clause"
  13164. ],
  13165. "authors": [
  13166. {
  13167. "name": "Sebastian Bergmann",
  13168. "email": "sebastian@phpunit.de"
  13169. }
  13170. ],
  13171. "description": "Provides a list of PHP built-in functions that operate on resources",
  13172. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  13173. "support": {
  13174. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  13175. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  13176. },
  13177. "funding": [
  13178. {
  13179. "url": "https://github.com/sebastianbergmann",
  13180. "type": "github"
  13181. }
  13182. ],
  13183. "time": "2020-09-28T06:45:17+00:00"
  13184. },
  13185. {
  13186. "name": "sebastian/type",
  13187. "version": "3.0.x-dev",
  13188. "source": {
  13189. "type": "git",
  13190. "url": "https://github.com/sebastianbergmann/type.git",
  13191. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618"
  13192. },
  13193. "dist": {
  13194. "type": "zip",
  13195. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/afad3e987736f63bc54d7c923f0c1ebf247e8618",
  13196. "reference": "afad3e987736f63bc54d7c923f0c1ebf247e8618",
  13197. "shasum": "",
  13198. "mirrors": [
  13199. {
  13200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13201. "preferred": true
  13202. }
  13203. ]
  13204. },
  13205. "require": {
  13206. "php": ">=7.3"
  13207. },
  13208. "require-dev": {
  13209. "phpunit/phpunit": "^9.5"
  13210. },
  13211. "type": "library",
  13212. "extra": {
  13213. "branch-alias": {
  13214. "dev-master": "3.0-dev"
  13215. }
  13216. },
  13217. "autoload": {
  13218. "classmap": [
  13219. "src/"
  13220. ]
  13221. },
  13222. "notification-url": "https://packagist.org/downloads/",
  13223. "license": [
  13224. "BSD-3-Clause"
  13225. ],
  13226. "authors": [
  13227. {
  13228. "name": "Sebastian Bergmann",
  13229. "email": "sebastian@phpunit.de",
  13230. "role": "lead"
  13231. }
  13232. ],
  13233. "description": "Collection of value objects that represent the types of the PHP type system",
  13234. "homepage": "https://github.com/sebastianbergmann/type",
  13235. "support": {
  13236. "issues": "https://github.com/sebastianbergmann/type/issues",
  13237. "source": "https://github.com/sebastianbergmann/type/tree/3.0"
  13238. },
  13239. "funding": [
  13240. {
  13241. "url": "https://github.com/sebastianbergmann",
  13242. "type": "github"
  13243. }
  13244. ],
  13245. "time": "2022-03-27T17:35:59+00:00"
  13246. },
  13247. {
  13248. "name": "sebastian/version",
  13249. "version": "3.0.2",
  13250. "source": {
  13251. "type": "git",
  13252. "url": "https://github.com/sebastianbergmann/version.git",
  13253. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  13254. },
  13255. "dist": {
  13256. "type": "zip",
  13257. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  13258. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  13259. "shasum": "",
  13260. "mirrors": [
  13261. {
  13262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13263. "preferred": true
  13264. }
  13265. ]
  13266. },
  13267. "require": {
  13268. "php": ">=7.3"
  13269. },
  13270. "type": "library",
  13271. "extra": {
  13272. "branch-alias": {
  13273. "dev-master": "3.0-dev"
  13274. }
  13275. },
  13276. "autoload": {
  13277. "classmap": [
  13278. "src/"
  13279. ]
  13280. },
  13281. "notification-url": "https://packagist.org/downloads/",
  13282. "license": [
  13283. "BSD-3-Clause"
  13284. ],
  13285. "authors": [
  13286. {
  13287. "name": "Sebastian Bergmann",
  13288. "email": "sebastian@phpunit.de",
  13289. "role": "lead"
  13290. }
  13291. ],
  13292. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  13293. "homepage": "https://github.com/sebastianbergmann/version",
  13294. "support": {
  13295. "issues": "https://github.com/sebastianbergmann/version/issues",
  13296. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  13297. },
  13298. "funding": [
  13299. {
  13300. "url": "https://github.com/sebastianbergmann",
  13301. "type": "github"
  13302. }
  13303. ],
  13304. "time": "2020-09-28T06:39:44+00:00"
  13305. },
  13306. {
  13307. "name": "theseer/tokenizer",
  13308. "version": "1.2.1",
  13309. "source": {
  13310. "type": "git",
  13311. "url": "https://github.com/theseer/tokenizer.git",
  13312. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  13313. },
  13314. "dist": {
  13315. "type": "zip",
  13316. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  13317. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  13318. "shasum": "",
  13319. "mirrors": [
  13320. {
  13321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  13322. "preferred": true
  13323. }
  13324. ]
  13325. },
  13326. "require": {
  13327. "ext-dom": "*",
  13328. "ext-tokenizer": "*",
  13329. "ext-xmlwriter": "*",
  13330. "php": "^7.2 || ^8.0"
  13331. },
  13332. "type": "library",
  13333. "autoload": {
  13334. "classmap": [
  13335. "src/"
  13336. ]
  13337. },
  13338. "notification-url": "https://packagist.org/downloads/",
  13339. "license": [
  13340. "BSD-3-Clause"
  13341. ],
  13342. "authors": [
  13343. {
  13344. "name": "Arne Blankerts",
  13345. "email": "arne@blankerts.de",
  13346. "role": "Developer"
  13347. }
  13348. ],
  13349. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13350. "support": {
  13351. "issues": "https://github.com/theseer/tokenizer/issues",
  13352. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  13353. },
  13354. "funding": [
  13355. {
  13356. "url": "https://github.com/theseer",
  13357. "type": "github"
  13358. }
  13359. ],
  13360. "time": "2021-07-28T10:34:58+00:00"
  13361. }
  13362. ],
  13363. "aliases": [],
  13364. "minimum-stability": "dev",
  13365. "stability-flags": [],
  13366. "prefer-stable": true,
  13367. "prefer-lowest": false,
  13368. "platform": {
  13369. "php": "^7.3|^7.4|^8.0"
  13370. },
  13371. "platform-dev": [],
  13372. "plugin-api-version": "2.1.0"
  13373. }