composer.lock 376 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469
  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": "ebab4445c56757c74fdec2acdf07b0bf",
  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. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.3"
  65. },
  66. "time": "2020-10-30T02:02:47+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  79. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.3.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.2"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2021-01-20T22:51:39+00:00"
  129. },
  130. {
  131. "name": "dasprid/enum",
  132. "version": "1.0.3",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/DASPRiD/Enum.git",
  136. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  141. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require-dev": {
  151. "phpunit/phpunit": "^7 | ^8 | ^9",
  152. "squizlabs/php_codesniffer": "^3.4"
  153. },
  154. "type": "library",
  155. "autoload": {
  156. "psr-4": {
  157. "DASPRiD\\Enum\\": "src/"
  158. }
  159. },
  160. "notification-url": "https://packagist.org/downloads/",
  161. "license": [
  162. "BSD-2-Clause"
  163. ],
  164. "authors": [
  165. {
  166. "name": "Ben Scholzen 'DASPRiD'",
  167. "email": "mail@dasprids.de",
  168. "homepage": "https://dasprids.de/",
  169. "role": "Developer"
  170. }
  171. ],
  172. "description": "PHP 7.1 enum implementation",
  173. "keywords": [
  174. "enum",
  175. "map"
  176. ],
  177. "support": {
  178. "issues": "https://github.com/DASPRiD/Enum/issues",
  179. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  180. },
  181. "time": "2020-10-02T16:03:48+00:00"
  182. },
  183. {
  184. "name": "dnoegel/php-xdg-base-dir",
  185. "version": "v0.1.1",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  189. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  194. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  195. "shasum": "",
  196. "mirrors": [
  197. {
  198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  199. "preferred": true
  200. }
  201. ]
  202. },
  203. "require": {
  204. "php": ">=5.3.2"
  205. },
  206. "require-dev": {
  207. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  208. },
  209. "type": "library",
  210. "autoload": {
  211. "psr-4": {
  212. "XdgBaseDir\\": "src/"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "MIT"
  218. ],
  219. "description": "implementation of xdg base directory specification for php",
  220. "support": {
  221. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  222. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  223. },
  224. "time": "2019-12-04T15:06:13+00:00"
  225. },
  226. {
  227. "name": "doctrine/cache",
  228. "version": "1.10.2",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/doctrine/cache.git",
  232. "reference": "13e3381b25847283a91948d04640543941309727"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  237. "reference": "13e3381b25847283a91948d04640543941309727",
  238. "shasum": "",
  239. "mirrors": [
  240. {
  241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  242. "preferred": true
  243. }
  244. ]
  245. },
  246. "require": {
  247. "php": "~7.1 || ^8.0"
  248. },
  249. "conflict": {
  250. "doctrine/common": ">2.2,<2.4"
  251. },
  252. "require-dev": {
  253. "alcaeus/mongo-php-adapter": "^1.1",
  254. "doctrine/coding-standard": "^6.0",
  255. "mongodb/mongodb": "^1.1",
  256. "phpunit/phpunit": "^7.0",
  257. "predis/predis": "~1.0"
  258. },
  259. "suggest": {
  260. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  261. },
  262. "type": "library",
  263. "extra": {
  264. "branch-alias": {
  265. "dev-master": "1.9.x-dev"
  266. }
  267. },
  268. "autoload": {
  269. "psr-4": {
  270. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  271. }
  272. },
  273. "notification-url": "https://packagist.org/downloads/",
  274. "license": [
  275. "MIT"
  276. ],
  277. "authors": [
  278. {
  279. "name": "Guilherme Blanco",
  280. "email": "guilhermeblanco@gmail.com"
  281. },
  282. {
  283. "name": "Roman Borschel",
  284. "email": "roman@code-factory.org"
  285. },
  286. {
  287. "name": "Benjamin Eberlei",
  288. "email": "kontakt@beberlei.de"
  289. },
  290. {
  291. "name": "Jonathan Wage",
  292. "email": "jonwage@gmail.com"
  293. },
  294. {
  295. "name": "Johannes Schmitt",
  296. "email": "schmittjoh@gmail.com"
  297. }
  298. ],
  299. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  300. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  301. "keywords": [
  302. "abstraction",
  303. "apcu",
  304. "cache",
  305. "caching",
  306. "couchdb",
  307. "memcached",
  308. "php",
  309. "redis",
  310. "xcache"
  311. ],
  312. "support": {
  313. "issues": "https://github.com/doctrine/cache/issues",
  314. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  315. },
  316. "funding": [
  317. {
  318. "url": "https://www.doctrine-project.org/sponsorship.html",
  319. "type": "custom"
  320. },
  321. {
  322. "url": "https://www.patreon.com/phpdoctrine",
  323. "type": "patreon"
  324. },
  325. {
  326. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  327. "type": "tidelift"
  328. }
  329. ],
  330. "time": "2020-07-07T18:54:01+00:00"
  331. },
  332. {
  333. "name": "doctrine/dbal",
  334. "version": "2.10.4",
  335. "source": {
  336. "type": "git",
  337. "url": "https://github.com/doctrine/dbal.git",
  338. "reference": "47433196b6390d14409a33885ee42b6208160643"
  339. },
  340. "dist": {
  341. "type": "zip",
  342. "url": "https://api.github.com/repos/doctrine/dbal/zipball/47433196b6390d14409a33885ee42b6208160643",
  343. "reference": "47433196b6390d14409a33885ee42b6208160643",
  344. "shasum": "",
  345. "mirrors": [
  346. {
  347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  348. "preferred": true
  349. }
  350. ]
  351. },
  352. "require": {
  353. "doctrine/cache": "^1.0",
  354. "doctrine/event-manager": "^1.0",
  355. "ext-pdo": "*",
  356. "php": "^7.2"
  357. },
  358. "require-dev": {
  359. "doctrine/coding-standard": "^8.1",
  360. "jetbrains/phpstorm-stubs": "^2019.1",
  361. "nikic/php-parser": "^4.4",
  362. "phpstan/phpstan": "^0.12.40",
  363. "phpunit/phpunit": "^8.5.5",
  364. "psalm/plugin-phpunit": "^0.10.0",
  365. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  366. "vimeo/psalm": "^3.14.2"
  367. },
  368. "suggest": {
  369. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  370. },
  371. "bin": [
  372. "bin/doctrine-dbal"
  373. ],
  374. "type": "library",
  375. "extra": {
  376. "branch-alias": {
  377. "dev-master": "2.10.x-dev",
  378. "dev-develop": "3.0.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Guilherme Blanco",
  393. "email": "guilhermeblanco@gmail.com"
  394. },
  395. {
  396. "name": "Roman Borschel",
  397. "email": "roman@code-factory.org"
  398. },
  399. {
  400. "name": "Benjamin Eberlei",
  401. "email": "kontakt@beberlei.de"
  402. },
  403. {
  404. "name": "Jonathan Wage",
  405. "email": "jonwage@gmail.com"
  406. }
  407. ],
  408. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  409. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  410. "keywords": [
  411. "abstraction",
  412. "database",
  413. "db2",
  414. "dbal",
  415. "mariadb",
  416. "mssql",
  417. "mysql",
  418. "oci8",
  419. "oracle",
  420. "pdo",
  421. "pgsql",
  422. "postgresql",
  423. "queryobject",
  424. "sasql",
  425. "sql",
  426. "sqlanywhere",
  427. "sqlite",
  428. "sqlserver",
  429. "sqlsrv"
  430. ],
  431. "support": {
  432. "issues": "https://github.com/doctrine/dbal/issues",
  433. "source": "https://github.com/doctrine/dbal/tree/2.10.4"
  434. },
  435. "funding": [
  436. {
  437. "url": "https://www.doctrine-project.org/sponsorship.html",
  438. "type": "custom"
  439. },
  440. {
  441. "url": "https://www.patreon.com/phpdoctrine",
  442. "type": "patreon"
  443. },
  444. {
  445. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  446. "type": "tidelift"
  447. }
  448. ],
  449. "time": "2020-09-12T21:20:41+00:00"
  450. },
  451. {
  452. "name": "doctrine/event-manager",
  453. "version": "1.1.1",
  454. "source": {
  455. "type": "git",
  456. "url": "https://github.com/doctrine/event-manager.git",
  457. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  458. },
  459. "dist": {
  460. "type": "zip",
  461. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  462. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  463. "shasum": "",
  464. "mirrors": [
  465. {
  466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  467. "preferred": true
  468. }
  469. ]
  470. },
  471. "require": {
  472. "php": "^7.1 || ^8.0"
  473. },
  474. "conflict": {
  475. "doctrine/common": "<2.9@dev"
  476. },
  477. "require-dev": {
  478. "doctrine/coding-standard": "^6.0",
  479. "phpunit/phpunit": "^7.0"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-master": "1.0.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Doctrine\\Common\\": "lib/Doctrine/Common"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Guilherme Blanco",
  499. "email": "guilhermeblanco@gmail.com"
  500. },
  501. {
  502. "name": "Roman Borschel",
  503. "email": "roman@code-factory.org"
  504. },
  505. {
  506. "name": "Benjamin Eberlei",
  507. "email": "kontakt@beberlei.de"
  508. },
  509. {
  510. "name": "Jonathan Wage",
  511. "email": "jonwage@gmail.com"
  512. },
  513. {
  514. "name": "Johannes Schmitt",
  515. "email": "schmittjoh@gmail.com"
  516. },
  517. {
  518. "name": "Marco Pivetta",
  519. "email": "ocramius@gmail.com"
  520. }
  521. ],
  522. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  523. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  524. "keywords": [
  525. "event",
  526. "event dispatcher",
  527. "event manager",
  528. "event system",
  529. "events"
  530. ],
  531. "support": {
  532. "issues": "https://github.com/doctrine/event-manager/issues",
  533. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  534. },
  535. "funding": [
  536. {
  537. "url": "https://www.doctrine-project.org/sponsorship.html",
  538. "type": "custom"
  539. },
  540. {
  541. "url": "https://www.patreon.com/phpdoctrine",
  542. "type": "patreon"
  543. },
  544. {
  545. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  546. "type": "tidelift"
  547. }
  548. ],
  549. "time": "2020-05-29T18:28:51+00:00"
  550. },
  551. {
  552. "name": "doctrine/inflector",
  553. "version": "2.0.3",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/doctrine/inflector.git",
  557. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  562. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  563. "shasum": "",
  564. "mirrors": [
  565. {
  566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  567. "preferred": true
  568. }
  569. ]
  570. },
  571. "require": {
  572. "php": "^7.2 || ^8.0"
  573. },
  574. "require-dev": {
  575. "doctrine/coding-standard": "^7.0",
  576. "phpstan/phpstan": "^0.11",
  577. "phpstan/phpstan-phpunit": "^0.11",
  578. "phpstan/phpstan-strict-rules": "^0.11",
  579. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  580. },
  581. "type": "library",
  582. "extra": {
  583. "branch-alias": {
  584. "dev-master": "2.0.x-dev"
  585. }
  586. },
  587. "autoload": {
  588. "psr-4": {
  589. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  590. }
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "MIT"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Guilherme Blanco",
  599. "email": "guilhermeblanco@gmail.com"
  600. },
  601. {
  602. "name": "Roman Borschel",
  603. "email": "roman@code-factory.org"
  604. },
  605. {
  606. "name": "Benjamin Eberlei",
  607. "email": "kontakt@beberlei.de"
  608. },
  609. {
  610. "name": "Jonathan Wage",
  611. "email": "jonwage@gmail.com"
  612. },
  613. {
  614. "name": "Johannes Schmitt",
  615. "email": "schmittjoh@gmail.com"
  616. }
  617. ],
  618. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  619. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  620. "keywords": [
  621. "inflection",
  622. "inflector",
  623. "lowercase",
  624. "manipulation",
  625. "php",
  626. "plural",
  627. "singular",
  628. "strings",
  629. "uppercase",
  630. "words"
  631. ],
  632. "support": {
  633. "issues": "https://github.com/doctrine/inflector/issues",
  634. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  635. },
  636. "funding": [
  637. {
  638. "url": "https://www.doctrine-project.org/sponsorship.html",
  639. "type": "custom"
  640. },
  641. {
  642. "url": "https://www.patreon.com/phpdoctrine",
  643. "type": "patreon"
  644. },
  645. {
  646. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  647. "type": "tidelift"
  648. }
  649. ],
  650. "time": "2020-05-29T15:13:26+00:00"
  651. },
  652. {
  653. "name": "doctrine/lexer",
  654. "version": "1.2.1",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/doctrine/lexer.git",
  658. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  663. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  664. "shasum": "",
  665. "mirrors": [
  666. {
  667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  668. "preferred": true
  669. }
  670. ]
  671. },
  672. "require": {
  673. "php": "^7.2 || ^8.0"
  674. },
  675. "require-dev": {
  676. "doctrine/coding-standard": "^6.0",
  677. "phpstan/phpstan": "^0.11.8",
  678. "phpunit/phpunit": "^8.2"
  679. },
  680. "type": "library",
  681. "extra": {
  682. "branch-alias": {
  683. "dev-master": "1.2.x-dev"
  684. }
  685. },
  686. "autoload": {
  687. "psr-4": {
  688. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Guilherme Blanco",
  698. "email": "guilhermeblanco@gmail.com"
  699. },
  700. {
  701. "name": "Roman Borschel",
  702. "email": "roman@code-factory.org"
  703. },
  704. {
  705. "name": "Johannes Schmitt",
  706. "email": "schmittjoh@gmail.com"
  707. }
  708. ],
  709. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  710. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  711. "keywords": [
  712. "annotations",
  713. "docblock",
  714. "lexer",
  715. "parser",
  716. "php"
  717. ],
  718. "support": {
  719. "issues": "https://github.com/doctrine/lexer/issues",
  720. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  721. },
  722. "funding": [
  723. {
  724. "url": "https://www.doctrine-project.org/sponsorship.html",
  725. "type": "custom"
  726. },
  727. {
  728. "url": "https://www.patreon.com/phpdoctrine",
  729. "type": "patreon"
  730. },
  731. {
  732. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  733. "type": "tidelift"
  734. }
  735. ],
  736. "time": "2020-05-25T17:44:05+00:00"
  737. },
  738. {
  739. "name": "dragonmantank/cron-expression",
  740. "version": "v2.3.1",
  741. "source": {
  742. "type": "git",
  743. "url": "https://github.com/dragonmantank/cron-expression.git",
  744. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  745. },
  746. "dist": {
  747. "type": "zip",
  748. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  749. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  750. "shasum": "",
  751. "mirrors": [
  752. {
  753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  754. "preferred": true
  755. }
  756. ]
  757. },
  758. "require": {
  759. "php": "^7.0|^8.0"
  760. },
  761. "require-dev": {
  762. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  763. },
  764. "type": "library",
  765. "extra": {
  766. "branch-alias": {
  767. "dev-master": "2.3-dev"
  768. }
  769. },
  770. "autoload": {
  771. "psr-4": {
  772. "Cron\\": "src/Cron/"
  773. }
  774. },
  775. "notification-url": "https://packagist.org/downloads/",
  776. "license": [
  777. "MIT"
  778. ],
  779. "authors": [
  780. {
  781. "name": "Michael Dowling",
  782. "email": "mtdowling@gmail.com",
  783. "homepage": "https://github.com/mtdowling"
  784. },
  785. {
  786. "name": "Chris Tankersley",
  787. "email": "chris@ctankersley.com",
  788. "homepage": "https://github.com/dragonmantank"
  789. }
  790. ],
  791. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  792. "keywords": [
  793. "cron",
  794. "schedule"
  795. ],
  796. "support": {
  797. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  798. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  799. },
  800. "funding": [
  801. {
  802. "url": "https://github.com/dragonmantank",
  803. "type": "github"
  804. }
  805. ],
  806. "time": "2020-10-13T00:52:37+00:00"
  807. },
  808. {
  809. "name": "egulias/email-validator",
  810. "version": "2.1.25",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/egulias/EmailValidator.git",
  814. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  819. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "doctrine/lexer": "^1.0.1",
  830. "php": ">=5.5",
  831. "symfony/polyfill-intl-idn": "^1.10"
  832. },
  833. "require-dev": {
  834. "dominicsayers/isemail": "^3.0.7",
  835. "phpunit/phpunit": "^4.8.36|^7.5.15",
  836. "satooshi/php-coveralls": "^1.0.1"
  837. },
  838. "suggest": {
  839. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  840. },
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-master": "2.1.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Egulias\\EmailValidator\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Eduardo Gulias Davis"
  859. }
  860. ],
  861. "description": "A library for validating emails against several RFCs",
  862. "homepage": "https://github.com/egulias/EmailValidator",
  863. "keywords": [
  864. "email",
  865. "emailvalidation",
  866. "emailvalidator",
  867. "validation",
  868. "validator"
  869. ],
  870. "support": {
  871. "issues": "https://github.com/egulias/EmailValidator/issues",
  872. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://github.com/egulias",
  877. "type": "github"
  878. }
  879. ],
  880. "time": "2020-12-29T14:50:06+00:00"
  881. },
  882. {
  883. "name": "endroid/qr-code",
  884. "version": "3.9.6",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/endroid/qr-code.git",
  888. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/endroid/qr-code/zipball/9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  893. "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f",
  894. "shasum": "",
  895. "mirrors": [
  896. {
  897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  898. "preferred": true
  899. }
  900. ]
  901. },
  902. "require": {
  903. "bacon/bacon-qr-code": "^2.0",
  904. "khanamiryan/qrcode-detector-decoder": "^1.0.2",
  905. "myclabs/php-enum": "^1.5",
  906. "php": ">=7.2",
  907. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  908. "symfony/property-access": "^3.4||^4.4||^5.0"
  909. },
  910. "require-dev": {
  911. "endroid/quality": "^1.3.7",
  912. "setasign/fpdf": "^1.8"
  913. },
  914. "suggest": {
  915. "ext-gd": "Required for generating PNG images",
  916. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  917. "setasign/fpdf": "Required to use the FPDF writer.",
  918. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  919. },
  920. "type": "library",
  921. "extra": {
  922. "branch-alias": {
  923. "dev-master": "3.x-dev"
  924. }
  925. },
  926. "autoload": {
  927. "psr-4": {
  928. "Endroid\\QrCode\\": "src/"
  929. }
  930. },
  931. "notification-url": "https://packagist.org/downloads/",
  932. "license": [
  933. "MIT"
  934. ],
  935. "authors": [
  936. {
  937. "name": "Jeroen van den Enden",
  938. "email": "info@endroid.nl"
  939. }
  940. ],
  941. "description": "Endroid QR Code",
  942. "homepage": "https://github.com/endroid/qr-code",
  943. "keywords": [
  944. "bundle",
  945. "code",
  946. "endroid",
  947. "php",
  948. "qr",
  949. "qrcode"
  950. ],
  951. "support": {
  952. "issues": "https://github.com/endroid/qr-code/issues",
  953. "source": "https://github.com/endroid/qr-code/tree/3.9.6"
  954. },
  955. "funding": [
  956. {
  957. "url": "https://github.com/endroid",
  958. "type": "github"
  959. }
  960. ],
  961. "time": "2020-11-27T14:30:38+00:00"
  962. },
  963. {
  964. "name": "ezyang/htmlpurifier",
  965. "version": "v4.13.0",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/ezyang/htmlpurifier.git",
  969. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  974. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  975. "shasum": "",
  976. "mirrors": [
  977. {
  978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  979. "preferred": true
  980. }
  981. ]
  982. },
  983. "require": {
  984. "php": ">=5.2"
  985. },
  986. "require-dev": {
  987. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  988. },
  989. "type": "library",
  990. "autoload": {
  991. "psr-0": {
  992. "HTMLPurifier": "library/"
  993. },
  994. "files": [
  995. "library/HTMLPurifier.composer.php"
  996. ],
  997. "exclude-from-classmap": [
  998. "/library/HTMLPurifier/Language/"
  999. ]
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "LGPL-2.1-or-later"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Edward Z. Yang",
  1008. "email": "admin@htmlpurifier.org",
  1009. "homepage": "http://ezyang.com"
  1010. }
  1011. ],
  1012. "description": "Standards compliant HTML filter written in PHP",
  1013. "homepage": "http://htmlpurifier.org/",
  1014. "keywords": [
  1015. "html"
  1016. ],
  1017. "support": {
  1018. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1019. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1020. },
  1021. "time": "2020-06-29T00:56:53+00:00"
  1022. },
  1023. {
  1024. "name": "facade/flare-client-php",
  1025. "version": "1.4.0",
  1026. "source": {
  1027. "type": "git",
  1028. "url": "https://github.com/facade/flare-client-php.git",
  1029. "reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546"
  1030. },
  1031. "dist": {
  1032. "type": "zip",
  1033. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546",
  1034. "reference": "ef0f5bce23b30b32d98fd9bb49c6fa37b40eb546",
  1035. "shasum": "",
  1036. "mirrors": [
  1037. {
  1038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1039. "preferred": true
  1040. }
  1041. ]
  1042. },
  1043. "require": {
  1044. "facade/ignition-contracts": "~1.0",
  1045. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1046. "php": "^7.1|^8.0",
  1047. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1048. "symfony/mime": "^3.4|^4.0|^5.1",
  1049. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1050. },
  1051. "require-dev": {
  1052. "friendsofphp/php-cs-fixer": "^2.14",
  1053. "phpunit/phpunit": "^7.5.16",
  1054. "spatie/phpunit-snapshot-assertions": "^2.0"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "1.0-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "psr-4": {
  1064. "Facade\\FlareClient\\": "src"
  1065. },
  1066. "files": [
  1067. "src/helpers.php"
  1068. ]
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "description": "Send PHP errors to Flare",
  1075. "homepage": "https://github.com/facade/flare-client-php",
  1076. "keywords": [
  1077. "exception",
  1078. "facade",
  1079. "flare",
  1080. "reporting"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/facade/flare-client-php/issues",
  1084. "source": "https://github.com/facade/flare-client-php/tree/1.4.0"
  1085. },
  1086. "funding": [
  1087. {
  1088. "url": "https://github.com/spatie",
  1089. "type": "github"
  1090. }
  1091. ],
  1092. "time": "2021-02-16T12:42:06+00:00"
  1093. },
  1094. {
  1095. "name": "facade/ignition",
  1096. "version": "2.4.1",
  1097. "source": {
  1098. "type": "git",
  1099. "url": "https://github.com/facade/ignition.git",
  1100. "reference": "9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa"
  1101. },
  1102. "dist": {
  1103. "type": "zip",
  1104. "url": "https://api.github.com/repos/facade/ignition/zipball/9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa",
  1105. "reference": "9fc6c3d3de5271a1b94cff19dce2c9295abf0ffa",
  1106. "shasum": "",
  1107. "mirrors": [
  1108. {
  1109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1110. "preferred": true
  1111. }
  1112. ]
  1113. },
  1114. "require": {
  1115. "ext-json": "*",
  1116. "ext-mbstring": "*",
  1117. "facade/flare-client-php": "^1.0",
  1118. "facade/ignition-contracts": "^1.0",
  1119. "filp/whoops": "^2.4",
  1120. "illuminate/support": "^7.0|^8.0",
  1121. "monolog/monolog": "^2.0",
  1122. "php": "^7.2.5",
  1123. "scrivo/highlight.php": "^9.15",
  1124. "symfony/console": "^5.0",
  1125. "symfony/var-dumper": "^5.0"
  1126. },
  1127. "require-dev": {
  1128. "friendsofphp/php-cs-fixer": "^2.14",
  1129. "mockery/mockery": "^1.3",
  1130. "orchestra/testbench": "^5.0|^6.0",
  1131. "psalm/plugin-laravel": "^1.2"
  1132. },
  1133. "suggest": {
  1134. "laravel/telescope": "^3.1"
  1135. },
  1136. "type": "library",
  1137. "extra": {
  1138. "branch-alias": {
  1139. "dev-master": "2.x-dev"
  1140. },
  1141. "laravel": {
  1142. "providers": [
  1143. "Facade\\Ignition\\IgnitionServiceProvider"
  1144. ],
  1145. "aliases": {
  1146. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1147. }
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Facade\\Ignition\\": "src"
  1153. },
  1154. "files": [
  1155. "src/helpers.php"
  1156. ]
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "MIT"
  1161. ],
  1162. "description": "A beautiful error page for Laravel applications.",
  1163. "homepage": "https://github.com/facade/ignition",
  1164. "keywords": [
  1165. "error",
  1166. "flare",
  1167. "laravel",
  1168. "page"
  1169. ],
  1170. "support": {
  1171. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1172. "forum": "https://twitter.com/flareappio",
  1173. "issues": "https://github.com/facade/ignition/issues",
  1174. "source": "https://github.com/facade/ignition"
  1175. },
  1176. "time": "2020-10-14T08:59:59+00:00"
  1177. },
  1178. {
  1179. "name": "facade/ignition-contracts",
  1180. "version": "1.0.1",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/facade/ignition-contracts.git",
  1184. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  1189. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  1190. "shasum": "",
  1191. "mirrors": [
  1192. {
  1193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1194. "preferred": true
  1195. }
  1196. ]
  1197. },
  1198. "require": {
  1199. "php": "^7.1"
  1200. },
  1201. "require-dev": {
  1202. "friendsofphp/php-cs-fixer": "^2.14",
  1203. "phpunit/phpunit": "^7.5|^8.0",
  1204. "vimeo/psalm": "^3.12"
  1205. },
  1206. "type": "library",
  1207. "autoload": {
  1208. "psr-4": {
  1209. "Facade\\IgnitionContracts\\": "src"
  1210. }
  1211. },
  1212. "notification-url": "https://packagist.org/downloads/",
  1213. "license": [
  1214. "MIT"
  1215. ],
  1216. "authors": [
  1217. {
  1218. "name": "Freek Van der Herten",
  1219. "email": "freek@spatie.be",
  1220. "homepage": "https://flareapp.io",
  1221. "role": "Developer"
  1222. }
  1223. ],
  1224. "description": "Solution contracts for Ignition",
  1225. "homepage": "https://github.com/facade/ignition-contracts",
  1226. "keywords": [
  1227. "contracts",
  1228. "flare",
  1229. "ignition"
  1230. ],
  1231. "support": {
  1232. "issues": "https://github.com/facade/ignition-contracts/issues",
  1233. "source": "https://github.com/facade/ignition-contracts/tree/1.0.1"
  1234. },
  1235. "time": "2020-07-14T10:10:28+00:00"
  1236. },
  1237. {
  1238. "name": "fideloper/proxy",
  1239. "version": "4.4.1",
  1240. "source": {
  1241. "type": "git",
  1242. "url": "https://github.com/fideloper/TrustedProxy.git",
  1243. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1244. },
  1245. "dist": {
  1246. "type": "zip",
  1247. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1248. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1249. "shasum": "",
  1250. "mirrors": [
  1251. {
  1252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1253. "preferred": true
  1254. }
  1255. ]
  1256. },
  1257. "require": {
  1258. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1259. "php": ">=5.4.0"
  1260. },
  1261. "require-dev": {
  1262. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1263. "mockery/mockery": "^1.0",
  1264. "phpunit/phpunit": "^6.0"
  1265. },
  1266. "type": "library",
  1267. "extra": {
  1268. "laravel": {
  1269. "providers": [
  1270. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1271. ]
  1272. }
  1273. },
  1274. "autoload": {
  1275. "psr-4": {
  1276. "Fideloper\\Proxy\\": "src/"
  1277. }
  1278. },
  1279. "notification-url": "https://packagist.org/downloads/",
  1280. "license": [
  1281. "MIT"
  1282. ],
  1283. "authors": [
  1284. {
  1285. "name": "Chris Fidao",
  1286. "email": "fideloper@gmail.com"
  1287. }
  1288. ],
  1289. "description": "Set trusted proxies for Laravel",
  1290. "keywords": [
  1291. "load balancing",
  1292. "proxy",
  1293. "trusted proxy"
  1294. ],
  1295. "support": {
  1296. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1297. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1298. },
  1299. "time": "2020-10-22T13:48:01+00:00"
  1300. },
  1301. {
  1302. "name": "filp/whoops",
  1303. "version": "2.9.2",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/filp/whoops.git",
  1307. "reference": "df7933820090489623ce0be5e85c7e693638e536"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536",
  1312. "reference": "df7933820090489623ce0be5e85c7e693638e536",
  1313. "shasum": "",
  1314. "mirrors": [
  1315. {
  1316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1317. "preferred": true
  1318. }
  1319. ]
  1320. },
  1321. "require": {
  1322. "php": "^5.5.9 || ^7.0 || ^8.0",
  1323. "psr/log": "^1.0.1"
  1324. },
  1325. "require-dev": {
  1326. "mockery/mockery": "^0.9 || ^1.0",
  1327. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1328. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1329. },
  1330. "suggest": {
  1331. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1332. "whoops/soap": "Formats errors as SOAP responses"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "branch-alias": {
  1337. "dev-master": "2.7-dev"
  1338. }
  1339. },
  1340. "autoload": {
  1341. "psr-4": {
  1342. "Whoops\\": "src/Whoops/"
  1343. }
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "MIT"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "Filipe Dobreira",
  1352. "homepage": "https://github.com/filp",
  1353. "role": "Developer"
  1354. }
  1355. ],
  1356. "description": "php error handling for cool kids",
  1357. "homepage": "https://filp.github.io/whoops/",
  1358. "keywords": [
  1359. "error",
  1360. "exception",
  1361. "handling",
  1362. "library",
  1363. "throwable",
  1364. "whoops"
  1365. ],
  1366. "support": {
  1367. "issues": "https://github.com/filp/whoops/issues",
  1368. "source": "https://github.com/filp/whoops/tree/2.9.2"
  1369. },
  1370. "funding": [
  1371. {
  1372. "url": "https://github.com/denis-sokolov",
  1373. "type": "github"
  1374. }
  1375. ],
  1376. "time": "2021-01-24T12:00:00+00:00"
  1377. },
  1378. {
  1379. "name": "guzzlehttp/guzzle",
  1380. "version": "6.5.5",
  1381. "source": {
  1382. "type": "git",
  1383. "url": "https://github.com/guzzle/guzzle.git",
  1384. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1385. },
  1386. "dist": {
  1387. "type": "zip",
  1388. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1389. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1390. "shasum": "",
  1391. "mirrors": [
  1392. {
  1393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1394. "preferred": true
  1395. }
  1396. ]
  1397. },
  1398. "require": {
  1399. "ext-json": "*",
  1400. "guzzlehttp/promises": "^1.0",
  1401. "guzzlehttp/psr7": "^1.6.1",
  1402. "php": ">=5.5",
  1403. "symfony/polyfill-intl-idn": "^1.17.0"
  1404. },
  1405. "require-dev": {
  1406. "ext-curl": "*",
  1407. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1408. "psr/log": "^1.1"
  1409. },
  1410. "suggest": {
  1411. "psr/log": "Required for using the Log middleware"
  1412. },
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-master": "6.5-dev"
  1417. }
  1418. },
  1419. "autoload": {
  1420. "psr-4": {
  1421. "GuzzleHttp\\": "src/"
  1422. },
  1423. "files": [
  1424. "src/functions_include.php"
  1425. ]
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Michael Dowling",
  1434. "email": "mtdowling@gmail.com",
  1435. "homepage": "https://github.com/mtdowling"
  1436. }
  1437. ],
  1438. "description": "Guzzle is a PHP HTTP client library",
  1439. "homepage": "http://guzzlephp.org/",
  1440. "keywords": [
  1441. "client",
  1442. "curl",
  1443. "framework",
  1444. "http",
  1445. "http client",
  1446. "rest",
  1447. "web service"
  1448. ],
  1449. "support": {
  1450. "issues": "https://github.com/guzzle/guzzle/issues",
  1451. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1452. },
  1453. "time": "2020-06-16T21:01:06+00:00"
  1454. },
  1455. {
  1456. "name": "guzzlehttp/promises",
  1457. "version": "1.4.0",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/guzzle/promises.git",
  1461. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1466. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1467. "shasum": "",
  1468. "mirrors": [
  1469. {
  1470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1471. "preferred": true
  1472. }
  1473. ]
  1474. },
  1475. "require": {
  1476. "php": ">=5.5"
  1477. },
  1478. "require-dev": {
  1479. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "branch-alias": {
  1484. "dev-master": "1.4-dev"
  1485. }
  1486. },
  1487. "autoload": {
  1488. "psr-4": {
  1489. "GuzzleHttp\\Promise\\": "src/"
  1490. },
  1491. "files": [
  1492. "src/functions_include.php"
  1493. ]
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Michael Dowling",
  1502. "email": "mtdowling@gmail.com",
  1503. "homepage": "https://github.com/mtdowling"
  1504. }
  1505. ],
  1506. "description": "Guzzle promises library",
  1507. "keywords": [
  1508. "promise"
  1509. ],
  1510. "support": {
  1511. "issues": "https://github.com/guzzle/promises/issues",
  1512. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1513. },
  1514. "time": "2020-09-30T07:37:28+00:00"
  1515. },
  1516. {
  1517. "name": "guzzlehttp/psr7",
  1518. "version": "1.7.0",
  1519. "source": {
  1520. "type": "git",
  1521. "url": "https://github.com/guzzle/psr7.git",
  1522. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1523. },
  1524. "dist": {
  1525. "type": "zip",
  1526. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1527. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1528. "shasum": "",
  1529. "mirrors": [
  1530. {
  1531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1532. "preferred": true
  1533. }
  1534. ]
  1535. },
  1536. "require": {
  1537. "php": ">=5.4.0",
  1538. "psr/http-message": "~1.0",
  1539. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1540. },
  1541. "provide": {
  1542. "psr/http-message-implementation": "1.0"
  1543. },
  1544. "require-dev": {
  1545. "ext-zlib": "*",
  1546. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1547. },
  1548. "suggest": {
  1549. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "1.7-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "psr-4": {
  1559. "GuzzleHttp\\Psr7\\": "src/"
  1560. },
  1561. "files": [
  1562. "src/functions_include.php"
  1563. ]
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Michael Dowling",
  1572. "email": "mtdowling@gmail.com",
  1573. "homepage": "https://github.com/mtdowling"
  1574. },
  1575. {
  1576. "name": "Tobias Schultze",
  1577. "homepage": "https://github.com/Tobion"
  1578. }
  1579. ],
  1580. "description": "PSR-7 message implementation that also provides common utility methods",
  1581. "keywords": [
  1582. "http",
  1583. "message",
  1584. "psr-7",
  1585. "request",
  1586. "response",
  1587. "stream",
  1588. "uri",
  1589. "url"
  1590. ],
  1591. "support": {
  1592. "issues": "https://github.com/guzzle/psr7/issues",
  1593. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1594. },
  1595. "time": "2020-09-30T07:37:11+00:00"
  1596. },
  1597. {
  1598. "name": "intervention/image",
  1599. "version": "2.5.1",
  1600. "source": {
  1601. "type": "git",
  1602. "url": "https://github.com/Intervention/image.git",
  1603. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1604. },
  1605. "dist": {
  1606. "type": "zip",
  1607. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1608. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1609. "shasum": "",
  1610. "mirrors": [
  1611. {
  1612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1613. "preferred": true
  1614. }
  1615. ]
  1616. },
  1617. "require": {
  1618. "ext-fileinfo": "*",
  1619. "guzzlehttp/psr7": "~1.1",
  1620. "php": ">=5.4.0"
  1621. },
  1622. "require-dev": {
  1623. "mockery/mockery": "~0.9.2",
  1624. "phpunit/phpunit": "^4.8 || ^5.7"
  1625. },
  1626. "suggest": {
  1627. "ext-gd": "to use GD library based image processing.",
  1628. "ext-imagick": "to use Imagick based image processing.",
  1629. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "2.4-dev"
  1635. },
  1636. "laravel": {
  1637. "providers": [
  1638. "Intervention\\Image\\ImageServiceProvider"
  1639. ],
  1640. "aliases": {
  1641. "Image": "Intervention\\Image\\Facades\\Image"
  1642. }
  1643. }
  1644. },
  1645. "autoload": {
  1646. "psr-4": {
  1647. "Intervention\\Image\\": "src/Intervention/Image"
  1648. }
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Oliver Vogel",
  1657. "email": "oliver@olivervogel.com",
  1658. "homepage": "http://olivervogel.com/"
  1659. }
  1660. ],
  1661. "description": "Image handling and manipulation library with support for Laravel integration",
  1662. "homepage": "http://image.intervention.io/",
  1663. "keywords": [
  1664. "gd",
  1665. "image",
  1666. "imagick",
  1667. "laravel",
  1668. "thumbnail",
  1669. "watermark"
  1670. ],
  1671. "support": {
  1672. "issues": "https://github.com/Intervention/image/issues",
  1673. "source": "https://github.com/Intervention/image/tree/master"
  1674. },
  1675. "time": "2019-11-02T09:15:47+00:00"
  1676. },
  1677. {
  1678. "name": "khanamiryan/qrcode-detector-decoder",
  1679. "version": "1.0.4",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1683. "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/07fceefb79d895e858e52921afb9c1433d2f3d5e",
  1688. "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e",
  1689. "shasum": "",
  1690. "mirrors": [
  1691. {
  1692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1693. "preferred": true
  1694. }
  1695. ]
  1696. },
  1697. "require": {
  1698. "php": ">=5.6"
  1699. },
  1700. "require-dev": {
  1701. "phpunit/phpunit": "^9.0"
  1702. },
  1703. "type": "library",
  1704. "autoload": {
  1705. "psr-4": {
  1706. "Zxing\\": "lib/"
  1707. },
  1708. "files": [
  1709. "lib/Common/customFunctions.php"
  1710. ]
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Ashot Khanamiryan",
  1719. "email": "a.khanamiryan@gmail.com",
  1720. "homepage": "https://github.com/khanamiryan",
  1721. "role": "Developer"
  1722. }
  1723. ],
  1724. "description": "QR code decoder / reader",
  1725. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1726. "keywords": [
  1727. "barcode",
  1728. "qr",
  1729. "zxing"
  1730. ],
  1731. "support": {
  1732. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1733. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.4"
  1734. },
  1735. "time": "2020-11-29T18:50:26+00:00"
  1736. },
  1737. {
  1738. "name": "kitetail/zttp",
  1739. "version": "v0.6.0",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/kitetail/zttp.git",
  1743. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1748. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1749. "shasum": "",
  1750. "mirrors": [
  1751. {
  1752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1753. "preferred": true
  1754. }
  1755. ]
  1756. },
  1757. "require": {
  1758. "guzzlehttp/guzzle": "^6.0",
  1759. "php": ">=7.0",
  1760. "tightenco/collect": "^5.4"
  1761. },
  1762. "require-dev": {
  1763. "laravel/lumen-framework": "5.5.*",
  1764. "phpunit/phpunit": "^6.0"
  1765. },
  1766. "type": "library",
  1767. "autoload": {
  1768. "files": [
  1769. "src/Zttp.php"
  1770. ]
  1771. },
  1772. "notification-url": "https://packagist.org/downloads/",
  1773. "license": [
  1774. "MIT"
  1775. ],
  1776. "authors": [
  1777. {
  1778. "name": "Adam Wathan",
  1779. "email": "adam.wathan@gmail.com"
  1780. }
  1781. ],
  1782. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1783. "keywords": [
  1784. "Guzzle",
  1785. "http"
  1786. ],
  1787. "support": {
  1788. "issues": "https://github.com/kitetail/zttp/issues",
  1789. "source": "https://github.com/kitetail/zttp/tree/master"
  1790. },
  1791. "time": "2019-06-10T12:18:52+00:00"
  1792. },
  1793. {
  1794. "name": "laravel/framework",
  1795. "version": "v7.30.4",
  1796. "source": {
  1797. "type": "git",
  1798. "url": "https://github.com/laravel/framework.git",
  1799. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1800. },
  1801. "dist": {
  1802. "type": "zip",
  1803. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1804. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1805. "shasum": "",
  1806. "mirrors": [
  1807. {
  1808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1809. "preferred": true
  1810. }
  1811. ]
  1812. },
  1813. "require": {
  1814. "doctrine/inflector": "^1.4|^2.0",
  1815. "dragonmantank/cron-expression": "^2.3.1",
  1816. "egulias/email-validator": "^2.1.10",
  1817. "ext-json": "*",
  1818. "ext-mbstring": "*",
  1819. "ext-openssl": "*",
  1820. "league/commonmark": "^1.3",
  1821. "league/flysystem": "^1.1",
  1822. "monolog/monolog": "^2.0",
  1823. "nesbot/carbon": "^2.31",
  1824. "opis/closure": "^3.6",
  1825. "php": "^7.2.5|^8.0",
  1826. "psr/container": "^1.0",
  1827. "psr/simple-cache": "^1.0",
  1828. "ramsey/uuid": "^3.7|^4.0",
  1829. "swiftmailer/swiftmailer": "^6.0",
  1830. "symfony/console": "^5.0",
  1831. "symfony/error-handler": "^5.0",
  1832. "symfony/finder": "^5.0",
  1833. "symfony/http-foundation": "^5.0",
  1834. "symfony/http-kernel": "^5.0",
  1835. "symfony/mime": "^5.0",
  1836. "symfony/polyfill-php73": "^1.17",
  1837. "symfony/process": "^5.0",
  1838. "symfony/routing": "^5.0",
  1839. "symfony/var-dumper": "^5.0",
  1840. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1841. "vlucas/phpdotenv": "^4.0",
  1842. "voku/portable-ascii": "^1.4.8"
  1843. },
  1844. "conflict": {
  1845. "tightenco/collect": "<5.5.33"
  1846. },
  1847. "provide": {
  1848. "psr/container-implementation": "1.0"
  1849. },
  1850. "replace": {
  1851. "illuminate/auth": "self.version",
  1852. "illuminate/broadcasting": "self.version",
  1853. "illuminate/bus": "self.version",
  1854. "illuminate/cache": "self.version",
  1855. "illuminate/config": "self.version",
  1856. "illuminate/console": "self.version",
  1857. "illuminate/container": "self.version",
  1858. "illuminate/contracts": "self.version",
  1859. "illuminate/cookie": "self.version",
  1860. "illuminate/database": "self.version",
  1861. "illuminate/encryption": "self.version",
  1862. "illuminate/events": "self.version",
  1863. "illuminate/filesystem": "self.version",
  1864. "illuminate/hashing": "self.version",
  1865. "illuminate/http": "self.version",
  1866. "illuminate/log": "self.version",
  1867. "illuminate/mail": "self.version",
  1868. "illuminate/notifications": "self.version",
  1869. "illuminate/pagination": "self.version",
  1870. "illuminate/pipeline": "self.version",
  1871. "illuminate/queue": "self.version",
  1872. "illuminate/redis": "self.version",
  1873. "illuminate/routing": "self.version",
  1874. "illuminate/session": "self.version",
  1875. "illuminate/support": "self.version",
  1876. "illuminate/testing": "self.version",
  1877. "illuminate/translation": "self.version",
  1878. "illuminate/validation": "self.version",
  1879. "illuminate/view": "self.version"
  1880. },
  1881. "require-dev": {
  1882. "aws/aws-sdk-php": "^3.155",
  1883. "doctrine/dbal": "^2.6",
  1884. "filp/whoops": "^2.8",
  1885. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1886. "league/flysystem-cached-adapter": "^1.0",
  1887. "mockery/mockery": "~1.3.3|^1.4.2",
  1888. "moontoast/math": "^1.1",
  1889. "orchestra/testbench-core": "^5.8",
  1890. "pda/pheanstalk": "^4.0",
  1891. "phpunit/phpunit": "^8.4|^9.3.3",
  1892. "predis/predis": "^1.1.1",
  1893. "symfony/cache": "^5.0"
  1894. },
  1895. "suggest": {
  1896. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1897. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1898. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1899. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1900. "ext-memcached": "Required to use the memcache cache driver.",
  1901. "ext-pcntl": "Required to use all features of the queue worker.",
  1902. "ext-posix": "Required to use all features of the queue worker.",
  1903. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1904. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1905. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1906. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1907. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1908. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1909. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1910. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1911. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1912. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1913. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1914. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1915. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1916. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1917. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1918. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1919. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1920. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1921. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1922. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1923. },
  1924. "type": "library",
  1925. "extra": {
  1926. "branch-alias": {
  1927. "dev-master": "7.x-dev"
  1928. }
  1929. },
  1930. "autoload": {
  1931. "files": [
  1932. "src/Illuminate/Foundation/helpers.php",
  1933. "src/Illuminate/Support/helpers.php"
  1934. ],
  1935. "psr-4": {
  1936. "Illuminate\\": "src/Illuminate/"
  1937. }
  1938. },
  1939. "notification-url": "https://packagist.org/downloads/",
  1940. "license": [
  1941. "MIT"
  1942. ],
  1943. "authors": [
  1944. {
  1945. "name": "Taylor Otwell",
  1946. "email": "taylor@laravel.com"
  1947. }
  1948. ],
  1949. "description": "The Laravel Framework.",
  1950. "homepage": "https://laravel.com",
  1951. "keywords": [
  1952. "framework",
  1953. "laravel"
  1954. ],
  1955. "support": {
  1956. "issues": "https://github.com/laravel/framework/issues",
  1957. "source": "https://github.com/laravel/framework"
  1958. },
  1959. "time": "2021-01-21T14:10:48+00:00"
  1960. },
  1961. {
  1962. "name": "laravel/tinker",
  1963. "version": "v2.6.0",
  1964. "source": {
  1965. "type": "git",
  1966. "url": "https://github.com/laravel/tinker.git",
  1967. "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88"
  1968. },
  1969. "dist": {
  1970. "type": "zip",
  1971. "url": "https://api.github.com/repos/laravel/tinker/zipball/daae1c43f1300fe88c05d83db6f3d8f76677ad88",
  1972. "reference": "daae1c43f1300fe88c05d83db6f3d8f76677ad88",
  1973. "shasum": "",
  1974. "mirrors": [
  1975. {
  1976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1977. "preferred": true
  1978. }
  1979. ]
  1980. },
  1981. "require": {
  1982. "illuminate/console": "^6.0|^7.0|^8.0",
  1983. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1984. "illuminate/support": "^6.0|^7.0|^8.0",
  1985. "php": "^7.2.5|^8.0",
  1986. "psy/psysh": "^0.10.4",
  1987. "symfony/var-dumper": "^4.3.4|^5.0"
  1988. },
  1989. "require-dev": {
  1990. "mockery/mockery": "~1.3.3|^1.4.2",
  1991. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1992. },
  1993. "suggest": {
  1994. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1995. },
  1996. "type": "library",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-master": "2.x-dev"
  2000. },
  2001. "laravel": {
  2002. "providers": [
  2003. "Laravel\\Tinker\\TinkerServiceProvider"
  2004. ]
  2005. }
  2006. },
  2007. "autoload": {
  2008. "psr-4": {
  2009. "Laravel\\Tinker\\": "src/"
  2010. }
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "MIT"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Taylor Otwell",
  2019. "email": "taylor@laravel.com"
  2020. }
  2021. ],
  2022. "description": "Powerful REPL for the Laravel framework.",
  2023. "keywords": [
  2024. "REPL",
  2025. "Tinker",
  2026. "laravel",
  2027. "psysh"
  2028. ],
  2029. "support": {
  2030. "issues": "https://github.com/laravel/tinker/issues",
  2031. "source": "https://github.com/laravel/tinker/tree/v2.6.0"
  2032. },
  2033. "time": "2021-01-26T20:35:18+00:00"
  2034. },
  2035. {
  2036. "name": "laravel/ui",
  2037. "version": "v2.5.0",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://github.com/laravel/ui.git",
  2041. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2046. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2047. "shasum": "",
  2048. "mirrors": [
  2049. {
  2050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2051. "preferred": true
  2052. }
  2053. ]
  2054. },
  2055. "require": {
  2056. "illuminate/console": "^7.0",
  2057. "illuminate/filesystem": "^7.0",
  2058. "illuminate/support": "^7.0",
  2059. "php": "^7.2.5|^8.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "laravel": {
  2064. "providers": [
  2065. "Laravel\\Ui\\UiServiceProvider"
  2066. ]
  2067. }
  2068. },
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Laravel\\Ui\\": "src/",
  2072. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2073. }
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "authors": [
  2080. {
  2081. "name": "Taylor Otwell",
  2082. "email": "taylor@laravel.com"
  2083. }
  2084. ],
  2085. "description": "Laravel UI utilities and presets.",
  2086. "keywords": [
  2087. "laravel",
  2088. "ui"
  2089. ],
  2090. "support": {
  2091. "issues": "https://github.com/laravel/ui/issues",
  2092. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2093. },
  2094. "time": "2020-11-03T19:45:19+00:00"
  2095. },
  2096. {
  2097. "name": "lcobucci/jwt",
  2098. "version": "3.3.3",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://github.com/lcobucci/jwt.git",
  2102. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2107. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2108. "shasum": "",
  2109. "mirrors": [
  2110. {
  2111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2112. "preferred": true
  2113. }
  2114. ]
  2115. },
  2116. "require": {
  2117. "ext-mbstring": "*",
  2118. "ext-openssl": "*",
  2119. "php": "^5.6 || ^7.0"
  2120. },
  2121. "require-dev": {
  2122. "mikey179/vfsstream": "~1.5",
  2123. "phpmd/phpmd": "~2.2",
  2124. "phpunit/php-invoker": "~1.1",
  2125. "phpunit/phpunit": "^5.7 || ^7.3",
  2126. "squizlabs/php_codesniffer": "~2.3"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-master": "3.1-dev"
  2132. }
  2133. },
  2134. "autoload": {
  2135. "psr-4": {
  2136. "Lcobucci\\JWT\\": "src"
  2137. }
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "BSD-3-Clause"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Luís Otávio Cobucci Oblonczyk",
  2146. "email": "lcobucci@gmail.com",
  2147. "role": "Developer"
  2148. }
  2149. ],
  2150. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2151. "keywords": [
  2152. "JWS",
  2153. "jwt"
  2154. ],
  2155. "support": {
  2156. "issues": "https://github.com/lcobucci/jwt/issues",
  2157. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2158. },
  2159. "funding": [
  2160. {
  2161. "url": "https://github.com/lcobucci",
  2162. "type": "github"
  2163. },
  2164. {
  2165. "url": "https://www.patreon.com/lcobucci",
  2166. "type": "patreon"
  2167. }
  2168. ],
  2169. "time": "2020-08-20T13:22:28+00:00"
  2170. },
  2171. {
  2172. "name": "league/commonmark",
  2173. "version": "1.5.7",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/thephpleague/commonmark.git",
  2177. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2182. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  2183. "shasum": "",
  2184. "mirrors": [
  2185. {
  2186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2187. "preferred": true
  2188. }
  2189. ]
  2190. },
  2191. "require": {
  2192. "ext-mbstring": "*",
  2193. "php": "^7.1 || ^8.0"
  2194. },
  2195. "conflict": {
  2196. "scrutinizer/ocular": "1.7.*"
  2197. },
  2198. "require-dev": {
  2199. "cebe/markdown": "~1.0",
  2200. "commonmark/commonmark.js": "0.29.2",
  2201. "erusev/parsedown": "~1.0",
  2202. "ext-json": "*",
  2203. "github/gfm": "0.29.0",
  2204. "michelf/php-markdown": "~1.4",
  2205. "mikehaertl/php-shellcommand": "^1.4",
  2206. "phpstan/phpstan": "^0.12",
  2207. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2208. "scrutinizer/ocular": "^1.5",
  2209. "symfony/finder": "^4.2"
  2210. },
  2211. "bin": [
  2212. "bin/commonmark"
  2213. ],
  2214. "type": "library",
  2215. "autoload": {
  2216. "psr-4": {
  2217. "League\\CommonMark\\": "src"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "BSD-3-Clause"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Colin O'Dell",
  2227. "email": "colinodell@gmail.com",
  2228. "homepage": "https://www.colinodell.com",
  2229. "role": "Lead Developer"
  2230. }
  2231. ],
  2232. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2233. "homepage": "https://commonmark.thephpleague.com",
  2234. "keywords": [
  2235. "commonmark",
  2236. "flavored",
  2237. "gfm",
  2238. "github",
  2239. "github-flavored",
  2240. "markdown",
  2241. "md",
  2242. "parser"
  2243. ],
  2244. "support": {
  2245. "docs": "https://commonmark.thephpleague.com/",
  2246. "issues": "https://github.com/thephpleague/commonmark/issues",
  2247. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2248. "source": "https://github.com/thephpleague/commonmark"
  2249. },
  2250. "funding": [
  2251. {
  2252. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2253. "type": "custom"
  2254. },
  2255. {
  2256. "url": "https://www.colinodell.com/sponsor",
  2257. "type": "custom"
  2258. },
  2259. {
  2260. "url": "https://www.paypal.me/colinpodell/10.00",
  2261. "type": "custom"
  2262. },
  2263. {
  2264. "url": "https://github.com/colinodell",
  2265. "type": "github"
  2266. },
  2267. {
  2268. "url": "https://www.patreon.com/colinodell",
  2269. "type": "patreon"
  2270. },
  2271. {
  2272. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2273. "type": "tidelift"
  2274. }
  2275. ],
  2276. "time": "2020-10-31T13:49:32+00:00"
  2277. },
  2278. {
  2279. "name": "league/flysystem",
  2280. "version": "1.1.3",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/thephpleague/flysystem.git",
  2284. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2289. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2290. "shasum": "",
  2291. "mirrors": [
  2292. {
  2293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2294. "preferred": true
  2295. }
  2296. ]
  2297. },
  2298. "require": {
  2299. "ext-fileinfo": "*",
  2300. "league/mime-type-detection": "^1.3",
  2301. "php": "^7.2.5 || ^8.0"
  2302. },
  2303. "conflict": {
  2304. "league/flysystem-sftp": "<1.0.6"
  2305. },
  2306. "require-dev": {
  2307. "phpspec/prophecy": "^1.11.1",
  2308. "phpunit/phpunit": "^8.5.8"
  2309. },
  2310. "suggest": {
  2311. "ext-fileinfo": "Required for MimeType",
  2312. "ext-ftp": "Allows you to use FTP server storage",
  2313. "ext-openssl": "Allows you to use FTPS server storage",
  2314. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2315. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2316. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2317. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2318. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2319. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2320. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2321. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2322. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2323. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2324. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2325. },
  2326. "type": "library",
  2327. "extra": {
  2328. "branch-alias": {
  2329. "dev-master": "1.1-dev"
  2330. }
  2331. },
  2332. "autoload": {
  2333. "psr-4": {
  2334. "League\\Flysystem\\": "src/"
  2335. }
  2336. },
  2337. "notification-url": "https://packagist.org/downloads/",
  2338. "license": [
  2339. "MIT"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "Frank de Jonge",
  2344. "email": "info@frenky.net"
  2345. }
  2346. ],
  2347. "description": "Filesystem abstraction: Many filesystems, one API.",
  2348. "keywords": [
  2349. "Cloud Files",
  2350. "WebDAV",
  2351. "abstraction",
  2352. "aws",
  2353. "cloud",
  2354. "copy.com",
  2355. "dropbox",
  2356. "file systems",
  2357. "files",
  2358. "filesystem",
  2359. "filesystems",
  2360. "ftp",
  2361. "rackspace",
  2362. "remote",
  2363. "s3",
  2364. "sftp",
  2365. "storage"
  2366. ],
  2367. "support": {
  2368. "issues": "https://github.com/thephpleague/flysystem/issues",
  2369. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2370. },
  2371. "funding": [
  2372. {
  2373. "url": "https://offset.earth/frankdejonge",
  2374. "type": "other"
  2375. }
  2376. ],
  2377. "time": "2020-08-23T07:39:11+00:00"
  2378. },
  2379. {
  2380. "name": "league/mime-type-detection",
  2381. "version": "1.7.0",
  2382. "source": {
  2383. "type": "git",
  2384. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2385. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2386. },
  2387. "dist": {
  2388. "type": "zip",
  2389. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2390. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2391. "shasum": "",
  2392. "mirrors": [
  2393. {
  2394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2395. "preferred": true
  2396. }
  2397. ]
  2398. },
  2399. "require": {
  2400. "ext-fileinfo": "*",
  2401. "php": "^7.2 || ^8.0"
  2402. },
  2403. "require-dev": {
  2404. "friendsofphp/php-cs-fixer": "^2.18",
  2405. "phpstan/phpstan": "^0.12.68",
  2406. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2407. },
  2408. "type": "library",
  2409. "autoload": {
  2410. "psr-4": {
  2411. "League\\MimeTypeDetection\\": "src"
  2412. }
  2413. },
  2414. "notification-url": "https://packagist.org/downloads/",
  2415. "license": [
  2416. "MIT"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "Frank de Jonge",
  2421. "email": "info@frankdejonge.nl"
  2422. }
  2423. ],
  2424. "description": "Mime-type detection for Flysystem",
  2425. "support": {
  2426. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2427. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2428. },
  2429. "funding": [
  2430. {
  2431. "url": "https://github.com/frankdejonge",
  2432. "type": "github"
  2433. },
  2434. {
  2435. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2436. "type": "tidelift"
  2437. }
  2438. ],
  2439. "time": "2021-01-18T20:58:21+00:00"
  2440. },
  2441. {
  2442. "name": "maatwebsite/excel",
  2443. "version": "3.1.27",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2447. "reference": "584d65427eae4de0ba072297c8fac9b0d63dbc37"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/584d65427eae4de0ba072297c8fac9b0d63dbc37",
  2452. "reference": "584d65427eae4de0ba072297c8fac9b0d63dbc37",
  2453. "shasum": "",
  2454. "mirrors": [
  2455. {
  2456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2457. "preferred": true
  2458. }
  2459. ]
  2460. },
  2461. "require": {
  2462. "ext-json": "*",
  2463. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2464. "php": "^7.0|^8.0",
  2465. "phpoffice/phpspreadsheet": "^1.16"
  2466. },
  2467. "require-dev": {
  2468. "orchestra/testbench": "^6.0",
  2469. "predis/predis": "^1.1"
  2470. },
  2471. "type": "library",
  2472. "extra": {
  2473. "laravel": {
  2474. "providers": [
  2475. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2476. ],
  2477. "aliases": {
  2478. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2479. }
  2480. }
  2481. },
  2482. "autoload": {
  2483. "psr-4": {
  2484. "Maatwebsite\\Excel\\": "src/"
  2485. }
  2486. },
  2487. "notification-url": "https://packagist.org/downloads/",
  2488. "license": [
  2489. "MIT"
  2490. ],
  2491. "authors": [
  2492. {
  2493. "name": "Patrick Brouwers",
  2494. "email": "patrick@maatwebsite.nl"
  2495. }
  2496. ],
  2497. "description": "Supercharged Excel exports and imports in Laravel",
  2498. "keywords": [
  2499. "PHPExcel",
  2500. "batch",
  2501. "csv",
  2502. "excel",
  2503. "export",
  2504. "import",
  2505. "laravel",
  2506. "php",
  2507. "phpspreadsheet"
  2508. ],
  2509. "support": {
  2510. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2511. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.27"
  2512. },
  2513. "funding": [
  2514. {
  2515. "url": "https://laravel-excel.com/commercial-support",
  2516. "type": "custom"
  2517. },
  2518. {
  2519. "url": "https://github.com/patrickbrouwers",
  2520. "type": "github"
  2521. }
  2522. ],
  2523. "time": "2021-02-22T16:58:19+00:00"
  2524. },
  2525. {
  2526. "name": "maennchen/zipstream-php",
  2527. "version": "2.1.0",
  2528. "source": {
  2529. "type": "git",
  2530. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2531. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2532. },
  2533. "dist": {
  2534. "type": "zip",
  2535. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2536. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2537. "shasum": "",
  2538. "mirrors": [
  2539. {
  2540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2541. "preferred": true
  2542. }
  2543. ]
  2544. },
  2545. "require": {
  2546. "myclabs/php-enum": "^1.5",
  2547. "php": ">= 7.1",
  2548. "psr/http-message": "^1.0",
  2549. "symfony/polyfill-mbstring": "^1.0"
  2550. },
  2551. "require-dev": {
  2552. "ext-zip": "*",
  2553. "guzzlehttp/guzzle": ">= 6.3",
  2554. "mikey179/vfsstream": "^1.6",
  2555. "phpunit/phpunit": ">= 7.5"
  2556. },
  2557. "type": "library",
  2558. "autoload": {
  2559. "psr-4": {
  2560. "ZipStream\\": "src/"
  2561. }
  2562. },
  2563. "notification-url": "https://packagist.org/downloads/",
  2564. "license": [
  2565. "MIT"
  2566. ],
  2567. "authors": [
  2568. {
  2569. "name": "Paul Duncan",
  2570. "email": "pabs@pablotron.org"
  2571. },
  2572. {
  2573. "name": "Jonatan Männchen",
  2574. "email": "jonatan@maennchen.ch"
  2575. },
  2576. {
  2577. "name": "Jesse Donat",
  2578. "email": "donatj@gmail.com"
  2579. },
  2580. {
  2581. "name": "András Kolesár",
  2582. "email": "kolesar@kolesar.hu"
  2583. }
  2584. ],
  2585. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2586. "keywords": [
  2587. "stream",
  2588. "zip"
  2589. ],
  2590. "support": {
  2591. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2592. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2593. },
  2594. "funding": [
  2595. {
  2596. "url": "https://opencollective.com/zipstream",
  2597. "type": "open_collective"
  2598. }
  2599. ],
  2600. "time": "2020-05-30T13:11:16+00:00"
  2601. },
  2602. {
  2603. "name": "markbaker/complex",
  2604. "version": "2.0.0",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2608. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2613. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2614. "shasum": "",
  2615. "mirrors": [
  2616. {
  2617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2618. "preferred": true
  2619. }
  2620. ]
  2621. },
  2622. "require": {
  2623. "php": "^7.2 || ^8.0"
  2624. },
  2625. "require-dev": {
  2626. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2627. "phpcompatibility/php-compatibility": "^9.0",
  2628. "phpdocumentor/phpdocumentor": "2.*",
  2629. "phploc/phploc": "^4.0",
  2630. "phpmd/phpmd": "2.*",
  2631. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2632. "sebastian/phpcpd": "^4.0",
  2633. "squizlabs/php_codesniffer": "^3.4"
  2634. },
  2635. "type": "library",
  2636. "autoload": {
  2637. "psr-4": {
  2638. "Complex\\": "classes/src/"
  2639. },
  2640. "files": [
  2641. "classes/src/functions/abs.php",
  2642. "classes/src/functions/acos.php",
  2643. "classes/src/functions/acosh.php",
  2644. "classes/src/functions/acot.php",
  2645. "classes/src/functions/acoth.php",
  2646. "classes/src/functions/acsc.php",
  2647. "classes/src/functions/acsch.php",
  2648. "classes/src/functions/argument.php",
  2649. "classes/src/functions/asec.php",
  2650. "classes/src/functions/asech.php",
  2651. "classes/src/functions/asin.php",
  2652. "classes/src/functions/asinh.php",
  2653. "classes/src/functions/atan.php",
  2654. "classes/src/functions/atanh.php",
  2655. "classes/src/functions/conjugate.php",
  2656. "classes/src/functions/cos.php",
  2657. "classes/src/functions/cosh.php",
  2658. "classes/src/functions/cot.php",
  2659. "classes/src/functions/coth.php",
  2660. "classes/src/functions/csc.php",
  2661. "classes/src/functions/csch.php",
  2662. "classes/src/functions/exp.php",
  2663. "classes/src/functions/inverse.php",
  2664. "classes/src/functions/ln.php",
  2665. "classes/src/functions/log2.php",
  2666. "classes/src/functions/log10.php",
  2667. "classes/src/functions/negative.php",
  2668. "classes/src/functions/pow.php",
  2669. "classes/src/functions/rho.php",
  2670. "classes/src/functions/sec.php",
  2671. "classes/src/functions/sech.php",
  2672. "classes/src/functions/sin.php",
  2673. "classes/src/functions/sinh.php",
  2674. "classes/src/functions/sqrt.php",
  2675. "classes/src/functions/tan.php",
  2676. "classes/src/functions/tanh.php",
  2677. "classes/src/functions/theta.php",
  2678. "classes/src/operations/add.php",
  2679. "classes/src/operations/subtract.php",
  2680. "classes/src/operations/multiply.php",
  2681. "classes/src/operations/divideby.php",
  2682. "classes/src/operations/divideinto.php"
  2683. ]
  2684. },
  2685. "notification-url": "https://packagist.org/downloads/",
  2686. "license": [
  2687. "MIT"
  2688. ],
  2689. "authors": [
  2690. {
  2691. "name": "Mark Baker",
  2692. "email": "mark@lange.demon.co.uk"
  2693. }
  2694. ],
  2695. "description": "PHP Class for working with complex numbers",
  2696. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2697. "keywords": [
  2698. "complex",
  2699. "mathematics"
  2700. ],
  2701. "support": {
  2702. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2703. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2704. },
  2705. "time": "2020-08-26T10:42:07+00:00"
  2706. },
  2707. {
  2708. "name": "markbaker/matrix",
  2709. "version": "2.1.2",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2713. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2718. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  2719. "shasum": "",
  2720. "mirrors": [
  2721. {
  2722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2723. "preferred": true
  2724. }
  2725. ]
  2726. },
  2727. "require": {
  2728. "php": "^7.1 || ^8.0"
  2729. },
  2730. "require-dev": {
  2731. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2732. "phpcompatibility/php-compatibility": "^9.0",
  2733. "phpdocumentor/phpdocumentor": "2.*",
  2734. "phploc/phploc": "^4.0",
  2735. "phpmd/phpmd": "2.*",
  2736. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2737. "sebastian/phpcpd": "^4.0",
  2738. "squizlabs/php_codesniffer": "^3.4"
  2739. },
  2740. "type": "library",
  2741. "autoload": {
  2742. "psr-4": {
  2743. "Matrix\\": "classes/src/"
  2744. },
  2745. "files": [
  2746. "classes/src/Functions/adjoint.php",
  2747. "classes/src/Functions/antidiagonal.php",
  2748. "classes/src/Functions/cofactors.php",
  2749. "classes/src/Functions/determinant.php",
  2750. "classes/src/Functions/diagonal.php",
  2751. "classes/src/Functions/identity.php",
  2752. "classes/src/Functions/inverse.php",
  2753. "classes/src/Functions/minors.php",
  2754. "classes/src/Functions/trace.php",
  2755. "classes/src/Functions/transpose.php",
  2756. "classes/src/Operations/add.php",
  2757. "classes/src/Operations/directsum.php",
  2758. "classes/src/Operations/subtract.php",
  2759. "classes/src/Operations/multiply.php",
  2760. "classes/src/Operations/divideby.php",
  2761. "classes/src/Operations/divideinto.php"
  2762. ]
  2763. },
  2764. "notification-url": "https://packagist.org/downloads/",
  2765. "license": [
  2766. "MIT"
  2767. ],
  2768. "authors": [
  2769. {
  2770. "name": "Mark Baker",
  2771. "email": "mark@demon-angel.eu"
  2772. }
  2773. ],
  2774. "description": "PHP Class for working with matrices",
  2775. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2776. "keywords": [
  2777. "mathematics",
  2778. "matrix",
  2779. "vector"
  2780. ],
  2781. "support": {
  2782. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2783. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.2"
  2784. },
  2785. "time": "2021-01-23T16:37:31+00:00"
  2786. },
  2787. {
  2788. "name": "monolog/monolog",
  2789. "version": "2.2.0",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://github.com/Seldaek/monolog.git",
  2793. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2798. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2799. "shasum": "",
  2800. "mirrors": [
  2801. {
  2802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2803. "preferred": true
  2804. }
  2805. ]
  2806. },
  2807. "require": {
  2808. "php": ">=7.2",
  2809. "psr/log": "^1.0.1"
  2810. },
  2811. "provide": {
  2812. "psr/log-implementation": "1.0.0"
  2813. },
  2814. "require-dev": {
  2815. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2816. "doctrine/couchdb": "~1.0@dev",
  2817. "elasticsearch/elasticsearch": "^7",
  2818. "graylog2/gelf-php": "^1.4.2",
  2819. "mongodb/mongodb": "^1.8",
  2820. "php-amqplib/php-amqplib": "~2.4",
  2821. "php-console/php-console": "^3.1.3",
  2822. "phpspec/prophecy": "^1.6.1",
  2823. "phpstan/phpstan": "^0.12.59",
  2824. "phpunit/phpunit": "^8.5",
  2825. "predis/predis": "^1.1",
  2826. "rollbar/rollbar": "^1.3",
  2827. "ruflin/elastica": ">=0.90 <7.0.1",
  2828. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2829. },
  2830. "suggest": {
  2831. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2832. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2833. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2834. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2835. "ext-mbstring": "Allow to work properly with unicode symbols",
  2836. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2837. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2838. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2839. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2840. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2841. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2842. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2843. },
  2844. "type": "library",
  2845. "extra": {
  2846. "branch-alias": {
  2847. "dev-main": "2.x-dev"
  2848. }
  2849. },
  2850. "autoload": {
  2851. "psr-4": {
  2852. "Monolog\\": "src/Monolog"
  2853. }
  2854. },
  2855. "notification-url": "https://packagist.org/downloads/",
  2856. "license": [
  2857. "MIT"
  2858. ],
  2859. "authors": [
  2860. {
  2861. "name": "Jordi Boggiano",
  2862. "email": "j.boggiano@seld.be",
  2863. "homepage": "https://seld.be"
  2864. }
  2865. ],
  2866. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2867. "homepage": "https://github.com/Seldaek/monolog",
  2868. "keywords": [
  2869. "log",
  2870. "logging",
  2871. "psr-3"
  2872. ],
  2873. "support": {
  2874. "issues": "https://github.com/Seldaek/monolog/issues",
  2875. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  2876. },
  2877. "funding": [
  2878. {
  2879. "url": "https://github.com/Seldaek",
  2880. "type": "github"
  2881. },
  2882. {
  2883. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2884. "type": "tidelift"
  2885. }
  2886. ],
  2887. "time": "2020-12-14T13:15:25+00:00"
  2888. },
  2889. {
  2890. "name": "myclabs/php-enum",
  2891. "version": "1.7.7",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://github.com/myclabs/php-enum.git",
  2895. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2900. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2901. "shasum": "",
  2902. "mirrors": [
  2903. {
  2904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2905. "preferred": true
  2906. }
  2907. ]
  2908. },
  2909. "require": {
  2910. "ext-json": "*",
  2911. "php": ">=7.1"
  2912. },
  2913. "require-dev": {
  2914. "phpunit/phpunit": "^7",
  2915. "squizlabs/php_codesniffer": "1.*",
  2916. "vimeo/psalm": "^3.8"
  2917. },
  2918. "type": "library",
  2919. "autoload": {
  2920. "psr-4": {
  2921. "MyCLabs\\Enum\\": "src/"
  2922. }
  2923. },
  2924. "notification-url": "https://packagist.org/downloads/",
  2925. "license": [
  2926. "MIT"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "PHP Enum contributors",
  2931. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2932. }
  2933. ],
  2934. "description": "PHP Enum implementation",
  2935. "homepage": "http://github.com/myclabs/php-enum",
  2936. "keywords": [
  2937. "enum"
  2938. ],
  2939. "support": {
  2940. "issues": "https://github.com/myclabs/php-enum/issues",
  2941. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  2942. },
  2943. "funding": [
  2944. {
  2945. "url": "https://github.com/mnapoli",
  2946. "type": "github"
  2947. },
  2948. {
  2949. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2950. "type": "tidelift"
  2951. }
  2952. ],
  2953. "time": "2020-11-14T18:14:52+00:00"
  2954. },
  2955. {
  2956. "name": "namshi/jose",
  2957. "version": "7.2.3",
  2958. "source": {
  2959. "type": "git",
  2960. "url": "https://github.com/namshi/jose.git",
  2961. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  2962. },
  2963. "dist": {
  2964. "type": "zip",
  2965. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  2966. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  2967. "shasum": "",
  2968. "mirrors": [
  2969. {
  2970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2971. "preferred": true
  2972. }
  2973. ]
  2974. },
  2975. "require": {
  2976. "ext-date": "*",
  2977. "ext-hash": "*",
  2978. "ext-json": "*",
  2979. "ext-pcre": "*",
  2980. "ext-spl": "*",
  2981. "php": ">=5.5",
  2982. "symfony/polyfill-php56": "^1.0"
  2983. },
  2984. "require-dev": {
  2985. "phpseclib/phpseclib": "^2.0",
  2986. "phpunit/phpunit": "^4.5|^5.0",
  2987. "satooshi/php-coveralls": "^1.0"
  2988. },
  2989. "suggest": {
  2990. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  2991. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  2992. },
  2993. "type": "library",
  2994. "autoload": {
  2995. "psr-4": {
  2996. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  2997. }
  2998. },
  2999. "notification-url": "https://packagist.org/downloads/",
  3000. "license": [
  3001. "MIT"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "Alessandro Nadalin",
  3006. "email": "alessandro.nadalin@gmail.com"
  3007. },
  3008. {
  3009. "name": "Alessandro Cinelli (cirpo)",
  3010. "email": "alessandro.cinelli@gmail.com"
  3011. }
  3012. ],
  3013. "description": "JSON Object Signing and Encryption library for PHP.",
  3014. "keywords": [
  3015. "JSON Web Signature",
  3016. "JSON Web Token",
  3017. "JWS",
  3018. "json",
  3019. "jwt",
  3020. "token"
  3021. ],
  3022. "support": {
  3023. "issues": "https://github.com/namshi/jose/issues",
  3024. "source": "https://github.com/namshi/jose/tree/master"
  3025. },
  3026. "time": "2016-12-05T07:27:31+00:00"
  3027. },
  3028. {
  3029. "name": "nesbot/carbon",
  3030. "version": "2.45.1",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://github.com/briannesbitt/Carbon.git",
  3034. "reference": "528783b188bdb853eb21239b1722831e0f000a8d"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/528783b188bdb853eb21239b1722831e0f000a8d",
  3039. "reference": "528783b188bdb853eb21239b1722831e0f000a8d",
  3040. "shasum": "",
  3041. "mirrors": [
  3042. {
  3043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3044. "preferred": true
  3045. }
  3046. ]
  3047. },
  3048. "require": {
  3049. "ext-json": "*",
  3050. "php": "^7.1.8 || ^8.0",
  3051. "symfony/polyfill-mbstring": "^1.0",
  3052. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3053. },
  3054. "require-dev": {
  3055. "doctrine/orm": "^2.7",
  3056. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3057. "kylekatarnls/multi-tester": "^2.0",
  3058. "phpmd/phpmd": "^2.9",
  3059. "phpstan/extension-installer": "^1.0",
  3060. "phpstan/phpstan": "^0.12.54",
  3061. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3062. "squizlabs/php_codesniffer": "^3.4"
  3063. },
  3064. "bin": [
  3065. "bin/carbon"
  3066. ],
  3067. "type": "library",
  3068. "extra": {
  3069. "branch-alias": {
  3070. "dev-master": "2.x-dev",
  3071. "dev-3.x": "3.x-dev"
  3072. },
  3073. "laravel": {
  3074. "providers": [
  3075. "Carbon\\Laravel\\ServiceProvider"
  3076. ]
  3077. },
  3078. "phpstan": {
  3079. "includes": [
  3080. "extension.neon"
  3081. ]
  3082. }
  3083. },
  3084. "autoload": {
  3085. "psr-4": {
  3086. "Carbon\\": "src/Carbon/"
  3087. }
  3088. },
  3089. "notification-url": "https://packagist.org/downloads/",
  3090. "license": [
  3091. "MIT"
  3092. ],
  3093. "authors": [
  3094. {
  3095. "name": "Brian Nesbitt",
  3096. "email": "brian@nesbot.com",
  3097. "homepage": "http://nesbot.com"
  3098. },
  3099. {
  3100. "name": "kylekatarnls",
  3101. "homepage": "http://github.com/kylekatarnls"
  3102. }
  3103. ],
  3104. "description": "An API extension for DateTime that supports 281 different languages.",
  3105. "homepage": "http://carbon.nesbot.com",
  3106. "keywords": [
  3107. "date",
  3108. "datetime",
  3109. "time"
  3110. ],
  3111. "support": {
  3112. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3113. "source": "https://github.com/briannesbitt/Carbon"
  3114. },
  3115. "funding": [
  3116. {
  3117. "url": "https://opencollective.com/Carbon",
  3118. "type": "open_collective"
  3119. },
  3120. {
  3121. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3122. "type": "tidelift"
  3123. }
  3124. ],
  3125. "time": "2021-02-11T18:30:17+00:00"
  3126. },
  3127. {
  3128. "name": "nikic/php-parser",
  3129. "version": "v4.10.4",
  3130. "source": {
  3131. "type": "git",
  3132. "url": "https://github.com/nikic/PHP-Parser.git",
  3133. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3134. },
  3135. "dist": {
  3136. "type": "zip",
  3137. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3138. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3139. "shasum": "",
  3140. "mirrors": [
  3141. {
  3142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3143. "preferred": true
  3144. }
  3145. ]
  3146. },
  3147. "require": {
  3148. "ext-tokenizer": "*",
  3149. "php": ">=7.0"
  3150. },
  3151. "require-dev": {
  3152. "ircmaxell/php-yacc": "^0.0.7",
  3153. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3154. },
  3155. "bin": [
  3156. "bin/php-parse"
  3157. ],
  3158. "type": "library",
  3159. "extra": {
  3160. "branch-alias": {
  3161. "dev-master": "4.9-dev"
  3162. }
  3163. },
  3164. "autoload": {
  3165. "psr-4": {
  3166. "PhpParser\\": "lib/PhpParser"
  3167. }
  3168. },
  3169. "notification-url": "https://packagist.org/downloads/",
  3170. "license": [
  3171. "BSD-3-Clause"
  3172. ],
  3173. "authors": [
  3174. {
  3175. "name": "Nikita Popov"
  3176. }
  3177. ],
  3178. "description": "A PHP parser written in PHP",
  3179. "keywords": [
  3180. "parser",
  3181. "php"
  3182. ],
  3183. "support": {
  3184. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3185. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3186. },
  3187. "time": "2020-12-20T10:01:03+00:00"
  3188. },
  3189. {
  3190. "name": "opis/closure",
  3191. "version": "3.6.1",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/opis/closure.git",
  3195. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3200. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3201. "shasum": "",
  3202. "mirrors": [
  3203. {
  3204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3205. "preferred": true
  3206. }
  3207. ]
  3208. },
  3209. "require": {
  3210. "php": "^5.4 || ^7.0 || ^8.0"
  3211. },
  3212. "require-dev": {
  3213. "jeremeamia/superclosure": "^2.0",
  3214. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3215. },
  3216. "type": "library",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-master": "3.6.x-dev"
  3220. }
  3221. },
  3222. "autoload": {
  3223. "psr-4": {
  3224. "Opis\\Closure\\": "src/"
  3225. },
  3226. "files": [
  3227. "functions.php"
  3228. ]
  3229. },
  3230. "notification-url": "https://packagist.org/downloads/",
  3231. "license": [
  3232. "MIT"
  3233. ],
  3234. "authors": [
  3235. {
  3236. "name": "Marius Sarca",
  3237. "email": "marius.sarca@gmail.com"
  3238. },
  3239. {
  3240. "name": "Sorin Sarca",
  3241. "email": "sarca_sorin@hotmail.com"
  3242. }
  3243. ],
  3244. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3245. "homepage": "https://opis.io/closure",
  3246. "keywords": [
  3247. "anonymous functions",
  3248. "closure",
  3249. "function",
  3250. "serializable",
  3251. "serialization",
  3252. "serialize"
  3253. ],
  3254. "support": {
  3255. "issues": "https://github.com/opis/closure/issues",
  3256. "source": "https://github.com/opis/closure/tree/3.6.1"
  3257. },
  3258. "time": "2020-11-07T02:01:34+00:00"
  3259. },
  3260. {
  3261. "name": "overtrue/laravel-pinyin",
  3262. "version": "4.0.0",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3266. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3271. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3272. "shasum": "",
  3273. "mirrors": [
  3274. {
  3275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3276. "preferred": true
  3277. }
  3278. ]
  3279. },
  3280. "require": {
  3281. "overtrue/pinyin": "~4.0"
  3282. },
  3283. "type": "library",
  3284. "extra": {
  3285. "laravel": {
  3286. "providers": [
  3287. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3288. ],
  3289. "aliases": {
  3290. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3291. }
  3292. }
  3293. },
  3294. "autoload": {
  3295. "psr-4": {
  3296. "Overtrue\\LaravelPinyin\\": "src/"
  3297. },
  3298. "files": [
  3299. "src/helpers.php"
  3300. ]
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "MIT"
  3305. ],
  3306. "authors": [
  3307. {
  3308. "name": "overtrue",
  3309. "email": "anzhengchao@gmail.com"
  3310. }
  3311. ],
  3312. "description": "Chinese to Pinyin translator.",
  3313. "keywords": [
  3314. "Chinese",
  3315. "Pinyin",
  3316. "laravel",
  3317. "overtrue"
  3318. ],
  3319. "support": {
  3320. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3321. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3322. },
  3323. "time": "2018-10-10T09:02:46+00:00"
  3324. },
  3325. {
  3326. "name": "overtrue/pinyin",
  3327. "version": "4.0.6",
  3328. "source": {
  3329. "type": "git",
  3330. "url": "https://github.com/overtrue/pinyin.git",
  3331. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d"
  3332. },
  3333. "dist": {
  3334. "type": "zip",
  3335. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  3336. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  3337. "shasum": "",
  3338. "mirrors": [
  3339. {
  3340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3341. "preferred": true
  3342. }
  3343. ]
  3344. },
  3345. "require": {
  3346. "php": ">=7.1"
  3347. },
  3348. "require-dev": {
  3349. "brainmaestro/composer-git-hooks": "^2.7",
  3350. "friendsofphp/php-cs-fixer": "^2.16",
  3351. "phpunit/phpunit": "~8.0"
  3352. },
  3353. "type": "library",
  3354. "extra": {
  3355. "hooks": {
  3356. "pre-commit": [
  3357. "composer test",
  3358. "composer fix-style"
  3359. ],
  3360. "pre-push": [
  3361. "composer test",
  3362. "composer check-style"
  3363. ]
  3364. }
  3365. },
  3366. "autoload": {
  3367. "psr-4": {
  3368. "Overtrue\\Pinyin\\": "src/"
  3369. },
  3370. "files": [
  3371. "src/const.php"
  3372. ]
  3373. },
  3374. "notification-url": "https://packagist.org/downloads/",
  3375. "license": [
  3376. "MIT"
  3377. ],
  3378. "authors": [
  3379. {
  3380. "name": "overtrue",
  3381. "email": "anzhengchao@gmail.com",
  3382. "homepage": "http://github.com/overtrue"
  3383. }
  3384. ],
  3385. "description": "Chinese to pinyin translator.",
  3386. "homepage": "https://github.com/overtrue/pinyin",
  3387. "keywords": [
  3388. "Chinese",
  3389. "Pinyin",
  3390. "cn2pinyin"
  3391. ],
  3392. "support": {
  3393. "issues": "https://github.com/overtrue/pinyin/issues",
  3394. "source": "https://github.com/overtrue/pinyin/tree/master"
  3395. },
  3396. "funding": [
  3397. {
  3398. "url": "https://www.patreon.com/overtrue",
  3399. "type": "patreon"
  3400. }
  3401. ],
  3402. "time": "2020-04-13T08:53:30+00:00"
  3403. },
  3404. {
  3405. "name": "paragonie/random_compat",
  3406. "version": "v9.99.100",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/paragonie/random_compat.git",
  3410. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3415. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3416. "shasum": "",
  3417. "mirrors": [
  3418. {
  3419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3420. "preferred": true
  3421. }
  3422. ]
  3423. },
  3424. "require": {
  3425. "php": ">= 7"
  3426. },
  3427. "require-dev": {
  3428. "phpunit/phpunit": "4.*|5.*",
  3429. "vimeo/psalm": "^1"
  3430. },
  3431. "suggest": {
  3432. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3433. },
  3434. "type": "library",
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "MIT"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Paragon Initiative Enterprises",
  3442. "email": "security@paragonie.com",
  3443. "homepage": "https://paragonie.com"
  3444. }
  3445. ],
  3446. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3447. "keywords": [
  3448. "csprng",
  3449. "polyfill",
  3450. "pseudorandom",
  3451. "random"
  3452. ],
  3453. "support": {
  3454. "email": "info@paragonie.com",
  3455. "issues": "https://github.com/paragonie/random_compat/issues",
  3456. "source": "https://github.com/paragonie/random_compat"
  3457. },
  3458. "time": "2020-10-15T08:29:30+00:00"
  3459. },
  3460. {
  3461. "name": "paragonie/sodium_compat",
  3462. "version": "v1.14.0",
  3463. "source": {
  3464. "type": "git",
  3465. "url": "https://github.com/paragonie/sodium_compat.git",
  3466. "reference": "a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3"
  3467. },
  3468. "dist": {
  3469. "type": "zip",
  3470. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3",
  3471. "reference": "a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3",
  3472. "shasum": "",
  3473. "mirrors": [
  3474. {
  3475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3476. "preferred": true
  3477. }
  3478. ]
  3479. },
  3480. "require": {
  3481. "paragonie/random_compat": ">=1",
  3482. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3483. },
  3484. "require-dev": {
  3485. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3486. },
  3487. "suggest": {
  3488. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3489. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3490. },
  3491. "type": "library",
  3492. "autoload": {
  3493. "files": [
  3494. "autoload.php"
  3495. ]
  3496. },
  3497. "notification-url": "https://packagist.org/downloads/",
  3498. "license": [
  3499. "ISC"
  3500. ],
  3501. "authors": [
  3502. {
  3503. "name": "Paragon Initiative Enterprises",
  3504. "email": "security@paragonie.com"
  3505. },
  3506. {
  3507. "name": "Frank Denis",
  3508. "email": "jedisct1@pureftpd.org"
  3509. }
  3510. ],
  3511. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3512. "keywords": [
  3513. "Authentication",
  3514. "BLAKE2b",
  3515. "ChaCha20",
  3516. "ChaCha20-Poly1305",
  3517. "Chapoly",
  3518. "Curve25519",
  3519. "Ed25519",
  3520. "EdDSA",
  3521. "Edwards-curve Digital Signature Algorithm",
  3522. "Elliptic Curve Diffie-Hellman",
  3523. "Poly1305",
  3524. "Pure-PHP cryptography",
  3525. "RFC 7748",
  3526. "RFC 8032",
  3527. "Salpoly",
  3528. "Salsa20",
  3529. "X25519",
  3530. "XChaCha20-Poly1305",
  3531. "XSalsa20-Poly1305",
  3532. "Xchacha20",
  3533. "Xsalsa20",
  3534. "aead",
  3535. "cryptography",
  3536. "ecdh",
  3537. "elliptic curve",
  3538. "elliptic curve cryptography",
  3539. "encryption",
  3540. "libsodium",
  3541. "php",
  3542. "public-key cryptography",
  3543. "secret-key cryptography",
  3544. "side-channel resistant"
  3545. ],
  3546. "support": {
  3547. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3548. "source": "https://github.com/paragonie/sodium_compat/tree/v1.14.0"
  3549. },
  3550. "time": "2020-12-03T16:26:19+00:00"
  3551. },
  3552. {
  3553. "name": "phpoffice/phpspreadsheet",
  3554. "version": "1.16.0",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3558. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3563. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  3564. "shasum": "",
  3565. "mirrors": [
  3566. {
  3567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3568. "preferred": true
  3569. }
  3570. ]
  3571. },
  3572. "require": {
  3573. "ext-ctype": "*",
  3574. "ext-dom": "*",
  3575. "ext-fileinfo": "*",
  3576. "ext-gd": "*",
  3577. "ext-iconv": "*",
  3578. "ext-libxml": "*",
  3579. "ext-mbstring": "*",
  3580. "ext-simplexml": "*",
  3581. "ext-xml": "*",
  3582. "ext-xmlreader": "*",
  3583. "ext-xmlwriter": "*",
  3584. "ext-zip": "*",
  3585. "ext-zlib": "*",
  3586. "ezyang/htmlpurifier": "^4.13",
  3587. "maennchen/zipstream-php": "^2.1",
  3588. "markbaker/complex": "^1.5||^2.0",
  3589. "markbaker/matrix": "^1.2||^2.0",
  3590. "php": "^7.2||^8.0",
  3591. "psr/http-client": "^1.0",
  3592. "psr/http-factory": "^1.0",
  3593. "psr/simple-cache": "^1.0"
  3594. },
  3595. "require-dev": {
  3596. "dompdf/dompdf": "^0.8.5",
  3597. "friendsofphp/php-cs-fixer": "^2.16",
  3598. "jpgraph/jpgraph": "^4.0",
  3599. "mpdf/mpdf": "^8.0",
  3600. "phpcompatibility/php-compatibility": "^9.3",
  3601. "phpunit/phpunit": "^8.5||^9.3",
  3602. "squizlabs/php_codesniffer": "^3.5",
  3603. "tecnickcom/tcpdf": "^6.3"
  3604. },
  3605. "suggest": {
  3606. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3607. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3608. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3609. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3610. },
  3611. "type": "library",
  3612. "autoload": {
  3613. "psr-4": {
  3614. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3615. }
  3616. },
  3617. "notification-url": "https://packagist.org/downloads/",
  3618. "license": [
  3619. "MIT"
  3620. ],
  3621. "authors": [
  3622. {
  3623. "name": "Maarten Balliauw",
  3624. "homepage": "https://blog.maartenballiauw.be"
  3625. },
  3626. {
  3627. "name": "Mark Baker",
  3628. "homepage": "https://markbakeruk.net"
  3629. },
  3630. {
  3631. "name": "Franck Lefevre",
  3632. "homepage": "https://rootslabs.net"
  3633. },
  3634. {
  3635. "name": "Erik Tilt"
  3636. },
  3637. {
  3638. "name": "Adrien Crivelli"
  3639. }
  3640. ],
  3641. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3642. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3643. "keywords": [
  3644. "OpenXML",
  3645. "excel",
  3646. "gnumeric",
  3647. "ods",
  3648. "php",
  3649. "spreadsheet",
  3650. "xls",
  3651. "xlsx"
  3652. ],
  3653. "support": {
  3654. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3655. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3656. },
  3657. "time": "2020-12-31T18:03:49+00:00"
  3658. },
  3659. {
  3660. "name": "phpoption/phpoption",
  3661. "version": "1.7.5",
  3662. "source": {
  3663. "type": "git",
  3664. "url": "https://github.com/schmittjoh/php-option.git",
  3665. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3666. },
  3667. "dist": {
  3668. "type": "zip",
  3669. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3670. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3671. "shasum": "",
  3672. "mirrors": [
  3673. {
  3674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3675. "preferred": true
  3676. }
  3677. ]
  3678. },
  3679. "require": {
  3680. "php": "^5.5.9 || ^7.0 || ^8.0"
  3681. },
  3682. "require-dev": {
  3683. "bamarni/composer-bin-plugin": "^1.4.1",
  3684. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3685. },
  3686. "type": "library",
  3687. "extra": {
  3688. "branch-alias": {
  3689. "dev-master": "1.7-dev"
  3690. }
  3691. },
  3692. "autoload": {
  3693. "psr-4": {
  3694. "PhpOption\\": "src/PhpOption/"
  3695. }
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "Apache-2.0"
  3700. ],
  3701. "authors": [
  3702. {
  3703. "name": "Johannes M. Schmitt",
  3704. "email": "schmittjoh@gmail.com"
  3705. },
  3706. {
  3707. "name": "Graham Campbell",
  3708. "email": "graham@alt-three.com"
  3709. }
  3710. ],
  3711. "description": "Option Type for PHP",
  3712. "keywords": [
  3713. "language",
  3714. "option",
  3715. "php",
  3716. "type"
  3717. ],
  3718. "support": {
  3719. "issues": "https://github.com/schmittjoh/php-option/issues",
  3720. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3721. },
  3722. "funding": [
  3723. {
  3724. "url": "https://github.com/GrahamCampbell",
  3725. "type": "github"
  3726. },
  3727. {
  3728. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3729. "type": "tidelift"
  3730. }
  3731. ],
  3732. "time": "2020-07-20T17:29:33+00:00"
  3733. },
  3734. {
  3735. "name": "predis/predis",
  3736. "version": "v1.1.6",
  3737. "source": {
  3738. "type": "git",
  3739. "url": "https://github.com/predis/predis.git",
  3740. "reference": "9930e933c67446962997b05201c69c2319bf26de"
  3741. },
  3742. "dist": {
  3743. "type": "zip",
  3744. "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de",
  3745. "reference": "9930e933c67446962997b05201c69c2319bf26de",
  3746. "shasum": "",
  3747. "mirrors": [
  3748. {
  3749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3750. "preferred": true
  3751. }
  3752. ]
  3753. },
  3754. "require": {
  3755. "php": ">=5.3.9"
  3756. },
  3757. "require-dev": {
  3758. "cweagans/composer-patches": "^1.6",
  3759. "phpunit/phpunit": "~4.8"
  3760. },
  3761. "suggest": {
  3762. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3763. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3764. },
  3765. "type": "library",
  3766. "extra": {
  3767. "composer-exit-on-patch-failure": true,
  3768. "patches": {
  3769. "phpunit/phpunit-mock-objects": {
  3770. "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch"
  3771. },
  3772. "phpunit/phpunit": {
  3773. "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch",
  3774. "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch"
  3775. }
  3776. }
  3777. },
  3778. "autoload": {
  3779. "psr-4": {
  3780. "Predis\\": "src/"
  3781. }
  3782. },
  3783. "notification-url": "https://packagist.org/downloads/",
  3784. "license": [
  3785. "MIT"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "Daniele Alessandri",
  3790. "email": "suppakilla@gmail.com",
  3791. "homepage": "http://clorophilla.net",
  3792. "role": "Creator & Maintainer"
  3793. },
  3794. {
  3795. "name": "Till Krüss",
  3796. "homepage": "https://till.im",
  3797. "role": "Maintainer"
  3798. }
  3799. ],
  3800. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3801. "homepage": "http://github.com/predis/predis",
  3802. "keywords": [
  3803. "nosql",
  3804. "predis",
  3805. "redis"
  3806. ],
  3807. "support": {
  3808. "issues": "https://github.com/predis/predis/issues",
  3809. "source": "https://github.com/predis/predis/tree/v1.1.6"
  3810. },
  3811. "funding": [
  3812. {
  3813. "url": "https://github.com/sponsors/tillkruss",
  3814. "type": "github"
  3815. }
  3816. ],
  3817. "time": "2020-09-11T19:18:05+00:00"
  3818. },
  3819. {
  3820. "name": "psr/container",
  3821. "version": "1.0.0",
  3822. "source": {
  3823. "type": "git",
  3824. "url": "https://github.com/php-fig/container.git",
  3825. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3826. },
  3827. "dist": {
  3828. "type": "zip",
  3829. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3830. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3831. "shasum": "",
  3832. "mirrors": [
  3833. {
  3834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3835. "preferred": true
  3836. }
  3837. ]
  3838. },
  3839. "require": {
  3840. "php": ">=5.3.0"
  3841. },
  3842. "type": "library",
  3843. "extra": {
  3844. "branch-alias": {
  3845. "dev-master": "1.0.x-dev"
  3846. }
  3847. },
  3848. "autoload": {
  3849. "psr-4": {
  3850. "Psr\\Container\\": "src/"
  3851. }
  3852. },
  3853. "notification-url": "https://packagist.org/downloads/",
  3854. "license": [
  3855. "MIT"
  3856. ],
  3857. "authors": [
  3858. {
  3859. "name": "PHP-FIG",
  3860. "homepage": "http://www.php-fig.org/"
  3861. }
  3862. ],
  3863. "description": "Common Container Interface (PHP FIG PSR-11)",
  3864. "homepage": "https://github.com/php-fig/container",
  3865. "keywords": [
  3866. "PSR-11",
  3867. "container",
  3868. "container-interface",
  3869. "container-interop",
  3870. "psr"
  3871. ],
  3872. "support": {
  3873. "issues": "https://github.com/php-fig/container/issues",
  3874. "source": "https://github.com/php-fig/container/tree/master"
  3875. },
  3876. "time": "2017-02-14T16:28:37+00:00"
  3877. },
  3878. {
  3879. "name": "psr/event-dispatcher",
  3880. "version": "1.0.0",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/php-fig/event-dispatcher.git",
  3884. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3889. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3890. "shasum": "",
  3891. "mirrors": [
  3892. {
  3893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3894. "preferred": true
  3895. }
  3896. ]
  3897. },
  3898. "require": {
  3899. "php": ">=7.2.0"
  3900. },
  3901. "type": "library",
  3902. "extra": {
  3903. "branch-alias": {
  3904. "dev-master": "1.0.x-dev"
  3905. }
  3906. },
  3907. "autoload": {
  3908. "psr-4": {
  3909. "Psr\\EventDispatcher\\": "src/"
  3910. }
  3911. },
  3912. "notification-url": "https://packagist.org/downloads/",
  3913. "license": [
  3914. "MIT"
  3915. ],
  3916. "authors": [
  3917. {
  3918. "name": "PHP-FIG",
  3919. "homepage": "http://www.php-fig.org/"
  3920. }
  3921. ],
  3922. "description": "Standard interfaces for event handling.",
  3923. "keywords": [
  3924. "events",
  3925. "psr",
  3926. "psr-14"
  3927. ],
  3928. "support": {
  3929. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3930. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3931. },
  3932. "time": "2019-01-08T18:20:26+00:00"
  3933. },
  3934. {
  3935. "name": "psr/http-client",
  3936. "version": "1.0.1",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://github.com/php-fig/http-client.git",
  3940. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3945. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3946. "shasum": "",
  3947. "mirrors": [
  3948. {
  3949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3950. "preferred": true
  3951. }
  3952. ]
  3953. },
  3954. "require": {
  3955. "php": "^7.0 || ^8.0",
  3956. "psr/http-message": "^1.0"
  3957. },
  3958. "type": "library",
  3959. "extra": {
  3960. "branch-alias": {
  3961. "dev-master": "1.0.x-dev"
  3962. }
  3963. },
  3964. "autoload": {
  3965. "psr-4": {
  3966. "Psr\\Http\\Client\\": "src/"
  3967. }
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "MIT"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "PHP-FIG",
  3976. "homepage": "http://www.php-fig.org/"
  3977. }
  3978. ],
  3979. "description": "Common interface for HTTP clients",
  3980. "homepage": "https://github.com/php-fig/http-client",
  3981. "keywords": [
  3982. "http",
  3983. "http-client",
  3984. "psr",
  3985. "psr-18"
  3986. ],
  3987. "support": {
  3988. "source": "https://github.com/php-fig/http-client/tree/master"
  3989. },
  3990. "time": "2020-06-29T06:28:15+00:00"
  3991. },
  3992. {
  3993. "name": "psr/http-factory",
  3994. "version": "1.0.1",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/php-fig/http-factory.git",
  3998. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4003. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4004. "shasum": "",
  4005. "mirrors": [
  4006. {
  4007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4008. "preferred": true
  4009. }
  4010. ]
  4011. },
  4012. "require": {
  4013. "php": ">=7.0.0",
  4014. "psr/http-message": "^1.0"
  4015. },
  4016. "type": "library",
  4017. "extra": {
  4018. "branch-alias": {
  4019. "dev-master": "1.0.x-dev"
  4020. }
  4021. },
  4022. "autoload": {
  4023. "psr-4": {
  4024. "Psr\\Http\\Message\\": "src/"
  4025. }
  4026. },
  4027. "notification-url": "https://packagist.org/downloads/",
  4028. "license": [
  4029. "MIT"
  4030. ],
  4031. "authors": [
  4032. {
  4033. "name": "PHP-FIG",
  4034. "homepage": "http://www.php-fig.org/"
  4035. }
  4036. ],
  4037. "description": "Common interfaces for PSR-7 HTTP message factories",
  4038. "keywords": [
  4039. "factory",
  4040. "http",
  4041. "message",
  4042. "psr",
  4043. "psr-17",
  4044. "psr-7",
  4045. "request",
  4046. "response"
  4047. ],
  4048. "support": {
  4049. "source": "https://github.com/php-fig/http-factory/tree/master"
  4050. },
  4051. "time": "2019-04-30T12:38:16+00:00"
  4052. },
  4053. {
  4054. "name": "psr/http-message",
  4055. "version": "1.0.1",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://github.com/php-fig/http-message.git",
  4059. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4060. },
  4061. "dist": {
  4062. "type": "zip",
  4063. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4064. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4065. "shasum": "",
  4066. "mirrors": [
  4067. {
  4068. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4069. "preferred": true
  4070. }
  4071. ]
  4072. },
  4073. "require": {
  4074. "php": ">=5.3.0"
  4075. },
  4076. "type": "library",
  4077. "extra": {
  4078. "branch-alias": {
  4079. "dev-master": "1.0.x-dev"
  4080. }
  4081. },
  4082. "autoload": {
  4083. "psr-4": {
  4084. "Psr\\Http\\Message\\": "src/"
  4085. }
  4086. },
  4087. "notification-url": "https://packagist.org/downloads/",
  4088. "license": [
  4089. "MIT"
  4090. ],
  4091. "authors": [
  4092. {
  4093. "name": "PHP-FIG",
  4094. "homepage": "http://www.php-fig.org/"
  4095. }
  4096. ],
  4097. "description": "Common interface for HTTP messages",
  4098. "homepage": "https://github.com/php-fig/http-message",
  4099. "keywords": [
  4100. "http",
  4101. "http-message",
  4102. "psr",
  4103. "psr-7",
  4104. "request",
  4105. "response"
  4106. ],
  4107. "support": {
  4108. "source": "https://github.com/php-fig/http-message/tree/master"
  4109. },
  4110. "time": "2016-08-06T14:39:51+00:00"
  4111. },
  4112. {
  4113. "name": "psr/log",
  4114. "version": "1.1.3",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/php-fig/log.git",
  4118. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4123. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4124. "shasum": "",
  4125. "mirrors": [
  4126. {
  4127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4128. "preferred": true
  4129. }
  4130. ]
  4131. },
  4132. "require": {
  4133. "php": ">=5.3.0"
  4134. },
  4135. "type": "library",
  4136. "extra": {
  4137. "branch-alias": {
  4138. "dev-master": "1.1.x-dev"
  4139. }
  4140. },
  4141. "autoload": {
  4142. "psr-4": {
  4143. "Psr\\Log\\": "Psr/Log/"
  4144. }
  4145. },
  4146. "notification-url": "https://packagist.org/downloads/",
  4147. "license": [
  4148. "MIT"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "PHP-FIG",
  4153. "homepage": "http://www.php-fig.org/"
  4154. }
  4155. ],
  4156. "description": "Common interface for logging libraries",
  4157. "homepage": "https://github.com/php-fig/log",
  4158. "keywords": [
  4159. "log",
  4160. "psr",
  4161. "psr-3"
  4162. ],
  4163. "support": {
  4164. "source": "https://github.com/php-fig/log/tree/1.1.3"
  4165. },
  4166. "time": "2020-03-23T09:12:05+00:00"
  4167. },
  4168. {
  4169. "name": "psr/simple-cache",
  4170. "version": "1.0.1",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://github.com/php-fig/simple-cache.git",
  4174. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4179. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4180. "shasum": "",
  4181. "mirrors": [
  4182. {
  4183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4184. "preferred": true
  4185. }
  4186. ]
  4187. },
  4188. "require": {
  4189. "php": ">=5.3.0"
  4190. },
  4191. "type": "library",
  4192. "extra": {
  4193. "branch-alias": {
  4194. "dev-master": "1.0.x-dev"
  4195. }
  4196. },
  4197. "autoload": {
  4198. "psr-4": {
  4199. "Psr\\SimpleCache\\": "src/"
  4200. }
  4201. },
  4202. "notification-url": "https://packagist.org/downloads/",
  4203. "license": [
  4204. "MIT"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "PHP-FIG",
  4209. "homepage": "http://www.php-fig.org/"
  4210. }
  4211. ],
  4212. "description": "Common interfaces for simple caching",
  4213. "keywords": [
  4214. "cache",
  4215. "caching",
  4216. "psr",
  4217. "psr-16",
  4218. "simple-cache"
  4219. ],
  4220. "support": {
  4221. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4222. },
  4223. "time": "2017-10-23T01:57:42+00:00"
  4224. },
  4225. {
  4226. "name": "psy/psysh",
  4227. "version": "v0.10.6",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://github.com/bobthecow/psysh.git",
  4231. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4236. "reference": "6f990c19f91729de8b31e639d6e204ea59f19cf3",
  4237. "shasum": "",
  4238. "mirrors": [
  4239. {
  4240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4241. "preferred": true
  4242. }
  4243. ]
  4244. },
  4245. "require": {
  4246. "dnoegel/php-xdg-base-dir": "0.1.*",
  4247. "ext-json": "*",
  4248. "ext-tokenizer": "*",
  4249. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4250. "php": "^8.0 || ^7.0 || ^5.5.9",
  4251. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4252. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4253. },
  4254. "require-dev": {
  4255. "bamarni/composer-bin-plugin": "^1.2",
  4256. "hoa/console": "3.17.*"
  4257. },
  4258. "suggest": {
  4259. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4260. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4261. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4262. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4263. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4264. },
  4265. "bin": [
  4266. "bin/psysh"
  4267. ],
  4268. "type": "library",
  4269. "extra": {
  4270. "branch-alias": {
  4271. "dev-main": "0.10.x-dev"
  4272. }
  4273. },
  4274. "autoload": {
  4275. "files": [
  4276. "src/functions.php"
  4277. ],
  4278. "psr-4": {
  4279. "Psy\\": "src/"
  4280. }
  4281. },
  4282. "notification-url": "https://packagist.org/downloads/",
  4283. "license": [
  4284. "MIT"
  4285. ],
  4286. "authors": [
  4287. {
  4288. "name": "Justin Hileman",
  4289. "email": "justin@justinhileman.info",
  4290. "homepage": "http://justinhileman.com"
  4291. }
  4292. ],
  4293. "description": "An interactive shell for modern PHP.",
  4294. "homepage": "http://psysh.org",
  4295. "keywords": [
  4296. "REPL",
  4297. "console",
  4298. "interactive",
  4299. "shell"
  4300. ],
  4301. "support": {
  4302. "issues": "https://github.com/bobthecow/psysh/issues",
  4303. "source": "https://github.com/bobthecow/psysh/tree/v0.10.6"
  4304. },
  4305. "time": "2021-01-18T15:53:43+00:00"
  4306. },
  4307. {
  4308. "name": "pusher/pusher-php-server",
  4309. "version": "v4.1.5",
  4310. "source": {
  4311. "type": "git",
  4312. "url": "https://github.com/pusher/pusher-http-php.git",
  4313. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4314. },
  4315. "dist": {
  4316. "type": "zip",
  4317. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4318. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4319. "shasum": "",
  4320. "mirrors": [
  4321. {
  4322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4323. "preferred": true
  4324. }
  4325. ]
  4326. },
  4327. "require": {
  4328. "ext-curl": "*",
  4329. "paragonie/sodium_compat": "^1.6",
  4330. "php": "^7.1|^8.0",
  4331. "psr/log": "^1.0"
  4332. },
  4333. "require-dev": {
  4334. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4335. },
  4336. "type": "library",
  4337. "extra": {
  4338. "branch-alias": {
  4339. "dev-master": "3.4-dev"
  4340. }
  4341. },
  4342. "autoload": {
  4343. "psr-4": {
  4344. "Pusher\\": "src/"
  4345. }
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "description": "Library for interacting with the Pusher REST API",
  4352. "keywords": [
  4353. "events",
  4354. "messaging",
  4355. "php-pusher-server",
  4356. "publish",
  4357. "push",
  4358. "pusher",
  4359. "real time",
  4360. "real-time",
  4361. "realtime",
  4362. "rest",
  4363. "trigger"
  4364. ],
  4365. "support": {
  4366. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4367. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4368. },
  4369. "time": "2020-12-09T09:38:19+00:00"
  4370. },
  4371. {
  4372. "name": "ralouphie/getallheaders",
  4373. "version": "3.0.3",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://github.com/ralouphie/getallheaders.git",
  4377. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4382. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4383. "shasum": "",
  4384. "mirrors": [
  4385. {
  4386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4387. "preferred": true
  4388. }
  4389. ]
  4390. },
  4391. "require": {
  4392. "php": ">=5.6"
  4393. },
  4394. "require-dev": {
  4395. "php-coveralls/php-coveralls": "^2.1",
  4396. "phpunit/phpunit": "^5 || ^6.5"
  4397. },
  4398. "type": "library",
  4399. "autoload": {
  4400. "files": [
  4401. "src/getallheaders.php"
  4402. ]
  4403. },
  4404. "notification-url": "https://packagist.org/downloads/",
  4405. "license": [
  4406. "MIT"
  4407. ],
  4408. "authors": [
  4409. {
  4410. "name": "Ralph Khattar",
  4411. "email": "ralph.khattar@gmail.com"
  4412. }
  4413. ],
  4414. "description": "A polyfill for getallheaders.",
  4415. "support": {
  4416. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4417. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4418. },
  4419. "time": "2019-03-08T08:55:37+00:00"
  4420. },
  4421. {
  4422. "name": "ramsey/collection",
  4423. "version": "1.1.3",
  4424. "source": {
  4425. "type": "git",
  4426. "url": "https://github.com/ramsey/collection.git",
  4427. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4428. },
  4429. "dist": {
  4430. "type": "zip",
  4431. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4432. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4433. "shasum": "",
  4434. "mirrors": [
  4435. {
  4436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4437. "preferred": true
  4438. }
  4439. ]
  4440. },
  4441. "require": {
  4442. "php": "^7.2 || ^8"
  4443. },
  4444. "require-dev": {
  4445. "captainhook/captainhook": "^5.3",
  4446. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4447. "ergebnis/composer-normalize": "^2.6",
  4448. "fakerphp/faker": "^1.5",
  4449. "hamcrest/hamcrest-php": "^2",
  4450. "jangregor/phpstan-prophecy": "^0.8",
  4451. "mockery/mockery": "^1.3",
  4452. "phpstan/extension-installer": "^1",
  4453. "phpstan/phpstan": "^0.12.32",
  4454. "phpstan/phpstan-mockery": "^0.12.5",
  4455. "phpstan/phpstan-phpunit": "^0.12.11",
  4456. "phpunit/phpunit": "^8.5 || ^9",
  4457. "psy/psysh": "^0.10.4",
  4458. "slevomat/coding-standard": "^6.3",
  4459. "squizlabs/php_codesniffer": "^3.5",
  4460. "vimeo/psalm": "^4.4"
  4461. },
  4462. "type": "library",
  4463. "autoload": {
  4464. "psr-4": {
  4465. "Ramsey\\Collection\\": "src/"
  4466. }
  4467. },
  4468. "notification-url": "https://packagist.org/downloads/",
  4469. "license": [
  4470. "MIT"
  4471. ],
  4472. "authors": [
  4473. {
  4474. "name": "Ben Ramsey",
  4475. "email": "ben@benramsey.com",
  4476. "homepage": "https://benramsey.com"
  4477. }
  4478. ],
  4479. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4480. "keywords": [
  4481. "array",
  4482. "collection",
  4483. "hash",
  4484. "map",
  4485. "queue",
  4486. "set"
  4487. ],
  4488. "support": {
  4489. "issues": "https://github.com/ramsey/collection/issues",
  4490. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4491. },
  4492. "funding": [
  4493. {
  4494. "url": "https://github.com/ramsey",
  4495. "type": "github"
  4496. },
  4497. {
  4498. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4499. "type": "tidelift"
  4500. }
  4501. ],
  4502. "time": "2021-01-21T17:40:04+00:00"
  4503. },
  4504. {
  4505. "name": "ramsey/uuid",
  4506. "version": "4.1.1",
  4507. "source": {
  4508. "type": "git",
  4509. "url": "https://github.com/ramsey/uuid.git",
  4510. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4511. },
  4512. "dist": {
  4513. "type": "zip",
  4514. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4515. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4516. "shasum": "",
  4517. "mirrors": [
  4518. {
  4519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4520. "preferred": true
  4521. }
  4522. ]
  4523. },
  4524. "require": {
  4525. "brick/math": "^0.8 || ^0.9",
  4526. "ext-json": "*",
  4527. "php": "^7.2 || ^8",
  4528. "ramsey/collection": "^1.0",
  4529. "symfony/polyfill-ctype": "^1.8"
  4530. },
  4531. "replace": {
  4532. "rhumsaa/uuid": "self.version"
  4533. },
  4534. "require-dev": {
  4535. "codeception/aspect-mock": "^3",
  4536. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4537. "doctrine/annotations": "^1.8",
  4538. "goaop/framework": "^2",
  4539. "mockery/mockery": "^1.3",
  4540. "moontoast/math": "^1.1",
  4541. "paragonie/random-lib": "^2",
  4542. "php-mock/php-mock-mockery": "^1.3",
  4543. "php-mock/php-mock-phpunit": "^2.5",
  4544. "php-parallel-lint/php-parallel-lint": "^1.1",
  4545. "phpbench/phpbench": "^0.17.1",
  4546. "phpstan/extension-installer": "^1.0",
  4547. "phpstan/phpstan": "^0.12",
  4548. "phpstan/phpstan-mockery": "^0.12",
  4549. "phpstan/phpstan-phpunit": "^0.12",
  4550. "phpunit/phpunit": "^8.5",
  4551. "psy/psysh": "^0.10.0",
  4552. "slevomat/coding-standard": "^6.0",
  4553. "squizlabs/php_codesniffer": "^3.5",
  4554. "vimeo/psalm": "3.9.4"
  4555. },
  4556. "suggest": {
  4557. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4558. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4559. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4560. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4561. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4562. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4563. },
  4564. "type": "library",
  4565. "extra": {
  4566. "branch-alias": {
  4567. "dev-master": "4.x-dev"
  4568. }
  4569. },
  4570. "autoload": {
  4571. "psr-4": {
  4572. "Ramsey\\Uuid\\": "src/"
  4573. },
  4574. "files": [
  4575. "src/functions.php"
  4576. ]
  4577. },
  4578. "notification-url": "https://packagist.org/downloads/",
  4579. "license": [
  4580. "MIT"
  4581. ],
  4582. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4583. "homepage": "https://github.com/ramsey/uuid",
  4584. "keywords": [
  4585. "guid",
  4586. "identifier",
  4587. "uuid"
  4588. ],
  4589. "support": {
  4590. "issues": "https://github.com/ramsey/uuid/issues",
  4591. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4592. "source": "https://github.com/ramsey/uuid"
  4593. },
  4594. "funding": [
  4595. {
  4596. "url": "https://github.com/ramsey",
  4597. "type": "github"
  4598. }
  4599. ],
  4600. "time": "2020-08-18T17:17:46+00:00"
  4601. },
  4602. {
  4603. "name": "scrivo/highlight.php",
  4604. "version": "v9.18.1.6",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://github.com/scrivo/highlight.php.git",
  4608. "reference": "44a3d4136edb5ad8551590bf90f437db80b2d466"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/44a3d4136edb5ad8551590bf90f437db80b2d466",
  4613. "reference": "44a3d4136edb5ad8551590bf90f437db80b2d466",
  4614. "shasum": "",
  4615. "mirrors": [
  4616. {
  4617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4618. "preferred": true
  4619. }
  4620. ]
  4621. },
  4622. "require": {
  4623. "ext-json": "*",
  4624. "ext-mbstring": "*",
  4625. "php": ">=5.4"
  4626. },
  4627. "require-dev": {
  4628. "phpunit/phpunit": "^4.8|^5.7",
  4629. "sabberworm/php-css-parser": "^8.3",
  4630. "symfony/finder": "^2.8|^3.4",
  4631. "symfony/var-dumper": "^2.8|^3.4"
  4632. },
  4633. "type": "library",
  4634. "autoload": {
  4635. "psr-0": {
  4636. "Highlight\\": "",
  4637. "HighlightUtilities\\": ""
  4638. },
  4639. "files": [
  4640. "HighlightUtilities/functions.php"
  4641. ]
  4642. },
  4643. "notification-url": "https://packagist.org/downloads/",
  4644. "license": [
  4645. "BSD-3-Clause"
  4646. ],
  4647. "authors": [
  4648. {
  4649. "name": "Geert Bergman",
  4650. "homepage": "http://www.scrivo.org/",
  4651. "role": "Project Author"
  4652. },
  4653. {
  4654. "name": "Vladimir Jimenez",
  4655. "homepage": "https://allejo.io",
  4656. "role": "Maintainer"
  4657. },
  4658. {
  4659. "name": "Martin Folkers",
  4660. "homepage": "https://twobrain.io",
  4661. "role": "Contributor"
  4662. }
  4663. ],
  4664. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  4665. "keywords": [
  4666. "code",
  4667. "highlight",
  4668. "highlight.js",
  4669. "highlight.php",
  4670. "syntax"
  4671. ],
  4672. "support": {
  4673. "issues": "https://github.com/scrivo/highlight.php/issues",
  4674. "source": "https://github.com/scrivo/highlight.php"
  4675. },
  4676. "funding": [
  4677. {
  4678. "url": "https://github.com/allejo",
  4679. "type": "github"
  4680. }
  4681. ],
  4682. "time": "2020-12-22T19:20:29+00:00"
  4683. },
  4684. {
  4685. "name": "swiftmailer/swiftmailer",
  4686. "version": "v6.2.5",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4690. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7",
  4695. "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7",
  4696. "shasum": "",
  4697. "mirrors": [
  4698. {
  4699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4700. "preferred": true
  4701. }
  4702. ]
  4703. },
  4704. "require": {
  4705. "egulias/email-validator": "^2.0",
  4706. "php": ">=7.0.0",
  4707. "symfony/polyfill-iconv": "^1.0",
  4708. "symfony/polyfill-intl-idn": "^1.10",
  4709. "symfony/polyfill-mbstring": "^1.0"
  4710. },
  4711. "require-dev": {
  4712. "mockery/mockery": "^1.0",
  4713. "symfony/phpunit-bridge": "^4.4|^5.0"
  4714. },
  4715. "suggest": {
  4716. "ext-intl": "Needed to support internationalized email addresses"
  4717. },
  4718. "type": "library",
  4719. "extra": {
  4720. "branch-alias": {
  4721. "dev-master": "6.2-dev"
  4722. }
  4723. },
  4724. "autoload": {
  4725. "files": [
  4726. "lib/swift_required.php"
  4727. ]
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "Chris Corbyn"
  4736. },
  4737. {
  4738. "name": "Fabien Potencier",
  4739. "email": "fabien@symfony.com"
  4740. }
  4741. ],
  4742. "description": "Swiftmailer, free feature-rich PHP mailer",
  4743. "homepage": "https://swiftmailer.symfony.com",
  4744. "keywords": [
  4745. "email",
  4746. "mail",
  4747. "mailer"
  4748. ],
  4749. "support": {
  4750. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4751. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5"
  4752. },
  4753. "funding": [
  4754. {
  4755. "url": "https://github.com/fabpot",
  4756. "type": "github"
  4757. },
  4758. {
  4759. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4760. "type": "tidelift"
  4761. }
  4762. ],
  4763. "time": "2021-01-12T09:35:59+00:00"
  4764. },
  4765. {
  4766. "name": "symfony/console",
  4767. "version": "v5.2.3",
  4768. "source": {
  4769. "type": "git",
  4770. "url": "https://github.com/symfony/console.git",
  4771. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a"
  4772. },
  4773. "dist": {
  4774. "type": "zip",
  4775. "url": "https://api.github.com/repos/symfony/console/zipball/89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  4776. "reference": "89d4b176d12a2946a1ae4e34906a025b7b6b135a",
  4777. "shasum": "",
  4778. "mirrors": [
  4779. {
  4780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4781. "preferred": true
  4782. }
  4783. ]
  4784. },
  4785. "require": {
  4786. "php": ">=7.2.5",
  4787. "symfony/polyfill-mbstring": "~1.0",
  4788. "symfony/polyfill-php73": "^1.8",
  4789. "symfony/polyfill-php80": "^1.15",
  4790. "symfony/service-contracts": "^1.1|^2",
  4791. "symfony/string": "^5.1"
  4792. },
  4793. "conflict": {
  4794. "symfony/dependency-injection": "<4.4",
  4795. "symfony/dotenv": "<5.1",
  4796. "symfony/event-dispatcher": "<4.4",
  4797. "symfony/lock": "<4.4",
  4798. "symfony/process": "<4.4"
  4799. },
  4800. "provide": {
  4801. "psr/log-implementation": "1.0"
  4802. },
  4803. "require-dev": {
  4804. "psr/log": "~1.0",
  4805. "symfony/config": "^4.4|^5.0",
  4806. "symfony/dependency-injection": "^4.4|^5.0",
  4807. "symfony/event-dispatcher": "^4.4|^5.0",
  4808. "symfony/lock": "^4.4|^5.0",
  4809. "symfony/process": "^4.4|^5.0",
  4810. "symfony/var-dumper": "^4.4|^5.0"
  4811. },
  4812. "suggest": {
  4813. "psr/log": "For using the console logger",
  4814. "symfony/event-dispatcher": "",
  4815. "symfony/lock": "",
  4816. "symfony/process": ""
  4817. },
  4818. "type": "library",
  4819. "autoload": {
  4820. "psr-4": {
  4821. "Symfony\\Component\\Console\\": ""
  4822. },
  4823. "exclude-from-classmap": [
  4824. "/Tests/"
  4825. ]
  4826. },
  4827. "notification-url": "https://packagist.org/downloads/",
  4828. "license": [
  4829. "MIT"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "Fabien Potencier",
  4834. "email": "fabien@symfony.com"
  4835. },
  4836. {
  4837. "name": "Symfony Community",
  4838. "homepage": "https://symfony.com/contributors"
  4839. }
  4840. ],
  4841. "description": "Eases the creation of beautiful and testable command line interfaces",
  4842. "homepage": "https://symfony.com",
  4843. "keywords": [
  4844. "cli",
  4845. "command line",
  4846. "console",
  4847. "terminal"
  4848. ],
  4849. "support": {
  4850. "source": "https://github.com/symfony/console/tree/v5.2.3"
  4851. },
  4852. "funding": [
  4853. {
  4854. "url": "https://symfony.com/sponsor",
  4855. "type": "custom"
  4856. },
  4857. {
  4858. "url": "https://github.com/fabpot",
  4859. "type": "github"
  4860. },
  4861. {
  4862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4863. "type": "tidelift"
  4864. }
  4865. ],
  4866. "time": "2021-01-28T22:06:19+00:00"
  4867. },
  4868. {
  4869. "name": "symfony/css-selector",
  4870. "version": "v5.2.3",
  4871. "source": {
  4872. "type": "git",
  4873. "url": "https://github.com/symfony/css-selector.git",
  4874. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f"
  4875. },
  4876. "dist": {
  4877. "type": "zip",
  4878. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f65f217b3314504a1ec99c2d6ef69016bb13490f",
  4879. "reference": "f65f217b3314504a1ec99c2d6ef69016bb13490f",
  4880. "shasum": "",
  4881. "mirrors": [
  4882. {
  4883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4884. "preferred": true
  4885. }
  4886. ]
  4887. },
  4888. "require": {
  4889. "php": ">=7.2.5"
  4890. },
  4891. "type": "library",
  4892. "autoload": {
  4893. "psr-4": {
  4894. "Symfony\\Component\\CssSelector\\": ""
  4895. },
  4896. "exclude-from-classmap": [
  4897. "/Tests/"
  4898. ]
  4899. },
  4900. "notification-url": "https://packagist.org/downloads/",
  4901. "license": [
  4902. "MIT"
  4903. ],
  4904. "authors": [
  4905. {
  4906. "name": "Fabien Potencier",
  4907. "email": "fabien@symfony.com"
  4908. },
  4909. {
  4910. "name": "Jean-François Simon",
  4911. "email": "jeanfrancois.simon@sensiolabs.com"
  4912. },
  4913. {
  4914. "name": "Symfony Community",
  4915. "homepage": "https://symfony.com/contributors"
  4916. }
  4917. ],
  4918. "description": "Converts CSS selectors to XPath expressions",
  4919. "homepage": "https://symfony.com",
  4920. "support": {
  4921. "source": "https://github.com/symfony/css-selector/tree/v5.2.3"
  4922. },
  4923. "funding": [
  4924. {
  4925. "url": "https://symfony.com/sponsor",
  4926. "type": "custom"
  4927. },
  4928. {
  4929. "url": "https://github.com/fabpot",
  4930. "type": "github"
  4931. },
  4932. {
  4933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4934. "type": "tidelift"
  4935. }
  4936. ],
  4937. "time": "2021-01-27T10:01:46+00:00"
  4938. },
  4939. {
  4940. "name": "symfony/deprecation-contracts",
  4941. "version": "v2.2.0",
  4942. "source": {
  4943. "type": "git",
  4944. "url": "https://github.com/symfony/deprecation-contracts.git",
  4945. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4946. },
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4950. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  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.1"
  4961. },
  4962. "type": "library",
  4963. "extra": {
  4964. "branch-alias": {
  4965. "dev-master": "2.2-dev"
  4966. },
  4967. "thanks": {
  4968. "name": "symfony/contracts",
  4969. "url": "https://github.com/symfony/contracts"
  4970. }
  4971. },
  4972. "autoload": {
  4973. "files": [
  4974. "function.php"
  4975. ]
  4976. },
  4977. "notification-url": "https://packagist.org/downloads/",
  4978. "license": [
  4979. "MIT"
  4980. ],
  4981. "authors": [
  4982. {
  4983. "name": "Nicolas Grekas",
  4984. "email": "p@tchwork.com"
  4985. },
  4986. {
  4987. "name": "Symfony Community",
  4988. "homepage": "https://symfony.com/contributors"
  4989. }
  4990. ],
  4991. "description": "A generic function and convention to trigger deprecation notices",
  4992. "homepage": "https://symfony.com",
  4993. "support": {
  4994. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4995. },
  4996. "funding": [
  4997. {
  4998. "url": "https://symfony.com/sponsor",
  4999. "type": "custom"
  5000. },
  5001. {
  5002. "url": "https://github.com/fabpot",
  5003. "type": "github"
  5004. },
  5005. {
  5006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5007. "type": "tidelift"
  5008. }
  5009. ],
  5010. "time": "2020-09-07T11:33:47+00:00"
  5011. },
  5012. {
  5013. "name": "symfony/error-handler",
  5014. "version": "v5.2.3",
  5015. "source": {
  5016. "type": "git",
  5017. "url": "https://github.com/symfony/error-handler.git",
  5018. "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d"
  5019. },
  5020. "dist": {
  5021. "type": "zip",
  5022. "url": "https://api.github.com/repos/symfony/error-handler/zipball/48f18b3609e120ea66d59142c23dc53e9562c26d",
  5023. "reference": "48f18b3609e120ea66d59142c23dc53e9562c26d",
  5024. "shasum": "",
  5025. "mirrors": [
  5026. {
  5027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5028. "preferred": true
  5029. }
  5030. ]
  5031. },
  5032. "require": {
  5033. "php": ">=7.2.5",
  5034. "psr/log": "^1.0",
  5035. "symfony/polyfill-php80": "^1.15",
  5036. "symfony/var-dumper": "^4.4|^5.0"
  5037. },
  5038. "require-dev": {
  5039. "symfony/deprecation-contracts": "^2.1",
  5040. "symfony/http-kernel": "^4.4|^5.0",
  5041. "symfony/serializer": "^4.4|^5.0"
  5042. },
  5043. "type": "library",
  5044. "autoload": {
  5045. "psr-4": {
  5046. "Symfony\\Component\\ErrorHandler\\": ""
  5047. },
  5048. "exclude-from-classmap": [
  5049. "/Tests/"
  5050. ]
  5051. },
  5052. "notification-url": "https://packagist.org/downloads/",
  5053. "license": [
  5054. "MIT"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Fabien Potencier",
  5059. "email": "fabien@symfony.com"
  5060. },
  5061. {
  5062. "name": "Symfony Community",
  5063. "homepage": "https://symfony.com/contributors"
  5064. }
  5065. ],
  5066. "description": "Provides tools to manage errors and ease debugging PHP code",
  5067. "homepage": "https://symfony.com",
  5068. "support": {
  5069. "source": "https://github.com/symfony/error-handler/tree/v5.2.3"
  5070. },
  5071. "funding": [
  5072. {
  5073. "url": "https://symfony.com/sponsor",
  5074. "type": "custom"
  5075. },
  5076. {
  5077. "url": "https://github.com/fabpot",
  5078. "type": "github"
  5079. },
  5080. {
  5081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5082. "type": "tidelift"
  5083. }
  5084. ],
  5085. "time": "2021-01-28T22:06:19+00:00"
  5086. },
  5087. {
  5088. "name": "symfony/event-dispatcher",
  5089. "version": "v5.2.3",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/symfony/event-dispatcher.git",
  5093. "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4f9760f8074978ad82e2ce854dff79a71fe45367",
  5098. "reference": "4f9760f8074978ad82e2ce854dff79a71fe45367",
  5099. "shasum": "",
  5100. "mirrors": [
  5101. {
  5102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5103. "preferred": true
  5104. }
  5105. ]
  5106. },
  5107. "require": {
  5108. "php": ">=7.2.5",
  5109. "symfony/deprecation-contracts": "^2.1",
  5110. "symfony/event-dispatcher-contracts": "^2",
  5111. "symfony/polyfill-php80": "^1.15"
  5112. },
  5113. "conflict": {
  5114. "symfony/dependency-injection": "<4.4"
  5115. },
  5116. "provide": {
  5117. "psr/event-dispatcher-implementation": "1.0",
  5118. "symfony/event-dispatcher-implementation": "2.0"
  5119. },
  5120. "require-dev": {
  5121. "psr/log": "~1.0",
  5122. "symfony/config": "^4.4|^5.0",
  5123. "symfony/dependency-injection": "^4.4|^5.0",
  5124. "symfony/error-handler": "^4.4|^5.0",
  5125. "symfony/expression-language": "^4.4|^5.0",
  5126. "symfony/http-foundation": "^4.4|^5.0",
  5127. "symfony/service-contracts": "^1.1|^2",
  5128. "symfony/stopwatch": "^4.4|^5.0"
  5129. },
  5130. "suggest": {
  5131. "symfony/dependency-injection": "",
  5132. "symfony/http-kernel": ""
  5133. },
  5134. "type": "library",
  5135. "autoload": {
  5136. "psr-4": {
  5137. "Symfony\\Component\\EventDispatcher\\": ""
  5138. },
  5139. "exclude-from-classmap": [
  5140. "/Tests/"
  5141. ]
  5142. },
  5143. "notification-url": "https://packagist.org/downloads/",
  5144. "license": [
  5145. "MIT"
  5146. ],
  5147. "authors": [
  5148. {
  5149. "name": "Fabien Potencier",
  5150. "email": "fabien@symfony.com"
  5151. },
  5152. {
  5153. "name": "Symfony Community",
  5154. "homepage": "https://symfony.com/contributors"
  5155. }
  5156. ],
  5157. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5158. "homepage": "https://symfony.com",
  5159. "support": {
  5160. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.3"
  5161. },
  5162. "funding": [
  5163. {
  5164. "url": "https://symfony.com/sponsor",
  5165. "type": "custom"
  5166. },
  5167. {
  5168. "url": "https://github.com/fabpot",
  5169. "type": "github"
  5170. },
  5171. {
  5172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5173. "type": "tidelift"
  5174. }
  5175. ],
  5176. "time": "2021-01-27T10:36:42+00:00"
  5177. },
  5178. {
  5179. "name": "symfony/event-dispatcher-contracts",
  5180. "version": "v2.2.0",
  5181. "source": {
  5182. "type": "git",
  5183. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5184. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  5185. },
  5186. "dist": {
  5187. "type": "zip",
  5188. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  5189. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  5190. "shasum": "",
  5191. "mirrors": [
  5192. {
  5193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5194. "preferred": true
  5195. }
  5196. ]
  5197. },
  5198. "require": {
  5199. "php": ">=7.2.5",
  5200. "psr/event-dispatcher": "^1"
  5201. },
  5202. "suggest": {
  5203. "symfony/event-dispatcher-implementation": ""
  5204. },
  5205. "type": "library",
  5206. "extra": {
  5207. "branch-alias": {
  5208. "dev-master": "2.2-dev"
  5209. },
  5210. "thanks": {
  5211. "name": "symfony/contracts",
  5212. "url": "https://github.com/symfony/contracts"
  5213. }
  5214. },
  5215. "autoload": {
  5216. "psr-4": {
  5217. "Symfony\\Contracts\\EventDispatcher\\": ""
  5218. }
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "MIT"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "Nicolas Grekas",
  5227. "email": "p@tchwork.com"
  5228. },
  5229. {
  5230. "name": "Symfony Community",
  5231. "homepage": "https://symfony.com/contributors"
  5232. }
  5233. ],
  5234. "description": "Generic abstractions related to dispatching event",
  5235. "homepage": "https://symfony.com",
  5236. "keywords": [
  5237. "abstractions",
  5238. "contracts",
  5239. "decoupling",
  5240. "interfaces",
  5241. "interoperability",
  5242. "standards"
  5243. ],
  5244. "support": {
  5245. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  5246. },
  5247. "funding": [
  5248. {
  5249. "url": "https://symfony.com/sponsor",
  5250. "type": "custom"
  5251. },
  5252. {
  5253. "url": "https://github.com/fabpot",
  5254. "type": "github"
  5255. },
  5256. {
  5257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5258. "type": "tidelift"
  5259. }
  5260. ],
  5261. "time": "2020-09-07T11:33:47+00:00"
  5262. },
  5263. {
  5264. "name": "symfony/finder",
  5265. "version": "v5.2.3",
  5266. "source": {
  5267. "type": "git",
  5268. "url": "https://github.com/symfony/finder.git",
  5269. "reference": "4adc8d172d602008c204c2e16956f99257248e03"
  5270. },
  5271. "dist": {
  5272. "type": "zip",
  5273. "url": "https://api.github.com/repos/symfony/finder/zipball/4adc8d172d602008c204c2e16956f99257248e03",
  5274. "reference": "4adc8d172d602008c204c2e16956f99257248e03",
  5275. "shasum": "",
  5276. "mirrors": [
  5277. {
  5278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5279. "preferred": true
  5280. }
  5281. ]
  5282. },
  5283. "require": {
  5284. "php": ">=7.2.5"
  5285. },
  5286. "type": "library",
  5287. "autoload": {
  5288. "psr-4": {
  5289. "Symfony\\Component\\Finder\\": ""
  5290. },
  5291. "exclude-from-classmap": [
  5292. "/Tests/"
  5293. ]
  5294. },
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "MIT"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Fabien Potencier",
  5302. "email": "fabien@symfony.com"
  5303. },
  5304. {
  5305. "name": "Symfony Community",
  5306. "homepage": "https://symfony.com/contributors"
  5307. }
  5308. ],
  5309. "description": "Finds files and directories via an intuitive fluent interface",
  5310. "homepage": "https://symfony.com",
  5311. "support": {
  5312. "source": "https://github.com/symfony/finder/tree/v5.2.3"
  5313. },
  5314. "funding": [
  5315. {
  5316. "url": "https://symfony.com/sponsor",
  5317. "type": "custom"
  5318. },
  5319. {
  5320. "url": "https://github.com/fabpot",
  5321. "type": "github"
  5322. },
  5323. {
  5324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5325. "type": "tidelift"
  5326. }
  5327. ],
  5328. "time": "2021-01-28T22:06:19+00:00"
  5329. },
  5330. {
  5331. "name": "symfony/http-client-contracts",
  5332. "version": "v2.3.1",
  5333. "source": {
  5334. "type": "git",
  5335. "url": "https://github.com/symfony/http-client-contracts.git",
  5336. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5337. },
  5338. "dist": {
  5339. "type": "zip",
  5340. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5341. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5342. "shasum": "",
  5343. "mirrors": [
  5344. {
  5345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5346. "preferred": true
  5347. }
  5348. ]
  5349. },
  5350. "require": {
  5351. "php": ">=7.2.5"
  5352. },
  5353. "suggest": {
  5354. "symfony/http-client-implementation": ""
  5355. },
  5356. "type": "library",
  5357. "extra": {
  5358. "branch-version": "2.3",
  5359. "branch-alias": {
  5360. "dev-main": "2.3-dev"
  5361. },
  5362. "thanks": {
  5363. "name": "symfony/contracts",
  5364. "url": "https://github.com/symfony/contracts"
  5365. }
  5366. },
  5367. "autoload": {
  5368. "psr-4": {
  5369. "Symfony\\Contracts\\HttpClient\\": ""
  5370. }
  5371. },
  5372. "notification-url": "https://packagist.org/downloads/",
  5373. "license": [
  5374. "MIT"
  5375. ],
  5376. "authors": [
  5377. {
  5378. "name": "Nicolas Grekas",
  5379. "email": "p@tchwork.com"
  5380. },
  5381. {
  5382. "name": "Symfony Community",
  5383. "homepage": "https://symfony.com/contributors"
  5384. }
  5385. ],
  5386. "description": "Generic abstractions related to HTTP clients",
  5387. "homepage": "https://symfony.com",
  5388. "keywords": [
  5389. "abstractions",
  5390. "contracts",
  5391. "decoupling",
  5392. "interfaces",
  5393. "interoperability",
  5394. "standards"
  5395. ],
  5396. "support": {
  5397. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5398. },
  5399. "funding": [
  5400. {
  5401. "url": "https://symfony.com/sponsor",
  5402. "type": "custom"
  5403. },
  5404. {
  5405. "url": "https://github.com/fabpot",
  5406. "type": "github"
  5407. },
  5408. {
  5409. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5410. "type": "tidelift"
  5411. }
  5412. ],
  5413. "time": "2020-10-14T17:08:19+00:00"
  5414. },
  5415. {
  5416. "name": "symfony/http-foundation",
  5417. "version": "v5.2.3",
  5418. "source": {
  5419. "type": "git",
  5420. "url": "https://github.com/symfony/http-foundation.git",
  5421. "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36"
  5422. },
  5423. "dist": {
  5424. "type": "zip",
  5425. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/20c554c0f03f7cde5ce230ed248470cccbc34c36",
  5426. "reference": "20c554c0f03f7cde5ce230ed248470cccbc34c36",
  5427. "shasum": "",
  5428. "mirrors": [
  5429. {
  5430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5431. "preferred": true
  5432. }
  5433. ]
  5434. },
  5435. "require": {
  5436. "php": ">=7.2.5",
  5437. "symfony/deprecation-contracts": "^2.1",
  5438. "symfony/polyfill-mbstring": "~1.1",
  5439. "symfony/polyfill-php80": "^1.15"
  5440. },
  5441. "require-dev": {
  5442. "predis/predis": "~1.0",
  5443. "symfony/cache": "^4.4|^5.0",
  5444. "symfony/expression-language": "^4.4|^5.0",
  5445. "symfony/mime": "^4.4|^5.0"
  5446. },
  5447. "suggest": {
  5448. "symfony/mime": "To use the file extension guesser"
  5449. },
  5450. "type": "library",
  5451. "autoload": {
  5452. "psr-4": {
  5453. "Symfony\\Component\\HttpFoundation\\": ""
  5454. },
  5455. "exclude-from-classmap": [
  5456. "/Tests/"
  5457. ]
  5458. },
  5459. "notification-url": "https://packagist.org/downloads/",
  5460. "license": [
  5461. "MIT"
  5462. ],
  5463. "authors": [
  5464. {
  5465. "name": "Fabien Potencier",
  5466. "email": "fabien@symfony.com"
  5467. },
  5468. {
  5469. "name": "Symfony Community",
  5470. "homepage": "https://symfony.com/contributors"
  5471. }
  5472. ],
  5473. "description": "Defines an object-oriented layer for the HTTP specification",
  5474. "homepage": "https://symfony.com",
  5475. "support": {
  5476. "source": "https://github.com/symfony/http-foundation/tree/v5.2.3"
  5477. },
  5478. "funding": [
  5479. {
  5480. "url": "https://symfony.com/sponsor",
  5481. "type": "custom"
  5482. },
  5483. {
  5484. "url": "https://github.com/fabpot",
  5485. "type": "github"
  5486. },
  5487. {
  5488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5489. "type": "tidelift"
  5490. }
  5491. ],
  5492. "time": "2021-02-03T04:42:09+00:00"
  5493. },
  5494. {
  5495. "name": "symfony/http-kernel",
  5496. "version": "v5.2.3",
  5497. "source": {
  5498. "type": "git",
  5499. "url": "https://github.com/symfony/http-kernel.git",
  5500. "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05"
  5501. },
  5502. "dist": {
  5503. "type": "zip",
  5504. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
  5505. "reference": "89bac04f29e7b0b52f9fa6a4288ca7a8f90a1a05",
  5506. "shasum": "",
  5507. "mirrors": [
  5508. {
  5509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5510. "preferred": true
  5511. }
  5512. ]
  5513. },
  5514. "require": {
  5515. "php": ">=7.2.5",
  5516. "psr/log": "~1.0",
  5517. "symfony/deprecation-contracts": "^2.1",
  5518. "symfony/error-handler": "^4.4|^5.0",
  5519. "symfony/event-dispatcher": "^5.0",
  5520. "symfony/http-client-contracts": "^1.1|^2",
  5521. "symfony/http-foundation": "^4.4|^5.0",
  5522. "symfony/polyfill-ctype": "^1.8",
  5523. "symfony/polyfill-php73": "^1.9",
  5524. "symfony/polyfill-php80": "^1.15"
  5525. },
  5526. "conflict": {
  5527. "symfony/browser-kit": "<4.4",
  5528. "symfony/cache": "<5.0",
  5529. "symfony/config": "<5.0",
  5530. "symfony/console": "<4.4",
  5531. "symfony/dependency-injection": "<5.1.8",
  5532. "symfony/doctrine-bridge": "<5.0",
  5533. "symfony/form": "<5.0",
  5534. "symfony/http-client": "<5.0",
  5535. "symfony/mailer": "<5.0",
  5536. "symfony/messenger": "<5.0",
  5537. "symfony/translation": "<5.0",
  5538. "symfony/twig-bridge": "<5.0",
  5539. "symfony/validator": "<5.0",
  5540. "twig/twig": "<2.13"
  5541. },
  5542. "provide": {
  5543. "psr/log-implementation": "1.0"
  5544. },
  5545. "require-dev": {
  5546. "psr/cache": "~1.0",
  5547. "symfony/browser-kit": "^4.4|^5.0",
  5548. "symfony/config": "^5.0",
  5549. "symfony/console": "^4.4|^5.0",
  5550. "symfony/css-selector": "^4.4|^5.0",
  5551. "symfony/dependency-injection": "^5.1.8",
  5552. "symfony/dom-crawler": "^4.4|^5.0",
  5553. "symfony/expression-language": "^4.4|^5.0",
  5554. "symfony/finder": "^4.4|^5.0",
  5555. "symfony/process": "^4.4|^5.0",
  5556. "symfony/routing": "^4.4|^5.0",
  5557. "symfony/stopwatch": "^4.4|^5.0",
  5558. "symfony/translation": "^4.4|^5.0",
  5559. "symfony/translation-contracts": "^1.1|^2",
  5560. "twig/twig": "^2.13|^3.0.4"
  5561. },
  5562. "suggest": {
  5563. "symfony/browser-kit": "",
  5564. "symfony/config": "",
  5565. "symfony/console": "",
  5566. "symfony/dependency-injection": ""
  5567. },
  5568. "type": "library",
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Symfony\\Component\\HttpKernel\\": ""
  5572. },
  5573. "exclude-from-classmap": [
  5574. "/Tests/"
  5575. ]
  5576. },
  5577. "notification-url": "https://packagist.org/downloads/",
  5578. "license": [
  5579. "MIT"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "Fabien Potencier",
  5584. "email": "fabien@symfony.com"
  5585. },
  5586. {
  5587. "name": "Symfony Community",
  5588. "homepage": "https://symfony.com/contributors"
  5589. }
  5590. ],
  5591. "description": "Provides a structured process for converting a Request into a Response",
  5592. "homepage": "https://symfony.com",
  5593. "support": {
  5594. "source": "https://github.com/symfony/http-kernel/tree/v5.2.3"
  5595. },
  5596. "funding": [
  5597. {
  5598. "url": "https://symfony.com/sponsor",
  5599. "type": "custom"
  5600. },
  5601. {
  5602. "url": "https://github.com/fabpot",
  5603. "type": "github"
  5604. },
  5605. {
  5606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5607. "type": "tidelift"
  5608. }
  5609. ],
  5610. "time": "2021-02-03T04:51:58+00:00"
  5611. },
  5612. {
  5613. "name": "symfony/mime",
  5614. "version": "v5.2.3",
  5615. "source": {
  5616. "type": "git",
  5617. "url": "https://github.com/symfony/mime.git",
  5618. "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86"
  5619. },
  5620. "dist": {
  5621. "type": "zip",
  5622. "url": "https://api.github.com/repos/symfony/mime/zipball/7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
  5623. "reference": "7dee6a43493f39b51ff6c5bb2bd576fe40a76c86",
  5624. "shasum": "",
  5625. "mirrors": [
  5626. {
  5627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5628. "preferred": true
  5629. }
  5630. ]
  5631. },
  5632. "require": {
  5633. "php": ">=7.2.5",
  5634. "symfony/deprecation-contracts": "^2.1",
  5635. "symfony/polyfill-intl-idn": "^1.10",
  5636. "symfony/polyfill-mbstring": "^1.0",
  5637. "symfony/polyfill-php80": "^1.15"
  5638. },
  5639. "conflict": {
  5640. "phpdocumentor/reflection-docblock": "<3.2.2",
  5641. "phpdocumentor/type-resolver": "<1.4.0",
  5642. "symfony/mailer": "<4.4"
  5643. },
  5644. "require-dev": {
  5645. "egulias/email-validator": "^2.1.10",
  5646. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5647. "symfony/dependency-injection": "^4.4|^5.0",
  5648. "symfony/property-access": "^4.4|^5.1",
  5649. "symfony/property-info": "^4.4|^5.1",
  5650. "symfony/serializer": "^5.2"
  5651. },
  5652. "type": "library",
  5653. "autoload": {
  5654. "psr-4": {
  5655. "Symfony\\Component\\Mime\\": ""
  5656. },
  5657. "exclude-from-classmap": [
  5658. "/Tests/"
  5659. ]
  5660. },
  5661. "notification-url": "https://packagist.org/downloads/",
  5662. "license": [
  5663. "MIT"
  5664. ],
  5665. "authors": [
  5666. {
  5667. "name": "Fabien Potencier",
  5668. "email": "fabien@symfony.com"
  5669. },
  5670. {
  5671. "name": "Symfony Community",
  5672. "homepage": "https://symfony.com/contributors"
  5673. }
  5674. ],
  5675. "description": "Allows manipulating MIME messages",
  5676. "homepage": "https://symfony.com",
  5677. "keywords": [
  5678. "mime",
  5679. "mime-type"
  5680. ],
  5681. "support": {
  5682. "source": "https://github.com/symfony/mime/tree/v5.2.3"
  5683. },
  5684. "funding": [
  5685. {
  5686. "url": "https://symfony.com/sponsor",
  5687. "type": "custom"
  5688. },
  5689. {
  5690. "url": "https://github.com/fabpot",
  5691. "type": "github"
  5692. },
  5693. {
  5694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5695. "type": "tidelift"
  5696. }
  5697. ],
  5698. "time": "2021-02-02T06:10:15+00:00"
  5699. },
  5700. {
  5701. "name": "symfony/options-resolver",
  5702. "version": "v5.2.3",
  5703. "source": {
  5704. "type": "git",
  5705. "url": "https://github.com/symfony/options-resolver.git",
  5706. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  5707. },
  5708. "dist": {
  5709. "type": "zip",
  5710. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5711. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  5712. "shasum": "",
  5713. "mirrors": [
  5714. {
  5715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5716. "preferred": true
  5717. }
  5718. ]
  5719. },
  5720. "require": {
  5721. "php": ">=7.2.5",
  5722. "symfony/deprecation-contracts": "^2.1",
  5723. "symfony/polyfill-php73": "~1.0",
  5724. "symfony/polyfill-php80": "^1.15"
  5725. },
  5726. "type": "library",
  5727. "autoload": {
  5728. "psr-4": {
  5729. "Symfony\\Component\\OptionsResolver\\": ""
  5730. },
  5731. "exclude-from-classmap": [
  5732. "/Tests/"
  5733. ]
  5734. },
  5735. "notification-url": "https://packagist.org/downloads/",
  5736. "license": [
  5737. "MIT"
  5738. ],
  5739. "authors": [
  5740. {
  5741. "name": "Fabien Potencier",
  5742. "email": "fabien@symfony.com"
  5743. },
  5744. {
  5745. "name": "Symfony Community",
  5746. "homepage": "https://symfony.com/contributors"
  5747. }
  5748. ],
  5749. "description": "Provides an improved replacement for the array_replace PHP function",
  5750. "homepage": "https://symfony.com",
  5751. "keywords": [
  5752. "config",
  5753. "configuration",
  5754. "options"
  5755. ],
  5756. "support": {
  5757. "source": "https://github.com/symfony/options-resolver/tree/v5.2.3"
  5758. },
  5759. "funding": [
  5760. {
  5761. "url": "https://symfony.com/sponsor",
  5762. "type": "custom"
  5763. },
  5764. {
  5765. "url": "https://github.com/fabpot",
  5766. "type": "github"
  5767. },
  5768. {
  5769. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5770. "type": "tidelift"
  5771. }
  5772. ],
  5773. "time": "2021-01-27T12:56:27+00:00"
  5774. },
  5775. {
  5776. "name": "symfony/polyfill-ctype",
  5777. "version": "v1.22.1",
  5778. "source": {
  5779. "type": "git",
  5780. "url": "https://github.com/symfony/polyfill-ctype.git",
  5781. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5782. },
  5783. "dist": {
  5784. "type": "zip",
  5785. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5786. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5787. "shasum": "",
  5788. "mirrors": [
  5789. {
  5790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5791. "preferred": true
  5792. }
  5793. ]
  5794. },
  5795. "require": {
  5796. "php": ">=7.1"
  5797. },
  5798. "suggest": {
  5799. "ext-ctype": "For best performance"
  5800. },
  5801. "type": "library",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-main": "1.22-dev"
  5805. },
  5806. "thanks": {
  5807. "name": "symfony/polyfill",
  5808. "url": "https://github.com/symfony/polyfill"
  5809. }
  5810. },
  5811. "autoload": {
  5812. "psr-4": {
  5813. "Symfony\\Polyfill\\Ctype\\": ""
  5814. },
  5815. "files": [
  5816. "bootstrap.php"
  5817. ]
  5818. },
  5819. "notification-url": "https://packagist.org/downloads/",
  5820. "license": [
  5821. "MIT"
  5822. ],
  5823. "authors": [
  5824. {
  5825. "name": "Gert de Pagter",
  5826. "email": "BackEndTea@gmail.com"
  5827. },
  5828. {
  5829. "name": "Symfony Community",
  5830. "homepage": "https://symfony.com/contributors"
  5831. }
  5832. ],
  5833. "description": "Symfony polyfill for ctype functions",
  5834. "homepage": "https://symfony.com",
  5835. "keywords": [
  5836. "compatibility",
  5837. "ctype",
  5838. "polyfill",
  5839. "portable"
  5840. ],
  5841. "support": {
  5842. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  5843. },
  5844. "funding": [
  5845. {
  5846. "url": "https://symfony.com/sponsor",
  5847. "type": "custom"
  5848. },
  5849. {
  5850. "url": "https://github.com/fabpot",
  5851. "type": "github"
  5852. },
  5853. {
  5854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5855. "type": "tidelift"
  5856. }
  5857. ],
  5858. "time": "2021-01-07T16:49:33+00:00"
  5859. },
  5860. {
  5861. "name": "symfony/polyfill-iconv",
  5862. "version": "v1.22.1",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://github.com/symfony/polyfill-iconv.git",
  5866. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5871. "reference": "06fb361659649bcfd6a208a0f1fcaf4e827ad342",
  5872. "shasum": "",
  5873. "mirrors": [
  5874. {
  5875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5876. "preferred": true
  5877. }
  5878. ]
  5879. },
  5880. "require": {
  5881. "php": ">=7.1"
  5882. },
  5883. "suggest": {
  5884. "ext-iconv": "For best performance"
  5885. },
  5886. "type": "library",
  5887. "extra": {
  5888. "branch-alias": {
  5889. "dev-main": "1.22-dev"
  5890. },
  5891. "thanks": {
  5892. "name": "symfony/polyfill",
  5893. "url": "https://github.com/symfony/polyfill"
  5894. }
  5895. },
  5896. "autoload": {
  5897. "psr-4": {
  5898. "Symfony\\Polyfill\\Iconv\\": ""
  5899. },
  5900. "files": [
  5901. "bootstrap.php"
  5902. ]
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "MIT"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Nicolas Grekas",
  5911. "email": "p@tchwork.com"
  5912. },
  5913. {
  5914. "name": "Symfony Community",
  5915. "homepage": "https://symfony.com/contributors"
  5916. }
  5917. ],
  5918. "description": "Symfony polyfill for the Iconv extension",
  5919. "homepage": "https://symfony.com",
  5920. "keywords": [
  5921. "compatibility",
  5922. "iconv",
  5923. "polyfill",
  5924. "portable",
  5925. "shim"
  5926. ],
  5927. "support": {
  5928. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.1"
  5929. },
  5930. "funding": [
  5931. {
  5932. "url": "https://symfony.com/sponsor",
  5933. "type": "custom"
  5934. },
  5935. {
  5936. "url": "https://github.com/fabpot",
  5937. "type": "github"
  5938. },
  5939. {
  5940. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5941. "type": "tidelift"
  5942. }
  5943. ],
  5944. "time": "2021-01-22T09:19:47+00:00"
  5945. },
  5946. {
  5947. "name": "symfony/polyfill-intl-grapheme",
  5948. "version": "v1.22.1",
  5949. "source": {
  5950. "type": "git",
  5951. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5952. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170"
  5953. },
  5954. "dist": {
  5955. "type": "zip",
  5956. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5957. "reference": "5601e09b69f26c1828b13b6bb87cb07cddba3170",
  5958. "shasum": "",
  5959. "mirrors": [
  5960. {
  5961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5962. "preferred": true
  5963. }
  5964. ]
  5965. },
  5966. "require": {
  5967. "php": ">=7.1"
  5968. },
  5969. "suggest": {
  5970. "ext-intl": "For best performance"
  5971. },
  5972. "type": "library",
  5973. "extra": {
  5974. "branch-alias": {
  5975. "dev-main": "1.22-dev"
  5976. },
  5977. "thanks": {
  5978. "name": "symfony/polyfill",
  5979. "url": "https://github.com/symfony/polyfill"
  5980. }
  5981. },
  5982. "autoload": {
  5983. "psr-4": {
  5984. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5985. },
  5986. "files": [
  5987. "bootstrap.php"
  5988. ]
  5989. },
  5990. "notification-url": "https://packagist.org/downloads/",
  5991. "license": [
  5992. "MIT"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "Nicolas Grekas",
  5997. "email": "p@tchwork.com"
  5998. },
  5999. {
  6000. "name": "Symfony Community",
  6001. "homepage": "https://symfony.com/contributors"
  6002. }
  6003. ],
  6004. "description": "Symfony polyfill for intl's grapheme_* functions",
  6005. "homepage": "https://symfony.com",
  6006. "keywords": [
  6007. "compatibility",
  6008. "grapheme",
  6009. "intl",
  6010. "polyfill",
  6011. "portable",
  6012. "shim"
  6013. ],
  6014. "support": {
  6015. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.1"
  6016. },
  6017. "funding": [
  6018. {
  6019. "url": "https://symfony.com/sponsor",
  6020. "type": "custom"
  6021. },
  6022. {
  6023. "url": "https://github.com/fabpot",
  6024. "type": "github"
  6025. },
  6026. {
  6027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6028. "type": "tidelift"
  6029. }
  6030. ],
  6031. "time": "2021-01-22T09:19:47+00:00"
  6032. },
  6033. {
  6034. "name": "symfony/polyfill-intl-idn",
  6035. "version": "v1.22.1",
  6036. "source": {
  6037. "type": "git",
  6038. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6039. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  6040. },
  6041. "dist": {
  6042. "type": "zip",
  6043. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6044. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6045. "shasum": "",
  6046. "mirrors": [
  6047. {
  6048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6049. "preferred": true
  6050. }
  6051. ]
  6052. },
  6053. "require": {
  6054. "php": ">=7.1",
  6055. "symfony/polyfill-intl-normalizer": "^1.10",
  6056. "symfony/polyfill-php72": "^1.10"
  6057. },
  6058. "suggest": {
  6059. "ext-intl": "For best performance"
  6060. },
  6061. "type": "library",
  6062. "extra": {
  6063. "branch-alias": {
  6064. "dev-main": "1.22-dev"
  6065. },
  6066. "thanks": {
  6067. "name": "symfony/polyfill",
  6068. "url": "https://github.com/symfony/polyfill"
  6069. }
  6070. },
  6071. "autoload": {
  6072. "psr-4": {
  6073. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6074. },
  6075. "files": [
  6076. "bootstrap.php"
  6077. ]
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Laurent Bassin",
  6086. "email": "laurent@bassin.info"
  6087. },
  6088. {
  6089. "name": "Trevor Rowbotham",
  6090. "email": "trevor.rowbotham@pm.me"
  6091. },
  6092. {
  6093. "name": "Symfony Community",
  6094. "homepage": "https://symfony.com/contributors"
  6095. }
  6096. ],
  6097. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6098. "homepage": "https://symfony.com",
  6099. "keywords": [
  6100. "compatibility",
  6101. "idn",
  6102. "intl",
  6103. "polyfill",
  6104. "portable",
  6105. "shim"
  6106. ],
  6107. "support": {
  6108. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.1"
  6109. },
  6110. "funding": [
  6111. {
  6112. "url": "https://symfony.com/sponsor",
  6113. "type": "custom"
  6114. },
  6115. {
  6116. "url": "https://github.com/fabpot",
  6117. "type": "github"
  6118. },
  6119. {
  6120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6121. "type": "tidelift"
  6122. }
  6123. ],
  6124. "time": "2021-01-22T09:19:47+00:00"
  6125. },
  6126. {
  6127. "name": "symfony/polyfill-intl-normalizer",
  6128. "version": "v1.22.1",
  6129. "source": {
  6130. "type": "git",
  6131. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6132. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248"
  6133. },
  6134. "dist": {
  6135. "type": "zip",
  6136. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6137. "reference": "43a0283138253ed1d48d352ab6d0bdb3f809f248",
  6138. "shasum": "",
  6139. "mirrors": [
  6140. {
  6141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6142. "preferred": true
  6143. }
  6144. ]
  6145. },
  6146. "require": {
  6147. "php": ">=7.1"
  6148. },
  6149. "suggest": {
  6150. "ext-intl": "For best performance"
  6151. },
  6152. "type": "library",
  6153. "extra": {
  6154. "branch-alias": {
  6155. "dev-main": "1.22-dev"
  6156. },
  6157. "thanks": {
  6158. "name": "symfony/polyfill",
  6159. "url": "https://github.com/symfony/polyfill"
  6160. }
  6161. },
  6162. "autoload": {
  6163. "psr-4": {
  6164. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6165. },
  6166. "files": [
  6167. "bootstrap.php"
  6168. ],
  6169. "classmap": [
  6170. "Resources/stubs"
  6171. ]
  6172. },
  6173. "notification-url": "https://packagist.org/downloads/",
  6174. "license": [
  6175. "MIT"
  6176. ],
  6177. "authors": [
  6178. {
  6179. "name": "Nicolas Grekas",
  6180. "email": "p@tchwork.com"
  6181. },
  6182. {
  6183. "name": "Symfony Community",
  6184. "homepage": "https://symfony.com/contributors"
  6185. }
  6186. ],
  6187. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6188. "homepage": "https://symfony.com",
  6189. "keywords": [
  6190. "compatibility",
  6191. "intl",
  6192. "normalizer",
  6193. "polyfill",
  6194. "portable",
  6195. "shim"
  6196. ],
  6197. "support": {
  6198. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.1"
  6199. },
  6200. "funding": [
  6201. {
  6202. "url": "https://symfony.com/sponsor",
  6203. "type": "custom"
  6204. },
  6205. {
  6206. "url": "https://github.com/fabpot",
  6207. "type": "github"
  6208. },
  6209. {
  6210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6211. "type": "tidelift"
  6212. }
  6213. ],
  6214. "time": "2021-01-22T09:19:47+00:00"
  6215. },
  6216. {
  6217. "name": "symfony/polyfill-mbstring",
  6218. "version": "v1.22.1",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6222. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  6227. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  6228. "shasum": "",
  6229. "mirrors": [
  6230. {
  6231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6232. "preferred": true
  6233. }
  6234. ]
  6235. },
  6236. "require": {
  6237. "php": ">=7.1"
  6238. },
  6239. "suggest": {
  6240. "ext-mbstring": "For best performance"
  6241. },
  6242. "type": "library",
  6243. "extra": {
  6244. "branch-alias": {
  6245. "dev-main": "1.22-dev"
  6246. },
  6247. "thanks": {
  6248. "name": "symfony/polyfill",
  6249. "url": "https://github.com/symfony/polyfill"
  6250. }
  6251. },
  6252. "autoload": {
  6253. "psr-4": {
  6254. "Symfony\\Polyfill\\Mbstring\\": ""
  6255. },
  6256. "files": [
  6257. "bootstrap.php"
  6258. ]
  6259. },
  6260. "notification-url": "https://packagist.org/downloads/",
  6261. "license": [
  6262. "MIT"
  6263. ],
  6264. "authors": [
  6265. {
  6266. "name": "Nicolas Grekas",
  6267. "email": "p@tchwork.com"
  6268. },
  6269. {
  6270. "name": "Symfony Community",
  6271. "homepage": "https://symfony.com/contributors"
  6272. }
  6273. ],
  6274. "description": "Symfony polyfill for the Mbstring extension",
  6275. "homepage": "https://symfony.com",
  6276. "keywords": [
  6277. "compatibility",
  6278. "mbstring",
  6279. "polyfill",
  6280. "portable",
  6281. "shim"
  6282. ],
  6283. "support": {
  6284. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  6285. },
  6286. "funding": [
  6287. {
  6288. "url": "https://symfony.com/sponsor",
  6289. "type": "custom"
  6290. },
  6291. {
  6292. "url": "https://github.com/fabpot",
  6293. "type": "github"
  6294. },
  6295. {
  6296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6297. "type": "tidelift"
  6298. }
  6299. ],
  6300. "time": "2021-01-22T09:19:47+00:00"
  6301. },
  6302. {
  6303. "name": "symfony/polyfill-php56",
  6304. "version": "v1.20.0",
  6305. "source": {
  6306. "type": "git",
  6307. "url": "https://github.com/symfony/polyfill-php56.git",
  6308. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6309. },
  6310. "dist": {
  6311. "type": "zip",
  6312. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6313. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6314. "shasum": "",
  6315. "mirrors": [
  6316. {
  6317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6318. "preferred": true
  6319. }
  6320. ]
  6321. },
  6322. "require": {
  6323. "php": ">=7.1"
  6324. },
  6325. "type": "metapackage",
  6326. "extra": {
  6327. "branch-alias": {
  6328. "dev-main": "1.20-dev"
  6329. },
  6330. "thanks": {
  6331. "name": "symfony/polyfill",
  6332. "url": "https://github.com/symfony/polyfill"
  6333. }
  6334. },
  6335. "notification-url": "https://packagist.org/downloads/",
  6336. "license": [
  6337. "MIT"
  6338. ],
  6339. "authors": [
  6340. {
  6341. "name": "Nicolas Grekas",
  6342. "email": "p@tchwork.com"
  6343. },
  6344. {
  6345. "name": "Symfony Community",
  6346. "homepage": "https://symfony.com/contributors"
  6347. }
  6348. ],
  6349. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6350. "homepage": "https://symfony.com",
  6351. "keywords": [
  6352. "compatibility",
  6353. "polyfill",
  6354. "portable",
  6355. "shim"
  6356. ],
  6357. "support": {
  6358. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6359. },
  6360. "funding": [
  6361. {
  6362. "url": "https://symfony.com/sponsor",
  6363. "type": "custom"
  6364. },
  6365. {
  6366. "url": "https://github.com/fabpot",
  6367. "type": "github"
  6368. },
  6369. {
  6370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6371. "type": "tidelift"
  6372. }
  6373. ],
  6374. "time": "2020-10-23T14:02:19+00:00"
  6375. },
  6376. {
  6377. "name": "symfony/polyfill-php72",
  6378. "version": "v1.22.1",
  6379. "source": {
  6380. "type": "git",
  6381. "url": "https://github.com/symfony/polyfill-php72.git",
  6382. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6383. },
  6384. "dist": {
  6385. "type": "zip",
  6386. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6387. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6388. "shasum": "",
  6389. "mirrors": [
  6390. {
  6391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6392. "preferred": true
  6393. }
  6394. ]
  6395. },
  6396. "require": {
  6397. "php": ">=7.1"
  6398. },
  6399. "type": "library",
  6400. "extra": {
  6401. "branch-alias": {
  6402. "dev-main": "1.22-dev"
  6403. },
  6404. "thanks": {
  6405. "name": "symfony/polyfill",
  6406. "url": "https://github.com/symfony/polyfill"
  6407. }
  6408. },
  6409. "autoload": {
  6410. "psr-4": {
  6411. "Symfony\\Polyfill\\Php72\\": ""
  6412. },
  6413. "files": [
  6414. "bootstrap.php"
  6415. ]
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "MIT"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "Nicolas Grekas",
  6424. "email": "p@tchwork.com"
  6425. },
  6426. {
  6427. "name": "Symfony Community",
  6428. "homepage": "https://symfony.com/contributors"
  6429. }
  6430. ],
  6431. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6432. "homepage": "https://symfony.com",
  6433. "keywords": [
  6434. "compatibility",
  6435. "polyfill",
  6436. "portable",
  6437. "shim"
  6438. ],
  6439. "support": {
  6440. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  6441. },
  6442. "funding": [
  6443. {
  6444. "url": "https://symfony.com/sponsor",
  6445. "type": "custom"
  6446. },
  6447. {
  6448. "url": "https://github.com/fabpot",
  6449. "type": "github"
  6450. },
  6451. {
  6452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6453. "type": "tidelift"
  6454. }
  6455. ],
  6456. "time": "2021-01-07T16:49:33+00:00"
  6457. },
  6458. {
  6459. "name": "symfony/polyfill-php73",
  6460. "version": "v1.22.1",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://github.com/symfony/polyfill-php73.git",
  6464. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6469. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6470. "shasum": "",
  6471. "mirrors": [
  6472. {
  6473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6474. "preferred": true
  6475. }
  6476. ]
  6477. },
  6478. "require": {
  6479. "php": ">=7.1"
  6480. },
  6481. "type": "library",
  6482. "extra": {
  6483. "branch-alias": {
  6484. "dev-main": "1.22-dev"
  6485. },
  6486. "thanks": {
  6487. "name": "symfony/polyfill",
  6488. "url": "https://github.com/symfony/polyfill"
  6489. }
  6490. },
  6491. "autoload": {
  6492. "psr-4": {
  6493. "Symfony\\Polyfill\\Php73\\": ""
  6494. },
  6495. "files": [
  6496. "bootstrap.php"
  6497. ],
  6498. "classmap": [
  6499. "Resources/stubs"
  6500. ]
  6501. },
  6502. "notification-url": "https://packagist.org/downloads/",
  6503. "license": [
  6504. "MIT"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Nicolas Grekas",
  6509. "email": "p@tchwork.com"
  6510. },
  6511. {
  6512. "name": "Symfony Community",
  6513. "homepage": "https://symfony.com/contributors"
  6514. }
  6515. ],
  6516. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6517. "homepage": "https://symfony.com",
  6518. "keywords": [
  6519. "compatibility",
  6520. "polyfill",
  6521. "portable",
  6522. "shim"
  6523. ],
  6524. "support": {
  6525. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.1"
  6526. },
  6527. "funding": [
  6528. {
  6529. "url": "https://symfony.com/sponsor",
  6530. "type": "custom"
  6531. },
  6532. {
  6533. "url": "https://github.com/fabpot",
  6534. "type": "github"
  6535. },
  6536. {
  6537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6538. "type": "tidelift"
  6539. }
  6540. ],
  6541. "time": "2021-01-07T16:49:33+00:00"
  6542. },
  6543. {
  6544. "name": "symfony/polyfill-php80",
  6545. "version": "v1.22.1",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://github.com/symfony/polyfill-php80.git",
  6549. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6554. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6555. "shasum": "",
  6556. "mirrors": [
  6557. {
  6558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6559. "preferred": true
  6560. }
  6561. ]
  6562. },
  6563. "require": {
  6564. "php": ">=7.1"
  6565. },
  6566. "type": "library",
  6567. "extra": {
  6568. "branch-alias": {
  6569. "dev-main": "1.22-dev"
  6570. },
  6571. "thanks": {
  6572. "name": "symfony/polyfill",
  6573. "url": "https://github.com/symfony/polyfill"
  6574. }
  6575. },
  6576. "autoload": {
  6577. "psr-4": {
  6578. "Symfony\\Polyfill\\Php80\\": ""
  6579. },
  6580. "files": [
  6581. "bootstrap.php"
  6582. ],
  6583. "classmap": [
  6584. "Resources/stubs"
  6585. ]
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "MIT"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "Ion Bazan",
  6594. "email": "ion.bazan@gmail.com"
  6595. },
  6596. {
  6597. "name": "Nicolas Grekas",
  6598. "email": "p@tchwork.com"
  6599. },
  6600. {
  6601. "name": "Symfony Community",
  6602. "homepage": "https://symfony.com/contributors"
  6603. }
  6604. ],
  6605. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6606. "homepage": "https://symfony.com",
  6607. "keywords": [
  6608. "compatibility",
  6609. "polyfill",
  6610. "portable",
  6611. "shim"
  6612. ],
  6613. "support": {
  6614. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  6615. },
  6616. "funding": [
  6617. {
  6618. "url": "https://symfony.com/sponsor",
  6619. "type": "custom"
  6620. },
  6621. {
  6622. "url": "https://github.com/fabpot",
  6623. "type": "github"
  6624. },
  6625. {
  6626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6627. "type": "tidelift"
  6628. }
  6629. ],
  6630. "time": "2021-01-07T16:49:33+00:00"
  6631. },
  6632. {
  6633. "name": "symfony/process",
  6634. "version": "v5.2.3",
  6635. "source": {
  6636. "type": "git",
  6637. "url": "https://github.com/symfony/process.git",
  6638. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f"
  6639. },
  6640. "dist": {
  6641. "type": "zip",
  6642. "url": "https://api.github.com/repos/symfony/process/zipball/313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6643. "reference": "313a38f09c77fbcdc1d223e57d368cea76a2fd2f",
  6644. "shasum": "",
  6645. "mirrors": [
  6646. {
  6647. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6648. "preferred": true
  6649. }
  6650. ]
  6651. },
  6652. "require": {
  6653. "php": ">=7.2.5",
  6654. "symfony/polyfill-php80": "^1.15"
  6655. },
  6656. "type": "library",
  6657. "autoload": {
  6658. "psr-4": {
  6659. "Symfony\\Component\\Process\\": ""
  6660. },
  6661. "exclude-from-classmap": [
  6662. "/Tests/"
  6663. ]
  6664. },
  6665. "notification-url": "https://packagist.org/downloads/",
  6666. "license": [
  6667. "MIT"
  6668. ],
  6669. "authors": [
  6670. {
  6671. "name": "Fabien Potencier",
  6672. "email": "fabien@symfony.com"
  6673. },
  6674. {
  6675. "name": "Symfony Community",
  6676. "homepage": "https://symfony.com/contributors"
  6677. }
  6678. ],
  6679. "description": "Executes commands in sub-processes",
  6680. "homepage": "https://symfony.com",
  6681. "support": {
  6682. "source": "https://github.com/symfony/process/tree/v5.2.3"
  6683. },
  6684. "funding": [
  6685. {
  6686. "url": "https://symfony.com/sponsor",
  6687. "type": "custom"
  6688. },
  6689. {
  6690. "url": "https://github.com/fabpot",
  6691. "type": "github"
  6692. },
  6693. {
  6694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6695. "type": "tidelift"
  6696. }
  6697. ],
  6698. "time": "2021-01-27T10:15:41+00:00"
  6699. },
  6700. {
  6701. "name": "symfony/property-access",
  6702. "version": "v5.2.3",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://github.com/symfony/property-access.git",
  6706. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6711. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  6712. "shasum": "",
  6713. "mirrors": [
  6714. {
  6715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6716. "preferred": true
  6717. }
  6718. ]
  6719. },
  6720. "require": {
  6721. "php": ">=7.2.5",
  6722. "symfony/deprecation-contracts": "^2.1",
  6723. "symfony/polyfill-php80": "^1.15",
  6724. "symfony/property-info": "^5.2"
  6725. },
  6726. "require-dev": {
  6727. "symfony/cache": "^4.4|^5.0"
  6728. },
  6729. "suggest": {
  6730. "psr/cache-implementation": "To cache access methods."
  6731. },
  6732. "type": "library",
  6733. "autoload": {
  6734. "psr-4": {
  6735. "Symfony\\Component\\PropertyAccess\\": ""
  6736. },
  6737. "exclude-from-classmap": [
  6738. "/Tests/"
  6739. ]
  6740. },
  6741. "notification-url": "https://packagist.org/downloads/",
  6742. "license": [
  6743. "MIT"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "Fabien Potencier",
  6748. "email": "fabien@symfony.com"
  6749. },
  6750. {
  6751. "name": "Symfony Community",
  6752. "homepage": "https://symfony.com/contributors"
  6753. }
  6754. ],
  6755. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6756. "homepage": "https://symfony.com",
  6757. "keywords": [
  6758. "access",
  6759. "array",
  6760. "extraction",
  6761. "index",
  6762. "injection",
  6763. "object",
  6764. "property",
  6765. "property path",
  6766. "reflection"
  6767. ],
  6768. "support": {
  6769. "source": "https://github.com/symfony/property-access/tree/v5.2.3"
  6770. },
  6771. "funding": [
  6772. {
  6773. "url": "https://symfony.com/sponsor",
  6774. "type": "custom"
  6775. },
  6776. {
  6777. "url": "https://github.com/fabpot",
  6778. "type": "github"
  6779. },
  6780. {
  6781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6782. "type": "tidelift"
  6783. }
  6784. ],
  6785. "time": "2021-01-27T10:15:41+00:00"
  6786. },
  6787. {
  6788. "name": "symfony/property-info",
  6789. "version": "v5.2.3",
  6790. "source": {
  6791. "type": "git",
  6792. "url": "https://github.com/symfony/property-info.git",
  6793. "reference": "4e4f368c3737b1c175d66f4fc0b99a5bcd161a77"
  6794. },
  6795. "dist": {
  6796. "type": "zip",
  6797. "url": "https://api.github.com/repos/symfony/property-info/zipball/4e4f368c3737b1c175d66f4fc0b99a5bcd161a77",
  6798. "reference": "4e4f368c3737b1c175d66f4fc0b99a5bcd161a77",
  6799. "shasum": "",
  6800. "mirrors": [
  6801. {
  6802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6803. "preferred": true
  6804. }
  6805. ]
  6806. },
  6807. "require": {
  6808. "php": ">=7.2.5",
  6809. "symfony/deprecation-contracts": "^2.1",
  6810. "symfony/polyfill-php80": "^1.15",
  6811. "symfony/string": "^5.1"
  6812. },
  6813. "conflict": {
  6814. "phpdocumentor/reflection-docblock": "<3.2.2",
  6815. "phpdocumentor/type-resolver": "<1.4.0",
  6816. "symfony/dependency-injection": "<4.4"
  6817. },
  6818. "require-dev": {
  6819. "doctrine/annotations": "^1.10.4",
  6820. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6821. "symfony/cache": "^4.4|^5.0",
  6822. "symfony/dependency-injection": "^4.4|^5.0",
  6823. "symfony/serializer": "^4.4|^5.0"
  6824. },
  6825. "suggest": {
  6826. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6827. "psr/cache-implementation": "To cache results",
  6828. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6829. "symfony/serializer": "To use Serializer metadata"
  6830. },
  6831. "type": "library",
  6832. "autoload": {
  6833. "psr-4": {
  6834. "Symfony\\Component\\PropertyInfo\\": ""
  6835. },
  6836. "exclude-from-classmap": [
  6837. "/Tests/"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "MIT"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Kévin Dunglas",
  6847. "email": "dunglas@gmail.com"
  6848. },
  6849. {
  6850. "name": "Symfony Community",
  6851. "homepage": "https://symfony.com/contributors"
  6852. }
  6853. ],
  6854. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6855. "homepage": "https://symfony.com",
  6856. "keywords": [
  6857. "doctrine",
  6858. "phpdoc",
  6859. "property",
  6860. "symfony",
  6861. "type",
  6862. "validator"
  6863. ],
  6864. "support": {
  6865. "source": "https://github.com/symfony/property-info/tree/v5.2.3"
  6866. },
  6867. "funding": [
  6868. {
  6869. "url": "https://symfony.com/sponsor",
  6870. "type": "custom"
  6871. },
  6872. {
  6873. "url": "https://github.com/fabpot",
  6874. "type": "github"
  6875. },
  6876. {
  6877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6878. "type": "tidelift"
  6879. }
  6880. ],
  6881. "time": "2021-01-27T10:15:41+00:00"
  6882. },
  6883. {
  6884. "name": "symfony/routing",
  6885. "version": "v5.2.3",
  6886. "source": {
  6887. "type": "git",
  6888. "url": "https://github.com/symfony/routing.git",
  6889. "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661"
  6890. },
  6891. "dist": {
  6892. "type": "zip",
  6893. "url": "https://api.github.com/repos/symfony/routing/zipball/348b5917e56546c6d96adbf21d7f92c9ef563661",
  6894. "reference": "348b5917e56546c6d96adbf21d7f92c9ef563661",
  6895. "shasum": "",
  6896. "mirrors": [
  6897. {
  6898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6899. "preferred": true
  6900. }
  6901. ]
  6902. },
  6903. "require": {
  6904. "php": ">=7.2.5",
  6905. "symfony/deprecation-contracts": "^2.1",
  6906. "symfony/polyfill-php80": "^1.15"
  6907. },
  6908. "conflict": {
  6909. "symfony/config": "<5.0",
  6910. "symfony/dependency-injection": "<4.4",
  6911. "symfony/yaml": "<4.4"
  6912. },
  6913. "require-dev": {
  6914. "doctrine/annotations": "^1.10.4",
  6915. "psr/log": "~1.0",
  6916. "symfony/config": "^5.0",
  6917. "symfony/dependency-injection": "^4.4|^5.0",
  6918. "symfony/expression-language": "^4.4|^5.0",
  6919. "symfony/http-foundation": "^4.4|^5.0",
  6920. "symfony/yaml": "^4.4|^5.0"
  6921. },
  6922. "suggest": {
  6923. "doctrine/annotations": "For using the annotation loader",
  6924. "symfony/config": "For using the all-in-one router or any loader",
  6925. "symfony/expression-language": "For using expression matching",
  6926. "symfony/http-foundation": "For using a Symfony Request object",
  6927. "symfony/yaml": "For using the YAML loader"
  6928. },
  6929. "type": "library",
  6930. "autoload": {
  6931. "psr-4": {
  6932. "Symfony\\Component\\Routing\\": ""
  6933. },
  6934. "exclude-from-classmap": [
  6935. "/Tests/"
  6936. ]
  6937. },
  6938. "notification-url": "https://packagist.org/downloads/",
  6939. "license": [
  6940. "MIT"
  6941. ],
  6942. "authors": [
  6943. {
  6944. "name": "Fabien Potencier",
  6945. "email": "fabien@symfony.com"
  6946. },
  6947. {
  6948. "name": "Symfony Community",
  6949. "homepage": "https://symfony.com/contributors"
  6950. }
  6951. ],
  6952. "description": "Maps an HTTP request to a set of configuration variables",
  6953. "homepage": "https://symfony.com",
  6954. "keywords": [
  6955. "router",
  6956. "routing",
  6957. "uri",
  6958. "url"
  6959. ],
  6960. "support": {
  6961. "source": "https://github.com/symfony/routing/tree/v5.2.3"
  6962. },
  6963. "funding": [
  6964. {
  6965. "url": "https://symfony.com/sponsor",
  6966. "type": "custom"
  6967. },
  6968. {
  6969. "url": "https://github.com/fabpot",
  6970. "type": "github"
  6971. },
  6972. {
  6973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6974. "type": "tidelift"
  6975. }
  6976. ],
  6977. "time": "2021-01-27T10:15:41+00:00"
  6978. },
  6979. {
  6980. "name": "symfony/service-contracts",
  6981. "version": "v2.2.0",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://github.com/symfony/service-contracts.git",
  6985. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6990. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6991. "shasum": "",
  6992. "mirrors": [
  6993. {
  6994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6995. "preferred": true
  6996. }
  6997. ]
  6998. },
  6999. "require": {
  7000. "php": ">=7.2.5",
  7001. "psr/container": "^1.0"
  7002. },
  7003. "suggest": {
  7004. "symfony/service-implementation": ""
  7005. },
  7006. "type": "library",
  7007. "extra": {
  7008. "branch-alias": {
  7009. "dev-master": "2.2-dev"
  7010. },
  7011. "thanks": {
  7012. "name": "symfony/contracts",
  7013. "url": "https://github.com/symfony/contracts"
  7014. }
  7015. },
  7016. "autoload": {
  7017. "psr-4": {
  7018. "Symfony\\Contracts\\Service\\": ""
  7019. }
  7020. },
  7021. "notification-url": "https://packagist.org/downloads/",
  7022. "license": [
  7023. "MIT"
  7024. ],
  7025. "authors": [
  7026. {
  7027. "name": "Nicolas Grekas",
  7028. "email": "p@tchwork.com"
  7029. },
  7030. {
  7031. "name": "Symfony Community",
  7032. "homepage": "https://symfony.com/contributors"
  7033. }
  7034. ],
  7035. "description": "Generic abstractions related to writing services",
  7036. "homepage": "https://symfony.com",
  7037. "keywords": [
  7038. "abstractions",
  7039. "contracts",
  7040. "decoupling",
  7041. "interfaces",
  7042. "interoperability",
  7043. "standards"
  7044. ],
  7045. "support": {
  7046. "source": "https://github.com/symfony/service-contracts/tree/master"
  7047. },
  7048. "funding": [
  7049. {
  7050. "url": "https://symfony.com/sponsor",
  7051. "type": "custom"
  7052. },
  7053. {
  7054. "url": "https://github.com/fabpot",
  7055. "type": "github"
  7056. },
  7057. {
  7058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7059. "type": "tidelift"
  7060. }
  7061. ],
  7062. "time": "2020-09-07T11:33:47+00:00"
  7063. },
  7064. {
  7065. "name": "symfony/string",
  7066. "version": "v5.2.3",
  7067. "source": {
  7068. "type": "git",
  7069. "url": "https://github.com/symfony/string.git",
  7070. "reference": "c95468897f408dd0aca2ff582074423dd0455122"
  7071. },
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://api.github.com/repos/symfony/string/zipball/c95468897f408dd0aca2ff582074423dd0455122",
  7075. "reference": "c95468897f408dd0aca2ff582074423dd0455122",
  7076. "shasum": "",
  7077. "mirrors": [
  7078. {
  7079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7080. "preferred": true
  7081. }
  7082. ]
  7083. },
  7084. "require": {
  7085. "php": ">=7.2.5",
  7086. "symfony/polyfill-ctype": "~1.8",
  7087. "symfony/polyfill-intl-grapheme": "~1.0",
  7088. "symfony/polyfill-intl-normalizer": "~1.0",
  7089. "symfony/polyfill-mbstring": "~1.0",
  7090. "symfony/polyfill-php80": "~1.15"
  7091. },
  7092. "require-dev": {
  7093. "symfony/error-handler": "^4.4|^5.0",
  7094. "symfony/http-client": "^4.4|^5.0",
  7095. "symfony/translation-contracts": "^1.1|^2",
  7096. "symfony/var-exporter": "^4.4|^5.0"
  7097. },
  7098. "type": "library",
  7099. "autoload": {
  7100. "psr-4": {
  7101. "Symfony\\Component\\String\\": ""
  7102. },
  7103. "files": [
  7104. "Resources/functions.php"
  7105. ],
  7106. "exclude-from-classmap": [
  7107. "/Tests/"
  7108. ]
  7109. },
  7110. "notification-url": "https://packagist.org/downloads/",
  7111. "license": [
  7112. "MIT"
  7113. ],
  7114. "authors": [
  7115. {
  7116. "name": "Nicolas Grekas",
  7117. "email": "p@tchwork.com"
  7118. },
  7119. {
  7120. "name": "Symfony Community",
  7121. "homepage": "https://symfony.com/contributors"
  7122. }
  7123. ],
  7124. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7125. "homepage": "https://symfony.com",
  7126. "keywords": [
  7127. "grapheme",
  7128. "i18n",
  7129. "string",
  7130. "unicode",
  7131. "utf-8",
  7132. "utf8"
  7133. ],
  7134. "support": {
  7135. "source": "https://github.com/symfony/string/tree/v5.2.3"
  7136. },
  7137. "funding": [
  7138. {
  7139. "url": "https://symfony.com/sponsor",
  7140. "type": "custom"
  7141. },
  7142. {
  7143. "url": "https://github.com/fabpot",
  7144. "type": "github"
  7145. },
  7146. {
  7147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7148. "type": "tidelift"
  7149. }
  7150. ],
  7151. "time": "2021-01-25T15:14:59+00:00"
  7152. },
  7153. {
  7154. "name": "symfony/translation",
  7155. "version": "v5.2.3",
  7156. "source": {
  7157. "type": "git",
  7158. "url": "https://github.com/symfony/translation.git",
  7159. "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949"
  7160. },
  7161. "dist": {
  7162. "type": "zip",
  7163. "url": "https://api.github.com/repos/symfony/translation/zipball/c021864d4354ee55160ddcfd31dc477a1bc77949",
  7164. "reference": "c021864d4354ee55160ddcfd31dc477a1bc77949",
  7165. "shasum": "",
  7166. "mirrors": [
  7167. {
  7168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7169. "preferred": true
  7170. }
  7171. ]
  7172. },
  7173. "require": {
  7174. "php": ">=7.2.5",
  7175. "symfony/polyfill-mbstring": "~1.0",
  7176. "symfony/polyfill-php80": "^1.15",
  7177. "symfony/translation-contracts": "^2.3"
  7178. },
  7179. "conflict": {
  7180. "symfony/config": "<4.4",
  7181. "symfony/dependency-injection": "<5.0",
  7182. "symfony/http-kernel": "<5.0",
  7183. "symfony/twig-bundle": "<5.0",
  7184. "symfony/yaml": "<4.4"
  7185. },
  7186. "provide": {
  7187. "symfony/translation-implementation": "2.0"
  7188. },
  7189. "require-dev": {
  7190. "psr/log": "~1.0",
  7191. "symfony/config": "^4.4|^5.0",
  7192. "symfony/console": "^4.4|^5.0",
  7193. "symfony/dependency-injection": "^5.0",
  7194. "symfony/finder": "^4.4|^5.0",
  7195. "symfony/http-kernel": "^5.0",
  7196. "symfony/intl": "^4.4|^5.0",
  7197. "symfony/service-contracts": "^1.1.2|^2",
  7198. "symfony/yaml": "^4.4|^5.0"
  7199. },
  7200. "suggest": {
  7201. "psr/log-implementation": "To use logging capability in translator",
  7202. "symfony/config": "",
  7203. "symfony/yaml": ""
  7204. },
  7205. "type": "library",
  7206. "autoload": {
  7207. "files": [
  7208. "Resources/functions.php"
  7209. ],
  7210. "psr-4": {
  7211. "Symfony\\Component\\Translation\\": ""
  7212. },
  7213. "exclude-from-classmap": [
  7214. "/Tests/"
  7215. ]
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "MIT"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Fabien Potencier",
  7224. "email": "fabien@symfony.com"
  7225. },
  7226. {
  7227. "name": "Symfony Community",
  7228. "homepage": "https://symfony.com/contributors"
  7229. }
  7230. ],
  7231. "description": "Provides tools to internationalize your application",
  7232. "homepage": "https://symfony.com",
  7233. "support": {
  7234. "source": "https://github.com/symfony/translation/tree/v5.2.3"
  7235. },
  7236. "funding": [
  7237. {
  7238. "url": "https://symfony.com/sponsor",
  7239. "type": "custom"
  7240. },
  7241. {
  7242. "url": "https://github.com/fabpot",
  7243. "type": "github"
  7244. },
  7245. {
  7246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7247. "type": "tidelift"
  7248. }
  7249. ],
  7250. "time": "2021-01-27T10:15:41+00:00"
  7251. },
  7252. {
  7253. "name": "symfony/translation-contracts",
  7254. "version": "v2.3.0",
  7255. "source": {
  7256. "type": "git",
  7257. "url": "https://github.com/symfony/translation-contracts.git",
  7258. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  7259. },
  7260. "dist": {
  7261. "type": "zip",
  7262. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7263. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  7264. "shasum": "",
  7265. "mirrors": [
  7266. {
  7267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7268. "preferred": true
  7269. }
  7270. ]
  7271. },
  7272. "require": {
  7273. "php": ">=7.2.5"
  7274. },
  7275. "suggest": {
  7276. "symfony/translation-implementation": ""
  7277. },
  7278. "type": "library",
  7279. "extra": {
  7280. "branch-alias": {
  7281. "dev-master": "2.3-dev"
  7282. },
  7283. "thanks": {
  7284. "name": "symfony/contracts",
  7285. "url": "https://github.com/symfony/contracts"
  7286. }
  7287. },
  7288. "autoload": {
  7289. "psr-4": {
  7290. "Symfony\\Contracts\\Translation\\": ""
  7291. }
  7292. },
  7293. "notification-url": "https://packagist.org/downloads/",
  7294. "license": [
  7295. "MIT"
  7296. ],
  7297. "authors": [
  7298. {
  7299. "name": "Nicolas Grekas",
  7300. "email": "p@tchwork.com"
  7301. },
  7302. {
  7303. "name": "Symfony Community",
  7304. "homepage": "https://symfony.com/contributors"
  7305. }
  7306. ],
  7307. "description": "Generic abstractions related to translation",
  7308. "homepage": "https://symfony.com",
  7309. "keywords": [
  7310. "abstractions",
  7311. "contracts",
  7312. "decoupling",
  7313. "interfaces",
  7314. "interoperability",
  7315. "standards"
  7316. ],
  7317. "support": {
  7318. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  7319. },
  7320. "funding": [
  7321. {
  7322. "url": "https://symfony.com/sponsor",
  7323. "type": "custom"
  7324. },
  7325. {
  7326. "url": "https://github.com/fabpot",
  7327. "type": "github"
  7328. },
  7329. {
  7330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7331. "type": "tidelift"
  7332. }
  7333. ],
  7334. "time": "2020-09-28T13:05:58+00:00"
  7335. },
  7336. {
  7337. "name": "symfony/var-dumper",
  7338. "version": "v5.2.3",
  7339. "source": {
  7340. "type": "git",
  7341. "url": "https://github.com/symfony/var-dumper.git",
  7342. "reference": "72ca213014a92223a5d18651ce79ef441c12b694"
  7343. },
  7344. "dist": {
  7345. "type": "zip",
  7346. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/72ca213014a92223a5d18651ce79ef441c12b694",
  7347. "reference": "72ca213014a92223a5d18651ce79ef441c12b694",
  7348. "shasum": "",
  7349. "mirrors": [
  7350. {
  7351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7352. "preferred": true
  7353. }
  7354. ]
  7355. },
  7356. "require": {
  7357. "php": ">=7.2.5",
  7358. "symfony/polyfill-mbstring": "~1.0",
  7359. "symfony/polyfill-php80": "^1.15"
  7360. },
  7361. "conflict": {
  7362. "phpunit/phpunit": "<5.4.3",
  7363. "symfony/console": "<4.4"
  7364. },
  7365. "require-dev": {
  7366. "ext-iconv": "*",
  7367. "symfony/console": "^4.4|^5.0",
  7368. "symfony/process": "^4.4|^5.0",
  7369. "twig/twig": "^2.13|^3.0.4"
  7370. },
  7371. "suggest": {
  7372. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7373. "ext-intl": "To show region name in time zone dump",
  7374. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7375. },
  7376. "bin": [
  7377. "Resources/bin/var-dump-server"
  7378. ],
  7379. "type": "library",
  7380. "autoload": {
  7381. "files": [
  7382. "Resources/functions/dump.php"
  7383. ],
  7384. "psr-4": {
  7385. "Symfony\\Component\\VarDumper\\": ""
  7386. },
  7387. "exclude-from-classmap": [
  7388. "/Tests/"
  7389. ]
  7390. },
  7391. "notification-url": "https://packagist.org/downloads/",
  7392. "license": [
  7393. "MIT"
  7394. ],
  7395. "authors": [
  7396. {
  7397. "name": "Nicolas Grekas",
  7398. "email": "p@tchwork.com"
  7399. },
  7400. {
  7401. "name": "Symfony Community",
  7402. "homepage": "https://symfony.com/contributors"
  7403. }
  7404. ],
  7405. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7406. "homepage": "https://symfony.com",
  7407. "keywords": [
  7408. "debug",
  7409. "dump"
  7410. ],
  7411. "support": {
  7412. "source": "https://github.com/symfony/var-dumper/tree/v5.2.3"
  7413. },
  7414. "funding": [
  7415. {
  7416. "url": "https://symfony.com/sponsor",
  7417. "type": "custom"
  7418. },
  7419. {
  7420. "url": "https://github.com/fabpot",
  7421. "type": "github"
  7422. },
  7423. {
  7424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7425. "type": "tidelift"
  7426. }
  7427. ],
  7428. "time": "2021-01-27T10:15:41+00:00"
  7429. },
  7430. {
  7431. "name": "te7a-houdini/laravel-trix",
  7432. "version": "2.0.4",
  7433. "source": {
  7434. "type": "git",
  7435. "url": "https://github.com/amaelftah/laravel-trix.git",
  7436. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7437. },
  7438. "dist": {
  7439. "type": "zip",
  7440. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7441. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7442. "shasum": "",
  7443. "mirrors": [
  7444. {
  7445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7446. "preferred": true
  7447. }
  7448. ]
  7449. },
  7450. "require": {
  7451. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7452. "php": "^7.1"
  7453. },
  7454. "require-dev": {
  7455. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7456. },
  7457. "type": "library",
  7458. "extra": {
  7459. "laravel": {
  7460. "providers": [
  7461. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7462. ]
  7463. }
  7464. },
  7465. "autoload": {
  7466. "psr-4": {
  7467. "Te7aHoudini\\LaravelTrix\\": "src"
  7468. }
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "MIT"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "Ahmed Abd El Ftah",
  7477. "email": "ahmedabdelftah95165@gmail.com",
  7478. "role": "Developer"
  7479. }
  7480. ],
  7481. "description": "trix editor for laravel inspired by ActionText for rails",
  7482. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7483. "keywords": [
  7484. "laravel-trix",
  7485. "te7a-houdini"
  7486. ],
  7487. "support": {
  7488. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7489. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7490. },
  7491. "time": "2020-11-12T10:48:06+00:00"
  7492. },
  7493. {
  7494. "name": "tightenco/collect",
  7495. "version": "v5.6.33",
  7496. "source": {
  7497. "type": "git",
  7498. "url": "https://github.com/tighten/collect.git",
  7499. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7500. },
  7501. "dist": {
  7502. "type": "zip",
  7503. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7504. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7505. "shasum": "",
  7506. "mirrors": [
  7507. {
  7508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7509. "preferred": true
  7510. }
  7511. ]
  7512. },
  7513. "require": {
  7514. "php": ">=7.1.3",
  7515. "symfony/var-dumper": ">=3.1.10"
  7516. },
  7517. "require-dev": {
  7518. "mockery/mockery": "~1.0",
  7519. "nesbot/carbon": "~1.20",
  7520. "phpunit/phpunit": "~7.0"
  7521. },
  7522. "type": "library",
  7523. "autoload": {
  7524. "files": [
  7525. "src/Collect/Support/helpers.php",
  7526. "src/Collect/Support/alias.php"
  7527. ],
  7528. "psr-4": {
  7529. "Tightenco\\Collect\\": "src/Collect"
  7530. }
  7531. },
  7532. "notification-url": "https://packagist.org/downloads/",
  7533. "license": [
  7534. "MIT"
  7535. ],
  7536. "authors": [
  7537. {
  7538. "name": "Taylor Otwell",
  7539. "email": "taylorotwell@gmail.com"
  7540. }
  7541. ],
  7542. "description": "Collect - Illuminate Collections as a separate package.",
  7543. "keywords": [
  7544. "collection",
  7545. "laravel"
  7546. ],
  7547. "support": {
  7548. "issues": "https://github.com/tighten/collect/issues",
  7549. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7550. },
  7551. "time": "2018-08-09T16:56:26+00:00"
  7552. },
  7553. {
  7554. "name": "tijsverkoyen/css-to-inline-styles",
  7555. "version": "2.2.3",
  7556. "source": {
  7557. "type": "git",
  7558. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7559. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7560. },
  7561. "dist": {
  7562. "type": "zip",
  7563. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7564. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7565. "shasum": "",
  7566. "mirrors": [
  7567. {
  7568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7569. "preferred": true
  7570. }
  7571. ]
  7572. },
  7573. "require": {
  7574. "ext-dom": "*",
  7575. "ext-libxml": "*",
  7576. "php": "^5.5 || ^7.0 || ^8.0",
  7577. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7578. },
  7579. "require-dev": {
  7580. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7581. },
  7582. "type": "library",
  7583. "extra": {
  7584. "branch-alias": {
  7585. "dev-master": "2.2.x-dev"
  7586. }
  7587. },
  7588. "autoload": {
  7589. "psr-4": {
  7590. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7591. }
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "BSD-3-Clause"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Tijs Verkoyen",
  7600. "email": "css_to_inline_styles@verkoyen.eu",
  7601. "role": "Developer"
  7602. }
  7603. ],
  7604. "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.",
  7605. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7606. "support": {
  7607. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7608. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7609. },
  7610. "time": "2020-07-13T06:12:54+00:00"
  7611. },
  7612. {
  7613. "name": "tymon/jwt-auth",
  7614. "version": "1.0.2",
  7615. "source": {
  7616. "type": "git",
  7617. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7618. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7619. },
  7620. "dist": {
  7621. "type": "zip",
  7622. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7623. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7624. "shasum": "",
  7625. "mirrors": [
  7626. {
  7627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7628. "preferred": true
  7629. }
  7630. ]
  7631. },
  7632. "require": {
  7633. "illuminate/auth": "^5.2|^6|^7|^8",
  7634. "illuminate/contracts": "^5.2|^6|^7|^8",
  7635. "illuminate/http": "^5.2|^6|^7|^8",
  7636. "illuminate/support": "^5.2|^6|^7|^8",
  7637. "lcobucci/jwt": "<3.4",
  7638. "namshi/jose": "^7.0",
  7639. "nesbot/carbon": "^1.0|^2.0",
  7640. "php": "^5.5.9|^7.0"
  7641. },
  7642. "require-dev": {
  7643. "illuminate/console": "^5.2|^6|^7|^8",
  7644. "illuminate/database": "^5.2|^6|^7|^8",
  7645. "illuminate/routing": "^5.2|^6|^7|^8",
  7646. "mockery/mockery": ">=0.9.9",
  7647. "phpunit/phpunit": "~4.8|~6.0"
  7648. },
  7649. "type": "library",
  7650. "extra": {
  7651. "branch-alias": {
  7652. "dev-develop": "1.0-dev"
  7653. },
  7654. "laravel": {
  7655. "aliases": {
  7656. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7657. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7658. },
  7659. "providers": [
  7660. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7661. ]
  7662. }
  7663. },
  7664. "autoload": {
  7665. "psr-4": {
  7666. "Tymon\\JWTAuth\\": "src/"
  7667. }
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Sean Tymon",
  7676. "email": "tymon148@gmail.com",
  7677. "homepage": "https://tymon.xyz",
  7678. "role": "Developer"
  7679. }
  7680. ],
  7681. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7682. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7683. "keywords": [
  7684. "Authentication",
  7685. "JSON Web Token",
  7686. "auth",
  7687. "jwt",
  7688. "laravel"
  7689. ],
  7690. "support": {
  7691. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7692. "source": "https://github.com/tymondesigns/jwt-auth"
  7693. },
  7694. "funding": [
  7695. {
  7696. "url": "https://www.patreon.com/seantymon",
  7697. "type": "patreon"
  7698. }
  7699. ],
  7700. "time": "2020-11-27T12:32:42+00:00"
  7701. },
  7702. {
  7703. "name": "vlucas/phpdotenv",
  7704. "version": "v4.2.0",
  7705. "source": {
  7706. "type": "git",
  7707. "url": "https://github.com/vlucas/phpdotenv.git",
  7708. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7709. },
  7710. "dist": {
  7711. "type": "zip",
  7712. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7713. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7714. "shasum": "",
  7715. "mirrors": [
  7716. {
  7717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7718. "preferred": true
  7719. }
  7720. ]
  7721. },
  7722. "require": {
  7723. "php": "^5.5.9 || ^7.0 || ^8.0",
  7724. "phpoption/phpoption": "^1.7.3",
  7725. "symfony/polyfill-ctype": "^1.17"
  7726. },
  7727. "require-dev": {
  7728. "bamarni/composer-bin-plugin": "^1.4.1",
  7729. "ext-filter": "*",
  7730. "ext-pcre": "*",
  7731. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7732. },
  7733. "suggest": {
  7734. "ext-filter": "Required to use the boolean validator.",
  7735. "ext-pcre": "Required to use most of the library."
  7736. },
  7737. "type": "library",
  7738. "extra": {
  7739. "branch-alias": {
  7740. "dev-master": "4.1-dev"
  7741. }
  7742. },
  7743. "autoload": {
  7744. "psr-4": {
  7745. "Dotenv\\": "src/"
  7746. }
  7747. },
  7748. "notification-url": "https://packagist.org/downloads/",
  7749. "license": [
  7750. "BSD-3-Clause"
  7751. ],
  7752. "authors": [
  7753. {
  7754. "name": "Graham Campbell",
  7755. "email": "graham@alt-three.com",
  7756. "homepage": "https://gjcampbell.co.uk/"
  7757. },
  7758. {
  7759. "name": "Vance Lucas",
  7760. "email": "vance@vancelucas.com",
  7761. "homepage": "https://vancelucas.com/"
  7762. }
  7763. ],
  7764. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7765. "keywords": [
  7766. "dotenv",
  7767. "env",
  7768. "environment"
  7769. ],
  7770. "support": {
  7771. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7772. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7773. },
  7774. "funding": [
  7775. {
  7776. "url": "https://github.com/GrahamCampbell",
  7777. "type": "github"
  7778. },
  7779. {
  7780. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7781. "type": "tidelift"
  7782. }
  7783. ],
  7784. "time": "2021-01-20T15:11:48+00:00"
  7785. },
  7786. {
  7787. "name": "voku/portable-ascii",
  7788. "version": "1.5.6",
  7789. "source": {
  7790. "type": "git",
  7791. "url": "https://github.com/voku/portable-ascii.git",
  7792. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7793. },
  7794. "dist": {
  7795. "type": "zip",
  7796. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7797. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7798. "shasum": "",
  7799. "mirrors": [
  7800. {
  7801. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7802. "preferred": true
  7803. }
  7804. ]
  7805. },
  7806. "require": {
  7807. "php": ">=7.0.0"
  7808. },
  7809. "require-dev": {
  7810. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7811. },
  7812. "suggest": {
  7813. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7814. },
  7815. "type": "library",
  7816. "autoload": {
  7817. "psr-4": {
  7818. "voku\\": "src/voku/"
  7819. }
  7820. },
  7821. "notification-url": "https://packagist.org/downloads/",
  7822. "license": [
  7823. "MIT"
  7824. ],
  7825. "authors": [
  7826. {
  7827. "name": "Lars Moelleken",
  7828. "homepage": "http://www.moelleken.org/"
  7829. }
  7830. ],
  7831. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7832. "homepage": "https://github.com/voku/portable-ascii",
  7833. "keywords": [
  7834. "ascii",
  7835. "clean",
  7836. "php"
  7837. ],
  7838. "support": {
  7839. "issues": "https://github.com/voku/portable-ascii/issues",
  7840. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7841. },
  7842. "funding": [
  7843. {
  7844. "url": "https://www.paypal.me/moelleken",
  7845. "type": "custom"
  7846. },
  7847. {
  7848. "url": "https://github.com/voku",
  7849. "type": "github"
  7850. },
  7851. {
  7852. "url": "https://opencollective.com/portable-ascii",
  7853. "type": "open_collective"
  7854. },
  7855. {
  7856. "url": "https://www.patreon.com/voku",
  7857. "type": "patreon"
  7858. },
  7859. {
  7860. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7861. "type": "tidelift"
  7862. }
  7863. ],
  7864. "time": "2020-11-12T00:07:28+00:00"
  7865. },
  7866. {
  7867. "name": "yajra/laravel-oci8",
  7868. "version": "v7.0.0",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/yajra/laravel-oci8.git",
  7872. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7877. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7878. "shasum": "",
  7879. "mirrors": [
  7880. {
  7881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7882. "preferred": true
  7883. }
  7884. ]
  7885. },
  7886. "require": {
  7887. "ext-oci8": ">=2.0.0",
  7888. "ext-pdo": "*",
  7889. "illuminate/database": "^7",
  7890. "illuminate/support": "^7",
  7891. "php": "^7.2.5",
  7892. "yajra/laravel-pdo-via-oci8": "^2"
  7893. },
  7894. "require-dev": {
  7895. "mockery/mockery": "^1.3.1",
  7896. "phpunit/phpunit": "^8.4|^9.0",
  7897. "scrutinizer/ocular": "~1.1"
  7898. },
  7899. "type": "library",
  7900. "extra": {
  7901. "branch-alias": {
  7902. "dev-master": "7.x-dev"
  7903. },
  7904. "laravel": {
  7905. "providers": [
  7906. "Yajra\\Oci8\\Oci8ServiceProvider"
  7907. ]
  7908. }
  7909. },
  7910. "autoload": {
  7911. "files": [
  7912. "src/helper.php"
  7913. ],
  7914. "psr-4": {
  7915. "Yajra\\": "src/"
  7916. }
  7917. },
  7918. "notification-url": "https://packagist.org/downloads/",
  7919. "license": [
  7920. "MIT"
  7921. ],
  7922. "authors": [
  7923. {
  7924. "name": "Arjay Angeles",
  7925. "email": "aqangeles@gmail.com"
  7926. }
  7927. ],
  7928. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7929. "keywords": [
  7930. "laravel",
  7931. "oci8",
  7932. "oracle",
  7933. "pdo_oci"
  7934. ],
  7935. "support": {
  7936. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7937. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7938. },
  7939. "funding": [
  7940. {
  7941. "url": "https://www.paypal.me/yajra",
  7942. "type": "custom"
  7943. },
  7944. {
  7945. "url": "https://www.patreon.com/yajra",
  7946. "type": "patreon"
  7947. }
  7948. ],
  7949. "time": "2020-03-04T02:15:19+00:00"
  7950. },
  7951. {
  7952. "name": "yajra/laravel-pdo-via-oci8",
  7953. "version": "v2.2.0",
  7954. "source": {
  7955. "type": "git",
  7956. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7957. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7958. },
  7959. "dist": {
  7960. "type": "zip",
  7961. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7962. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7963. "shasum": "",
  7964. "mirrors": [
  7965. {
  7966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7967. "preferred": true
  7968. }
  7969. ]
  7970. },
  7971. "require-dev": {
  7972. "phpunit/phpunit": "^6.4"
  7973. },
  7974. "type": "library",
  7975. "extra": {
  7976. "branch-alias": {
  7977. "dev-master": "2.0-dev"
  7978. }
  7979. },
  7980. "autoload": {
  7981. "psr-4": {
  7982. "Yajra\\": "src/"
  7983. }
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Arjay Angeles",
  7992. "email": "aqangeles@gmail.com"
  7993. }
  7994. ],
  7995. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7996. "support": {
  7997. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7998. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7999. },
  8000. "time": "2020-12-11T12:29:18+00:00"
  8001. }
  8002. ],
  8003. "packages-dev": [
  8004. {
  8005. "name": "barryvdh/laravel-debugbar",
  8006. "version": "v3.5.2",
  8007. "source": {
  8008. "type": "git",
  8009. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  8010. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b"
  8011. },
  8012. "dist": {
  8013. "type": "zip",
  8014. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8015. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  8016. "shasum": "",
  8017. "mirrors": [
  8018. {
  8019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8020. "preferred": true
  8021. }
  8022. ]
  8023. },
  8024. "require": {
  8025. "illuminate/routing": "^6|^7|^8",
  8026. "illuminate/session": "^6|^7|^8",
  8027. "illuminate/support": "^6|^7|^8",
  8028. "maximebf/debugbar": "^1.16.3",
  8029. "php": ">=7.2",
  8030. "symfony/debug": "^4.3|^5",
  8031. "symfony/finder": "^4.3|^5"
  8032. },
  8033. "require-dev": {
  8034. "mockery/mockery": "^1.3.3",
  8035. "orchestra/testbench-dusk": "^4|^5|^6",
  8036. "phpunit/phpunit": "^8.5|^9.0",
  8037. "squizlabs/php_codesniffer": "^3.5"
  8038. },
  8039. "type": "library",
  8040. "extra": {
  8041. "branch-alias": {
  8042. "dev-master": "3.5-dev"
  8043. },
  8044. "laravel": {
  8045. "providers": [
  8046. "Barryvdh\\Debugbar\\ServiceProvider"
  8047. ],
  8048. "aliases": {
  8049. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8050. }
  8051. }
  8052. },
  8053. "autoload": {
  8054. "psr-4": {
  8055. "Barryvdh\\Debugbar\\": "src/"
  8056. },
  8057. "files": [
  8058. "src/helpers.php"
  8059. ]
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Barry vd. Heuvel",
  8068. "email": "barryvdh@gmail.com"
  8069. }
  8070. ],
  8071. "description": "PHP Debugbar integration for Laravel",
  8072. "keywords": [
  8073. "debug",
  8074. "debugbar",
  8075. "laravel",
  8076. "profiler",
  8077. "webprofiler"
  8078. ],
  8079. "support": {
  8080. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8081. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.2"
  8082. },
  8083. "funding": [
  8084. {
  8085. "url": "https://github.com/barryvdh",
  8086. "type": "github"
  8087. }
  8088. ],
  8089. "time": "2021-01-06T14:21:44+00:00"
  8090. },
  8091. {
  8092. "name": "beyondcode/laravel-dump-server",
  8093. "version": "1.7.0",
  8094. "source": {
  8095. "type": "git",
  8096. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  8097. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  8098. },
  8099. "dist": {
  8100. "type": "zip",
  8101. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  8102. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  8103. "shasum": "",
  8104. "mirrors": [
  8105. {
  8106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8107. "preferred": true
  8108. }
  8109. ]
  8110. },
  8111. "require": {
  8112. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8113. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8114. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8115. "php": ">=7.2.5",
  8116. "symfony/var-dumper": "^5.0"
  8117. },
  8118. "require-dev": {
  8119. "larapack/dd": "^1.0",
  8120. "phpunit/phpunit": "^7.0|^9.3"
  8121. },
  8122. "type": "library",
  8123. "extra": {
  8124. "laravel": {
  8125. "providers": [
  8126. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  8127. ]
  8128. }
  8129. },
  8130. "autoload": {
  8131. "psr-4": {
  8132. "BeyondCode\\DumpServer\\": "src"
  8133. },
  8134. "files": [
  8135. "helpers.php"
  8136. ]
  8137. },
  8138. "notification-url": "https://packagist.org/downloads/",
  8139. "license": [
  8140. "MIT"
  8141. ],
  8142. "authors": [
  8143. {
  8144. "name": "Marcel Pociot",
  8145. "email": "marcel@beyondco.de",
  8146. "homepage": "https://beyondco.de",
  8147. "role": "Developer"
  8148. }
  8149. ],
  8150. "description": "Symfony Var-Dump Server for Laravel",
  8151. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  8152. "keywords": [
  8153. "beyondcode",
  8154. "laravel-dump-server"
  8155. ],
  8156. "support": {
  8157. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  8158. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  8159. },
  8160. "time": "2020-12-15T10:57:43+00:00"
  8161. },
  8162. {
  8163. "name": "doctrine/instantiator",
  8164. "version": "1.4.0",
  8165. "source": {
  8166. "type": "git",
  8167. "url": "https://github.com/doctrine/instantiator.git",
  8168. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8169. },
  8170. "dist": {
  8171. "type": "zip",
  8172. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8173. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8174. "shasum": "",
  8175. "mirrors": [
  8176. {
  8177. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8178. "preferred": true
  8179. }
  8180. ]
  8181. },
  8182. "require": {
  8183. "php": "^7.1 || ^8.0"
  8184. },
  8185. "require-dev": {
  8186. "doctrine/coding-standard": "^8.0",
  8187. "ext-pdo": "*",
  8188. "ext-phar": "*",
  8189. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8190. "phpstan/phpstan": "^0.12",
  8191. "phpstan/phpstan-phpunit": "^0.12",
  8192. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8193. },
  8194. "type": "library",
  8195. "autoload": {
  8196. "psr-4": {
  8197. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8198. }
  8199. },
  8200. "notification-url": "https://packagist.org/downloads/",
  8201. "license": [
  8202. "MIT"
  8203. ],
  8204. "authors": [
  8205. {
  8206. "name": "Marco Pivetta",
  8207. "email": "ocramius@gmail.com",
  8208. "homepage": "https://ocramius.github.io/"
  8209. }
  8210. ],
  8211. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8212. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8213. "keywords": [
  8214. "constructor",
  8215. "instantiate"
  8216. ],
  8217. "support": {
  8218. "issues": "https://github.com/doctrine/instantiator/issues",
  8219. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8220. },
  8221. "funding": [
  8222. {
  8223. "url": "https://www.doctrine-project.org/sponsorship.html",
  8224. "type": "custom"
  8225. },
  8226. {
  8227. "url": "https://www.patreon.com/phpdoctrine",
  8228. "type": "patreon"
  8229. },
  8230. {
  8231. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8232. "type": "tidelift"
  8233. }
  8234. ],
  8235. "time": "2020-11-10T18:47:58+00:00"
  8236. },
  8237. {
  8238. "name": "fzaninotto/faker",
  8239. "version": "v1.9.2",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/fzaninotto/Faker.git",
  8243. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8248. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8249. "shasum": "",
  8250. "mirrors": [
  8251. {
  8252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8253. "preferred": true
  8254. }
  8255. ]
  8256. },
  8257. "require": {
  8258. "php": "^5.3.3 || ^7.0"
  8259. },
  8260. "require-dev": {
  8261. "ext-intl": "*",
  8262. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8263. "squizlabs/php_codesniffer": "^2.9.2"
  8264. },
  8265. "type": "library",
  8266. "extra": {
  8267. "branch-alias": {
  8268. "dev-master": "1.9-dev"
  8269. }
  8270. },
  8271. "autoload": {
  8272. "psr-4": {
  8273. "Faker\\": "src/Faker/"
  8274. }
  8275. },
  8276. "notification-url": "https://packagist.org/downloads/",
  8277. "license": [
  8278. "MIT"
  8279. ],
  8280. "authors": [
  8281. {
  8282. "name": "François Zaninotto"
  8283. }
  8284. ],
  8285. "description": "Faker is a PHP library that generates fake data for you.",
  8286. "keywords": [
  8287. "data",
  8288. "faker",
  8289. "fixtures"
  8290. ],
  8291. "support": {
  8292. "issues": "https://github.com/fzaninotto/Faker/issues",
  8293. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8294. },
  8295. "abandoned": true,
  8296. "time": "2020-12-11T09:56:16+00:00"
  8297. },
  8298. {
  8299. "name": "hamcrest/hamcrest-php",
  8300. "version": "v2.0.1",
  8301. "source": {
  8302. "type": "git",
  8303. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8304. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8305. },
  8306. "dist": {
  8307. "type": "zip",
  8308. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8309. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8310. "shasum": "",
  8311. "mirrors": [
  8312. {
  8313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8314. "preferred": true
  8315. }
  8316. ]
  8317. },
  8318. "require": {
  8319. "php": "^5.3|^7.0|^8.0"
  8320. },
  8321. "replace": {
  8322. "cordoval/hamcrest-php": "*",
  8323. "davedevelopment/hamcrest-php": "*",
  8324. "kodova/hamcrest-php": "*"
  8325. },
  8326. "require-dev": {
  8327. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8328. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8329. },
  8330. "type": "library",
  8331. "extra": {
  8332. "branch-alias": {
  8333. "dev-master": "2.1-dev"
  8334. }
  8335. },
  8336. "autoload": {
  8337. "classmap": [
  8338. "hamcrest"
  8339. ]
  8340. },
  8341. "notification-url": "https://packagist.org/downloads/",
  8342. "license": [
  8343. "BSD-3-Clause"
  8344. ],
  8345. "description": "This is the PHP port of Hamcrest Matchers",
  8346. "keywords": [
  8347. "test"
  8348. ],
  8349. "support": {
  8350. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8351. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8352. },
  8353. "time": "2020-07-09T08:09:16+00:00"
  8354. },
  8355. {
  8356. "name": "maximebf/debugbar",
  8357. "version": "v1.16.5",
  8358. "source": {
  8359. "type": "git",
  8360. "url": "https://github.com/maximebf/php-debugbar.git",
  8361. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8362. },
  8363. "dist": {
  8364. "type": "zip",
  8365. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8366. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8367. "shasum": "",
  8368. "mirrors": [
  8369. {
  8370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8371. "preferred": true
  8372. }
  8373. ]
  8374. },
  8375. "require": {
  8376. "php": "^7.1|^8",
  8377. "psr/log": "^1.0",
  8378. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8379. },
  8380. "require-dev": {
  8381. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8382. },
  8383. "suggest": {
  8384. "kriswallsmith/assetic": "The best way to manage assets",
  8385. "monolog/monolog": "Log using Monolog",
  8386. "predis/predis": "Redis storage"
  8387. },
  8388. "type": "library",
  8389. "extra": {
  8390. "branch-alias": {
  8391. "dev-master": "1.16-dev"
  8392. }
  8393. },
  8394. "autoload": {
  8395. "psr-4": {
  8396. "DebugBar\\": "src/DebugBar/"
  8397. }
  8398. },
  8399. "notification-url": "https://packagist.org/downloads/",
  8400. "license": [
  8401. "MIT"
  8402. ],
  8403. "authors": [
  8404. {
  8405. "name": "Maxime Bouroumeau-Fuseau",
  8406. "email": "maxime.bouroumeau@gmail.com",
  8407. "homepage": "http://maximebf.com"
  8408. },
  8409. {
  8410. "name": "Barry vd. Heuvel",
  8411. "email": "barryvdh@gmail.com"
  8412. }
  8413. ],
  8414. "description": "Debug bar in the browser for php application",
  8415. "homepage": "https://github.com/maximebf/php-debugbar",
  8416. "keywords": [
  8417. "debug",
  8418. "debugbar"
  8419. ],
  8420. "support": {
  8421. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8422. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8423. },
  8424. "time": "2020-12-07T11:07:24+00:00"
  8425. },
  8426. {
  8427. "name": "mockery/mockery",
  8428. "version": "1.3.3",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/mockery/mockery.git",
  8432. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  8437. "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d",
  8438. "shasum": "",
  8439. "mirrors": [
  8440. {
  8441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8442. "preferred": true
  8443. }
  8444. ]
  8445. },
  8446. "require": {
  8447. "hamcrest/hamcrest-php": "^2.0.1",
  8448. "lib-pcre": ">=7.0",
  8449. "php": ">=5.6.0"
  8450. },
  8451. "require-dev": {
  8452. "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3"
  8453. },
  8454. "type": "library",
  8455. "extra": {
  8456. "branch-alias": {
  8457. "dev-master": "1.3.x-dev"
  8458. }
  8459. },
  8460. "autoload": {
  8461. "psr-0": {
  8462. "Mockery": "library/"
  8463. }
  8464. },
  8465. "notification-url": "https://packagist.org/downloads/",
  8466. "license": [
  8467. "BSD-3-Clause"
  8468. ],
  8469. "authors": [
  8470. {
  8471. "name": "Pádraic Brady",
  8472. "email": "padraic.brady@gmail.com",
  8473. "homepage": "http://blog.astrumfutura.com"
  8474. },
  8475. {
  8476. "name": "Dave Marshall",
  8477. "email": "dave.marshall@atstsolutions.co.uk",
  8478. "homepage": "http://davedevelopment.co.uk"
  8479. }
  8480. ],
  8481. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8482. "homepage": "https://github.com/mockery/mockery",
  8483. "keywords": [
  8484. "BDD",
  8485. "TDD",
  8486. "library",
  8487. "mock",
  8488. "mock objects",
  8489. "mockery",
  8490. "stub",
  8491. "test",
  8492. "test double",
  8493. "testing"
  8494. ],
  8495. "support": {
  8496. "issues": "https://github.com/mockery/mockery/issues",
  8497. "source": "https://github.com/mockery/mockery/tree/1.3.3"
  8498. },
  8499. "time": "2020-08-11T18:10:21+00:00"
  8500. },
  8501. {
  8502. "name": "myclabs/deep-copy",
  8503. "version": "1.10.2",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/myclabs/DeepCopy.git",
  8507. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8512. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8513. "shasum": "",
  8514. "mirrors": [
  8515. {
  8516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8517. "preferred": true
  8518. }
  8519. ]
  8520. },
  8521. "require": {
  8522. "php": "^7.1 || ^8.0"
  8523. },
  8524. "replace": {
  8525. "myclabs/deep-copy": "self.version"
  8526. },
  8527. "require-dev": {
  8528. "doctrine/collections": "^1.0",
  8529. "doctrine/common": "^2.6",
  8530. "phpunit/phpunit": "^7.1"
  8531. },
  8532. "type": "library",
  8533. "autoload": {
  8534. "psr-4": {
  8535. "DeepCopy\\": "src/DeepCopy/"
  8536. },
  8537. "files": [
  8538. "src/DeepCopy/deep_copy.php"
  8539. ]
  8540. },
  8541. "notification-url": "https://packagist.org/downloads/",
  8542. "license": [
  8543. "MIT"
  8544. ],
  8545. "description": "Create deep copies (clones) of your objects",
  8546. "keywords": [
  8547. "clone",
  8548. "copy",
  8549. "duplicate",
  8550. "object",
  8551. "object graph"
  8552. ],
  8553. "support": {
  8554. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8555. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8556. },
  8557. "funding": [
  8558. {
  8559. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8560. "type": "tidelift"
  8561. }
  8562. ],
  8563. "time": "2020-11-13T09:40:50+00:00"
  8564. },
  8565. {
  8566. "name": "nunomaduro/collision",
  8567. "version": "v4.3.0",
  8568. "source": {
  8569. "type": "git",
  8570. "url": "https://github.com/nunomaduro/collision.git",
  8571. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8572. },
  8573. "dist": {
  8574. "type": "zip",
  8575. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8576. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8577. "shasum": "",
  8578. "mirrors": [
  8579. {
  8580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8581. "preferred": true
  8582. }
  8583. ]
  8584. },
  8585. "require": {
  8586. "facade/ignition-contracts": "^1.0",
  8587. "filp/whoops": "^2.4",
  8588. "php": "^7.2.5 || ^8.0",
  8589. "symfony/console": "^5.0"
  8590. },
  8591. "require-dev": {
  8592. "facade/ignition": "^2.0",
  8593. "fideloper/proxy": "^4.2",
  8594. "friendsofphp/php-cs-fixer": "^2.16",
  8595. "fruitcake/laravel-cors": "^1.0",
  8596. "laravel/framework": "^7.0",
  8597. "laravel/tinker": "^2.0",
  8598. "nunomaduro/larastan": "^0.6",
  8599. "orchestra/testbench": "^5.0",
  8600. "phpstan/phpstan": "^0.12.3",
  8601. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8602. },
  8603. "type": "library",
  8604. "extra": {
  8605. "laravel": {
  8606. "providers": [
  8607. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8608. ]
  8609. }
  8610. },
  8611. "autoload": {
  8612. "psr-4": {
  8613. "NunoMaduro\\Collision\\": "src/"
  8614. }
  8615. },
  8616. "notification-url": "https://packagist.org/downloads/",
  8617. "license": [
  8618. "MIT"
  8619. ],
  8620. "authors": [
  8621. {
  8622. "name": "Nuno Maduro",
  8623. "email": "enunomaduro@gmail.com"
  8624. }
  8625. ],
  8626. "description": "Cli error handling for console/command-line PHP applications.",
  8627. "keywords": [
  8628. "artisan",
  8629. "cli",
  8630. "command-line",
  8631. "console",
  8632. "error",
  8633. "handling",
  8634. "laravel",
  8635. "laravel-zero",
  8636. "php",
  8637. "symfony"
  8638. ],
  8639. "support": {
  8640. "issues": "https://github.com/nunomaduro/collision/issues",
  8641. "source": "https://github.com/nunomaduro/collision"
  8642. },
  8643. "funding": [
  8644. {
  8645. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8646. "type": "custom"
  8647. },
  8648. {
  8649. "url": "https://github.com/nunomaduro",
  8650. "type": "github"
  8651. },
  8652. {
  8653. "url": "https://www.patreon.com/nunomaduro",
  8654. "type": "patreon"
  8655. }
  8656. ],
  8657. "time": "2020-10-29T15:12:23+00:00"
  8658. },
  8659. {
  8660. "name": "phar-io/manifest",
  8661. "version": "2.0.1",
  8662. "source": {
  8663. "type": "git",
  8664. "url": "https://github.com/phar-io/manifest.git",
  8665. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8666. },
  8667. "dist": {
  8668. "type": "zip",
  8669. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8670. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8671. "shasum": "",
  8672. "mirrors": [
  8673. {
  8674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8675. "preferred": true
  8676. }
  8677. ]
  8678. },
  8679. "require": {
  8680. "ext-dom": "*",
  8681. "ext-phar": "*",
  8682. "ext-xmlwriter": "*",
  8683. "phar-io/version": "^3.0.1",
  8684. "php": "^7.2 || ^8.0"
  8685. },
  8686. "type": "library",
  8687. "extra": {
  8688. "branch-alias": {
  8689. "dev-master": "2.0.x-dev"
  8690. }
  8691. },
  8692. "autoload": {
  8693. "classmap": [
  8694. "src/"
  8695. ]
  8696. },
  8697. "notification-url": "https://packagist.org/downloads/",
  8698. "license": [
  8699. "BSD-3-Clause"
  8700. ],
  8701. "authors": [
  8702. {
  8703. "name": "Arne Blankerts",
  8704. "email": "arne@blankerts.de",
  8705. "role": "Developer"
  8706. },
  8707. {
  8708. "name": "Sebastian Heuer",
  8709. "email": "sebastian@phpeople.de",
  8710. "role": "Developer"
  8711. },
  8712. {
  8713. "name": "Sebastian Bergmann",
  8714. "email": "sebastian@phpunit.de",
  8715. "role": "Developer"
  8716. }
  8717. ],
  8718. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8719. "support": {
  8720. "issues": "https://github.com/phar-io/manifest/issues",
  8721. "source": "https://github.com/phar-io/manifest/tree/master"
  8722. },
  8723. "time": "2020-06-27T14:33:11+00:00"
  8724. },
  8725. {
  8726. "name": "phar-io/version",
  8727. "version": "3.1.0",
  8728. "source": {
  8729. "type": "git",
  8730. "url": "https://github.com/phar-io/version.git",
  8731. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8732. },
  8733. "dist": {
  8734. "type": "zip",
  8735. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8736. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8737. "shasum": "",
  8738. "mirrors": [
  8739. {
  8740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8741. "preferred": true
  8742. }
  8743. ]
  8744. },
  8745. "require": {
  8746. "php": "^7.2 || ^8.0"
  8747. },
  8748. "type": "library",
  8749. "autoload": {
  8750. "classmap": [
  8751. "src/"
  8752. ]
  8753. },
  8754. "notification-url": "https://packagist.org/downloads/",
  8755. "license": [
  8756. "BSD-3-Clause"
  8757. ],
  8758. "authors": [
  8759. {
  8760. "name": "Arne Blankerts",
  8761. "email": "arne@blankerts.de",
  8762. "role": "Developer"
  8763. },
  8764. {
  8765. "name": "Sebastian Heuer",
  8766. "email": "sebastian@phpeople.de",
  8767. "role": "Developer"
  8768. },
  8769. {
  8770. "name": "Sebastian Bergmann",
  8771. "email": "sebastian@phpunit.de",
  8772. "role": "Developer"
  8773. }
  8774. ],
  8775. "description": "Library for handling version information and constraints",
  8776. "support": {
  8777. "issues": "https://github.com/phar-io/version/issues",
  8778. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8779. },
  8780. "time": "2021-02-23T14:00:09+00:00"
  8781. },
  8782. {
  8783. "name": "phpdocumentor/reflection-common",
  8784. "version": "2.2.0",
  8785. "source": {
  8786. "type": "git",
  8787. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8788. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8789. },
  8790. "dist": {
  8791. "type": "zip",
  8792. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8793. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8794. "shasum": "",
  8795. "mirrors": [
  8796. {
  8797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8798. "preferred": true
  8799. }
  8800. ]
  8801. },
  8802. "require": {
  8803. "php": "^7.2 || ^8.0"
  8804. },
  8805. "type": "library",
  8806. "extra": {
  8807. "branch-alias": {
  8808. "dev-2.x": "2.x-dev"
  8809. }
  8810. },
  8811. "autoload": {
  8812. "psr-4": {
  8813. "phpDocumentor\\Reflection\\": "src/"
  8814. }
  8815. },
  8816. "notification-url": "https://packagist.org/downloads/",
  8817. "license": [
  8818. "MIT"
  8819. ],
  8820. "authors": [
  8821. {
  8822. "name": "Jaap van Otterdijk",
  8823. "email": "opensource@ijaap.nl"
  8824. }
  8825. ],
  8826. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8827. "homepage": "http://www.phpdoc.org",
  8828. "keywords": [
  8829. "FQSEN",
  8830. "phpDocumentor",
  8831. "phpdoc",
  8832. "reflection",
  8833. "static analysis"
  8834. ],
  8835. "support": {
  8836. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8837. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8838. },
  8839. "time": "2020-06-27T09:03:43+00:00"
  8840. },
  8841. {
  8842. "name": "phpdocumentor/reflection-docblock",
  8843. "version": "5.2.2",
  8844. "source": {
  8845. "type": "git",
  8846. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8847. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8848. },
  8849. "dist": {
  8850. "type": "zip",
  8851. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8852. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8853. "shasum": "",
  8854. "mirrors": [
  8855. {
  8856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8857. "preferred": true
  8858. }
  8859. ]
  8860. },
  8861. "require": {
  8862. "ext-filter": "*",
  8863. "php": "^7.2 || ^8.0",
  8864. "phpdocumentor/reflection-common": "^2.2",
  8865. "phpdocumentor/type-resolver": "^1.3",
  8866. "webmozart/assert": "^1.9.1"
  8867. },
  8868. "require-dev": {
  8869. "mockery/mockery": "~1.3.2"
  8870. },
  8871. "type": "library",
  8872. "extra": {
  8873. "branch-alias": {
  8874. "dev-master": "5.x-dev"
  8875. }
  8876. },
  8877. "autoload": {
  8878. "psr-4": {
  8879. "phpDocumentor\\Reflection\\": "src"
  8880. }
  8881. },
  8882. "notification-url": "https://packagist.org/downloads/",
  8883. "license": [
  8884. "MIT"
  8885. ],
  8886. "authors": [
  8887. {
  8888. "name": "Mike van Riel",
  8889. "email": "me@mikevanriel.com"
  8890. },
  8891. {
  8892. "name": "Jaap van Otterdijk",
  8893. "email": "account@ijaap.nl"
  8894. }
  8895. ],
  8896. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8897. "support": {
  8898. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8899. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8900. },
  8901. "time": "2020-09-03T19:13:55+00:00"
  8902. },
  8903. {
  8904. "name": "phpdocumentor/type-resolver",
  8905. "version": "1.4.0",
  8906. "source": {
  8907. "type": "git",
  8908. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8909. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8910. },
  8911. "dist": {
  8912. "type": "zip",
  8913. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8914. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8915. "shasum": "",
  8916. "mirrors": [
  8917. {
  8918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8919. "preferred": true
  8920. }
  8921. ]
  8922. },
  8923. "require": {
  8924. "php": "^7.2 || ^8.0",
  8925. "phpdocumentor/reflection-common": "^2.0"
  8926. },
  8927. "require-dev": {
  8928. "ext-tokenizer": "*"
  8929. },
  8930. "type": "library",
  8931. "extra": {
  8932. "branch-alias": {
  8933. "dev-1.x": "1.x-dev"
  8934. }
  8935. },
  8936. "autoload": {
  8937. "psr-4": {
  8938. "phpDocumentor\\Reflection\\": "src"
  8939. }
  8940. },
  8941. "notification-url": "https://packagist.org/downloads/",
  8942. "license": [
  8943. "MIT"
  8944. ],
  8945. "authors": [
  8946. {
  8947. "name": "Mike van Riel",
  8948. "email": "me@mikevanriel.com"
  8949. }
  8950. ],
  8951. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8952. "support": {
  8953. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8954. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8955. },
  8956. "time": "2020-09-17T18:55:26+00:00"
  8957. },
  8958. {
  8959. "name": "phpspec/prophecy",
  8960. "version": "1.12.2",
  8961. "source": {
  8962. "type": "git",
  8963. "url": "https://github.com/phpspec/prophecy.git",
  8964. "reference": "245710e971a030f42e08f4912863805570f23d39"
  8965. },
  8966. "dist": {
  8967. "type": "zip",
  8968. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  8969. "reference": "245710e971a030f42e08f4912863805570f23d39",
  8970. "shasum": "",
  8971. "mirrors": [
  8972. {
  8973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8974. "preferred": true
  8975. }
  8976. ]
  8977. },
  8978. "require": {
  8979. "doctrine/instantiator": "^1.2",
  8980. "php": "^7.2 || ~8.0, <8.1",
  8981. "phpdocumentor/reflection-docblock": "^5.2",
  8982. "sebastian/comparator": "^3.0 || ^4.0",
  8983. "sebastian/recursion-context": "^3.0 || ^4.0"
  8984. },
  8985. "require-dev": {
  8986. "phpspec/phpspec": "^6.0",
  8987. "phpunit/phpunit": "^8.0 || ^9.0"
  8988. },
  8989. "type": "library",
  8990. "extra": {
  8991. "branch-alias": {
  8992. "dev-master": "1.11.x-dev"
  8993. }
  8994. },
  8995. "autoload": {
  8996. "psr-4": {
  8997. "Prophecy\\": "src/Prophecy"
  8998. }
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "MIT"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Konstantin Kudryashov",
  9007. "email": "ever.zet@gmail.com",
  9008. "homepage": "http://everzet.com"
  9009. },
  9010. {
  9011. "name": "Marcello Duarte",
  9012. "email": "marcello.duarte@gmail.com"
  9013. }
  9014. ],
  9015. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9016. "homepage": "https://github.com/phpspec/prophecy",
  9017. "keywords": [
  9018. "Double",
  9019. "Dummy",
  9020. "fake",
  9021. "mock",
  9022. "spy",
  9023. "stub"
  9024. ],
  9025. "support": {
  9026. "issues": "https://github.com/phpspec/prophecy/issues",
  9027. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  9028. },
  9029. "time": "2020-12-19T10:15:11+00:00"
  9030. },
  9031. {
  9032. "name": "phpunit/php-code-coverage",
  9033. "version": "7.0.14",
  9034. "source": {
  9035. "type": "git",
  9036. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9037. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  9038. },
  9039. "dist": {
  9040. "type": "zip",
  9041. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  9042. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  9043. "shasum": "",
  9044. "mirrors": [
  9045. {
  9046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9047. "preferred": true
  9048. }
  9049. ]
  9050. },
  9051. "require": {
  9052. "ext-dom": "*",
  9053. "ext-xmlwriter": "*",
  9054. "php": ">=7.2",
  9055. "phpunit/php-file-iterator": "^2.0.2",
  9056. "phpunit/php-text-template": "^1.2.1",
  9057. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  9058. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9059. "sebastian/environment": "^4.2.2",
  9060. "sebastian/version": "^2.0.1",
  9061. "theseer/tokenizer": "^1.1.3"
  9062. },
  9063. "require-dev": {
  9064. "phpunit/phpunit": "^8.2.2"
  9065. },
  9066. "suggest": {
  9067. "ext-xdebug": "^2.7.2"
  9068. },
  9069. "type": "library",
  9070. "extra": {
  9071. "branch-alias": {
  9072. "dev-master": "7.0-dev"
  9073. }
  9074. },
  9075. "autoload": {
  9076. "classmap": [
  9077. "src/"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "BSD-3-Clause"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Sebastian Bergmann",
  9087. "email": "sebastian@phpunit.de",
  9088. "role": "lead"
  9089. }
  9090. ],
  9091. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9092. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9093. "keywords": [
  9094. "coverage",
  9095. "testing",
  9096. "xunit"
  9097. ],
  9098. "support": {
  9099. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9100. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  9101. },
  9102. "funding": [
  9103. {
  9104. "url": "https://github.com/sebastianbergmann",
  9105. "type": "github"
  9106. }
  9107. ],
  9108. "time": "2020-12-02T13:39:03+00:00"
  9109. },
  9110. {
  9111. "name": "phpunit/php-file-iterator",
  9112. "version": "2.0.3",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9116. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9121. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9122. "shasum": "",
  9123. "mirrors": [
  9124. {
  9125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9126. "preferred": true
  9127. }
  9128. ]
  9129. },
  9130. "require": {
  9131. "php": ">=7.1"
  9132. },
  9133. "require-dev": {
  9134. "phpunit/phpunit": "^8.5"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-master": "2.0.x-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "classmap": [
  9144. "src/"
  9145. ]
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "BSD-3-Clause"
  9150. ],
  9151. "authors": [
  9152. {
  9153. "name": "Sebastian Bergmann",
  9154. "email": "sebastian@phpunit.de",
  9155. "role": "lead"
  9156. }
  9157. ],
  9158. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9159. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9160. "keywords": [
  9161. "filesystem",
  9162. "iterator"
  9163. ],
  9164. "support": {
  9165. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9166. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  9167. },
  9168. "funding": [
  9169. {
  9170. "url": "https://github.com/sebastianbergmann",
  9171. "type": "github"
  9172. }
  9173. ],
  9174. "time": "2020-11-30T08:25:21+00:00"
  9175. },
  9176. {
  9177. "name": "phpunit/php-text-template",
  9178. "version": "1.2.1",
  9179. "source": {
  9180. "type": "git",
  9181. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9182. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9183. },
  9184. "dist": {
  9185. "type": "zip",
  9186. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9187. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9188. "shasum": "",
  9189. "mirrors": [
  9190. {
  9191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9192. "preferred": true
  9193. }
  9194. ]
  9195. },
  9196. "require": {
  9197. "php": ">=5.3.3"
  9198. },
  9199. "type": "library",
  9200. "autoload": {
  9201. "classmap": [
  9202. "src/"
  9203. ]
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "BSD-3-Clause"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Sebastian Bergmann",
  9212. "email": "sebastian@phpunit.de",
  9213. "role": "lead"
  9214. }
  9215. ],
  9216. "description": "Simple template engine.",
  9217. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9218. "keywords": [
  9219. "template"
  9220. ],
  9221. "support": {
  9222. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9223. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9224. },
  9225. "time": "2015-06-21T13:50:34+00:00"
  9226. },
  9227. {
  9228. "name": "phpunit/php-timer",
  9229. "version": "2.1.3",
  9230. "source": {
  9231. "type": "git",
  9232. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9233. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9234. },
  9235. "dist": {
  9236. "type": "zip",
  9237. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9238. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9239. "shasum": "",
  9240. "mirrors": [
  9241. {
  9242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9243. "preferred": true
  9244. }
  9245. ]
  9246. },
  9247. "require": {
  9248. "php": ">=7.1"
  9249. },
  9250. "require-dev": {
  9251. "phpunit/phpunit": "^8.5"
  9252. },
  9253. "type": "library",
  9254. "extra": {
  9255. "branch-alias": {
  9256. "dev-master": "2.1-dev"
  9257. }
  9258. },
  9259. "autoload": {
  9260. "classmap": [
  9261. "src/"
  9262. ]
  9263. },
  9264. "notification-url": "https://packagist.org/downloads/",
  9265. "license": [
  9266. "BSD-3-Clause"
  9267. ],
  9268. "authors": [
  9269. {
  9270. "name": "Sebastian Bergmann",
  9271. "email": "sebastian@phpunit.de",
  9272. "role": "lead"
  9273. }
  9274. ],
  9275. "description": "Utility class for timing",
  9276. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9277. "keywords": [
  9278. "timer"
  9279. ],
  9280. "support": {
  9281. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9282. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9283. },
  9284. "funding": [
  9285. {
  9286. "url": "https://github.com/sebastianbergmann",
  9287. "type": "github"
  9288. }
  9289. ],
  9290. "time": "2020-11-30T08:20:02+00:00"
  9291. },
  9292. {
  9293. "name": "phpunit/php-token-stream",
  9294. "version": "3.1.2",
  9295. "source": {
  9296. "type": "git",
  9297. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9298. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2"
  9299. },
  9300. "dist": {
  9301. "type": "zip",
  9302. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/472b687829041c24b25f475e14c2f38a09edf1c2",
  9303. "reference": "472b687829041c24b25f475e14c2f38a09edf1c2",
  9304. "shasum": "",
  9305. "mirrors": [
  9306. {
  9307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9308. "preferred": true
  9309. }
  9310. ]
  9311. },
  9312. "require": {
  9313. "ext-tokenizer": "*",
  9314. "php": ">=7.1"
  9315. },
  9316. "require-dev": {
  9317. "phpunit/phpunit": "^7.0"
  9318. },
  9319. "type": "library",
  9320. "extra": {
  9321. "branch-alias": {
  9322. "dev-master": "3.1-dev"
  9323. }
  9324. },
  9325. "autoload": {
  9326. "classmap": [
  9327. "src/"
  9328. ]
  9329. },
  9330. "notification-url": "https://packagist.org/downloads/",
  9331. "license": [
  9332. "BSD-3-Clause"
  9333. ],
  9334. "authors": [
  9335. {
  9336. "name": "Sebastian Bergmann",
  9337. "email": "sebastian@phpunit.de"
  9338. }
  9339. ],
  9340. "description": "Wrapper around PHP's tokenizer extension.",
  9341. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9342. "keywords": [
  9343. "tokenizer"
  9344. ],
  9345. "support": {
  9346. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9347. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/3.1.2"
  9348. },
  9349. "funding": [
  9350. {
  9351. "url": "https://github.com/sebastianbergmann",
  9352. "type": "github"
  9353. }
  9354. ],
  9355. "abandoned": true,
  9356. "time": "2020-11-30T08:38:46+00:00"
  9357. },
  9358. {
  9359. "name": "phpunit/phpunit",
  9360. "version": "8.5.14",
  9361. "source": {
  9362. "type": "git",
  9363. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9364. "reference": "c25f79895d27b6ecd5abfa63de1606b786a461a3"
  9365. },
  9366. "dist": {
  9367. "type": "zip",
  9368. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c25f79895d27b6ecd5abfa63de1606b786a461a3",
  9369. "reference": "c25f79895d27b6ecd5abfa63de1606b786a461a3",
  9370. "shasum": "",
  9371. "mirrors": [
  9372. {
  9373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9374. "preferred": true
  9375. }
  9376. ]
  9377. },
  9378. "require": {
  9379. "doctrine/instantiator": "^1.3.1",
  9380. "ext-dom": "*",
  9381. "ext-json": "*",
  9382. "ext-libxml": "*",
  9383. "ext-mbstring": "*",
  9384. "ext-xml": "*",
  9385. "ext-xmlwriter": "*",
  9386. "myclabs/deep-copy": "^1.10.0",
  9387. "phar-io/manifest": "^2.0.1",
  9388. "phar-io/version": "^3.0.2",
  9389. "php": ">=7.2",
  9390. "phpspec/prophecy": "^1.10.3",
  9391. "phpunit/php-code-coverage": "^7.0.12",
  9392. "phpunit/php-file-iterator": "^2.0.2",
  9393. "phpunit/php-text-template": "^1.2.1",
  9394. "phpunit/php-timer": "^2.1.2",
  9395. "sebastian/comparator": "^3.0.2",
  9396. "sebastian/diff": "^3.0.2",
  9397. "sebastian/environment": "^4.2.3",
  9398. "sebastian/exporter": "^3.1.2",
  9399. "sebastian/global-state": "^3.0.0",
  9400. "sebastian/object-enumerator": "^3.0.3",
  9401. "sebastian/resource-operations": "^2.0.1",
  9402. "sebastian/type": "^1.1.3",
  9403. "sebastian/version": "^2.0.1"
  9404. },
  9405. "require-dev": {
  9406. "ext-pdo": "*"
  9407. },
  9408. "suggest": {
  9409. "ext-soap": "*",
  9410. "ext-xdebug": "*",
  9411. "phpunit/php-invoker": "^2.0.0"
  9412. },
  9413. "bin": [
  9414. "phpunit"
  9415. ],
  9416. "type": "library",
  9417. "extra": {
  9418. "branch-alias": {
  9419. "dev-master": "8.5-dev"
  9420. }
  9421. },
  9422. "autoload": {
  9423. "classmap": [
  9424. "src/"
  9425. ]
  9426. },
  9427. "notification-url": "https://packagist.org/downloads/",
  9428. "license": [
  9429. "BSD-3-Clause"
  9430. ],
  9431. "authors": [
  9432. {
  9433. "name": "Sebastian Bergmann",
  9434. "email": "sebastian@phpunit.de",
  9435. "role": "lead"
  9436. }
  9437. ],
  9438. "description": "The PHP Unit Testing framework.",
  9439. "homepage": "https://phpunit.de/",
  9440. "keywords": [
  9441. "phpunit",
  9442. "testing",
  9443. "xunit"
  9444. ],
  9445. "support": {
  9446. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9447. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.14"
  9448. },
  9449. "funding": [
  9450. {
  9451. "url": "https://phpunit.de/donate.html",
  9452. "type": "custom"
  9453. },
  9454. {
  9455. "url": "https://github.com/sebastianbergmann",
  9456. "type": "github"
  9457. }
  9458. ],
  9459. "time": "2021-01-17T07:37:30+00:00"
  9460. },
  9461. {
  9462. "name": "sebastian/code-unit-reverse-lookup",
  9463. "version": "1.0.2",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9467. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9472. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9473. "shasum": "",
  9474. "mirrors": [
  9475. {
  9476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9477. "preferred": true
  9478. }
  9479. ]
  9480. },
  9481. "require": {
  9482. "php": ">=5.6"
  9483. },
  9484. "require-dev": {
  9485. "phpunit/phpunit": "^8.5"
  9486. },
  9487. "type": "library",
  9488. "extra": {
  9489. "branch-alias": {
  9490. "dev-master": "1.0.x-dev"
  9491. }
  9492. },
  9493. "autoload": {
  9494. "classmap": [
  9495. "src/"
  9496. ]
  9497. },
  9498. "notification-url": "https://packagist.org/downloads/",
  9499. "license": [
  9500. "BSD-3-Clause"
  9501. ],
  9502. "authors": [
  9503. {
  9504. "name": "Sebastian Bergmann",
  9505. "email": "sebastian@phpunit.de"
  9506. }
  9507. ],
  9508. "description": "Looks up which function or method a line of code belongs to",
  9509. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9510. "support": {
  9511. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9512. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9513. },
  9514. "funding": [
  9515. {
  9516. "url": "https://github.com/sebastianbergmann",
  9517. "type": "github"
  9518. }
  9519. ],
  9520. "time": "2020-11-30T08:15:22+00:00"
  9521. },
  9522. {
  9523. "name": "sebastian/comparator",
  9524. "version": "3.0.3",
  9525. "source": {
  9526. "type": "git",
  9527. "url": "https://github.com/sebastianbergmann/comparator.git",
  9528. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9529. },
  9530. "dist": {
  9531. "type": "zip",
  9532. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9533. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9534. "shasum": "",
  9535. "mirrors": [
  9536. {
  9537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9538. "preferred": true
  9539. }
  9540. ]
  9541. },
  9542. "require": {
  9543. "php": ">=7.1",
  9544. "sebastian/diff": "^3.0",
  9545. "sebastian/exporter": "^3.1"
  9546. },
  9547. "require-dev": {
  9548. "phpunit/phpunit": "^8.5"
  9549. },
  9550. "type": "library",
  9551. "extra": {
  9552. "branch-alias": {
  9553. "dev-master": "3.0-dev"
  9554. }
  9555. },
  9556. "autoload": {
  9557. "classmap": [
  9558. "src/"
  9559. ]
  9560. },
  9561. "notification-url": "https://packagist.org/downloads/",
  9562. "license": [
  9563. "BSD-3-Clause"
  9564. ],
  9565. "authors": [
  9566. {
  9567. "name": "Sebastian Bergmann",
  9568. "email": "sebastian@phpunit.de"
  9569. },
  9570. {
  9571. "name": "Jeff Welch",
  9572. "email": "whatthejeff@gmail.com"
  9573. },
  9574. {
  9575. "name": "Volker Dusch",
  9576. "email": "github@wallbash.com"
  9577. },
  9578. {
  9579. "name": "Bernhard Schussek",
  9580. "email": "bschussek@2bepublished.at"
  9581. }
  9582. ],
  9583. "description": "Provides the functionality to compare PHP values for equality",
  9584. "homepage": "https://github.com/sebastianbergmann/comparator",
  9585. "keywords": [
  9586. "comparator",
  9587. "compare",
  9588. "equality"
  9589. ],
  9590. "support": {
  9591. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9592. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9593. },
  9594. "funding": [
  9595. {
  9596. "url": "https://github.com/sebastianbergmann",
  9597. "type": "github"
  9598. }
  9599. ],
  9600. "time": "2020-11-30T08:04:30+00:00"
  9601. },
  9602. {
  9603. "name": "sebastian/diff",
  9604. "version": "3.0.3",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/sebastianbergmann/diff.git",
  9608. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9613. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9614. "shasum": "",
  9615. "mirrors": [
  9616. {
  9617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9618. "preferred": true
  9619. }
  9620. ]
  9621. },
  9622. "require": {
  9623. "php": ">=7.1"
  9624. },
  9625. "require-dev": {
  9626. "phpunit/phpunit": "^7.5 || ^8.0",
  9627. "symfony/process": "^2 || ^3.3 || ^4"
  9628. },
  9629. "type": "library",
  9630. "extra": {
  9631. "branch-alias": {
  9632. "dev-master": "3.0-dev"
  9633. }
  9634. },
  9635. "autoload": {
  9636. "classmap": [
  9637. "src/"
  9638. ]
  9639. },
  9640. "notification-url": "https://packagist.org/downloads/",
  9641. "license": [
  9642. "BSD-3-Clause"
  9643. ],
  9644. "authors": [
  9645. {
  9646. "name": "Sebastian Bergmann",
  9647. "email": "sebastian@phpunit.de"
  9648. },
  9649. {
  9650. "name": "Kore Nordmann",
  9651. "email": "mail@kore-nordmann.de"
  9652. }
  9653. ],
  9654. "description": "Diff implementation",
  9655. "homepage": "https://github.com/sebastianbergmann/diff",
  9656. "keywords": [
  9657. "diff",
  9658. "udiff",
  9659. "unidiff",
  9660. "unified diff"
  9661. ],
  9662. "support": {
  9663. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9664. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9665. },
  9666. "funding": [
  9667. {
  9668. "url": "https://github.com/sebastianbergmann",
  9669. "type": "github"
  9670. }
  9671. ],
  9672. "time": "2020-11-30T07:59:04+00:00"
  9673. },
  9674. {
  9675. "name": "sebastian/environment",
  9676. "version": "4.2.4",
  9677. "source": {
  9678. "type": "git",
  9679. "url": "https://github.com/sebastianbergmann/environment.git",
  9680. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9681. },
  9682. "dist": {
  9683. "type": "zip",
  9684. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9685. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9686. "shasum": "",
  9687. "mirrors": [
  9688. {
  9689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9690. "preferred": true
  9691. }
  9692. ]
  9693. },
  9694. "require": {
  9695. "php": ">=7.1"
  9696. },
  9697. "require-dev": {
  9698. "phpunit/phpunit": "^7.5"
  9699. },
  9700. "suggest": {
  9701. "ext-posix": "*"
  9702. },
  9703. "type": "library",
  9704. "extra": {
  9705. "branch-alias": {
  9706. "dev-master": "4.2-dev"
  9707. }
  9708. },
  9709. "autoload": {
  9710. "classmap": [
  9711. "src/"
  9712. ]
  9713. },
  9714. "notification-url": "https://packagist.org/downloads/",
  9715. "license": [
  9716. "BSD-3-Clause"
  9717. ],
  9718. "authors": [
  9719. {
  9720. "name": "Sebastian Bergmann",
  9721. "email": "sebastian@phpunit.de"
  9722. }
  9723. ],
  9724. "description": "Provides functionality to handle HHVM/PHP environments",
  9725. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9726. "keywords": [
  9727. "Xdebug",
  9728. "environment",
  9729. "hhvm"
  9730. ],
  9731. "support": {
  9732. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9733. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9734. },
  9735. "funding": [
  9736. {
  9737. "url": "https://github.com/sebastianbergmann",
  9738. "type": "github"
  9739. }
  9740. ],
  9741. "time": "2020-11-30T07:53:42+00:00"
  9742. },
  9743. {
  9744. "name": "sebastian/exporter",
  9745. "version": "3.1.3",
  9746. "source": {
  9747. "type": "git",
  9748. "url": "https://github.com/sebastianbergmann/exporter.git",
  9749. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9750. },
  9751. "dist": {
  9752. "type": "zip",
  9753. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9754. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9755. "shasum": "",
  9756. "mirrors": [
  9757. {
  9758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9759. "preferred": true
  9760. }
  9761. ]
  9762. },
  9763. "require": {
  9764. "php": ">=7.0",
  9765. "sebastian/recursion-context": "^3.0"
  9766. },
  9767. "require-dev": {
  9768. "ext-mbstring": "*",
  9769. "phpunit/phpunit": "^6.0"
  9770. },
  9771. "type": "library",
  9772. "extra": {
  9773. "branch-alias": {
  9774. "dev-master": "3.1.x-dev"
  9775. }
  9776. },
  9777. "autoload": {
  9778. "classmap": [
  9779. "src/"
  9780. ]
  9781. },
  9782. "notification-url": "https://packagist.org/downloads/",
  9783. "license": [
  9784. "BSD-3-Clause"
  9785. ],
  9786. "authors": [
  9787. {
  9788. "name": "Sebastian Bergmann",
  9789. "email": "sebastian@phpunit.de"
  9790. },
  9791. {
  9792. "name": "Jeff Welch",
  9793. "email": "whatthejeff@gmail.com"
  9794. },
  9795. {
  9796. "name": "Volker Dusch",
  9797. "email": "github@wallbash.com"
  9798. },
  9799. {
  9800. "name": "Adam Harvey",
  9801. "email": "aharvey@php.net"
  9802. },
  9803. {
  9804. "name": "Bernhard Schussek",
  9805. "email": "bschussek@gmail.com"
  9806. }
  9807. ],
  9808. "description": "Provides the functionality to export PHP variables for visualization",
  9809. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9810. "keywords": [
  9811. "export",
  9812. "exporter"
  9813. ],
  9814. "support": {
  9815. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9816. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9817. },
  9818. "funding": [
  9819. {
  9820. "url": "https://github.com/sebastianbergmann",
  9821. "type": "github"
  9822. }
  9823. ],
  9824. "time": "2020-11-30T07:47:53+00:00"
  9825. },
  9826. {
  9827. "name": "sebastian/global-state",
  9828. "version": "3.0.1",
  9829. "source": {
  9830. "type": "git",
  9831. "url": "https://github.com/sebastianbergmann/global-state.git",
  9832. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9833. },
  9834. "dist": {
  9835. "type": "zip",
  9836. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9837. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9838. "shasum": "",
  9839. "mirrors": [
  9840. {
  9841. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9842. "preferred": true
  9843. }
  9844. ]
  9845. },
  9846. "require": {
  9847. "php": ">=7.2",
  9848. "sebastian/object-reflector": "^1.1.1",
  9849. "sebastian/recursion-context": "^3.0"
  9850. },
  9851. "require-dev": {
  9852. "ext-dom": "*",
  9853. "phpunit/phpunit": "^8.0"
  9854. },
  9855. "suggest": {
  9856. "ext-uopz": "*"
  9857. },
  9858. "type": "library",
  9859. "extra": {
  9860. "branch-alias": {
  9861. "dev-master": "3.0-dev"
  9862. }
  9863. },
  9864. "autoload": {
  9865. "classmap": [
  9866. "src/"
  9867. ]
  9868. },
  9869. "notification-url": "https://packagist.org/downloads/",
  9870. "license": [
  9871. "BSD-3-Clause"
  9872. ],
  9873. "authors": [
  9874. {
  9875. "name": "Sebastian Bergmann",
  9876. "email": "sebastian@phpunit.de"
  9877. }
  9878. ],
  9879. "description": "Snapshotting of global state",
  9880. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9881. "keywords": [
  9882. "global state"
  9883. ],
  9884. "support": {
  9885. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9886. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9887. },
  9888. "funding": [
  9889. {
  9890. "url": "https://github.com/sebastianbergmann",
  9891. "type": "github"
  9892. }
  9893. ],
  9894. "time": "2020-11-30T07:43:24+00:00"
  9895. },
  9896. {
  9897. "name": "sebastian/object-enumerator",
  9898. "version": "3.0.4",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9902. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9907. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9908. "shasum": "",
  9909. "mirrors": [
  9910. {
  9911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9912. "preferred": true
  9913. }
  9914. ]
  9915. },
  9916. "require": {
  9917. "php": ">=7.0",
  9918. "sebastian/object-reflector": "^1.1.1",
  9919. "sebastian/recursion-context": "^3.0"
  9920. },
  9921. "require-dev": {
  9922. "phpunit/phpunit": "^6.0"
  9923. },
  9924. "type": "library",
  9925. "extra": {
  9926. "branch-alias": {
  9927. "dev-master": "3.0.x-dev"
  9928. }
  9929. },
  9930. "autoload": {
  9931. "classmap": [
  9932. "src/"
  9933. ]
  9934. },
  9935. "notification-url": "https://packagist.org/downloads/",
  9936. "license": [
  9937. "BSD-3-Clause"
  9938. ],
  9939. "authors": [
  9940. {
  9941. "name": "Sebastian Bergmann",
  9942. "email": "sebastian@phpunit.de"
  9943. }
  9944. ],
  9945. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9946. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9947. "support": {
  9948. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9949. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9950. },
  9951. "funding": [
  9952. {
  9953. "url": "https://github.com/sebastianbergmann",
  9954. "type": "github"
  9955. }
  9956. ],
  9957. "time": "2020-11-30T07:40:27+00:00"
  9958. },
  9959. {
  9960. "name": "sebastian/object-reflector",
  9961. "version": "1.1.2",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9965. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9970. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9971. "shasum": "",
  9972. "mirrors": [
  9973. {
  9974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9975. "preferred": true
  9976. }
  9977. ]
  9978. },
  9979. "require": {
  9980. "php": ">=7.0"
  9981. },
  9982. "require-dev": {
  9983. "phpunit/phpunit": "^6.0"
  9984. },
  9985. "type": "library",
  9986. "extra": {
  9987. "branch-alias": {
  9988. "dev-master": "1.1-dev"
  9989. }
  9990. },
  9991. "autoload": {
  9992. "classmap": [
  9993. "src/"
  9994. ]
  9995. },
  9996. "notification-url": "https://packagist.org/downloads/",
  9997. "license": [
  9998. "BSD-3-Clause"
  9999. ],
  10000. "authors": [
  10001. {
  10002. "name": "Sebastian Bergmann",
  10003. "email": "sebastian@phpunit.de"
  10004. }
  10005. ],
  10006. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10007. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10008. "support": {
  10009. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10010. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  10011. },
  10012. "funding": [
  10013. {
  10014. "url": "https://github.com/sebastianbergmann",
  10015. "type": "github"
  10016. }
  10017. ],
  10018. "time": "2020-11-30T07:37:18+00:00"
  10019. },
  10020. {
  10021. "name": "sebastian/recursion-context",
  10022. "version": "3.0.1",
  10023. "source": {
  10024. "type": "git",
  10025. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10026. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10027. },
  10028. "dist": {
  10029. "type": "zip",
  10030. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10031. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10032. "shasum": "",
  10033. "mirrors": [
  10034. {
  10035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10036. "preferred": true
  10037. }
  10038. ]
  10039. },
  10040. "require": {
  10041. "php": ">=7.0"
  10042. },
  10043. "require-dev": {
  10044. "phpunit/phpunit": "^6.0"
  10045. },
  10046. "type": "library",
  10047. "extra": {
  10048. "branch-alias": {
  10049. "dev-master": "3.0.x-dev"
  10050. }
  10051. },
  10052. "autoload": {
  10053. "classmap": [
  10054. "src/"
  10055. ]
  10056. },
  10057. "notification-url": "https://packagist.org/downloads/",
  10058. "license": [
  10059. "BSD-3-Clause"
  10060. ],
  10061. "authors": [
  10062. {
  10063. "name": "Sebastian Bergmann",
  10064. "email": "sebastian@phpunit.de"
  10065. },
  10066. {
  10067. "name": "Jeff Welch",
  10068. "email": "whatthejeff@gmail.com"
  10069. },
  10070. {
  10071. "name": "Adam Harvey",
  10072. "email": "aharvey@php.net"
  10073. }
  10074. ],
  10075. "description": "Provides functionality to recursively process PHP variables",
  10076. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10077. "support": {
  10078. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10079. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10080. },
  10081. "funding": [
  10082. {
  10083. "url": "https://github.com/sebastianbergmann",
  10084. "type": "github"
  10085. }
  10086. ],
  10087. "time": "2020-11-30T07:34:24+00:00"
  10088. },
  10089. {
  10090. "name": "sebastian/resource-operations",
  10091. "version": "2.0.2",
  10092. "source": {
  10093. "type": "git",
  10094. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10095. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10096. },
  10097. "dist": {
  10098. "type": "zip",
  10099. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10100. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10101. "shasum": "",
  10102. "mirrors": [
  10103. {
  10104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10105. "preferred": true
  10106. }
  10107. ]
  10108. },
  10109. "require": {
  10110. "php": ">=7.1"
  10111. },
  10112. "type": "library",
  10113. "extra": {
  10114. "branch-alias": {
  10115. "dev-master": "2.0-dev"
  10116. }
  10117. },
  10118. "autoload": {
  10119. "classmap": [
  10120. "src/"
  10121. ]
  10122. },
  10123. "notification-url": "https://packagist.org/downloads/",
  10124. "license": [
  10125. "BSD-3-Clause"
  10126. ],
  10127. "authors": [
  10128. {
  10129. "name": "Sebastian Bergmann",
  10130. "email": "sebastian@phpunit.de"
  10131. }
  10132. ],
  10133. "description": "Provides a list of PHP built-in functions that operate on resources",
  10134. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10135. "support": {
  10136. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10137. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10138. },
  10139. "funding": [
  10140. {
  10141. "url": "https://github.com/sebastianbergmann",
  10142. "type": "github"
  10143. }
  10144. ],
  10145. "time": "2020-11-30T07:30:19+00:00"
  10146. },
  10147. {
  10148. "name": "sebastian/type",
  10149. "version": "1.1.4",
  10150. "source": {
  10151. "type": "git",
  10152. "url": "https://github.com/sebastianbergmann/type.git",
  10153. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10154. },
  10155. "dist": {
  10156. "type": "zip",
  10157. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10158. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10159. "shasum": "",
  10160. "mirrors": [
  10161. {
  10162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10163. "preferred": true
  10164. }
  10165. ]
  10166. },
  10167. "require": {
  10168. "php": ">=7.2"
  10169. },
  10170. "require-dev": {
  10171. "phpunit/phpunit": "^8.2"
  10172. },
  10173. "type": "library",
  10174. "extra": {
  10175. "branch-alias": {
  10176. "dev-master": "1.1-dev"
  10177. }
  10178. },
  10179. "autoload": {
  10180. "classmap": [
  10181. "src/"
  10182. ]
  10183. },
  10184. "notification-url": "https://packagist.org/downloads/",
  10185. "license": [
  10186. "BSD-3-Clause"
  10187. ],
  10188. "authors": [
  10189. {
  10190. "name": "Sebastian Bergmann",
  10191. "email": "sebastian@phpunit.de",
  10192. "role": "lead"
  10193. }
  10194. ],
  10195. "description": "Collection of value objects that represent the types of the PHP type system",
  10196. "homepage": "https://github.com/sebastianbergmann/type",
  10197. "support": {
  10198. "issues": "https://github.com/sebastianbergmann/type/issues",
  10199. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10200. },
  10201. "funding": [
  10202. {
  10203. "url": "https://github.com/sebastianbergmann",
  10204. "type": "github"
  10205. }
  10206. ],
  10207. "time": "2020-11-30T07:25:11+00:00"
  10208. },
  10209. {
  10210. "name": "sebastian/version",
  10211. "version": "2.0.1",
  10212. "source": {
  10213. "type": "git",
  10214. "url": "https://github.com/sebastianbergmann/version.git",
  10215. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10216. },
  10217. "dist": {
  10218. "type": "zip",
  10219. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10220. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10221. "shasum": "",
  10222. "mirrors": [
  10223. {
  10224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10225. "preferred": true
  10226. }
  10227. ]
  10228. },
  10229. "require": {
  10230. "php": ">=5.6"
  10231. },
  10232. "type": "library",
  10233. "extra": {
  10234. "branch-alias": {
  10235. "dev-master": "2.0.x-dev"
  10236. }
  10237. },
  10238. "autoload": {
  10239. "classmap": [
  10240. "src/"
  10241. ]
  10242. },
  10243. "notification-url": "https://packagist.org/downloads/",
  10244. "license": [
  10245. "BSD-3-Clause"
  10246. ],
  10247. "authors": [
  10248. {
  10249. "name": "Sebastian Bergmann",
  10250. "email": "sebastian@phpunit.de",
  10251. "role": "lead"
  10252. }
  10253. ],
  10254. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10255. "homepage": "https://github.com/sebastianbergmann/version",
  10256. "support": {
  10257. "issues": "https://github.com/sebastianbergmann/version/issues",
  10258. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10259. },
  10260. "time": "2016-10-03T07:35:21+00:00"
  10261. },
  10262. {
  10263. "name": "symfony/debug",
  10264. "version": "v4.4.19",
  10265. "source": {
  10266. "type": "git",
  10267. "url": "https://github.com/symfony/debug.git",
  10268. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c"
  10269. },
  10270. "dist": {
  10271. "type": "zip",
  10272. "url": "https://api.github.com/repos/symfony/debug/zipball/af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  10273. "reference": "af4987aa4a5630e9615be9d9c3ed1b0f24ca449c",
  10274. "shasum": "",
  10275. "mirrors": [
  10276. {
  10277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10278. "preferred": true
  10279. }
  10280. ]
  10281. },
  10282. "require": {
  10283. "php": ">=7.1.3",
  10284. "psr/log": "~1.0",
  10285. "symfony/polyfill-php80": "^1.15"
  10286. },
  10287. "conflict": {
  10288. "symfony/http-kernel": "<3.4"
  10289. },
  10290. "require-dev": {
  10291. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10292. },
  10293. "type": "library",
  10294. "autoload": {
  10295. "psr-4": {
  10296. "Symfony\\Component\\Debug\\": ""
  10297. },
  10298. "exclude-from-classmap": [
  10299. "/Tests/"
  10300. ]
  10301. },
  10302. "notification-url": "https://packagist.org/downloads/",
  10303. "license": [
  10304. "MIT"
  10305. ],
  10306. "authors": [
  10307. {
  10308. "name": "Fabien Potencier",
  10309. "email": "fabien@symfony.com"
  10310. },
  10311. {
  10312. "name": "Symfony Community",
  10313. "homepage": "https://symfony.com/contributors"
  10314. }
  10315. ],
  10316. "description": "Provides tools to ease debugging PHP code",
  10317. "homepage": "https://symfony.com",
  10318. "support": {
  10319. "source": "https://github.com/symfony/debug/tree/v4.4.19"
  10320. },
  10321. "funding": [
  10322. {
  10323. "url": "https://symfony.com/sponsor",
  10324. "type": "custom"
  10325. },
  10326. {
  10327. "url": "https://github.com/fabpot",
  10328. "type": "github"
  10329. },
  10330. {
  10331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10332. "type": "tidelift"
  10333. }
  10334. ],
  10335. "time": "2021-01-27T09:09:26+00:00"
  10336. },
  10337. {
  10338. "name": "theseer/tokenizer",
  10339. "version": "1.2.0",
  10340. "source": {
  10341. "type": "git",
  10342. "url": "https://github.com/theseer/tokenizer.git",
  10343. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10344. },
  10345. "dist": {
  10346. "type": "zip",
  10347. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10348. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10349. "shasum": "",
  10350. "mirrors": [
  10351. {
  10352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10353. "preferred": true
  10354. }
  10355. ]
  10356. },
  10357. "require": {
  10358. "ext-dom": "*",
  10359. "ext-tokenizer": "*",
  10360. "ext-xmlwriter": "*",
  10361. "php": "^7.2 || ^8.0"
  10362. },
  10363. "type": "library",
  10364. "autoload": {
  10365. "classmap": [
  10366. "src/"
  10367. ]
  10368. },
  10369. "notification-url": "https://packagist.org/downloads/",
  10370. "license": [
  10371. "BSD-3-Clause"
  10372. ],
  10373. "authors": [
  10374. {
  10375. "name": "Arne Blankerts",
  10376. "email": "arne@blankerts.de",
  10377. "role": "Developer"
  10378. }
  10379. ],
  10380. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10381. "support": {
  10382. "issues": "https://github.com/theseer/tokenizer/issues",
  10383. "source": "https://github.com/theseer/tokenizer/tree/master"
  10384. },
  10385. "funding": [
  10386. {
  10387. "url": "https://github.com/theseer",
  10388. "type": "github"
  10389. }
  10390. ],
  10391. "time": "2020-07-12T23:59:07+00:00"
  10392. },
  10393. {
  10394. "name": "webmozart/assert",
  10395. "version": "1.9.1",
  10396. "source": {
  10397. "type": "git",
  10398. "url": "https://github.com/webmozart/assert.git",
  10399. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  10400. },
  10401. "dist": {
  10402. "type": "zip",
  10403. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10404. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10405. "shasum": "",
  10406. "mirrors": [
  10407. {
  10408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10409. "preferred": true
  10410. }
  10411. ]
  10412. },
  10413. "require": {
  10414. "php": "^5.3.3 || ^7.0 || ^8.0",
  10415. "symfony/polyfill-ctype": "^1.8"
  10416. },
  10417. "conflict": {
  10418. "phpstan/phpstan": "<0.12.20",
  10419. "vimeo/psalm": "<3.9.1"
  10420. },
  10421. "require-dev": {
  10422. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10423. },
  10424. "type": "library",
  10425. "autoload": {
  10426. "psr-4": {
  10427. "Webmozart\\Assert\\": "src/"
  10428. }
  10429. },
  10430. "notification-url": "https://packagist.org/downloads/",
  10431. "license": [
  10432. "MIT"
  10433. ],
  10434. "authors": [
  10435. {
  10436. "name": "Bernhard Schussek",
  10437. "email": "bschussek@gmail.com"
  10438. }
  10439. ],
  10440. "description": "Assertions to validate method input/output with nice error messages.",
  10441. "keywords": [
  10442. "assert",
  10443. "check",
  10444. "validate"
  10445. ],
  10446. "support": {
  10447. "issues": "https://github.com/webmozart/assert/issues",
  10448. "source": "https://github.com/webmozart/assert/tree/master"
  10449. },
  10450. "time": "2020-07-08T17:02:28+00:00"
  10451. }
  10452. ],
  10453. "aliases": [],
  10454. "minimum-stability": "dev",
  10455. "stability-flags": {
  10456. "tymon/jwt-auth": 5
  10457. },
  10458. "prefer-stable": true,
  10459. "prefer-lowest": false,
  10460. "platform": {
  10461. "php": "^7.2.34",
  10462. "ext-json": "*",
  10463. "ext-mbstring": "*",
  10464. "ext-openssl": "*",
  10465. "ext-pdo": "*"
  10466. },
  10467. "platform-dev": [],
  10468. "plugin-api-version": "2.0.0"
  10469. }