composer.lock 416 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681
  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": "04879cdf04f34417c35aebbabc2229f6",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/8d8f88b3b3830916be94292c1fbce84433efb1aa",
  20. "reference": "8d8f88b3b3830916be94292c1fbce84433efb1aa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0|^8.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.0.2"
  62. },
  63. "time": "2020-10-29T16:03:21+00:00"
  64. },
  65. {
  66. "name": "brick/math",
  67. "version": "0.9.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/brick/math.git",
  71. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  76. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": "^7.1|^8.0"
  82. },
  83. "require-dev": {
  84. "php-coveralls/php-coveralls": "^2.2",
  85. "phpunit/phpunit": "^7.5.15|^8.5",
  86. "vimeo/psalm": "^3.5"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Brick\\Math\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "description": "Arbitrary-precision arithmetic library",
  99. "keywords": [
  100. "Arbitrary-precision",
  101. "BigInteger",
  102. "BigRational",
  103. "arithmetic",
  104. "bigdecimal",
  105. "bignum",
  106. "brick",
  107. "math"
  108. ],
  109. "support": {
  110. "issues": "https://github.com/brick/math/issues",
  111. "source": "https://github.com/brick/math/tree/master"
  112. },
  113. "funding": [
  114. {
  115. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  116. "type": "tidelift"
  117. }
  118. ],
  119. "time": "2020-08-18T23:57:15+00:00"
  120. },
  121. {
  122. "name": "composer/ca-bundle",
  123. "version": "1.2.8",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/composer/ca-bundle.git",
  127. "reference": "8a7ecad675253e4654ea05505233285377405215"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  132. "reference": "8a7ecad675253e4654ea05505233285377405215",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "ext-openssl": "*",
  137. "ext-pcre": "*",
  138. "php": "^5.3.2 || ^7.0 || ^8.0"
  139. },
  140. "require-dev": {
  141. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  142. "psr/log": "^1.0",
  143. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  144. },
  145. "type": "library",
  146. "extra": {
  147. "branch-alias": {
  148. "dev-master": "1.x-dev"
  149. }
  150. },
  151. "autoload": {
  152. "psr-4": {
  153. "Composer\\CaBundle\\": "src"
  154. }
  155. },
  156. "notification-url": "https://packagist.org/downloads/",
  157. "license": [
  158. "MIT"
  159. ],
  160. "authors": [
  161. {
  162. "name": "Jordi Boggiano",
  163. "email": "j.boggiano@seld.be",
  164. "homepage": "http://seld.be"
  165. }
  166. ],
  167. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  168. "keywords": [
  169. "cabundle",
  170. "cacert",
  171. "certificate",
  172. "ssl",
  173. "tls"
  174. ],
  175. "support": {
  176. "irc": "irc://irc.freenode.org/composer",
  177. "issues": "https://github.com/composer/ca-bundle/issues",
  178. "source": "https://github.com/composer/ca-bundle/tree/1.2.8"
  179. },
  180. "funding": [
  181. {
  182. "url": "https://packagist.com",
  183. "type": "custom"
  184. },
  185. {
  186. "url": "https://github.com/composer",
  187. "type": "github"
  188. },
  189. {
  190. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  191. "type": "tidelift"
  192. }
  193. ],
  194. "time": "2020-08-23T12:54:47+00:00"
  195. },
  196. {
  197. "name": "dnoegel/php-xdg-base-dir",
  198. "version": "v0.1.1",
  199. "source": {
  200. "type": "git",
  201. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  202. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  203. },
  204. "dist": {
  205. "type": "zip",
  206. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  207. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  208. "shasum": ""
  209. },
  210. "require": {
  211. "php": ">=5.3.2"
  212. },
  213. "require-dev": {
  214. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  215. },
  216. "type": "library",
  217. "autoload": {
  218. "psr-4": {
  219. "XdgBaseDir\\": "src/"
  220. }
  221. },
  222. "notification-url": "https://packagist.org/downloads/",
  223. "license": [
  224. "MIT"
  225. ],
  226. "description": "implementation of xdg base directory specification for php",
  227. "support": {
  228. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  229. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  230. },
  231. "time": "2019-12-04T15:06:13+00:00"
  232. },
  233. {
  234. "name": "doctrine/cache",
  235. "version": "1.10.2",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/doctrine/cache.git",
  239. "reference": "13e3381b25847283a91948d04640543941309727"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  244. "reference": "13e3381b25847283a91948d04640543941309727",
  245. "shasum": ""
  246. },
  247. "require": {
  248. "php": "~7.1 || ^8.0"
  249. },
  250. "conflict": {
  251. "doctrine/common": ">2.2,<2.4"
  252. },
  253. "require-dev": {
  254. "alcaeus/mongo-php-adapter": "^1.1",
  255. "doctrine/coding-standard": "^6.0",
  256. "mongodb/mongodb": "^1.1",
  257. "phpunit/phpunit": "^7.0",
  258. "predis/predis": "~1.0"
  259. },
  260. "suggest": {
  261. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  262. },
  263. "type": "library",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.9.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Guilherme Blanco",
  281. "email": "guilhermeblanco@gmail.com"
  282. },
  283. {
  284. "name": "Roman Borschel",
  285. "email": "roman@code-factory.org"
  286. },
  287. {
  288. "name": "Benjamin Eberlei",
  289. "email": "kontakt@beberlei.de"
  290. },
  291. {
  292. "name": "Jonathan Wage",
  293. "email": "jonwage@gmail.com"
  294. },
  295. {
  296. "name": "Johannes Schmitt",
  297. "email": "schmittjoh@gmail.com"
  298. }
  299. ],
  300. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  301. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  302. "keywords": [
  303. "abstraction",
  304. "apcu",
  305. "cache",
  306. "caching",
  307. "couchdb",
  308. "memcached",
  309. "php",
  310. "redis",
  311. "xcache"
  312. ],
  313. "support": {
  314. "issues": "https://github.com/doctrine/cache/issues",
  315. "source": "https://github.com/doctrine/cache/tree/1.10.x"
  316. },
  317. "funding": [
  318. {
  319. "url": "https://www.doctrine-project.org/sponsorship.html",
  320. "type": "custom"
  321. },
  322. {
  323. "url": "https://www.patreon.com/phpdoctrine",
  324. "type": "patreon"
  325. },
  326. {
  327. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  328. "type": "tidelift"
  329. }
  330. ],
  331. "time": "2020-07-07T18:54:01+00:00"
  332. },
  333. {
  334. "name": "doctrine/dbal",
  335. "version": "2.12.1",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/doctrine/dbal.git",
  339. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086",
  344. "reference": "adce7a954a1c2f14f85e94aed90c8489af204086",
  345. "shasum": ""
  346. },
  347. "require": {
  348. "doctrine/cache": "^1.0",
  349. "doctrine/event-manager": "^1.0",
  350. "ext-pdo": "*",
  351. "php": "^7.3 || ^8"
  352. },
  353. "require-dev": {
  354. "doctrine/coding-standard": "^8.1",
  355. "jetbrains/phpstorm-stubs": "^2019.1",
  356. "phpstan/phpstan": "^0.12.40",
  357. "phpunit/phpunit": "^9.4",
  358. "psalm/plugin-phpunit": "^0.10.0",
  359. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  360. "vimeo/psalm": "^3.17.2"
  361. },
  362. "suggest": {
  363. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  364. },
  365. "bin": [
  366. "bin/doctrine-dbal"
  367. ],
  368. "type": "library",
  369. "extra": {
  370. "branch-alias": {
  371. "dev-master": "4.0.x-dev"
  372. }
  373. },
  374. "autoload": {
  375. "psr-4": {
  376. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Guilherme Blanco",
  386. "email": "guilhermeblanco@gmail.com"
  387. },
  388. {
  389. "name": "Roman Borschel",
  390. "email": "roman@code-factory.org"
  391. },
  392. {
  393. "name": "Benjamin Eberlei",
  394. "email": "kontakt@beberlei.de"
  395. },
  396. {
  397. "name": "Jonathan Wage",
  398. "email": "jonwage@gmail.com"
  399. }
  400. ],
  401. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  402. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  403. "keywords": [
  404. "abstraction",
  405. "database",
  406. "db2",
  407. "dbal",
  408. "mariadb",
  409. "mssql",
  410. "mysql",
  411. "oci8",
  412. "oracle",
  413. "pdo",
  414. "pgsql",
  415. "postgresql",
  416. "queryobject",
  417. "sasql",
  418. "sql",
  419. "sqlanywhere",
  420. "sqlite",
  421. "sqlserver",
  422. "sqlsrv"
  423. ],
  424. "support": {
  425. "issues": "https://github.com/doctrine/dbal/issues",
  426. "source": "https://github.com/doctrine/dbal/tree/2.12.1"
  427. },
  428. "funding": [
  429. {
  430. "url": "https://www.doctrine-project.org/sponsorship.html",
  431. "type": "custom"
  432. },
  433. {
  434. "url": "https://www.patreon.com/phpdoctrine",
  435. "type": "patreon"
  436. },
  437. {
  438. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  439. "type": "tidelift"
  440. }
  441. ],
  442. "time": "2020-11-14T20:26:58+00:00"
  443. },
  444. {
  445. "name": "doctrine/event-manager",
  446. "version": "1.1.1",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/doctrine/event-manager.git",
  450. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  455. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": "^7.1 || ^8.0"
  460. },
  461. "conflict": {
  462. "doctrine/common": "<2.9@dev"
  463. },
  464. "require-dev": {
  465. "doctrine/coding-standard": "^6.0",
  466. "phpunit/phpunit": "^7.0"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "branch-alias": {
  471. "dev-master": "1.0.x-dev"
  472. }
  473. },
  474. "autoload": {
  475. "psr-4": {
  476. "Doctrine\\Common\\": "lib/Doctrine/Common"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Guilherme Blanco",
  486. "email": "guilhermeblanco@gmail.com"
  487. },
  488. {
  489. "name": "Roman Borschel",
  490. "email": "roman@code-factory.org"
  491. },
  492. {
  493. "name": "Benjamin Eberlei",
  494. "email": "kontakt@beberlei.de"
  495. },
  496. {
  497. "name": "Jonathan Wage",
  498. "email": "jonwage@gmail.com"
  499. },
  500. {
  501. "name": "Johannes Schmitt",
  502. "email": "schmittjoh@gmail.com"
  503. },
  504. {
  505. "name": "Marco Pivetta",
  506. "email": "ocramius@gmail.com"
  507. }
  508. ],
  509. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  510. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  511. "keywords": [
  512. "event",
  513. "event dispatcher",
  514. "event manager",
  515. "event system",
  516. "events"
  517. ],
  518. "support": {
  519. "issues": "https://github.com/doctrine/event-manager/issues",
  520. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  521. },
  522. "funding": [
  523. {
  524. "url": "https://www.doctrine-project.org/sponsorship.html",
  525. "type": "custom"
  526. },
  527. {
  528. "url": "https://www.patreon.com/phpdoctrine",
  529. "type": "patreon"
  530. },
  531. {
  532. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  533. "type": "tidelift"
  534. }
  535. ],
  536. "time": "2020-05-29T18:28:51+00:00"
  537. },
  538. {
  539. "name": "doctrine/inflector",
  540. "version": "2.0.3",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/doctrine/inflector.git",
  544. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  549. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  550. "shasum": ""
  551. },
  552. "require": {
  553. "php": "^7.2 || ^8.0"
  554. },
  555. "require-dev": {
  556. "doctrine/coding-standard": "^7.0",
  557. "phpstan/phpstan": "^0.11",
  558. "phpstan/phpstan-phpunit": "^0.11",
  559. "phpstan/phpstan-strict-rules": "^0.11",
  560. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  561. },
  562. "type": "library",
  563. "extra": {
  564. "branch-alias": {
  565. "dev-master": "2.0.x-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Guilherme Blanco",
  580. "email": "guilhermeblanco@gmail.com"
  581. },
  582. {
  583. "name": "Roman Borschel",
  584. "email": "roman@code-factory.org"
  585. },
  586. {
  587. "name": "Benjamin Eberlei",
  588. "email": "kontakt@beberlei.de"
  589. },
  590. {
  591. "name": "Jonathan Wage",
  592. "email": "jonwage@gmail.com"
  593. },
  594. {
  595. "name": "Johannes Schmitt",
  596. "email": "schmittjoh@gmail.com"
  597. }
  598. ],
  599. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  600. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  601. "keywords": [
  602. "inflection",
  603. "inflector",
  604. "lowercase",
  605. "manipulation",
  606. "php",
  607. "plural",
  608. "singular",
  609. "strings",
  610. "uppercase",
  611. "words"
  612. ],
  613. "support": {
  614. "issues": "https://github.com/doctrine/inflector/issues",
  615. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  616. },
  617. "funding": [
  618. {
  619. "url": "https://www.doctrine-project.org/sponsorship.html",
  620. "type": "custom"
  621. },
  622. {
  623. "url": "https://www.patreon.com/phpdoctrine",
  624. "type": "patreon"
  625. },
  626. {
  627. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  628. "type": "tidelift"
  629. }
  630. ],
  631. "time": "2020-05-29T15:13:26+00:00"
  632. },
  633. {
  634. "name": "doctrine/lexer",
  635. "version": "1.2.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/doctrine/lexer.git",
  639. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  644. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  645. "shasum": ""
  646. },
  647. "require": {
  648. "php": "^7.2 || ^8.0"
  649. },
  650. "require-dev": {
  651. "doctrine/coding-standard": "^6.0",
  652. "phpstan/phpstan": "^0.11.8",
  653. "phpunit/phpunit": "^8.2"
  654. },
  655. "type": "library",
  656. "extra": {
  657. "branch-alias": {
  658. "dev-master": "1.2.x-dev"
  659. }
  660. },
  661. "autoload": {
  662. "psr-4": {
  663. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Guilherme Blanco",
  673. "email": "guilhermeblanco@gmail.com"
  674. },
  675. {
  676. "name": "Roman Borschel",
  677. "email": "roman@code-factory.org"
  678. },
  679. {
  680. "name": "Johannes Schmitt",
  681. "email": "schmittjoh@gmail.com"
  682. }
  683. ],
  684. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  685. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  686. "keywords": [
  687. "annotations",
  688. "docblock",
  689. "lexer",
  690. "parser",
  691. "php"
  692. ],
  693. "support": {
  694. "issues": "https://github.com/doctrine/lexer/issues",
  695. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  696. },
  697. "funding": [
  698. {
  699. "url": "https://www.doctrine-project.org/sponsorship.html",
  700. "type": "custom"
  701. },
  702. {
  703. "url": "https://www.patreon.com/phpdoctrine",
  704. "type": "patreon"
  705. },
  706. {
  707. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  708. "type": "tidelift"
  709. }
  710. ],
  711. "time": "2020-05-25T17:44:05+00:00"
  712. },
  713. {
  714. "name": "dragonmantank/cron-expression",
  715. "version": "v2.3.1",
  716. "source": {
  717. "type": "git",
  718. "url": "https://github.com/dragonmantank/cron-expression.git",
  719. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  720. },
  721. "dist": {
  722. "type": "zip",
  723. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  724. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  725. "shasum": ""
  726. },
  727. "require": {
  728. "php": "^7.0|^8.0"
  729. },
  730. "require-dev": {
  731. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  732. },
  733. "type": "library",
  734. "extra": {
  735. "branch-alias": {
  736. "dev-master": "2.3-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Cron\\": "src/Cron/"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Michael Dowling",
  751. "email": "mtdowling@gmail.com",
  752. "homepage": "https://github.com/mtdowling"
  753. },
  754. {
  755. "name": "Chris Tankersley",
  756. "email": "chris@ctankersley.com",
  757. "homepage": "https://github.com/dragonmantank"
  758. }
  759. ],
  760. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  761. "keywords": [
  762. "cron",
  763. "schedule"
  764. ],
  765. "support": {
  766. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  767. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  768. },
  769. "funding": [
  770. {
  771. "url": "https://github.com/dragonmantank",
  772. "type": "github"
  773. }
  774. ],
  775. "time": "2020-10-13T00:52:37+00:00"
  776. },
  777. {
  778. "name": "egulias/email-validator",
  779. "version": "2.1.24",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/egulias/EmailValidator.git",
  783. "reference": "ca90a3291eee1538cd48ff25163240695bd95448"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ca90a3291eee1538cd48ff25163240695bd95448",
  788. "reference": "ca90a3291eee1538cd48ff25163240695bd95448",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "doctrine/lexer": "^1.0.1",
  793. "php": ">=5.5",
  794. "symfony/polyfill-intl-idn": "^1.10"
  795. },
  796. "require-dev": {
  797. "dominicsayers/isemail": "^3.0.7",
  798. "phpunit/phpunit": "^4.8.36|^7.5.15",
  799. "satooshi/php-coveralls": "^1.0.1"
  800. },
  801. "suggest": {
  802. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  803. },
  804. "type": "library",
  805. "extra": {
  806. "branch-alias": {
  807. "dev-master": "2.1.x-dev"
  808. }
  809. },
  810. "autoload": {
  811. "psr-4": {
  812. "Egulias\\EmailValidator\\": "src"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "MIT"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Eduardo Gulias Davis"
  822. }
  823. ],
  824. "description": "A library for validating emails against several RFCs",
  825. "homepage": "https://github.com/egulias/EmailValidator",
  826. "keywords": [
  827. "email",
  828. "emailvalidation",
  829. "emailvalidator",
  830. "validation",
  831. "validator"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/egulias/EmailValidator/issues",
  835. "source": "https://github.com/egulias/EmailValidator/tree/2.1.24"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/egulias",
  840. "type": "github"
  841. }
  842. ],
  843. "time": "2020-11-14T15:56:27+00:00"
  844. },
  845. {
  846. "name": "ezyang/htmlpurifier",
  847. "version": "v4.13.0",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/ezyang/htmlpurifier.git",
  851. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  856. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  857. "shasum": ""
  858. },
  859. "require": {
  860. "php": ">=5.2"
  861. },
  862. "require-dev": {
  863. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  864. },
  865. "type": "library",
  866. "autoload": {
  867. "psr-0": {
  868. "HTMLPurifier": "library/"
  869. },
  870. "files": [
  871. "library/HTMLPurifier.composer.php"
  872. ],
  873. "exclude-from-classmap": [
  874. "/library/HTMLPurifier/Language/"
  875. ]
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "LGPL-2.1-or-later"
  880. ],
  881. "authors": [
  882. {
  883. "name": "Edward Z. Yang",
  884. "email": "admin@htmlpurifier.org",
  885. "homepage": "http://ezyang.com"
  886. }
  887. ],
  888. "description": "Standards compliant HTML filter written in PHP",
  889. "homepage": "http://htmlpurifier.org/",
  890. "keywords": [
  891. "html"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  895. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  896. },
  897. "time": "2020-06-29T00:56:53+00:00"
  898. },
  899. {
  900. "name": "fideloper/proxy",
  901. "version": "4.4.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/fideloper/TrustedProxy.git",
  905. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  910. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  915. "php": ">=5.4.0"
  916. },
  917. "require-dev": {
  918. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  919. "mockery/mockery": "^1.0",
  920. "phpunit/phpunit": "^6.0"
  921. },
  922. "type": "library",
  923. "extra": {
  924. "laravel": {
  925. "providers": [
  926. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  927. ]
  928. }
  929. },
  930. "autoload": {
  931. "psr-4": {
  932. "Fideloper\\Proxy\\": "src/"
  933. }
  934. },
  935. "notification-url": "https://packagist.org/downloads/",
  936. "license": [
  937. "MIT"
  938. ],
  939. "authors": [
  940. {
  941. "name": "Chris Fidao",
  942. "email": "fideloper@gmail.com"
  943. }
  944. ],
  945. "description": "Set trusted proxies for Laravel",
  946. "keywords": [
  947. "load balancing",
  948. "proxy",
  949. "trusted proxy"
  950. ],
  951. "support": {
  952. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  953. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  954. },
  955. "time": "2020-10-22T13:48:01+00:00"
  956. },
  957. {
  958. "name": "fruitcake/laravel-cors",
  959. "version": "v2.0.3",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/fruitcake/laravel-cors.git",
  963. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  968. "reference": "01de0fe5f71c70d1930ee9a80385f9cc28e0f63a",
  969. "shasum": ""
  970. },
  971. "require": {
  972. "asm89/stack-cors": "^2.0.1",
  973. "illuminate/contracts": "^6|^7|^8|^9",
  974. "illuminate/support": "^6|^7|^8|^9",
  975. "php": ">=7.2",
  976. "symfony/http-foundation": "^4|^5",
  977. "symfony/http-kernel": "^4.3.4|^5"
  978. },
  979. "require-dev": {
  980. "laravel/framework": "^6|^7|^8",
  981. "orchestra/testbench-dusk": "^4|^5|^6",
  982. "phpunit/phpunit": "^6|^7|^8",
  983. "squizlabs/php_codesniffer": "^3.5"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "branch-alias": {
  988. "dev-master": "2.0-dev"
  989. },
  990. "laravel": {
  991. "providers": [
  992. "Fruitcake\\Cors\\CorsServiceProvider"
  993. ]
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Fruitcake\\Cors\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Fruitcake",
  1008. "homepage": "https://fruitcake.nl"
  1009. },
  1010. {
  1011. "name": "Barry vd. Heuvel",
  1012. "email": "barryvdh@gmail.com"
  1013. }
  1014. ],
  1015. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1016. "keywords": [
  1017. "api",
  1018. "cors",
  1019. "crossdomain",
  1020. "laravel"
  1021. ],
  1022. "support": {
  1023. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1024. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.3"
  1025. },
  1026. "funding": [
  1027. {
  1028. "url": "https://github.com/barryvdh",
  1029. "type": "github"
  1030. }
  1031. ],
  1032. "time": "2020-10-22T13:57:20+00:00"
  1033. },
  1034. {
  1035. "name": "geoip2/geoip2",
  1036. "version": "v2.11.0",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1040. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1045. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "ext-json": "*",
  1050. "maxmind-db/reader": "~1.8",
  1051. "maxmind/web-service-common": "~0.8",
  1052. "php": ">=7.2"
  1053. },
  1054. "require-dev": {
  1055. "friendsofphp/php-cs-fixer": "2.*",
  1056. "phpunit/phpunit": "^8.0 || ^9.0",
  1057. "squizlabs/php_codesniffer": "3.*"
  1058. },
  1059. "type": "library",
  1060. "autoload": {
  1061. "psr-4": {
  1062. "GeoIp2\\": "src"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "Apache-2.0"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Gregory J. Oschwald",
  1072. "email": "goschwald@maxmind.com",
  1073. "homepage": "https://www.maxmind.com/"
  1074. }
  1075. ],
  1076. "description": "MaxMind GeoIP2 PHP API",
  1077. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1078. "keywords": [
  1079. "IP",
  1080. "geoip",
  1081. "geoip2",
  1082. "geolocation",
  1083. "maxmind"
  1084. ],
  1085. "support": {
  1086. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1087. "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.11.0"
  1088. },
  1089. "time": "2020-10-01T18:48:34+00:00"
  1090. },
  1091. {
  1092. "name": "guzzlehttp/guzzle",
  1093. "version": "6.5.5",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/guzzle/guzzle.git",
  1097. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1102. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1103. "shasum": ""
  1104. },
  1105. "require": {
  1106. "ext-json": "*",
  1107. "guzzlehttp/promises": "^1.0",
  1108. "guzzlehttp/psr7": "^1.6.1",
  1109. "php": ">=5.5",
  1110. "symfony/polyfill-intl-idn": "^1.17.0"
  1111. },
  1112. "require-dev": {
  1113. "ext-curl": "*",
  1114. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1115. "psr/log": "^1.1"
  1116. },
  1117. "suggest": {
  1118. "psr/log": "Required for using the Log middleware"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "6.5-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "GuzzleHttp\\": "src/"
  1129. },
  1130. "files": [
  1131. "src/functions_include.php"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Michael Dowling",
  1141. "email": "mtdowling@gmail.com",
  1142. "homepage": "https://github.com/mtdowling"
  1143. }
  1144. ],
  1145. "description": "Guzzle is a PHP HTTP client library",
  1146. "homepage": "http://guzzlephp.org/",
  1147. "keywords": [
  1148. "client",
  1149. "curl",
  1150. "framework",
  1151. "http",
  1152. "http client",
  1153. "rest",
  1154. "web service"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/guzzle/guzzle/issues",
  1158. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1159. },
  1160. "time": "2020-06-16T21:01:06+00:00"
  1161. },
  1162. {
  1163. "name": "guzzlehttp/promises",
  1164. "version": "1.4.0",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/guzzle/promises.git",
  1168. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  1173. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.5"
  1178. },
  1179. "require-dev": {
  1180. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "1.4-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "GuzzleHttp\\Promise\\": "src/"
  1191. },
  1192. "files": [
  1193. "src/functions_include.php"
  1194. ]
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Michael Dowling",
  1203. "email": "mtdowling@gmail.com",
  1204. "homepage": "https://github.com/mtdowling"
  1205. }
  1206. ],
  1207. "description": "Guzzle promises library",
  1208. "keywords": [
  1209. "promise"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/guzzle/promises/issues",
  1213. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  1214. },
  1215. "time": "2020-09-30T07:37:28+00:00"
  1216. },
  1217. {
  1218. "name": "guzzlehttp/psr7",
  1219. "version": "1.7.0",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/guzzle/psr7.git",
  1223. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1228. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  1229. "shasum": ""
  1230. },
  1231. "require": {
  1232. "php": ">=5.4.0",
  1233. "psr/http-message": "~1.0",
  1234. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1235. },
  1236. "provide": {
  1237. "psr/http-message-implementation": "1.0"
  1238. },
  1239. "require-dev": {
  1240. "ext-zlib": "*",
  1241. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1242. },
  1243. "suggest": {
  1244. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "1.7-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "GuzzleHttp\\Psr7\\": "src/"
  1255. },
  1256. "files": [
  1257. "src/functions_include.php"
  1258. ]
  1259. },
  1260. "notification-url": "https://packagist.org/downloads/",
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "Michael Dowling",
  1267. "email": "mtdowling@gmail.com",
  1268. "homepage": "https://github.com/mtdowling"
  1269. },
  1270. {
  1271. "name": "Tobias Schultze",
  1272. "homepage": "https://github.com/Tobion"
  1273. }
  1274. ],
  1275. "description": "PSR-7 message implementation that also provides common utility methods",
  1276. "keywords": [
  1277. "http",
  1278. "message",
  1279. "psr-7",
  1280. "request",
  1281. "response",
  1282. "stream",
  1283. "uri",
  1284. "url"
  1285. ],
  1286. "support": {
  1287. "issues": "https://github.com/guzzle/psr7/issues",
  1288. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  1289. },
  1290. "time": "2020-09-30T07:37:11+00:00"
  1291. },
  1292. {
  1293. "name": "intervention/image",
  1294. "version": "2.5.1",
  1295. "source": {
  1296. "type": "git",
  1297. "url": "https://github.com/Intervention/image.git",
  1298. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1299. },
  1300. "dist": {
  1301. "type": "zip",
  1302. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1303. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1304. "shasum": ""
  1305. },
  1306. "require": {
  1307. "ext-fileinfo": "*",
  1308. "guzzlehttp/psr7": "~1.1",
  1309. "php": ">=5.4.0"
  1310. },
  1311. "require-dev": {
  1312. "mockery/mockery": "~0.9.2",
  1313. "phpunit/phpunit": "^4.8 || ^5.7"
  1314. },
  1315. "suggest": {
  1316. "ext-gd": "to use GD library based image processing.",
  1317. "ext-imagick": "to use Imagick based image processing.",
  1318. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "branch-alias": {
  1323. "dev-master": "2.4-dev"
  1324. },
  1325. "laravel": {
  1326. "providers": [
  1327. "Intervention\\Image\\ImageServiceProvider"
  1328. ],
  1329. "aliases": {
  1330. "Image": "Intervention\\Image\\Facades\\Image"
  1331. }
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Intervention\\Image\\": "src/Intervention/Image"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Oliver Vogel",
  1346. "email": "oliver@olivervogel.com",
  1347. "homepage": "http://olivervogel.com/"
  1348. }
  1349. ],
  1350. "description": "Image handling and manipulation library with support for Laravel integration",
  1351. "homepage": "http://image.intervention.io/",
  1352. "keywords": [
  1353. "gd",
  1354. "image",
  1355. "imagick",
  1356. "laravel",
  1357. "thumbnail",
  1358. "watermark"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/Intervention/image/issues",
  1362. "source": "https://github.com/Intervention/image/tree/master"
  1363. },
  1364. "time": "2019-11-02T09:15:47+00:00"
  1365. },
  1366. {
  1367. "name": "ip2location/ip2location-laravel",
  1368. "version": "1.2.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1372. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1377. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "ip2location/ip2location-php": "8.*",
  1382. "php": ">=5.4"
  1383. },
  1384. "type": "library",
  1385. "autoload": {
  1386. "psr-4": {
  1387. "Ip2location\\IP2LocationLaravel\\": "src/"
  1388. }
  1389. },
  1390. "notification-url": "https://packagist.org/downloads/",
  1391. "license": [
  1392. "MIT"
  1393. ],
  1394. "authors": [
  1395. {
  1396. "name": "IP2Location",
  1397. "email": "support@ip2location.com"
  1398. }
  1399. ],
  1400. "description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
  1401. "keywords": [
  1402. "geolocation",
  1403. "ip2location",
  1404. "laravel",
  1405. "laravel 5",
  1406. "laravel 7"
  1407. ],
  1408. "support": {
  1409. "issues": "https://github.com/ip2location/ip2location-laravel/issues",
  1410. "source": "https://github.com/ip2location/ip2location-laravel/tree/master"
  1411. },
  1412. "time": "2020-08-27T07:47:55+00:00"
  1413. },
  1414. {
  1415. "name": "ip2location/ip2location-php",
  1416. "version": "8.3.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1420. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1425. "reference": "4c501aa1f666ae85eab84d4df9d19399f2e6ce15",
  1426. "shasum": ""
  1427. },
  1428. "type": "library",
  1429. "autoload": {
  1430. "classmap": [
  1431. "IP2Location.php"
  1432. ]
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "IP2Location",
  1441. "email": "support@ip2location.com",
  1442. "homepage": "http://www.ip2location.com"
  1443. }
  1444. ],
  1445. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1446. "homepage": "http://www.ip2location.com",
  1447. "keywords": [
  1448. "geolocation",
  1449. "ip2location",
  1450. "ip2locationlite"
  1451. ],
  1452. "support": {
  1453. "issues": "https://github.com/chrislim2888/IP2Location-PHP-Module/issues",
  1454. "source": "https://github.com/chrislim2888/IP2Location-PHP-Module/tree/8.3.0"
  1455. },
  1456. "time": "2020-11-23T04:30:39+00:00"
  1457. },
  1458. {
  1459. "name": "ipip/db",
  1460. "version": "v1.0.0",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1464. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1469. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": ">=5.4.0"
  1474. },
  1475. "type": "library",
  1476. "autoload": {
  1477. "psr-4": {
  1478. "ipip\\db\\": "src/ipip/db/"
  1479. }
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "Apache-2.0"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "IPIP.net",
  1488. "email": "frk@ipip.net",
  1489. "homepage": "https://www.ipip.net"
  1490. }
  1491. ],
  1492. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1493. "homepage": "https://www.ipip.net",
  1494. "keywords": [
  1495. "IP",
  1496. "geo",
  1497. "geoip",
  1498. "geolocation",
  1499. "ipdb",
  1500. "ipip.net"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/ipipdotnet/ipdb-php/issues",
  1504. "source": "https://github.com/ipipdotnet/ipdb-php/tree/v1.0.0"
  1505. },
  1506. "time": "2018-11-01T08:07:04+00:00"
  1507. },
  1508. {
  1509. "name": "jaybizzle/crawler-detect",
  1510. "version": "v1.2.103",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1514. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/3efa2860959cc971f17624b40bf0699823f9d0f3",
  1519. "reference": "3efa2860959cc971f17624b40bf0699823f9d0f3",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": ">=5.3.0"
  1524. },
  1525. "require-dev": {
  1526. "phpunit/phpunit": "^4.8|^5.5|^6.5"
  1527. },
  1528. "type": "library",
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Jaybizzle\\CrawlerDetect\\": "src/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "Mark Beech",
  1541. "email": "m@rkbee.ch",
  1542. "role": "Developer"
  1543. }
  1544. ],
  1545. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1546. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1547. "keywords": [
  1548. "crawler",
  1549. "crawler detect",
  1550. "crawler detector",
  1551. "crawlerdetect",
  1552. "php crawler detect"
  1553. ],
  1554. "support": {
  1555. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  1556. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.103"
  1557. },
  1558. "time": "2020-11-23T19:49:25+00:00"
  1559. },
  1560. {
  1561. "name": "jenssegers/agent",
  1562. "version": "v2.6.4",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/jenssegers/agent.git",
  1566. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1571. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "jaybizzle/crawler-detect": "^1.2",
  1576. "mobiledetect/mobiledetectlib": "^2.7.6",
  1577. "php": ">=5.6"
  1578. },
  1579. "require-dev": {
  1580. "php-coveralls/php-coveralls": "^2.1",
  1581. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1582. },
  1583. "suggest": {
  1584. "illuminate/support": "Required for laravel service providers"
  1585. },
  1586. "type": "library",
  1587. "extra": {
  1588. "branch-alias": {
  1589. "dev-master": "3.0-dev"
  1590. },
  1591. "laravel": {
  1592. "providers": [
  1593. "Jenssegers\\Agent\\AgentServiceProvider"
  1594. ],
  1595. "aliases": {
  1596. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1597. }
  1598. }
  1599. },
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Jenssegers\\Agent\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Jens Segers",
  1612. "homepage": "https://jenssegers.com"
  1613. }
  1614. ],
  1615. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1616. "homepage": "https://github.com/jenssegers/agent",
  1617. "keywords": [
  1618. "Agent",
  1619. "browser",
  1620. "desktop",
  1621. "laravel",
  1622. "mobile",
  1623. "platform",
  1624. "user agent",
  1625. "useragent"
  1626. ],
  1627. "support": {
  1628. "issues": "https://github.com/jenssegers/agent/issues",
  1629. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  1630. },
  1631. "funding": [
  1632. {
  1633. "url": "https://github.com/jenssegers",
  1634. "type": "github"
  1635. },
  1636. {
  1637. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1638. "type": "tidelift"
  1639. }
  1640. ],
  1641. "time": "2020-06-13T08:05:20+00:00"
  1642. },
  1643. {
  1644. "name": "laravel-lang/lang",
  1645. "version": "7.0.9",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/Laravel-Lang/lang.git",
  1649. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/679a65755db37b35acd36a5e0ca51e055815a00a",
  1654. "reference": "679a65755db37b35acd36a5e0ca51e055815a00a",
  1655. "shasum": ""
  1656. },
  1657. "require": {
  1658. "ext-json": "*"
  1659. },
  1660. "suggest": {
  1661. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1662. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1663. "overtrue/laravel-lang": "Command to add languages in your project"
  1664. },
  1665. "type": "library",
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Laravel-Lang Team"
  1673. }
  1674. ],
  1675. "description": "Languages for Laravel",
  1676. "keywords": [
  1677. "lang",
  1678. "languages",
  1679. "laravel",
  1680. "lpm"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1684. "source": "https://github.com/Laravel-Lang/lang/tree/7.0.9"
  1685. },
  1686. "time": "2020-11-30T20:35:41+00:00"
  1687. },
  1688. {
  1689. "name": "laravel/framework",
  1690. "version": "v7.30.1",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/laravel/framework.git",
  1694. "reference": "e73855b18dcfc645c36d2474f437e4e73dd3c11d"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/laravel/framework/zipball/e73855b18dcfc645c36d2474f437e4e73dd3c11d",
  1699. "reference": "e73855b18dcfc645c36d2474f437e4e73dd3c11d",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "doctrine/inflector": "^1.4|^2.0",
  1704. "dragonmantank/cron-expression": "^2.3.1",
  1705. "egulias/email-validator": "^2.1.10",
  1706. "ext-json": "*",
  1707. "ext-mbstring": "*",
  1708. "ext-openssl": "*",
  1709. "league/commonmark": "^1.3",
  1710. "league/flysystem": "^1.1",
  1711. "monolog/monolog": "^2.0",
  1712. "nesbot/carbon": "^2.31",
  1713. "opis/closure": "^3.6",
  1714. "php": "^7.2.5|^8.0",
  1715. "psr/container": "^1.0",
  1716. "psr/simple-cache": "^1.0",
  1717. "ramsey/uuid": "^3.7|^4.0",
  1718. "swiftmailer/swiftmailer": "^6.0",
  1719. "symfony/console": "^5.0",
  1720. "symfony/error-handler": "^5.0",
  1721. "symfony/finder": "^5.0",
  1722. "symfony/http-foundation": "^5.0",
  1723. "symfony/http-kernel": "^5.0",
  1724. "symfony/mime": "^5.0",
  1725. "symfony/polyfill-php73": "^1.17",
  1726. "symfony/process": "^5.0",
  1727. "symfony/routing": "^5.0",
  1728. "symfony/var-dumper": "^5.0",
  1729. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1730. "vlucas/phpdotenv": "^4.0",
  1731. "voku/portable-ascii": "^1.4.8"
  1732. },
  1733. "conflict": {
  1734. "tightenco/collect": "<5.5.33"
  1735. },
  1736. "provide": {
  1737. "psr/container-implementation": "1.0"
  1738. },
  1739. "replace": {
  1740. "illuminate/auth": "self.version",
  1741. "illuminate/broadcasting": "self.version",
  1742. "illuminate/bus": "self.version",
  1743. "illuminate/cache": "self.version",
  1744. "illuminate/config": "self.version",
  1745. "illuminate/console": "self.version",
  1746. "illuminate/container": "self.version",
  1747. "illuminate/contracts": "self.version",
  1748. "illuminate/cookie": "self.version",
  1749. "illuminate/database": "self.version",
  1750. "illuminate/encryption": "self.version",
  1751. "illuminate/events": "self.version",
  1752. "illuminate/filesystem": "self.version",
  1753. "illuminate/hashing": "self.version",
  1754. "illuminate/http": "self.version",
  1755. "illuminate/log": "self.version",
  1756. "illuminate/mail": "self.version",
  1757. "illuminate/notifications": "self.version",
  1758. "illuminate/pagination": "self.version",
  1759. "illuminate/pipeline": "self.version",
  1760. "illuminate/queue": "self.version",
  1761. "illuminate/redis": "self.version",
  1762. "illuminate/routing": "self.version",
  1763. "illuminate/session": "self.version",
  1764. "illuminate/support": "self.version",
  1765. "illuminate/testing": "self.version",
  1766. "illuminate/translation": "self.version",
  1767. "illuminate/validation": "self.version",
  1768. "illuminate/view": "self.version"
  1769. },
  1770. "require-dev": {
  1771. "aws/aws-sdk-php": "^3.155",
  1772. "doctrine/dbal": "^2.6",
  1773. "filp/whoops": "^2.8",
  1774. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1775. "league/flysystem-cached-adapter": "^1.0",
  1776. "mockery/mockery": "~1.3.3|^1.4.2",
  1777. "moontoast/math": "^1.1",
  1778. "orchestra/testbench-core": "^5.8",
  1779. "pda/pheanstalk": "^4.0",
  1780. "phpunit/phpunit": "^8.4|^9.3.3",
  1781. "predis/predis": "^1.1.1",
  1782. "symfony/cache": "^5.0"
  1783. },
  1784. "suggest": {
  1785. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1786. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1787. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1788. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1789. "ext-memcached": "Required to use the memcache cache driver.",
  1790. "ext-pcntl": "Required to use all features of the queue worker.",
  1791. "ext-posix": "Required to use all features of the queue worker.",
  1792. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1793. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1794. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1795. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1796. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1797. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1798. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1799. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1800. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1801. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1802. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1803. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1804. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1805. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1806. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1807. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1808. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1809. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1810. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1811. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1812. },
  1813. "type": "library",
  1814. "extra": {
  1815. "branch-alias": {
  1816. "dev-master": "7.x-dev"
  1817. }
  1818. },
  1819. "autoload": {
  1820. "files": [
  1821. "src/Illuminate/Foundation/helpers.php",
  1822. "src/Illuminate/Support/helpers.php"
  1823. ],
  1824. "psr-4": {
  1825. "Illuminate\\": "src/Illuminate/"
  1826. }
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Taylor Otwell",
  1835. "email": "taylor@laravel.com"
  1836. }
  1837. ],
  1838. "description": "The Laravel Framework.",
  1839. "homepage": "https://laravel.com",
  1840. "keywords": [
  1841. "framework",
  1842. "laravel"
  1843. ],
  1844. "support": {
  1845. "issues": "https://github.com/laravel/framework/issues",
  1846. "source": "https://github.com/laravel/framework"
  1847. },
  1848. "time": "2020-12-22T17:00:45+00:00"
  1849. },
  1850. {
  1851. "name": "laravel/tinker",
  1852. "version": "v2.5.0",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/laravel/tinker.git",
  1856. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/laravel/tinker/zipball/45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1861. "reference": "45884b526e10a88a1b179fa1a1a24d5468c668c2",
  1862. "shasum": ""
  1863. },
  1864. "require": {
  1865. "illuminate/console": "^6.0|^7.0|^8.0",
  1866. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1867. "illuminate/support": "^6.0|^7.0|^8.0",
  1868. "php": "^7.2.5|^8.0",
  1869. "psy/psysh": "^0.10.4",
  1870. "symfony/var-dumper": "^4.3.4|^5.0"
  1871. },
  1872. "require-dev": {
  1873. "mockery/mockery": "~1.3.3|^1.4.2",
  1874. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1875. },
  1876. "suggest": {
  1877. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "branch-alias": {
  1882. "dev-master": "2.x-dev"
  1883. },
  1884. "laravel": {
  1885. "providers": [
  1886. "Laravel\\Tinker\\TinkerServiceProvider"
  1887. ]
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-4": {
  1892. "Laravel\\Tinker\\": "src/"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Taylor Otwell",
  1902. "email": "taylor@laravel.com"
  1903. }
  1904. ],
  1905. "description": "Powerful REPL for the Laravel framework.",
  1906. "keywords": [
  1907. "REPL",
  1908. "Tinker",
  1909. "laravel",
  1910. "psysh"
  1911. ],
  1912. "support": {
  1913. "issues": "https://github.com/laravel/tinker/issues",
  1914. "source": "https://github.com/laravel/tinker/tree/v2.5.0"
  1915. },
  1916. "time": "2020-10-29T13:07:12+00:00"
  1917. },
  1918. {
  1919. "name": "lcobucci/jwt",
  1920. "version": "3.3.3",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/lcobucci/jwt.git",
  1924. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  1929. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "ext-mbstring": "*",
  1934. "ext-openssl": "*",
  1935. "php": "^5.6 || ^7.0"
  1936. },
  1937. "require-dev": {
  1938. "mikey179/vfsstream": "~1.5",
  1939. "phpmd/phpmd": "~2.2",
  1940. "phpunit/php-invoker": "~1.1",
  1941. "phpunit/phpunit": "^5.7 || ^7.3",
  1942. "squizlabs/php_codesniffer": "~2.3"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "branch-alias": {
  1947. "dev-master": "3.1-dev"
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-4": {
  1952. "Lcobucci\\JWT\\": "src"
  1953. }
  1954. },
  1955. "notification-url": "https://packagist.org/downloads/",
  1956. "license": [
  1957. "BSD-3-Clause"
  1958. ],
  1959. "authors": [
  1960. {
  1961. "name": "Luís Otávio Cobucci Oblonczyk",
  1962. "email": "lcobucci@gmail.com",
  1963. "role": "Developer"
  1964. }
  1965. ],
  1966. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1967. "keywords": [
  1968. "JWS",
  1969. "jwt"
  1970. ],
  1971. "support": {
  1972. "issues": "https://github.com/lcobucci/jwt/issues",
  1973. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  1974. },
  1975. "funding": [
  1976. {
  1977. "url": "https://github.com/lcobucci",
  1978. "type": "github"
  1979. },
  1980. {
  1981. "url": "https://www.patreon.com/lcobucci",
  1982. "type": "patreon"
  1983. }
  1984. ],
  1985. "time": "2020-08-20T13:22:28+00:00"
  1986. },
  1987. {
  1988. "name": "league/commonmark",
  1989. "version": "1.5.7",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/thephpleague/commonmark.git",
  1993. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1998. "reference": "11df9b36fd4f1d2b727a73bf14931d81373b9a54",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "ext-mbstring": "*",
  2003. "php": "^7.1 || ^8.0"
  2004. },
  2005. "conflict": {
  2006. "scrutinizer/ocular": "1.7.*"
  2007. },
  2008. "require-dev": {
  2009. "cebe/markdown": "~1.0",
  2010. "commonmark/commonmark.js": "0.29.2",
  2011. "erusev/parsedown": "~1.0",
  2012. "ext-json": "*",
  2013. "github/gfm": "0.29.0",
  2014. "michelf/php-markdown": "~1.4",
  2015. "mikehaertl/php-shellcommand": "^1.4",
  2016. "phpstan/phpstan": "^0.12",
  2017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2018. "scrutinizer/ocular": "^1.5",
  2019. "symfony/finder": "^4.2"
  2020. },
  2021. "bin": [
  2022. "bin/commonmark"
  2023. ],
  2024. "type": "library",
  2025. "autoload": {
  2026. "psr-4": {
  2027. "League\\CommonMark\\": "src"
  2028. }
  2029. },
  2030. "notification-url": "https://packagist.org/downloads/",
  2031. "license": [
  2032. "BSD-3-Clause"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "Colin O'Dell",
  2037. "email": "colinodell@gmail.com",
  2038. "homepage": "https://www.colinodell.com",
  2039. "role": "Lead Developer"
  2040. }
  2041. ],
  2042. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2043. "homepage": "https://commonmark.thephpleague.com",
  2044. "keywords": [
  2045. "commonmark",
  2046. "flavored",
  2047. "gfm",
  2048. "github",
  2049. "github-flavored",
  2050. "markdown",
  2051. "md",
  2052. "parser"
  2053. ],
  2054. "support": {
  2055. "docs": "https://commonmark.thephpleague.com/",
  2056. "issues": "https://github.com/thephpleague/commonmark/issues",
  2057. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2058. "source": "https://github.com/thephpleague/commonmark"
  2059. },
  2060. "funding": [
  2061. {
  2062. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2063. "type": "custom"
  2064. },
  2065. {
  2066. "url": "https://www.colinodell.com/sponsor",
  2067. "type": "custom"
  2068. },
  2069. {
  2070. "url": "https://www.paypal.me/colinpodell/10.00",
  2071. "type": "custom"
  2072. },
  2073. {
  2074. "url": "https://github.com/colinodell",
  2075. "type": "github"
  2076. },
  2077. {
  2078. "url": "https://www.patreon.com/colinodell",
  2079. "type": "patreon"
  2080. },
  2081. {
  2082. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2083. "type": "tidelift"
  2084. }
  2085. ],
  2086. "time": "2020-10-31T13:49:32+00:00"
  2087. },
  2088. {
  2089. "name": "league/flysystem",
  2090. "version": "1.1.3",
  2091. "source": {
  2092. "type": "git",
  2093. "url": "https://github.com/thephpleague/flysystem.git",
  2094. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2095. },
  2096. "dist": {
  2097. "type": "zip",
  2098. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2099. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2100. "shasum": ""
  2101. },
  2102. "require": {
  2103. "ext-fileinfo": "*",
  2104. "league/mime-type-detection": "^1.3",
  2105. "php": "^7.2.5 || ^8.0"
  2106. },
  2107. "conflict": {
  2108. "league/flysystem-sftp": "<1.0.6"
  2109. },
  2110. "require-dev": {
  2111. "phpspec/prophecy": "^1.11.1",
  2112. "phpunit/phpunit": "^8.5.8"
  2113. },
  2114. "suggest": {
  2115. "ext-fileinfo": "Required for MimeType",
  2116. "ext-ftp": "Allows you to use FTP server storage",
  2117. "ext-openssl": "Allows you to use FTPS server storage",
  2118. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2119. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2120. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2121. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2122. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2123. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2124. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2125. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2126. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2127. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2128. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "1.1-dev"
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-4": {
  2138. "League\\Flysystem\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "authors": [
  2146. {
  2147. "name": "Frank de Jonge",
  2148. "email": "info@frenky.net"
  2149. }
  2150. ],
  2151. "description": "Filesystem abstraction: Many filesystems, one API.",
  2152. "keywords": [
  2153. "Cloud Files",
  2154. "WebDAV",
  2155. "abstraction",
  2156. "aws",
  2157. "cloud",
  2158. "copy.com",
  2159. "dropbox",
  2160. "file systems",
  2161. "files",
  2162. "filesystem",
  2163. "filesystems",
  2164. "ftp",
  2165. "rackspace",
  2166. "remote",
  2167. "s3",
  2168. "sftp",
  2169. "storage"
  2170. ],
  2171. "support": {
  2172. "issues": "https://github.com/thephpleague/flysystem/issues",
  2173. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2174. },
  2175. "funding": [
  2176. {
  2177. "url": "https://offset.earth/frankdejonge",
  2178. "type": "other"
  2179. }
  2180. ],
  2181. "time": "2020-08-23T07:39:11+00:00"
  2182. },
  2183. {
  2184. "name": "league/mime-type-detection",
  2185. "version": "1.5.1",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2189. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2194. "reference": "353f66d7555d8a90781f6f5e7091932f9a4250aa",
  2195. "shasum": ""
  2196. },
  2197. "require": {
  2198. "ext-fileinfo": "*",
  2199. "php": "^7.2 || ^8.0"
  2200. },
  2201. "require-dev": {
  2202. "phpstan/phpstan": "^0.12.36",
  2203. "phpunit/phpunit": "^8.5.8"
  2204. },
  2205. "type": "library",
  2206. "autoload": {
  2207. "psr-4": {
  2208. "League\\MimeTypeDetection\\": "src"
  2209. }
  2210. },
  2211. "notification-url": "https://packagist.org/downloads/",
  2212. "license": [
  2213. "MIT"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Frank de Jonge",
  2218. "email": "info@frankdejonge.nl"
  2219. }
  2220. ],
  2221. "description": "Mime-type detection for Flysystem",
  2222. "support": {
  2223. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2224. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.5.1"
  2225. },
  2226. "funding": [
  2227. {
  2228. "url": "https://github.com/frankdejonge",
  2229. "type": "github"
  2230. },
  2231. {
  2232. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2233. "type": "tidelift"
  2234. }
  2235. ],
  2236. "time": "2020-10-18T11:50:25+00:00"
  2237. },
  2238. {
  2239. "name": "maennchen/zipstream-php",
  2240. "version": "2.1.0",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2244. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2249. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "myclabs/php-enum": "^1.5",
  2254. "php": ">= 7.1",
  2255. "psr/http-message": "^1.0",
  2256. "symfony/polyfill-mbstring": "^1.0"
  2257. },
  2258. "require-dev": {
  2259. "ext-zip": "*",
  2260. "guzzlehttp/guzzle": ">= 6.3",
  2261. "mikey179/vfsstream": "^1.6",
  2262. "phpunit/phpunit": ">= 7.5"
  2263. },
  2264. "type": "library",
  2265. "autoload": {
  2266. "psr-4": {
  2267. "ZipStream\\": "src/"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Paul Duncan",
  2277. "email": "pabs@pablotron.org"
  2278. },
  2279. {
  2280. "name": "Jonatan Männchen",
  2281. "email": "jonatan@maennchen.ch"
  2282. },
  2283. {
  2284. "name": "Jesse Donat",
  2285. "email": "donatj@gmail.com"
  2286. },
  2287. {
  2288. "name": "András Kolesár",
  2289. "email": "kolesar@kolesar.hu"
  2290. }
  2291. ],
  2292. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2293. "keywords": [
  2294. "stream",
  2295. "zip"
  2296. ],
  2297. "support": {
  2298. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2299. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2300. },
  2301. "funding": [
  2302. {
  2303. "url": "https://opencollective.com/zipstream",
  2304. "type": "open_collective"
  2305. }
  2306. ],
  2307. "time": "2020-05-30T13:11:16+00:00"
  2308. },
  2309. {
  2310. "name": "markbaker/complex",
  2311. "version": "2.0.0",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2315. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  2320. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  2321. "shasum": ""
  2322. },
  2323. "require": {
  2324. "php": "^7.2 || ^8.0"
  2325. },
  2326. "require-dev": {
  2327. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2328. "phpcompatibility/php-compatibility": "^9.0",
  2329. "phpdocumentor/phpdocumentor": "2.*",
  2330. "phploc/phploc": "^4.0",
  2331. "phpmd/phpmd": "2.*",
  2332. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2333. "sebastian/phpcpd": "^4.0",
  2334. "squizlabs/php_codesniffer": "^3.4"
  2335. },
  2336. "type": "library",
  2337. "autoload": {
  2338. "psr-4": {
  2339. "Complex\\": "classes/src/"
  2340. },
  2341. "files": [
  2342. "classes/src/functions/abs.php",
  2343. "classes/src/functions/acos.php",
  2344. "classes/src/functions/acosh.php",
  2345. "classes/src/functions/acot.php",
  2346. "classes/src/functions/acoth.php",
  2347. "classes/src/functions/acsc.php",
  2348. "classes/src/functions/acsch.php",
  2349. "classes/src/functions/argument.php",
  2350. "classes/src/functions/asec.php",
  2351. "classes/src/functions/asech.php",
  2352. "classes/src/functions/asin.php",
  2353. "classes/src/functions/asinh.php",
  2354. "classes/src/functions/atan.php",
  2355. "classes/src/functions/atanh.php",
  2356. "classes/src/functions/conjugate.php",
  2357. "classes/src/functions/cos.php",
  2358. "classes/src/functions/cosh.php",
  2359. "classes/src/functions/cot.php",
  2360. "classes/src/functions/coth.php",
  2361. "classes/src/functions/csc.php",
  2362. "classes/src/functions/csch.php",
  2363. "classes/src/functions/exp.php",
  2364. "classes/src/functions/inverse.php",
  2365. "classes/src/functions/ln.php",
  2366. "classes/src/functions/log2.php",
  2367. "classes/src/functions/log10.php",
  2368. "classes/src/functions/negative.php",
  2369. "classes/src/functions/pow.php",
  2370. "classes/src/functions/rho.php",
  2371. "classes/src/functions/sec.php",
  2372. "classes/src/functions/sech.php",
  2373. "classes/src/functions/sin.php",
  2374. "classes/src/functions/sinh.php",
  2375. "classes/src/functions/sqrt.php",
  2376. "classes/src/functions/tan.php",
  2377. "classes/src/functions/tanh.php",
  2378. "classes/src/functions/theta.php",
  2379. "classes/src/operations/add.php",
  2380. "classes/src/operations/subtract.php",
  2381. "classes/src/operations/multiply.php",
  2382. "classes/src/operations/divideby.php",
  2383. "classes/src/operations/divideinto.php"
  2384. ]
  2385. },
  2386. "notification-url": "https://packagist.org/downloads/",
  2387. "license": [
  2388. "MIT"
  2389. ],
  2390. "authors": [
  2391. {
  2392. "name": "Mark Baker",
  2393. "email": "mark@lange.demon.co.uk"
  2394. }
  2395. ],
  2396. "description": "PHP Class for working with complex numbers",
  2397. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2398. "keywords": [
  2399. "complex",
  2400. "mathematics"
  2401. ],
  2402. "support": {
  2403. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2404. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  2405. },
  2406. "time": "2020-08-26T10:42:07+00:00"
  2407. },
  2408. {
  2409. "name": "markbaker/matrix",
  2410. "version": "2.0.0",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2414. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2419. "reference": "9567d9c4c519fbe40de01dbd1e4469dbbb66f46a",
  2420. "shasum": ""
  2421. },
  2422. "require": {
  2423. "php": "^7.2 || ^8.0"
  2424. },
  2425. "require-dev": {
  2426. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2427. "phpcompatibility/php-compatibility": "^9.0",
  2428. "phpdocumentor/phpdocumentor": "2.*",
  2429. "phploc/phploc": "^4.0",
  2430. "phpmd/phpmd": "2.*",
  2431. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2432. "sebastian/phpcpd": "^4.0",
  2433. "squizlabs/php_codesniffer": "^3.4"
  2434. },
  2435. "type": "library",
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Matrix\\": "classes/src/"
  2439. },
  2440. "files": [
  2441. "classes/src/functions/adjoint.php",
  2442. "classes/src/functions/antidiagonal.php",
  2443. "classes/src/functions/cofactors.php",
  2444. "classes/src/functions/determinant.php",
  2445. "classes/src/functions/diagonal.php",
  2446. "classes/src/functions/identity.php",
  2447. "classes/src/functions/inverse.php",
  2448. "classes/src/functions/minors.php",
  2449. "classes/src/functions/trace.php",
  2450. "classes/src/functions/transpose.php",
  2451. "classes/src/operations/add.php",
  2452. "classes/src/operations/directsum.php",
  2453. "classes/src/operations/subtract.php",
  2454. "classes/src/operations/multiply.php",
  2455. "classes/src/operations/divideby.php",
  2456. "classes/src/operations/divideinto.php"
  2457. ]
  2458. },
  2459. "notification-url": "https://packagist.org/downloads/",
  2460. "license": [
  2461. "MIT"
  2462. ],
  2463. "authors": [
  2464. {
  2465. "name": "Mark Baker",
  2466. "email": "mark@demon-angel.eu"
  2467. }
  2468. ],
  2469. "description": "PHP Class for working with matrices",
  2470. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2471. "keywords": [
  2472. "mathematics",
  2473. "matrix",
  2474. "vector"
  2475. ],
  2476. "support": {
  2477. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2478. "source": "https://github.com/MarkBaker/PHPMatrix/tree/PHP8"
  2479. },
  2480. "time": "2020-08-28T17:11:00+00:00"
  2481. },
  2482. {
  2483. "name": "maxmind-db/reader",
  2484. "version": "v1.8.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2488. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2493. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": ">=7.2"
  2498. },
  2499. "conflict": {
  2500. "ext-maxminddb": "<1.8.0,>=2.0.0"
  2501. },
  2502. "require-dev": {
  2503. "friendsofphp/php-cs-fixer": "2.*",
  2504. "php-coveralls/php-coveralls": "^2.1",
  2505. "phpunit/phpcov": ">=6.0.0",
  2506. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2507. "squizlabs/php_codesniffer": "3.*"
  2508. },
  2509. "suggest": {
  2510. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2511. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2512. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2513. },
  2514. "type": "library",
  2515. "autoload": {
  2516. "psr-4": {
  2517. "MaxMind\\Db\\": "src/MaxMind/Db"
  2518. }
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "Apache-2.0"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Gregory J. Oschwald",
  2527. "email": "goschwald@maxmind.com",
  2528. "homepage": "https://www.maxmind.com/"
  2529. }
  2530. ],
  2531. "description": "MaxMind DB Reader API",
  2532. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2533. "keywords": [
  2534. "database",
  2535. "geoip",
  2536. "geoip2",
  2537. "geolocation",
  2538. "maxmind"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2542. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.8.0"
  2543. },
  2544. "time": "2020-10-01T17:30:21+00:00"
  2545. },
  2546. {
  2547. "name": "maxmind/web-service-common",
  2548. "version": "v0.8.1",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/maxmind/web-service-common-php.git",
  2552. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/32f274051c543fc865e5a84d3a2c703913641ea8",
  2557. "reference": "32f274051c543fc865e5a84d3a2c703913641ea8",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "composer/ca-bundle": "^1.0.3",
  2562. "ext-curl": "*",
  2563. "ext-json": "*",
  2564. "php": ">=7.2"
  2565. },
  2566. "require-dev": {
  2567. "friendsofphp/php-cs-fixer": "2.*",
  2568. "phpunit/phpunit": "^8.0 || ^9.0",
  2569. "squizlabs/php_codesniffer": "3.*"
  2570. },
  2571. "type": "library",
  2572. "autoload": {
  2573. "psr-4": {
  2574. "MaxMind\\Exception\\": "src/Exception",
  2575. "MaxMind\\WebService\\": "src/WebService"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "Apache-2.0"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Gregory Oschwald",
  2585. "email": "goschwald@maxmind.com"
  2586. }
  2587. ],
  2588. "description": "Internal MaxMind Web Service API",
  2589. "homepage": "https://github.com/maxmind/web-service-common-php",
  2590. "support": {
  2591. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2592. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.8.1"
  2593. },
  2594. "time": "2020-11-02T17:00:53+00:00"
  2595. },
  2596. {
  2597. "name": "mews/captcha",
  2598. "version": "3.2.4",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/mewebstudio/captcha.git",
  2602. "reference": "616d006be6f53e87b93f6dc0f298fb29ca0b7d6c"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/616d006be6f53e87b93f6dc0f298fb29ca0b7d6c",
  2607. "reference": "616d006be6f53e87b93f6dc0f298fb29ca0b7d6c",
  2608. "shasum": ""
  2609. },
  2610. "require": {
  2611. "ext-gd": "*",
  2612. "illuminate/config": "~5|^6|^7|^8",
  2613. "illuminate/filesystem": "~5|^6|^7|^8",
  2614. "illuminate/hashing": "~5|^6|^7|^8",
  2615. "illuminate/session": "~5|^6|^7|^8",
  2616. "illuminate/support": "~5|^6|^7|^8",
  2617. "intervention/image": "~2.5",
  2618. "php": "^7.2"
  2619. },
  2620. "require-dev": {
  2621. "mockery/mockery": "^1.0",
  2622. "phpunit/phpunit": "^8.5"
  2623. },
  2624. "type": "package",
  2625. "extra": {
  2626. "laravel": {
  2627. "providers": [
  2628. "Mews\\Captcha\\CaptchaServiceProvider"
  2629. ],
  2630. "aliases": {
  2631. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2632. }
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Mews\\Captcha\\": "src/"
  2638. },
  2639. "files": [
  2640. "src/helpers.php"
  2641. ]
  2642. },
  2643. "notification-url": "https://packagist.org/downloads/",
  2644. "license": [
  2645. "MIT"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "Muharrem ERİN",
  2650. "email": "me@mewebstudio.com",
  2651. "homepage": "https://github.com/mewebstudio",
  2652. "role": "Developer"
  2653. }
  2654. ],
  2655. "description": "Laravel 5 & 6 Captcha Package",
  2656. "homepage": "https://github.com/mewebstudio/captcha",
  2657. "keywords": [
  2658. "captcha",
  2659. "laravel5 Security",
  2660. "laravel6 Captcha",
  2661. "laravel6 Security"
  2662. ],
  2663. "support": {
  2664. "issues": "https://github.com/mewebstudio/captcha/issues",
  2665. "source": "https://github.com/mewebstudio/captcha/tree/3.2.4"
  2666. },
  2667. "time": "2020-12-14T12:34:10+00:00"
  2668. },
  2669. {
  2670. "name": "mews/purifier",
  2671. "version": "3.3.3",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/mewebstudio/Purifier.git",
  2675. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2680. "reference": "8e0b3d87c79b38b8d88aeb3c0ba8b000a393a74c",
  2681. "shasum": ""
  2682. },
  2683. "require": {
  2684. "ezyang/htmlpurifier": "4.13.*",
  2685. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2686. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2687. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2688. "php": "^7.2|^8.0"
  2689. },
  2690. "require-dev": {
  2691. "graham-campbell/testbench": "^3.2|^5.5.1",
  2692. "mockery/mockery": "^1.3.3",
  2693. "phpunit/phpunit": "^8.0|^9.0"
  2694. },
  2695. "suggest": {
  2696. "laravel/framework": "To test the Laravel bindings",
  2697. "laravel/lumen-framework": "To test the Lumen bindings"
  2698. },
  2699. "type": "package",
  2700. "extra": {
  2701. "laravel": {
  2702. "providers": [
  2703. "Mews\\Purifier\\PurifierServiceProvider"
  2704. ],
  2705. "aliases": {
  2706. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2707. }
  2708. }
  2709. },
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Mews\\Purifier\\": "src/"
  2713. },
  2714. "files": [
  2715. "src/helpers.php"
  2716. ]
  2717. },
  2718. "notification-url": "https://packagist.org/downloads/",
  2719. "license": [
  2720. "MIT"
  2721. ],
  2722. "authors": [
  2723. {
  2724. "name": "Muharrem ERİN",
  2725. "email": "me@mewebstudio.com",
  2726. "homepage": "https://github.com/mewebstudio",
  2727. "role": "Developer"
  2728. }
  2729. ],
  2730. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2731. "homepage": "https://github.com/mewebstudio/purifier",
  2732. "keywords": [
  2733. "Purifier",
  2734. "htmlpurifier",
  2735. "laravel5 HtmlPurifier",
  2736. "laravel5 Purifier",
  2737. "laravel5 Security",
  2738. "laravel6 HtmlPurifier",
  2739. "laravel6 Purifier",
  2740. "laravel6 Security",
  2741. "security",
  2742. "xss"
  2743. ],
  2744. "support": {
  2745. "issues": "https://github.com/mewebstudio/Purifier/issues",
  2746. "source": "https://github.com/mewebstudio/Purifier/tree/3.3.3"
  2747. },
  2748. "time": "2020-11-03T19:46:27+00:00"
  2749. },
  2750. {
  2751. "name": "mobiledetect/mobiledetectlib",
  2752. "version": "2.8.34",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2756. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2761. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2762. "shasum": ""
  2763. },
  2764. "require": {
  2765. "php": ">=5.0.0"
  2766. },
  2767. "require-dev": {
  2768. "phpunit/phpunit": "~4.8.35||~5.7"
  2769. },
  2770. "type": "library",
  2771. "autoload": {
  2772. "classmap": [
  2773. "Mobile_Detect.php"
  2774. ],
  2775. "psr-0": {
  2776. "Detection": "namespaced/"
  2777. }
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "Serban Ghita",
  2786. "email": "serbanghita@gmail.com",
  2787. "homepage": "http://mobiledetect.net",
  2788. "role": "Developer"
  2789. }
  2790. ],
  2791. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2792. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2793. "keywords": [
  2794. "detect mobile devices",
  2795. "mobile",
  2796. "mobile detect",
  2797. "mobile detector",
  2798. "php mobile detect"
  2799. ],
  2800. "support": {
  2801. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  2802. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.34"
  2803. },
  2804. "time": "2019-09-18T18:44:20+00:00"
  2805. },
  2806. {
  2807. "name": "monolog/monolog",
  2808. "version": "2.2.0",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/Seldaek/monolog.git",
  2812. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2817. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "php": ">=7.2",
  2822. "psr/log": "^1.0.1"
  2823. },
  2824. "provide": {
  2825. "psr/log-implementation": "1.0.0"
  2826. },
  2827. "require-dev": {
  2828. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2829. "doctrine/couchdb": "~1.0@dev",
  2830. "elasticsearch/elasticsearch": "^7",
  2831. "graylog2/gelf-php": "^1.4.2",
  2832. "mongodb/mongodb": "^1.8",
  2833. "php-amqplib/php-amqplib": "~2.4",
  2834. "php-console/php-console": "^3.1.3",
  2835. "phpspec/prophecy": "^1.6.1",
  2836. "phpstan/phpstan": "^0.12.59",
  2837. "phpunit/phpunit": "^8.5",
  2838. "predis/predis": "^1.1",
  2839. "rollbar/rollbar": "^1.3",
  2840. "ruflin/elastica": ">=0.90 <7.0.1",
  2841. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2842. },
  2843. "suggest": {
  2844. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2845. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2846. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2847. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2848. "ext-mbstring": "Allow to work properly with unicode symbols",
  2849. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2850. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2851. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2852. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2853. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2854. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2855. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2856. },
  2857. "type": "library",
  2858. "extra": {
  2859. "branch-alias": {
  2860. "dev-main": "2.x-dev"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "psr-4": {
  2865. "Monolog\\": "src/Monolog"
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Jordi Boggiano",
  2875. "email": "j.boggiano@seld.be",
  2876. "homepage": "https://seld.be"
  2877. }
  2878. ],
  2879. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2880. "homepage": "https://github.com/Seldaek/monolog",
  2881. "keywords": [
  2882. "log",
  2883. "logging",
  2884. "psr-3"
  2885. ],
  2886. "support": {
  2887. "issues": "https://github.com/Seldaek/monolog/issues",
  2888. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  2889. },
  2890. "funding": [
  2891. {
  2892. "url": "https://github.com/Seldaek",
  2893. "type": "github"
  2894. },
  2895. {
  2896. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2897. "type": "tidelift"
  2898. }
  2899. ],
  2900. "time": "2020-12-14T13:15:25+00:00"
  2901. },
  2902. {
  2903. "name": "myclabs/php-enum",
  2904. "version": "1.7.7",
  2905. "source": {
  2906. "type": "git",
  2907. "url": "https://github.com/myclabs/php-enum.git",
  2908. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  2909. },
  2910. "dist": {
  2911. "type": "zip",
  2912. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  2913. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  2914. "shasum": ""
  2915. },
  2916. "require": {
  2917. "ext-json": "*",
  2918. "php": ">=7.1"
  2919. },
  2920. "require-dev": {
  2921. "phpunit/phpunit": "^7",
  2922. "squizlabs/php_codesniffer": "1.*",
  2923. "vimeo/psalm": "^3.8"
  2924. },
  2925. "type": "library",
  2926. "autoload": {
  2927. "psr-4": {
  2928. "MyCLabs\\Enum\\": "src/"
  2929. }
  2930. },
  2931. "notification-url": "https://packagist.org/downloads/",
  2932. "license": [
  2933. "MIT"
  2934. ],
  2935. "authors": [
  2936. {
  2937. "name": "PHP Enum contributors",
  2938. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2939. }
  2940. ],
  2941. "description": "PHP Enum implementation",
  2942. "homepage": "http://github.com/myclabs/php-enum",
  2943. "keywords": [
  2944. "enum"
  2945. ],
  2946. "support": {
  2947. "issues": "https://github.com/myclabs/php-enum/issues",
  2948. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  2949. },
  2950. "funding": [
  2951. {
  2952. "url": "https://github.com/mnapoli",
  2953. "type": "github"
  2954. },
  2955. {
  2956. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2957. "type": "tidelift"
  2958. }
  2959. ],
  2960. "time": "2020-11-14T18:14:52+00:00"
  2961. },
  2962. {
  2963. "name": "namshi/jose",
  2964. "version": "7.2.3",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/namshi/jose.git",
  2968. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  2973. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "ext-date": "*",
  2978. "ext-hash": "*",
  2979. "ext-json": "*",
  2980. "ext-pcre": "*",
  2981. "ext-spl": "*",
  2982. "php": ">=5.5",
  2983. "symfony/polyfill-php56": "^1.0"
  2984. },
  2985. "require-dev": {
  2986. "phpseclib/phpseclib": "^2.0",
  2987. "phpunit/phpunit": "^4.5|^5.0",
  2988. "satooshi/php-coveralls": "^1.0"
  2989. },
  2990. "suggest": {
  2991. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  2992. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  2993. },
  2994. "type": "library",
  2995. "autoload": {
  2996. "psr-4": {
  2997. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  2998. }
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "Alessandro Nadalin",
  3007. "email": "alessandro.nadalin@gmail.com"
  3008. },
  3009. {
  3010. "name": "Alessandro Cinelli (cirpo)",
  3011. "email": "alessandro.cinelli@gmail.com"
  3012. }
  3013. ],
  3014. "description": "JSON Object Signing and Encryption library for PHP.",
  3015. "keywords": [
  3016. "JSON Web Signature",
  3017. "JSON Web Token",
  3018. "JWS",
  3019. "json",
  3020. "jwt",
  3021. "token"
  3022. ],
  3023. "support": {
  3024. "issues": "https://github.com/namshi/jose/issues",
  3025. "source": "https://github.com/namshi/jose/tree/master"
  3026. },
  3027. "time": "2016-12-05T07:27:31+00:00"
  3028. },
  3029. {
  3030. "name": "nesbot/carbon",
  3031. "version": "2.43.0",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/briannesbitt/Carbon.git",
  3035. "reference": "d32c57d8389113742f4a88725a170236470012e2"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d32c57d8389113742f4a88725a170236470012e2",
  3040. "reference": "d32c57d8389113742f4a88725a170236470012e2",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "ext-json": "*",
  3045. "php": "^7.1.8 || ^8.0",
  3046. "symfony/polyfill-mbstring": "^1.0",
  3047. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3048. },
  3049. "require-dev": {
  3050. "doctrine/orm": "^2.7",
  3051. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3052. "kylekatarnls/multi-tester": "^2.0",
  3053. "phpmd/phpmd": "^2.9",
  3054. "phpstan/extension-installer": "^1.0",
  3055. "phpstan/phpstan": "^0.12.54",
  3056. "phpunit/phpunit": "^7.5 || ^8.0",
  3057. "squizlabs/php_codesniffer": "^3.4"
  3058. },
  3059. "bin": [
  3060. "bin/carbon"
  3061. ],
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-master": "2.x-dev",
  3066. "dev-3.x": "3.x-dev"
  3067. },
  3068. "laravel": {
  3069. "providers": [
  3070. "Carbon\\Laravel\\ServiceProvider"
  3071. ]
  3072. },
  3073. "phpstan": {
  3074. "includes": [
  3075. "extension.neon"
  3076. ]
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Carbon\\": "src/Carbon/"
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Brian Nesbitt",
  3091. "email": "brian@nesbot.com",
  3092. "homepage": "http://nesbot.com"
  3093. },
  3094. {
  3095. "name": "kylekatarnls",
  3096. "homepage": "http://github.com/kylekatarnls"
  3097. }
  3098. ],
  3099. "description": "An API extension for DateTime that supports 281 different languages.",
  3100. "homepage": "http://carbon.nesbot.com",
  3101. "keywords": [
  3102. "date",
  3103. "datetime",
  3104. "time"
  3105. ],
  3106. "support": {
  3107. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3108. "source": "https://github.com/briannesbitt/Carbon"
  3109. },
  3110. "funding": [
  3111. {
  3112. "url": "https://opencollective.com/Carbon",
  3113. "type": "open_collective"
  3114. },
  3115. {
  3116. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3117. "type": "tidelift"
  3118. }
  3119. ],
  3120. "time": "2020-12-17T20:55:32+00:00"
  3121. },
  3122. {
  3123. "name": "nikic/php-parser",
  3124. "version": "v4.10.4",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/nikic/PHP-Parser.git",
  3128. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3133. "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e",
  3134. "shasum": ""
  3135. },
  3136. "require": {
  3137. "ext-tokenizer": "*",
  3138. "php": ">=7.0"
  3139. },
  3140. "require-dev": {
  3141. "ircmaxell/php-yacc": "^0.0.7",
  3142. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3143. },
  3144. "bin": [
  3145. "bin/php-parse"
  3146. ],
  3147. "type": "library",
  3148. "extra": {
  3149. "branch-alias": {
  3150. "dev-master": "4.9-dev"
  3151. }
  3152. },
  3153. "autoload": {
  3154. "psr-4": {
  3155. "PhpParser\\": "lib/PhpParser"
  3156. }
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "BSD-3-Clause"
  3161. ],
  3162. "authors": [
  3163. {
  3164. "name": "Nikita Popov"
  3165. }
  3166. ],
  3167. "description": "A PHP parser written in PHP",
  3168. "keywords": [
  3169. "parser",
  3170. "php"
  3171. ],
  3172. "support": {
  3173. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3174. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4"
  3175. },
  3176. "time": "2020-12-20T10:01:03+00:00"
  3177. },
  3178. {
  3179. "name": "opis/closure",
  3180. "version": "3.6.1",
  3181. "source": {
  3182. "type": "git",
  3183. "url": "https://github.com/opis/closure.git",
  3184. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5"
  3185. },
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://api.github.com/repos/opis/closure/zipball/943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3189. "reference": "943b5d70cc5ae7483f6aff6ff43d7e34592ca0f5",
  3190. "shasum": ""
  3191. },
  3192. "require": {
  3193. "php": "^5.4 || ^7.0 || ^8.0"
  3194. },
  3195. "require-dev": {
  3196. "jeremeamia/superclosure": "^2.0",
  3197. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3198. },
  3199. "type": "library",
  3200. "extra": {
  3201. "branch-alias": {
  3202. "dev-master": "3.6.x-dev"
  3203. }
  3204. },
  3205. "autoload": {
  3206. "psr-4": {
  3207. "Opis\\Closure\\": "src/"
  3208. },
  3209. "files": [
  3210. "functions.php"
  3211. ]
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Marius Sarca",
  3220. "email": "marius.sarca@gmail.com"
  3221. },
  3222. {
  3223. "name": "Sorin Sarca",
  3224. "email": "sarca_sorin@hotmail.com"
  3225. }
  3226. ],
  3227. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3228. "homepage": "https://opis.io/closure",
  3229. "keywords": [
  3230. "anonymous functions",
  3231. "closure",
  3232. "function",
  3233. "serializable",
  3234. "serialization",
  3235. "serialize"
  3236. ],
  3237. "support": {
  3238. "issues": "https://github.com/opis/closure/issues",
  3239. "source": "https://github.com/opis/closure/tree/3.6.1"
  3240. },
  3241. "time": "2020-11-07T02:01:34+00:00"
  3242. },
  3243. {
  3244. "name": "overtrue/laravel-lang",
  3245. "version": "4.2.1",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/overtrue/laravel-lang.git",
  3249. "reference": "653189caa6eac682fa5d15482f271489721231c7"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/653189caa6eac682fa5d15482f271489721231c7",
  3254. "reference": "653189caa6eac682fa5d15482f271489721231c7",
  3255. "shasum": ""
  3256. },
  3257. "require": {
  3258. "ext-json": "*",
  3259. "laravel-lang/lang": "^7.0",
  3260. "symfony/process": "^5.0.0"
  3261. },
  3262. "require-dev": {
  3263. "laravel/framework": "~8.1"
  3264. },
  3265. "type": "library",
  3266. "extra": {
  3267. "laravel": {
  3268. "providers": [
  3269. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  3270. ]
  3271. }
  3272. },
  3273. "autoload": {
  3274. "psr-4": {
  3275. "Overtrue\\LaravelLang\\": "src/"
  3276. }
  3277. },
  3278. "notification-url": "https://packagist.org/downloads/",
  3279. "license": [
  3280. "MIT"
  3281. ],
  3282. "authors": [
  3283. {
  3284. "name": "overtrue",
  3285. "email": "anzhengchao@gmail.com"
  3286. }
  3287. ],
  3288. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  3289. "keywords": [
  3290. "i18n",
  3291. "languages",
  3292. "laravel",
  3293. "locale",
  3294. "overtrue"
  3295. ],
  3296. "support": {
  3297. "issues": "https://github.com/overtrue/laravel-lang/issues",
  3298. "source": "https://github.com/overtrue/laravel-lang/tree/4.2.1"
  3299. },
  3300. "funding": [
  3301. {
  3302. "url": "https://www.patreon.com/overtrue",
  3303. "type": "patreon"
  3304. }
  3305. ],
  3306. "time": "2020-11-12T01:44:31+00:00"
  3307. },
  3308. {
  3309. "name": "phpoffice/phpspreadsheet",
  3310. "version": "1.15.0",
  3311. "source": {
  3312. "type": "git",
  3313. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3314. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f"
  3315. },
  3316. "dist": {
  3317. "type": "zip",
  3318. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3319. "reference": "a8e8068b31b8119e1daa5b1eb5715a3a8ea8305f",
  3320. "shasum": ""
  3321. },
  3322. "require": {
  3323. "ext-ctype": "*",
  3324. "ext-dom": "*",
  3325. "ext-fileinfo": "*",
  3326. "ext-gd": "*",
  3327. "ext-iconv": "*",
  3328. "ext-libxml": "*",
  3329. "ext-mbstring": "*",
  3330. "ext-simplexml": "*",
  3331. "ext-xml": "*",
  3332. "ext-xmlreader": "*",
  3333. "ext-xmlwriter": "*",
  3334. "ext-zip": "*",
  3335. "ext-zlib": "*",
  3336. "maennchen/zipstream-php": "^2.1",
  3337. "markbaker/complex": "^1.5|^2.0",
  3338. "markbaker/matrix": "^1.2|^2.0",
  3339. "php": "^7.2|^8.0",
  3340. "psr/http-client": "^1.0",
  3341. "psr/http-factory": "^1.0",
  3342. "psr/simple-cache": "^1.0"
  3343. },
  3344. "require-dev": {
  3345. "dompdf/dompdf": "^0.8.5",
  3346. "friendsofphp/php-cs-fixer": "^2.16",
  3347. "jpgraph/jpgraph": "^4.0",
  3348. "mpdf/mpdf": "^8.0",
  3349. "phpcompatibility/php-compatibility": "^9.3",
  3350. "phpunit/phpunit": "^8.5|^9.3",
  3351. "squizlabs/php_codesniffer": "^3.5",
  3352. "tecnickcom/tcpdf": "^6.3"
  3353. },
  3354. "suggest": {
  3355. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3356. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3357. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3358. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3359. },
  3360. "type": "library",
  3361. "autoload": {
  3362. "psr-4": {
  3363. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3364. }
  3365. },
  3366. "notification-url": "https://packagist.org/downloads/",
  3367. "license": [
  3368. "MIT"
  3369. ],
  3370. "authors": [
  3371. {
  3372. "name": "Maarten Balliauw",
  3373. "homepage": "https://blog.maartenballiauw.be"
  3374. },
  3375. {
  3376. "name": "Mark Baker",
  3377. "homepage": "https://markbakeruk.net"
  3378. },
  3379. {
  3380. "name": "Franck Lefevre",
  3381. "homepage": "https://rootslabs.net"
  3382. },
  3383. {
  3384. "name": "Erik Tilt"
  3385. },
  3386. {
  3387. "name": "Adrien Crivelli"
  3388. }
  3389. ],
  3390. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3391. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3392. "keywords": [
  3393. "OpenXML",
  3394. "excel",
  3395. "gnumeric",
  3396. "ods",
  3397. "php",
  3398. "spreadsheet",
  3399. "xls",
  3400. "xlsx"
  3401. ],
  3402. "support": {
  3403. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3404. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.15.0"
  3405. },
  3406. "time": "2020-10-11T13:20:59+00:00"
  3407. },
  3408. {
  3409. "name": "phpoption/phpoption",
  3410. "version": "1.7.5",
  3411. "source": {
  3412. "type": "git",
  3413. "url": "https://github.com/schmittjoh/php-option.git",
  3414. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3415. },
  3416. "dist": {
  3417. "type": "zip",
  3418. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3419. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3420. "shasum": ""
  3421. },
  3422. "require": {
  3423. "php": "^5.5.9 || ^7.0 || ^8.0"
  3424. },
  3425. "require-dev": {
  3426. "bamarni/composer-bin-plugin": "^1.4.1",
  3427. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3428. },
  3429. "type": "library",
  3430. "extra": {
  3431. "branch-alias": {
  3432. "dev-master": "1.7-dev"
  3433. }
  3434. },
  3435. "autoload": {
  3436. "psr-4": {
  3437. "PhpOption\\": "src/PhpOption/"
  3438. }
  3439. },
  3440. "notification-url": "https://packagist.org/downloads/",
  3441. "license": [
  3442. "Apache-2.0"
  3443. ],
  3444. "authors": [
  3445. {
  3446. "name": "Johannes M. Schmitt",
  3447. "email": "schmittjoh@gmail.com"
  3448. },
  3449. {
  3450. "name": "Graham Campbell",
  3451. "email": "graham@alt-three.com"
  3452. }
  3453. ],
  3454. "description": "Option Type for PHP",
  3455. "keywords": [
  3456. "language",
  3457. "option",
  3458. "php",
  3459. "type"
  3460. ],
  3461. "support": {
  3462. "issues": "https://github.com/schmittjoh/php-option/issues",
  3463. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3464. },
  3465. "funding": [
  3466. {
  3467. "url": "https://github.com/GrahamCampbell",
  3468. "type": "github"
  3469. },
  3470. {
  3471. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3472. "type": "tidelift"
  3473. }
  3474. ],
  3475. "time": "2020-07-20T17:29:33+00:00"
  3476. },
  3477. {
  3478. "name": "psr/container",
  3479. "version": "1.0.0",
  3480. "source": {
  3481. "type": "git",
  3482. "url": "https://github.com/php-fig/container.git",
  3483. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3484. },
  3485. "dist": {
  3486. "type": "zip",
  3487. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3488. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3489. "shasum": ""
  3490. },
  3491. "require": {
  3492. "php": ">=5.3.0"
  3493. },
  3494. "type": "library",
  3495. "extra": {
  3496. "branch-alias": {
  3497. "dev-master": "1.0.x-dev"
  3498. }
  3499. },
  3500. "autoload": {
  3501. "psr-4": {
  3502. "Psr\\Container\\": "src/"
  3503. }
  3504. },
  3505. "notification-url": "https://packagist.org/downloads/",
  3506. "license": [
  3507. "MIT"
  3508. ],
  3509. "authors": [
  3510. {
  3511. "name": "PHP-FIG",
  3512. "homepage": "http://www.php-fig.org/"
  3513. }
  3514. ],
  3515. "description": "Common Container Interface (PHP FIG PSR-11)",
  3516. "homepage": "https://github.com/php-fig/container",
  3517. "keywords": [
  3518. "PSR-11",
  3519. "container",
  3520. "container-interface",
  3521. "container-interop",
  3522. "psr"
  3523. ],
  3524. "support": {
  3525. "issues": "https://github.com/php-fig/container/issues",
  3526. "source": "https://github.com/php-fig/container/tree/master"
  3527. },
  3528. "time": "2017-02-14T16:28:37+00:00"
  3529. },
  3530. {
  3531. "name": "psr/event-dispatcher",
  3532. "version": "1.0.0",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/php-fig/event-dispatcher.git",
  3536. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3541. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "php": ">=7.2.0"
  3546. },
  3547. "type": "library",
  3548. "extra": {
  3549. "branch-alias": {
  3550. "dev-master": "1.0.x-dev"
  3551. }
  3552. },
  3553. "autoload": {
  3554. "psr-4": {
  3555. "Psr\\EventDispatcher\\": "src/"
  3556. }
  3557. },
  3558. "notification-url": "https://packagist.org/downloads/",
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "authors": [
  3563. {
  3564. "name": "PHP-FIG",
  3565. "homepage": "http://www.php-fig.org/"
  3566. }
  3567. ],
  3568. "description": "Standard interfaces for event handling.",
  3569. "keywords": [
  3570. "events",
  3571. "psr",
  3572. "psr-14"
  3573. ],
  3574. "support": {
  3575. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3576. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3577. },
  3578. "time": "2019-01-08T18:20:26+00:00"
  3579. },
  3580. {
  3581. "name": "psr/http-client",
  3582. "version": "1.0.1",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/php-fig/http-client.git",
  3586. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3591. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3592. "shasum": ""
  3593. },
  3594. "require": {
  3595. "php": "^7.0 || ^8.0",
  3596. "psr/http-message": "^1.0"
  3597. },
  3598. "type": "library",
  3599. "extra": {
  3600. "branch-alias": {
  3601. "dev-master": "1.0.x-dev"
  3602. }
  3603. },
  3604. "autoload": {
  3605. "psr-4": {
  3606. "Psr\\Http\\Client\\": "src/"
  3607. }
  3608. },
  3609. "notification-url": "https://packagist.org/downloads/",
  3610. "license": [
  3611. "MIT"
  3612. ],
  3613. "authors": [
  3614. {
  3615. "name": "PHP-FIG",
  3616. "homepage": "http://www.php-fig.org/"
  3617. }
  3618. ],
  3619. "description": "Common interface for HTTP clients",
  3620. "homepage": "https://github.com/php-fig/http-client",
  3621. "keywords": [
  3622. "http",
  3623. "http-client",
  3624. "psr",
  3625. "psr-18"
  3626. ],
  3627. "support": {
  3628. "source": "https://github.com/php-fig/http-client/tree/master"
  3629. },
  3630. "time": "2020-06-29T06:28:15+00:00"
  3631. },
  3632. {
  3633. "name": "psr/http-factory",
  3634. "version": "1.0.1",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/php-fig/http-factory.git",
  3638. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3643. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "php": ">=7.0.0",
  3648. "psr/http-message": "^1.0"
  3649. },
  3650. "type": "library",
  3651. "extra": {
  3652. "branch-alias": {
  3653. "dev-master": "1.0.x-dev"
  3654. }
  3655. },
  3656. "autoload": {
  3657. "psr-4": {
  3658. "Psr\\Http\\Message\\": "src/"
  3659. }
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "MIT"
  3664. ],
  3665. "authors": [
  3666. {
  3667. "name": "PHP-FIG",
  3668. "homepage": "http://www.php-fig.org/"
  3669. }
  3670. ],
  3671. "description": "Common interfaces for PSR-7 HTTP message factories",
  3672. "keywords": [
  3673. "factory",
  3674. "http",
  3675. "message",
  3676. "psr",
  3677. "psr-17",
  3678. "psr-7",
  3679. "request",
  3680. "response"
  3681. ],
  3682. "support": {
  3683. "source": "https://github.com/php-fig/http-factory/tree/master"
  3684. },
  3685. "time": "2019-04-30T12:38:16+00:00"
  3686. },
  3687. {
  3688. "name": "psr/http-message",
  3689. "version": "1.0.1",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/php-fig/http-message.git",
  3693. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3698. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "php": ">=5.3.0"
  3703. },
  3704. "type": "library",
  3705. "extra": {
  3706. "branch-alias": {
  3707. "dev-master": "1.0.x-dev"
  3708. }
  3709. },
  3710. "autoload": {
  3711. "psr-4": {
  3712. "Psr\\Http\\Message\\": "src/"
  3713. }
  3714. },
  3715. "notification-url": "https://packagist.org/downloads/",
  3716. "license": [
  3717. "MIT"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "PHP-FIG",
  3722. "homepage": "http://www.php-fig.org/"
  3723. }
  3724. ],
  3725. "description": "Common interface for HTTP messages",
  3726. "homepage": "https://github.com/php-fig/http-message",
  3727. "keywords": [
  3728. "http",
  3729. "http-message",
  3730. "psr",
  3731. "psr-7",
  3732. "request",
  3733. "response"
  3734. ],
  3735. "support": {
  3736. "source": "https://github.com/php-fig/http-message/tree/master"
  3737. },
  3738. "time": "2016-08-06T14:39:51+00:00"
  3739. },
  3740. {
  3741. "name": "psr/log",
  3742. "version": "1.1.3",
  3743. "source": {
  3744. "type": "git",
  3745. "url": "https://github.com/php-fig/log.git",
  3746. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3747. },
  3748. "dist": {
  3749. "type": "zip",
  3750. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3751. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3752. "shasum": ""
  3753. },
  3754. "require": {
  3755. "php": ">=5.3.0"
  3756. },
  3757. "type": "library",
  3758. "extra": {
  3759. "branch-alias": {
  3760. "dev-master": "1.1.x-dev"
  3761. }
  3762. },
  3763. "autoload": {
  3764. "psr-4": {
  3765. "Psr\\Log\\": "Psr/Log/"
  3766. }
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "PHP-FIG",
  3775. "homepage": "http://www.php-fig.org/"
  3776. }
  3777. ],
  3778. "description": "Common interface for logging libraries",
  3779. "homepage": "https://github.com/php-fig/log",
  3780. "keywords": [
  3781. "log",
  3782. "psr",
  3783. "psr-3"
  3784. ],
  3785. "support": {
  3786. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3787. },
  3788. "time": "2020-03-23T09:12:05+00:00"
  3789. },
  3790. {
  3791. "name": "psr/simple-cache",
  3792. "version": "1.0.1",
  3793. "source": {
  3794. "type": "git",
  3795. "url": "https://github.com/php-fig/simple-cache.git",
  3796. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3797. },
  3798. "dist": {
  3799. "type": "zip",
  3800. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3801. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3802. "shasum": ""
  3803. },
  3804. "require": {
  3805. "php": ">=5.3.0"
  3806. },
  3807. "type": "library",
  3808. "extra": {
  3809. "branch-alias": {
  3810. "dev-master": "1.0.x-dev"
  3811. }
  3812. },
  3813. "autoload": {
  3814. "psr-4": {
  3815. "Psr\\SimpleCache\\": "src/"
  3816. }
  3817. },
  3818. "notification-url": "https://packagist.org/downloads/",
  3819. "license": [
  3820. "MIT"
  3821. ],
  3822. "authors": [
  3823. {
  3824. "name": "PHP-FIG",
  3825. "homepage": "http://www.php-fig.org/"
  3826. }
  3827. ],
  3828. "description": "Common interfaces for simple caching",
  3829. "keywords": [
  3830. "cache",
  3831. "caching",
  3832. "psr",
  3833. "psr-16",
  3834. "simple-cache"
  3835. ],
  3836. "support": {
  3837. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3838. },
  3839. "time": "2017-10-23T01:57:42+00:00"
  3840. },
  3841. {
  3842. "name": "psy/psysh",
  3843. "version": "v0.10.5",
  3844. "source": {
  3845. "type": "git",
  3846. "url": "https://github.com/bobthecow/psysh.git",
  3847. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  3848. },
  3849. "dist": {
  3850. "type": "zip",
  3851. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  3852. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  3853. "shasum": ""
  3854. },
  3855. "require": {
  3856. "dnoegel/php-xdg-base-dir": "0.1.*",
  3857. "ext-json": "*",
  3858. "ext-tokenizer": "*",
  3859. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3860. "php": "^8.0 || ^7.0 || ^5.5.9",
  3861. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3862. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3863. },
  3864. "require-dev": {
  3865. "bamarni/composer-bin-plugin": "^1.2",
  3866. "hoa/console": "3.17.*"
  3867. },
  3868. "suggest": {
  3869. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3870. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3871. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3872. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3873. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3874. },
  3875. "bin": [
  3876. "bin/psysh"
  3877. ],
  3878. "type": "library",
  3879. "extra": {
  3880. "branch-alias": {
  3881. "dev-master": "0.10.x-dev"
  3882. }
  3883. },
  3884. "autoload": {
  3885. "files": [
  3886. "src/functions.php"
  3887. ],
  3888. "psr-4": {
  3889. "Psy\\": "src/"
  3890. }
  3891. },
  3892. "notification-url": "https://packagist.org/downloads/",
  3893. "license": [
  3894. "MIT"
  3895. ],
  3896. "authors": [
  3897. {
  3898. "name": "Justin Hileman",
  3899. "email": "justin@justinhileman.info",
  3900. "homepage": "http://justinhileman.com"
  3901. }
  3902. ],
  3903. "description": "An interactive shell for modern PHP.",
  3904. "homepage": "http://psysh.org",
  3905. "keywords": [
  3906. "REPL",
  3907. "console",
  3908. "interactive",
  3909. "shell"
  3910. ],
  3911. "support": {
  3912. "issues": "https://github.com/bobthecow/psysh/issues",
  3913. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  3914. },
  3915. "time": "2020-12-04T02:51:30+00:00"
  3916. },
  3917. {
  3918. "name": "ralouphie/getallheaders",
  3919. "version": "3.0.3",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/ralouphie/getallheaders.git",
  3923. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3928. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3929. "shasum": ""
  3930. },
  3931. "require": {
  3932. "php": ">=5.6"
  3933. },
  3934. "require-dev": {
  3935. "php-coveralls/php-coveralls": "^2.1",
  3936. "phpunit/phpunit": "^5 || ^6.5"
  3937. },
  3938. "type": "library",
  3939. "autoload": {
  3940. "files": [
  3941. "src/getallheaders.php"
  3942. ]
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "authors": [
  3949. {
  3950. "name": "Ralph Khattar",
  3951. "email": "ralph.khattar@gmail.com"
  3952. }
  3953. ],
  3954. "description": "A polyfill for getallheaders.",
  3955. "support": {
  3956. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3957. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3958. },
  3959. "time": "2019-03-08T08:55:37+00:00"
  3960. },
  3961. {
  3962. "name": "ramsey/collection",
  3963. "version": "1.1.1",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://github.com/ramsey/collection.git",
  3967. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3968. },
  3969. "dist": {
  3970. "type": "zip",
  3971. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3972. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3973. "shasum": ""
  3974. },
  3975. "require": {
  3976. "php": "^7.2 || ^8"
  3977. },
  3978. "require-dev": {
  3979. "captainhook/captainhook": "^5.3",
  3980. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3981. "ergebnis/composer-normalize": "^2.6",
  3982. "fzaninotto/faker": "^1.5",
  3983. "hamcrest/hamcrest-php": "^2",
  3984. "jangregor/phpstan-prophecy": "^0.6",
  3985. "mockery/mockery": "^1.3",
  3986. "phpstan/extension-installer": "^1",
  3987. "phpstan/phpstan": "^0.12.32",
  3988. "phpstan/phpstan-mockery": "^0.12.5",
  3989. "phpstan/phpstan-phpunit": "^0.12.11",
  3990. "phpunit/phpunit": "^8.5",
  3991. "psy/psysh": "^0.10.4",
  3992. "slevomat/coding-standard": "^6.3",
  3993. "squizlabs/php_codesniffer": "^3.5",
  3994. "vimeo/psalm": "^3.12.2"
  3995. },
  3996. "type": "library",
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Ramsey\\Collection\\": "src/"
  4000. }
  4001. },
  4002. "notification-url": "https://packagist.org/downloads/",
  4003. "license": [
  4004. "MIT"
  4005. ],
  4006. "authors": [
  4007. {
  4008. "name": "Ben Ramsey",
  4009. "email": "ben@benramsey.com",
  4010. "homepage": "https://benramsey.com"
  4011. }
  4012. ],
  4013. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4014. "keywords": [
  4015. "array",
  4016. "collection",
  4017. "hash",
  4018. "map",
  4019. "queue",
  4020. "set"
  4021. ],
  4022. "support": {
  4023. "issues": "https://github.com/ramsey/collection/issues",
  4024. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  4025. },
  4026. "funding": [
  4027. {
  4028. "url": "https://github.com/ramsey",
  4029. "type": "github"
  4030. }
  4031. ],
  4032. "time": "2020-09-10T20:58:17+00:00"
  4033. },
  4034. {
  4035. "name": "ramsey/uuid",
  4036. "version": "4.1.1",
  4037. "source": {
  4038. "type": "git",
  4039. "url": "https://github.com/ramsey/uuid.git",
  4040. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4041. },
  4042. "dist": {
  4043. "type": "zip",
  4044. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4045. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4046. "shasum": ""
  4047. },
  4048. "require": {
  4049. "brick/math": "^0.8 || ^0.9",
  4050. "ext-json": "*",
  4051. "php": "^7.2 || ^8",
  4052. "ramsey/collection": "^1.0",
  4053. "symfony/polyfill-ctype": "^1.8"
  4054. },
  4055. "replace": {
  4056. "rhumsaa/uuid": "self.version"
  4057. },
  4058. "require-dev": {
  4059. "codeception/aspect-mock": "^3",
  4060. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4061. "doctrine/annotations": "^1.8",
  4062. "goaop/framework": "^2",
  4063. "mockery/mockery": "^1.3",
  4064. "moontoast/math": "^1.1",
  4065. "paragonie/random-lib": "^2",
  4066. "php-mock/php-mock-mockery": "^1.3",
  4067. "php-mock/php-mock-phpunit": "^2.5",
  4068. "php-parallel-lint/php-parallel-lint": "^1.1",
  4069. "phpbench/phpbench": "^0.17.1",
  4070. "phpstan/extension-installer": "^1.0",
  4071. "phpstan/phpstan": "^0.12",
  4072. "phpstan/phpstan-mockery": "^0.12",
  4073. "phpstan/phpstan-phpunit": "^0.12",
  4074. "phpunit/phpunit": "^8.5",
  4075. "psy/psysh": "^0.10.0",
  4076. "slevomat/coding-standard": "^6.0",
  4077. "squizlabs/php_codesniffer": "^3.5",
  4078. "vimeo/psalm": "3.9.4"
  4079. },
  4080. "suggest": {
  4081. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4082. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4083. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4084. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4085. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4086. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4087. },
  4088. "type": "library",
  4089. "extra": {
  4090. "branch-alias": {
  4091. "dev-master": "4.x-dev"
  4092. }
  4093. },
  4094. "autoload": {
  4095. "psr-4": {
  4096. "Ramsey\\Uuid\\": "src/"
  4097. },
  4098. "files": [
  4099. "src/functions.php"
  4100. ]
  4101. },
  4102. "notification-url": "https://packagist.org/downloads/",
  4103. "license": [
  4104. "MIT"
  4105. ],
  4106. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4107. "homepage": "https://github.com/ramsey/uuid",
  4108. "keywords": [
  4109. "guid",
  4110. "identifier",
  4111. "uuid"
  4112. ],
  4113. "support": {
  4114. "issues": "https://github.com/ramsey/uuid/issues",
  4115. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4116. "source": "https://github.com/ramsey/uuid"
  4117. },
  4118. "funding": [
  4119. {
  4120. "url": "https://github.com/ramsey",
  4121. "type": "github"
  4122. }
  4123. ],
  4124. "time": "2020-08-18T17:17:46+00:00"
  4125. },
  4126. {
  4127. "name": "rap2hpoutre/laravel-log-viewer",
  4128. "version": "v1.7.0",
  4129. "source": {
  4130. "type": "git",
  4131. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4132. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4133. },
  4134. "dist": {
  4135. "type": "zip",
  4136. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4137. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4138. "shasum": ""
  4139. },
  4140. "require": {
  4141. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4142. "php": ">=5.4.0"
  4143. },
  4144. "require-dev": {
  4145. "orchestra/testbench": "3.7.*",
  4146. "phpunit/phpunit": "^7"
  4147. },
  4148. "type": "laravel-package",
  4149. "extra": {
  4150. "laravel": {
  4151. "providers": [
  4152. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4153. ]
  4154. }
  4155. },
  4156. "autoload": {
  4157. "classmap": [
  4158. "src/controllers"
  4159. ],
  4160. "psr-0": {
  4161. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4162. }
  4163. },
  4164. "notification-url": "https://packagist.org/downloads/",
  4165. "license": [
  4166. "MIT"
  4167. ],
  4168. "authors": [
  4169. {
  4170. "name": "rap2hpoutre",
  4171. "email": "raphaelht@gmail.com"
  4172. }
  4173. ],
  4174. "description": "A Laravel log reader",
  4175. "keywords": [
  4176. "laravel",
  4177. "log",
  4178. "log-reader",
  4179. "log-viewer",
  4180. "logging",
  4181. "lumen"
  4182. ],
  4183. "support": {
  4184. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4185. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4186. },
  4187. "time": "2020-09-08T12:21:27+00:00"
  4188. },
  4189. {
  4190. "name": "riverslei/payment",
  4191. "version": "v5.1.0",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://github.com/helei112g/payment.git",
  4195. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4200. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4201. "shasum": ""
  4202. },
  4203. "require": {
  4204. "ext-bcmath": "*",
  4205. "ext-json": "*",
  4206. "ext-mbstring": "*",
  4207. "ext-openssl": "*",
  4208. "ext-simplexml": "*",
  4209. "ext-xml": "*",
  4210. "guzzlehttp/guzzle": "~6.0",
  4211. "php": ">=7.0"
  4212. },
  4213. "require-dev": {
  4214. "codeception/codeception": "*"
  4215. },
  4216. "type": "library",
  4217. "autoload": {
  4218. "psr-4": {
  4219. "Payment\\": "src/"
  4220. }
  4221. },
  4222. "notification-url": "https://packagist.org/downloads/",
  4223. "license": [
  4224. "MIT"
  4225. ],
  4226. "authors": [
  4227. {
  4228. "name": "Leo",
  4229. "email": "dayugog@gmail.com",
  4230. "homepage": "https://dayutalk.cn"
  4231. }
  4232. ],
  4233. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4234. "homepage": "http://helei112g.github.io/payment",
  4235. "keywords": [
  4236. "alipay",
  4237. "weixin",
  4238. "一网通",
  4239. "微信支付",
  4240. "招商一网通",
  4241. "支付宝支付",
  4242. "集成支付接口SDK"
  4243. ],
  4244. "support": {
  4245. "issues": "https://github.com/helei112g/payment/issues",
  4246. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4247. },
  4248. "time": "2020-05-04T03:07:17+00:00"
  4249. },
  4250. {
  4251. "name": "spatie/laravel-permission",
  4252. "version": "3.18.0",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/spatie/laravel-permission.git",
  4256. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4261. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4266. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4267. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4268. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4269. "php": "^7.2.5|^8.0"
  4270. },
  4271. "require-dev": {
  4272. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4273. "phpunit/phpunit": "^8.0|^9.0",
  4274. "predis/predis": "^1.1"
  4275. },
  4276. "type": "library",
  4277. "extra": {
  4278. "laravel": {
  4279. "providers": [
  4280. "Spatie\\Permission\\PermissionServiceProvider"
  4281. ]
  4282. }
  4283. },
  4284. "autoload": {
  4285. "psr-4": {
  4286. "Spatie\\Permission\\": "src"
  4287. },
  4288. "files": [
  4289. "src/helpers.php"
  4290. ]
  4291. },
  4292. "notification-url": "https://packagist.org/downloads/",
  4293. "license": [
  4294. "MIT"
  4295. ],
  4296. "authors": [
  4297. {
  4298. "name": "Freek Van der Herten",
  4299. "email": "freek@spatie.be",
  4300. "homepage": "https://spatie.be",
  4301. "role": "Developer"
  4302. }
  4303. ],
  4304. "description": "Permission handling for Laravel 5.8 and up",
  4305. "homepage": "https://github.com/spatie/laravel-permission",
  4306. "keywords": [
  4307. "acl",
  4308. "laravel",
  4309. "permission",
  4310. "permissions",
  4311. "rbac",
  4312. "roles",
  4313. "security",
  4314. "spatie"
  4315. ],
  4316. "support": {
  4317. "issues": "https://github.com/spatie/laravel-permission/issues",
  4318. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4319. },
  4320. "funding": [
  4321. {
  4322. "url": "https://github.com/spatie",
  4323. "type": "github"
  4324. }
  4325. ],
  4326. "time": "2020-11-09T14:08:36+00:00"
  4327. },
  4328. {
  4329. "name": "srmklive/paypal",
  4330. "version": "1.8.0",
  4331. "source": {
  4332. "type": "git",
  4333. "url": "https://github.com/srmklive/laravel-paypal.git",
  4334. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4335. },
  4336. "dist": {
  4337. "type": "zip",
  4338. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4339. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4340. "shasum": ""
  4341. },
  4342. "require": {
  4343. "guzzlehttp/guzzle": "~6.0|~7.0",
  4344. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4345. "nesbot/carbon": "~1.0|~2.0"
  4346. },
  4347. "type": "library",
  4348. "extra": {
  4349. "laravel": {
  4350. "providers": [
  4351. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4352. ],
  4353. "aliases": {
  4354. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4355. }
  4356. }
  4357. },
  4358. "autoload": {
  4359. "psr-4": {
  4360. "Srmklive\\PayPal\\": "src/"
  4361. }
  4362. },
  4363. "notification-url": "https://packagist.org/downloads/",
  4364. "license": [
  4365. "MIT"
  4366. ],
  4367. "authors": [
  4368. {
  4369. "name": "Raza Mehdi",
  4370. "email": "srmk@outlook.com"
  4371. }
  4372. ],
  4373. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4374. "keywords": [
  4375. "http",
  4376. "laravel paypal",
  4377. "paypal",
  4378. "rest",
  4379. "web service"
  4380. ],
  4381. "support": {
  4382. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4383. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4384. },
  4385. "time": "2020-09-03T07:50:08+00:00"
  4386. },
  4387. {
  4388. "name": "stripe/stripe-php",
  4389. "version": "v7.67.0",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://github.com/stripe/stripe-php.git",
  4393. "reference": "935d2c67912007f6d17b6c08a62050252c509129"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/935d2c67912007f6d17b6c08a62050252c509129",
  4398. "reference": "935d2c67912007f6d17b6c08a62050252c509129",
  4399. "shasum": ""
  4400. },
  4401. "require": {
  4402. "ext-curl": "*",
  4403. "ext-json": "*",
  4404. "ext-mbstring": "*",
  4405. "php": ">=5.6.0"
  4406. },
  4407. "require-dev": {
  4408. "friendsofphp/php-cs-fixer": "2.17.1",
  4409. "php-coveralls/php-coveralls": "^2.1",
  4410. "phpunit/phpunit": "^5.7",
  4411. "squizlabs/php_codesniffer": "^3.3",
  4412. "symfony/process": "~3.4"
  4413. },
  4414. "type": "library",
  4415. "extra": {
  4416. "branch-alias": {
  4417. "dev-master": "2.0-dev"
  4418. }
  4419. },
  4420. "autoload": {
  4421. "psr-4": {
  4422. "Stripe\\": "lib/"
  4423. }
  4424. },
  4425. "notification-url": "https://packagist.org/downloads/",
  4426. "license": [
  4427. "MIT"
  4428. ],
  4429. "authors": [
  4430. {
  4431. "name": "Stripe and contributors",
  4432. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4433. }
  4434. ],
  4435. "description": "Stripe PHP Library",
  4436. "homepage": "https://stripe.com/",
  4437. "keywords": [
  4438. "api",
  4439. "payment processing",
  4440. "stripe"
  4441. ],
  4442. "support": {
  4443. "issues": "https://github.com/stripe/stripe-php/issues",
  4444. "source": "https://github.com/stripe/stripe-php/tree/v7.67.0"
  4445. },
  4446. "time": "2020-12-09T19:00:34+00:00"
  4447. },
  4448. {
  4449. "name": "swiftmailer/swiftmailer",
  4450. "version": "v6.2.4",
  4451. "source": {
  4452. "type": "git",
  4453. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4454. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4455. },
  4456. "dist": {
  4457. "type": "zip",
  4458. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4459. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4460. "shasum": ""
  4461. },
  4462. "require": {
  4463. "egulias/email-validator": "^2.0",
  4464. "php": ">=7.0.0",
  4465. "symfony/polyfill-iconv": "^1.0",
  4466. "symfony/polyfill-intl-idn": "^1.10",
  4467. "symfony/polyfill-mbstring": "^1.0"
  4468. },
  4469. "require-dev": {
  4470. "mockery/mockery": "^1.0",
  4471. "symfony/phpunit-bridge": "^4.4|^5.0"
  4472. },
  4473. "suggest": {
  4474. "ext-intl": "Needed to support internationalized email addresses"
  4475. },
  4476. "type": "library",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "6.2-dev"
  4480. }
  4481. },
  4482. "autoload": {
  4483. "files": [
  4484. "lib/swift_required.php"
  4485. ]
  4486. },
  4487. "notification-url": "https://packagist.org/downloads/",
  4488. "license": [
  4489. "MIT"
  4490. ],
  4491. "authors": [
  4492. {
  4493. "name": "Chris Corbyn"
  4494. },
  4495. {
  4496. "name": "Fabien Potencier",
  4497. "email": "fabien@symfony.com"
  4498. }
  4499. ],
  4500. "description": "Swiftmailer, free feature-rich PHP mailer",
  4501. "homepage": "https://swiftmailer.symfony.com",
  4502. "keywords": [
  4503. "email",
  4504. "mail",
  4505. "mailer"
  4506. ],
  4507. "support": {
  4508. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4509. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4510. },
  4511. "funding": [
  4512. {
  4513. "url": "https://github.com/fabpot",
  4514. "type": "github"
  4515. },
  4516. {
  4517. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4518. "type": "tidelift"
  4519. }
  4520. ],
  4521. "time": "2020-12-08T18:02:06+00:00"
  4522. },
  4523. {
  4524. "name": "symfony/console",
  4525. "version": "v5.2.1",
  4526. "source": {
  4527. "type": "git",
  4528. "url": "https://github.com/symfony/console.git",
  4529. "reference": "47c02526c532fb381374dab26df05e7313978976"
  4530. },
  4531. "dist": {
  4532. "type": "zip",
  4533. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  4534. "reference": "47c02526c532fb381374dab26df05e7313978976",
  4535. "shasum": ""
  4536. },
  4537. "require": {
  4538. "php": ">=7.2.5",
  4539. "symfony/polyfill-mbstring": "~1.0",
  4540. "symfony/polyfill-php73": "^1.8",
  4541. "symfony/polyfill-php80": "^1.15",
  4542. "symfony/service-contracts": "^1.1|^2",
  4543. "symfony/string": "^5.1"
  4544. },
  4545. "conflict": {
  4546. "symfony/dependency-injection": "<4.4",
  4547. "symfony/dotenv": "<5.1",
  4548. "symfony/event-dispatcher": "<4.4",
  4549. "symfony/lock": "<4.4",
  4550. "symfony/process": "<4.4"
  4551. },
  4552. "provide": {
  4553. "psr/log-implementation": "1.0"
  4554. },
  4555. "require-dev": {
  4556. "psr/log": "~1.0",
  4557. "symfony/config": "^4.4|^5.0",
  4558. "symfony/dependency-injection": "^4.4|^5.0",
  4559. "symfony/event-dispatcher": "^4.4|^5.0",
  4560. "symfony/lock": "^4.4|^5.0",
  4561. "symfony/process": "^4.4|^5.0",
  4562. "symfony/var-dumper": "^4.4|^5.0"
  4563. },
  4564. "suggest": {
  4565. "psr/log": "For using the console logger",
  4566. "symfony/event-dispatcher": "",
  4567. "symfony/lock": "",
  4568. "symfony/process": ""
  4569. },
  4570. "type": "library",
  4571. "autoload": {
  4572. "psr-4": {
  4573. "Symfony\\Component\\Console\\": ""
  4574. },
  4575. "exclude-from-classmap": [
  4576. "/Tests/"
  4577. ]
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "MIT"
  4582. ],
  4583. "authors": [
  4584. {
  4585. "name": "Fabien Potencier",
  4586. "email": "fabien@symfony.com"
  4587. },
  4588. {
  4589. "name": "Symfony Community",
  4590. "homepage": "https://symfony.com/contributors"
  4591. }
  4592. ],
  4593. "description": "Symfony Console Component",
  4594. "homepage": "https://symfony.com",
  4595. "keywords": [
  4596. "cli",
  4597. "command line",
  4598. "console",
  4599. "terminal"
  4600. ],
  4601. "support": {
  4602. "source": "https://github.com/symfony/console/tree/v5.2.1"
  4603. },
  4604. "funding": [
  4605. {
  4606. "url": "https://symfony.com/sponsor",
  4607. "type": "custom"
  4608. },
  4609. {
  4610. "url": "https://github.com/fabpot",
  4611. "type": "github"
  4612. },
  4613. {
  4614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4615. "type": "tidelift"
  4616. }
  4617. ],
  4618. "time": "2020-12-18T08:03:05+00:00"
  4619. },
  4620. {
  4621. "name": "symfony/css-selector",
  4622. "version": "v5.2.1",
  4623. "source": {
  4624. "type": "git",
  4625. "url": "https://github.com/symfony/css-selector.git",
  4626. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  4627. },
  4628. "dist": {
  4629. "type": "zip",
  4630. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4631. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4632. "shasum": ""
  4633. },
  4634. "require": {
  4635. "php": ">=7.2.5"
  4636. },
  4637. "type": "library",
  4638. "autoload": {
  4639. "psr-4": {
  4640. "Symfony\\Component\\CssSelector\\": ""
  4641. },
  4642. "exclude-from-classmap": [
  4643. "/Tests/"
  4644. ]
  4645. },
  4646. "notification-url": "https://packagist.org/downloads/",
  4647. "license": [
  4648. "MIT"
  4649. ],
  4650. "authors": [
  4651. {
  4652. "name": "Fabien Potencier",
  4653. "email": "fabien@symfony.com"
  4654. },
  4655. {
  4656. "name": "Jean-François Simon",
  4657. "email": "jeanfrancois.simon@sensiolabs.com"
  4658. },
  4659. {
  4660. "name": "Symfony Community",
  4661. "homepage": "https://symfony.com/contributors"
  4662. }
  4663. ],
  4664. "description": "Symfony CssSelector Component",
  4665. "homepage": "https://symfony.com",
  4666. "support": {
  4667. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  4668. },
  4669. "funding": [
  4670. {
  4671. "url": "https://symfony.com/sponsor",
  4672. "type": "custom"
  4673. },
  4674. {
  4675. "url": "https://github.com/fabpot",
  4676. "type": "github"
  4677. },
  4678. {
  4679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4680. "type": "tidelift"
  4681. }
  4682. ],
  4683. "time": "2020-12-08T17:02:38+00:00"
  4684. },
  4685. {
  4686. "name": "symfony/deprecation-contracts",
  4687. "version": "v2.2.0",
  4688. "source": {
  4689. "type": "git",
  4690. "url": "https://github.com/symfony/deprecation-contracts.git",
  4691. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4692. },
  4693. "dist": {
  4694. "type": "zip",
  4695. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4696. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4697. "shasum": ""
  4698. },
  4699. "require": {
  4700. "php": ">=7.1"
  4701. },
  4702. "type": "library",
  4703. "extra": {
  4704. "branch-alias": {
  4705. "dev-master": "2.2-dev"
  4706. },
  4707. "thanks": {
  4708. "name": "symfony/contracts",
  4709. "url": "https://github.com/symfony/contracts"
  4710. }
  4711. },
  4712. "autoload": {
  4713. "files": [
  4714. "function.php"
  4715. ]
  4716. },
  4717. "notification-url": "https://packagist.org/downloads/",
  4718. "license": [
  4719. "MIT"
  4720. ],
  4721. "authors": [
  4722. {
  4723. "name": "Nicolas Grekas",
  4724. "email": "p@tchwork.com"
  4725. },
  4726. {
  4727. "name": "Symfony Community",
  4728. "homepage": "https://symfony.com/contributors"
  4729. }
  4730. ],
  4731. "description": "A generic function and convention to trigger deprecation notices",
  4732. "homepage": "https://symfony.com",
  4733. "support": {
  4734. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4735. },
  4736. "funding": [
  4737. {
  4738. "url": "https://symfony.com/sponsor",
  4739. "type": "custom"
  4740. },
  4741. {
  4742. "url": "https://github.com/fabpot",
  4743. "type": "github"
  4744. },
  4745. {
  4746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4747. "type": "tidelift"
  4748. }
  4749. ],
  4750. "time": "2020-09-07T11:33:47+00:00"
  4751. },
  4752. {
  4753. "name": "symfony/error-handler",
  4754. "version": "v5.2.1",
  4755. "source": {
  4756. "type": "git",
  4757. "url": "https://github.com/symfony/error-handler.git",
  4758. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  4759. },
  4760. "dist": {
  4761. "type": "zip",
  4762. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  4763. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  4764. "shasum": ""
  4765. },
  4766. "require": {
  4767. "php": ">=7.2.5",
  4768. "psr/log": "^1.0",
  4769. "symfony/polyfill-php80": "^1.15",
  4770. "symfony/var-dumper": "^4.4|^5.0"
  4771. },
  4772. "require-dev": {
  4773. "symfony/deprecation-contracts": "^2.1",
  4774. "symfony/http-kernel": "^4.4|^5.0",
  4775. "symfony/serializer": "^4.4|^5.0"
  4776. },
  4777. "type": "library",
  4778. "autoload": {
  4779. "psr-4": {
  4780. "Symfony\\Component\\ErrorHandler\\": ""
  4781. },
  4782. "exclude-from-classmap": [
  4783. "/Tests/"
  4784. ]
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "MIT"
  4789. ],
  4790. "authors": [
  4791. {
  4792. "name": "Fabien Potencier",
  4793. "email": "fabien@symfony.com"
  4794. },
  4795. {
  4796. "name": "Symfony Community",
  4797. "homepage": "https://symfony.com/contributors"
  4798. }
  4799. ],
  4800. "description": "Symfony ErrorHandler Component",
  4801. "homepage": "https://symfony.com",
  4802. "support": {
  4803. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  4804. },
  4805. "funding": [
  4806. {
  4807. "url": "https://symfony.com/sponsor",
  4808. "type": "custom"
  4809. },
  4810. {
  4811. "url": "https://github.com/fabpot",
  4812. "type": "github"
  4813. },
  4814. {
  4815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4816. "type": "tidelift"
  4817. }
  4818. ],
  4819. "time": "2020-12-09T18:54:12+00:00"
  4820. },
  4821. {
  4822. "name": "symfony/event-dispatcher",
  4823. "version": "v5.2.1",
  4824. "source": {
  4825. "type": "git",
  4826. "url": "https://github.com/symfony/event-dispatcher.git",
  4827. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  4828. },
  4829. "dist": {
  4830. "type": "zip",
  4831. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  4832. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  4833. "shasum": ""
  4834. },
  4835. "require": {
  4836. "php": ">=7.2.5",
  4837. "symfony/deprecation-contracts": "^2.1",
  4838. "symfony/event-dispatcher-contracts": "^2",
  4839. "symfony/polyfill-php80": "^1.15"
  4840. },
  4841. "conflict": {
  4842. "symfony/dependency-injection": "<4.4"
  4843. },
  4844. "provide": {
  4845. "psr/event-dispatcher-implementation": "1.0",
  4846. "symfony/event-dispatcher-implementation": "2.0"
  4847. },
  4848. "require-dev": {
  4849. "psr/log": "~1.0",
  4850. "symfony/config": "^4.4|^5.0",
  4851. "symfony/dependency-injection": "^4.4|^5.0",
  4852. "symfony/error-handler": "^4.4|^5.0",
  4853. "symfony/expression-language": "^4.4|^5.0",
  4854. "symfony/http-foundation": "^4.4|^5.0",
  4855. "symfony/service-contracts": "^1.1|^2",
  4856. "symfony/stopwatch": "^4.4|^5.0"
  4857. },
  4858. "suggest": {
  4859. "symfony/dependency-injection": "",
  4860. "symfony/http-kernel": ""
  4861. },
  4862. "type": "library",
  4863. "autoload": {
  4864. "psr-4": {
  4865. "Symfony\\Component\\EventDispatcher\\": ""
  4866. },
  4867. "exclude-from-classmap": [
  4868. "/Tests/"
  4869. ]
  4870. },
  4871. "notification-url": "https://packagist.org/downloads/",
  4872. "license": [
  4873. "MIT"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "Fabien Potencier",
  4878. "email": "fabien@symfony.com"
  4879. },
  4880. {
  4881. "name": "Symfony Community",
  4882. "homepage": "https://symfony.com/contributors"
  4883. }
  4884. ],
  4885. "description": "Symfony EventDispatcher Component",
  4886. "homepage": "https://symfony.com",
  4887. "support": {
  4888. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  4889. },
  4890. "funding": [
  4891. {
  4892. "url": "https://symfony.com/sponsor",
  4893. "type": "custom"
  4894. },
  4895. {
  4896. "url": "https://github.com/fabpot",
  4897. "type": "github"
  4898. },
  4899. {
  4900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4901. "type": "tidelift"
  4902. }
  4903. ],
  4904. "time": "2020-12-18T08:03:05+00:00"
  4905. },
  4906. {
  4907. "name": "symfony/event-dispatcher-contracts",
  4908. "version": "v2.2.0",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4912. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4917. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4918. "shasum": ""
  4919. },
  4920. "require": {
  4921. "php": ">=7.2.5",
  4922. "psr/event-dispatcher": "^1"
  4923. },
  4924. "suggest": {
  4925. "symfony/event-dispatcher-implementation": ""
  4926. },
  4927. "type": "library",
  4928. "extra": {
  4929. "branch-alias": {
  4930. "dev-master": "2.2-dev"
  4931. },
  4932. "thanks": {
  4933. "name": "symfony/contracts",
  4934. "url": "https://github.com/symfony/contracts"
  4935. }
  4936. },
  4937. "autoload": {
  4938. "psr-4": {
  4939. "Symfony\\Contracts\\EventDispatcher\\": ""
  4940. }
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "MIT"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Nicolas Grekas",
  4949. "email": "p@tchwork.com"
  4950. },
  4951. {
  4952. "name": "Symfony Community",
  4953. "homepage": "https://symfony.com/contributors"
  4954. }
  4955. ],
  4956. "description": "Generic abstractions related to dispatching event",
  4957. "homepage": "https://symfony.com",
  4958. "keywords": [
  4959. "abstractions",
  4960. "contracts",
  4961. "decoupling",
  4962. "interfaces",
  4963. "interoperability",
  4964. "standards"
  4965. ],
  4966. "support": {
  4967. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4968. },
  4969. "funding": [
  4970. {
  4971. "url": "https://symfony.com/sponsor",
  4972. "type": "custom"
  4973. },
  4974. {
  4975. "url": "https://github.com/fabpot",
  4976. "type": "github"
  4977. },
  4978. {
  4979. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4980. "type": "tidelift"
  4981. }
  4982. ],
  4983. "time": "2020-09-07T11:33:47+00:00"
  4984. },
  4985. {
  4986. "name": "symfony/finder",
  4987. "version": "v5.2.1",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://github.com/symfony/finder.git",
  4991. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  4996. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  4997. "shasum": ""
  4998. },
  4999. "require": {
  5000. "php": ">=7.2.5"
  5001. },
  5002. "type": "library",
  5003. "autoload": {
  5004. "psr-4": {
  5005. "Symfony\\Component\\Finder\\": ""
  5006. },
  5007. "exclude-from-classmap": [
  5008. "/Tests/"
  5009. ]
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "MIT"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "Fabien Potencier",
  5018. "email": "fabien@symfony.com"
  5019. },
  5020. {
  5021. "name": "Symfony Community",
  5022. "homepage": "https://symfony.com/contributors"
  5023. }
  5024. ],
  5025. "description": "Symfony Finder Component",
  5026. "homepage": "https://symfony.com",
  5027. "support": {
  5028. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  5029. },
  5030. "funding": [
  5031. {
  5032. "url": "https://symfony.com/sponsor",
  5033. "type": "custom"
  5034. },
  5035. {
  5036. "url": "https://github.com/fabpot",
  5037. "type": "github"
  5038. },
  5039. {
  5040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5041. "type": "tidelift"
  5042. }
  5043. ],
  5044. "time": "2020-12-08T17:02:38+00:00"
  5045. },
  5046. {
  5047. "name": "symfony/http-client-contracts",
  5048. "version": "v2.3.1",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/symfony/http-client-contracts.git",
  5052. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5057. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5058. "shasum": ""
  5059. },
  5060. "require": {
  5061. "php": ">=7.2.5"
  5062. },
  5063. "suggest": {
  5064. "symfony/http-client-implementation": ""
  5065. },
  5066. "type": "library",
  5067. "extra": {
  5068. "branch-version": "2.3",
  5069. "branch-alias": {
  5070. "dev-main": "2.3-dev"
  5071. },
  5072. "thanks": {
  5073. "name": "symfony/contracts",
  5074. "url": "https://github.com/symfony/contracts"
  5075. }
  5076. },
  5077. "autoload": {
  5078. "psr-4": {
  5079. "Symfony\\Contracts\\HttpClient\\": ""
  5080. }
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "Nicolas Grekas",
  5089. "email": "p@tchwork.com"
  5090. },
  5091. {
  5092. "name": "Symfony Community",
  5093. "homepage": "https://symfony.com/contributors"
  5094. }
  5095. ],
  5096. "description": "Generic abstractions related to HTTP clients",
  5097. "homepage": "https://symfony.com",
  5098. "keywords": [
  5099. "abstractions",
  5100. "contracts",
  5101. "decoupling",
  5102. "interfaces",
  5103. "interoperability",
  5104. "standards"
  5105. ],
  5106. "support": {
  5107. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5108. },
  5109. "funding": [
  5110. {
  5111. "url": "https://symfony.com/sponsor",
  5112. "type": "custom"
  5113. },
  5114. {
  5115. "url": "https://github.com/fabpot",
  5116. "type": "github"
  5117. },
  5118. {
  5119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5120. "type": "tidelift"
  5121. }
  5122. ],
  5123. "time": "2020-10-14T17:08:19+00:00"
  5124. },
  5125. {
  5126. "name": "symfony/http-foundation",
  5127. "version": "v5.2.1",
  5128. "source": {
  5129. "type": "git",
  5130. "url": "https://github.com/symfony/http-foundation.git",
  5131. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  5132. },
  5133. "dist": {
  5134. "type": "zip",
  5135. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  5136. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  5137. "shasum": ""
  5138. },
  5139. "require": {
  5140. "php": ">=7.2.5",
  5141. "symfony/deprecation-contracts": "^2.1",
  5142. "symfony/polyfill-mbstring": "~1.1",
  5143. "symfony/polyfill-php80": "^1.15"
  5144. },
  5145. "require-dev": {
  5146. "predis/predis": "~1.0",
  5147. "symfony/cache": "^4.4|^5.0",
  5148. "symfony/expression-language": "^4.4|^5.0",
  5149. "symfony/mime": "^4.4|^5.0"
  5150. },
  5151. "suggest": {
  5152. "symfony/mime": "To use the file extension guesser"
  5153. },
  5154. "type": "library",
  5155. "autoload": {
  5156. "psr-4": {
  5157. "Symfony\\Component\\HttpFoundation\\": ""
  5158. },
  5159. "exclude-from-classmap": [
  5160. "/Tests/"
  5161. ]
  5162. },
  5163. "notification-url": "https://packagist.org/downloads/",
  5164. "license": [
  5165. "MIT"
  5166. ],
  5167. "authors": [
  5168. {
  5169. "name": "Fabien Potencier",
  5170. "email": "fabien@symfony.com"
  5171. },
  5172. {
  5173. "name": "Symfony Community",
  5174. "homepage": "https://symfony.com/contributors"
  5175. }
  5176. ],
  5177. "description": "Symfony HttpFoundation Component",
  5178. "homepage": "https://symfony.com",
  5179. "support": {
  5180. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  5181. },
  5182. "funding": [
  5183. {
  5184. "url": "https://symfony.com/sponsor",
  5185. "type": "custom"
  5186. },
  5187. {
  5188. "url": "https://github.com/fabpot",
  5189. "type": "github"
  5190. },
  5191. {
  5192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5193. "type": "tidelift"
  5194. }
  5195. ],
  5196. "time": "2020-12-18T10:00:10+00:00"
  5197. },
  5198. {
  5199. "name": "symfony/http-kernel",
  5200. "version": "v5.2.1",
  5201. "source": {
  5202. "type": "git",
  5203. "url": "https://github.com/symfony/http-kernel.git",
  5204. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
  5205. },
  5206. "dist": {
  5207. "type": "zip",
  5208. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
  5209. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
  5210. "shasum": ""
  5211. },
  5212. "require": {
  5213. "php": ">=7.2.5",
  5214. "psr/log": "~1.0",
  5215. "symfony/deprecation-contracts": "^2.1",
  5216. "symfony/error-handler": "^4.4|^5.0",
  5217. "symfony/event-dispatcher": "^5.0",
  5218. "symfony/http-client-contracts": "^1.1|^2",
  5219. "symfony/http-foundation": "^4.4|^5.0",
  5220. "symfony/polyfill-ctype": "^1.8",
  5221. "symfony/polyfill-php73": "^1.9",
  5222. "symfony/polyfill-php80": "^1.15"
  5223. },
  5224. "conflict": {
  5225. "symfony/browser-kit": "<4.4",
  5226. "symfony/cache": "<5.0",
  5227. "symfony/config": "<5.0",
  5228. "symfony/console": "<4.4",
  5229. "symfony/dependency-injection": "<5.1.8",
  5230. "symfony/doctrine-bridge": "<5.0",
  5231. "symfony/form": "<5.0",
  5232. "symfony/http-client": "<5.0",
  5233. "symfony/mailer": "<5.0",
  5234. "symfony/messenger": "<5.0",
  5235. "symfony/translation": "<5.0",
  5236. "symfony/twig-bridge": "<5.0",
  5237. "symfony/validator": "<5.0",
  5238. "twig/twig": "<2.4"
  5239. },
  5240. "provide": {
  5241. "psr/log-implementation": "1.0"
  5242. },
  5243. "require-dev": {
  5244. "psr/cache": "~1.0",
  5245. "symfony/browser-kit": "^4.4|^5.0",
  5246. "symfony/config": "^5.0",
  5247. "symfony/console": "^4.4|^5.0",
  5248. "symfony/css-selector": "^4.4|^5.0",
  5249. "symfony/dependency-injection": "^5.1.8",
  5250. "symfony/dom-crawler": "^4.4|^5.0",
  5251. "symfony/expression-language": "^4.4|^5.0",
  5252. "symfony/finder": "^4.4|^5.0",
  5253. "symfony/process": "^4.4|^5.0",
  5254. "symfony/routing": "^4.4|^5.0",
  5255. "symfony/stopwatch": "^4.4|^5.0",
  5256. "symfony/translation": "^4.4|^5.0",
  5257. "symfony/translation-contracts": "^1.1|^2",
  5258. "twig/twig": "^2.4|^3.0"
  5259. },
  5260. "suggest": {
  5261. "symfony/browser-kit": "",
  5262. "symfony/config": "",
  5263. "symfony/console": "",
  5264. "symfony/dependency-injection": ""
  5265. },
  5266. "type": "library",
  5267. "autoload": {
  5268. "psr-4": {
  5269. "Symfony\\Component\\HttpKernel\\": ""
  5270. },
  5271. "exclude-from-classmap": [
  5272. "/Tests/"
  5273. ]
  5274. },
  5275. "notification-url": "https://packagist.org/downloads/",
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "Fabien Potencier",
  5282. "email": "fabien@symfony.com"
  5283. },
  5284. {
  5285. "name": "Symfony Community",
  5286. "homepage": "https://symfony.com/contributors"
  5287. }
  5288. ],
  5289. "description": "Symfony HttpKernel Component",
  5290. "homepage": "https://symfony.com",
  5291. "support": {
  5292. "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
  5293. },
  5294. "funding": [
  5295. {
  5296. "url": "https://symfony.com/sponsor",
  5297. "type": "custom"
  5298. },
  5299. {
  5300. "url": "https://github.com/fabpot",
  5301. "type": "github"
  5302. },
  5303. {
  5304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5305. "type": "tidelift"
  5306. }
  5307. ],
  5308. "time": "2020-12-18T13:49:39+00:00"
  5309. },
  5310. {
  5311. "name": "symfony/mime",
  5312. "version": "v5.2.1",
  5313. "source": {
  5314. "type": "git",
  5315. "url": "https://github.com/symfony/mime.git",
  5316. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  5317. },
  5318. "dist": {
  5319. "type": "zip",
  5320. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  5321. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  5322. "shasum": ""
  5323. },
  5324. "require": {
  5325. "php": ">=7.2.5",
  5326. "symfony/deprecation-contracts": "^2.1",
  5327. "symfony/polyfill-intl-idn": "^1.10",
  5328. "symfony/polyfill-mbstring": "^1.0",
  5329. "symfony/polyfill-php80": "^1.15"
  5330. },
  5331. "conflict": {
  5332. "symfony/mailer": "<4.4"
  5333. },
  5334. "require-dev": {
  5335. "egulias/email-validator": "^2.1.10",
  5336. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5337. "symfony/dependency-injection": "^4.4|^5.0",
  5338. "symfony/property-access": "^4.4|^5.1",
  5339. "symfony/property-info": "^4.4|^5.1",
  5340. "symfony/serializer": "^5.2"
  5341. },
  5342. "type": "library",
  5343. "autoload": {
  5344. "psr-4": {
  5345. "Symfony\\Component\\Mime\\": ""
  5346. },
  5347. "exclude-from-classmap": [
  5348. "/Tests/"
  5349. ]
  5350. },
  5351. "notification-url": "https://packagist.org/downloads/",
  5352. "license": [
  5353. "MIT"
  5354. ],
  5355. "authors": [
  5356. {
  5357. "name": "Fabien Potencier",
  5358. "email": "fabien@symfony.com"
  5359. },
  5360. {
  5361. "name": "Symfony Community",
  5362. "homepage": "https://symfony.com/contributors"
  5363. }
  5364. ],
  5365. "description": "A library to manipulate MIME messages",
  5366. "homepage": "https://symfony.com",
  5367. "keywords": [
  5368. "mime",
  5369. "mime-type"
  5370. ],
  5371. "support": {
  5372. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  5373. },
  5374. "funding": [
  5375. {
  5376. "url": "https://symfony.com/sponsor",
  5377. "type": "custom"
  5378. },
  5379. {
  5380. "url": "https://github.com/fabpot",
  5381. "type": "github"
  5382. },
  5383. {
  5384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5385. "type": "tidelift"
  5386. }
  5387. ],
  5388. "time": "2020-12-09T18:54:12+00:00"
  5389. },
  5390. {
  5391. "name": "symfony/polyfill-ctype",
  5392. "version": "v1.20.0",
  5393. "source": {
  5394. "type": "git",
  5395. "url": "https://github.com/symfony/polyfill-ctype.git",
  5396. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  5397. },
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5401. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  5402. "shasum": ""
  5403. },
  5404. "require": {
  5405. "php": ">=7.1"
  5406. },
  5407. "suggest": {
  5408. "ext-ctype": "For best performance"
  5409. },
  5410. "type": "library",
  5411. "extra": {
  5412. "branch-alias": {
  5413. "dev-main": "1.20-dev"
  5414. },
  5415. "thanks": {
  5416. "name": "symfony/polyfill",
  5417. "url": "https://github.com/symfony/polyfill"
  5418. }
  5419. },
  5420. "autoload": {
  5421. "psr-4": {
  5422. "Symfony\\Polyfill\\Ctype\\": ""
  5423. },
  5424. "files": [
  5425. "bootstrap.php"
  5426. ]
  5427. },
  5428. "notification-url": "https://packagist.org/downloads/",
  5429. "license": [
  5430. "MIT"
  5431. ],
  5432. "authors": [
  5433. {
  5434. "name": "Gert de Pagter",
  5435. "email": "BackEndTea@gmail.com"
  5436. },
  5437. {
  5438. "name": "Symfony Community",
  5439. "homepage": "https://symfony.com/contributors"
  5440. }
  5441. ],
  5442. "description": "Symfony polyfill for ctype functions",
  5443. "homepage": "https://symfony.com",
  5444. "keywords": [
  5445. "compatibility",
  5446. "ctype",
  5447. "polyfill",
  5448. "portable"
  5449. ],
  5450. "support": {
  5451. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0"
  5452. },
  5453. "funding": [
  5454. {
  5455. "url": "https://symfony.com/sponsor",
  5456. "type": "custom"
  5457. },
  5458. {
  5459. "url": "https://github.com/fabpot",
  5460. "type": "github"
  5461. },
  5462. {
  5463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5464. "type": "tidelift"
  5465. }
  5466. ],
  5467. "time": "2020-10-23T14:02:19+00:00"
  5468. },
  5469. {
  5470. "name": "symfony/polyfill-iconv",
  5471. "version": "v1.20.0",
  5472. "source": {
  5473. "type": "git",
  5474. "url": "https://github.com/symfony/polyfill-iconv.git",
  5475. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  5476. },
  5477. "dist": {
  5478. "type": "zip",
  5479. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5480. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  5481. "shasum": ""
  5482. },
  5483. "require": {
  5484. "php": ">=7.1"
  5485. },
  5486. "suggest": {
  5487. "ext-iconv": "For best performance"
  5488. },
  5489. "type": "library",
  5490. "extra": {
  5491. "branch-alias": {
  5492. "dev-main": "1.20-dev"
  5493. },
  5494. "thanks": {
  5495. "name": "symfony/polyfill",
  5496. "url": "https://github.com/symfony/polyfill"
  5497. }
  5498. },
  5499. "autoload": {
  5500. "psr-4": {
  5501. "Symfony\\Polyfill\\Iconv\\": ""
  5502. },
  5503. "files": [
  5504. "bootstrap.php"
  5505. ]
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Nicolas Grekas",
  5514. "email": "p@tchwork.com"
  5515. },
  5516. {
  5517. "name": "Symfony Community",
  5518. "homepage": "https://symfony.com/contributors"
  5519. }
  5520. ],
  5521. "description": "Symfony polyfill for the Iconv extension",
  5522. "homepage": "https://symfony.com",
  5523. "keywords": [
  5524. "compatibility",
  5525. "iconv",
  5526. "polyfill",
  5527. "portable",
  5528. "shim"
  5529. ],
  5530. "support": {
  5531. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.20.0"
  5532. },
  5533. "funding": [
  5534. {
  5535. "url": "https://symfony.com/sponsor",
  5536. "type": "custom"
  5537. },
  5538. {
  5539. "url": "https://github.com/fabpot",
  5540. "type": "github"
  5541. },
  5542. {
  5543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5544. "type": "tidelift"
  5545. }
  5546. ],
  5547. "time": "2020-10-23T14:02:19+00:00"
  5548. },
  5549. {
  5550. "name": "symfony/polyfill-intl-grapheme",
  5551. "version": "v1.20.0",
  5552. "source": {
  5553. "type": "git",
  5554. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5555. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c"
  5556. },
  5557. "dist": {
  5558. "type": "zip",
  5559. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5560. "reference": "c7cf3f858ec7d70b89559d6e6eb1f7c2517d479c",
  5561. "shasum": ""
  5562. },
  5563. "require": {
  5564. "php": ">=7.1"
  5565. },
  5566. "suggest": {
  5567. "ext-intl": "For best performance"
  5568. },
  5569. "type": "library",
  5570. "extra": {
  5571. "branch-alias": {
  5572. "dev-main": "1.20-dev"
  5573. },
  5574. "thanks": {
  5575. "name": "symfony/polyfill",
  5576. "url": "https://github.com/symfony/polyfill"
  5577. }
  5578. },
  5579. "autoload": {
  5580. "psr-4": {
  5581. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5582. },
  5583. "files": [
  5584. "bootstrap.php"
  5585. ]
  5586. },
  5587. "notification-url": "https://packagist.org/downloads/",
  5588. "license": [
  5589. "MIT"
  5590. ],
  5591. "authors": [
  5592. {
  5593. "name": "Nicolas Grekas",
  5594. "email": "p@tchwork.com"
  5595. },
  5596. {
  5597. "name": "Symfony Community",
  5598. "homepage": "https://symfony.com/contributors"
  5599. }
  5600. ],
  5601. "description": "Symfony polyfill for intl's grapheme_* functions",
  5602. "homepage": "https://symfony.com",
  5603. "keywords": [
  5604. "compatibility",
  5605. "grapheme",
  5606. "intl",
  5607. "polyfill",
  5608. "portable",
  5609. "shim"
  5610. ],
  5611. "support": {
  5612. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.20.0"
  5613. },
  5614. "funding": [
  5615. {
  5616. "url": "https://symfony.com/sponsor",
  5617. "type": "custom"
  5618. },
  5619. {
  5620. "url": "https://github.com/fabpot",
  5621. "type": "github"
  5622. },
  5623. {
  5624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5625. "type": "tidelift"
  5626. }
  5627. ],
  5628. "time": "2020-10-23T14:02:19+00:00"
  5629. },
  5630. {
  5631. "name": "symfony/polyfill-intl-idn",
  5632. "version": "v1.20.0",
  5633. "source": {
  5634. "type": "git",
  5635. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5636. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5637. },
  5638. "dist": {
  5639. "type": "zip",
  5640. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5641. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5642. "shasum": ""
  5643. },
  5644. "require": {
  5645. "php": ">=7.1",
  5646. "symfony/polyfill-intl-normalizer": "^1.10",
  5647. "symfony/polyfill-php72": "^1.10"
  5648. },
  5649. "suggest": {
  5650. "ext-intl": "For best performance"
  5651. },
  5652. "type": "library",
  5653. "extra": {
  5654. "branch-alias": {
  5655. "dev-main": "1.20-dev"
  5656. },
  5657. "thanks": {
  5658. "name": "symfony/polyfill",
  5659. "url": "https://github.com/symfony/polyfill"
  5660. }
  5661. },
  5662. "autoload": {
  5663. "psr-4": {
  5664. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5665. },
  5666. "files": [
  5667. "bootstrap.php"
  5668. ]
  5669. },
  5670. "notification-url": "https://packagist.org/downloads/",
  5671. "license": [
  5672. "MIT"
  5673. ],
  5674. "authors": [
  5675. {
  5676. "name": "Laurent Bassin",
  5677. "email": "laurent@bassin.info"
  5678. },
  5679. {
  5680. "name": "Trevor Rowbotham",
  5681. "email": "trevor.rowbotham@pm.me"
  5682. },
  5683. {
  5684. "name": "Symfony Community",
  5685. "homepage": "https://symfony.com/contributors"
  5686. }
  5687. ],
  5688. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5689. "homepage": "https://symfony.com",
  5690. "keywords": [
  5691. "compatibility",
  5692. "idn",
  5693. "intl",
  5694. "polyfill",
  5695. "portable",
  5696. "shim"
  5697. ],
  5698. "support": {
  5699. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0"
  5700. },
  5701. "funding": [
  5702. {
  5703. "url": "https://symfony.com/sponsor",
  5704. "type": "custom"
  5705. },
  5706. {
  5707. "url": "https://github.com/fabpot",
  5708. "type": "github"
  5709. },
  5710. {
  5711. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5712. "type": "tidelift"
  5713. }
  5714. ],
  5715. "time": "2020-10-23T14:02:19+00:00"
  5716. },
  5717. {
  5718. "name": "symfony/polyfill-intl-normalizer",
  5719. "version": "v1.20.0",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5723. "reference": "727d1096295d807c309fb01a851577302394c897"
  5724. },
  5725. "dist": {
  5726. "type": "zip",
  5727. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5728. "reference": "727d1096295d807c309fb01a851577302394c897",
  5729. "shasum": ""
  5730. },
  5731. "require": {
  5732. "php": ">=7.1"
  5733. },
  5734. "suggest": {
  5735. "ext-intl": "For best performance"
  5736. },
  5737. "type": "library",
  5738. "extra": {
  5739. "branch-alias": {
  5740. "dev-main": "1.20-dev"
  5741. },
  5742. "thanks": {
  5743. "name": "symfony/polyfill",
  5744. "url": "https://github.com/symfony/polyfill"
  5745. }
  5746. },
  5747. "autoload": {
  5748. "psr-4": {
  5749. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5750. },
  5751. "files": [
  5752. "bootstrap.php"
  5753. ],
  5754. "classmap": [
  5755. "Resources/stubs"
  5756. ]
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "MIT"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "Nicolas Grekas",
  5765. "email": "p@tchwork.com"
  5766. },
  5767. {
  5768. "name": "Symfony Community",
  5769. "homepage": "https://symfony.com/contributors"
  5770. }
  5771. ],
  5772. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5773. "homepage": "https://symfony.com",
  5774. "keywords": [
  5775. "compatibility",
  5776. "intl",
  5777. "normalizer",
  5778. "polyfill",
  5779. "portable",
  5780. "shim"
  5781. ],
  5782. "support": {
  5783. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0"
  5784. },
  5785. "funding": [
  5786. {
  5787. "url": "https://symfony.com/sponsor",
  5788. "type": "custom"
  5789. },
  5790. {
  5791. "url": "https://github.com/fabpot",
  5792. "type": "github"
  5793. },
  5794. {
  5795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5796. "type": "tidelift"
  5797. }
  5798. ],
  5799. "time": "2020-10-23T14:02:19+00:00"
  5800. },
  5801. {
  5802. "name": "symfony/polyfill-mbstring",
  5803. "version": "v1.20.0",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5807. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  5812. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "php": ">=7.1"
  5817. },
  5818. "suggest": {
  5819. "ext-mbstring": "For best performance"
  5820. },
  5821. "type": "library",
  5822. "extra": {
  5823. "branch-alias": {
  5824. "dev-main": "1.20-dev"
  5825. },
  5826. "thanks": {
  5827. "name": "symfony/polyfill",
  5828. "url": "https://github.com/symfony/polyfill"
  5829. }
  5830. },
  5831. "autoload": {
  5832. "psr-4": {
  5833. "Symfony\\Polyfill\\Mbstring\\": ""
  5834. },
  5835. "files": [
  5836. "bootstrap.php"
  5837. ]
  5838. },
  5839. "notification-url": "https://packagist.org/downloads/",
  5840. "license": [
  5841. "MIT"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "Nicolas Grekas",
  5846. "email": "p@tchwork.com"
  5847. },
  5848. {
  5849. "name": "Symfony Community",
  5850. "homepage": "https://symfony.com/contributors"
  5851. }
  5852. ],
  5853. "description": "Symfony polyfill for the Mbstring extension",
  5854. "homepage": "https://symfony.com",
  5855. "keywords": [
  5856. "compatibility",
  5857. "mbstring",
  5858. "polyfill",
  5859. "portable",
  5860. "shim"
  5861. ],
  5862. "support": {
  5863. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0"
  5864. },
  5865. "funding": [
  5866. {
  5867. "url": "https://symfony.com/sponsor",
  5868. "type": "custom"
  5869. },
  5870. {
  5871. "url": "https://github.com/fabpot",
  5872. "type": "github"
  5873. },
  5874. {
  5875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5876. "type": "tidelift"
  5877. }
  5878. ],
  5879. "time": "2020-10-23T14:02:19+00:00"
  5880. },
  5881. {
  5882. "name": "symfony/polyfill-php56",
  5883. "version": "v1.20.0",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://github.com/symfony/polyfill-php56.git",
  5887. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  5888. },
  5889. "dist": {
  5890. "type": "zip",
  5891. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5892. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5893. "shasum": ""
  5894. },
  5895. "require": {
  5896. "php": ">=7.1"
  5897. },
  5898. "type": "metapackage",
  5899. "extra": {
  5900. "branch-alias": {
  5901. "dev-main": "1.20-dev"
  5902. },
  5903. "thanks": {
  5904. "name": "symfony/polyfill",
  5905. "url": "https://github.com/symfony/polyfill"
  5906. }
  5907. },
  5908. "notification-url": "https://packagist.org/downloads/",
  5909. "license": [
  5910. "MIT"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "Nicolas Grekas",
  5915. "email": "p@tchwork.com"
  5916. },
  5917. {
  5918. "name": "Symfony Community",
  5919. "homepage": "https://symfony.com/contributors"
  5920. }
  5921. ],
  5922. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5923. "homepage": "https://symfony.com",
  5924. "keywords": [
  5925. "compatibility",
  5926. "polyfill",
  5927. "portable",
  5928. "shim"
  5929. ],
  5930. "support": {
  5931. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  5932. },
  5933. "funding": [
  5934. {
  5935. "url": "https://symfony.com/sponsor",
  5936. "type": "custom"
  5937. },
  5938. {
  5939. "url": "https://github.com/fabpot",
  5940. "type": "github"
  5941. },
  5942. {
  5943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5944. "type": "tidelift"
  5945. }
  5946. ],
  5947. "time": "2020-10-23T14:02:19+00:00"
  5948. },
  5949. {
  5950. "name": "symfony/polyfill-php72",
  5951. "version": "v1.20.0",
  5952. "source": {
  5953. "type": "git",
  5954. "url": "https://github.com/symfony/polyfill-php72.git",
  5955. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  5956. },
  5957. "dist": {
  5958. "type": "zip",
  5959. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  5960. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  5961. "shasum": ""
  5962. },
  5963. "require": {
  5964. "php": ">=7.1"
  5965. },
  5966. "type": "library",
  5967. "extra": {
  5968. "branch-alias": {
  5969. "dev-main": "1.20-dev"
  5970. },
  5971. "thanks": {
  5972. "name": "symfony/polyfill",
  5973. "url": "https://github.com/symfony/polyfill"
  5974. }
  5975. },
  5976. "autoload": {
  5977. "psr-4": {
  5978. "Symfony\\Polyfill\\Php72\\": ""
  5979. },
  5980. "files": [
  5981. "bootstrap.php"
  5982. ]
  5983. },
  5984. "notification-url": "https://packagist.org/downloads/",
  5985. "license": [
  5986. "MIT"
  5987. ],
  5988. "authors": [
  5989. {
  5990. "name": "Nicolas Grekas",
  5991. "email": "p@tchwork.com"
  5992. },
  5993. {
  5994. "name": "Symfony Community",
  5995. "homepage": "https://symfony.com/contributors"
  5996. }
  5997. ],
  5998. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5999. "homepage": "https://symfony.com",
  6000. "keywords": [
  6001. "compatibility",
  6002. "polyfill",
  6003. "portable",
  6004. "shim"
  6005. ],
  6006. "support": {
  6007. "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0"
  6008. },
  6009. "funding": [
  6010. {
  6011. "url": "https://symfony.com/sponsor",
  6012. "type": "custom"
  6013. },
  6014. {
  6015. "url": "https://github.com/fabpot",
  6016. "type": "github"
  6017. },
  6018. {
  6019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6020. "type": "tidelift"
  6021. }
  6022. ],
  6023. "time": "2020-10-23T14:02:19+00:00"
  6024. },
  6025. {
  6026. "name": "symfony/polyfill-php73",
  6027. "version": "v1.20.0",
  6028. "source": {
  6029. "type": "git",
  6030. "url": "https://github.com/symfony/polyfill-php73.git",
  6031. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  6032. },
  6033. "dist": {
  6034. "type": "zip",
  6035. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  6036. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  6037. "shasum": ""
  6038. },
  6039. "require": {
  6040. "php": ">=7.1"
  6041. },
  6042. "type": "library",
  6043. "extra": {
  6044. "branch-alias": {
  6045. "dev-main": "1.20-dev"
  6046. },
  6047. "thanks": {
  6048. "name": "symfony/polyfill",
  6049. "url": "https://github.com/symfony/polyfill"
  6050. }
  6051. },
  6052. "autoload": {
  6053. "psr-4": {
  6054. "Symfony\\Polyfill\\Php73\\": ""
  6055. },
  6056. "files": [
  6057. "bootstrap.php"
  6058. ],
  6059. "classmap": [
  6060. "Resources/stubs"
  6061. ]
  6062. },
  6063. "notification-url": "https://packagist.org/downloads/",
  6064. "license": [
  6065. "MIT"
  6066. ],
  6067. "authors": [
  6068. {
  6069. "name": "Nicolas Grekas",
  6070. "email": "p@tchwork.com"
  6071. },
  6072. {
  6073. "name": "Symfony Community",
  6074. "homepage": "https://symfony.com/contributors"
  6075. }
  6076. ],
  6077. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6078. "homepage": "https://symfony.com",
  6079. "keywords": [
  6080. "compatibility",
  6081. "polyfill",
  6082. "portable",
  6083. "shim"
  6084. ],
  6085. "support": {
  6086. "source": "https://github.com/symfony/polyfill-php73/tree/v1.20.0"
  6087. },
  6088. "funding": [
  6089. {
  6090. "url": "https://symfony.com/sponsor",
  6091. "type": "custom"
  6092. },
  6093. {
  6094. "url": "https://github.com/fabpot",
  6095. "type": "github"
  6096. },
  6097. {
  6098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6099. "type": "tidelift"
  6100. }
  6101. ],
  6102. "time": "2020-10-23T14:02:19+00:00"
  6103. },
  6104. {
  6105. "name": "symfony/polyfill-php80",
  6106. "version": "v1.20.0",
  6107. "source": {
  6108. "type": "git",
  6109. "url": "https://github.com/symfony/polyfill-php80.git",
  6110. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de"
  6111. },
  6112. "dist": {
  6113. "type": "zip",
  6114. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6115. "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de",
  6116. "shasum": ""
  6117. },
  6118. "require": {
  6119. "php": ">=7.1"
  6120. },
  6121. "type": "library",
  6122. "extra": {
  6123. "branch-alias": {
  6124. "dev-main": "1.20-dev"
  6125. },
  6126. "thanks": {
  6127. "name": "symfony/polyfill",
  6128. "url": "https://github.com/symfony/polyfill"
  6129. }
  6130. },
  6131. "autoload": {
  6132. "psr-4": {
  6133. "Symfony\\Polyfill\\Php80\\": ""
  6134. },
  6135. "files": [
  6136. "bootstrap.php"
  6137. ],
  6138. "classmap": [
  6139. "Resources/stubs"
  6140. ]
  6141. },
  6142. "notification-url": "https://packagist.org/downloads/",
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Ion Bazan",
  6149. "email": "ion.bazan@gmail.com"
  6150. },
  6151. {
  6152. "name": "Nicolas Grekas",
  6153. "email": "p@tchwork.com"
  6154. },
  6155. {
  6156. "name": "Symfony Community",
  6157. "homepage": "https://symfony.com/contributors"
  6158. }
  6159. ],
  6160. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6161. "homepage": "https://symfony.com",
  6162. "keywords": [
  6163. "compatibility",
  6164. "polyfill",
  6165. "portable",
  6166. "shim"
  6167. ],
  6168. "support": {
  6169. "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0"
  6170. },
  6171. "funding": [
  6172. {
  6173. "url": "https://symfony.com/sponsor",
  6174. "type": "custom"
  6175. },
  6176. {
  6177. "url": "https://github.com/fabpot",
  6178. "type": "github"
  6179. },
  6180. {
  6181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6182. "type": "tidelift"
  6183. }
  6184. ],
  6185. "time": "2020-10-23T14:02:19+00:00"
  6186. },
  6187. {
  6188. "name": "symfony/process",
  6189. "version": "v5.2.1",
  6190. "source": {
  6191. "type": "git",
  6192. "url": "https://github.com/symfony/process.git",
  6193. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  6194. },
  6195. "dist": {
  6196. "type": "zip",
  6197. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  6198. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  6199. "shasum": ""
  6200. },
  6201. "require": {
  6202. "php": ">=7.2.5",
  6203. "symfony/polyfill-php80": "^1.15"
  6204. },
  6205. "type": "library",
  6206. "autoload": {
  6207. "psr-4": {
  6208. "Symfony\\Component\\Process\\": ""
  6209. },
  6210. "exclude-from-classmap": [
  6211. "/Tests/"
  6212. ]
  6213. },
  6214. "notification-url": "https://packagist.org/downloads/",
  6215. "license": [
  6216. "MIT"
  6217. ],
  6218. "authors": [
  6219. {
  6220. "name": "Fabien Potencier",
  6221. "email": "fabien@symfony.com"
  6222. },
  6223. {
  6224. "name": "Symfony Community",
  6225. "homepage": "https://symfony.com/contributors"
  6226. }
  6227. ],
  6228. "description": "Symfony Process Component",
  6229. "homepage": "https://symfony.com",
  6230. "support": {
  6231. "source": "https://github.com/symfony/process/tree/v5.2.1"
  6232. },
  6233. "funding": [
  6234. {
  6235. "url": "https://symfony.com/sponsor",
  6236. "type": "custom"
  6237. },
  6238. {
  6239. "url": "https://github.com/fabpot",
  6240. "type": "github"
  6241. },
  6242. {
  6243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6244. "type": "tidelift"
  6245. }
  6246. ],
  6247. "time": "2020-12-08T17:03:37+00:00"
  6248. },
  6249. {
  6250. "name": "symfony/routing",
  6251. "version": "v5.2.1",
  6252. "source": {
  6253. "type": "git",
  6254. "url": "https://github.com/symfony/routing.git",
  6255. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  6256. },
  6257. "dist": {
  6258. "type": "zip",
  6259. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  6260. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  6261. "shasum": ""
  6262. },
  6263. "require": {
  6264. "php": ">=7.2.5",
  6265. "symfony/deprecation-contracts": "^2.1",
  6266. "symfony/polyfill-php80": "^1.15"
  6267. },
  6268. "conflict": {
  6269. "symfony/config": "<5.0",
  6270. "symfony/dependency-injection": "<4.4",
  6271. "symfony/yaml": "<4.4"
  6272. },
  6273. "require-dev": {
  6274. "doctrine/annotations": "^1.7",
  6275. "psr/log": "~1.0",
  6276. "symfony/config": "^5.0",
  6277. "symfony/dependency-injection": "^4.4|^5.0",
  6278. "symfony/expression-language": "^4.4|^5.0",
  6279. "symfony/http-foundation": "^4.4|^5.0",
  6280. "symfony/yaml": "^4.4|^5.0"
  6281. },
  6282. "suggest": {
  6283. "doctrine/annotations": "For using the annotation loader",
  6284. "symfony/config": "For using the all-in-one router or any loader",
  6285. "symfony/expression-language": "For using expression matching",
  6286. "symfony/http-foundation": "For using a Symfony Request object",
  6287. "symfony/yaml": "For using the YAML loader"
  6288. },
  6289. "type": "library",
  6290. "autoload": {
  6291. "psr-4": {
  6292. "Symfony\\Component\\Routing\\": ""
  6293. },
  6294. "exclude-from-classmap": [
  6295. "/Tests/"
  6296. ]
  6297. },
  6298. "notification-url": "https://packagist.org/downloads/",
  6299. "license": [
  6300. "MIT"
  6301. ],
  6302. "authors": [
  6303. {
  6304. "name": "Fabien Potencier",
  6305. "email": "fabien@symfony.com"
  6306. },
  6307. {
  6308. "name": "Symfony Community",
  6309. "homepage": "https://symfony.com/contributors"
  6310. }
  6311. ],
  6312. "description": "Symfony Routing Component",
  6313. "homepage": "https://symfony.com",
  6314. "keywords": [
  6315. "router",
  6316. "routing",
  6317. "uri",
  6318. "url"
  6319. ],
  6320. "support": {
  6321. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  6322. },
  6323. "funding": [
  6324. {
  6325. "url": "https://symfony.com/sponsor",
  6326. "type": "custom"
  6327. },
  6328. {
  6329. "url": "https://github.com/fabpot",
  6330. "type": "github"
  6331. },
  6332. {
  6333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6334. "type": "tidelift"
  6335. }
  6336. ],
  6337. "time": "2020-12-08T17:03:37+00:00"
  6338. },
  6339. {
  6340. "name": "symfony/service-contracts",
  6341. "version": "v2.2.0",
  6342. "source": {
  6343. "type": "git",
  6344. "url": "https://github.com/symfony/service-contracts.git",
  6345. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6346. },
  6347. "dist": {
  6348. "type": "zip",
  6349. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6350. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6351. "shasum": ""
  6352. },
  6353. "require": {
  6354. "php": ">=7.2.5",
  6355. "psr/container": "^1.0"
  6356. },
  6357. "suggest": {
  6358. "symfony/service-implementation": ""
  6359. },
  6360. "type": "library",
  6361. "extra": {
  6362. "branch-alias": {
  6363. "dev-master": "2.2-dev"
  6364. },
  6365. "thanks": {
  6366. "name": "symfony/contracts",
  6367. "url": "https://github.com/symfony/contracts"
  6368. }
  6369. },
  6370. "autoload": {
  6371. "psr-4": {
  6372. "Symfony\\Contracts\\Service\\": ""
  6373. }
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "MIT"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Nicolas Grekas",
  6382. "email": "p@tchwork.com"
  6383. },
  6384. {
  6385. "name": "Symfony Community",
  6386. "homepage": "https://symfony.com/contributors"
  6387. }
  6388. ],
  6389. "description": "Generic abstractions related to writing services",
  6390. "homepage": "https://symfony.com",
  6391. "keywords": [
  6392. "abstractions",
  6393. "contracts",
  6394. "decoupling",
  6395. "interfaces",
  6396. "interoperability",
  6397. "standards"
  6398. ],
  6399. "support": {
  6400. "source": "https://github.com/symfony/service-contracts/tree/master"
  6401. },
  6402. "funding": [
  6403. {
  6404. "url": "https://symfony.com/sponsor",
  6405. "type": "custom"
  6406. },
  6407. {
  6408. "url": "https://github.com/fabpot",
  6409. "type": "github"
  6410. },
  6411. {
  6412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6413. "type": "tidelift"
  6414. }
  6415. ],
  6416. "time": "2020-09-07T11:33:47+00:00"
  6417. },
  6418. {
  6419. "name": "symfony/string",
  6420. "version": "v5.2.1",
  6421. "source": {
  6422. "type": "git",
  6423. "url": "https://github.com/symfony/string.git",
  6424. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  6425. },
  6426. "dist": {
  6427. "type": "zip",
  6428. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6429. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6430. "shasum": ""
  6431. },
  6432. "require": {
  6433. "php": ">=7.2.5",
  6434. "symfony/polyfill-ctype": "~1.8",
  6435. "symfony/polyfill-intl-grapheme": "~1.0",
  6436. "symfony/polyfill-intl-normalizer": "~1.0",
  6437. "symfony/polyfill-mbstring": "~1.0",
  6438. "symfony/polyfill-php80": "~1.15"
  6439. },
  6440. "require-dev": {
  6441. "symfony/error-handler": "^4.4|^5.0",
  6442. "symfony/http-client": "^4.4|^5.0",
  6443. "symfony/translation-contracts": "^1.1|^2",
  6444. "symfony/var-exporter": "^4.4|^5.0"
  6445. },
  6446. "type": "library",
  6447. "autoload": {
  6448. "psr-4": {
  6449. "Symfony\\Component\\String\\": ""
  6450. },
  6451. "files": [
  6452. "Resources/functions.php"
  6453. ],
  6454. "exclude-from-classmap": [
  6455. "/Tests/"
  6456. ]
  6457. },
  6458. "notification-url": "https://packagist.org/downloads/",
  6459. "license": [
  6460. "MIT"
  6461. ],
  6462. "authors": [
  6463. {
  6464. "name": "Nicolas Grekas",
  6465. "email": "p@tchwork.com"
  6466. },
  6467. {
  6468. "name": "Symfony Community",
  6469. "homepage": "https://symfony.com/contributors"
  6470. }
  6471. ],
  6472. "description": "Symfony String component",
  6473. "homepage": "https://symfony.com",
  6474. "keywords": [
  6475. "grapheme",
  6476. "i18n",
  6477. "string",
  6478. "unicode",
  6479. "utf-8",
  6480. "utf8"
  6481. ],
  6482. "support": {
  6483. "source": "https://github.com/symfony/string/tree/v5.2.1"
  6484. },
  6485. "funding": [
  6486. {
  6487. "url": "https://symfony.com/sponsor",
  6488. "type": "custom"
  6489. },
  6490. {
  6491. "url": "https://github.com/fabpot",
  6492. "type": "github"
  6493. },
  6494. {
  6495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6496. "type": "tidelift"
  6497. }
  6498. ],
  6499. "time": "2020-12-05T07:33:16+00:00"
  6500. },
  6501. {
  6502. "name": "symfony/translation",
  6503. "version": "v5.2.1",
  6504. "source": {
  6505. "type": "git",
  6506. "url": "https://github.com/symfony/translation.git",
  6507. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  6508. },
  6509. "dist": {
  6510. "type": "zip",
  6511. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  6512. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  6513. "shasum": ""
  6514. },
  6515. "require": {
  6516. "php": ">=7.2.5",
  6517. "symfony/polyfill-mbstring": "~1.0",
  6518. "symfony/polyfill-php80": "^1.15",
  6519. "symfony/translation-contracts": "^2.3"
  6520. },
  6521. "conflict": {
  6522. "symfony/config": "<4.4",
  6523. "symfony/dependency-injection": "<5.0",
  6524. "symfony/http-kernel": "<5.0",
  6525. "symfony/twig-bundle": "<5.0",
  6526. "symfony/yaml": "<4.4"
  6527. },
  6528. "provide": {
  6529. "symfony/translation-implementation": "2.0"
  6530. },
  6531. "require-dev": {
  6532. "psr/log": "~1.0",
  6533. "symfony/config": "^4.4|^5.0",
  6534. "symfony/console": "^4.4|^5.0",
  6535. "symfony/dependency-injection": "^5.0",
  6536. "symfony/finder": "^4.4|^5.0",
  6537. "symfony/http-kernel": "^5.0",
  6538. "symfony/intl": "^4.4|^5.0",
  6539. "symfony/service-contracts": "^1.1.2|^2",
  6540. "symfony/yaml": "^4.4|^5.0"
  6541. },
  6542. "suggest": {
  6543. "psr/log-implementation": "To use logging capability in translator",
  6544. "symfony/config": "",
  6545. "symfony/yaml": ""
  6546. },
  6547. "type": "library",
  6548. "autoload": {
  6549. "files": [
  6550. "Resources/functions.php"
  6551. ],
  6552. "psr-4": {
  6553. "Symfony\\Component\\Translation\\": ""
  6554. },
  6555. "exclude-from-classmap": [
  6556. "/Tests/"
  6557. ]
  6558. },
  6559. "notification-url": "https://packagist.org/downloads/",
  6560. "license": [
  6561. "MIT"
  6562. ],
  6563. "authors": [
  6564. {
  6565. "name": "Fabien Potencier",
  6566. "email": "fabien@symfony.com"
  6567. },
  6568. {
  6569. "name": "Symfony Community",
  6570. "homepage": "https://symfony.com/contributors"
  6571. }
  6572. ],
  6573. "description": "Symfony Translation Component",
  6574. "homepage": "https://symfony.com",
  6575. "support": {
  6576. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  6577. },
  6578. "funding": [
  6579. {
  6580. "url": "https://symfony.com/sponsor",
  6581. "type": "custom"
  6582. },
  6583. {
  6584. "url": "https://github.com/fabpot",
  6585. "type": "github"
  6586. },
  6587. {
  6588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6589. "type": "tidelift"
  6590. }
  6591. ],
  6592. "time": "2020-12-08T17:03:37+00:00"
  6593. },
  6594. {
  6595. "name": "symfony/translation-contracts",
  6596. "version": "v2.3.0",
  6597. "source": {
  6598. "type": "git",
  6599. "url": "https://github.com/symfony/translation-contracts.git",
  6600. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6601. },
  6602. "dist": {
  6603. "type": "zip",
  6604. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6605. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6606. "shasum": ""
  6607. },
  6608. "require": {
  6609. "php": ">=7.2.5"
  6610. },
  6611. "suggest": {
  6612. "symfony/translation-implementation": ""
  6613. },
  6614. "type": "library",
  6615. "extra": {
  6616. "branch-alias": {
  6617. "dev-master": "2.3-dev"
  6618. },
  6619. "thanks": {
  6620. "name": "symfony/contracts",
  6621. "url": "https://github.com/symfony/contracts"
  6622. }
  6623. },
  6624. "autoload": {
  6625. "psr-4": {
  6626. "Symfony\\Contracts\\Translation\\": ""
  6627. }
  6628. },
  6629. "notification-url": "https://packagist.org/downloads/",
  6630. "license": [
  6631. "MIT"
  6632. ],
  6633. "authors": [
  6634. {
  6635. "name": "Nicolas Grekas",
  6636. "email": "p@tchwork.com"
  6637. },
  6638. {
  6639. "name": "Symfony Community",
  6640. "homepage": "https://symfony.com/contributors"
  6641. }
  6642. ],
  6643. "description": "Generic abstractions related to translation",
  6644. "homepage": "https://symfony.com",
  6645. "keywords": [
  6646. "abstractions",
  6647. "contracts",
  6648. "decoupling",
  6649. "interfaces",
  6650. "interoperability",
  6651. "standards"
  6652. ],
  6653. "support": {
  6654. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6655. },
  6656. "funding": [
  6657. {
  6658. "url": "https://symfony.com/sponsor",
  6659. "type": "custom"
  6660. },
  6661. {
  6662. "url": "https://github.com/fabpot",
  6663. "type": "github"
  6664. },
  6665. {
  6666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6667. "type": "tidelift"
  6668. }
  6669. ],
  6670. "time": "2020-09-28T13:05:58+00:00"
  6671. },
  6672. {
  6673. "name": "symfony/var-dumper",
  6674. "version": "v5.2.1",
  6675. "source": {
  6676. "type": "git",
  6677. "url": "https://github.com/symfony/var-dumper.git",
  6678. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  6679. },
  6680. "dist": {
  6681. "type": "zip",
  6682. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6683. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6684. "shasum": ""
  6685. },
  6686. "require": {
  6687. "php": ">=7.2.5",
  6688. "symfony/polyfill-mbstring": "~1.0",
  6689. "symfony/polyfill-php80": "^1.15"
  6690. },
  6691. "conflict": {
  6692. "phpunit/phpunit": "<5.4.3",
  6693. "symfony/console": "<4.4"
  6694. },
  6695. "require-dev": {
  6696. "ext-iconv": "*",
  6697. "symfony/console": "^4.4|^5.0",
  6698. "symfony/process": "^4.4|^5.0",
  6699. "twig/twig": "^2.4|^3.0"
  6700. },
  6701. "suggest": {
  6702. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6703. "ext-intl": "To show region name in time zone dump",
  6704. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6705. },
  6706. "bin": [
  6707. "Resources/bin/var-dump-server"
  6708. ],
  6709. "type": "library",
  6710. "autoload": {
  6711. "files": [
  6712. "Resources/functions/dump.php"
  6713. ],
  6714. "psr-4": {
  6715. "Symfony\\Component\\VarDumper\\": ""
  6716. },
  6717. "exclude-from-classmap": [
  6718. "/Tests/"
  6719. ]
  6720. },
  6721. "notification-url": "https://packagist.org/downloads/",
  6722. "license": [
  6723. "MIT"
  6724. ],
  6725. "authors": [
  6726. {
  6727. "name": "Nicolas Grekas",
  6728. "email": "p@tchwork.com"
  6729. },
  6730. {
  6731. "name": "Symfony Community",
  6732. "homepage": "https://symfony.com/contributors"
  6733. }
  6734. ],
  6735. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6736. "homepage": "https://symfony.com",
  6737. "keywords": [
  6738. "debug",
  6739. "dump"
  6740. ],
  6741. "support": {
  6742. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  6743. },
  6744. "funding": [
  6745. {
  6746. "url": "https://symfony.com/sponsor",
  6747. "type": "custom"
  6748. },
  6749. {
  6750. "url": "https://github.com/fabpot",
  6751. "type": "github"
  6752. },
  6753. {
  6754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6755. "type": "tidelift"
  6756. }
  6757. ],
  6758. "time": "2020-12-16T17:02:19+00:00"
  6759. },
  6760. {
  6761. "name": "symfony/yaml",
  6762. "version": "v5.2.1",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/symfony/yaml.git",
  6766. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/symfony/yaml/zipball/290ea5e03b8cf9b42c783163123f54441fb06939",
  6771. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939",
  6772. "shasum": ""
  6773. },
  6774. "require": {
  6775. "php": ">=7.2.5",
  6776. "symfony/deprecation-contracts": "^2.1",
  6777. "symfony/polyfill-ctype": "~1.8"
  6778. },
  6779. "conflict": {
  6780. "symfony/console": "<4.4"
  6781. },
  6782. "require-dev": {
  6783. "symfony/console": "^4.4|^5.0"
  6784. },
  6785. "suggest": {
  6786. "symfony/console": "For validating YAML files using the lint command"
  6787. },
  6788. "bin": [
  6789. "Resources/bin/yaml-lint"
  6790. ],
  6791. "type": "library",
  6792. "autoload": {
  6793. "psr-4": {
  6794. "Symfony\\Component\\Yaml\\": ""
  6795. },
  6796. "exclude-from-classmap": [
  6797. "/Tests/"
  6798. ]
  6799. },
  6800. "notification-url": "https://packagist.org/downloads/",
  6801. "license": [
  6802. "MIT"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Fabien Potencier",
  6807. "email": "fabien@symfony.com"
  6808. },
  6809. {
  6810. "name": "Symfony Community",
  6811. "homepage": "https://symfony.com/contributors"
  6812. }
  6813. ],
  6814. "description": "Symfony Yaml Component",
  6815. "homepage": "https://symfony.com",
  6816. "support": {
  6817. "source": "https://github.com/symfony/yaml/tree/v5.2.1"
  6818. },
  6819. "funding": [
  6820. {
  6821. "url": "https://symfony.com/sponsor",
  6822. "type": "custom"
  6823. },
  6824. {
  6825. "url": "https://github.com/fabpot",
  6826. "type": "github"
  6827. },
  6828. {
  6829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6830. "type": "tidelift"
  6831. }
  6832. ],
  6833. "time": "2020-12-08T17:02:38+00:00"
  6834. },
  6835. {
  6836. "name": "tijsverkoyen/css-to-inline-styles",
  6837. "version": "2.2.3",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6841. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6846. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6847. "shasum": ""
  6848. },
  6849. "require": {
  6850. "ext-dom": "*",
  6851. "ext-libxml": "*",
  6852. "php": "^5.5 || ^7.0 || ^8.0",
  6853. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6854. },
  6855. "require-dev": {
  6856. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6857. },
  6858. "type": "library",
  6859. "extra": {
  6860. "branch-alias": {
  6861. "dev-master": "2.2.x-dev"
  6862. }
  6863. },
  6864. "autoload": {
  6865. "psr-4": {
  6866. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6867. }
  6868. },
  6869. "notification-url": "https://packagist.org/downloads/",
  6870. "license": [
  6871. "BSD-3-Clause"
  6872. ],
  6873. "authors": [
  6874. {
  6875. "name": "Tijs Verkoyen",
  6876. "email": "css_to_inline_styles@verkoyen.eu",
  6877. "role": "Developer"
  6878. }
  6879. ],
  6880. "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.",
  6881. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6882. "support": {
  6883. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6884. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6885. },
  6886. "time": "2020-07-13T06:12:54+00:00"
  6887. },
  6888. {
  6889. "name": "tymon/jwt-auth",
  6890. "version": "1.0.2",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6894. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  6899. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "illuminate/auth": "^5.2|^6|^7|^8",
  6904. "illuminate/contracts": "^5.2|^6|^7|^8",
  6905. "illuminate/http": "^5.2|^6|^7|^8",
  6906. "illuminate/support": "^5.2|^6|^7|^8",
  6907. "lcobucci/jwt": "<3.4",
  6908. "namshi/jose": "^7.0",
  6909. "nesbot/carbon": "^1.0|^2.0",
  6910. "php": "^5.5.9|^7.0"
  6911. },
  6912. "require-dev": {
  6913. "illuminate/console": "^5.2|^6|^7|^8",
  6914. "illuminate/database": "^5.2|^6|^7|^8",
  6915. "illuminate/routing": "^5.2|^6|^7|^8",
  6916. "mockery/mockery": ">=0.9.9",
  6917. "phpunit/phpunit": "~4.8|~6.0"
  6918. },
  6919. "type": "library",
  6920. "extra": {
  6921. "branch-alias": {
  6922. "dev-develop": "1.0-dev"
  6923. },
  6924. "laravel": {
  6925. "aliases": {
  6926. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6927. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6928. },
  6929. "providers": [
  6930. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6931. ]
  6932. }
  6933. },
  6934. "autoload": {
  6935. "psr-4": {
  6936. "Tymon\\JWTAuth\\": "src/"
  6937. }
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Sean Tymon",
  6946. "email": "tymon148@gmail.com",
  6947. "homepage": "https://tymon.xyz",
  6948. "role": "Developer"
  6949. }
  6950. ],
  6951. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6952. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6953. "keywords": [
  6954. "Authentication",
  6955. "JSON Web Token",
  6956. "auth",
  6957. "jwt",
  6958. "laravel"
  6959. ],
  6960. "support": {
  6961. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  6962. "source": "https://github.com/tymondesigns/jwt-auth"
  6963. },
  6964. "funding": [
  6965. {
  6966. "url": "https://www.patreon.com/seantymon",
  6967. "type": "patreon"
  6968. }
  6969. ],
  6970. "time": "2020-11-27T12:32:42+00:00"
  6971. },
  6972. {
  6973. "name": "vlucas/phpdotenv",
  6974. "version": "v4.1.8",
  6975. "source": {
  6976. "type": "git",
  6977. "url": "https://github.com/vlucas/phpdotenv.git",
  6978. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6979. },
  6980. "dist": {
  6981. "type": "zip",
  6982. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6983. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6984. "shasum": ""
  6985. },
  6986. "require": {
  6987. "php": "^5.5.9 || ^7.0 || ^8.0",
  6988. "phpoption/phpoption": "^1.7.3",
  6989. "symfony/polyfill-ctype": "^1.17"
  6990. },
  6991. "require-dev": {
  6992. "bamarni/composer-bin-plugin": "^1.4.1",
  6993. "ext-filter": "*",
  6994. "ext-pcre": "*",
  6995. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6996. },
  6997. "suggest": {
  6998. "ext-filter": "Required to use the boolean validator.",
  6999. "ext-pcre": "Required to use most of the library."
  7000. },
  7001. "type": "library",
  7002. "extra": {
  7003. "branch-alias": {
  7004. "dev-master": "4.1-dev"
  7005. }
  7006. },
  7007. "autoload": {
  7008. "psr-4": {
  7009. "Dotenv\\": "src/"
  7010. }
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "BSD-3-Clause"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Graham Campbell",
  7019. "email": "graham@alt-three.com",
  7020. "homepage": "https://gjcampbell.co.uk/"
  7021. },
  7022. {
  7023. "name": "Vance Lucas",
  7024. "email": "vance@vancelucas.com",
  7025. "homepage": "https://vancelucas.com/"
  7026. }
  7027. ],
  7028. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7029. "keywords": [
  7030. "dotenv",
  7031. "env",
  7032. "environment"
  7033. ],
  7034. "support": {
  7035. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7036. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  7037. },
  7038. "funding": [
  7039. {
  7040. "url": "https://github.com/GrahamCampbell",
  7041. "type": "github"
  7042. },
  7043. {
  7044. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7045. "type": "tidelift"
  7046. }
  7047. ],
  7048. "time": "2020-07-14T19:22:52+00:00"
  7049. },
  7050. {
  7051. "name": "voku/portable-ascii",
  7052. "version": "1.5.6",
  7053. "source": {
  7054. "type": "git",
  7055. "url": "https://github.com/voku/portable-ascii.git",
  7056. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7057. },
  7058. "dist": {
  7059. "type": "zip",
  7060. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7061. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7062. "shasum": ""
  7063. },
  7064. "require": {
  7065. "php": ">=7.0.0"
  7066. },
  7067. "require-dev": {
  7068. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7069. },
  7070. "suggest": {
  7071. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7072. },
  7073. "type": "library",
  7074. "autoload": {
  7075. "psr-4": {
  7076. "voku\\": "src/voku/"
  7077. }
  7078. },
  7079. "notification-url": "https://packagist.org/downloads/",
  7080. "license": [
  7081. "MIT"
  7082. ],
  7083. "authors": [
  7084. {
  7085. "name": "Lars Moelleken",
  7086. "homepage": "http://www.moelleken.org/"
  7087. }
  7088. ],
  7089. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7090. "homepage": "https://github.com/voku/portable-ascii",
  7091. "keywords": [
  7092. "ascii",
  7093. "clean",
  7094. "php"
  7095. ],
  7096. "support": {
  7097. "issues": "https://github.com/voku/portable-ascii/issues",
  7098. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7099. },
  7100. "funding": [
  7101. {
  7102. "url": "https://www.paypal.me/moelleken",
  7103. "type": "custom"
  7104. },
  7105. {
  7106. "url": "https://github.com/voku",
  7107. "type": "github"
  7108. },
  7109. {
  7110. "url": "https://opencollective.com/portable-ascii",
  7111. "type": "open_collective"
  7112. },
  7113. {
  7114. "url": "https://www.patreon.com/voku",
  7115. "type": "patreon"
  7116. },
  7117. {
  7118. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7119. "type": "tidelift"
  7120. }
  7121. ],
  7122. "time": "2020-11-12T00:07:28+00:00"
  7123. },
  7124. {
  7125. "name": "xhat/payjs",
  7126. "version": "1.5.0",
  7127. "source": {
  7128. "type": "git",
  7129. "url": "https://github.com/xhat/payjs.git",
  7130. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7131. },
  7132. "dist": {
  7133. "type": "zip",
  7134. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7135. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7136. "shasum": ""
  7137. },
  7138. "type": "library",
  7139. "autoload": {
  7140. "psr-4": {
  7141. "Xhat\\Payjs\\": "src/"
  7142. }
  7143. },
  7144. "notification-url": "https://packagist.org/downloads/",
  7145. "license": [
  7146. "MIT"
  7147. ],
  7148. "authors": [
  7149. {
  7150. "name": "andy",
  7151. "email": "andy@popfeng.com"
  7152. }
  7153. ],
  7154. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7155. "support": {
  7156. "issues": "https://github.com/xhat/payjs/issues",
  7157. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://payjs.cn/sponsor/dajjxz",
  7162. "type": "custom"
  7163. }
  7164. ],
  7165. "time": "2020-09-11T06:02:42+00:00"
  7166. },
  7167. {
  7168. "name": "zbrettonye/geetest",
  7169. "version": "v1.2.0",
  7170. "source": {
  7171. "type": "git",
  7172. "url": "https://github.com/ZBrettonYe/geetest.git",
  7173. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7174. },
  7175. "dist": {
  7176. "type": "zip",
  7177. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7178. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7179. "shasum": ""
  7180. },
  7181. "require": {
  7182. "ext-json": "*",
  7183. "guzzlehttp/guzzle": "^6.3|^7.0",
  7184. "illuminate/routing": "^6|^7|^8",
  7185. "illuminate/support": "^6|^7|^8",
  7186. "php": "^7.2"
  7187. },
  7188. "require-dev": {
  7189. "mockery/mockery": "^1.3.1",
  7190. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7191. },
  7192. "type": "library",
  7193. "extra": {
  7194. "laravel": {
  7195. "providers": [
  7196. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7197. ],
  7198. "aliases": {
  7199. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7200. }
  7201. }
  7202. },
  7203. "autoload": {
  7204. "psr-4": {
  7205. "ZBrettonYe\\Geetest\\": "src/"
  7206. }
  7207. },
  7208. "notification-url": "https://packagist.org/downloads/",
  7209. "license": [
  7210. "MIT"
  7211. ],
  7212. "authors": [
  7213. {
  7214. "name": "zbrettonye",
  7215. "email": "monkeyblacktech97@gmail.com"
  7216. }
  7217. ],
  7218. "description": "Geetest Package for Laravel6-8",
  7219. "keywords": [
  7220. "geetest",
  7221. "laravel"
  7222. ],
  7223. "support": {
  7224. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7225. },
  7226. "time": "2020-10-13T20:15:36+00:00"
  7227. },
  7228. {
  7229. "name": "zbrettonye/hcaptcha",
  7230. "version": "V1.1.0",
  7231. "source": {
  7232. "type": "git",
  7233. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7234. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7235. },
  7236. "dist": {
  7237. "type": "zip",
  7238. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7239. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7240. "shasum": ""
  7241. },
  7242. "require": {
  7243. "guzzlehttp/guzzle": "^6.2|^7.0",
  7244. "illuminate/support": "^6|^7|^8",
  7245. "php": "^7.2"
  7246. },
  7247. "require-dev": {
  7248. "phpunit/phpunit": "~4.8"
  7249. },
  7250. "type": "library",
  7251. "extra": {
  7252. "laravel": {
  7253. "providers": [
  7254. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7255. ],
  7256. "aliases": {
  7257. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7258. }
  7259. }
  7260. },
  7261. "autoload": {
  7262. "psr-4": {
  7263. "ZBrettonYe\\HCaptcha\\": "src/"
  7264. }
  7265. },
  7266. "notification-url": "https://packagist.org/downloads/",
  7267. "license": [
  7268. "MIT"
  7269. ],
  7270. "authors": [
  7271. {
  7272. "name": "zbrettonye",
  7273. "email": "monkeyblacktech97@gmail.com"
  7274. }
  7275. ],
  7276. "description": "hCaptcha For Laravel6~8",
  7277. "keywords": [
  7278. "captcha",
  7279. "hcaptcha",
  7280. "laravel"
  7281. ],
  7282. "support": {
  7283. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7284. },
  7285. "time": "2020-10-13T21:22:51+00:00"
  7286. },
  7287. {
  7288. "name": "zbrettonye/no-captcha",
  7289. "version": "v1.1.0",
  7290. "source": {
  7291. "type": "git",
  7292. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7293. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7294. },
  7295. "dist": {
  7296. "type": "zip",
  7297. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7298. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7299. "shasum": ""
  7300. },
  7301. "require": {
  7302. "ext-json": "*",
  7303. "guzzlehttp/guzzle": "^6.2|^7.0",
  7304. "illuminate/support": "^6|^7|^8",
  7305. "php": "^7.2"
  7306. },
  7307. "require-dev": {
  7308. "phpunit/phpunit": "~4.8"
  7309. },
  7310. "type": "library",
  7311. "extra": {
  7312. "laravel": {
  7313. "providers": [
  7314. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7315. ],
  7316. "aliases": {
  7317. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7318. }
  7319. }
  7320. },
  7321. "autoload": {
  7322. "psr-4": {
  7323. "ZBrettonYe\\NoCaptcha\\": "src/"
  7324. }
  7325. },
  7326. "notification-url": "https://packagist.org/downloads/",
  7327. "license": [
  7328. "MIT"
  7329. ],
  7330. "authors": [
  7331. {
  7332. "name": "zbrettonye",
  7333. "email": "monkeyblacktech97@gmail.com"
  7334. }
  7335. ],
  7336. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7337. "keywords": [
  7338. "captcha",
  7339. "laravel",
  7340. "no-captcha",
  7341. "recaptcha"
  7342. ],
  7343. "support": {
  7344. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7345. },
  7346. "time": "2020-10-13T21:35:30+00:00"
  7347. },
  7348. {
  7349. "name": "zoujingli/ip2region",
  7350. "version": "v1.0.9",
  7351. "source": {
  7352. "type": "git",
  7353. "url": "https://github.com/zoujingli/ip2region.git",
  7354. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7355. },
  7356. "dist": {
  7357. "type": "zip",
  7358. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7359. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7360. "shasum": ""
  7361. },
  7362. "require": {
  7363. "php": ">=5.3"
  7364. },
  7365. "type": "library",
  7366. "autoload": {
  7367. "classmap": [
  7368. "Ip2Region.php"
  7369. ]
  7370. },
  7371. "notification-url": "https://packagist.org/downloads/",
  7372. "license": [
  7373. "Apache-2.0"
  7374. ],
  7375. "authors": [
  7376. {
  7377. "name": "Anyon",
  7378. "email": "zoujingli@qq.com",
  7379. "homepage": "http://ctolog.com"
  7380. }
  7381. ],
  7382. "description": "Ip2Region for PHP",
  7383. "homepage": "https://github.com/zoujingli/Ip2Region",
  7384. "keywords": [
  7385. "Ip2Region"
  7386. ],
  7387. "support": {
  7388. "issues": "https://github.com/zoujingli/ip2region/issues",
  7389. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7390. },
  7391. "time": "2020-11-06T07:21:55+00:00"
  7392. }
  7393. ],
  7394. "packages-dev": [
  7395. {
  7396. "name": "andrey-helldar/laravel-lang-publisher",
  7397. "version": "v6.2.0",
  7398. "source": {
  7399. "type": "git",
  7400. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7401. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7402. },
  7403. "dist": {
  7404. "type": "zip",
  7405. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7406. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7407. "shasum": ""
  7408. },
  7409. "require": {
  7410. "andrey-helldar/pretty-array": "^1.4.2",
  7411. "andrey-helldar/support": "^1.4.1",
  7412. "ext-json": "*",
  7413. "illuminate/console": "^7.0|^8.0",
  7414. "illuminate/support": "^7.0|^8.0",
  7415. "laravel-lang/lang": "^7.0",
  7416. "php": "^7.2.5|^8.0"
  7417. },
  7418. "require-dev": {
  7419. "mockery/mockery": "^1.3.1",
  7420. "orchestra/testbench": "^5.0|^6.0",
  7421. "phpunit/phpunit": "^8.4|^9.0"
  7422. },
  7423. "suggest": {
  7424. "andrey-helldar/lang-translations": "Translation of main messages",
  7425. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7426. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7427. },
  7428. "type": "library",
  7429. "extra": {
  7430. "laravel": {
  7431. "providers": [
  7432. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7433. ]
  7434. }
  7435. },
  7436. "autoload": {
  7437. "psr-4": {
  7438. "Helldar\\LaravelLangPublisher\\": "src"
  7439. }
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "Andrey Helldar",
  7448. "email": "helldar@ai-rus.com"
  7449. }
  7450. ],
  7451. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7452. "keywords": [
  7453. "fortify",
  7454. "i18n",
  7455. "jetstream",
  7456. "lang",
  7457. "languages",
  7458. "laravel",
  7459. "locale",
  7460. "localization",
  7461. "lpm",
  7462. "lumen",
  7463. "publisher",
  7464. "trans",
  7465. "translations",
  7466. "validations"
  7467. ],
  7468. "support": {
  7469. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7470. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7471. },
  7472. "funding": [
  7473. {
  7474. "url": "https://money.yandex.ru/to/410012115955701",
  7475. "type": "custom"
  7476. },
  7477. {
  7478. "url": "https://paypal.me/helldar",
  7479. "type": "custom"
  7480. }
  7481. ],
  7482. "time": "2020-11-30T10:15:29+00:00"
  7483. },
  7484. {
  7485. "name": "andrey-helldar/pretty-array",
  7486. "version": "v1.5.0",
  7487. "source": {
  7488. "type": "git",
  7489. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7490. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7491. },
  7492. "dist": {
  7493. "type": "zip",
  7494. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7495. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7496. "shasum": ""
  7497. },
  7498. "require": {
  7499. "andrey-helldar/support": "^1.16.0",
  7500. "ext-dom": "*",
  7501. "ext-mbstring": "*",
  7502. "php": "^7.1.3|^8.0"
  7503. },
  7504. "require-dev": {
  7505. "phpstan/phpstan": "^0.12.7",
  7506. "phpunit/phpunit": "^7.0|^8.0"
  7507. },
  7508. "suggest": {
  7509. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7510. },
  7511. "type": "library",
  7512. "autoload": {
  7513. "psr-4": {
  7514. "Helldar\\PrettyArray\\": "src/"
  7515. }
  7516. },
  7517. "notification-url": "https://packagist.org/downloads/",
  7518. "license": [
  7519. "MIT"
  7520. ],
  7521. "authors": [
  7522. {
  7523. "name": "Andrey Helldar",
  7524. "email": "helldar@ai-rus.com"
  7525. }
  7526. ],
  7527. "description": "Simple conversion of an array to a pretty view.",
  7528. "keywords": [
  7529. "array",
  7530. "pretty",
  7531. "pretty array"
  7532. ],
  7533. "support": {
  7534. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7535. "source": "https://github.com/andrey-helldar/pretty-array"
  7536. },
  7537. "funding": [
  7538. {
  7539. "url": "https://money.yandex.ru/to/410012115955701",
  7540. "type": "custom"
  7541. },
  7542. {
  7543. "url": "https://paypal.me/helldar",
  7544. "type": "custom"
  7545. }
  7546. ],
  7547. "time": "2020-11-30T10:28:20+00:00"
  7548. },
  7549. {
  7550. "name": "andrey-helldar/support",
  7551. "version": "v1.30.2",
  7552. "source": {
  7553. "type": "git",
  7554. "url": "https://github.com/andrey-helldar/support.git",
  7555. "reference": "e463d3c5ed4302ab04001a04d3264fc78acac858"
  7556. },
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/e463d3c5ed4302ab04001a04d3264fc78acac858",
  7560. "reference": "e463d3c5ed4302ab04001a04d3264fc78acac858",
  7561. "shasum": ""
  7562. },
  7563. "require": {
  7564. "ext-ctype": "*",
  7565. "ext-dom": "*",
  7566. "ext-json": "*",
  7567. "ext-mbstring": "*",
  7568. "php": "^7.1.3|^8.0"
  7569. },
  7570. "require-dev": {
  7571. "ext-bcmath": "*",
  7572. "phpunit/phpunit": "^9.0"
  7573. },
  7574. "suggest": {
  7575. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7576. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7577. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7578. },
  7579. "type": "library",
  7580. "extra": {
  7581. "laravel": {
  7582. "providers": [
  7583. "Helldar\\Support\\ServiceProvider"
  7584. ]
  7585. }
  7586. },
  7587. "autoload": {
  7588. "psr-4": {
  7589. "Helldar\\Support\\": "src"
  7590. },
  7591. "files": [
  7592. "src/helpers/digit.php",
  7593. "src/helpers/dumper.php",
  7594. "src/helpers/http.php",
  7595. "src/helpers/strings.php"
  7596. ]
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "MIT"
  7601. ],
  7602. "authors": [
  7603. {
  7604. "name": "Andrey Helldar",
  7605. "email": "helldar@ai-rus.com"
  7606. }
  7607. ],
  7608. "description": "Support package is a collection of helpers and tools for projects.",
  7609. "keywords": [
  7610. "framework",
  7611. "laravel",
  7612. "support",
  7613. "symfony",
  7614. "yii",
  7615. "yii2"
  7616. ],
  7617. "support": {
  7618. "issues": "https://github.com/andrey-helldar/support/issues",
  7619. "source": "https://github.com/andrey-helldar/support"
  7620. },
  7621. "funding": [
  7622. {
  7623. "url": "https://money.yandex.ru/to/410012115955701",
  7624. "type": "custom"
  7625. },
  7626. {
  7627. "url": "https://paypal.me/helldar",
  7628. "type": "custom"
  7629. }
  7630. ],
  7631. "time": "2020-12-25T21:28:47+00:00"
  7632. },
  7633. {
  7634. "name": "arcanedev/laravel-lang",
  7635. "version": "8.0.0",
  7636. "source": {
  7637. "type": "git",
  7638. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7639. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7640. },
  7641. "dist": {
  7642. "type": "zip",
  7643. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7644. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7645. "shasum": ""
  7646. },
  7647. "require": {
  7648. "arcanedev/support": "^7.1.2",
  7649. "caouecs/laravel-lang": "^6.0",
  7650. "php": "^7.2.5"
  7651. },
  7652. "require-dev": {
  7653. "mockery/mockery": "^1.3.1",
  7654. "orchestra/testbench": "^5.0",
  7655. "phpunit/phpunit": "^8.5|^9.0"
  7656. },
  7657. "type": "library",
  7658. "extra": {
  7659. "laravel": {
  7660. "providers": [
  7661. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7662. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7663. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7664. ]
  7665. }
  7666. },
  7667. "autoload": {
  7668. "psr-4": {
  7669. "Arcanedev\\LaravelLang\\": "src/"
  7670. }
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "MIT"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "ARCANEDEV",
  7679. "email": "arcanedev.maroc@gmail.com",
  7680. "homepage": "https://github.com/arcanedev-maroc",
  7681. "role": "Developer"
  7682. }
  7683. ],
  7684. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7685. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7686. "keywords": [
  7687. "arcanedev",
  7688. "lang",
  7689. "languages",
  7690. "laravel",
  7691. "localisation",
  7692. "localization",
  7693. "trans",
  7694. "translations",
  7695. "validations"
  7696. ],
  7697. "support": {
  7698. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7699. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7700. },
  7701. "time": "2020-03-21T21:29:29+00:00"
  7702. },
  7703. {
  7704. "name": "arcanedev/support",
  7705. "version": "7.1.2",
  7706. "source": {
  7707. "type": "git",
  7708. "url": "https://github.com/ARCANEDEV/Support.git",
  7709. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7710. },
  7711. "dist": {
  7712. "type": "zip",
  7713. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7714. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7715. "shasum": ""
  7716. },
  7717. "require": {
  7718. "illuminate/filesystem": "^7.0",
  7719. "illuminate/support": "^7.0",
  7720. "php": "^7.2.5"
  7721. },
  7722. "require-dev": {
  7723. "orchestra/testbench": "^5.0",
  7724. "phpunit/phpunit": "^8.0|^9.0"
  7725. },
  7726. "type": "library",
  7727. "extra": {
  7728. "branch-alias": {
  7729. "dev-master": "7.x-dev"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "psr-4": {
  7734. "Arcanedev\\Support\\": "src/"
  7735. },
  7736. "files": [
  7737. "helpers.php"
  7738. ]
  7739. },
  7740. "notification-url": "https://packagist.org/downloads/",
  7741. "license": [
  7742. "MIT"
  7743. ],
  7744. "authors": [
  7745. {
  7746. "name": "ARCANEDEV",
  7747. "email": "arcanedev.maroc@gmail.com",
  7748. "homepage": "https://github.com/arcanedev-maroc"
  7749. }
  7750. ],
  7751. "description": "ARCANEDEV Support Helpers",
  7752. "homepage": "https://github.com/ARCANEDEV/Support",
  7753. "keywords": [
  7754. "arcanedev",
  7755. "arcanesoft",
  7756. "laravel",
  7757. "support"
  7758. ],
  7759. "support": {
  7760. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7761. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7762. },
  7763. "time": "2020-03-12T09:28:19+00:00"
  7764. },
  7765. {
  7766. "name": "barryvdh/laravel-debugbar",
  7767. "version": "v3.5.1",
  7768. "source": {
  7769. "type": "git",
  7770. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7771. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7772. },
  7773. "dist": {
  7774. "type": "zip",
  7775. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7776. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7777. "shasum": ""
  7778. },
  7779. "require": {
  7780. "illuminate/routing": "^6|^7|^8",
  7781. "illuminate/session": "^6|^7|^8",
  7782. "illuminate/support": "^6|^7|^8",
  7783. "maximebf/debugbar": "^1.16.3",
  7784. "php": ">=7.2",
  7785. "symfony/debug": "^4.3|^5",
  7786. "symfony/finder": "^4.3|^5"
  7787. },
  7788. "require-dev": {
  7789. "orchestra/testbench-dusk": "^4|^5|^6",
  7790. "phpunit/phpunit": "^8.5|^9.0",
  7791. "squizlabs/php_codesniffer": "^3.5"
  7792. },
  7793. "type": "library",
  7794. "extra": {
  7795. "branch-alias": {
  7796. "dev-master": "3.5-dev"
  7797. },
  7798. "laravel": {
  7799. "providers": [
  7800. "Barryvdh\\Debugbar\\ServiceProvider"
  7801. ],
  7802. "aliases": {
  7803. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7804. }
  7805. }
  7806. },
  7807. "autoload": {
  7808. "psr-4": {
  7809. "Barryvdh\\Debugbar\\": "src/"
  7810. },
  7811. "files": [
  7812. "src/helpers.php"
  7813. ]
  7814. },
  7815. "notification-url": "https://packagist.org/downloads/",
  7816. "license": [
  7817. "MIT"
  7818. ],
  7819. "authors": [
  7820. {
  7821. "name": "Barry vd. Heuvel",
  7822. "email": "barryvdh@gmail.com"
  7823. }
  7824. ],
  7825. "description": "PHP Debugbar integration for Laravel",
  7826. "keywords": [
  7827. "debug",
  7828. "debugbar",
  7829. "laravel",
  7830. "profiler",
  7831. "webprofiler"
  7832. ],
  7833. "support": {
  7834. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7835. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.1"
  7836. },
  7837. "funding": [
  7838. {
  7839. "url": "https://github.com/barryvdh",
  7840. "type": "github"
  7841. }
  7842. ],
  7843. "time": "2020-09-07T19:32:39+00:00"
  7844. },
  7845. {
  7846. "name": "barryvdh/laravel-ide-helper",
  7847. "version": "v2.8.2",
  7848. "source": {
  7849. "type": "git",
  7850. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7851. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  7852. },
  7853. "dist": {
  7854. "type": "zip",
  7855. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7856. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7857. "shasum": ""
  7858. },
  7859. "require": {
  7860. "barryvdh/reflection-docblock": "^2.0.6",
  7861. "composer/composer": "^1.6 || ^2",
  7862. "doctrine/dbal": "~2.3",
  7863. "ext-json": "*",
  7864. "illuminate/console": "^6 || ^7 || ^8",
  7865. "illuminate/filesystem": "^6 || ^7 || ^8",
  7866. "illuminate/support": "^6 || ^7 || ^8",
  7867. "php": ">=7.2",
  7868. "phpdocumentor/type-resolver": "^1.1.0"
  7869. },
  7870. "require-dev": {
  7871. "ext-pdo_sqlite": "*",
  7872. "friendsofphp/php-cs-fixer": "^2",
  7873. "illuminate/config": "^6 || ^7 || ^8",
  7874. "illuminate/view": "^6 || ^7 || ^8",
  7875. "mockery/mockery": "^1.3.3",
  7876. "orchestra/testbench": "^4 || ^5 || ^6",
  7877. "phpunit/phpunit": "^8.5 || ^9",
  7878. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  7879. "vimeo/psalm": "^3.12"
  7880. },
  7881. "type": "library",
  7882. "extra": {
  7883. "branch-alias": {
  7884. "dev-master": "2.8-dev"
  7885. },
  7886. "laravel": {
  7887. "providers": [
  7888. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7889. ]
  7890. }
  7891. },
  7892. "autoload": {
  7893. "psr-4": {
  7894. "Barryvdh\\LaravelIdeHelper\\": "src"
  7895. }
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Barry vd. Heuvel",
  7904. "email": "barryvdh@gmail.com"
  7905. }
  7906. ],
  7907. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7908. "keywords": [
  7909. "autocomplete",
  7910. "codeintel",
  7911. "helper",
  7912. "ide",
  7913. "laravel",
  7914. "netbeans",
  7915. "phpdoc",
  7916. "phpstorm",
  7917. "sublime"
  7918. ],
  7919. "support": {
  7920. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7921. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  7922. },
  7923. "funding": [
  7924. {
  7925. "url": "https://github.com/barryvdh",
  7926. "type": "github"
  7927. }
  7928. ],
  7929. "time": "2020-12-06T08:55:05+00:00"
  7930. },
  7931. {
  7932. "name": "barryvdh/reflection-docblock",
  7933. "version": "v2.0.6",
  7934. "source": {
  7935. "type": "git",
  7936. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7937. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7938. },
  7939. "dist": {
  7940. "type": "zip",
  7941. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7942. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7943. "shasum": ""
  7944. },
  7945. "require": {
  7946. "php": ">=5.3.3"
  7947. },
  7948. "require-dev": {
  7949. "phpunit/phpunit": "~4.0,<4.5"
  7950. },
  7951. "suggest": {
  7952. "dflydev/markdown": "~1.0",
  7953. "erusev/parsedown": "~1.0"
  7954. },
  7955. "type": "library",
  7956. "extra": {
  7957. "branch-alias": {
  7958. "dev-master": "2.0.x-dev"
  7959. }
  7960. },
  7961. "autoload": {
  7962. "psr-0": {
  7963. "Barryvdh": [
  7964. "src/"
  7965. ]
  7966. }
  7967. },
  7968. "notification-url": "https://packagist.org/downloads/",
  7969. "license": [
  7970. "MIT"
  7971. ],
  7972. "authors": [
  7973. {
  7974. "name": "Mike van Riel",
  7975. "email": "mike.vanriel@naenius.com"
  7976. }
  7977. ],
  7978. "support": {
  7979. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7980. },
  7981. "time": "2018-12-13T10:34:14+00:00"
  7982. },
  7983. {
  7984. "name": "caouecs/laravel-lang",
  7985. "version": "6.1.4",
  7986. "source": {
  7987. "type": "git",
  7988. "url": "https://github.com/caouecs/lang.git",
  7989. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7990. },
  7991. "dist": {
  7992. "type": "zip",
  7993. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7994. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7995. "shasum": ""
  7996. },
  7997. "require": {
  7998. "ext-json": "*"
  7999. },
  8000. "suggest": {
  8001. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8002. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8003. "overtrue/laravel-lang": "Command to add languages in your project"
  8004. },
  8005. "type": "library",
  8006. "notification-url": "https://packagist.org/downloads/",
  8007. "license": [
  8008. "MIT"
  8009. ],
  8010. "authors": [
  8011. {
  8012. "name": "caouecs",
  8013. "email": "caouecs@caouecs.net"
  8014. }
  8015. ],
  8016. "description": "Languages for Laravel",
  8017. "keywords": [
  8018. "lang",
  8019. "languages",
  8020. "laravel",
  8021. "lpm"
  8022. ],
  8023. "support": {
  8024. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  8025. },
  8026. "abandoned": "https://github.com/Laravel-Lang/lang",
  8027. "time": "2020-07-13T14:35:32+00:00"
  8028. },
  8029. {
  8030. "name": "composer/composer",
  8031. "version": "2.0.8",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/composer/composer.git",
  8035. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  8040. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  8041. "shasum": ""
  8042. },
  8043. "require": {
  8044. "composer/ca-bundle": "^1.0",
  8045. "composer/semver": "^3.0",
  8046. "composer/spdx-licenses": "^1.2",
  8047. "composer/xdebug-handler": "^1.1",
  8048. "justinrainbow/json-schema": "^5.2.10",
  8049. "php": "^5.3.2 || ^7.0 || ^8.0",
  8050. "psr/log": "^1.0",
  8051. "react/promise": "^1.2 || ^2.7",
  8052. "seld/jsonlint": "^1.4",
  8053. "seld/phar-utils": "^1.0",
  8054. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8055. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8056. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8057. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8058. },
  8059. "require-dev": {
  8060. "phpspec/prophecy": "^1.10",
  8061. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8062. },
  8063. "suggest": {
  8064. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8065. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8066. "ext-zlib": "Allow gzip compression of HTTP requests"
  8067. },
  8068. "bin": [
  8069. "bin/composer"
  8070. ],
  8071. "type": "library",
  8072. "extra": {
  8073. "branch-alias": {
  8074. "dev-master": "2.0-dev"
  8075. }
  8076. },
  8077. "autoload": {
  8078. "psr-4": {
  8079. "Composer\\": "src/Composer"
  8080. }
  8081. },
  8082. "notification-url": "https://packagist.org/downloads/",
  8083. "license": [
  8084. "MIT"
  8085. ],
  8086. "authors": [
  8087. {
  8088. "name": "Nils Adermann",
  8089. "email": "naderman@naderman.de",
  8090. "homepage": "https://www.naderman.de"
  8091. },
  8092. {
  8093. "name": "Jordi Boggiano",
  8094. "email": "j.boggiano@seld.be",
  8095. "homepage": "https://seld.be"
  8096. }
  8097. ],
  8098. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8099. "homepage": "https://getcomposer.org/",
  8100. "keywords": [
  8101. "autoload",
  8102. "dependency",
  8103. "package"
  8104. ],
  8105. "support": {
  8106. "irc": "irc://irc.freenode.org/composer",
  8107. "issues": "https://github.com/composer/composer/issues",
  8108. "source": "https://github.com/composer/composer/tree/2.0.8"
  8109. },
  8110. "funding": [
  8111. {
  8112. "url": "https://packagist.com",
  8113. "type": "custom"
  8114. },
  8115. {
  8116. "url": "https://github.com/composer",
  8117. "type": "github"
  8118. },
  8119. {
  8120. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8121. "type": "tidelift"
  8122. }
  8123. ],
  8124. "time": "2020-12-03T16:20:39+00:00"
  8125. },
  8126. {
  8127. "name": "composer/semver",
  8128. "version": "3.2.4",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/composer/semver.git",
  8132. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8137. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8138. "shasum": ""
  8139. },
  8140. "require": {
  8141. "php": "^5.3.2 || ^7.0 || ^8.0"
  8142. },
  8143. "require-dev": {
  8144. "phpstan/phpstan": "^0.12.54",
  8145. "symfony/phpunit-bridge": "^4.2 || ^5"
  8146. },
  8147. "type": "library",
  8148. "extra": {
  8149. "branch-alias": {
  8150. "dev-main": "3.x-dev"
  8151. }
  8152. },
  8153. "autoload": {
  8154. "psr-4": {
  8155. "Composer\\Semver\\": "src"
  8156. }
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "MIT"
  8161. ],
  8162. "authors": [
  8163. {
  8164. "name": "Nils Adermann",
  8165. "email": "naderman@naderman.de",
  8166. "homepage": "http://www.naderman.de"
  8167. },
  8168. {
  8169. "name": "Jordi Boggiano",
  8170. "email": "j.boggiano@seld.be",
  8171. "homepage": "http://seld.be"
  8172. },
  8173. {
  8174. "name": "Rob Bast",
  8175. "email": "rob.bast@gmail.com",
  8176. "homepage": "http://robbast.nl"
  8177. }
  8178. ],
  8179. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8180. "keywords": [
  8181. "semantic",
  8182. "semver",
  8183. "validation",
  8184. "versioning"
  8185. ],
  8186. "support": {
  8187. "irc": "irc://irc.freenode.org/composer",
  8188. "issues": "https://github.com/composer/semver/issues",
  8189. "source": "https://github.com/composer/semver/tree/3.2.4"
  8190. },
  8191. "funding": [
  8192. {
  8193. "url": "https://packagist.com",
  8194. "type": "custom"
  8195. },
  8196. {
  8197. "url": "https://github.com/composer",
  8198. "type": "github"
  8199. },
  8200. {
  8201. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8202. "type": "tidelift"
  8203. }
  8204. ],
  8205. "time": "2020-11-13T08:59:24+00:00"
  8206. },
  8207. {
  8208. "name": "composer/spdx-licenses",
  8209. "version": "1.5.5",
  8210. "source": {
  8211. "type": "git",
  8212. "url": "https://github.com/composer/spdx-licenses.git",
  8213. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8214. },
  8215. "dist": {
  8216. "type": "zip",
  8217. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8218. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8219. "shasum": ""
  8220. },
  8221. "require": {
  8222. "php": "^5.3.2 || ^7.0 || ^8.0"
  8223. },
  8224. "require-dev": {
  8225. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8226. },
  8227. "type": "library",
  8228. "extra": {
  8229. "branch-alias": {
  8230. "dev-main": "1.x-dev"
  8231. }
  8232. },
  8233. "autoload": {
  8234. "psr-4": {
  8235. "Composer\\Spdx\\": "src"
  8236. }
  8237. },
  8238. "notification-url": "https://packagist.org/downloads/",
  8239. "license": [
  8240. "MIT"
  8241. ],
  8242. "authors": [
  8243. {
  8244. "name": "Nils Adermann",
  8245. "email": "naderman@naderman.de",
  8246. "homepage": "http://www.naderman.de"
  8247. },
  8248. {
  8249. "name": "Jordi Boggiano",
  8250. "email": "j.boggiano@seld.be",
  8251. "homepage": "http://seld.be"
  8252. },
  8253. {
  8254. "name": "Rob Bast",
  8255. "email": "rob.bast@gmail.com",
  8256. "homepage": "http://robbast.nl"
  8257. }
  8258. ],
  8259. "description": "SPDX licenses list and validation library.",
  8260. "keywords": [
  8261. "license",
  8262. "spdx",
  8263. "validator"
  8264. ],
  8265. "support": {
  8266. "irc": "irc://irc.freenode.org/composer",
  8267. "issues": "https://github.com/composer/spdx-licenses/issues",
  8268. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8269. },
  8270. "funding": [
  8271. {
  8272. "url": "https://packagist.com",
  8273. "type": "custom"
  8274. },
  8275. {
  8276. "url": "https://github.com/composer",
  8277. "type": "github"
  8278. },
  8279. {
  8280. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8281. "type": "tidelift"
  8282. }
  8283. ],
  8284. "time": "2020-12-03T16:04:16+00:00"
  8285. },
  8286. {
  8287. "name": "composer/xdebug-handler",
  8288. "version": "1.4.5",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/composer/xdebug-handler.git",
  8292. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8297. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "php": "^5.3.2 || ^7.0 || ^8.0",
  8302. "psr/log": "^1.0"
  8303. },
  8304. "require-dev": {
  8305. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8306. },
  8307. "type": "library",
  8308. "autoload": {
  8309. "psr-4": {
  8310. "Composer\\XdebugHandler\\": "src"
  8311. }
  8312. },
  8313. "notification-url": "https://packagist.org/downloads/",
  8314. "license": [
  8315. "MIT"
  8316. ],
  8317. "authors": [
  8318. {
  8319. "name": "John Stevenson",
  8320. "email": "john-stevenson@blueyonder.co.uk"
  8321. }
  8322. ],
  8323. "description": "Restarts a process without Xdebug.",
  8324. "keywords": [
  8325. "Xdebug",
  8326. "performance"
  8327. ],
  8328. "support": {
  8329. "irc": "irc://irc.freenode.org/composer",
  8330. "issues": "https://github.com/composer/xdebug-handler/issues",
  8331. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8332. },
  8333. "funding": [
  8334. {
  8335. "url": "https://packagist.com",
  8336. "type": "custom"
  8337. },
  8338. {
  8339. "url": "https://github.com/composer",
  8340. "type": "github"
  8341. },
  8342. {
  8343. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8344. "type": "tidelift"
  8345. }
  8346. ],
  8347. "time": "2020-11-13T08:04:11+00:00"
  8348. },
  8349. {
  8350. "name": "doctrine/instantiator",
  8351. "version": "1.4.0",
  8352. "source": {
  8353. "type": "git",
  8354. "url": "https://github.com/doctrine/instantiator.git",
  8355. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8356. },
  8357. "dist": {
  8358. "type": "zip",
  8359. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8360. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8361. "shasum": ""
  8362. },
  8363. "require": {
  8364. "php": "^7.1 || ^8.0"
  8365. },
  8366. "require-dev": {
  8367. "doctrine/coding-standard": "^8.0",
  8368. "ext-pdo": "*",
  8369. "ext-phar": "*",
  8370. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8371. "phpstan/phpstan": "^0.12",
  8372. "phpstan/phpstan-phpunit": "^0.12",
  8373. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8374. },
  8375. "type": "library",
  8376. "autoload": {
  8377. "psr-4": {
  8378. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8379. }
  8380. },
  8381. "notification-url": "https://packagist.org/downloads/",
  8382. "license": [
  8383. "MIT"
  8384. ],
  8385. "authors": [
  8386. {
  8387. "name": "Marco Pivetta",
  8388. "email": "ocramius@gmail.com",
  8389. "homepage": "https://ocramius.github.io/"
  8390. }
  8391. ],
  8392. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8393. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8394. "keywords": [
  8395. "constructor",
  8396. "instantiate"
  8397. ],
  8398. "support": {
  8399. "issues": "https://github.com/doctrine/instantiator/issues",
  8400. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8401. },
  8402. "funding": [
  8403. {
  8404. "url": "https://www.doctrine-project.org/sponsorship.html",
  8405. "type": "custom"
  8406. },
  8407. {
  8408. "url": "https://www.patreon.com/phpdoctrine",
  8409. "type": "patreon"
  8410. },
  8411. {
  8412. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8413. "type": "tidelift"
  8414. }
  8415. ],
  8416. "time": "2020-11-10T18:47:58+00:00"
  8417. },
  8418. {
  8419. "name": "facade/flare-client-php",
  8420. "version": "1.3.7",
  8421. "source": {
  8422. "type": "git",
  8423. "url": "https://github.com/facade/flare-client-php.git",
  8424. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8425. },
  8426. "dist": {
  8427. "type": "zip",
  8428. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8429. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8430. "shasum": ""
  8431. },
  8432. "require": {
  8433. "facade/ignition-contracts": "~1.0",
  8434. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8435. "php": "^7.1|^8.0",
  8436. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8437. "symfony/mime": "^3.4|^4.0|^5.1",
  8438. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8439. },
  8440. "require-dev": {
  8441. "friendsofphp/php-cs-fixer": "^2.14",
  8442. "phpunit/phpunit": "^7.5.16",
  8443. "spatie/phpunit-snapshot-assertions": "^2.0"
  8444. },
  8445. "type": "library",
  8446. "extra": {
  8447. "branch-alias": {
  8448. "dev-master": "1.0-dev"
  8449. }
  8450. },
  8451. "autoload": {
  8452. "psr-4": {
  8453. "Facade\\FlareClient\\": "src"
  8454. },
  8455. "files": [
  8456. "src/helpers.php"
  8457. ]
  8458. },
  8459. "notification-url": "https://packagist.org/downloads/",
  8460. "license": [
  8461. "MIT"
  8462. ],
  8463. "description": "Send PHP errors to Flare",
  8464. "homepage": "https://github.com/facade/flare-client-php",
  8465. "keywords": [
  8466. "exception",
  8467. "facade",
  8468. "flare",
  8469. "reporting"
  8470. ],
  8471. "support": {
  8472. "issues": "https://github.com/facade/flare-client-php/issues",
  8473. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8474. },
  8475. "funding": [
  8476. {
  8477. "url": "https://github.com/spatie",
  8478. "type": "github"
  8479. }
  8480. ],
  8481. "time": "2020-10-21T16:02:39+00:00"
  8482. },
  8483. {
  8484. "name": "facade/ignition",
  8485. "version": "2.5.3",
  8486. "source": {
  8487. "type": "git",
  8488. "url": "https://github.com/facade/ignition.git",
  8489. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99"
  8490. },
  8491. "dist": {
  8492. "type": "zip",
  8493. "url": "https://api.github.com/repos/facade/ignition/zipball/d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  8494. "reference": "d8dc4f90ed469f9f9313b976fb078c20585d5c99",
  8495. "shasum": ""
  8496. },
  8497. "require": {
  8498. "ext-json": "*",
  8499. "ext-mbstring": "*",
  8500. "facade/flare-client-php": "^1.3.7",
  8501. "facade/ignition-contracts": "^1.0.2",
  8502. "filp/whoops": "^2.4",
  8503. "illuminate/support": "^7.0|^8.0",
  8504. "monolog/monolog": "^2.0",
  8505. "php": "^7.2.5|^8.0",
  8506. "symfony/console": "^5.0",
  8507. "symfony/var-dumper": "^5.0"
  8508. },
  8509. "require-dev": {
  8510. "friendsofphp/php-cs-fixer": "^2.14",
  8511. "mockery/mockery": "^1.3",
  8512. "orchestra/testbench": "^5.0|^6.0",
  8513. "psalm/plugin-laravel": "^1.2"
  8514. },
  8515. "suggest": {
  8516. "laravel/telescope": "^3.1"
  8517. },
  8518. "type": "library",
  8519. "extra": {
  8520. "branch-alias": {
  8521. "dev-master": "2.x-dev"
  8522. },
  8523. "laravel": {
  8524. "providers": [
  8525. "Facade\\Ignition\\IgnitionServiceProvider"
  8526. ],
  8527. "aliases": {
  8528. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8529. }
  8530. }
  8531. },
  8532. "autoload": {
  8533. "psr-4": {
  8534. "Facade\\Ignition\\": "src"
  8535. },
  8536. "files": [
  8537. "src/helpers.php"
  8538. ]
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "description": "A beautiful error page for Laravel applications.",
  8545. "homepage": "https://github.com/facade/ignition",
  8546. "keywords": [
  8547. "error",
  8548. "flare",
  8549. "laravel",
  8550. "page"
  8551. ],
  8552. "support": {
  8553. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8554. "forum": "https://twitter.com/flareappio",
  8555. "issues": "https://github.com/facade/ignition/issues",
  8556. "source": "https://github.com/facade/ignition"
  8557. },
  8558. "time": "2020-12-09T20:25:45+00:00"
  8559. },
  8560. {
  8561. "name": "facade/ignition-contracts",
  8562. "version": "1.0.2",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/facade/ignition-contracts.git",
  8566. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8571. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "php": "^7.3|^8.0"
  8576. },
  8577. "require-dev": {
  8578. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8579. "phpunit/phpunit": "^9.3.11",
  8580. "vimeo/psalm": "^3.17.1"
  8581. },
  8582. "type": "library",
  8583. "autoload": {
  8584. "psr-4": {
  8585. "Facade\\IgnitionContracts\\": "src"
  8586. }
  8587. },
  8588. "notification-url": "https://packagist.org/downloads/",
  8589. "license": [
  8590. "MIT"
  8591. ],
  8592. "authors": [
  8593. {
  8594. "name": "Freek Van der Herten",
  8595. "email": "freek@spatie.be",
  8596. "homepage": "https://flareapp.io",
  8597. "role": "Developer"
  8598. }
  8599. ],
  8600. "description": "Solution contracts for Ignition",
  8601. "homepage": "https://github.com/facade/ignition-contracts",
  8602. "keywords": [
  8603. "contracts",
  8604. "flare",
  8605. "ignition"
  8606. ],
  8607. "support": {
  8608. "issues": "https://github.com/facade/ignition-contracts/issues",
  8609. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8610. },
  8611. "time": "2020-10-16T08:27:54+00:00"
  8612. },
  8613. {
  8614. "name": "fakerphp/faker",
  8615. "version": "v1.13.0",
  8616. "source": {
  8617. "type": "git",
  8618. "url": "https://github.com/FakerPHP/Faker.git",
  8619. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  8620. },
  8621. "dist": {
  8622. "type": "zip",
  8623. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  8624. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  8625. "shasum": ""
  8626. },
  8627. "require": {
  8628. "php": "^7.1 || ^8.0"
  8629. },
  8630. "conflict": {
  8631. "fzaninotto/faker": "*"
  8632. },
  8633. "require-dev": {
  8634. "bamarni/composer-bin-plugin": "^1.4.1",
  8635. "ext-intl": "*",
  8636. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8637. },
  8638. "type": "library",
  8639. "autoload": {
  8640. "psr-4": {
  8641. "Faker\\": "src/Faker/"
  8642. }
  8643. },
  8644. "notification-url": "https://packagist.org/downloads/",
  8645. "license": [
  8646. "MIT"
  8647. ],
  8648. "authors": [
  8649. {
  8650. "name": "François Zaninotto"
  8651. }
  8652. ],
  8653. "description": "Faker is a PHP library that generates fake data for you.",
  8654. "keywords": [
  8655. "data",
  8656. "faker",
  8657. "fixtures"
  8658. ],
  8659. "support": {
  8660. "issues": "https://github.com/FakerPHP/Faker/issues",
  8661. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  8662. },
  8663. "time": "2020-12-18T16:50:48+00:00"
  8664. },
  8665. {
  8666. "name": "filp/whoops",
  8667. "version": "2.9.1",
  8668. "source": {
  8669. "type": "git",
  8670. "url": "https://github.com/filp/whoops.git",
  8671. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8672. },
  8673. "dist": {
  8674. "type": "zip",
  8675. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8676. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8677. "shasum": ""
  8678. },
  8679. "require": {
  8680. "php": "^5.5.9 || ^7.0 || ^8.0",
  8681. "psr/log": "^1.0.1"
  8682. },
  8683. "require-dev": {
  8684. "mockery/mockery": "^0.9 || ^1.0",
  8685. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8686. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8687. },
  8688. "suggest": {
  8689. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8690. "whoops/soap": "Formats errors as SOAP responses"
  8691. },
  8692. "type": "library",
  8693. "extra": {
  8694. "branch-alias": {
  8695. "dev-master": "2.7-dev"
  8696. }
  8697. },
  8698. "autoload": {
  8699. "psr-4": {
  8700. "Whoops\\": "src/Whoops/"
  8701. }
  8702. },
  8703. "notification-url": "https://packagist.org/downloads/",
  8704. "license": [
  8705. "MIT"
  8706. ],
  8707. "authors": [
  8708. {
  8709. "name": "Filipe Dobreira",
  8710. "homepage": "https://github.com/filp",
  8711. "role": "Developer"
  8712. }
  8713. ],
  8714. "description": "php error handling for cool kids",
  8715. "homepage": "https://filp.github.io/whoops/",
  8716. "keywords": [
  8717. "error",
  8718. "exception",
  8719. "handling",
  8720. "library",
  8721. "throwable",
  8722. "whoops"
  8723. ],
  8724. "support": {
  8725. "issues": "https://github.com/filp/whoops/issues",
  8726. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8727. },
  8728. "time": "2020-11-01T12:00:00+00:00"
  8729. },
  8730. {
  8731. "name": "hamcrest/hamcrest-php",
  8732. "version": "v2.0.1",
  8733. "source": {
  8734. "type": "git",
  8735. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8736. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8737. },
  8738. "dist": {
  8739. "type": "zip",
  8740. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8741. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8742. "shasum": ""
  8743. },
  8744. "require": {
  8745. "php": "^5.3|^7.0|^8.0"
  8746. },
  8747. "replace": {
  8748. "cordoval/hamcrest-php": "*",
  8749. "davedevelopment/hamcrest-php": "*",
  8750. "kodova/hamcrest-php": "*"
  8751. },
  8752. "require-dev": {
  8753. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8754. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8755. },
  8756. "type": "library",
  8757. "extra": {
  8758. "branch-alias": {
  8759. "dev-master": "2.1-dev"
  8760. }
  8761. },
  8762. "autoload": {
  8763. "classmap": [
  8764. "hamcrest"
  8765. ]
  8766. },
  8767. "notification-url": "https://packagist.org/downloads/",
  8768. "license": [
  8769. "BSD-3-Clause"
  8770. ],
  8771. "description": "This is the PHP port of Hamcrest Matchers",
  8772. "keywords": [
  8773. "test"
  8774. ],
  8775. "support": {
  8776. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8777. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8778. },
  8779. "time": "2020-07-09T08:09:16+00:00"
  8780. },
  8781. {
  8782. "name": "justinrainbow/json-schema",
  8783. "version": "5.2.10",
  8784. "source": {
  8785. "type": "git",
  8786. "url": "https://github.com/justinrainbow/json-schema.git",
  8787. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8788. },
  8789. "dist": {
  8790. "type": "zip",
  8791. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8792. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8793. "shasum": ""
  8794. },
  8795. "require": {
  8796. "php": ">=5.3.3"
  8797. },
  8798. "require-dev": {
  8799. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8800. "json-schema/json-schema-test-suite": "1.2.0",
  8801. "phpunit/phpunit": "^4.8.35"
  8802. },
  8803. "bin": [
  8804. "bin/validate-json"
  8805. ],
  8806. "type": "library",
  8807. "extra": {
  8808. "branch-alias": {
  8809. "dev-master": "5.0.x-dev"
  8810. }
  8811. },
  8812. "autoload": {
  8813. "psr-4": {
  8814. "JsonSchema\\": "src/JsonSchema/"
  8815. }
  8816. },
  8817. "notification-url": "https://packagist.org/downloads/",
  8818. "license": [
  8819. "MIT"
  8820. ],
  8821. "authors": [
  8822. {
  8823. "name": "Bruno Prieto Reis",
  8824. "email": "bruno.p.reis@gmail.com"
  8825. },
  8826. {
  8827. "name": "Justin Rainbow",
  8828. "email": "justin.rainbow@gmail.com"
  8829. },
  8830. {
  8831. "name": "Igor Wiedler",
  8832. "email": "igor@wiedler.ch"
  8833. },
  8834. {
  8835. "name": "Robert Schönthal",
  8836. "email": "seroscho@googlemail.com"
  8837. }
  8838. ],
  8839. "description": "A library to validate a json schema.",
  8840. "homepage": "https://github.com/justinrainbow/json-schema",
  8841. "keywords": [
  8842. "json",
  8843. "schema"
  8844. ],
  8845. "support": {
  8846. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8847. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8848. },
  8849. "time": "2020-05-27T16:41:55+00:00"
  8850. },
  8851. {
  8852. "name": "laravel/telescope",
  8853. "version": "v3.5.1",
  8854. "source": {
  8855. "type": "git",
  8856. "url": "https://github.com/laravel/telescope.git",
  8857. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8858. },
  8859. "dist": {
  8860. "type": "zip",
  8861. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8862. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8863. "shasum": ""
  8864. },
  8865. "require": {
  8866. "ext-json": "*",
  8867. "laravel/framework": "^6.0|^7.0",
  8868. "moontoast/math": "^1.1",
  8869. "php": "^7.2",
  8870. "symfony/var-dumper": "^4.4|^5.0"
  8871. },
  8872. "require-dev": {
  8873. "ext-gd": "*",
  8874. "orchestra/testbench": "^4.0|^5.0"
  8875. },
  8876. "type": "library",
  8877. "extra": {
  8878. "branch-alias": {
  8879. "dev-master": "3.x-dev"
  8880. },
  8881. "laravel": {
  8882. "providers": [
  8883. "Laravel\\Telescope\\TelescopeServiceProvider"
  8884. ]
  8885. }
  8886. },
  8887. "autoload": {
  8888. "psr-4": {
  8889. "Laravel\\Telescope\\": "src/"
  8890. }
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "MIT"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "Taylor Otwell",
  8899. "email": "taylor@laravel.com"
  8900. },
  8901. {
  8902. "name": "Mohamed Said",
  8903. "email": "mohamed@laravel.com"
  8904. }
  8905. ],
  8906. "description": "An elegant debug assistant for the Laravel framework.",
  8907. "keywords": [
  8908. "debugging",
  8909. "laravel",
  8910. "monitoring"
  8911. ],
  8912. "support": {
  8913. "issues": "https://github.com/laravel/telescope/issues",
  8914. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  8915. },
  8916. "time": "2020-07-28T19:12:33+00:00"
  8917. },
  8918. {
  8919. "name": "maximebf/debugbar",
  8920. "version": "v1.16.4",
  8921. "source": {
  8922. "type": "git",
  8923. "url": "https://github.com/maximebf/php-debugbar.git",
  8924. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  8925. },
  8926. "dist": {
  8927. "type": "zip",
  8928. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8929. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8930. "shasum": ""
  8931. },
  8932. "require": {
  8933. "php": "^7.1|^8",
  8934. "psr/log": "^1.0",
  8935. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8936. },
  8937. "require-dev": {
  8938. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8939. },
  8940. "suggest": {
  8941. "kriswallsmith/assetic": "The best way to manage assets",
  8942. "monolog/monolog": "Log using Monolog",
  8943. "predis/predis": "Redis storage"
  8944. },
  8945. "type": "library",
  8946. "extra": {
  8947. "branch-alias": {
  8948. "dev-master": "1.16-dev"
  8949. }
  8950. },
  8951. "autoload": {
  8952. "psr-4": {
  8953. "DebugBar\\": "src/DebugBar/"
  8954. }
  8955. },
  8956. "notification-url": "https://packagist.org/downloads/",
  8957. "license": [
  8958. "MIT"
  8959. ],
  8960. "authors": [
  8961. {
  8962. "name": "Maxime Bouroumeau-Fuseau",
  8963. "email": "maxime.bouroumeau@gmail.com",
  8964. "homepage": "http://maximebf.com"
  8965. },
  8966. {
  8967. "name": "Barry vd. Heuvel",
  8968. "email": "barryvdh@gmail.com"
  8969. }
  8970. ],
  8971. "description": "Debug bar in the browser for php application",
  8972. "homepage": "https://github.com/maximebf/php-debugbar",
  8973. "keywords": [
  8974. "debug",
  8975. "debugbar"
  8976. ],
  8977. "support": {
  8978. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8979. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.4"
  8980. },
  8981. "time": "2020-12-07T10:48:48+00:00"
  8982. },
  8983. {
  8984. "name": "mockery/mockery",
  8985. "version": "1.4.2",
  8986. "source": {
  8987. "type": "git",
  8988. "url": "https://github.com/mockery/mockery.git",
  8989. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8990. },
  8991. "dist": {
  8992. "type": "zip",
  8993. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8994. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8995. "shasum": ""
  8996. },
  8997. "require": {
  8998. "hamcrest/hamcrest-php": "^2.0.1",
  8999. "lib-pcre": ">=7.0",
  9000. "php": "^7.3 || ^8.0"
  9001. },
  9002. "conflict": {
  9003. "phpunit/phpunit": "<8.0"
  9004. },
  9005. "require-dev": {
  9006. "phpunit/phpunit": "^8.5 || ^9.3"
  9007. },
  9008. "type": "library",
  9009. "extra": {
  9010. "branch-alias": {
  9011. "dev-master": "1.4.x-dev"
  9012. }
  9013. },
  9014. "autoload": {
  9015. "psr-0": {
  9016. "Mockery": "library/"
  9017. }
  9018. },
  9019. "notification-url": "https://packagist.org/downloads/",
  9020. "license": [
  9021. "BSD-3-Clause"
  9022. ],
  9023. "authors": [
  9024. {
  9025. "name": "Pádraic Brady",
  9026. "email": "padraic.brady@gmail.com",
  9027. "homepage": "http://blog.astrumfutura.com"
  9028. },
  9029. {
  9030. "name": "Dave Marshall",
  9031. "email": "dave.marshall@atstsolutions.co.uk",
  9032. "homepage": "http://davedevelopment.co.uk"
  9033. }
  9034. ],
  9035. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9036. "homepage": "https://github.com/mockery/mockery",
  9037. "keywords": [
  9038. "BDD",
  9039. "TDD",
  9040. "library",
  9041. "mock",
  9042. "mock objects",
  9043. "mockery",
  9044. "stub",
  9045. "test",
  9046. "test double",
  9047. "testing"
  9048. ],
  9049. "support": {
  9050. "issues": "https://github.com/mockery/mockery/issues",
  9051. "source": "https://github.com/mockery/mockery/tree/master"
  9052. },
  9053. "time": "2020-08-11T18:10:13+00:00"
  9054. },
  9055. {
  9056. "name": "moontoast/math",
  9057. "version": "1.2.1",
  9058. "source": {
  9059. "type": "git",
  9060. "url": "https://github.com/ramsey/moontoast-math.git",
  9061. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9062. },
  9063. "dist": {
  9064. "type": "zip",
  9065. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9066. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9067. "shasum": ""
  9068. },
  9069. "require": {
  9070. "php": ">=5.3.3",
  9071. "phpseclib/bcmath_compat": ">=1.0.3"
  9072. },
  9073. "require-dev": {
  9074. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9075. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9076. "satooshi/php-coveralls": "^0.6.1",
  9077. "squizlabs/php_codesniffer": "^2.3"
  9078. },
  9079. "type": "library",
  9080. "autoload": {
  9081. "psr-4": {
  9082. "Moontoast\\Math\\": "src/Moontoast/Math",
  9083. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9084. }
  9085. },
  9086. "notification-url": "https://packagist.org/downloads/",
  9087. "license": [
  9088. "Apache-2.0"
  9089. ],
  9090. "authors": [
  9091. {
  9092. "name": "Ben Ramsey",
  9093. "email": "ben@benramsey.com",
  9094. "homepage": "https://benramsey.com"
  9095. }
  9096. ],
  9097. "description": "A mathematics library, providing functionality for large numbers",
  9098. "homepage": "https://github.com/ramsey/moontoast-math",
  9099. "keywords": [
  9100. "bcmath",
  9101. "math"
  9102. ],
  9103. "support": {
  9104. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9105. "source": "https://github.com/ramsey/moontoast-math"
  9106. },
  9107. "abandoned": "brick/math",
  9108. "time": "2020-01-05T04:49:34+00:00"
  9109. },
  9110. {
  9111. "name": "myclabs/deep-copy",
  9112. "version": "1.10.2",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/myclabs/DeepCopy.git",
  9116. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9121. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9122. "shasum": ""
  9123. },
  9124. "require": {
  9125. "php": "^7.1 || ^8.0"
  9126. },
  9127. "replace": {
  9128. "myclabs/deep-copy": "self.version"
  9129. },
  9130. "require-dev": {
  9131. "doctrine/collections": "^1.0",
  9132. "doctrine/common": "^2.6",
  9133. "phpunit/phpunit": "^7.1"
  9134. },
  9135. "type": "library",
  9136. "autoload": {
  9137. "psr-4": {
  9138. "DeepCopy\\": "src/DeepCopy/"
  9139. },
  9140. "files": [
  9141. "src/DeepCopy/deep_copy.php"
  9142. ]
  9143. },
  9144. "notification-url": "https://packagist.org/downloads/",
  9145. "license": [
  9146. "MIT"
  9147. ],
  9148. "description": "Create deep copies (clones) of your objects",
  9149. "keywords": [
  9150. "clone",
  9151. "copy",
  9152. "duplicate",
  9153. "object",
  9154. "object graph"
  9155. ],
  9156. "support": {
  9157. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9158. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9159. },
  9160. "funding": [
  9161. {
  9162. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9163. "type": "tidelift"
  9164. }
  9165. ],
  9166. "time": "2020-11-13T09:40:50+00:00"
  9167. },
  9168. {
  9169. "name": "nunomaduro/collision",
  9170. "version": "v4.3.0",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/nunomaduro/collision.git",
  9174. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9179. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9180. "shasum": ""
  9181. },
  9182. "require": {
  9183. "facade/ignition-contracts": "^1.0",
  9184. "filp/whoops": "^2.4",
  9185. "php": "^7.2.5 || ^8.0",
  9186. "symfony/console": "^5.0"
  9187. },
  9188. "require-dev": {
  9189. "facade/ignition": "^2.0",
  9190. "fideloper/proxy": "^4.2",
  9191. "friendsofphp/php-cs-fixer": "^2.16",
  9192. "fruitcake/laravel-cors": "^1.0",
  9193. "laravel/framework": "^7.0",
  9194. "laravel/tinker": "^2.0",
  9195. "nunomaduro/larastan": "^0.6",
  9196. "orchestra/testbench": "^5.0",
  9197. "phpstan/phpstan": "^0.12.3",
  9198. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9199. },
  9200. "type": "library",
  9201. "extra": {
  9202. "laravel": {
  9203. "providers": [
  9204. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9205. ]
  9206. }
  9207. },
  9208. "autoload": {
  9209. "psr-4": {
  9210. "NunoMaduro\\Collision\\": "src/"
  9211. }
  9212. },
  9213. "notification-url": "https://packagist.org/downloads/",
  9214. "license": [
  9215. "MIT"
  9216. ],
  9217. "authors": [
  9218. {
  9219. "name": "Nuno Maduro",
  9220. "email": "enunomaduro@gmail.com"
  9221. }
  9222. ],
  9223. "description": "Cli error handling for console/command-line PHP applications.",
  9224. "keywords": [
  9225. "artisan",
  9226. "cli",
  9227. "command-line",
  9228. "console",
  9229. "error",
  9230. "handling",
  9231. "laravel",
  9232. "laravel-zero",
  9233. "php",
  9234. "symfony"
  9235. ],
  9236. "support": {
  9237. "issues": "https://github.com/nunomaduro/collision/issues",
  9238. "source": "https://github.com/nunomaduro/collision"
  9239. },
  9240. "funding": [
  9241. {
  9242. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9243. "type": "custom"
  9244. },
  9245. {
  9246. "url": "https://github.com/nunomaduro",
  9247. "type": "github"
  9248. },
  9249. {
  9250. "url": "https://www.patreon.com/nunomaduro",
  9251. "type": "patreon"
  9252. }
  9253. ],
  9254. "time": "2020-10-29T15:12:23+00:00"
  9255. },
  9256. {
  9257. "name": "paragonie/constant_time_encoding",
  9258. "version": "v2.4.0",
  9259. "source": {
  9260. "type": "git",
  9261. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9262. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9263. },
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9267. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "php": "^7|^8"
  9272. },
  9273. "require-dev": {
  9274. "phpunit/phpunit": "^6|^7|^8|^9",
  9275. "vimeo/psalm": "^1|^2|^3|^4"
  9276. },
  9277. "type": "library",
  9278. "autoload": {
  9279. "psr-4": {
  9280. "ParagonIE\\ConstantTime\\": "src/"
  9281. }
  9282. },
  9283. "notification-url": "https://packagist.org/downloads/",
  9284. "license": [
  9285. "MIT"
  9286. ],
  9287. "authors": [
  9288. {
  9289. "name": "Paragon Initiative Enterprises",
  9290. "email": "security@paragonie.com",
  9291. "homepage": "https://paragonie.com",
  9292. "role": "Maintainer"
  9293. },
  9294. {
  9295. "name": "Steve 'Sc00bz' Thomas",
  9296. "email": "steve@tobtu.com",
  9297. "homepage": "https://www.tobtu.com",
  9298. "role": "Original Developer"
  9299. }
  9300. ],
  9301. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9302. "keywords": [
  9303. "base16",
  9304. "base32",
  9305. "base32_decode",
  9306. "base32_encode",
  9307. "base64",
  9308. "base64_decode",
  9309. "base64_encode",
  9310. "bin2hex",
  9311. "encoding",
  9312. "hex",
  9313. "hex2bin",
  9314. "rfc4648"
  9315. ],
  9316. "support": {
  9317. "email": "info@paragonie.com",
  9318. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9319. "source": "https://github.com/paragonie/constant_time_encoding"
  9320. },
  9321. "time": "2020-12-06T15:14:20+00:00"
  9322. },
  9323. {
  9324. "name": "paragonie/random_compat",
  9325. "version": "v2.0.19",
  9326. "source": {
  9327. "type": "git",
  9328. "url": "https://github.com/paragonie/random_compat.git",
  9329. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
  9330. },
  9331. "dist": {
  9332. "type": "zip",
  9333. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9334. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9335. "shasum": ""
  9336. },
  9337. "require": {
  9338. "php": ">=5.2.0"
  9339. },
  9340. "require-dev": {
  9341. "phpunit/phpunit": "4.*|5.*"
  9342. },
  9343. "suggest": {
  9344. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9345. },
  9346. "type": "library",
  9347. "autoload": {
  9348. "files": [
  9349. "lib/random.php"
  9350. ]
  9351. },
  9352. "notification-url": "https://packagist.org/downloads/",
  9353. "license": [
  9354. "MIT"
  9355. ],
  9356. "authors": [
  9357. {
  9358. "name": "Paragon Initiative Enterprises",
  9359. "email": "security@paragonie.com",
  9360. "homepage": "https://paragonie.com"
  9361. }
  9362. ],
  9363. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9364. "keywords": [
  9365. "csprng",
  9366. "polyfill",
  9367. "pseudorandom",
  9368. "random"
  9369. ],
  9370. "support": {
  9371. "email": "info@paragonie.com",
  9372. "issues": "https://github.com/paragonie/random_compat/issues",
  9373. "source": "https://github.com/paragonie/random_compat"
  9374. },
  9375. "time": "2020-10-15T10:06:57+00:00"
  9376. },
  9377. {
  9378. "name": "phar-io/manifest",
  9379. "version": "2.0.1",
  9380. "source": {
  9381. "type": "git",
  9382. "url": "https://github.com/phar-io/manifest.git",
  9383. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9384. },
  9385. "dist": {
  9386. "type": "zip",
  9387. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9388. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9389. "shasum": ""
  9390. },
  9391. "require": {
  9392. "ext-dom": "*",
  9393. "ext-phar": "*",
  9394. "ext-xmlwriter": "*",
  9395. "phar-io/version": "^3.0.1",
  9396. "php": "^7.2 || ^8.0"
  9397. },
  9398. "type": "library",
  9399. "extra": {
  9400. "branch-alias": {
  9401. "dev-master": "2.0.x-dev"
  9402. }
  9403. },
  9404. "autoload": {
  9405. "classmap": [
  9406. "src/"
  9407. ]
  9408. },
  9409. "notification-url": "https://packagist.org/downloads/",
  9410. "license": [
  9411. "BSD-3-Clause"
  9412. ],
  9413. "authors": [
  9414. {
  9415. "name": "Arne Blankerts",
  9416. "email": "arne@blankerts.de",
  9417. "role": "Developer"
  9418. },
  9419. {
  9420. "name": "Sebastian Heuer",
  9421. "email": "sebastian@phpeople.de",
  9422. "role": "Developer"
  9423. },
  9424. {
  9425. "name": "Sebastian Bergmann",
  9426. "email": "sebastian@phpunit.de",
  9427. "role": "Developer"
  9428. }
  9429. ],
  9430. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9431. "support": {
  9432. "issues": "https://github.com/phar-io/manifest/issues",
  9433. "source": "https://github.com/phar-io/manifest/tree/master"
  9434. },
  9435. "time": "2020-06-27T14:33:11+00:00"
  9436. },
  9437. {
  9438. "name": "phar-io/version",
  9439. "version": "3.0.4",
  9440. "source": {
  9441. "type": "git",
  9442. "url": "https://github.com/phar-io/version.git",
  9443. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  9444. },
  9445. "dist": {
  9446. "type": "zip",
  9447. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  9448. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  9449. "shasum": ""
  9450. },
  9451. "require": {
  9452. "php": "^7.2 || ^8.0"
  9453. },
  9454. "type": "library",
  9455. "autoload": {
  9456. "classmap": [
  9457. "src/"
  9458. ]
  9459. },
  9460. "notification-url": "https://packagist.org/downloads/",
  9461. "license": [
  9462. "BSD-3-Clause"
  9463. ],
  9464. "authors": [
  9465. {
  9466. "name": "Arne Blankerts",
  9467. "email": "arne@blankerts.de",
  9468. "role": "Developer"
  9469. },
  9470. {
  9471. "name": "Sebastian Heuer",
  9472. "email": "sebastian@phpeople.de",
  9473. "role": "Developer"
  9474. },
  9475. {
  9476. "name": "Sebastian Bergmann",
  9477. "email": "sebastian@phpunit.de",
  9478. "role": "Developer"
  9479. }
  9480. ],
  9481. "description": "Library for handling version information and constraints",
  9482. "support": {
  9483. "issues": "https://github.com/phar-io/version/issues",
  9484. "source": "https://github.com/phar-io/version/tree/3.0.4"
  9485. },
  9486. "time": "2020-12-13T23:18:30+00:00"
  9487. },
  9488. {
  9489. "name": "phpdocumentor/reflection-common",
  9490. "version": "2.2.0",
  9491. "source": {
  9492. "type": "git",
  9493. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9494. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9495. },
  9496. "dist": {
  9497. "type": "zip",
  9498. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9499. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9500. "shasum": ""
  9501. },
  9502. "require": {
  9503. "php": "^7.2 || ^8.0"
  9504. },
  9505. "type": "library",
  9506. "extra": {
  9507. "branch-alias": {
  9508. "dev-2.x": "2.x-dev"
  9509. }
  9510. },
  9511. "autoload": {
  9512. "psr-4": {
  9513. "phpDocumentor\\Reflection\\": "src/"
  9514. }
  9515. },
  9516. "notification-url": "https://packagist.org/downloads/",
  9517. "license": [
  9518. "MIT"
  9519. ],
  9520. "authors": [
  9521. {
  9522. "name": "Jaap van Otterdijk",
  9523. "email": "opensource@ijaap.nl"
  9524. }
  9525. ],
  9526. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9527. "homepage": "http://www.phpdoc.org",
  9528. "keywords": [
  9529. "FQSEN",
  9530. "phpDocumentor",
  9531. "phpdoc",
  9532. "reflection",
  9533. "static analysis"
  9534. ],
  9535. "support": {
  9536. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9537. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9538. },
  9539. "time": "2020-06-27T09:03:43+00:00"
  9540. },
  9541. {
  9542. "name": "phpdocumentor/reflection-docblock",
  9543. "version": "5.2.2",
  9544. "source": {
  9545. "type": "git",
  9546. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9547. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9548. },
  9549. "dist": {
  9550. "type": "zip",
  9551. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9552. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9553. "shasum": ""
  9554. },
  9555. "require": {
  9556. "ext-filter": "*",
  9557. "php": "^7.2 || ^8.0",
  9558. "phpdocumentor/reflection-common": "^2.2",
  9559. "phpdocumentor/type-resolver": "^1.3",
  9560. "webmozart/assert": "^1.9.1"
  9561. },
  9562. "require-dev": {
  9563. "mockery/mockery": "~1.3.2"
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-master": "5.x-dev"
  9569. }
  9570. },
  9571. "autoload": {
  9572. "psr-4": {
  9573. "phpDocumentor\\Reflection\\": "src"
  9574. }
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "MIT"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Mike van Riel",
  9583. "email": "me@mikevanriel.com"
  9584. },
  9585. {
  9586. "name": "Jaap van Otterdijk",
  9587. "email": "account@ijaap.nl"
  9588. }
  9589. ],
  9590. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9591. "support": {
  9592. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9593. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9594. },
  9595. "time": "2020-09-03T19:13:55+00:00"
  9596. },
  9597. {
  9598. "name": "phpdocumentor/type-resolver",
  9599. "version": "1.4.0",
  9600. "source": {
  9601. "type": "git",
  9602. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9603. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9604. },
  9605. "dist": {
  9606. "type": "zip",
  9607. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9608. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9609. "shasum": ""
  9610. },
  9611. "require": {
  9612. "php": "^7.2 || ^8.0",
  9613. "phpdocumentor/reflection-common": "^2.0"
  9614. },
  9615. "require-dev": {
  9616. "ext-tokenizer": "*"
  9617. },
  9618. "type": "library",
  9619. "extra": {
  9620. "branch-alias": {
  9621. "dev-1.x": "1.x-dev"
  9622. }
  9623. },
  9624. "autoload": {
  9625. "psr-4": {
  9626. "phpDocumentor\\Reflection\\": "src"
  9627. }
  9628. },
  9629. "notification-url": "https://packagist.org/downloads/",
  9630. "license": [
  9631. "MIT"
  9632. ],
  9633. "authors": [
  9634. {
  9635. "name": "Mike van Riel",
  9636. "email": "me@mikevanriel.com"
  9637. }
  9638. ],
  9639. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9640. "support": {
  9641. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9642. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9643. },
  9644. "time": "2020-09-17T18:55:26+00:00"
  9645. },
  9646. {
  9647. "name": "phpseclib/bcmath_compat",
  9648. "version": "2.0.0",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9652. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9657. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9658. "shasum": ""
  9659. },
  9660. "require": {
  9661. "phpseclib/phpseclib": "^3.0"
  9662. },
  9663. "provide": {
  9664. "ext-bcmath": "8.0.0"
  9665. },
  9666. "require-dev": {
  9667. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9668. "squizlabs/php_codesniffer": "^3.0"
  9669. },
  9670. "suggest": {
  9671. "ext-gmp": "Will enable faster math operations"
  9672. },
  9673. "type": "library",
  9674. "autoload": {
  9675. "files": [
  9676. "lib/bcmath.php"
  9677. ],
  9678. "psr-4": {
  9679. "bcmath_compat\\": "src"
  9680. }
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "MIT"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Jim Wigginton",
  9689. "email": "terrafrost@php.net",
  9690. "homepage": "http://phpseclib.sourceforge.net"
  9691. }
  9692. ],
  9693. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9694. "keywords": [
  9695. "BigInteger",
  9696. "bcmath",
  9697. "bigdecimal",
  9698. "math",
  9699. "polyfill"
  9700. ],
  9701. "support": {
  9702. "email": "terrafrost@php.net",
  9703. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9704. "source": "https://github.com/phpseclib/bcmath_compat"
  9705. },
  9706. "time": "2020-12-22T16:38:51+00:00"
  9707. },
  9708. {
  9709. "name": "phpseclib/phpseclib",
  9710. "version": "3.0.2",
  9711. "source": {
  9712. "type": "git",
  9713. "url": "https://github.com/phpseclib/phpseclib.git",
  9714. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995"
  9715. },
  9716. "dist": {
  9717. "type": "zip",
  9718. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9719. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9720. "shasum": ""
  9721. },
  9722. "require": {
  9723. "paragonie/constant_time_encoding": "^1|^2",
  9724. "paragonie/random_compat": "^1.4|^2.0",
  9725. "php": ">=5.6.1"
  9726. },
  9727. "require-dev": {
  9728. "phing/phing": "~2.7",
  9729. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9730. "squizlabs/php_codesniffer": "~2.0"
  9731. },
  9732. "suggest": {
  9733. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9734. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9735. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9736. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9737. },
  9738. "type": "library",
  9739. "autoload": {
  9740. "files": [
  9741. "phpseclib/bootstrap.php"
  9742. ],
  9743. "psr-4": {
  9744. "phpseclib3\\": "phpseclib/"
  9745. }
  9746. },
  9747. "notification-url": "https://packagist.org/downloads/",
  9748. "license": [
  9749. "MIT"
  9750. ],
  9751. "authors": [
  9752. {
  9753. "name": "Jim Wigginton",
  9754. "email": "terrafrost@php.net",
  9755. "role": "Lead Developer"
  9756. },
  9757. {
  9758. "name": "Patrick Monnerat",
  9759. "email": "pm@datasphere.ch",
  9760. "role": "Developer"
  9761. },
  9762. {
  9763. "name": "Andreas Fischer",
  9764. "email": "bantu@phpbb.com",
  9765. "role": "Developer"
  9766. },
  9767. {
  9768. "name": "Hans-Jürgen Petrich",
  9769. "email": "petrich@tronic-media.com",
  9770. "role": "Developer"
  9771. },
  9772. {
  9773. "name": "Graham Campbell",
  9774. "email": "graham@alt-three.com",
  9775. "role": "Developer"
  9776. }
  9777. ],
  9778. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9779. "homepage": "http://phpseclib.sourceforge.net",
  9780. "keywords": [
  9781. "BigInteger",
  9782. "aes",
  9783. "asn.1",
  9784. "asn1",
  9785. "blowfish",
  9786. "crypto",
  9787. "cryptography",
  9788. "encryption",
  9789. "rsa",
  9790. "security",
  9791. "sftp",
  9792. "signature",
  9793. "signing",
  9794. "ssh",
  9795. "twofish",
  9796. "x.509",
  9797. "x509"
  9798. ],
  9799. "support": {
  9800. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9801. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.2"
  9802. },
  9803. "funding": [
  9804. {
  9805. "url": "https://github.com/terrafrost",
  9806. "type": "github"
  9807. },
  9808. {
  9809. "url": "https://www.patreon.com/phpseclib",
  9810. "type": "patreon"
  9811. },
  9812. {
  9813. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9814. "type": "tidelift"
  9815. }
  9816. ],
  9817. "time": "2020-12-23T16:39:00+00:00"
  9818. },
  9819. {
  9820. "name": "phpspec/prophecy",
  9821. "version": "1.12.2",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/phpspec/prophecy.git",
  9825. "reference": "245710e971a030f42e08f4912863805570f23d39"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  9830. "reference": "245710e971a030f42e08f4912863805570f23d39",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "doctrine/instantiator": "^1.2",
  9835. "php": "^7.2 || ~8.0, <8.1",
  9836. "phpdocumentor/reflection-docblock": "^5.2",
  9837. "sebastian/comparator": "^3.0 || ^4.0",
  9838. "sebastian/recursion-context": "^3.0 || ^4.0"
  9839. },
  9840. "require-dev": {
  9841. "phpspec/phpspec": "^6.0",
  9842. "phpunit/phpunit": "^8.0 || ^9.0"
  9843. },
  9844. "type": "library",
  9845. "extra": {
  9846. "branch-alias": {
  9847. "dev-master": "1.11.x-dev"
  9848. }
  9849. },
  9850. "autoload": {
  9851. "psr-4": {
  9852. "Prophecy\\": "src/Prophecy"
  9853. }
  9854. },
  9855. "notification-url": "https://packagist.org/downloads/",
  9856. "license": [
  9857. "MIT"
  9858. ],
  9859. "authors": [
  9860. {
  9861. "name": "Konstantin Kudryashov",
  9862. "email": "ever.zet@gmail.com",
  9863. "homepage": "http://everzet.com"
  9864. },
  9865. {
  9866. "name": "Marcello Duarte",
  9867. "email": "marcello.duarte@gmail.com"
  9868. }
  9869. ],
  9870. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9871. "homepage": "https://github.com/phpspec/prophecy",
  9872. "keywords": [
  9873. "Double",
  9874. "Dummy",
  9875. "fake",
  9876. "mock",
  9877. "spy",
  9878. "stub"
  9879. ],
  9880. "support": {
  9881. "issues": "https://github.com/phpspec/prophecy/issues",
  9882. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  9883. },
  9884. "time": "2020-12-19T10:15:11+00:00"
  9885. },
  9886. {
  9887. "name": "phpunit/php-code-coverage",
  9888. "version": "9.2.5",
  9889. "source": {
  9890. "type": "git",
  9891. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9892. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9893. },
  9894. "dist": {
  9895. "type": "zip",
  9896. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9897. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9898. "shasum": ""
  9899. },
  9900. "require": {
  9901. "ext-dom": "*",
  9902. "ext-libxml": "*",
  9903. "ext-xmlwriter": "*",
  9904. "nikic/php-parser": "^4.10.2",
  9905. "php": ">=7.3",
  9906. "phpunit/php-file-iterator": "^3.0.3",
  9907. "phpunit/php-text-template": "^2.0.2",
  9908. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9909. "sebastian/complexity": "^2.0",
  9910. "sebastian/environment": "^5.1.2",
  9911. "sebastian/lines-of-code": "^1.0.3",
  9912. "sebastian/version": "^3.0.1",
  9913. "theseer/tokenizer": "^1.2.0"
  9914. },
  9915. "require-dev": {
  9916. "phpunit/phpunit": "^9.3"
  9917. },
  9918. "suggest": {
  9919. "ext-pcov": "*",
  9920. "ext-xdebug": "*"
  9921. },
  9922. "type": "library",
  9923. "extra": {
  9924. "branch-alias": {
  9925. "dev-master": "9.2-dev"
  9926. }
  9927. },
  9928. "autoload": {
  9929. "classmap": [
  9930. "src/"
  9931. ]
  9932. },
  9933. "notification-url": "https://packagist.org/downloads/",
  9934. "license": [
  9935. "BSD-3-Clause"
  9936. ],
  9937. "authors": [
  9938. {
  9939. "name": "Sebastian Bergmann",
  9940. "email": "sebastian@phpunit.de",
  9941. "role": "lead"
  9942. }
  9943. ],
  9944. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9945. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9946. "keywords": [
  9947. "coverage",
  9948. "testing",
  9949. "xunit"
  9950. ],
  9951. "support": {
  9952. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9953. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  9954. },
  9955. "funding": [
  9956. {
  9957. "url": "https://github.com/sebastianbergmann",
  9958. "type": "github"
  9959. }
  9960. ],
  9961. "time": "2020-11-28T06:44:49+00:00"
  9962. },
  9963. {
  9964. "name": "phpunit/php-file-iterator",
  9965. "version": "3.0.5",
  9966. "source": {
  9967. "type": "git",
  9968. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9969. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9970. },
  9971. "dist": {
  9972. "type": "zip",
  9973. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9974. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9975. "shasum": ""
  9976. },
  9977. "require": {
  9978. "php": ">=7.3"
  9979. },
  9980. "require-dev": {
  9981. "phpunit/phpunit": "^9.3"
  9982. },
  9983. "type": "library",
  9984. "extra": {
  9985. "branch-alias": {
  9986. "dev-master": "3.0-dev"
  9987. }
  9988. },
  9989. "autoload": {
  9990. "classmap": [
  9991. "src/"
  9992. ]
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "BSD-3-Clause"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Sebastian Bergmann",
  10001. "email": "sebastian@phpunit.de",
  10002. "role": "lead"
  10003. }
  10004. ],
  10005. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10006. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10007. "keywords": [
  10008. "filesystem",
  10009. "iterator"
  10010. ],
  10011. "support": {
  10012. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10013. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10014. },
  10015. "funding": [
  10016. {
  10017. "url": "https://github.com/sebastianbergmann",
  10018. "type": "github"
  10019. }
  10020. ],
  10021. "time": "2020-09-28T05:57:25+00:00"
  10022. },
  10023. {
  10024. "name": "phpunit/php-invoker",
  10025. "version": "3.1.1",
  10026. "source": {
  10027. "type": "git",
  10028. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10029. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10030. },
  10031. "dist": {
  10032. "type": "zip",
  10033. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10034. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10035. "shasum": ""
  10036. },
  10037. "require": {
  10038. "php": ">=7.3"
  10039. },
  10040. "require-dev": {
  10041. "ext-pcntl": "*",
  10042. "phpunit/phpunit": "^9.3"
  10043. },
  10044. "suggest": {
  10045. "ext-pcntl": "*"
  10046. },
  10047. "type": "library",
  10048. "extra": {
  10049. "branch-alias": {
  10050. "dev-master": "3.1-dev"
  10051. }
  10052. },
  10053. "autoload": {
  10054. "classmap": [
  10055. "src/"
  10056. ]
  10057. },
  10058. "notification-url": "https://packagist.org/downloads/",
  10059. "license": [
  10060. "BSD-3-Clause"
  10061. ],
  10062. "authors": [
  10063. {
  10064. "name": "Sebastian Bergmann",
  10065. "email": "sebastian@phpunit.de",
  10066. "role": "lead"
  10067. }
  10068. ],
  10069. "description": "Invoke callables with a timeout",
  10070. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10071. "keywords": [
  10072. "process"
  10073. ],
  10074. "support": {
  10075. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10076. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10077. },
  10078. "funding": [
  10079. {
  10080. "url": "https://github.com/sebastianbergmann",
  10081. "type": "github"
  10082. }
  10083. ],
  10084. "time": "2020-09-28T05:58:55+00:00"
  10085. },
  10086. {
  10087. "name": "phpunit/php-text-template",
  10088. "version": "2.0.4",
  10089. "source": {
  10090. "type": "git",
  10091. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10092. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10093. },
  10094. "dist": {
  10095. "type": "zip",
  10096. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10097. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10098. "shasum": ""
  10099. },
  10100. "require": {
  10101. "php": ">=7.3"
  10102. },
  10103. "require-dev": {
  10104. "phpunit/phpunit": "^9.3"
  10105. },
  10106. "type": "library",
  10107. "extra": {
  10108. "branch-alias": {
  10109. "dev-master": "2.0-dev"
  10110. }
  10111. },
  10112. "autoload": {
  10113. "classmap": [
  10114. "src/"
  10115. ]
  10116. },
  10117. "notification-url": "https://packagist.org/downloads/",
  10118. "license": [
  10119. "BSD-3-Clause"
  10120. ],
  10121. "authors": [
  10122. {
  10123. "name": "Sebastian Bergmann",
  10124. "email": "sebastian@phpunit.de",
  10125. "role": "lead"
  10126. }
  10127. ],
  10128. "description": "Simple template engine.",
  10129. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10130. "keywords": [
  10131. "template"
  10132. ],
  10133. "support": {
  10134. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10135. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10136. },
  10137. "funding": [
  10138. {
  10139. "url": "https://github.com/sebastianbergmann",
  10140. "type": "github"
  10141. }
  10142. ],
  10143. "time": "2020-10-26T05:33:50+00:00"
  10144. },
  10145. {
  10146. "name": "phpunit/php-timer",
  10147. "version": "5.0.3",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10151. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10156. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10157. "shasum": ""
  10158. },
  10159. "require": {
  10160. "php": ">=7.3"
  10161. },
  10162. "require-dev": {
  10163. "phpunit/phpunit": "^9.3"
  10164. },
  10165. "type": "library",
  10166. "extra": {
  10167. "branch-alias": {
  10168. "dev-master": "5.0-dev"
  10169. }
  10170. },
  10171. "autoload": {
  10172. "classmap": [
  10173. "src/"
  10174. ]
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "BSD-3-Clause"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Sebastian Bergmann",
  10183. "email": "sebastian@phpunit.de",
  10184. "role": "lead"
  10185. }
  10186. ],
  10187. "description": "Utility class for timing",
  10188. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10189. "keywords": [
  10190. "timer"
  10191. ],
  10192. "support": {
  10193. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10194. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10195. },
  10196. "funding": [
  10197. {
  10198. "url": "https://github.com/sebastianbergmann",
  10199. "type": "github"
  10200. }
  10201. ],
  10202. "time": "2020-10-26T13:16:10+00:00"
  10203. },
  10204. {
  10205. "name": "phpunit/phpunit",
  10206. "version": "9.5.0",
  10207. "source": {
  10208. "type": "git",
  10209. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10210. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  10211. },
  10212. "dist": {
  10213. "type": "zip",
  10214. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10215. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10216. "shasum": ""
  10217. },
  10218. "require": {
  10219. "doctrine/instantiator": "^1.3.1",
  10220. "ext-dom": "*",
  10221. "ext-json": "*",
  10222. "ext-libxml": "*",
  10223. "ext-mbstring": "*",
  10224. "ext-xml": "*",
  10225. "ext-xmlwriter": "*",
  10226. "myclabs/deep-copy": "^1.10.1",
  10227. "phar-io/manifest": "^2.0.1",
  10228. "phar-io/version": "^3.0.2",
  10229. "php": ">=7.3",
  10230. "phpspec/prophecy": "^1.12.1",
  10231. "phpunit/php-code-coverage": "^9.2.3",
  10232. "phpunit/php-file-iterator": "^3.0.5",
  10233. "phpunit/php-invoker": "^3.1.1",
  10234. "phpunit/php-text-template": "^2.0.3",
  10235. "phpunit/php-timer": "^5.0.2",
  10236. "sebastian/cli-parser": "^1.0.1",
  10237. "sebastian/code-unit": "^1.0.6",
  10238. "sebastian/comparator": "^4.0.5",
  10239. "sebastian/diff": "^4.0.3",
  10240. "sebastian/environment": "^5.1.3",
  10241. "sebastian/exporter": "^4.0.3",
  10242. "sebastian/global-state": "^5.0.1",
  10243. "sebastian/object-enumerator": "^4.0.3",
  10244. "sebastian/resource-operations": "^3.0.3",
  10245. "sebastian/type": "^2.3",
  10246. "sebastian/version": "^3.0.2"
  10247. },
  10248. "require-dev": {
  10249. "ext-pdo": "*",
  10250. "phpspec/prophecy-phpunit": "^2.0.1"
  10251. },
  10252. "suggest": {
  10253. "ext-soap": "*",
  10254. "ext-xdebug": "*"
  10255. },
  10256. "bin": [
  10257. "phpunit"
  10258. ],
  10259. "type": "library",
  10260. "extra": {
  10261. "branch-alias": {
  10262. "dev-master": "9.5-dev"
  10263. }
  10264. },
  10265. "autoload": {
  10266. "classmap": [
  10267. "src/"
  10268. ],
  10269. "files": [
  10270. "src/Framework/Assert/Functions.php"
  10271. ]
  10272. },
  10273. "notification-url": "https://packagist.org/downloads/",
  10274. "license": [
  10275. "BSD-3-Clause"
  10276. ],
  10277. "authors": [
  10278. {
  10279. "name": "Sebastian Bergmann",
  10280. "email": "sebastian@phpunit.de",
  10281. "role": "lead"
  10282. }
  10283. ],
  10284. "description": "The PHP Unit Testing framework.",
  10285. "homepage": "https://phpunit.de/",
  10286. "keywords": [
  10287. "phpunit",
  10288. "testing",
  10289. "xunit"
  10290. ],
  10291. "support": {
  10292. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10293. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  10294. },
  10295. "funding": [
  10296. {
  10297. "url": "https://phpunit.de/donate.html",
  10298. "type": "custom"
  10299. },
  10300. {
  10301. "url": "https://github.com/sebastianbergmann",
  10302. "type": "github"
  10303. }
  10304. ],
  10305. "time": "2020-12-04T05:05:53+00:00"
  10306. },
  10307. {
  10308. "name": "react/promise",
  10309. "version": "v2.8.0",
  10310. "source": {
  10311. "type": "git",
  10312. "url": "https://github.com/reactphp/promise.git",
  10313. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10314. },
  10315. "dist": {
  10316. "type": "zip",
  10317. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10318. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10319. "shasum": ""
  10320. },
  10321. "require": {
  10322. "php": ">=5.4.0"
  10323. },
  10324. "require-dev": {
  10325. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10326. },
  10327. "type": "library",
  10328. "autoload": {
  10329. "psr-4": {
  10330. "React\\Promise\\": "src/"
  10331. },
  10332. "files": [
  10333. "src/functions_include.php"
  10334. ]
  10335. },
  10336. "notification-url": "https://packagist.org/downloads/",
  10337. "license": [
  10338. "MIT"
  10339. ],
  10340. "authors": [
  10341. {
  10342. "name": "Jan Sorgalla",
  10343. "email": "jsorgalla@gmail.com"
  10344. }
  10345. ],
  10346. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10347. "keywords": [
  10348. "promise",
  10349. "promises"
  10350. ],
  10351. "support": {
  10352. "issues": "https://github.com/reactphp/promise/issues",
  10353. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10354. },
  10355. "time": "2020-05-12T15:16:56+00:00"
  10356. },
  10357. {
  10358. "name": "sebastian/cli-parser",
  10359. "version": "1.0.1",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10363. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10368. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10369. "shasum": ""
  10370. },
  10371. "require": {
  10372. "php": ">=7.3"
  10373. },
  10374. "require-dev": {
  10375. "phpunit/phpunit": "^9.3"
  10376. },
  10377. "type": "library",
  10378. "extra": {
  10379. "branch-alias": {
  10380. "dev-master": "1.0-dev"
  10381. }
  10382. },
  10383. "autoload": {
  10384. "classmap": [
  10385. "src/"
  10386. ]
  10387. },
  10388. "notification-url": "https://packagist.org/downloads/",
  10389. "license": [
  10390. "BSD-3-Clause"
  10391. ],
  10392. "authors": [
  10393. {
  10394. "name": "Sebastian Bergmann",
  10395. "email": "sebastian@phpunit.de",
  10396. "role": "lead"
  10397. }
  10398. ],
  10399. "description": "Library for parsing CLI options",
  10400. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10401. "support": {
  10402. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10403. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10404. },
  10405. "funding": [
  10406. {
  10407. "url": "https://github.com/sebastianbergmann",
  10408. "type": "github"
  10409. }
  10410. ],
  10411. "time": "2020-09-28T06:08:49+00:00"
  10412. },
  10413. {
  10414. "name": "sebastian/code-unit",
  10415. "version": "1.0.8",
  10416. "source": {
  10417. "type": "git",
  10418. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10419. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10420. },
  10421. "dist": {
  10422. "type": "zip",
  10423. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10424. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10425. "shasum": ""
  10426. },
  10427. "require": {
  10428. "php": ">=7.3"
  10429. },
  10430. "require-dev": {
  10431. "phpunit/phpunit": "^9.3"
  10432. },
  10433. "type": "library",
  10434. "extra": {
  10435. "branch-alias": {
  10436. "dev-master": "1.0-dev"
  10437. }
  10438. },
  10439. "autoload": {
  10440. "classmap": [
  10441. "src/"
  10442. ]
  10443. },
  10444. "notification-url": "https://packagist.org/downloads/",
  10445. "license": [
  10446. "BSD-3-Clause"
  10447. ],
  10448. "authors": [
  10449. {
  10450. "name": "Sebastian Bergmann",
  10451. "email": "sebastian@phpunit.de",
  10452. "role": "lead"
  10453. }
  10454. ],
  10455. "description": "Collection of value objects that represent the PHP code units",
  10456. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10457. "support": {
  10458. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10459. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10460. },
  10461. "funding": [
  10462. {
  10463. "url": "https://github.com/sebastianbergmann",
  10464. "type": "github"
  10465. }
  10466. ],
  10467. "time": "2020-10-26T13:08:54+00:00"
  10468. },
  10469. {
  10470. "name": "sebastian/code-unit-reverse-lookup",
  10471. "version": "2.0.3",
  10472. "source": {
  10473. "type": "git",
  10474. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10475. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10476. },
  10477. "dist": {
  10478. "type": "zip",
  10479. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10480. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10481. "shasum": ""
  10482. },
  10483. "require": {
  10484. "php": ">=7.3"
  10485. },
  10486. "require-dev": {
  10487. "phpunit/phpunit": "^9.3"
  10488. },
  10489. "type": "library",
  10490. "extra": {
  10491. "branch-alias": {
  10492. "dev-master": "2.0-dev"
  10493. }
  10494. },
  10495. "autoload": {
  10496. "classmap": [
  10497. "src/"
  10498. ]
  10499. },
  10500. "notification-url": "https://packagist.org/downloads/",
  10501. "license": [
  10502. "BSD-3-Clause"
  10503. ],
  10504. "authors": [
  10505. {
  10506. "name": "Sebastian Bergmann",
  10507. "email": "sebastian@phpunit.de"
  10508. }
  10509. ],
  10510. "description": "Looks up which function or method a line of code belongs to",
  10511. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10512. "support": {
  10513. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10514. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10515. },
  10516. "funding": [
  10517. {
  10518. "url": "https://github.com/sebastianbergmann",
  10519. "type": "github"
  10520. }
  10521. ],
  10522. "time": "2020-09-28T05:30:19+00:00"
  10523. },
  10524. {
  10525. "name": "sebastian/comparator",
  10526. "version": "4.0.6",
  10527. "source": {
  10528. "type": "git",
  10529. "url": "https://github.com/sebastianbergmann/comparator.git",
  10530. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10531. },
  10532. "dist": {
  10533. "type": "zip",
  10534. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10535. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10536. "shasum": ""
  10537. },
  10538. "require": {
  10539. "php": ">=7.3",
  10540. "sebastian/diff": "^4.0",
  10541. "sebastian/exporter": "^4.0"
  10542. },
  10543. "require-dev": {
  10544. "phpunit/phpunit": "^9.3"
  10545. },
  10546. "type": "library",
  10547. "extra": {
  10548. "branch-alias": {
  10549. "dev-master": "4.0-dev"
  10550. }
  10551. },
  10552. "autoload": {
  10553. "classmap": [
  10554. "src/"
  10555. ]
  10556. },
  10557. "notification-url": "https://packagist.org/downloads/",
  10558. "license": [
  10559. "BSD-3-Clause"
  10560. ],
  10561. "authors": [
  10562. {
  10563. "name": "Sebastian Bergmann",
  10564. "email": "sebastian@phpunit.de"
  10565. },
  10566. {
  10567. "name": "Jeff Welch",
  10568. "email": "whatthejeff@gmail.com"
  10569. },
  10570. {
  10571. "name": "Volker Dusch",
  10572. "email": "github@wallbash.com"
  10573. },
  10574. {
  10575. "name": "Bernhard Schussek",
  10576. "email": "bschussek@2bepublished.at"
  10577. }
  10578. ],
  10579. "description": "Provides the functionality to compare PHP values for equality",
  10580. "homepage": "https://github.com/sebastianbergmann/comparator",
  10581. "keywords": [
  10582. "comparator",
  10583. "compare",
  10584. "equality"
  10585. ],
  10586. "support": {
  10587. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10588. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10589. },
  10590. "funding": [
  10591. {
  10592. "url": "https://github.com/sebastianbergmann",
  10593. "type": "github"
  10594. }
  10595. ],
  10596. "time": "2020-10-26T15:49:45+00:00"
  10597. },
  10598. {
  10599. "name": "sebastian/complexity",
  10600. "version": "2.0.2",
  10601. "source": {
  10602. "type": "git",
  10603. "url": "https://github.com/sebastianbergmann/complexity.git",
  10604. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10605. },
  10606. "dist": {
  10607. "type": "zip",
  10608. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10609. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10610. "shasum": ""
  10611. },
  10612. "require": {
  10613. "nikic/php-parser": "^4.7",
  10614. "php": ">=7.3"
  10615. },
  10616. "require-dev": {
  10617. "phpunit/phpunit": "^9.3"
  10618. },
  10619. "type": "library",
  10620. "extra": {
  10621. "branch-alias": {
  10622. "dev-master": "2.0-dev"
  10623. }
  10624. },
  10625. "autoload": {
  10626. "classmap": [
  10627. "src/"
  10628. ]
  10629. },
  10630. "notification-url": "https://packagist.org/downloads/",
  10631. "license": [
  10632. "BSD-3-Clause"
  10633. ],
  10634. "authors": [
  10635. {
  10636. "name": "Sebastian Bergmann",
  10637. "email": "sebastian@phpunit.de",
  10638. "role": "lead"
  10639. }
  10640. ],
  10641. "description": "Library for calculating the complexity of PHP code units",
  10642. "homepage": "https://github.com/sebastianbergmann/complexity",
  10643. "support": {
  10644. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10645. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10646. },
  10647. "funding": [
  10648. {
  10649. "url": "https://github.com/sebastianbergmann",
  10650. "type": "github"
  10651. }
  10652. ],
  10653. "time": "2020-10-26T15:52:27+00:00"
  10654. },
  10655. {
  10656. "name": "sebastian/diff",
  10657. "version": "4.0.4",
  10658. "source": {
  10659. "type": "git",
  10660. "url": "https://github.com/sebastianbergmann/diff.git",
  10661. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10662. },
  10663. "dist": {
  10664. "type": "zip",
  10665. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10666. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10667. "shasum": ""
  10668. },
  10669. "require": {
  10670. "php": ">=7.3"
  10671. },
  10672. "require-dev": {
  10673. "phpunit/phpunit": "^9.3",
  10674. "symfony/process": "^4.2 || ^5"
  10675. },
  10676. "type": "library",
  10677. "extra": {
  10678. "branch-alias": {
  10679. "dev-master": "4.0-dev"
  10680. }
  10681. },
  10682. "autoload": {
  10683. "classmap": [
  10684. "src/"
  10685. ]
  10686. },
  10687. "notification-url": "https://packagist.org/downloads/",
  10688. "license": [
  10689. "BSD-3-Clause"
  10690. ],
  10691. "authors": [
  10692. {
  10693. "name": "Sebastian Bergmann",
  10694. "email": "sebastian@phpunit.de"
  10695. },
  10696. {
  10697. "name": "Kore Nordmann",
  10698. "email": "mail@kore-nordmann.de"
  10699. }
  10700. ],
  10701. "description": "Diff implementation",
  10702. "homepage": "https://github.com/sebastianbergmann/diff",
  10703. "keywords": [
  10704. "diff",
  10705. "udiff",
  10706. "unidiff",
  10707. "unified diff"
  10708. ],
  10709. "support": {
  10710. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10711. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10712. },
  10713. "funding": [
  10714. {
  10715. "url": "https://github.com/sebastianbergmann",
  10716. "type": "github"
  10717. }
  10718. ],
  10719. "time": "2020-10-26T13:10:38+00:00"
  10720. },
  10721. {
  10722. "name": "sebastian/environment",
  10723. "version": "5.1.3",
  10724. "source": {
  10725. "type": "git",
  10726. "url": "https://github.com/sebastianbergmann/environment.git",
  10727. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10728. },
  10729. "dist": {
  10730. "type": "zip",
  10731. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10732. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10733. "shasum": ""
  10734. },
  10735. "require": {
  10736. "php": ">=7.3"
  10737. },
  10738. "require-dev": {
  10739. "phpunit/phpunit": "^9.3"
  10740. },
  10741. "suggest": {
  10742. "ext-posix": "*"
  10743. },
  10744. "type": "library",
  10745. "extra": {
  10746. "branch-alias": {
  10747. "dev-master": "5.1-dev"
  10748. }
  10749. },
  10750. "autoload": {
  10751. "classmap": [
  10752. "src/"
  10753. ]
  10754. },
  10755. "notification-url": "https://packagist.org/downloads/",
  10756. "license": [
  10757. "BSD-3-Clause"
  10758. ],
  10759. "authors": [
  10760. {
  10761. "name": "Sebastian Bergmann",
  10762. "email": "sebastian@phpunit.de"
  10763. }
  10764. ],
  10765. "description": "Provides functionality to handle HHVM/PHP environments",
  10766. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10767. "keywords": [
  10768. "Xdebug",
  10769. "environment",
  10770. "hhvm"
  10771. ],
  10772. "support": {
  10773. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10774. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10775. },
  10776. "funding": [
  10777. {
  10778. "url": "https://github.com/sebastianbergmann",
  10779. "type": "github"
  10780. }
  10781. ],
  10782. "time": "2020-09-28T05:52:38+00:00"
  10783. },
  10784. {
  10785. "name": "sebastian/exporter",
  10786. "version": "4.0.3",
  10787. "source": {
  10788. "type": "git",
  10789. "url": "https://github.com/sebastianbergmann/exporter.git",
  10790. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10791. },
  10792. "dist": {
  10793. "type": "zip",
  10794. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10795. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10796. "shasum": ""
  10797. },
  10798. "require": {
  10799. "php": ">=7.3",
  10800. "sebastian/recursion-context": "^4.0"
  10801. },
  10802. "require-dev": {
  10803. "ext-mbstring": "*",
  10804. "phpunit/phpunit": "^9.3"
  10805. },
  10806. "type": "library",
  10807. "extra": {
  10808. "branch-alias": {
  10809. "dev-master": "4.0-dev"
  10810. }
  10811. },
  10812. "autoload": {
  10813. "classmap": [
  10814. "src/"
  10815. ]
  10816. },
  10817. "notification-url": "https://packagist.org/downloads/",
  10818. "license": [
  10819. "BSD-3-Clause"
  10820. ],
  10821. "authors": [
  10822. {
  10823. "name": "Sebastian Bergmann",
  10824. "email": "sebastian@phpunit.de"
  10825. },
  10826. {
  10827. "name": "Jeff Welch",
  10828. "email": "whatthejeff@gmail.com"
  10829. },
  10830. {
  10831. "name": "Volker Dusch",
  10832. "email": "github@wallbash.com"
  10833. },
  10834. {
  10835. "name": "Adam Harvey",
  10836. "email": "aharvey@php.net"
  10837. },
  10838. {
  10839. "name": "Bernhard Schussek",
  10840. "email": "bschussek@gmail.com"
  10841. }
  10842. ],
  10843. "description": "Provides the functionality to export PHP variables for visualization",
  10844. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10845. "keywords": [
  10846. "export",
  10847. "exporter"
  10848. ],
  10849. "support": {
  10850. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10851. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10852. },
  10853. "funding": [
  10854. {
  10855. "url": "https://github.com/sebastianbergmann",
  10856. "type": "github"
  10857. }
  10858. ],
  10859. "time": "2020-09-28T05:24:23+00:00"
  10860. },
  10861. {
  10862. "name": "sebastian/global-state",
  10863. "version": "5.0.2",
  10864. "source": {
  10865. "type": "git",
  10866. "url": "https://github.com/sebastianbergmann/global-state.git",
  10867. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10868. },
  10869. "dist": {
  10870. "type": "zip",
  10871. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10872. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10873. "shasum": ""
  10874. },
  10875. "require": {
  10876. "php": ">=7.3",
  10877. "sebastian/object-reflector": "^2.0",
  10878. "sebastian/recursion-context": "^4.0"
  10879. },
  10880. "require-dev": {
  10881. "ext-dom": "*",
  10882. "phpunit/phpunit": "^9.3"
  10883. },
  10884. "suggest": {
  10885. "ext-uopz": "*"
  10886. },
  10887. "type": "library",
  10888. "extra": {
  10889. "branch-alias": {
  10890. "dev-master": "5.0-dev"
  10891. }
  10892. },
  10893. "autoload": {
  10894. "classmap": [
  10895. "src/"
  10896. ]
  10897. },
  10898. "notification-url": "https://packagist.org/downloads/",
  10899. "license": [
  10900. "BSD-3-Clause"
  10901. ],
  10902. "authors": [
  10903. {
  10904. "name": "Sebastian Bergmann",
  10905. "email": "sebastian@phpunit.de"
  10906. }
  10907. ],
  10908. "description": "Snapshotting of global state",
  10909. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10910. "keywords": [
  10911. "global state"
  10912. ],
  10913. "support": {
  10914. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10915. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10916. },
  10917. "funding": [
  10918. {
  10919. "url": "https://github.com/sebastianbergmann",
  10920. "type": "github"
  10921. }
  10922. ],
  10923. "time": "2020-10-26T15:55:19+00:00"
  10924. },
  10925. {
  10926. "name": "sebastian/lines-of-code",
  10927. "version": "1.0.3",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10931. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10936. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "nikic/php-parser": "^4.6",
  10941. "php": ">=7.3"
  10942. },
  10943. "require-dev": {
  10944. "phpunit/phpunit": "^9.3"
  10945. },
  10946. "type": "library",
  10947. "extra": {
  10948. "branch-alias": {
  10949. "dev-master": "1.0-dev"
  10950. }
  10951. },
  10952. "autoload": {
  10953. "classmap": [
  10954. "src/"
  10955. ]
  10956. },
  10957. "notification-url": "https://packagist.org/downloads/",
  10958. "license": [
  10959. "BSD-3-Clause"
  10960. ],
  10961. "authors": [
  10962. {
  10963. "name": "Sebastian Bergmann",
  10964. "email": "sebastian@phpunit.de",
  10965. "role": "lead"
  10966. }
  10967. ],
  10968. "description": "Library for counting the lines of code in PHP source code",
  10969. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10970. "support": {
  10971. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10972. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10973. },
  10974. "funding": [
  10975. {
  10976. "url": "https://github.com/sebastianbergmann",
  10977. "type": "github"
  10978. }
  10979. ],
  10980. "time": "2020-11-28T06:42:11+00:00"
  10981. },
  10982. {
  10983. "name": "sebastian/object-enumerator",
  10984. "version": "4.0.4",
  10985. "source": {
  10986. "type": "git",
  10987. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10988. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10989. },
  10990. "dist": {
  10991. "type": "zip",
  10992. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10993. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10994. "shasum": ""
  10995. },
  10996. "require": {
  10997. "php": ">=7.3",
  10998. "sebastian/object-reflector": "^2.0",
  10999. "sebastian/recursion-context": "^4.0"
  11000. },
  11001. "require-dev": {
  11002. "phpunit/phpunit": "^9.3"
  11003. },
  11004. "type": "library",
  11005. "extra": {
  11006. "branch-alias": {
  11007. "dev-master": "4.0-dev"
  11008. }
  11009. },
  11010. "autoload": {
  11011. "classmap": [
  11012. "src/"
  11013. ]
  11014. },
  11015. "notification-url": "https://packagist.org/downloads/",
  11016. "license": [
  11017. "BSD-3-Clause"
  11018. ],
  11019. "authors": [
  11020. {
  11021. "name": "Sebastian Bergmann",
  11022. "email": "sebastian@phpunit.de"
  11023. }
  11024. ],
  11025. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11026. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11027. "support": {
  11028. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11029. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11030. },
  11031. "funding": [
  11032. {
  11033. "url": "https://github.com/sebastianbergmann",
  11034. "type": "github"
  11035. }
  11036. ],
  11037. "time": "2020-10-26T13:12:34+00:00"
  11038. },
  11039. {
  11040. "name": "sebastian/object-reflector",
  11041. "version": "2.0.4",
  11042. "source": {
  11043. "type": "git",
  11044. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11045. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11046. },
  11047. "dist": {
  11048. "type": "zip",
  11049. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11050. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11051. "shasum": ""
  11052. },
  11053. "require": {
  11054. "php": ">=7.3"
  11055. },
  11056. "require-dev": {
  11057. "phpunit/phpunit": "^9.3"
  11058. },
  11059. "type": "library",
  11060. "extra": {
  11061. "branch-alias": {
  11062. "dev-master": "2.0-dev"
  11063. }
  11064. },
  11065. "autoload": {
  11066. "classmap": [
  11067. "src/"
  11068. ]
  11069. },
  11070. "notification-url": "https://packagist.org/downloads/",
  11071. "license": [
  11072. "BSD-3-Clause"
  11073. ],
  11074. "authors": [
  11075. {
  11076. "name": "Sebastian Bergmann",
  11077. "email": "sebastian@phpunit.de"
  11078. }
  11079. ],
  11080. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11081. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11082. "support": {
  11083. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11084. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11085. },
  11086. "funding": [
  11087. {
  11088. "url": "https://github.com/sebastianbergmann",
  11089. "type": "github"
  11090. }
  11091. ],
  11092. "time": "2020-10-26T13:14:26+00:00"
  11093. },
  11094. {
  11095. "name": "sebastian/recursion-context",
  11096. "version": "4.0.4",
  11097. "source": {
  11098. "type": "git",
  11099. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11100. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11101. },
  11102. "dist": {
  11103. "type": "zip",
  11104. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11105. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11106. "shasum": ""
  11107. },
  11108. "require": {
  11109. "php": ">=7.3"
  11110. },
  11111. "require-dev": {
  11112. "phpunit/phpunit": "^9.3"
  11113. },
  11114. "type": "library",
  11115. "extra": {
  11116. "branch-alias": {
  11117. "dev-master": "4.0-dev"
  11118. }
  11119. },
  11120. "autoload": {
  11121. "classmap": [
  11122. "src/"
  11123. ]
  11124. },
  11125. "notification-url": "https://packagist.org/downloads/",
  11126. "license": [
  11127. "BSD-3-Clause"
  11128. ],
  11129. "authors": [
  11130. {
  11131. "name": "Sebastian Bergmann",
  11132. "email": "sebastian@phpunit.de"
  11133. },
  11134. {
  11135. "name": "Jeff Welch",
  11136. "email": "whatthejeff@gmail.com"
  11137. },
  11138. {
  11139. "name": "Adam Harvey",
  11140. "email": "aharvey@php.net"
  11141. }
  11142. ],
  11143. "description": "Provides functionality to recursively process PHP variables",
  11144. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11145. "support": {
  11146. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11147. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11148. },
  11149. "funding": [
  11150. {
  11151. "url": "https://github.com/sebastianbergmann",
  11152. "type": "github"
  11153. }
  11154. ],
  11155. "time": "2020-10-26T13:17:30+00:00"
  11156. },
  11157. {
  11158. "name": "sebastian/resource-operations",
  11159. "version": "3.0.3",
  11160. "source": {
  11161. "type": "git",
  11162. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11163. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11164. },
  11165. "dist": {
  11166. "type": "zip",
  11167. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11168. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11169. "shasum": ""
  11170. },
  11171. "require": {
  11172. "php": ">=7.3"
  11173. },
  11174. "require-dev": {
  11175. "phpunit/phpunit": "^9.0"
  11176. },
  11177. "type": "library",
  11178. "extra": {
  11179. "branch-alias": {
  11180. "dev-master": "3.0-dev"
  11181. }
  11182. },
  11183. "autoload": {
  11184. "classmap": [
  11185. "src/"
  11186. ]
  11187. },
  11188. "notification-url": "https://packagist.org/downloads/",
  11189. "license": [
  11190. "BSD-3-Clause"
  11191. ],
  11192. "authors": [
  11193. {
  11194. "name": "Sebastian Bergmann",
  11195. "email": "sebastian@phpunit.de"
  11196. }
  11197. ],
  11198. "description": "Provides a list of PHP built-in functions that operate on resources",
  11199. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11200. "support": {
  11201. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11202. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11203. },
  11204. "funding": [
  11205. {
  11206. "url": "https://github.com/sebastianbergmann",
  11207. "type": "github"
  11208. }
  11209. ],
  11210. "time": "2020-09-28T06:45:17+00:00"
  11211. },
  11212. {
  11213. "name": "sebastian/type",
  11214. "version": "2.3.1",
  11215. "source": {
  11216. "type": "git",
  11217. "url": "https://github.com/sebastianbergmann/type.git",
  11218. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11219. },
  11220. "dist": {
  11221. "type": "zip",
  11222. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11223. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11224. "shasum": ""
  11225. },
  11226. "require": {
  11227. "php": ">=7.3"
  11228. },
  11229. "require-dev": {
  11230. "phpunit/phpunit": "^9.3"
  11231. },
  11232. "type": "library",
  11233. "extra": {
  11234. "branch-alias": {
  11235. "dev-master": "2.3-dev"
  11236. }
  11237. },
  11238. "autoload": {
  11239. "classmap": [
  11240. "src/"
  11241. ]
  11242. },
  11243. "notification-url": "https://packagist.org/downloads/",
  11244. "license": [
  11245. "BSD-3-Clause"
  11246. ],
  11247. "authors": [
  11248. {
  11249. "name": "Sebastian Bergmann",
  11250. "email": "sebastian@phpunit.de",
  11251. "role": "lead"
  11252. }
  11253. ],
  11254. "description": "Collection of value objects that represent the types of the PHP type system",
  11255. "homepage": "https://github.com/sebastianbergmann/type",
  11256. "support": {
  11257. "issues": "https://github.com/sebastianbergmann/type/issues",
  11258. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11259. },
  11260. "funding": [
  11261. {
  11262. "url": "https://github.com/sebastianbergmann",
  11263. "type": "github"
  11264. }
  11265. ],
  11266. "time": "2020-10-26T13:18:59+00:00"
  11267. },
  11268. {
  11269. "name": "sebastian/version",
  11270. "version": "3.0.2",
  11271. "source": {
  11272. "type": "git",
  11273. "url": "https://github.com/sebastianbergmann/version.git",
  11274. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11275. },
  11276. "dist": {
  11277. "type": "zip",
  11278. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11279. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11280. "shasum": ""
  11281. },
  11282. "require": {
  11283. "php": ">=7.3"
  11284. },
  11285. "type": "library",
  11286. "extra": {
  11287. "branch-alias": {
  11288. "dev-master": "3.0-dev"
  11289. }
  11290. },
  11291. "autoload": {
  11292. "classmap": [
  11293. "src/"
  11294. ]
  11295. },
  11296. "notification-url": "https://packagist.org/downloads/",
  11297. "license": [
  11298. "BSD-3-Clause"
  11299. ],
  11300. "authors": [
  11301. {
  11302. "name": "Sebastian Bergmann",
  11303. "email": "sebastian@phpunit.de",
  11304. "role": "lead"
  11305. }
  11306. ],
  11307. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11308. "homepage": "https://github.com/sebastianbergmann/version",
  11309. "support": {
  11310. "issues": "https://github.com/sebastianbergmann/version/issues",
  11311. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11312. },
  11313. "funding": [
  11314. {
  11315. "url": "https://github.com/sebastianbergmann",
  11316. "type": "github"
  11317. }
  11318. ],
  11319. "time": "2020-09-28T06:39:44+00:00"
  11320. },
  11321. {
  11322. "name": "seld/jsonlint",
  11323. "version": "1.8.3",
  11324. "source": {
  11325. "type": "git",
  11326. "url": "https://github.com/Seldaek/jsonlint.git",
  11327. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11328. },
  11329. "dist": {
  11330. "type": "zip",
  11331. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11332. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11333. "shasum": ""
  11334. },
  11335. "require": {
  11336. "php": "^5.3 || ^7.0 || ^8.0"
  11337. },
  11338. "require-dev": {
  11339. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11340. },
  11341. "bin": [
  11342. "bin/jsonlint"
  11343. ],
  11344. "type": "library",
  11345. "autoload": {
  11346. "psr-4": {
  11347. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11348. }
  11349. },
  11350. "notification-url": "https://packagist.org/downloads/",
  11351. "license": [
  11352. "MIT"
  11353. ],
  11354. "authors": [
  11355. {
  11356. "name": "Jordi Boggiano",
  11357. "email": "j.boggiano@seld.be",
  11358. "homepage": "http://seld.be"
  11359. }
  11360. ],
  11361. "description": "JSON Linter",
  11362. "keywords": [
  11363. "json",
  11364. "linter",
  11365. "parser",
  11366. "validator"
  11367. ],
  11368. "support": {
  11369. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11370. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11371. },
  11372. "funding": [
  11373. {
  11374. "url": "https://github.com/Seldaek",
  11375. "type": "github"
  11376. },
  11377. {
  11378. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11379. "type": "tidelift"
  11380. }
  11381. ],
  11382. "time": "2020-11-11T09:19:24+00:00"
  11383. },
  11384. {
  11385. "name": "seld/phar-utils",
  11386. "version": "1.1.1",
  11387. "source": {
  11388. "type": "git",
  11389. "url": "https://github.com/Seldaek/phar-utils.git",
  11390. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11391. },
  11392. "dist": {
  11393. "type": "zip",
  11394. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11395. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11396. "shasum": ""
  11397. },
  11398. "require": {
  11399. "php": ">=5.3"
  11400. },
  11401. "type": "library",
  11402. "extra": {
  11403. "branch-alias": {
  11404. "dev-master": "1.x-dev"
  11405. }
  11406. },
  11407. "autoload": {
  11408. "psr-4": {
  11409. "Seld\\PharUtils\\": "src/"
  11410. }
  11411. },
  11412. "notification-url": "https://packagist.org/downloads/",
  11413. "license": [
  11414. "MIT"
  11415. ],
  11416. "authors": [
  11417. {
  11418. "name": "Jordi Boggiano",
  11419. "email": "j.boggiano@seld.be"
  11420. }
  11421. ],
  11422. "description": "PHAR file format utilities, for when PHP phars you up",
  11423. "keywords": [
  11424. "phar"
  11425. ],
  11426. "support": {
  11427. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11428. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11429. },
  11430. "time": "2020-07-07T18:42:57+00:00"
  11431. },
  11432. {
  11433. "name": "symfony/debug",
  11434. "version": "v4.4.18",
  11435. "source": {
  11436. "type": "git",
  11437. "url": "https://github.com/symfony/debug.git",
  11438. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
  11439. },
  11440. "dist": {
  11441. "type": "zip",
  11442. "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11443. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11444. "shasum": ""
  11445. },
  11446. "require": {
  11447. "php": ">=7.1.3",
  11448. "psr/log": "~1.0",
  11449. "symfony/polyfill-php80": "^1.15"
  11450. },
  11451. "conflict": {
  11452. "symfony/http-kernel": "<3.4"
  11453. },
  11454. "require-dev": {
  11455. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11456. },
  11457. "type": "library",
  11458. "autoload": {
  11459. "psr-4": {
  11460. "Symfony\\Component\\Debug\\": ""
  11461. },
  11462. "exclude-from-classmap": [
  11463. "/Tests/"
  11464. ]
  11465. },
  11466. "notification-url": "https://packagist.org/downloads/",
  11467. "license": [
  11468. "MIT"
  11469. ],
  11470. "authors": [
  11471. {
  11472. "name": "Fabien Potencier",
  11473. "email": "fabien@symfony.com"
  11474. },
  11475. {
  11476. "name": "Symfony Community",
  11477. "homepage": "https://symfony.com/contributors"
  11478. }
  11479. ],
  11480. "description": "Symfony Debug Component",
  11481. "homepage": "https://symfony.com",
  11482. "support": {
  11483. "source": "https://github.com/symfony/debug/tree/v4.4.18"
  11484. },
  11485. "funding": [
  11486. {
  11487. "url": "https://symfony.com/sponsor",
  11488. "type": "custom"
  11489. },
  11490. {
  11491. "url": "https://github.com/fabpot",
  11492. "type": "github"
  11493. },
  11494. {
  11495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11496. "type": "tidelift"
  11497. }
  11498. ],
  11499. "time": "2020-12-10T16:34:26+00:00"
  11500. },
  11501. {
  11502. "name": "symfony/filesystem",
  11503. "version": "v5.2.1",
  11504. "source": {
  11505. "type": "git",
  11506. "url": "https://github.com/symfony/filesystem.git",
  11507. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  11508. },
  11509. "dist": {
  11510. "type": "zip",
  11511. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11512. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11513. "shasum": ""
  11514. },
  11515. "require": {
  11516. "php": ">=7.2.5",
  11517. "symfony/polyfill-ctype": "~1.8"
  11518. },
  11519. "type": "library",
  11520. "autoload": {
  11521. "psr-4": {
  11522. "Symfony\\Component\\Filesystem\\": ""
  11523. },
  11524. "exclude-from-classmap": [
  11525. "/Tests/"
  11526. ]
  11527. },
  11528. "notification-url": "https://packagist.org/downloads/",
  11529. "license": [
  11530. "MIT"
  11531. ],
  11532. "authors": [
  11533. {
  11534. "name": "Fabien Potencier",
  11535. "email": "fabien@symfony.com"
  11536. },
  11537. {
  11538. "name": "Symfony Community",
  11539. "homepage": "https://symfony.com/contributors"
  11540. }
  11541. ],
  11542. "description": "Symfony Filesystem Component",
  11543. "homepage": "https://symfony.com",
  11544. "support": {
  11545. "source": "https://github.com/symfony/filesystem/tree/v5.2.1"
  11546. },
  11547. "funding": [
  11548. {
  11549. "url": "https://symfony.com/sponsor",
  11550. "type": "custom"
  11551. },
  11552. {
  11553. "url": "https://github.com/fabpot",
  11554. "type": "github"
  11555. },
  11556. {
  11557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11558. "type": "tidelift"
  11559. }
  11560. ],
  11561. "time": "2020-11-30T17:05:38+00:00"
  11562. },
  11563. {
  11564. "name": "theseer/tokenizer",
  11565. "version": "1.2.0",
  11566. "source": {
  11567. "type": "git",
  11568. "url": "https://github.com/theseer/tokenizer.git",
  11569. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11570. },
  11571. "dist": {
  11572. "type": "zip",
  11573. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11574. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11575. "shasum": ""
  11576. },
  11577. "require": {
  11578. "ext-dom": "*",
  11579. "ext-tokenizer": "*",
  11580. "ext-xmlwriter": "*",
  11581. "php": "^7.2 || ^8.0"
  11582. },
  11583. "type": "library",
  11584. "autoload": {
  11585. "classmap": [
  11586. "src/"
  11587. ]
  11588. },
  11589. "notification-url": "https://packagist.org/downloads/",
  11590. "license": [
  11591. "BSD-3-Clause"
  11592. ],
  11593. "authors": [
  11594. {
  11595. "name": "Arne Blankerts",
  11596. "email": "arne@blankerts.de",
  11597. "role": "Developer"
  11598. }
  11599. ],
  11600. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11601. "support": {
  11602. "issues": "https://github.com/theseer/tokenizer/issues",
  11603. "source": "https://github.com/theseer/tokenizer/tree/master"
  11604. },
  11605. "funding": [
  11606. {
  11607. "url": "https://github.com/theseer",
  11608. "type": "github"
  11609. }
  11610. ],
  11611. "time": "2020-07-12T23:59:07+00:00"
  11612. },
  11613. {
  11614. "name": "webmozart/assert",
  11615. "version": "1.9.1",
  11616. "source": {
  11617. "type": "git",
  11618. "url": "https://github.com/webmozart/assert.git",
  11619. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11620. },
  11621. "dist": {
  11622. "type": "zip",
  11623. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11624. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11625. "shasum": ""
  11626. },
  11627. "require": {
  11628. "php": "^5.3.3 || ^7.0 || ^8.0",
  11629. "symfony/polyfill-ctype": "^1.8"
  11630. },
  11631. "conflict": {
  11632. "phpstan/phpstan": "<0.12.20",
  11633. "vimeo/psalm": "<3.9.1"
  11634. },
  11635. "require-dev": {
  11636. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11637. },
  11638. "type": "library",
  11639. "autoload": {
  11640. "psr-4": {
  11641. "Webmozart\\Assert\\": "src/"
  11642. }
  11643. },
  11644. "notification-url": "https://packagist.org/downloads/",
  11645. "license": [
  11646. "MIT"
  11647. ],
  11648. "authors": [
  11649. {
  11650. "name": "Bernhard Schussek",
  11651. "email": "bschussek@gmail.com"
  11652. }
  11653. ],
  11654. "description": "Assertions to validate method input/output with nice error messages.",
  11655. "keywords": [
  11656. "assert",
  11657. "check",
  11658. "validate"
  11659. ],
  11660. "support": {
  11661. "issues": "https://github.com/webmozart/assert/issues",
  11662. "source": "https://github.com/webmozart/assert/tree/master"
  11663. },
  11664. "time": "2020-07-08T17:02:28+00:00"
  11665. }
  11666. ],
  11667. "aliases": [],
  11668. "minimum-stability": "dev",
  11669. "stability-flags": [],
  11670. "prefer-stable": true,
  11671. "prefer-lowest": false,
  11672. "platform": {
  11673. "php": "^7.2.5|^8.0",
  11674. "ext-json": "*",
  11675. "ext-mbstring": "*",
  11676. "ext-openssl": "*",
  11677. "ext-simplexml": "*"
  11678. },
  11679. "platform-dev": [],
  11680. "plugin-api-version": "2.0.0"
  11681. }