composer.lock 331 KB

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