composer.lock 417 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684
  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.25",
  780. "source": {
  781. "type": "git",
  782. "url": "https://github.com/egulias/EmailValidator.git",
  783. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  784. },
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  788. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  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.25"
  836. },
  837. "funding": [
  838. {
  839. "url": "https://github.com/egulias",
  840. "type": "github"
  841. }
  842. ],
  843. "time": "2020-12-29T14:50:06+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.9.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2488. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2493. "reference": "9ee9ba9ee287b119e9f5a8e8dbfea0b49647cec4",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": ">=7.2"
  2498. },
  2499. "conflict": {
  2500. "ext-maxminddb": "<1.9.0,>=2.0.0"
  2501. },
  2502. "require-dev": {
  2503. "friendsofphp/php-cs-fixer": "*",
  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.9.0"
  2543. },
  2544. "time": "2021-01-07T21:15:29+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.16.0",
  3311. "source": {
  3312. "type": "git",
  3313. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3314. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  3315. },
  3316. "dist": {
  3317. "type": "zip",
  3318. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  3319. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  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. "ezyang/htmlpurifier": "^4.13",
  3337. "maennchen/zipstream-php": "^2.1",
  3338. "markbaker/complex": "^1.5||^2.0",
  3339. "markbaker/matrix": "^1.2||^2.0",
  3340. "php": "^7.2||^8.0",
  3341. "psr/http-client": "^1.0",
  3342. "psr/http-factory": "^1.0",
  3343. "psr/simple-cache": "^1.0"
  3344. },
  3345. "require-dev": {
  3346. "dompdf/dompdf": "^0.8.5",
  3347. "friendsofphp/php-cs-fixer": "^2.16",
  3348. "jpgraph/jpgraph": "^4.0",
  3349. "mpdf/mpdf": "^8.0",
  3350. "phpcompatibility/php-compatibility": "^9.3",
  3351. "phpunit/phpunit": "^8.5||^9.3",
  3352. "squizlabs/php_codesniffer": "^3.5",
  3353. "tecnickcom/tcpdf": "^6.3"
  3354. },
  3355. "suggest": {
  3356. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3357. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3358. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3359. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3360. },
  3361. "type": "library",
  3362. "autoload": {
  3363. "psr-4": {
  3364. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Maarten Balliauw",
  3374. "homepage": "https://blog.maartenballiauw.be"
  3375. },
  3376. {
  3377. "name": "Mark Baker",
  3378. "homepage": "https://markbakeruk.net"
  3379. },
  3380. {
  3381. "name": "Franck Lefevre",
  3382. "homepage": "https://rootslabs.net"
  3383. },
  3384. {
  3385. "name": "Erik Tilt"
  3386. },
  3387. {
  3388. "name": "Adrien Crivelli"
  3389. }
  3390. ],
  3391. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3392. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3393. "keywords": [
  3394. "OpenXML",
  3395. "excel",
  3396. "gnumeric",
  3397. "ods",
  3398. "php",
  3399. "spreadsheet",
  3400. "xls",
  3401. "xlsx"
  3402. ],
  3403. "support": {
  3404. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3405. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  3406. },
  3407. "time": "2020-12-31T18:03:49+00:00"
  3408. },
  3409. {
  3410. "name": "phpoption/phpoption",
  3411. "version": "1.7.5",
  3412. "source": {
  3413. "type": "git",
  3414. "url": "https://github.com/schmittjoh/php-option.git",
  3415. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3416. },
  3417. "dist": {
  3418. "type": "zip",
  3419. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3420. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3421. "shasum": ""
  3422. },
  3423. "require": {
  3424. "php": "^5.5.9 || ^7.0 || ^8.0"
  3425. },
  3426. "require-dev": {
  3427. "bamarni/composer-bin-plugin": "^1.4.1",
  3428. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3429. },
  3430. "type": "library",
  3431. "extra": {
  3432. "branch-alias": {
  3433. "dev-master": "1.7-dev"
  3434. }
  3435. },
  3436. "autoload": {
  3437. "psr-4": {
  3438. "PhpOption\\": "src/PhpOption/"
  3439. }
  3440. },
  3441. "notification-url": "https://packagist.org/downloads/",
  3442. "license": [
  3443. "Apache-2.0"
  3444. ],
  3445. "authors": [
  3446. {
  3447. "name": "Johannes M. Schmitt",
  3448. "email": "schmittjoh@gmail.com"
  3449. },
  3450. {
  3451. "name": "Graham Campbell",
  3452. "email": "graham@alt-three.com"
  3453. }
  3454. ],
  3455. "description": "Option Type for PHP",
  3456. "keywords": [
  3457. "language",
  3458. "option",
  3459. "php",
  3460. "type"
  3461. ],
  3462. "support": {
  3463. "issues": "https://github.com/schmittjoh/php-option/issues",
  3464. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3465. },
  3466. "funding": [
  3467. {
  3468. "url": "https://github.com/GrahamCampbell",
  3469. "type": "github"
  3470. },
  3471. {
  3472. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3473. "type": "tidelift"
  3474. }
  3475. ],
  3476. "time": "2020-07-20T17:29:33+00:00"
  3477. },
  3478. {
  3479. "name": "psr/container",
  3480. "version": "1.0.0",
  3481. "source": {
  3482. "type": "git",
  3483. "url": "https://github.com/php-fig/container.git",
  3484. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3485. },
  3486. "dist": {
  3487. "type": "zip",
  3488. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3489. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3490. "shasum": ""
  3491. },
  3492. "require": {
  3493. "php": ">=5.3.0"
  3494. },
  3495. "type": "library",
  3496. "extra": {
  3497. "branch-alias": {
  3498. "dev-master": "1.0.x-dev"
  3499. }
  3500. },
  3501. "autoload": {
  3502. "psr-4": {
  3503. "Psr\\Container\\": "src/"
  3504. }
  3505. },
  3506. "notification-url": "https://packagist.org/downloads/",
  3507. "license": [
  3508. "MIT"
  3509. ],
  3510. "authors": [
  3511. {
  3512. "name": "PHP-FIG",
  3513. "homepage": "http://www.php-fig.org/"
  3514. }
  3515. ],
  3516. "description": "Common Container Interface (PHP FIG PSR-11)",
  3517. "homepage": "https://github.com/php-fig/container",
  3518. "keywords": [
  3519. "PSR-11",
  3520. "container",
  3521. "container-interface",
  3522. "container-interop",
  3523. "psr"
  3524. ],
  3525. "support": {
  3526. "issues": "https://github.com/php-fig/container/issues",
  3527. "source": "https://github.com/php-fig/container/tree/master"
  3528. },
  3529. "time": "2017-02-14T16:28:37+00:00"
  3530. },
  3531. {
  3532. "name": "psr/event-dispatcher",
  3533. "version": "1.0.0",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/php-fig/event-dispatcher.git",
  3537. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3542. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "php": ">=7.2.0"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "branch-alias": {
  3551. "dev-master": "1.0.x-dev"
  3552. }
  3553. },
  3554. "autoload": {
  3555. "psr-4": {
  3556. "Psr\\EventDispatcher\\": "src/"
  3557. }
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "MIT"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "PHP-FIG",
  3566. "homepage": "http://www.php-fig.org/"
  3567. }
  3568. ],
  3569. "description": "Standard interfaces for event handling.",
  3570. "keywords": [
  3571. "events",
  3572. "psr",
  3573. "psr-14"
  3574. ],
  3575. "support": {
  3576. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3577. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3578. },
  3579. "time": "2019-01-08T18:20:26+00:00"
  3580. },
  3581. {
  3582. "name": "psr/http-client",
  3583. "version": "1.0.1",
  3584. "source": {
  3585. "type": "git",
  3586. "url": "https://github.com/php-fig/http-client.git",
  3587. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3588. },
  3589. "dist": {
  3590. "type": "zip",
  3591. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3592. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3593. "shasum": ""
  3594. },
  3595. "require": {
  3596. "php": "^7.0 || ^8.0",
  3597. "psr/http-message": "^1.0"
  3598. },
  3599. "type": "library",
  3600. "extra": {
  3601. "branch-alias": {
  3602. "dev-master": "1.0.x-dev"
  3603. }
  3604. },
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Psr\\Http\\Client\\": "src/"
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "PHP-FIG",
  3617. "homepage": "http://www.php-fig.org/"
  3618. }
  3619. ],
  3620. "description": "Common interface for HTTP clients",
  3621. "homepage": "https://github.com/php-fig/http-client",
  3622. "keywords": [
  3623. "http",
  3624. "http-client",
  3625. "psr",
  3626. "psr-18"
  3627. ],
  3628. "support": {
  3629. "source": "https://github.com/php-fig/http-client/tree/master"
  3630. },
  3631. "time": "2020-06-29T06:28:15+00:00"
  3632. },
  3633. {
  3634. "name": "psr/http-factory",
  3635. "version": "1.0.1",
  3636. "source": {
  3637. "type": "git",
  3638. "url": "https://github.com/php-fig/http-factory.git",
  3639. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3640. },
  3641. "dist": {
  3642. "type": "zip",
  3643. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3644. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3645. "shasum": ""
  3646. },
  3647. "require": {
  3648. "php": ">=7.0.0",
  3649. "psr/http-message": "^1.0"
  3650. },
  3651. "type": "library",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-master": "1.0.x-dev"
  3655. }
  3656. },
  3657. "autoload": {
  3658. "psr-4": {
  3659. "Psr\\Http\\Message\\": "src/"
  3660. }
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "MIT"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "PHP-FIG",
  3669. "homepage": "http://www.php-fig.org/"
  3670. }
  3671. ],
  3672. "description": "Common interfaces for PSR-7 HTTP message factories",
  3673. "keywords": [
  3674. "factory",
  3675. "http",
  3676. "message",
  3677. "psr",
  3678. "psr-17",
  3679. "psr-7",
  3680. "request",
  3681. "response"
  3682. ],
  3683. "support": {
  3684. "source": "https://github.com/php-fig/http-factory/tree/master"
  3685. },
  3686. "time": "2019-04-30T12:38:16+00:00"
  3687. },
  3688. {
  3689. "name": "psr/http-message",
  3690. "version": "1.0.1",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/php-fig/http-message.git",
  3694. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3699. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": ">=5.3.0"
  3704. },
  3705. "type": "library",
  3706. "extra": {
  3707. "branch-alias": {
  3708. "dev-master": "1.0.x-dev"
  3709. }
  3710. },
  3711. "autoload": {
  3712. "psr-4": {
  3713. "Psr\\Http\\Message\\": "src/"
  3714. }
  3715. },
  3716. "notification-url": "https://packagist.org/downloads/",
  3717. "license": [
  3718. "MIT"
  3719. ],
  3720. "authors": [
  3721. {
  3722. "name": "PHP-FIG",
  3723. "homepage": "http://www.php-fig.org/"
  3724. }
  3725. ],
  3726. "description": "Common interface for HTTP messages",
  3727. "homepage": "https://github.com/php-fig/http-message",
  3728. "keywords": [
  3729. "http",
  3730. "http-message",
  3731. "psr",
  3732. "psr-7",
  3733. "request",
  3734. "response"
  3735. ],
  3736. "support": {
  3737. "source": "https://github.com/php-fig/http-message/tree/master"
  3738. },
  3739. "time": "2016-08-06T14:39:51+00:00"
  3740. },
  3741. {
  3742. "name": "psr/log",
  3743. "version": "1.1.3",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/php-fig/log.git",
  3747. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3752. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3753. "shasum": ""
  3754. },
  3755. "require": {
  3756. "php": ">=5.3.0"
  3757. },
  3758. "type": "library",
  3759. "extra": {
  3760. "branch-alias": {
  3761. "dev-master": "1.1.x-dev"
  3762. }
  3763. },
  3764. "autoload": {
  3765. "psr-4": {
  3766. "Psr\\Log\\": "Psr/Log/"
  3767. }
  3768. },
  3769. "notification-url": "https://packagist.org/downloads/",
  3770. "license": [
  3771. "MIT"
  3772. ],
  3773. "authors": [
  3774. {
  3775. "name": "PHP-FIG",
  3776. "homepage": "http://www.php-fig.org/"
  3777. }
  3778. ],
  3779. "description": "Common interface for logging libraries",
  3780. "homepage": "https://github.com/php-fig/log",
  3781. "keywords": [
  3782. "log",
  3783. "psr",
  3784. "psr-3"
  3785. ],
  3786. "support": {
  3787. "source": "https://github.com/php-fig/log/tree/1.1.3"
  3788. },
  3789. "time": "2020-03-23T09:12:05+00:00"
  3790. },
  3791. {
  3792. "name": "psr/simple-cache",
  3793. "version": "1.0.1",
  3794. "source": {
  3795. "type": "git",
  3796. "url": "https://github.com/php-fig/simple-cache.git",
  3797. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3798. },
  3799. "dist": {
  3800. "type": "zip",
  3801. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3802. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3803. "shasum": ""
  3804. },
  3805. "require": {
  3806. "php": ">=5.3.0"
  3807. },
  3808. "type": "library",
  3809. "extra": {
  3810. "branch-alias": {
  3811. "dev-master": "1.0.x-dev"
  3812. }
  3813. },
  3814. "autoload": {
  3815. "psr-4": {
  3816. "Psr\\SimpleCache\\": "src/"
  3817. }
  3818. },
  3819. "notification-url": "https://packagist.org/downloads/",
  3820. "license": [
  3821. "MIT"
  3822. ],
  3823. "authors": [
  3824. {
  3825. "name": "PHP-FIG",
  3826. "homepage": "http://www.php-fig.org/"
  3827. }
  3828. ],
  3829. "description": "Common interfaces for simple caching",
  3830. "keywords": [
  3831. "cache",
  3832. "caching",
  3833. "psr",
  3834. "psr-16",
  3835. "simple-cache"
  3836. ],
  3837. "support": {
  3838. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3839. },
  3840. "time": "2017-10-23T01:57:42+00:00"
  3841. },
  3842. {
  3843. "name": "psy/psysh",
  3844. "version": "v0.10.5",
  3845. "source": {
  3846. "type": "git",
  3847. "url": "https://github.com/bobthecow/psysh.git",
  3848. "reference": "7c710551d4a2653afa259c544508dc18a9098956"
  3849. },
  3850. "dist": {
  3851. "type": "zip",
  3852. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7c710551d4a2653afa259c544508dc18a9098956",
  3853. "reference": "7c710551d4a2653afa259c544508dc18a9098956",
  3854. "shasum": ""
  3855. },
  3856. "require": {
  3857. "dnoegel/php-xdg-base-dir": "0.1.*",
  3858. "ext-json": "*",
  3859. "ext-tokenizer": "*",
  3860. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3861. "php": "^8.0 || ^7.0 || ^5.5.9",
  3862. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3863. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3864. },
  3865. "require-dev": {
  3866. "bamarni/composer-bin-plugin": "^1.2",
  3867. "hoa/console": "3.17.*"
  3868. },
  3869. "suggest": {
  3870. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3871. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3872. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3873. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3874. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3875. },
  3876. "bin": [
  3877. "bin/psysh"
  3878. ],
  3879. "type": "library",
  3880. "extra": {
  3881. "branch-alias": {
  3882. "dev-master": "0.10.x-dev"
  3883. }
  3884. },
  3885. "autoload": {
  3886. "files": [
  3887. "src/functions.php"
  3888. ],
  3889. "psr-4": {
  3890. "Psy\\": "src/"
  3891. }
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "Justin Hileman",
  3900. "email": "justin@justinhileman.info",
  3901. "homepage": "http://justinhileman.com"
  3902. }
  3903. ],
  3904. "description": "An interactive shell for modern PHP.",
  3905. "homepage": "http://psysh.org",
  3906. "keywords": [
  3907. "REPL",
  3908. "console",
  3909. "interactive",
  3910. "shell"
  3911. ],
  3912. "support": {
  3913. "issues": "https://github.com/bobthecow/psysh/issues",
  3914. "source": "https://github.com/bobthecow/psysh/tree/v0.10.5"
  3915. },
  3916. "time": "2020-12-04T02:51:30+00:00"
  3917. },
  3918. {
  3919. "name": "ralouphie/getallheaders",
  3920. "version": "3.0.3",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/ralouphie/getallheaders.git",
  3924. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3929. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3930. "shasum": ""
  3931. },
  3932. "require": {
  3933. "php": ">=5.6"
  3934. },
  3935. "require-dev": {
  3936. "php-coveralls/php-coveralls": "^2.1",
  3937. "phpunit/phpunit": "^5 || ^6.5"
  3938. },
  3939. "type": "library",
  3940. "autoload": {
  3941. "files": [
  3942. "src/getallheaders.php"
  3943. ]
  3944. },
  3945. "notification-url": "https://packagist.org/downloads/",
  3946. "license": [
  3947. "MIT"
  3948. ],
  3949. "authors": [
  3950. {
  3951. "name": "Ralph Khattar",
  3952. "email": "ralph.khattar@gmail.com"
  3953. }
  3954. ],
  3955. "description": "A polyfill for getallheaders.",
  3956. "support": {
  3957. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3958. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3959. },
  3960. "time": "2019-03-08T08:55:37+00:00"
  3961. },
  3962. {
  3963. "name": "ramsey/collection",
  3964. "version": "1.1.1",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://github.com/ramsey/collection.git",
  3968. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3969. },
  3970. "dist": {
  3971. "type": "zip",
  3972. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3973. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3974. "shasum": ""
  3975. },
  3976. "require": {
  3977. "php": "^7.2 || ^8"
  3978. },
  3979. "require-dev": {
  3980. "captainhook/captainhook": "^5.3",
  3981. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3982. "ergebnis/composer-normalize": "^2.6",
  3983. "fzaninotto/faker": "^1.5",
  3984. "hamcrest/hamcrest-php": "^2",
  3985. "jangregor/phpstan-prophecy": "^0.6",
  3986. "mockery/mockery": "^1.3",
  3987. "phpstan/extension-installer": "^1",
  3988. "phpstan/phpstan": "^0.12.32",
  3989. "phpstan/phpstan-mockery": "^0.12.5",
  3990. "phpstan/phpstan-phpunit": "^0.12.11",
  3991. "phpunit/phpunit": "^8.5",
  3992. "psy/psysh": "^0.10.4",
  3993. "slevomat/coding-standard": "^6.3",
  3994. "squizlabs/php_codesniffer": "^3.5",
  3995. "vimeo/psalm": "^3.12.2"
  3996. },
  3997. "type": "library",
  3998. "autoload": {
  3999. "psr-4": {
  4000. "Ramsey\\Collection\\": "src/"
  4001. }
  4002. },
  4003. "notification-url": "https://packagist.org/downloads/",
  4004. "license": [
  4005. "MIT"
  4006. ],
  4007. "authors": [
  4008. {
  4009. "name": "Ben Ramsey",
  4010. "email": "ben@benramsey.com",
  4011. "homepage": "https://benramsey.com"
  4012. }
  4013. ],
  4014. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4015. "keywords": [
  4016. "array",
  4017. "collection",
  4018. "hash",
  4019. "map",
  4020. "queue",
  4021. "set"
  4022. ],
  4023. "support": {
  4024. "issues": "https://github.com/ramsey/collection/issues",
  4025. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  4026. },
  4027. "funding": [
  4028. {
  4029. "url": "https://github.com/ramsey",
  4030. "type": "github"
  4031. }
  4032. ],
  4033. "time": "2020-09-10T20:58:17+00:00"
  4034. },
  4035. {
  4036. "name": "ramsey/uuid",
  4037. "version": "4.1.1",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://github.com/ramsey/uuid.git",
  4041. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4046. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4047. "shasum": ""
  4048. },
  4049. "require": {
  4050. "brick/math": "^0.8 || ^0.9",
  4051. "ext-json": "*",
  4052. "php": "^7.2 || ^8",
  4053. "ramsey/collection": "^1.0",
  4054. "symfony/polyfill-ctype": "^1.8"
  4055. },
  4056. "replace": {
  4057. "rhumsaa/uuid": "self.version"
  4058. },
  4059. "require-dev": {
  4060. "codeception/aspect-mock": "^3",
  4061. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4062. "doctrine/annotations": "^1.8",
  4063. "goaop/framework": "^2",
  4064. "mockery/mockery": "^1.3",
  4065. "moontoast/math": "^1.1",
  4066. "paragonie/random-lib": "^2",
  4067. "php-mock/php-mock-mockery": "^1.3",
  4068. "php-mock/php-mock-phpunit": "^2.5",
  4069. "php-parallel-lint/php-parallel-lint": "^1.1",
  4070. "phpbench/phpbench": "^0.17.1",
  4071. "phpstan/extension-installer": "^1.0",
  4072. "phpstan/phpstan": "^0.12",
  4073. "phpstan/phpstan-mockery": "^0.12",
  4074. "phpstan/phpstan-phpunit": "^0.12",
  4075. "phpunit/phpunit": "^8.5",
  4076. "psy/psysh": "^0.10.0",
  4077. "slevomat/coding-standard": "^6.0",
  4078. "squizlabs/php_codesniffer": "^3.5",
  4079. "vimeo/psalm": "3.9.4"
  4080. },
  4081. "suggest": {
  4082. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4083. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4084. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4085. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4086. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4087. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4088. },
  4089. "type": "library",
  4090. "extra": {
  4091. "branch-alias": {
  4092. "dev-master": "4.x-dev"
  4093. }
  4094. },
  4095. "autoload": {
  4096. "psr-4": {
  4097. "Ramsey\\Uuid\\": "src/"
  4098. },
  4099. "files": [
  4100. "src/functions.php"
  4101. ]
  4102. },
  4103. "notification-url": "https://packagist.org/downloads/",
  4104. "license": [
  4105. "MIT"
  4106. ],
  4107. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4108. "homepage": "https://github.com/ramsey/uuid",
  4109. "keywords": [
  4110. "guid",
  4111. "identifier",
  4112. "uuid"
  4113. ],
  4114. "support": {
  4115. "issues": "https://github.com/ramsey/uuid/issues",
  4116. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4117. "source": "https://github.com/ramsey/uuid"
  4118. },
  4119. "funding": [
  4120. {
  4121. "url": "https://github.com/ramsey",
  4122. "type": "github"
  4123. }
  4124. ],
  4125. "time": "2020-08-18T17:17:46+00:00"
  4126. },
  4127. {
  4128. "name": "rap2hpoutre/laravel-log-viewer",
  4129. "version": "v1.7.0",
  4130. "source": {
  4131. "type": "git",
  4132. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4133. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  4134. },
  4135. "dist": {
  4136. "type": "zip",
  4137. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  4138. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  4139. "shasum": ""
  4140. },
  4141. "require": {
  4142. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  4143. "php": ">=5.4.0"
  4144. },
  4145. "require-dev": {
  4146. "orchestra/testbench": "3.7.*",
  4147. "phpunit/phpunit": "^7"
  4148. },
  4149. "type": "laravel-package",
  4150. "extra": {
  4151. "laravel": {
  4152. "providers": [
  4153. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4154. ]
  4155. }
  4156. },
  4157. "autoload": {
  4158. "classmap": [
  4159. "src/controllers"
  4160. ],
  4161. "psr-0": {
  4162. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4163. }
  4164. },
  4165. "notification-url": "https://packagist.org/downloads/",
  4166. "license": [
  4167. "MIT"
  4168. ],
  4169. "authors": [
  4170. {
  4171. "name": "rap2hpoutre",
  4172. "email": "raphaelht@gmail.com"
  4173. }
  4174. ],
  4175. "description": "A Laravel log reader",
  4176. "keywords": [
  4177. "laravel",
  4178. "log",
  4179. "log-reader",
  4180. "log-viewer",
  4181. "logging",
  4182. "lumen"
  4183. ],
  4184. "support": {
  4185. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  4186. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  4187. },
  4188. "time": "2020-09-08T12:21:27+00:00"
  4189. },
  4190. {
  4191. "name": "riverslei/payment",
  4192. "version": "v5.1.0",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://github.com/helei112g/payment.git",
  4196. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4201. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4202. "shasum": ""
  4203. },
  4204. "require": {
  4205. "ext-bcmath": "*",
  4206. "ext-json": "*",
  4207. "ext-mbstring": "*",
  4208. "ext-openssl": "*",
  4209. "ext-simplexml": "*",
  4210. "ext-xml": "*",
  4211. "guzzlehttp/guzzle": "~6.0",
  4212. "php": ">=7.0"
  4213. },
  4214. "require-dev": {
  4215. "codeception/codeception": "*"
  4216. },
  4217. "type": "library",
  4218. "autoload": {
  4219. "psr-4": {
  4220. "Payment\\": "src/"
  4221. }
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Leo",
  4230. "email": "dayugog@gmail.com",
  4231. "homepage": "https://dayutalk.cn"
  4232. }
  4233. ],
  4234. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4235. "homepage": "http://helei112g.github.io/payment",
  4236. "keywords": [
  4237. "alipay",
  4238. "weixin",
  4239. "一网通",
  4240. "微信支付",
  4241. "招商一网通",
  4242. "支付宝支付",
  4243. "集成支付接口SDK"
  4244. ],
  4245. "support": {
  4246. "issues": "https://github.com/helei112g/payment/issues",
  4247. "source": "https://github.com/helei112g/payment/tree/v5.x"
  4248. },
  4249. "time": "2020-05-04T03:07:17+00:00"
  4250. },
  4251. {
  4252. "name": "spatie/laravel-permission",
  4253. "version": "3.18.0",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/spatie/laravel-permission.git",
  4257. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/1c51a5fa12131565fe3860705163e53d7a26258a",
  4262. "reference": "1c51a5fa12131565fe3860705163e53d7a26258a",
  4263. "shasum": ""
  4264. },
  4265. "require": {
  4266. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  4267. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  4268. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  4269. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  4270. "php": "^7.2.5|^8.0"
  4271. },
  4272. "require-dev": {
  4273. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  4274. "phpunit/phpunit": "^8.0|^9.0",
  4275. "predis/predis": "^1.1"
  4276. },
  4277. "type": "library",
  4278. "extra": {
  4279. "laravel": {
  4280. "providers": [
  4281. "Spatie\\Permission\\PermissionServiceProvider"
  4282. ]
  4283. }
  4284. },
  4285. "autoload": {
  4286. "psr-4": {
  4287. "Spatie\\Permission\\": "src"
  4288. },
  4289. "files": [
  4290. "src/helpers.php"
  4291. ]
  4292. },
  4293. "notification-url": "https://packagist.org/downloads/",
  4294. "license": [
  4295. "MIT"
  4296. ],
  4297. "authors": [
  4298. {
  4299. "name": "Freek Van der Herten",
  4300. "email": "freek@spatie.be",
  4301. "homepage": "https://spatie.be",
  4302. "role": "Developer"
  4303. }
  4304. ],
  4305. "description": "Permission handling for Laravel 5.8 and up",
  4306. "homepage": "https://github.com/spatie/laravel-permission",
  4307. "keywords": [
  4308. "acl",
  4309. "laravel",
  4310. "permission",
  4311. "permissions",
  4312. "rbac",
  4313. "roles",
  4314. "security",
  4315. "spatie"
  4316. ],
  4317. "support": {
  4318. "issues": "https://github.com/spatie/laravel-permission/issues",
  4319. "source": "https://github.com/spatie/laravel-permission/tree/3.18.0"
  4320. },
  4321. "funding": [
  4322. {
  4323. "url": "https://github.com/spatie",
  4324. "type": "github"
  4325. }
  4326. ],
  4327. "time": "2020-11-09T14:08:36+00:00"
  4328. },
  4329. {
  4330. "name": "srmklive/paypal",
  4331. "version": "1.8.0",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/srmklive/laravel-paypal.git",
  4335. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  4340. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "guzzlehttp/guzzle": "~6.0|~7.0",
  4345. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  4346. "nesbot/carbon": "~1.0|~2.0"
  4347. },
  4348. "type": "library",
  4349. "extra": {
  4350. "laravel": {
  4351. "providers": [
  4352. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4353. ],
  4354. "aliases": {
  4355. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4356. }
  4357. }
  4358. },
  4359. "autoload": {
  4360. "psr-4": {
  4361. "Srmklive\\PayPal\\": "src/"
  4362. }
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "MIT"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "Raza Mehdi",
  4371. "email": "srmk@outlook.com"
  4372. }
  4373. ],
  4374. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4375. "keywords": [
  4376. "http",
  4377. "laravel paypal",
  4378. "paypal",
  4379. "rest",
  4380. "web service"
  4381. ],
  4382. "support": {
  4383. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4384. "source": "https://github.com/srmklive/laravel-paypal/tree/v1.0"
  4385. },
  4386. "time": "2020-09-03T07:50:08+00:00"
  4387. },
  4388. {
  4389. "name": "stripe/stripe-php",
  4390. "version": "v7.67.0",
  4391. "source": {
  4392. "type": "git",
  4393. "url": "https://github.com/stripe/stripe-php.git",
  4394. "reference": "935d2c67912007f6d17b6c08a62050252c509129"
  4395. },
  4396. "dist": {
  4397. "type": "zip",
  4398. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/935d2c67912007f6d17b6c08a62050252c509129",
  4399. "reference": "935d2c67912007f6d17b6c08a62050252c509129",
  4400. "shasum": ""
  4401. },
  4402. "require": {
  4403. "ext-curl": "*",
  4404. "ext-json": "*",
  4405. "ext-mbstring": "*",
  4406. "php": ">=5.6.0"
  4407. },
  4408. "require-dev": {
  4409. "friendsofphp/php-cs-fixer": "2.17.1",
  4410. "php-coveralls/php-coveralls": "^2.1",
  4411. "phpunit/phpunit": "^5.7",
  4412. "squizlabs/php_codesniffer": "^3.3",
  4413. "symfony/process": "~3.4"
  4414. },
  4415. "type": "library",
  4416. "extra": {
  4417. "branch-alias": {
  4418. "dev-master": "2.0-dev"
  4419. }
  4420. },
  4421. "autoload": {
  4422. "psr-4": {
  4423. "Stripe\\": "lib/"
  4424. }
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "MIT"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "Stripe and contributors",
  4433. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4434. }
  4435. ],
  4436. "description": "Stripe PHP Library",
  4437. "homepage": "https://stripe.com/",
  4438. "keywords": [
  4439. "api",
  4440. "payment processing",
  4441. "stripe"
  4442. ],
  4443. "support": {
  4444. "issues": "https://github.com/stripe/stripe-php/issues",
  4445. "source": "https://github.com/stripe/stripe-php/tree/v7.67.0"
  4446. },
  4447. "time": "2020-12-09T19:00:34+00:00"
  4448. },
  4449. {
  4450. "name": "swiftmailer/swiftmailer",
  4451. "version": "v6.2.4",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4455. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4460. "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "egulias/email-validator": "^2.0",
  4465. "php": ">=7.0.0",
  4466. "symfony/polyfill-iconv": "^1.0",
  4467. "symfony/polyfill-intl-idn": "^1.10",
  4468. "symfony/polyfill-mbstring": "^1.0"
  4469. },
  4470. "require-dev": {
  4471. "mockery/mockery": "^1.0",
  4472. "symfony/phpunit-bridge": "^4.4|^5.0"
  4473. },
  4474. "suggest": {
  4475. "ext-intl": "Needed to support internationalized email addresses"
  4476. },
  4477. "type": "library",
  4478. "extra": {
  4479. "branch-alias": {
  4480. "dev-master": "6.2-dev"
  4481. }
  4482. },
  4483. "autoload": {
  4484. "files": [
  4485. "lib/swift_required.php"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Chris Corbyn"
  4495. },
  4496. {
  4497. "name": "Fabien Potencier",
  4498. "email": "fabien@symfony.com"
  4499. }
  4500. ],
  4501. "description": "Swiftmailer, free feature-rich PHP mailer",
  4502. "homepage": "https://swiftmailer.symfony.com",
  4503. "keywords": [
  4504. "email",
  4505. "mail",
  4506. "mailer"
  4507. ],
  4508. "support": {
  4509. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4510. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4"
  4511. },
  4512. "funding": [
  4513. {
  4514. "url": "https://github.com/fabpot",
  4515. "type": "github"
  4516. },
  4517. {
  4518. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4519. "type": "tidelift"
  4520. }
  4521. ],
  4522. "time": "2020-12-08T18:02:06+00:00"
  4523. },
  4524. {
  4525. "name": "symfony/console",
  4526. "version": "v5.2.1",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/symfony/console.git",
  4530. "reference": "47c02526c532fb381374dab26df05e7313978976"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/symfony/console/zipball/47c02526c532fb381374dab26df05e7313978976",
  4535. "reference": "47c02526c532fb381374dab26df05e7313978976",
  4536. "shasum": ""
  4537. },
  4538. "require": {
  4539. "php": ">=7.2.5",
  4540. "symfony/polyfill-mbstring": "~1.0",
  4541. "symfony/polyfill-php73": "^1.8",
  4542. "symfony/polyfill-php80": "^1.15",
  4543. "symfony/service-contracts": "^1.1|^2",
  4544. "symfony/string": "^5.1"
  4545. },
  4546. "conflict": {
  4547. "symfony/dependency-injection": "<4.4",
  4548. "symfony/dotenv": "<5.1",
  4549. "symfony/event-dispatcher": "<4.4",
  4550. "symfony/lock": "<4.4",
  4551. "symfony/process": "<4.4"
  4552. },
  4553. "provide": {
  4554. "psr/log-implementation": "1.0"
  4555. },
  4556. "require-dev": {
  4557. "psr/log": "~1.0",
  4558. "symfony/config": "^4.4|^5.0",
  4559. "symfony/dependency-injection": "^4.4|^5.0",
  4560. "symfony/event-dispatcher": "^4.4|^5.0",
  4561. "symfony/lock": "^4.4|^5.0",
  4562. "symfony/process": "^4.4|^5.0",
  4563. "symfony/var-dumper": "^4.4|^5.0"
  4564. },
  4565. "suggest": {
  4566. "psr/log": "For using the console logger",
  4567. "symfony/event-dispatcher": "",
  4568. "symfony/lock": "",
  4569. "symfony/process": ""
  4570. },
  4571. "type": "library",
  4572. "autoload": {
  4573. "psr-4": {
  4574. "Symfony\\Component\\Console\\": ""
  4575. },
  4576. "exclude-from-classmap": [
  4577. "/Tests/"
  4578. ]
  4579. },
  4580. "notification-url": "https://packagist.org/downloads/",
  4581. "license": [
  4582. "MIT"
  4583. ],
  4584. "authors": [
  4585. {
  4586. "name": "Fabien Potencier",
  4587. "email": "fabien@symfony.com"
  4588. },
  4589. {
  4590. "name": "Symfony Community",
  4591. "homepage": "https://symfony.com/contributors"
  4592. }
  4593. ],
  4594. "description": "Symfony Console Component",
  4595. "homepage": "https://symfony.com",
  4596. "keywords": [
  4597. "cli",
  4598. "command line",
  4599. "console",
  4600. "terminal"
  4601. ],
  4602. "support": {
  4603. "source": "https://github.com/symfony/console/tree/v5.2.1"
  4604. },
  4605. "funding": [
  4606. {
  4607. "url": "https://symfony.com/sponsor",
  4608. "type": "custom"
  4609. },
  4610. {
  4611. "url": "https://github.com/fabpot",
  4612. "type": "github"
  4613. },
  4614. {
  4615. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4616. "type": "tidelift"
  4617. }
  4618. ],
  4619. "time": "2020-12-18T08:03:05+00:00"
  4620. },
  4621. {
  4622. "name": "symfony/css-selector",
  4623. "version": "v5.2.1",
  4624. "source": {
  4625. "type": "git",
  4626. "url": "https://github.com/symfony/css-selector.git",
  4627. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054"
  4628. },
  4629. "dist": {
  4630. "type": "zip",
  4631. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4632. "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054",
  4633. "shasum": ""
  4634. },
  4635. "require": {
  4636. "php": ">=7.2.5"
  4637. },
  4638. "type": "library",
  4639. "autoload": {
  4640. "psr-4": {
  4641. "Symfony\\Component\\CssSelector\\": ""
  4642. },
  4643. "exclude-from-classmap": [
  4644. "/Tests/"
  4645. ]
  4646. },
  4647. "notification-url": "https://packagist.org/downloads/",
  4648. "license": [
  4649. "MIT"
  4650. ],
  4651. "authors": [
  4652. {
  4653. "name": "Fabien Potencier",
  4654. "email": "fabien@symfony.com"
  4655. },
  4656. {
  4657. "name": "Jean-François Simon",
  4658. "email": "jeanfrancois.simon@sensiolabs.com"
  4659. },
  4660. {
  4661. "name": "Symfony Community",
  4662. "homepage": "https://symfony.com/contributors"
  4663. }
  4664. ],
  4665. "description": "Symfony CssSelector Component",
  4666. "homepage": "https://symfony.com",
  4667. "support": {
  4668. "source": "https://github.com/symfony/css-selector/tree/v5.2.1"
  4669. },
  4670. "funding": [
  4671. {
  4672. "url": "https://symfony.com/sponsor",
  4673. "type": "custom"
  4674. },
  4675. {
  4676. "url": "https://github.com/fabpot",
  4677. "type": "github"
  4678. },
  4679. {
  4680. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4681. "type": "tidelift"
  4682. }
  4683. ],
  4684. "time": "2020-12-08T17:02:38+00:00"
  4685. },
  4686. {
  4687. "name": "symfony/deprecation-contracts",
  4688. "version": "v2.2.0",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://github.com/symfony/deprecation-contracts.git",
  4692. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4697. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4698. "shasum": ""
  4699. },
  4700. "require": {
  4701. "php": ">=7.1"
  4702. },
  4703. "type": "library",
  4704. "extra": {
  4705. "branch-alias": {
  4706. "dev-master": "2.2-dev"
  4707. },
  4708. "thanks": {
  4709. "name": "symfony/contracts",
  4710. "url": "https://github.com/symfony/contracts"
  4711. }
  4712. },
  4713. "autoload": {
  4714. "files": [
  4715. "function.php"
  4716. ]
  4717. },
  4718. "notification-url": "https://packagist.org/downloads/",
  4719. "license": [
  4720. "MIT"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "Nicolas Grekas",
  4725. "email": "p@tchwork.com"
  4726. },
  4727. {
  4728. "name": "Symfony Community",
  4729. "homepage": "https://symfony.com/contributors"
  4730. }
  4731. ],
  4732. "description": "A generic function and convention to trigger deprecation notices",
  4733. "homepage": "https://symfony.com",
  4734. "support": {
  4735. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4736. },
  4737. "funding": [
  4738. {
  4739. "url": "https://symfony.com/sponsor",
  4740. "type": "custom"
  4741. },
  4742. {
  4743. "url": "https://github.com/fabpot",
  4744. "type": "github"
  4745. },
  4746. {
  4747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4748. "type": "tidelift"
  4749. }
  4750. ],
  4751. "time": "2020-09-07T11:33:47+00:00"
  4752. },
  4753. {
  4754. "name": "symfony/error-handler",
  4755. "version": "v5.2.1",
  4756. "source": {
  4757. "type": "git",
  4758. "url": "https://github.com/symfony/error-handler.git",
  4759. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147"
  4760. },
  4761. "dist": {
  4762. "type": "zip",
  4763. "url": "https://api.github.com/repos/symfony/error-handler/zipball/59b190ce16ddf32771a22087b60f6dafd3407147",
  4764. "reference": "59b190ce16ddf32771a22087b60f6dafd3407147",
  4765. "shasum": ""
  4766. },
  4767. "require": {
  4768. "php": ">=7.2.5",
  4769. "psr/log": "^1.0",
  4770. "symfony/polyfill-php80": "^1.15",
  4771. "symfony/var-dumper": "^4.4|^5.0"
  4772. },
  4773. "require-dev": {
  4774. "symfony/deprecation-contracts": "^2.1",
  4775. "symfony/http-kernel": "^4.4|^5.0",
  4776. "symfony/serializer": "^4.4|^5.0"
  4777. },
  4778. "type": "library",
  4779. "autoload": {
  4780. "psr-4": {
  4781. "Symfony\\Component\\ErrorHandler\\": ""
  4782. },
  4783. "exclude-from-classmap": [
  4784. "/Tests/"
  4785. ]
  4786. },
  4787. "notification-url": "https://packagist.org/downloads/",
  4788. "license": [
  4789. "MIT"
  4790. ],
  4791. "authors": [
  4792. {
  4793. "name": "Fabien Potencier",
  4794. "email": "fabien@symfony.com"
  4795. },
  4796. {
  4797. "name": "Symfony Community",
  4798. "homepage": "https://symfony.com/contributors"
  4799. }
  4800. ],
  4801. "description": "Symfony ErrorHandler Component",
  4802. "homepage": "https://symfony.com",
  4803. "support": {
  4804. "source": "https://github.com/symfony/error-handler/tree/v5.2.1"
  4805. },
  4806. "funding": [
  4807. {
  4808. "url": "https://symfony.com/sponsor",
  4809. "type": "custom"
  4810. },
  4811. {
  4812. "url": "https://github.com/fabpot",
  4813. "type": "github"
  4814. },
  4815. {
  4816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4817. "type": "tidelift"
  4818. }
  4819. ],
  4820. "time": "2020-12-09T18:54:12+00:00"
  4821. },
  4822. {
  4823. "name": "symfony/event-dispatcher",
  4824. "version": "v5.2.1",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://github.com/symfony/event-dispatcher.git",
  4828. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1c93f7a1dff592c252574c79a8635a8a80856042",
  4833. "reference": "1c93f7a1dff592c252574c79a8635a8a80856042",
  4834. "shasum": ""
  4835. },
  4836. "require": {
  4837. "php": ">=7.2.5",
  4838. "symfony/deprecation-contracts": "^2.1",
  4839. "symfony/event-dispatcher-contracts": "^2",
  4840. "symfony/polyfill-php80": "^1.15"
  4841. },
  4842. "conflict": {
  4843. "symfony/dependency-injection": "<4.4"
  4844. },
  4845. "provide": {
  4846. "psr/event-dispatcher-implementation": "1.0",
  4847. "symfony/event-dispatcher-implementation": "2.0"
  4848. },
  4849. "require-dev": {
  4850. "psr/log": "~1.0",
  4851. "symfony/config": "^4.4|^5.0",
  4852. "symfony/dependency-injection": "^4.4|^5.0",
  4853. "symfony/error-handler": "^4.4|^5.0",
  4854. "symfony/expression-language": "^4.4|^5.0",
  4855. "symfony/http-foundation": "^4.4|^5.0",
  4856. "symfony/service-contracts": "^1.1|^2",
  4857. "symfony/stopwatch": "^4.4|^5.0"
  4858. },
  4859. "suggest": {
  4860. "symfony/dependency-injection": "",
  4861. "symfony/http-kernel": ""
  4862. },
  4863. "type": "library",
  4864. "autoload": {
  4865. "psr-4": {
  4866. "Symfony\\Component\\EventDispatcher\\": ""
  4867. },
  4868. "exclude-from-classmap": [
  4869. "/Tests/"
  4870. ]
  4871. },
  4872. "notification-url": "https://packagist.org/downloads/",
  4873. "license": [
  4874. "MIT"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "Fabien Potencier",
  4879. "email": "fabien@symfony.com"
  4880. },
  4881. {
  4882. "name": "Symfony Community",
  4883. "homepage": "https://symfony.com/contributors"
  4884. }
  4885. ],
  4886. "description": "Symfony EventDispatcher Component",
  4887. "homepage": "https://symfony.com",
  4888. "support": {
  4889. "source": "https://github.com/symfony/event-dispatcher/tree/v5.2.1"
  4890. },
  4891. "funding": [
  4892. {
  4893. "url": "https://symfony.com/sponsor",
  4894. "type": "custom"
  4895. },
  4896. {
  4897. "url": "https://github.com/fabpot",
  4898. "type": "github"
  4899. },
  4900. {
  4901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4902. "type": "tidelift"
  4903. }
  4904. ],
  4905. "time": "2020-12-18T08:03:05+00:00"
  4906. },
  4907. {
  4908. "name": "symfony/event-dispatcher-contracts",
  4909. "version": "v2.2.0",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4913. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4918. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4919. "shasum": ""
  4920. },
  4921. "require": {
  4922. "php": ">=7.2.5",
  4923. "psr/event-dispatcher": "^1"
  4924. },
  4925. "suggest": {
  4926. "symfony/event-dispatcher-implementation": ""
  4927. },
  4928. "type": "library",
  4929. "extra": {
  4930. "branch-alias": {
  4931. "dev-master": "2.2-dev"
  4932. },
  4933. "thanks": {
  4934. "name": "symfony/contracts",
  4935. "url": "https://github.com/symfony/contracts"
  4936. }
  4937. },
  4938. "autoload": {
  4939. "psr-4": {
  4940. "Symfony\\Contracts\\EventDispatcher\\": ""
  4941. }
  4942. },
  4943. "notification-url": "https://packagist.org/downloads/",
  4944. "license": [
  4945. "MIT"
  4946. ],
  4947. "authors": [
  4948. {
  4949. "name": "Nicolas Grekas",
  4950. "email": "p@tchwork.com"
  4951. },
  4952. {
  4953. "name": "Symfony Community",
  4954. "homepage": "https://symfony.com/contributors"
  4955. }
  4956. ],
  4957. "description": "Generic abstractions related to dispatching event",
  4958. "homepage": "https://symfony.com",
  4959. "keywords": [
  4960. "abstractions",
  4961. "contracts",
  4962. "decoupling",
  4963. "interfaces",
  4964. "interoperability",
  4965. "standards"
  4966. ],
  4967. "support": {
  4968. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4969. },
  4970. "funding": [
  4971. {
  4972. "url": "https://symfony.com/sponsor",
  4973. "type": "custom"
  4974. },
  4975. {
  4976. "url": "https://github.com/fabpot",
  4977. "type": "github"
  4978. },
  4979. {
  4980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4981. "type": "tidelift"
  4982. }
  4983. ],
  4984. "time": "2020-09-07T11:33:47+00:00"
  4985. },
  4986. {
  4987. "name": "symfony/finder",
  4988. "version": "v5.2.1",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/symfony/finder.git",
  4992. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/symfony/finder/zipball/0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  4997. "reference": "0b9231a5922fd7287ba5b411893c0ecd2733e5ba",
  4998. "shasum": ""
  4999. },
  5000. "require": {
  5001. "php": ">=7.2.5"
  5002. },
  5003. "type": "library",
  5004. "autoload": {
  5005. "psr-4": {
  5006. "Symfony\\Component\\Finder\\": ""
  5007. },
  5008. "exclude-from-classmap": [
  5009. "/Tests/"
  5010. ]
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Fabien Potencier",
  5019. "email": "fabien@symfony.com"
  5020. },
  5021. {
  5022. "name": "Symfony Community",
  5023. "homepage": "https://symfony.com/contributors"
  5024. }
  5025. ],
  5026. "description": "Symfony Finder Component",
  5027. "homepage": "https://symfony.com",
  5028. "support": {
  5029. "source": "https://github.com/symfony/finder/tree/v5.2.1"
  5030. },
  5031. "funding": [
  5032. {
  5033. "url": "https://symfony.com/sponsor",
  5034. "type": "custom"
  5035. },
  5036. {
  5037. "url": "https://github.com/fabpot",
  5038. "type": "github"
  5039. },
  5040. {
  5041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5042. "type": "tidelift"
  5043. }
  5044. ],
  5045. "time": "2020-12-08T17:02:38+00:00"
  5046. },
  5047. {
  5048. "name": "symfony/http-client-contracts",
  5049. "version": "v2.3.1",
  5050. "source": {
  5051. "type": "git",
  5052. "url": "https://github.com/symfony/http-client-contracts.git",
  5053. "reference": "41db680a15018f9c1d4b23516059633ce280ca33"
  5054. },
  5055. "dist": {
  5056. "type": "zip",
  5057. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33",
  5058. "reference": "41db680a15018f9c1d4b23516059633ce280ca33",
  5059. "shasum": ""
  5060. },
  5061. "require": {
  5062. "php": ">=7.2.5"
  5063. },
  5064. "suggest": {
  5065. "symfony/http-client-implementation": ""
  5066. },
  5067. "type": "library",
  5068. "extra": {
  5069. "branch-version": "2.3",
  5070. "branch-alias": {
  5071. "dev-main": "2.3-dev"
  5072. },
  5073. "thanks": {
  5074. "name": "symfony/contracts",
  5075. "url": "https://github.com/symfony/contracts"
  5076. }
  5077. },
  5078. "autoload": {
  5079. "psr-4": {
  5080. "Symfony\\Contracts\\HttpClient\\": ""
  5081. }
  5082. },
  5083. "notification-url": "https://packagist.org/downloads/",
  5084. "license": [
  5085. "MIT"
  5086. ],
  5087. "authors": [
  5088. {
  5089. "name": "Nicolas Grekas",
  5090. "email": "p@tchwork.com"
  5091. },
  5092. {
  5093. "name": "Symfony Community",
  5094. "homepage": "https://symfony.com/contributors"
  5095. }
  5096. ],
  5097. "description": "Generic abstractions related to HTTP clients",
  5098. "homepage": "https://symfony.com",
  5099. "keywords": [
  5100. "abstractions",
  5101. "contracts",
  5102. "decoupling",
  5103. "interfaces",
  5104. "interoperability",
  5105. "standards"
  5106. ],
  5107. "support": {
  5108. "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1"
  5109. },
  5110. "funding": [
  5111. {
  5112. "url": "https://symfony.com/sponsor",
  5113. "type": "custom"
  5114. },
  5115. {
  5116. "url": "https://github.com/fabpot",
  5117. "type": "github"
  5118. },
  5119. {
  5120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5121. "type": "tidelift"
  5122. }
  5123. ],
  5124. "time": "2020-10-14T17:08:19+00:00"
  5125. },
  5126. {
  5127. "name": "symfony/http-foundation",
  5128. "version": "v5.2.1",
  5129. "source": {
  5130. "type": "git",
  5131. "url": "https://github.com/symfony/http-foundation.git",
  5132. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d"
  5133. },
  5134. "dist": {
  5135. "type": "zip",
  5136. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a1f6218b29897ab52acba58cfa905b83625bef8d",
  5137. "reference": "a1f6218b29897ab52acba58cfa905b83625bef8d",
  5138. "shasum": ""
  5139. },
  5140. "require": {
  5141. "php": ">=7.2.5",
  5142. "symfony/deprecation-contracts": "^2.1",
  5143. "symfony/polyfill-mbstring": "~1.1",
  5144. "symfony/polyfill-php80": "^1.15"
  5145. },
  5146. "require-dev": {
  5147. "predis/predis": "~1.0",
  5148. "symfony/cache": "^4.4|^5.0",
  5149. "symfony/expression-language": "^4.4|^5.0",
  5150. "symfony/mime": "^4.4|^5.0"
  5151. },
  5152. "suggest": {
  5153. "symfony/mime": "To use the file extension guesser"
  5154. },
  5155. "type": "library",
  5156. "autoload": {
  5157. "psr-4": {
  5158. "Symfony\\Component\\HttpFoundation\\": ""
  5159. },
  5160. "exclude-from-classmap": [
  5161. "/Tests/"
  5162. ]
  5163. },
  5164. "notification-url": "https://packagist.org/downloads/",
  5165. "license": [
  5166. "MIT"
  5167. ],
  5168. "authors": [
  5169. {
  5170. "name": "Fabien Potencier",
  5171. "email": "fabien@symfony.com"
  5172. },
  5173. {
  5174. "name": "Symfony Community",
  5175. "homepage": "https://symfony.com/contributors"
  5176. }
  5177. ],
  5178. "description": "Symfony HttpFoundation Component",
  5179. "homepage": "https://symfony.com",
  5180. "support": {
  5181. "source": "https://github.com/symfony/http-foundation/tree/v5.2.1"
  5182. },
  5183. "funding": [
  5184. {
  5185. "url": "https://symfony.com/sponsor",
  5186. "type": "custom"
  5187. },
  5188. {
  5189. "url": "https://github.com/fabpot",
  5190. "type": "github"
  5191. },
  5192. {
  5193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5194. "type": "tidelift"
  5195. }
  5196. ],
  5197. "time": "2020-12-18T10:00:10+00:00"
  5198. },
  5199. {
  5200. "name": "symfony/http-kernel",
  5201. "version": "v5.2.1",
  5202. "source": {
  5203. "type": "git",
  5204. "url": "https://github.com/symfony/http-kernel.git",
  5205. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647"
  5206. },
  5207. "dist": {
  5208. "type": "zip",
  5209. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1feb619286d819180f7b8bc0dc44f516d9c62647",
  5210. "reference": "1feb619286d819180f7b8bc0dc44f516d9c62647",
  5211. "shasum": ""
  5212. },
  5213. "require": {
  5214. "php": ">=7.2.5",
  5215. "psr/log": "~1.0",
  5216. "symfony/deprecation-contracts": "^2.1",
  5217. "symfony/error-handler": "^4.4|^5.0",
  5218. "symfony/event-dispatcher": "^5.0",
  5219. "symfony/http-client-contracts": "^1.1|^2",
  5220. "symfony/http-foundation": "^4.4|^5.0",
  5221. "symfony/polyfill-ctype": "^1.8",
  5222. "symfony/polyfill-php73": "^1.9",
  5223. "symfony/polyfill-php80": "^1.15"
  5224. },
  5225. "conflict": {
  5226. "symfony/browser-kit": "<4.4",
  5227. "symfony/cache": "<5.0",
  5228. "symfony/config": "<5.0",
  5229. "symfony/console": "<4.4",
  5230. "symfony/dependency-injection": "<5.1.8",
  5231. "symfony/doctrine-bridge": "<5.0",
  5232. "symfony/form": "<5.0",
  5233. "symfony/http-client": "<5.0",
  5234. "symfony/mailer": "<5.0",
  5235. "symfony/messenger": "<5.0",
  5236. "symfony/translation": "<5.0",
  5237. "symfony/twig-bridge": "<5.0",
  5238. "symfony/validator": "<5.0",
  5239. "twig/twig": "<2.4"
  5240. },
  5241. "provide": {
  5242. "psr/log-implementation": "1.0"
  5243. },
  5244. "require-dev": {
  5245. "psr/cache": "~1.0",
  5246. "symfony/browser-kit": "^4.4|^5.0",
  5247. "symfony/config": "^5.0",
  5248. "symfony/console": "^4.4|^5.0",
  5249. "symfony/css-selector": "^4.4|^5.0",
  5250. "symfony/dependency-injection": "^5.1.8",
  5251. "symfony/dom-crawler": "^4.4|^5.0",
  5252. "symfony/expression-language": "^4.4|^5.0",
  5253. "symfony/finder": "^4.4|^5.0",
  5254. "symfony/process": "^4.4|^5.0",
  5255. "symfony/routing": "^4.4|^5.0",
  5256. "symfony/stopwatch": "^4.4|^5.0",
  5257. "symfony/translation": "^4.4|^5.0",
  5258. "symfony/translation-contracts": "^1.1|^2",
  5259. "twig/twig": "^2.4|^3.0"
  5260. },
  5261. "suggest": {
  5262. "symfony/browser-kit": "",
  5263. "symfony/config": "",
  5264. "symfony/console": "",
  5265. "symfony/dependency-injection": ""
  5266. },
  5267. "type": "library",
  5268. "autoload": {
  5269. "psr-4": {
  5270. "Symfony\\Component\\HttpKernel\\": ""
  5271. },
  5272. "exclude-from-classmap": [
  5273. "/Tests/"
  5274. ]
  5275. },
  5276. "notification-url": "https://packagist.org/downloads/",
  5277. "license": [
  5278. "MIT"
  5279. ],
  5280. "authors": [
  5281. {
  5282. "name": "Fabien Potencier",
  5283. "email": "fabien@symfony.com"
  5284. },
  5285. {
  5286. "name": "Symfony Community",
  5287. "homepage": "https://symfony.com/contributors"
  5288. }
  5289. ],
  5290. "description": "Symfony HttpKernel Component",
  5291. "homepage": "https://symfony.com",
  5292. "support": {
  5293. "source": "https://github.com/symfony/http-kernel/tree/v5.2.1"
  5294. },
  5295. "funding": [
  5296. {
  5297. "url": "https://symfony.com/sponsor",
  5298. "type": "custom"
  5299. },
  5300. {
  5301. "url": "https://github.com/fabpot",
  5302. "type": "github"
  5303. },
  5304. {
  5305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5306. "type": "tidelift"
  5307. }
  5308. ],
  5309. "time": "2020-12-18T13:49:39+00:00"
  5310. },
  5311. {
  5312. "name": "symfony/mime",
  5313. "version": "v5.2.1",
  5314. "source": {
  5315. "type": "git",
  5316. "url": "https://github.com/symfony/mime.git",
  5317. "reference": "de97005aef7426ba008c46ba840fc301df577ada"
  5318. },
  5319. "dist": {
  5320. "type": "zip",
  5321. "url": "https://api.github.com/repos/symfony/mime/zipball/de97005aef7426ba008c46ba840fc301df577ada",
  5322. "reference": "de97005aef7426ba008c46ba840fc301df577ada",
  5323. "shasum": ""
  5324. },
  5325. "require": {
  5326. "php": ">=7.2.5",
  5327. "symfony/deprecation-contracts": "^2.1",
  5328. "symfony/polyfill-intl-idn": "^1.10",
  5329. "symfony/polyfill-mbstring": "^1.0",
  5330. "symfony/polyfill-php80": "^1.15"
  5331. },
  5332. "conflict": {
  5333. "symfony/mailer": "<4.4"
  5334. },
  5335. "require-dev": {
  5336. "egulias/email-validator": "^2.1.10",
  5337. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5338. "symfony/dependency-injection": "^4.4|^5.0",
  5339. "symfony/property-access": "^4.4|^5.1",
  5340. "symfony/property-info": "^4.4|^5.1",
  5341. "symfony/serializer": "^5.2"
  5342. },
  5343. "type": "library",
  5344. "autoload": {
  5345. "psr-4": {
  5346. "Symfony\\Component\\Mime\\": ""
  5347. },
  5348. "exclude-from-classmap": [
  5349. "/Tests/"
  5350. ]
  5351. },
  5352. "notification-url": "https://packagist.org/downloads/",
  5353. "license": [
  5354. "MIT"
  5355. ],
  5356. "authors": [
  5357. {
  5358. "name": "Fabien Potencier",
  5359. "email": "fabien@symfony.com"
  5360. },
  5361. {
  5362. "name": "Symfony Community",
  5363. "homepage": "https://symfony.com/contributors"
  5364. }
  5365. ],
  5366. "description": "A library to manipulate MIME messages",
  5367. "homepage": "https://symfony.com",
  5368. "keywords": [
  5369. "mime",
  5370. "mime-type"
  5371. ],
  5372. "support": {
  5373. "source": "https://github.com/symfony/mime/tree/v5.2.1"
  5374. },
  5375. "funding": [
  5376. {
  5377. "url": "https://symfony.com/sponsor",
  5378. "type": "custom"
  5379. },
  5380. {
  5381. "url": "https://github.com/fabpot",
  5382. "type": "github"
  5383. },
  5384. {
  5385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5386. "type": "tidelift"
  5387. }
  5388. ],
  5389. "time": "2020-12-09T18:54:12+00:00"
  5390. },
  5391. {
  5392. "name": "symfony/polyfill-ctype",
  5393. "version": "v1.22.0",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://github.com/symfony/polyfill-ctype.git",
  5397. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  5402. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  5403. "shasum": ""
  5404. },
  5405. "require": {
  5406. "php": ">=7.1"
  5407. },
  5408. "suggest": {
  5409. "ext-ctype": "For best performance"
  5410. },
  5411. "type": "library",
  5412. "extra": {
  5413. "branch-alias": {
  5414. "dev-main": "1.22-dev"
  5415. },
  5416. "thanks": {
  5417. "name": "symfony/polyfill",
  5418. "url": "https://github.com/symfony/polyfill"
  5419. }
  5420. },
  5421. "autoload": {
  5422. "psr-4": {
  5423. "Symfony\\Polyfill\\Ctype\\": ""
  5424. },
  5425. "files": [
  5426. "bootstrap.php"
  5427. ]
  5428. },
  5429. "notification-url": "https://packagist.org/downloads/",
  5430. "license": [
  5431. "MIT"
  5432. ],
  5433. "authors": [
  5434. {
  5435. "name": "Gert de Pagter",
  5436. "email": "BackEndTea@gmail.com"
  5437. },
  5438. {
  5439. "name": "Symfony Community",
  5440. "homepage": "https://symfony.com/contributors"
  5441. }
  5442. ],
  5443. "description": "Symfony polyfill for ctype functions",
  5444. "homepage": "https://symfony.com",
  5445. "keywords": [
  5446. "compatibility",
  5447. "ctype",
  5448. "polyfill",
  5449. "portable"
  5450. ],
  5451. "support": {
  5452. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0"
  5453. },
  5454. "funding": [
  5455. {
  5456. "url": "https://symfony.com/sponsor",
  5457. "type": "custom"
  5458. },
  5459. {
  5460. "url": "https://github.com/fabpot",
  5461. "type": "github"
  5462. },
  5463. {
  5464. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5465. "type": "tidelift"
  5466. }
  5467. ],
  5468. "time": "2021-01-07T16:49:33+00:00"
  5469. },
  5470. {
  5471. "name": "symfony/polyfill-iconv",
  5472. "version": "v1.22.0",
  5473. "source": {
  5474. "type": "git",
  5475. "url": "https://github.com/symfony/polyfill-iconv.git",
  5476. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6"
  5477. },
  5478. "dist": {
  5479. "type": "zip",
  5480. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5481. "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6",
  5482. "shasum": ""
  5483. },
  5484. "require": {
  5485. "php": ">=7.1"
  5486. },
  5487. "suggest": {
  5488. "ext-iconv": "For best performance"
  5489. },
  5490. "type": "library",
  5491. "extra": {
  5492. "branch-alias": {
  5493. "dev-main": "1.22-dev"
  5494. },
  5495. "thanks": {
  5496. "name": "symfony/polyfill",
  5497. "url": "https://github.com/symfony/polyfill"
  5498. }
  5499. },
  5500. "autoload": {
  5501. "psr-4": {
  5502. "Symfony\\Polyfill\\Iconv\\": ""
  5503. },
  5504. "files": [
  5505. "bootstrap.php"
  5506. ]
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Nicolas Grekas",
  5515. "email": "p@tchwork.com"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Symfony polyfill for the Iconv extension",
  5523. "homepage": "https://symfony.com",
  5524. "keywords": [
  5525. "compatibility",
  5526. "iconv",
  5527. "polyfill",
  5528. "portable",
  5529. "shim"
  5530. ],
  5531. "support": {
  5532. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0"
  5533. },
  5534. "funding": [
  5535. {
  5536. "url": "https://symfony.com/sponsor",
  5537. "type": "custom"
  5538. },
  5539. {
  5540. "url": "https://github.com/fabpot",
  5541. "type": "github"
  5542. },
  5543. {
  5544. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5545. "type": "tidelift"
  5546. }
  5547. ],
  5548. "time": "2021-01-07T16:49:33+00:00"
  5549. },
  5550. {
  5551. "name": "symfony/polyfill-intl-grapheme",
  5552. "version": "v1.22.0",
  5553. "source": {
  5554. "type": "git",
  5555. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5556. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af"
  5557. },
  5558. "dist": {
  5559. "type": "zip",
  5560. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/267a9adeb8ecb8071040a740930e077cdfb987af",
  5561. "reference": "267a9adeb8ecb8071040a740930e077cdfb987af",
  5562. "shasum": ""
  5563. },
  5564. "require": {
  5565. "php": ">=7.1"
  5566. },
  5567. "suggest": {
  5568. "ext-intl": "For best performance"
  5569. },
  5570. "type": "library",
  5571. "extra": {
  5572. "branch-alias": {
  5573. "dev-main": "1.22-dev"
  5574. },
  5575. "thanks": {
  5576. "name": "symfony/polyfill",
  5577. "url": "https://github.com/symfony/polyfill"
  5578. }
  5579. },
  5580. "autoload": {
  5581. "psr-4": {
  5582. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5583. },
  5584. "files": [
  5585. "bootstrap.php"
  5586. ]
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Nicolas Grekas",
  5595. "email": "p@tchwork.com"
  5596. },
  5597. {
  5598. "name": "Symfony Community",
  5599. "homepage": "https://symfony.com/contributors"
  5600. }
  5601. ],
  5602. "description": "Symfony polyfill for intl's grapheme_* functions",
  5603. "homepage": "https://symfony.com",
  5604. "keywords": [
  5605. "compatibility",
  5606. "grapheme",
  5607. "intl",
  5608. "polyfill",
  5609. "portable",
  5610. "shim"
  5611. ],
  5612. "support": {
  5613. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.22.0"
  5614. },
  5615. "funding": [
  5616. {
  5617. "url": "https://symfony.com/sponsor",
  5618. "type": "custom"
  5619. },
  5620. {
  5621. "url": "https://github.com/fabpot",
  5622. "type": "github"
  5623. },
  5624. {
  5625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5626. "type": "tidelift"
  5627. }
  5628. ],
  5629. "time": "2021-01-07T16:49:33+00:00"
  5630. },
  5631. {
  5632. "name": "symfony/polyfill-intl-idn",
  5633. "version": "v1.22.0",
  5634. "source": {
  5635. "type": "git",
  5636. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5637. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44"
  5638. },
  5639. "dist": {
  5640. "type": "zip",
  5641. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5642. "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44",
  5643. "shasum": ""
  5644. },
  5645. "require": {
  5646. "php": ">=7.1",
  5647. "symfony/polyfill-intl-normalizer": "^1.10",
  5648. "symfony/polyfill-php72": "^1.10"
  5649. },
  5650. "suggest": {
  5651. "ext-intl": "For best performance"
  5652. },
  5653. "type": "library",
  5654. "extra": {
  5655. "branch-alias": {
  5656. "dev-main": "1.22-dev"
  5657. },
  5658. "thanks": {
  5659. "name": "symfony/polyfill",
  5660. "url": "https://github.com/symfony/polyfill"
  5661. }
  5662. },
  5663. "autoload": {
  5664. "psr-4": {
  5665. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5666. },
  5667. "files": [
  5668. "bootstrap.php"
  5669. ]
  5670. },
  5671. "notification-url": "https://packagist.org/downloads/",
  5672. "license": [
  5673. "MIT"
  5674. ],
  5675. "authors": [
  5676. {
  5677. "name": "Laurent Bassin",
  5678. "email": "laurent@bassin.info"
  5679. },
  5680. {
  5681. "name": "Trevor Rowbotham",
  5682. "email": "trevor.rowbotham@pm.me"
  5683. },
  5684. {
  5685. "name": "Symfony Community",
  5686. "homepage": "https://symfony.com/contributors"
  5687. }
  5688. ],
  5689. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5690. "homepage": "https://symfony.com",
  5691. "keywords": [
  5692. "compatibility",
  5693. "idn",
  5694. "intl",
  5695. "polyfill",
  5696. "portable",
  5697. "shim"
  5698. ],
  5699. "support": {
  5700. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://symfony.com/sponsor",
  5705. "type": "custom"
  5706. },
  5707. {
  5708. "url": "https://github.com/fabpot",
  5709. "type": "github"
  5710. },
  5711. {
  5712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5713. "type": "tidelift"
  5714. }
  5715. ],
  5716. "time": "2021-01-07T16:49:33+00:00"
  5717. },
  5718. {
  5719. "name": "symfony/polyfill-intl-normalizer",
  5720. "version": "v1.22.0",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5724. "reference": "6e971c891537eb617a00bb07a43d182a6915faba"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba",
  5729. "reference": "6e971c891537eb617a00bb07a43d182a6915faba",
  5730. "shasum": ""
  5731. },
  5732. "require": {
  5733. "php": ">=7.1"
  5734. },
  5735. "suggest": {
  5736. "ext-intl": "For best performance"
  5737. },
  5738. "type": "library",
  5739. "extra": {
  5740. "branch-alias": {
  5741. "dev-main": "1.22-dev"
  5742. },
  5743. "thanks": {
  5744. "name": "symfony/polyfill",
  5745. "url": "https://github.com/symfony/polyfill"
  5746. }
  5747. },
  5748. "autoload": {
  5749. "psr-4": {
  5750. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5751. },
  5752. "files": [
  5753. "bootstrap.php"
  5754. ],
  5755. "classmap": [
  5756. "Resources/stubs"
  5757. ]
  5758. },
  5759. "notification-url": "https://packagist.org/downloads/",
  5760. "license": [
  5761. "MIT"
  5762. ],
  5763. "authors": [
  5764. {
  5765. "name": "Nicolas Grekas",
  5766. "email": "p@tchwork.com"
  5767. },
  5768. {
  5769. "name": "Symfony Community",
  5770. "homepage": "https://symfony.com/contributors"
  5771. }
  5772. ],
  5773. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5774. "homepage": "https://symfony.com",
  5775. "keywords": [
  5776. "compatibility",
  5777. "intl",
  5778. "normalizer",
  5779. "polyfill",
  5780. "portable",
  5781. "shim"
  5782. ],
  5783. "support": {
  5784. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0"
  5785. },
  5786. "funding": [
  5787. {
  5788. "url": "https://symfony.com/sponsor",
  5789. "type": "custom"
  5790. },
  5791. {
  5792. "url": "https://github.com/fabpot",
  5793. "type": "github"
  5794. },
  5795. {
  5796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5797. "type": "tidelift"
  5798. }
  5799. ],
  5800. "time": "2021-01-07T17:09:11+00:00"
  5801. },
  5802. {
  5803. "name": "symfony/polyfill-mbstring",
  5804. "version": "v1.22.0",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5808. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  5813. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "php": ">=7.1"
  5818. },
  5819. "suggest": {
  5820. "ext-mbstring": "For best performance"
  5821. },
  5822. "type": "library",
  5823. "extra": {
  5824. "branch-alias": {
  5825. "dev-main": "1.22-dev"
  5826. },
  5827. "thanks": {
  5828. "name": "symfony/polyfill",
  5829. "url": "https://github.com/symfony/polyfill"
  5830. }
  5831. },
  5832. "autoload": {
  5833. "psr-4": {
  5834. "Symfony\\Polyfill\\Mbstring\\": ""
  5835. },
  5836. "files": [
  5837. "bootstrap.php"
  5838. ]
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Nicolas Grekas",
  5847. "email": "p@tchwork.com"
  5848. },
  5849. {
  5850. "name": "Symfony Community",
  5851. "homepage": "https://symfony.com/contributors"
  5852. }
  5853. ],
  5854. "description": "Symfony polyfill for the Mbstring extension",
  5855. "homepage": "https://symfony.com",
  5856. "keywords": [
  5857. "compatibility",
  5858. "mbstring",
  5859. "polyfill",
  5860. "portable",
  5861. "shim"
  5862. ],
  5863. "support": {
  5864. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  5865. },
  5866. "funding": [
  5867. {
  5868. "url": "https://symfony.com/sponsor",
  5869. "type": "custom"
  5870. },
  5871. {
  5872. "url": "https://github.com/fabpot",
  5873. "type": "github"
  5874. },
  5875. {
  5876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5877. "type": "tidelift"
  5878. }
  5879. ],
  5880. "time": "2021-01-07T16:49:33+00:00"
  5881. },
  5882. {
  5883. "name": "symfony/polyfill-php56",
  5884. "version": "v1.20.0",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/symfony/polyfill-php56.git",
  5888. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5893. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.1"
  5898. },
  5899. "type": "metapackage",
  5900. "extra": {
  5901. "branch-alias": {
  5902. "dev-main": "1.20-dev"
  5903. },
  5904. "thanks": {
  5905. "name": "symfony/polyfill",
  5906. "url": "https://github.com/symfony/polyfill"
  5907. }
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "Nicolas Grekas",
  5916. "email": "p@tchwork.com"
  5917. },
  5918. {
  5919. "name": "Symfony Community",
  5920. "homepage": "https://symfony.com/contributors"
  5921. }
  5922. ],
  5923. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5924. "homepage": "https://symfony.com",
  5925. "keywords": [
  5926. "compatibility",
  5927. "polyfill",
  5928. "portable",
  5929. "shim"
  5930. ],
  5931. "support": {
  5932. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  5933. },
  5934. "funding": [
  5935. {
  5936. "url": "https://symfony.com/sponsor",
  5937. "type": "custom"
  5938. },
  5939. {
  5940. "url": "https://github.com/fabpot",
  5941. "type": "github"
  5942. },
  5943. {
  5944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5945. "type": "tidelift"
  5946. }
  5947. ],
  5948. "time": "2020-10-23T14:02:19+00:00"
  5949. },
  5950. {
  5951. "name": "symfony/polyfill-php72",
  5952. "version": "v1.22.0",
  5953. "source": {
  5954. "type": "git",
  5955. "url": "https://github.com/symfony/polyfill-php72.git",
  5956. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  5957. },
  5958. "dist": {
  5959. "type": "zip",
  5960. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  5961. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  5962. "shasum": ""
  5963. },
  5964. "require": {
  5965. "php": ">=7.1"
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-main": "1.22-dev"
  5971. },
  5972. "thanks": {
  5973. "name": "symfony/polyfill",
  5974. "url": "https://github.com/symfony/polyfill"
  5975. }
  5976. },
  5977. "autoload": {
  5978. "psr-4": {
  5979. "Symfony\\Polyfill\\Php72\\": ""
  5980. },
  5981. "files": [
  5982. "bootstrap.php"
  5983. ]
  5984. },
  5985. "notification-url": "https://packagist.org/downloads/",
  5986. "license": [
  5987. "MIT"
  5988. ],
  5989. "authors": [
  5990. {
  5991. "name": "Nicolas Grekas",
  5992. "email": "p@tchwork.com"
  5993. },
  5994. {
  5995. "name": "Symfony Community",
  5996. "homepage": "https://symfony.com/contributors"
  5997. }
  5998. ],
  5999. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6000. "homepage": "https://symfony.com",
  6001. "keywords": [
  6002. "compatibility",
  6003. "polyfill",
  6004. "portable",
  6005. "shim"
  6006. ],
  6007. "support": {
  6008. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  6009. },
  6010. "funding": [
  6011. {
  6012. "url": "https://symfony.com/sponsor",
  6013. "type": "custom"
  6014. },
  6015. {
  6016. "url": "https://github.com/fabpot",
  6017. "type": "github"
  6018. },
  6019. {
  6020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6021. "type": "tidelift"
  6022. }
  6023. ],
  6024. "time": "2021-01-07T16:49:33+00:00"
  6025. },
  6026. {
  6027. "name": "symfony/polyfill-php73",
  6028. "version": "v1.22.0",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/symfony/polyfill-php73.git",
  6032. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6037. "reference": "a678b42e92f86eca04b7fa4c0f6f19d097fb69e2",
  6038. "shasum": ""
  6039. },
  6040. "require": {
  6041. "php": ">=7.1"
  6042. },
  6043. "type": "library",
  6044. "extra": {
  6045. "branch-alias": {
  6046. "dev-main": "1.22-dev"
  6047. },
  6048. "thanks": {
  6049. "name": "symfony/polyfill",
  6050. "url": "https://github.com/symfony/polyfill"
  6051. }
  6052. },
  6053. "autoload": {
  6054. "psr-4": {
  6055. "Symfony\\Polyfill\\Php73\\": ""
  6056. },
  6057. "files": [
  6058. "bootstrap.php"
  6059. ],
  6060. "classmap": [
  6061. "Resources/stubs"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Nicolas Grekas",
  6071. "email": "p@tchwork.com"
  6072. },
  6073. {
  6074. "name": "Symfony Community",
  6075. "homepage": "https://symfony.com/contributors"
  6076. }
  6077. ],
  6078. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6079. "homepage": "https://symfony.com",
  6080. "keywords": [
  6081. "compatibility",
  6082. "polyfill",
  6083. "portable",
  6084. "shim"
  6085. ],
  6086. "support": {
  6087. "source": "https://github.com/symfony/polyfill-php73/tree/v1.22.0"
  6088. },
  6089. "funding": [
  6090. {
  6091. "url": "https://symfony.com/sponsor",
  6092. "type": "custom"
  6093. },
  6094. {
  6095. "url": "https://github.com/fabpot",
  6096. "type": "github"
  6097. },
  6098. {
  6099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6100. "type": "tidelift"
  6101. }
  6102. ],
  6103. "time": "2021-01-07T16:49:33+00:00"
  6104. },
  6105. {
  6106. "name": "symfony/polyfill-php80",
  6107. "version": "v1.22.0",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://github.com/symfony/polyfill-php80.git",
  6111. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6116. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  6117. "shasum": ""
  6118. },
  6119. "require": {
  6120. "php": ">=7.1"
  6121. },
  6122. "type": "library",
  6123. "extra": {
  6124. "branch-alias": {
  6125. "dev-main": "1.22-dev"
  6126. },
  6127. "thanks": {
  6128. "name": "symfony/polyfill",
  6129. "url": "https://github.com/symfony/polyfill"
  6130. }
  6131. },
  6132. "autoload": {
  6133. "psr-4": {
  6134. "Symfony\\Polyfill\\Php80\\": ""
  6135. },
  6136. "files": [
  6137. "bootstrap.php"
  6138. ],
  6139. "classmap": [
  6140. "Resources/stubs"
  6141. ]
  6142. },
  6143. "notification-url": "https://packagist.org/downloads/",
  6144. "license": [
  6145. "MIT"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "Ion Bazan",
  6150. "email": "ion.bazan@gmail.com"
  6151. },
  6152. {
  6153. "name": "Nicolas Grekas",
  6154. "email": "p@tchwork.com"
  6155. },
  6156. {
  6157. "name": "Symfony Community",
  6158. "homepage": "https://symfony.com/contributors"
  6159. }
  6160. ],
  6161. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6162. "homepage": "https://symfony.com",
  6163. "keywords": [
  6164. "compatibility",
  6165. "polyfill",
  6166. "portable",
  6167. "shim"
  6168. ],
  6169. "support": {
  6170. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://symfony.com/sponsor",
  6175. "type": "custom"
  6176. },
  6177. {
  6178. "url": "https://github.com/fabpot",
  6179. "type": "github"
  6180. },
  6181. {
  6182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6183. "type": "tidelift"
  6184. }
  6185. ],
  6186. "time": "2021-01-07T16:49:33+00:00"
  6187. },
  6188. {
  6189. "name": "symfony/process",
  6190. "version": "v5.2.1",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/symfony/process.git",
  6194. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/symfony/process/zipball/bd8815b8b6705298beaa384f04fabd459c10bedd",
  6199. "reference": "bd8815b8b6705298beaa384f04fabd459c10bedd",
  6200. "shasum": ""
  6201. },
  6202. "require": {
  6203. "php": ">=7.2.5",
  6204. "symfony/polyfill-php80": "^1.15"
  6205. },
  6206. "type": "library",
  6207. "autoload": {
  6208. "psr-4": {
  6209. "Symfony\\Component\\Process\\": ""
  6210. },
  6211. "exclude-from-classmap": [
  6212. "/Tests/"
  6213. ]
  6214. },
  6215. "notification-url": "https://packagist.org/downloads/",
  6216. "license": [
  6217. "MIT"
  6218. ],
  6219. "authors": [
  6220. {
  6221. "name": "Fabien Potencier",
  6222. "email": "fabien@symfony.com"
  6223. },
  6224. {
  6225. "name": "Symfony Community",
  6226. "homepage": "https://symfony.com/contributors"
  6227. }
  6228. ],
  6229. "description": "Symfony Process Component",
  6230. "homepage": "https://symfony.com",
  6231. "support": {
  6232. "source": "https://github.com/symfony/process/tree/v5.2.1"
  6233. },
  6234. "funding": [
  6235. {
  6236. "url": "https://symfony.com/sponsor",
  6237. "type": "custom"
  6238. },
  6239. {
  6240. "url": "https://github.com/fabpot",
  6241. "type": "github"
  6242. },
  6243. {
  6244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6245. "type": "tidelift"
  6246. }
  6247. ],
  6248. "time": "2020-12-08T17:03:37+00:00"
  6249. },
  6250. {
  6251. "name": "symfony/routing",
  6252. "version": "v5.2.1",
  6253. "source": {
  6254. "type": "git",
  6255. "url": "https://github.com/symfony/routing.git",
  6256. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620"
  6257. },
  6258. "dist": {
  6259. "type": "zip",
  6260. "url": "https://api.github.com/repos/symfony/routing/zipball/934ac2720dcc878a47a45c986b483a7ee7193620",
  6261. "reference": "934ac2720dcc878a47a45c986b483a7ee7193620",
  6262. "shasum": ""
  6263. },
  6264. "require": {
  6265. "php": ">=7.2.5",
  6266. "symfony/deprecation-contracts": "^2.1",
  6267. "symfony/polyfill-php80": "^1.15"
  6268. },
  6269. "conflict": {
  6270. "symfony/config": "<5.0",
  6271. "symfony/dependency-injection": "<4.4",
  6272. "symfony/yaml": "<4.4"
  6273. },
  6274. "require-dev": {
  6275. "doctrine/annotations": "^1.7",
  6276. "psr/log": "~1.0",
  6277. "symfony/config": "^5.0",
  6278. "symfony/dependency-injection": "^4.4|^5.0",
  6279. "symfony/expression-language": "^4.4|^5.0",
  6280. "symfony/http-foundation": "^4.4|^5.0",
  6281. "symfony/yaml": "^4.4|^5.0"
  6282. },
  6283. "suggest": {
  6284. "doctrine/annotations": "For using the annotation loader",
  6285. "symfony/config": "For using the all-in-one router or any loader",
  6286. "symfony/expression-language": "For using expression matching",
  6287. "symfony/http-foundation": "For using a Symfony Request object",
  6288. "symfony/yaml": "For using the YAML loader"
  6289. },
  6290. "type": "library",
  6291. "autoload": {
  6292. "psr-4": {
  6293. "Symfony\\Component\\Routing\\": ""
  6294. },
  6295. "exclude-from-classmap": [
  6296. "/Tests/"
  6297. ]
  6298. },
  6299. "notification-url": "https://packagist.org/downloads/",
  6300. "license": [
  6301. "MIT"
  6302. ],
  6303. "authors": [
  6304. {
  6305. "name": "Fabien Potencier",
  6306. "email": "fabien@symfony.com"
  6307. },
  6308. {
  6309. "name": "Symfony Community",
  6310. "homepage": "https://symfony.com/contributors"
  6311. }
  6312. ],
  6313. "description": "Symfony Routing Component",
  6314. "homepage": "https://symfony.com",
  6315. "keywords": [
  6316. "router",
  6317. "routing",
  6318. "uri",
  6319. "url"
  6320. ],
  6321. "support": {
  6322. "source": "https://github.com/symfony/routing/tree/v5.2.1"
  6323. },
  6324. "funding": [
  6325. {
  6326. "url": "https://symfony.com/sponsor",
  6327. "type": "custom"
  6328. },
  6329. {
  6330. "url": "https://github.com/fabpot",
  6331. "type": "github"
  6332. },
  6333. {
  6334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6335. "type": "tidelift"
  6336. }
  6337. ],
  6338. "time": "2020-12-08T17:03:37+00:00"
  6339. },
  6340. {
  6341. "name": "symfony/service-contracts",
  6342. "version": "v2.2.0",
  6343. "source": {
  6344. "type": "git",
  6345. "url": "https://github.com/symfony/service-contracts.git",
  6346. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  6347. },
  6348. "dist": {
  6349. "type": "zip",
  6350. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6351. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  6352. "shasum": ""
  6353. },
  6354. "require": {
  6355. "php": ">=7.2.5",
  6356. "psr/container": "^1.0"
  6357. },
  6358. "suggest": {
  6359. "symfony/service-implementation": ""
  6360. },
  6361. "type": "library",
  6362. "extra": {
  6363. "branch-alias": {
  6364. "dev-master": "2.2-dev"
  6365. },
  6366. "thanks": {
  6367. "name": "symfony/contracts",
  6368. "url": "https://github.com/symfony/contracts"
  6369. }
  6370. },
  6371. "autoload": {
  6372. "psr-4": {
  6373. "Symfony\\Contracts\\Service\\": ""
  6374. }
  6375. },
  6376. "notification-url": "https://packagist.org/downloads/",
  6377. "license": [
  6378. "MIT"
  6379. ],
  6380. "authors": [
  6381. {
  6382. "name": "Nicolas Grekas",
  6383. "email": "p@tchwork.com"
  6384. },
  6385. {
  6386. "name": "Symfony Community",
  6387. "homepage": "https://symfony.com/contributors"
  6388. }
  6389. ],
  6390. "description": "Generic abstractions related to writing services",
  6391. "homepage": "https://symfony.com",
  6392. "keywords": [
  6393. "abstractions",
  6394. "contracts",
  6395. "decoupling",
  6396. "interfaces",
  6397. "interoperability",
  6398. "standards"
  6399. ],
  6400. "support": {
  6401. "source": "https://github.com/symfony/service-contracts/tree/master"
  6402. },
  6403. "funding": [
  6404. {
  6405. "url": "https://symfony.com/sponsor",
  6406. "type": "custom"
  6407. },
  6408. {
  6409. "url": "https://github.com/fabpot",
  6410. "type": "github"
  6411. },
  6412. {
  6413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6414. "type": "tidelift"
  6415. }
  6416. ],
  6417. "time": "2020-09-07T11:33:47+00:00"
  6418. },
  6419. {
  6420. "name": "symfony/string",
  6421. "version": "v5.2.1",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/symfony/string.git",
  6425. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6430. "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "php": ">=7.2.5",
  6435. "symfony/polyfill-ctype": "~1.8",
  6436. "symfony/polyfill-intl-grapheme": "~1.0",
  6437. "symfony/polyfill-intl-normalizer": "~1.0",
  6438. "symfony/polyfill-mbstring": "~1.0",
  6439. "symfony/polyfill-php80": "~1.15"
  6440. },
  6441. "require-dev": {
  6442. "symfony/error-handler": "^4.4|^5.0",
  6443. "symfony/http-client": "^4.4|^5.0",
  6444. "symfony/translation-contracts": "^1.1|^2",
  6445. "symfony/var-exporter": "^4.4|^5.0"
  6446. },
  6447. "type": "library",
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Symfony\\Component\\String\\": ""
  6451. },
  6452. "files": [
  6453. "Resources/functions.php"
  6454. ],
  6455. "exclude-from-classmap": [
  6456. "/Tests/"
  6457. ]
  6458. },
  6459. "notification-url": "https://packagist.org/downloads/",
  6460. "license": [
  6461. "MIT"
  6462. ],
  6463. "authors": [
  6464. {
  6465. "name": "Nicolas Grekas",
  6466. "email": "p@tchwork.com"
  6467. },
  6468. {
  6469. "name": "Symfony Community",
  6470. "homepage": "https://symfony.com/contributors"
  6471. }
  6472. ],
  6473. "description": "Symfony String component",
  6474. "homepage": "https://symfony.com",
  6475. "keywords": [
  6476. "grapheme",
  6477. "i18n",
  6478. "string",
  6479. "unicode",
  6480. "utf-8",
  6481. "utf8"
  6482. ],
  6483. "support": {
  6484. "source": "https://github.com/symfony/string/tree/v5.2.1"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2020-12-05T07:33:16+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/translation",
  6504. "version": "v5.2.1",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/translation.git",
  6508. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/translation/zipball/a04209ba0d1391c828e5b2373181dac63c52ee70",
  6513. "reference": "a04209ba0d1391c828e5b2373181dac63c52ee70",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "php": ">=7.2.5",
  6518. "symfony/polyfill-mbstring": "~1.0",
  6519. "symfony/polyfill-php80": "^1.15",
  6520. "symfony/translation-contracts": "^2.3"
  6521. },
  6522. "conflict": {
  6523. "symfony/config": "<4.4",
  6524. "symfony/dependency-injection": "<5.0",
  6525. "symfony/http-kernel": "<5.0",
  6526. "symfony/twig-bundle": "<5.0",
  6527. "symfony/yaml": "<4.4"
  6528. },
  6529. "provide": {
  6530. "symfony/translation-implementation": "2.0"
  6531. },
  6532. "require-dev": {
  6533. "psr/log": "~1.0",
  6534. "symfony/config": "^4.4|^5.0",
  6535. "symfony/console": "^4.4|^5.0",
  6536. "symfony/dependency-injection": "^5.0",
  6537. "symfony/finder": "^4.4|^5.0",
  6538. "symfony/http-kernel": "^5.0",
  6539. "symfony/intl": "^4.4|^5.0",
  6540. "symfony/service-contracts": "^1.1.2|^2",
  6541. "symfony/yaml": "^4.4|^5.0"
  6542. },
  6543. "suggest": {
  6544. "psr/log-implementation": "To use logging capability in translator",
  6545. "symfony/config": "",
  6546. "symfony/yaml": ""
  6547. },
  6548. "type": "library",
  6549. "autoload": {
  6550. "files": [
  6551. "Resources/functions.php"
  6552. ],
  6553. "psr-4": {
  6554. "Symfony\\Component\\Translation\\": ""
  6555. },
  6556. "exclude-from-classmap": [
  6557. "/Tests/"
  6558. ]
  6559. },
  6560. "notification-url": "https://packagist.org/downloads/",
  6561. "license": [
  6562. "MIT"
  6563. ],
  6564. "authors": [
  6565. {
  6566. "name": "Fabien Potencier",
  6567. "email": "fabien@symfony.com"
  6568. },
  6569. {
  6570. "name": "Symfony Community",
  6571. "homepage": "https://symfony.com/contributors"
  6572. }
  6573. ],
  6574. "description": "Symfony Translation Component",
  6575. "homepage": "https://symfony.com",
  6576. "support": {
  6577. "source": "https://github.com/symfony/translation/tree/v5.2.1"
  6578. },
  6579. "funding": [
  6580. {
  6581. "url": "https://symfony.com/sponsor",
  6582. "type": "custom"
  6583. },
  6584. {
  6585. "url": "https://github.com/fabpot",
  6586. "type": "github"
  6587. },
  6588. {
  6589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6590. "type": "tidelift"
  6591. }
  6592. ],
  6593. "time": "2020-12-08T17:03:37+00:00"
  6594. },
  6595. {
  6596. "name": "symfony/translation-contracts",
  6597. "version": "v2.3.0",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://github.com/symfony/translation-contracts.git",
  6601. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6606. "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105",
  6607. "shasum": ""
  6608. },
  6609. "require": {
  6610. "php": ">=7.2.5"
  6611. },
  6612. "suggest": {
  6613. "symfony/translation-implementation": ""
  6614. },
  6615. "type": "library",
  6616. "extra": {
  6617. "branch-alias": {
  6618. "dev-master": "2.3-dev"
  6619. },
  6620. "thanks": {
  6621. "name": "symfony/contracts",
  6622. "url": "https://github.com/symfony/contracts"
  6623. }
  6624. },
  6625. "autoload": {
  6626. "psr-4": {
  6627. "Symfony\\Contracts\\Translation\\": ""
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Nicolas Grekas",
  6637. "email": "p@tchwork.com"
  6638. },
  6639. {
  6640. "name": "Symfony Community",
  6641. "homepage": "https://symfony.com/contributors"
  6642. }
  6643. ],
  6644. "description": "Generic abstractions related to translation",
  6645. "homepage": "https://symfony.com",
  6646. "keywords": [
  6647. "abstractions",
  6648. "contracts",
  6649. "decoupling",
  6650. "interfaces",
  6651. "interoperability",
  6652. "standards"
  6653. ],
  6654. "support": {
  6655. "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0"
  6656. },
  6657. "funding": [
  6658. {
  6659. "url": "https://symfony.com/sponsor",
  6660. "type": "custom"
  6661. },
  6662. {
  6663. "url": "https://github.com/fabpot",
  6664. "type": "github"
  6665. },
  6666. {
  6667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6668. "type": "tidelift"
  6669. }
  6670. ],
  6671. "time": "2020-09-28T13:05:58+00:00"
  6672. },
  6673. {
  6674. "name": "symfony/var-dumper",
  6675. "version": "v5.2.1",
  6676. "source": {
  6677. "type": "git",
  6678. "url": "https://github.com/symfony/var-dumper.git",
  6679. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089"
  6680. },
  6681. "dist": {
  6682. "type": "zip",
  6683. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6684. "reference": "13e7e882eaa55863faa7c4ad7c60f12f1a8b5089",
  6685. "shasum": ""
  6686. },
  6687. "require": {
  6688. "php": ">=7.2.5",
  6689. "symfony/polyfill-mbstring": "~1.0",
  6690. "symfony/polyfill-php80": "^1.15"
  6691. },
  6692. "conflict": {
  6693. "phpunit/phpunit": "<5.4.3",
  6694. "symfony/console": "<4.4"
  6695. },
  6696. "require-dev": {
  6697. "ext-iconv": "*",
  6698. "symfony/console": "^4.4|^5.0",
  6699. "symfony/process": "^4.4|^5.0",
  6700. "twig/twig": "^2.4|^3.0"
  6701. },
  6702. "suggest": {
  6703. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6704. "ext-intl": "To show region name in time zone dump",
  6705. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6706. },
  6707. "bin": [
  6708. "Resources/bin/var-dump-server"
  6709. ],
  6710. "type": "library",
  6711. "autoload": {
  6712. "files": [
  6713. "Resources/functions/dump.php"
  6714. ],
  6715. "psr-4": {
  6716. "Symfony\\Component\\VarDumper\\": ""
  6717. },
  6718. "exclude-from-classmap": [
  6719. "/Tests/"
  6720. ]
  6721. },
  6722. "notification-url": "https://packagist.org/downloads/",
  6723. "license": [
  6724. "MIT"
  6725. ],
  6726. "authors": [
  6727. {
  6728. "name": "Nicolas Grekas",
  6729. "email": "p@tchwork.com"
  6730. },
  6731. {
  6732. "name": "Symfony Community",
  6733. "homepage": "https://symfony.com/contributors"
  6734. }
  6735. ],
  6736. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6737. "homepage": "https://symfony.com",
  6738. "keywords": [
  6739. "debug",
  6740. "dump"
  6741. ],
  6742. "support": {
  6743. "source": "https://github.com/symfony/var-dumper/tree/v5.2.1"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2020-12-16T17:02:19+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/yaml",
  6763. "version": "v5.2.1",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/yaml.git",
  6767. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/yaml/zipball/290ea5e03b8cf9b42c783163123f54441fb06939",
  6772. "reference": "290ea5e03b8cf9b42c783163123f54441fb06939",
  6773. "shasum": ""
  6774. },
  6775. "require": {
  6776. "php": ">=7.2.5",
  6777. "symfony/deprecation-contracts": "^2.1",
  6778. "symfony/polyfill-ctype": "~1.8"
  6779. },
  6780. "conflict": {
  6781. "symfony/console": "<4.4"
  6782. },
  6783. "require-dev": {
  6784. "symfony/console": "^4.4|^5.0"
  6785. },
  6786. "suggest": {
  6787. "symfony/console": "For validating YAML files using the lint command"
  6788. },
  6789. "bin": [
  6790. "Resources/bin/yaml-lint"
  6791. ],
  6792. "type": "library",
  6793. "autoload": {
  6794. "psr-4": {
  6795. "Symfony\\Component\\Yaml\\": ""
  6796. },
  6797. "exclude-from-classmap": [
  6798. "/Tests/"
  6799. ]
  6800. },
  6801. "notification-url": "https://packagist.org/downloads/",
  6802. "license": [
  6803. "MIT"
  6804. ],
  6805. "authors": [
  6806. {
  6807. "name": "Fabien Potencier",
  6808. "email": "fabien@symfony.com"
  6809. },
  6810. {
  6811. "name": "Symfony Community",
  6812. "homepage": "https://symfony.com/contributors"
  6813. }
  6814. ],
  6815. "description": "Symfony Yaml Component",
  6816. "homepage": "https://symfony.com",
  6817. "support": {
  6818. "source": "https://github.com/symfony/yaml/tree/v5.2.1"
  6819. },
  6820. "funding": [
  6821. {
  6822. "url": "https://symfony.com/sponsor",
  6823. "type": "custom"
  6824. },
  6825. {
  6826. "url": "https://github.com/fabpot",
  6827. "type": "github"
  6828. },
  6829. {
  6830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6831. "type": "tidelift"
  6832. }
  6833. ],
  6834. "time": "2020-12-08T17:02:38+00:00"
  6835. },
  6836. {
  6837. "name": "tijsverkoyen/css-to-inline-styles",
  6838. "version": "2.2.3",
  6839. "source": {
  6840. "type": "git",
  6841. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6842. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6843. },
  6844. "dist": {
  6845. "type": "zip",
  6846. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6847. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6848. "shasum": ""
  6849. },
  6850. "require": {
  6851. "ext-dom": "*",
  6852. "ext-libxml": "*",
  6853. "php": "^5.5 || ^7.0 || ^8.0",
  6854. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6855. },
  6856. "require-dev": {
  6857. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6858. },
  6859. "type": "library",
  6860. "extra": {
  6861. "branch-alias": {
  6862. "dev-master": "2.2.x-dev"
  6863. }
  6864. },
  6865. "autoload": {
  6866. "psr-4": {
  6867. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6868. }
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "BSD-3-Clause"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Tijs Verkoyen",
  6877. "email": "css_to_inline_styles@verkoyen.eu",
  6878. "role": "Developer"
  6879. }
  6880. ],
  6881. "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.",
  6882. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6883. "support": {
  6884. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6885. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  6886. },
  6887. "time": "2020-07-13T06:12:54+00:00"
  6888. },
  6889. {
  6890. "name": "tymon/jwt-auth",
  6891. "version": "1.0.2",
  6892. "source": {
  6893. "type": "git",
  6894. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6895. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  6896. },
  6897. "dist": {
  6898. "type": "zip",
  6899. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  6900. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  6901. "shasum": ""
  6902. },
  6903. "require": {
  6904. "illuminate/auth": "^5.2|^6|^7|^8",
  6905. "illuminate/contracts": "^5.2|^6|^7|^8",
  6906. "illuminate/http": "^5.2|^6|^7|^8",
  6907. "illuminate/support": "^5.2|^6|^7|^8",
  6908. "lcobucci/jwt": "<3.4",
  6909. "namshi/jose": "^7.0",
  6910. "nesbot/carbon": "^1.0|^2.0",
  6911. "php": "^5.5.9|^7.0"
  6912. },
  6913. "require-dev": {
  6914. "illuminate/console": "^5.2|^6|^7|^8",
  6915. "illuminate/database": "^5.2|^6|^7|^8",
  6916. "illuminate/routing": "^5.2|^6|^7|^8",
  6917. "mockery/mockery": ">=0.9.9",
  6918. "phpunit/phpunit": "~4.8|~6.0"
  6919. },
  6920. "type": "library",
  6921. "extra": {
  6922. "branch-alias": {
  6923. "dev-develop": "1.0-dev"
  6924. },
  6925. "laravel": {
  6926. "aliases": {
  6927. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6928. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6929. },
  6930. "providers": [
  6931. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6932. ]
  6933. }
  6934. },
  6935. "autoload": {
  6936. "psr-4": {
  6937. "Tymon\\JWTAuth\\": "src/"
  6938. }
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Sean Tymon",
  6947. "email": "tymon148@gmail.com",
  6948. "homepage": "https://tymon.xyz",
  6949. "role": "Developer"
  6950. }
  6951. ],
  6952. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6953. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6954. "keywords": [
  6955. "Authentication",
  6956. "JSON Web Token",
  6957. "auth",
  6958. "jwt",
  6959. "laravel"
  6960. ],
  6961. "support": {
  6962. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  6963. "source": "https://github.com/tymondesigns/jwt-auth"
  6964. },
  6965. "funding": [
  6966. {
  6967. "url": "https://www.patreon.com/seantymon",
  6968. "type": "patreon"
  6969. }
  6970. ],
  6971. "time": "2020-11-27T12:32:42+00:00"
  6972. },
  6973. {
  6974. "name": "vlucas/phpdotenv",
  6975. "version": "v4.1.8",
  6976. "source": {
  6977. "type": "git",
  6978. "url": "https://github.com/vlucas/phpdotenv.git",
  6979. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6980. },
  6981. "dist": {
  6982. "type": "zip",
  6983. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6984. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6985. "shasum": ""
  6986. },
  6987. "require": {
  6988. "php": "^5.5.9 || ^7.0 || ^8.0",
  6989. "phpoption/phpoption": "^1.7.3",
  6990. "symfony/polyfill-ctype": "^1.17"
  6991. },
  6992. "require-dev": {
  6993. "bamarni/composer-bin-plugin": "^1.4.1",
  6994. "ext-filter": "*",
  6995. "ext-pcre": "*",
  6996. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6997. },
  6998. "suggest": {
  6999. "ext-filter": "Required to use the boolean validator.",
  7000. "ext-pcre": "Required to use most of the library."
  7001. },
  7002. "type": "library",
  7003. "extra": {
  7004. "branch-alias": {
  7005. "dev-master": "4.1-dev"
  7006. }
  7007. },
  7008. "autoload": {
  7009. "psr-4": {
  7010. "Dotenv\\": "src/"
  7011. }
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "license": [
  7015. "BSD-3-Clause"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Graham Campbell",
  7020. "email": "graham@alt-three.com",
  7021. "homepage": "https://gjcampbell.co.uk/"
  7022. },
  7023. {
  7024. "name": "Vance Lucas",
  7025. "email": "vance@vancelucas.com",
  7026. "homepage": "https://vancelucas.com/"
  7027. }
  7028. ],
  7029. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7030. "keywords": [
  7031. "dotenv",
  7032. "env",
  7033. "environment"
  7034. ],
  7035. "support": {
  7036. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7037. "source": "https://github.com/vlucas/phpdotenv/tree/4.1"
  7038. },
  7039. "funding": [
  7040. {
  7041. "url": "https://github.com/GrahamCampbell",
  7042. "type": "github"
  7043. },
  7044. {
  7045. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7046. "type": "tidelift"
  7047. }
  7048. ],
  7049. "time": "2020-07-14T19:22:52+00:00"
  7050. },
  7051. {
  7052. "name": "voku/portable-ascii",
  7053. "version": "1.5.6",
  7054. "source": {
  7055. "type": "git",
  7056. "url": "https://github.com/voku/portable-ascii.git",
  7057. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7058. },
  7059. "dist": {
  7060. "type": "zip",
  7061. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7062. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7063. "shasum": ""
  7064. },
  7065. "require": {
  7066. "php": ">=7.0.0"
  7067. },
  7068. "require-dev": {
  7069. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7070. },
  7071. "suggest": {
  7072. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7073. },
  7074. "type": "library",
  7075. "autoload": {
  7076. "psr-4": {
  7077. "voku\\": "src/voku/"
  7078. }
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Lars Moelleken",
  7087. "homepage": "http://www.moelleken.org/"
  7088. }
  7089. ],
  7090. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7091. "homepage": "https://github.com/voku/portable-ascii",
  7092. "keywords": [
  7093. "ascii",
  7094. "clean",
  7095. "php"
  7096. ],
  7097. "support": {
  7098. "issues": "https://github.com/voku/portable-ascii/issues",
  7099. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7100. },
  7101. "funding": [
  7102. {
  7103. "url": "https://www.paypal.me/moelleken",
  7104. "type": "custom"
  7105. },
  7106. {
  7107. "url": "https://github.com/voku",
  7108. "type": "github"
  7109. },
  7110. {
  7111. "url": "https://opencollective.com/portable-ascii",
  7112. "type": "open_collective"
  7113. },
  7114. {
  7115. "url": "https://www.patreon.com/voku",
  7116. "type": "patreon"
  7117. },
  7118. {
  7119. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7120. "type": "tidelift"
  7121. }
  7122. ],
  7123. "time": "2020-11-12T00:07:28+00:00"
  7124. },
  7125. {
  7126. "name": "xhat/payjs",
  7127. "version": "1.5.0",
  7128. "source": {
  7129. "type": "git",
  7130. "url": "https://github.com/xhat/payjs.git",
  7131. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  7132. },
  7133. "dist": {
  7134. "type": "zip",
  7135. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7136. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  7137. "shasum": ""
  7138. },
  7139. "type": "library",
  7140. "autoload": {
  7141. "psr-4": {
  7142. "Xhat\\Payjs\\": "src/"
  7143. }
  7144. },
  7145. "notification-url": "https://packagist.org/downloads/",
  7146. "license": [
  7147. "MIT"
  7148. ],
  7149. "authors": [
  7150. {
  7151. "name": "andy",
  7152. "email": "andy@popfeng.com"
  7153. }
  7154. ],
  7155. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  7156. "support": {
  7157. "issues": "https://github.com/xhat/payjs/issues",
  7158. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  7159. },
  7160. "funding": [
  7161. {
  7162. "url": "https://payjs.cn/sponsor/dajjxz",
  7163. "type": "custom"
  7164. }
  7165. ],
  7166. "time": "2020-09-11T06:02:42+00:00"
  7167. },
  7168. {
  7169. "name": "zbrettonye/geetest",
  7170. "version": "v1.2.0",
  7171. "source": {
  7172. "type": "git",
  7173. "url": "https://github.com/ZBrettonYe/geetest.git",
  7174. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed"
  7175. },
  7176. "dist": {
  7177. "type": "zip",
  7178. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7179. "reference": "ee08e5bee9be831c23df241d3ab75678a8ce5fed",
  7180. "shasum": ""
  7181. },
  7182. "require": {
  7183. "ext-json": "*",
  7184. "guzzlehttp/guzzle": "^6.3|^7.0",
  7185. "illuminate/routing": "^6|^7|^8",
  7186. "illuminate/support": "^6|^7|^8",
  7187. "php": "^7.2"
  7188. },
  7189. "require-dev": {
  7190. "mockery/mockery": "^1.3.1",
  7191. "phpunit/phpunit": "^7.5.15|^8.4|^9.0"
  7192. },
  7193. "type": "library",
  7194. "extra": {
  7195. "laravel": {
  7196. "providers": [
  7197. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  7198. ],
  7199. "aliases": {
  7200. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  7201. }
  7202. }
  7203. },
  7204. "autoload": {
  7205. "psr-4": {
  7206. "ZBrettonYe\\Geetest\\": "src/"
  7207. }
  7208. },
  7209. "notification-url": "https://packagist.org/downloads/",
  7210. "license": [
  7211. "MIT"
  7212. ],
  7213. "authors": [
  7214. {
  7215. "name": "zbrettonye",
  7216. "email": "monkeyblacktech97@gmail.com"
  7217. }
  7218. ],
  7219. "description": "Geetest Package for Laravel6-8",
  7220. "keywords": [
  7221. "geetest",
  7222. "laravel"
  7223. ],
  7224. "support": {
  7225. "source": "https://github.com/ZBrettonYe/geetest/tree/v1.2.0"
  7226. },
  7227. "time": "2020-10-13T20:15:36+00:00"
  7228. },
  7229. {
  7230. "name": "zbrettonye/hcaptcha",
  7231. "version": "V1.1.0",
  7232. "source": {
  7233. "type": "git",
  7234. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  7235. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee"
  7236. },
  7237. "dist": {
  7238. "type": "zip",
  7239. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7240. "reference": "d84cb1bcf754ada345da8baadf7129dbca67d1ee",
  7241. "shasum": ""
  7242. },
  7243. "require": {
  7244. "guzzlehttp/guzzle": "^6.2|^7.0",
  7245. "illuminate/support": "^6|^7|^8",
  7246. "php": "^7.2"
  7247. },
  7248. "require-dev": {
  7249. "phpunit/phpunit": "~4.8"
  7250. },
  7251. "type": "library",
  7252. "extra": {
  7253. "laravel": {
  7254. "providers": [
  7255. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  7256. ],
  7257. "aliases": {
  7258. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  7259. }
  7260. }
  7261. },
  7262. "autoload": {
  7263. "psr-4": {
  7264. "ZBrettonYe\\HCaptcha\\": "src/"
  7265. }
  7266. },
  7267. "notification-url": "https://packagist.org/downloads/",
  7268. "license": [
  7269. "MIT"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "zbrettonye",
  7274. "email": "monkeyblacktech97@gmail.com"
  7275. }
  7276. ],
  7277. "description": "hCaptcha For Laravel6~8",
  7278. "keywords": [
  7279. "captcha",
  7280. "hcaptcha",
  7281. "laravel"
  7282. ],
  7283. "support": {
  7284. "source": "https://github.com/ZBrettonYe/hcaptcha/tree/V1.1.0"
  7285. },
  7286. "time": "2020-10-13T21:22:51+00:00"
  7287. },
  7288. {
  7289. "name": "zbrettonye/no-captcha",
  7290. "version": "v1.1.0",
  7291. "source": {
  7292. "type": "git",
  7293. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  7294. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28"
  7295. },
  7296. "dist": {
  7297. "type": "zip",
  7298. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7299. "reference": "4cb229bf5fa9f5726eb5a821e9710c5fc8edad28",
  7300. "shasum": ""
  7301. },
  7302. "require": {
  7303. "ext-json": "*",
  7304. "guzzlehttp/guzzle": "^6.2|^7.0",
  7305. "illuminate/support": "^6|^7|^8",
  7306. "php": "^7.2"
  7307. },
  7308. "require-dev": {
  7309. "phpunit/phpunit": "~4.8"
  7310. },
  7311. "type": "library",
  7312. "extra": {
  7313. "laravel": {
  7314. "providers": [
  7315. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  7316. ],
  7317. "aliases": {
  7318. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  7319. }
  7320. }
  7321. },
  7322. "autoload": {
  7323. "psr-4": {
  7324. "ZBrettonYe\\NoCaptcha\\": "src/"
  7325. }
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "license": [
  7329. "MIT"
  7330. ],
  7331. "authors": [
  7332. {
  7333. "name": "zbrettonye",
  7334. "email": "monkeyblacktech97@gmail.com"
  7335. }
  7336. ],
  7337. "description": "No CAPTCHA reCAPTCHA For Laravel6~8",
  7338. "keywords": [
  7339. "captcha",
  7340. "laravel",
  7341. "no-captcha",
  7342. "recaptcha"
  7343. ],
  7344. "support": {
  7345. "source": "https://github.com/ZBrettonYe/no-captcha/tree/v1.1.0"
  7346. },
  7347. "time": "2020-10-13T21:35:30+00:00"
  7348. },
  7349. {
  7350. "name": "zoujingli/ip2region",
  7351. "version": "v1.0.9",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/zoujingli/ip2region.git",
  7355. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7360. "reference": "e48f9122f50dd3b79295e35b4acdd0dcd2608ca8",
  7361. "shasum": ""
  7362. },
  7363. "require": {
  7364. "php": ">=5.3"
  7365. },
  7366. "type": "library",
  7367. "autoload": {
  7368. "classmap": [
  7369. "Ip2Region.php"
  7370. ]
  7371. },
  7372. "notification-url": "https://packagist.org/downloads/",
  7373. "license": [
  7374. "Apache-2.0"
  7375. ],
  7376. "authors": [
  7377. {
  7378. "name": "Anyon",
  7379. "email": "zoujingli@qq.com",
  7380. "homepage": "http://ctolog.com"
  7381. }
  7382. ],
  7383. "description": "Ip2Region for PHP",
  7384. "homepage": "https://github.com/zoujingli/Ip2Region",
  7385. "keywords": [
  7386. "Ip2Region"
  7387. ],
  7388. "support": {
  7389. "issues": "https://github.com/zoujingli/ip2region/issues",
  7390. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.9"
  7391. },
  7392. "time": "2020-11-06T07:21:55+00:00"
  7393. }
  7394. ],
  7395. "packages-dev": [
  7396. {
  7397. "name": "andrey-helldar/laravel-lang-publisher",
  7398. "version": "v6.2.0",
  7399. "source": {
  7400. "type": "git",
  7401. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  7402. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94"
  7403. },
  7404. "dist": {
  7405. "type": "zip",
  7406. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7407. "reference": "950458ca9d43dbbd0a8ec228a26b670c8f93cf94",
  7408. "shasum": ""
  7409. },
  7410. "require": {
  7411. "andrey-helldar/pretty-array": "^1.4.2",
  7412. "andrey-helldar/support": "^1.4.1",
  7413. "ext-json": "*",
  7414. "illuminate/console": "^7.0|^8.0",
  7415. "illuminate/support": "^7.0|^8.0",
  7416. "laravel-lang/lang": "^7.0",
  7417. "php": "^7.2.5|^8.0"
  7418. },
  7419. "require-dev": {
  7420. "mockery/mockery": "^1.3.1",
  7421. "orchestra/testbench": "^5.0|^6.0",
  7422. "phpunit/phpunit": "^8.4|^9.0"
  7423. },
  7424. "suggest": {
  7425. "andrey-helldar/lang-translations": "Translation of main messages",
  7426. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  7427. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "laravel": {
  7432. "providers": [
  7433. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  7434. ]
  7435. }
  7436. },
  7437. "autoload": {
  7438. "psr-4": {
  7439. "Helldar\\LaravelLangPublisher\\": "src"
  7440. }
  7441. },
  7442. "notification-url": "https://packagist.org/downloads/",
  7443. "license": [
  7444. "MIT"
  7445. ],
  7446. "authors": [
  7447. {
  7448. "name": "Andrey Helldar",
  7449. "email": "helldar@ai-rus.com"
  7450. }
  7451. ],
  7452. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  7453. "keywords": [
  7454. "fortify",
  7455. "i18n",
  7456. "jetstream",
  7457. "lang",
  7458. "languages",
  7459. "laravel",
  7460. "locale",
  7461. "localization",
  7462. "lpm",
  7463. "lumen",
  7464. "publisher",
  7465. "trans",
  7466. "translations",
  7467. "validations"
  7468. ],
  7469. "support": {
  7470. "issues": "https://github.com/andrey-helldar/laravel-lang-publisher/issues",
  7471. "source": "https://github.com/andrey-helldar/laravel-lang-publisher"
  7472. },
  7473. "funding": [
  7474. {
  7475. "url": "https://money.yandex.ru/to/410012115955701",
  7476. "type": "custom"
  7477. },
  7478. {
  7479. "url": "https://paypal.me/helldar",
  7480. "type": "custom"
  7481. }
  7482. ],
  7483. "time": "2020-11-30T10:15:29+00:00"
  7484. },
  7485. {
  7486. "name": "andrey-helldar/pretty-array",
  7487. "version": "v1.5.0",
  7488. "source": {
  7489. "type": "git",
  7490. "url": "https://github.com/andrey-helldar/pretty-array.git",
  7491. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543"
  7492. },
  7493. "dist": {
  7494. "type": "zip",
  7495. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/925db552d4f7f9c0a31cbce0f58518260d80e543",
  7496. "reference": "925db552d4f7f9c0a31cbce0f58518260d80e543",
  7497. "shasum": ""
  7498. },
  7499. "require": {
  7500. "andrey-helldar/support": "^1.16.0",
  7501. "ext-dom": "*",
  7502. "ext-mbstring": "*",
  7503. "php": "^7.1.3|^8.0"
  7504. },
  7505. "require-dev": {
  7506. "phpstan/phpstan": "^0.12.7",
  7507. "phpunit/phpunit": "^7.0|^8.0"
  7508. },
  7509. "suggest": {
  7510. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7511. },
  7512. "type": "library",
  7513. "autoload": {
  7514. "psr-4": {
  7515. "Helldar\\PrettyArray\\": "src/"
  7516. }
  7517. },
  7518. "notification-url": "https://packagist.org/downloads/",
  7519. "license": [
  7520. "MIT"
  7521. ],
  7522. "authors": [
  7523. {
  7524. "name": "Andrey Helldar",
  7525. "email": "helldar@ai-rus.com"
  7526. }
  7527. ],
  7528. "description": "Simple conversion of an array to a pretty view.",
  7529. "keywords": [
  7530. "array",
  7531. "pretty",
  7532. "pretty array"
  7533. ],
  7534. "support": {
  7535. "issues": "https://github.com/andrey-helldar/pretty-array/issues",
  7536. "source": "https://github.com/andrey-helldar/pretty-array"
  7537. },
  7538. "funding": [
  7539. {
  7540. "url": "https://money.yandex.ru/to/410012115955701",
  7541. "type": "custom"
  7542. },
  7543. {
  7544. "url": "https://paypal.me/helldar",
  7545. "type": "custom"
  7546. }
  7547. ],
  7548. "time": "2020-11-30T10:28:20+00:00"
  7549. },
  7550. {
  7551. "name": "andrey-helldar/support",
  7552. "version": "v1.30.3",
  7553. "source": {
  7554. "type": "git",
  7555. "url": "https://github.com/andrey-helldar/support.git",
  7556. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464"
  7557. },
  7558. "dist": {
  7559. "type": "zip",
  7560. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/6278f7ba38fdbfb3a22b602a67620e1133703464",
  7561. "reference": "6278f7ba38fdbfb3a22b602a67620e1133703464",
  7562. "shasum": ""
  7563. },
  7564. "require": {
  7565. "ext-ctype": "*",
  7566. "ext-dom": "*",
  7567. "ext-json": "*",
  7568. "ext-mbstring": "*",
  7569. "php": "^7.1.3|^8.0",
  7570. "symfony/deprecation-contracts": "^2.0"
  7571. },
  7572. "require-dev": {
  7573. "ext-bcmath": "*",
  7574. "phpunit/phpunit": "^9.0"
  7575. },
  7576. "suggest": {
  7577. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  7578. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  7579. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  7580. },
  7581. "type": "library",
  7582. "extra": {
  7583. "laravel": {
  7584. "providers": [
  7585. "Helldar\\Support\\ServiceProvider"
  7586. ]
  7587. }
  7588. },
  7589. "autoload": {
  7590. "psr-4": {
  7591. "Helldar\\Support\\": "src"
  7592. },
  7593. "files": [
  7594. "src/helpers/digit.php",
  7595. "src/helpers/dumper.php",
  7596. "src/helpers/http.php",
  7597. "src/helpers/strings.php"
  7598. ]
  7599. },
  7600. "notification-url": "https://packagist.org/downloads/",
  7601. "license": [
  7602. "MIT"
  7603. ],
  7604. "authors": [
  7605. {
  7606. "name": "Andrey Helldar",
  7607. "email": "helldar@ai-rus.com"
  7608. }
  7609. ],
  7610. "description": "Support package is a collection of helpers and tools for projects.",
  7611. "keywords": [
  7612. "framework",
  7613. "laravel",
  7614. "support",
  7615. "symfony",
  7616. "yii",
  7617. "yii2"
  7618. ],
  7619. "support": {
  7620. "issues": "https://github.com/andrey-helldar/support/issues",
  7621. "source": "https://github.com/andrey-helldar/support"
  7622. },
  7623. "funding": [
  7624. {
  7625. "url": "https://money.yandex.ru/to/410012115955701",
  7626. "type": "custom"
  7627. },
  7628. {
  7629. "url": "https://paypal.me/helldar",
  7630. "type": "custom"
  7631. }
  7632. ],
  7633. "time": "2020-12-29T18:59:09+00:00"
  7634. },
  7635. {
  7636. "name": "arcanedev/laravel-lang",
  7637. "version": "8.0.0",
  7638. "source": {
  7639. "type": "git",
  7640. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  7641. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  7642. },
  7643. "dist": {
  7644. "type": "zip",
  7645. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7646. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  7647. "shasum": ""
  7648. },
  7649. "require": {
  7650. "arcanedev/support": "^7.1.2",
  7651. "caouecs/laravel-lang": "^6.0",
  7652. "php": "^7.2.5"
  7653. },
  7654. "require-dev": {
  7655. "mockery/mockery": "^1.3.1",
  7656. "orchestra/testbench": "^5.0",
  7657. "phpunit/phpunit": "^8.5|^9.0"
  7658. },
  7659. "type": "library",
  7660. "extra": {
  7661. "laravel": {
  7662. "providers": [
  7663. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  7664. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  7665. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  7666. ]
  7667. }
  7668. },
  7669. "autoload": {
  7670. "psr-4": {
  7671. "Arcanedev\\LaravelLang\\": "src/"
  7672. }
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "ARCANEDEV",
  7681. "email": "arcanedev.maroc@gmail.com",
  7682. "homepage": "https://github.com/arcanedev-maroc",
  7683. "role": "Developer"
  7684. }
  7685. ],
  7686. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  7687. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  7688. "keywords": [
  7689. "arcanedev",
  7690. "lang",
  7691. "languages",
  7692. "laravel",
  7693. "localisation",
  7694. "localization",
  7695. "trans",
  7696. "translations",
  7697. "validations"
  7698. ],
  7699. "support": {
  7700. "issues": "https://github.com/ARCANEDEV/LaravelLang/issues",
  7701. "source": "https://github.com/ARCANEDEV/LaravelLang/tree/master"
  7702. },
  7703. "time": "2020-03-21T21:29:29+00:00"
  7704. },
  7705. {
  7706. "name": "arcanedev/support",
  7707. "version": "7.1.2",
  7708. "source": {
  7709. "type": "git",
  7710. "url": "https://github.com/ARCANEDEV/Support.git",
  7711. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  7712. },
  7713. "dist": {
  7714. "type": "zip",
  7715. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7716. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  7717. "shasum": ""
  7718. },
  7719. "require": {
  7720. "illuminate/filesystem": "^7.0",
  7721. "illuminate/support": "^7.0",
  7722. "php": "^7.2.5"
  7723. },
  7724. "require-dev": {
  7725. "orchestra/testbench": "^5.0",
  7726. "phpunit/phpunit": "^8.0|^9.0"
  7727. },
  7728. "type": "library",
  7729. "extra": {
  7730. "branch-alias": {
  7731. "dev-master": "7.x-dev"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "psr-4": {
  7736. "Arcanedev\\Support\\": "src/"
  7737. },
  7738. "files": [
  7739. "helpers.php"
  7740. ]
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "MIT"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "ARCANEDEV",
  7749. "email": "arcanedev.maroc@gmail.com",
  7750. "homepage": "https://github.com/arcanedev-maroc"
  7751. }
  7752. ],
  7753. "description": "ARCANEDEV Support Helpers",
  7754. "homepage": "https://github.com/ARCANEDEV/Support",
  7755. "keywords": [
  7756. "arcanedev",
  7757. "arcanesoft",
  7758. "laravel",
  7759. "support"
  7760. ],
  7761. "support": {
  7762. "issues": "https://github.com/ARCANEDEV/Support/issues",
  7763. "source": "https://github.com/ARCANEDEV/Support/tree/7.1.2"
  7764. },
  7765. "time": "2020-03-12T09:28:19+00:00"
  7766. },
  7767. {
  7768. "name": "barryvdh/laravel-debugbar",
  7769. "version": "v3.5.2",
  7770. "source": {
  7771. "type": "git",
  7772. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7773. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b"
  7774. },
  7775. "dist": {
  7776. "type": "zip",
  7777. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  7778. "reference": "cae0a8d1cb89b0f0522f65e60465e16d738e069b",
  7779. "shasum": ""
  7780. },
  7781. "require": {
  7782. "illuminate/routing": "^6|^7|^8",
  7783. "illuminate/session": "^6|^7|^8",
  7784. "illuminate/support": "^6|^7|^8",
  7785. "maximebf/debugbar": "^1.16.3",
  7786. "php": ">=7.2",
  7787. "symfony/debug": "^4.3|^5",
  7788. "symfony/finder": "^4.3|^5"
  7789. },
  7790. "require-dev": {
  7791. "mockery/mockery": "^1.3.3",
  7792. "orchestra/testbench-dusk": "^4|^5|^6",
  7793. "phpunit/phpunit": "^8.5|^9.0",
  7794. "squizlabs/php_codesniffer": "^3.5"
  7795. },
  7796. "type": "library",
  7797. "extra": {
  7798. "branch-alias": {
  7799. "dev-master": "3.5-dev"
  7800. },
  7801. "laravel": {
  7802. "providers": [
  7803. "Barryvdh\\Debugbar\\ServiceProvider"
  7804. ],
  7805. "aliases": {
  7806. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7807. }
  7808. }
  7809. },
  7810. "autoload": {
  7811. "psr-4": {
  7812. "Barryvdh\\Debugbar\\": "src/"
  7813. },
  7814. "files": [
  7815. "src/helpers.php"
  7816. ]
  7817. },
  7818. "notification-url": "https://packagist.org/downloads/",
  7819. "license": [
  7820. "MIT"
  7821. ],
  7822. "authors": [
  7823. {
  7824. "name": "Barry vd. Heuvel",
  7825. "email": "barryvdh@gmail.com"
  7826. }
  7827. ],
  7828. "description": "PHP Debugbar integration for Laravel",
  7829. "keywords": [
  7830. "debug",
  7831. "debugbar",
  7832. "laravel",
  7833. "profiler",
  7834. "webprofiler"
  7835. ],
  7836. "support": {
  7837. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7838. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.5.2"
  7839. },
  7840. "funding": [
  7841. {
  7842. "url": "https://github.com/barryvdh",
  7843. "type": "github"
  7844. }
  7845. ],
  7846. "time": "2021-01-06T14:21:44+00:00"
  7847. },
  7848. {
  7849. "name": "barryvdh/laravel-ide-helper",
  7850. "version": "v2.8.2",
  7851. "source": {
  7852. "type": "git",
  7853. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7854. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  7855. },
  7856. "dist": {
  7857. "type": "zip",
  7858. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7859. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  7860. "shasum": ""
  7861. },
  7862. "require": {
  7863. "barryvdh/reflection-docblock": "^2.0.6",
  7864. "composer/composer": "^1.6 || ^2",
  7865. "doctrine/dbal": "~2.3",
  7866. "ext-json": "*",
  7867. "illuminate/console": "^6 || ^7 || ^8",
  7868. "illuminate/filesystem": "^6 || ^7 || ^8",
  7869. "illuminate/support": "^6 || ^7 || ^8",
  7870. "php": ">=7.2",
  7871. "phpdocumentor/type-resolver": "^1.1.0"
  7872. },
  7873. "require-dev": {
  7874. "ext-pdo_sqlite": "*",
  7875. "friendsofphp/php-cs-fixer": "^2",
  7876. "illuminate/config": "^6 || ^7 || ^8",
  7877. "illuminate/view": "^6 || ^7 || ^8",
  7878. "mockery/mockery": "^1.3.3",
  7879. "orchestra/testbench": "^4 || ^5 || ^6",
  7880. "phpunit/phpunit": "^8.5 || ^9",
  7881. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  7882. "vimeo/psalm": "^3.12"
  7883. },
  7884. "type": "library",
  7885. "extra": {
  7886. "branch-alias": {
  7887. "dev-master": "2.8-dev"
  7888. },
  7889. "laravel": {
  7890. "providers": [
  7891. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7892. ]
  7893. }
  7894. },
  7895. "autoload": {
  7896. "psr-4": {
  7897. "Barryvdh\\LaravelIdeHelper\\": "src"
  7898. }
  7899. },
  7900. "notification-url": "https://packagist.org/downloads/",
  7901. "license": [
  7902. "MIT"
  7903. ],
  7904. "authors": [
  7905. {
  7906. "name": "Barry vd. Heuvel",
  7907. "email": "barryvdh@gmail.com"
  7908. }
  7909. ],
  7910. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7911. "keywords": [
  7912. "autocomplete",
  7913. "codeintel",
  7914. "helper",
  7915. "ide",
  7916. "laravel",
  7917. "netbeans",
  7918. "phpdoc",
  7919. "phpstorm",
  7920. "sublime"
  7921. ],
  7922. "support": {
  7923. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7924. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  7925. },
  7926. "funding": [
  7927. {
  7928. "url": "https://github.com/barryvdh",
  7929. "type": "github"
  7930. }
  7931. ],
  7932. "time": "2020-12-06T08:55:05+00:00"
  7933. },
  7934. {
  7935. "name": "barryvdh/reflection-docblock",
  7936. "version": "v2.0.6",
  7937. "source": {
  7938. "type": "git",
  7939. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7940. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7941. },
  7942. "dist": {
  7943. "type": "zip",
  7944. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7945. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7946. "shasum": ""
  7947. },
  7948. "require": {
  7949. "php": ">=5.3.3"
  7950. },
  7951. "require-dev": {
  7952. "phpunit/phpunit": "~4.0,<4.5"
  7953. },
  7954. "suggest": {
  7955. "dflydev/markdown": "~1.0",
  7956. "erusev/parsedown": "~1.0"
  7957. },
  7958. "type": "library",
  7959. "extra": {
  7960. "branch-alias": {
  7961. "dev-master": "2.0.x-dev"
  7962. }
  7963. },
  7964. "autoload": {
  7965. "psr-0": {
  7966. "Barryvdh": [
  7967. "src/"
  7968. ]
  7969. }
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Mike van Riel",
  7978. "email": "mike.vanriel@naenius.com"
  7979. }
  7980. ],
  7981. "support": {
  7982. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7983. },
  7984. "time": "2018-12-13T10:34:14+00:00"
  7985. },
  7986. {
  7987. "name": "caouecs/laravel-lang",
  7988. "version": "6.1.4",
  7989. "source": {
  7990. "type": "git",
  7991. "url": "https://github.com/caouecs/lang.git",
  7992. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7993. },
  7994. "dist": {
  7995. "type": "zip",
  7996. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7997. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7998. "shasum": ""
  7999. },
  8000. "require": {
  8001. "ext-json": "*"
  8002. },
  8003. "suggest": {
  8004. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  8005. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  8006. "overtrue/laravel-lang": "Command to add languages in your project"
  8007. },
  8008. "type": "library",
  8009. "notification-url": "https://packagist.org/downloads/",
  8010. "license": [
  8011. "MIT"
  8012. ],
  8013. "authors": [
  8014. {
  8015. "name": "caouecs",
  8016. "email": "caouecs@caouecs.net"
  8017. }
  8018. ],
  8019. "description": "Languages for Laravel",
  8020. "keywords": [
  8021. "lang",
  8022. "languages",
  8023. "laravel",
  8024. "lpm"
  8025. ],
  8026. "support": {
  8027. "source": "https://github.com/caouecs/lang/tree/6.1.4"
  8028. },
  8029. "abandoned": "https://github.com/Laravel-Lang/lang",
  8030. "time": "2020-07-13T14:35:32+00:00"
  8031. },
  8032. {
  8033. "name": "composer/composer",
  8034. "version": "2.0.8",
  8035. "source": {
  8036. "type": "git",
  8037. "url": "https://github.com/composer/composer.git",
  8038. "reference": "62139b2806178adb979d76bd3437534a1a9fd490"
  8039. },
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://api.github.com/repos/composer/composer/zipball/62139b2806178adb979d76bd3437534a1a9fd490",
  8043. "reference": "62139b2806178adb979d76bd3437534a1a9fd490",
  8044. "shasum": ""
  8045. },
  8046. "require": {
  8047. "composer/ca-bundle": "^1.0",
  8048. "composer/semver": "^3.0",
  8049. "composer/spdx-licenses": "^1.2",
  8050. "composer/xdebug-handler": "^1.1",
  8051. "justinrainbow/json-schema": "^5.2.10",
  8052. "php": "^5.3.2 || ^7.0 || ^8.0",
  8053. "psr/log": "^1.0",
  8054. "react/promise": "^1.2 || ^2.7",
  8055. "seld/jsonlint": "^1.4",
  8056. "seld/phar-utils": "^1.0",
  8057. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8058. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8059. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  8060. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  8061. },
  8062. "require-dev": {
  8063. "phpspec/prophecy": "^1.10",
  8064. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  8065. },
  8066. "suggest": {
  8067. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  8068. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  8069. "ext-zlib": "Allow gzip compression of HTTP requests"
  8070. },
  8071. "bin": [
  8072. "bin/composer"
  8073. ],
  8074. "type": "library",
  8075. "extra": {
  8076. "branch-alias": {
  8077. "dev-master": "2.0-dev"
  8078. }
  8079. },
  8080. "autoload": {
  8081. "psr-4": {
  8082. "Composer\\": "src/Composer"
  8083. }
  8084. },
  8085. "notification-url": "https://packagist.org/downloads/",
  8086. "license": [
  8087. "MIT"
  8088. ],
  8089. "authors": [
  8090. {
  8091. "name": "Nils Adermann",
  8092. "email": "naderman@naderman.de",
  8093. "homepage": "https://www.naderman.de"
  8094. },
  8095. {
  8096. "name": "Jordi Boggiano",
  8097. "email": "j.boggiano@seld.be",
  8098. "homepage": "https://seld.be"
  8099. }
  8100. ],
  8101. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  8102. "homepage": "https://getcomposer.org/",
  8103. "keywords": [
  8104. "autoload",
  8105. "dependency",
  8106. "package"
  8107. ],
  8108. "support": {
  8109. "irc": "irc://irc.freenode.org/composer",
  8110. "issues": "https://github.com/composer/composer/issues",
  8111. "source": "https://github.com/composer/composer/tree/2.0.8"
  8112. },
  8113. "funding": [
  8114. {
  8115. "url": "https://packagist.com",
  8116. "type": "custom"
  8117. },
  8118. {
  8119. "url": "https://github.com/composer",
  8120. "type": "github"
  8121. },
  8122. {
  8123. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8124. "type": "tidelift"
  8125. }
  8126. ],
  8127. "time": "2020-12-03T16:20:39+00:00"
  8128. },
  8129. {
  8130. "name": "composer/semver",
  8131. "version": "3.2.4",
  8132. "source": {
  8133. "type": "git",
  8134. "url": "https://github.com/composer/semver.git",
  8135. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464"
  8136. },
  8137. "dist": {
  8138. "type": "zip",
  8139. "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8140. "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464",
  8141. "shasum": ""
  8142. },
  8143. "require": {
  8144. "php": "^5.3.2 || ^7.0 || ^8.0"
  8145. },
  8146. "require-dev": {
  8147. "phpstan/phpstan": "^0.12.54",
  8148. "symfony/phpunit-bridge": "^4.2 || ^5"
  8149. },
  8150. "type": "library",
  8151. "extra": {
  8152. "branch-alias": {
  8153. "dev-main": "3.x-dev"
  8154. }
  8155. },
  8156. "autoload": {
  8157. "psr-4": {
  8158. "Composer\\Semver\\": "src"
  8159. }
  8160. },
  8161. "notification-url": "https://packagist.org/downloads/",
  8162. "license": [
  8163. "MIT"
  8164. ],
  8165. "authors": [
  8166. {
  8167. "name": "Nils Adermann",
  8168. "email": "naderman@naderman.de",
  8169. "homepage": "http://www.naderman.de"
  8170. },
  8171. {
  8172. "name": "Jordi Boggiano",
  8173. "email": "j.boggiano@seld.be",
  8174. "homepage": "http://seld.be"
  8175. },
  8176. {
  8177. "name": "Rob Bast",
  8178. "email": "rob.bast@gmail.com",
  8179. "homepage": "http://robbast.nl"
  8180. }
  8181. ],
  8182. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8183. "keywords": [
  8184. "semantic",
  8185. "semver",
  8186. "validation",
  8187. "versioning"
  8188. ],
  8189. "support": {
  8190. "irc": "irc://irc.freenode.org/composer",
  8191. "issues": "https://github.com/composer/semver/issues",
  8192. "source": "https://github.com/composer/semver/tree/3.2.4"
  8193. },
  8194. "funding": [
  8195. {
  8196. "url": "https://packagist.com",
  8197. "type": "custom"
  8198. },
  8199. {
  8200. "url": "https://github.com/composer",
  8201. "type": "github"
  8202. },
  8203. {
  8204. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8205. "type": "tidelift"
  8206. }
  8207. ],
  8208. "time": "2020-11-13T08:59:24+00:00"
  8209. },
  8210. {
  8211. "name": "composer/spdx-licenses",
  8212. "version": "1.5.5",
  8213. "source": {
  8214. "type": "git",
  8215. "url": "https://github.com/composer/spdx-licenses.git",
  8216. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  8217. },
  8218. "dist": {
  8219. "type": "zip",
  8220. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  8221. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  8222. "shasum": ""
  8223. },
  8224. "require": {
  8225. "php": "^5.3.2 || ^7.0 || ^8.0"
  8226. },
  8227. "require-dev": {
  8228. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  8229. },
  8230. "type": "library",
  8231. "extra": {
  8232. "branch-alias": {
  8233. "dev-main": "1.x-dev"
  8234. }
  8235. },
  8236. "autoload": {
  8237. "psr-4": {
  8238. "Composer\\Spdx\\": "src"
  8239. }
  8240. },
  8241. "notification-url": "https://packagist.org/downloads/",
  8242. "license": [
  8243. "MIT"
  8244. ],
  8245. "authors": [
  8246. {
  8247. "name": "Nils Adermann",
  8248. "email": "naderman@naderman.de",
  8249. "homepage": "http://www.naderman.de"
  8250. },
  8251. {
  8252. "name": "Jordi Boggiano",
  8253. "email": "j.boggiano@seld.be",
  8254. "homepage": "http://seld.be"
  8255. },
  8256. {
  8257. "name": "Rob Bast",
  8258. "email": "rob.bast@gmail.com",
  8259. "homepage": "http://robbast.nl"
  8260. }
  8261. ],
  8262. "description": "SPDX licenses list and validation library.",
  8263. "keywords": [
  8264. "license",
  8265. "spdx",
  8266. "validator"
  8267. ],
  8268. "support": {
  8269. "irc": "irc://irc.freenode.org/composer",
  8270. "issues": "https://github.com/composer/spdx-licenses/issues",
  8271. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  8272. },
  8273. "funding": [
  8274. {
  8275. "url": "https://packagist.com",
  8276. "type": "custom"
  8277. },
  8278. {
  8279. "url": "https://github.com/composer",
  8280. "type": "github"
  8281. },
  8282. {
  8283. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8284. "type": "tidelift"
  8285. }
  8286. ],
  8287. "time": "2020-12-03T16:04:16+00:00"
  8288. },
  8289. {
  8290. "name": "composer/xdebug-handler",
  8291. "version": "1.4.5",
  8292. "source": {
  8293. "type": "git",
  8294. "url": "https://github.com/composer/xdebug-handler.git",
  8295. "reference": "f28d44c286812c714741478d968104c5e604a1d4"
  8296. },
  8297. "dist": {
  8298. "type": "zip",
  8299. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4",
  8300. "reference": "f28d44c286812c714741478d968104c5e604a1d4",
  8301. "shasum": ""
  8302. },
  8303. "require": {
  8304. "php": "^5.3.2 || ^7.0 || ^8.0",
  8305. "psr/log": "^1.0"
  8306. },
  8307. "require-dev": {
  8308. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  8309. },
  8310. "type": "library",
  8311. "autoload": {
  8312. "psr-4": {
  8313. "Composer\\XdebugHandler\\": "src"
  8314. }
  8315. },
  8316. "notification-url": "https://packagist.org/downloads/",
  8317. "license": [
  8318. "MIT"
  8319. ],
  8320. "authors": [
  8321. {
  8322. "name": "John Stevenson",
  8323. "email": "john-stevenson@blueyonder.co.uk"
  8324. }
  8325. ],
  8326. "description": "Restarts a process without Xdebug.",
  8327. "keywords": [
  8328. "Xdebug",
  8329. "performance"
  8330. ],
  8331. "support": {
  8332. "irc": "irc://irc.freenode.org/composer",
  8333. "issues": "https://github.com/composer/xdebug-handler/issues",
  8334. "source": "https://github.com/composer/xdebug-handler/tree/1.4.5"
  8335. },
  8336. "funding": [
  8337. {
  8338. "url": "https://packagist.com",
  8339. "type": "custom"
  8340. },
  8341. {
  8342. "url": "https://github.com/composer",
  8343. "type": "github"
  8344. },
  8345. {
  8346. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8347. "type": "tidelift"
  8348. }
  8349. ],
  8350. "time": "2020-11-13T08:04:11+00:00"
  8351. },
  8352. {
  8353. "name": "doctrine/instantiator",
  8354. "version": "1.4.0",
  8355. "source": {
  8356. "type": "git",
  8357. "url": "https://github.com/doctrine/instantiator.git",
  8358. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8359. },
  8360. "dist": {
  8361. "type": "zip",
  8362. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8363. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8364. "shasum": ""
  8365. },
  8366. "require": {
  8367. "php": "^7.1 || ^8.0"
  8368. },
  8369. "require-dev": {
  8370. "doctrine/coding-standard": "^8.0",
  8371. "ext-pdo": "*",
  8372. "ext-phar": "*",
  8373. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8374. "phpstan/phpstan": "^0.12",
  8375. "phpstan/phpstan-phpunit": "^0.12",
  8376. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8377. },
  8378. "type": "library",
  8379. "autoload": {
  8380. "psr-4": {
  8381. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8382. }
  8383. },
  8384. "notification-url": "https://packagist.org/downloads/",
  8385. "license": [
  8386. "MIT"
  8387. ],
  8388. "authors": [
  8389. {
  8390. "name": "Marco Pivetta",
  8391. "email": "ocramius@gmail.com",
  8392. "homepage": "https://ocramius.github.io/"
  8393. }
  8394. ],
  8395. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8396. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8397. "keywords": [
  8398. "constructor",
  8399. "instantiate"
  8400. ],
  8401. "support": {
  8402. "issues": "https://github.com/doctrine/instantiator/issues",
  8403. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8404. },
  8405. "funding": [
  8406. {
  8407. "url": "https://www.doctrine-project.org/sponsorship.html",
  8408. "type": "custom"
  8409. },
  8410. {
  8411. "url": "https://www.patreon.com/phpdoctrine",
  8412. "type": "patreon"
  8413. },
  8414. {
  8415. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8416. "type": "tidelift"
  8417. }
  8418. ],
  8419. "time": "2020-11-10T18:47:58+00:00"
  8420. },
  8421. {
  8422. "name": "facade/flare-client-php",
  8423. "version": "1.3.7",
  8424. "source": {
  8425. "type": "git",
  8426. "url": "https://github.com/facade/flare-client-php.git",
  8427. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492"
  8428. },
  8429. "dist": {
  8430. "type": "zip",
  8431. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8432. "reference": "fd688d3c06658f2b3b5f7bb19f051ee4ddf02492",
  8433. "shasum": ""
  8434. },
  8435. "require": {
  8436. "facade/ignition-contracts": "~1.0",
  8437. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8438. "php": "^7.1|^8.0",
  8439. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8440. "symfony/mime": "^3.4|^4.0|^5.1",
  8441. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8442. },
  8443. "require-dev": {
  8444. "friendsofphp/php-cs-fixer": "^2.14",
  8445. "phpunit/phpunit": "^7.5.16",
  8446. "spatie/phpunit-snapshot-assertions": "^2.0"
  8447. },
  8448. "type": "library",
  8449. "extra": {
  8450. "branch-alias": {
  8451. "dev-master": "1.0-dev"
  8452. }
  8453. },
  8454. "autoload": {
  8455. "psr-4": {
  8456. "Facade\\FlareClient\\": "src"
  8457. },
  8458. "files": [
  8459. "src/helpers.php"
  8460. ]
  8461. },
  8462. "notification-url": "https://packagist.org/downloads/",
  8463. "license": [
  8464. "MIT"
  8465. ],
  8466. "description": "Send PHP errors to Flare",
  8467. "homepage": "https://github.com/facade/flare-client-php",
  8468. "keywords": [
  8469. "exception",
  8470. "facade",
  8471. "flare",
  8472. "reporting"
  8473. ],
  8474. "support": {
  8475. "issues": "https://github.com/facade/flare-client-php/issues",
  8476. "source": "https://github.com/facade/flare-client-php/tree/1.3.7"
  8477. },
  8478. "funding": [
  8479. {
  8480. "url": "https://github.com/spatie",
  8481. "type": "github"
  8482. }
  8483. ],
  8484. "time": "2020-10-21T16:02:39+00:00"
  8485. },
  8486. {
  8487. "name": "facade/ignition",
  8488. "version": "2.5.8",
  8489. "source": {
  8490. "type": "git",
  8491. "url": "https://github.com/facade/ignition.git",
  8492. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472"
  8493. },
  8494. "dist": {
  8495. "type": "zip",
  8496. "url": "https://api.github.com/repos/facade/ignition/zipball/8e907d81244649c5ea746e2ec30c32c5f59df472",
  8497. "reference": "8e907d81244649c5ea746e2ec30c32c5f59df472",
  8498. "shasum": ""
  8499. },
  8500. "require": {
  8501. "ext-json": "*",
  8502. "ext-mbstring": "*",
  8503. "facade/flare-client-php": "^1.3.7",
  8504. "facade/ignition-contracts": "^1.0.2",
  8505. "filp/whoops": "^2.4",
  8506. "illuminate/support": "^7.0|^8.0",
  8507. "monolog/monolog": "^2.0",
  8508. "php": "^7.2.5|^8.0",
  8509. "symfony/console": "^5.0",
  8510. "symfony/var-dumper": "^5.0"
  8511. },
  8512. "require-dev": {
  8513. "friendsofphp/php-cs-fixer": "^2.14",
  8514. "mockery/mockery": "^1.3",
  8515. "orchestra/testbench": "^5.0|^6.0",
  8516. "psalm/plugin-laravel": "^1.2"
  8517. },
  8518. "suggest": {
  8519. "laravel/telescope": "^3.1"
  8520. },
  8521. "type": "library",
  8522. "extra": {
  8523. "branch-alias": {
  8524. "dev-master": "2.x-dev"
  8525. },
  8526. "laravel": {
  8527. "providers": [
  8528. "Facade\\Ignition\\IgnitionServiceProvider"
  8529. ],
  8530. "aliases": {
  8531. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8532. }
  8533. }
  8534. },
  8535. "autoload": {
  8536. "psr-4": {
  8537. "Facade\\Ignition\\": "src"
  8538. },
  8539. "files": [
  8540. "src/helpers.php"
  8541. ]
  8542. },
  8543. "notification-url": "https://packagist.org/downloads/",
  8544. "license": [
  8545. "MIT"
  8546. ],
  8547. "description": "A beautiful error page for Laravel applications.",
  8548. "homepage": "https://github.com/facade/ignition",
  8549. "keywords": [
  8550. "error",
  8551. "flare",
  8552. "laravel",
  8553. "page"
  8554. ],
  8555. "support": {
  8556. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8557. "forum": "https://twitter.com/flareappio",
  8558. "issues": "https://github.com/facade/ignition/issues",
  8559. "source": "https://github.com/facade/ignition"
  8560. },
  8561. "time": "2020-12-29T09:12:55+00:00"
  8562. },
  8563. {
  8564. "name": "facade/ignition-contracts",
  8565. "version": "1.0.2",
  8566. "source": {
  8567. "type": "git",
  8568. "url": "https://github.com/facade/ignition-contracts.git",
  8569. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8570. },
  8571. "dist": {
  8572. "type": "zip",
  8573. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8574. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8575. "shasum": ""
  8576. },
  8577. "require": {
  8578. "php": "^7.3|^8.0"
  8579. },
  8580. "require-dev": {
  8581. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8582. "phpunit/phpunit": "^9.3.11",
  8583. "vimeo/psalm": "^3.17.1"
  8584. },
  8585. "type": "library",
  8586. "autoload": {
  8587. "psr-4": {
  8588. "Facade\\IgnitionContracts\\": "src"
  8589. }
  8590. },
  8591. "notification-url": "https://packagist.org/downloads/",
  8592. "license": [
  8593. "MIT"
  8594. ],
  8595. "authors": [
  8596. {
  8597. "name": "Freek Van der Herten",
  8598. "email": "freek@spatie.be",
  8599. "homepage": "https://flareapp.io",
  8600. "role": "Developer"
  8601. }
  8602. ],
  8603. "description": "Solution contracts for Ignition",
  8604. "homepage": "https://github.com/facade/ignition-contracts",
  8605. "keywords": [
  8606. "contracts",
  8607. "flare",
  8608. "ignition"
  8609. ],
  8610. "support": {
  8611. "issues": "https://github.com/facade/ignition-contracts/issues",
  8612. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8613. },
  8614. "time": "2020-10-16T08:27:54+00:00"
  8615. },
  8616. {
  8617. "name": "fakerphp/faker",
  8618. "version": "v1.13.0",
  8619. "source": {
  8620. "type": "git",
  8621. "url": "https://github.com/FakerPHP/Faker.git",
  8622. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913"
  8623. },
  8624. "dist": {
  8625. "type": "zip",
  8626. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/ab3f5364d01f2c2c16113442fb987d26e4004913",
  8627. "reference": "ab3f5364d01f2c2c16113442fb987d26e4004913",
  8628. "shasum": ""
  8629. },
  8630. "require": {
  8631. "php": "^7.1 || ^8.0"
  8632. },
  8633. "conflict": {
  8634. "fzaninotto/faker": "*"
  8635. },
  8636. "require-dev": {
  8637. "bamarni/composer-bin-plugin": "^1.4.1",
  8638. "ext-intl": "*",
  8639. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4.2"
  8640. },
  8641. "type": "library",
  8642. "autoload": {
  8643. "psr-4": {
  8644. "Faker\\": "src/Faker/"
  8645. }
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "MIT"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "François Zaninotto"
  8654. }
  8655. ],
  8656. "description": "Faker is a PHP library that generates fake data for you.",
  8657. "keywords": [
  8658. "data",
  8659. "faker",
  8660. "fixtures"
  8661. ],
  8662. "support": {
  8663. "issues": "https://github.com/FakerPHP/Faker/issues",
  8664. "source": "https://github.com/FakerPHP/Faker/tree/v1.13.0"
  8665. },
  8666. "time": "2020-12-18T16:50:48+00:00"
  8667. },
  8668. {
  8669. "name": "filp/whoops",
  8670. "version": "2.9.1",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/filp/whoops.git",
  8674. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/filp/whoops/zipball/307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8679. "reference": "307fb34a5ab697461ec4c9db865b20ff2fd40771",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "php": "^5.5.9 || ^7.0 || ^8.0",
  8684. "psr/log": "^1.0.1"
  8685. },
  8686. "require-dev": {
  8687. "mockery/mockery": "^0.9 || ^1.0",
  8688. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8689. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8690. },
  8691. "suggest": {
  8692. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8693. "whoops/soap": "Formats errors as SOAP responses"
  8694. },
  8695. "type": "library",
  8696. "extra": {
  8697. "branch-alias": {
  8698. "dev-master": "2.7-dev"
  8699. }
  8700. },
  8701. "autoload": {
  8702. "psr-4": {
  8703. "Whoops\\": "src/Whoops/"
  8704. }
  8705. },
  8706. "notification-url": "https://packagist.org/downloads/",
  8707. "license": [
  8708. "MIT"
  8709. ],
  8710. "authors": [
  8711. {
  8712. "name": "Filipe Dobreira",
  8713. "homepage": "https://github.com/filp",
  8714. "role": "Developer"
  8715. }
  8716. ],
  8717. "description": "php error handling for cool kids",
  8718. "homepage": "https://filp.github.io/whoops/",
  8719. "keywords": [
  8720. "error",
  8721. "exception",
  8722. "handling",
  8723. "library",
  8724. "throwable",
  8725. "whoops"
  8726. ],
  8727. "support": {
  8728. "issues": "https://github.com/filp/whoops/issues",
  8729. "source": "https://github.com/filp/whoops/tree/2.9.1"
  8730. },
  8731. "time": "2020-11-01T12:00:00+00:00"
  8732. },
  8733. {
  8734. "name": "hamcrest/hamcrest-php",
  8735. "version": "v2.0.1",
  8736. "source": {
  8737. "type": "git",
  8738. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8739. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8740. },
  8741. "dist": {
  8742. "type": "zip",
  8743. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8744. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8745. "shasum": ""
  8746. },
  8747. "require": {
  8748. "php": "^5.3|^7.0|^8.0"
  8749. },
  8750. "replace": {
  8751. "cordoval/hamcrest-php": "*",
  8752. "davedevelopment/hamcrest-php": "*",
  8753. "kodova/hamcrest-php": "*"
  8754. },
  8755. "require-dev": {
  8756. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8757. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8758. },
  8759. "type": "library",
  8760. "extra": {
  8761. "branch-alias": {
  8762. "dev-master": "2.1-dev"
  8763. }
  8764. },
  8765. "autoload": {
  8766. "classmap": [
  8767. "hamcrest"
  8768. ]
  8769. },
  8770. "notification-url": "https://packagist.org/downloads/",
  8771. "license": [
  8772. "BSD-3-Clause"
  8773. ],
  8774. "description": "This is the PHP port of Hamcrest Matchers",
  8775. "keywords": [
  8776. "test"
  8777. ],
  8778. "support": {
  8779. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8780. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8781. },
  8782. "time": "2020-07-09T08:09:16+00:00"
  8783. },
  8784. {
  8785. "name": "justinrainbow/json-schema",
  8786. "version": "5.2.10",
  8787. "source": {
  8788. "type": "git",
  8789. "url": "https://github.com/justinrainbow/json-schema.git",
  8790. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8791. },
  8792. "dist": {
  8793. "type": "zip",
  8794. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8795. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8796. "shasum": ""
  8797. },
  8798. "require": {
  8799. "php": ">=5.3.3"
  8800. },
  8801. "require-dev": {
  8802. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8803. "json-schema/json-schema-test-suite": "1.2.0",
  8804. "phpunit/phpunit": "^4.8.35"
  8805. },
  8806. "bin": [
  8807. "bin/validate-json"
  8808. ],
  8809. "type": "library",
  8810. "extra": {
  8811. "branch-alias": {
  8812. "dev-master": "5.0.x-dev"
  8813. }
  8814. },
  8815. "autoload": {
  8816. "psr-4": {
  8817. "JsonSchema\\": "src/JsonSchema/"
  8818. }
  8819. },
  8820. "notification-url": "https://packagist.org/downloads/",
  8821. "license": [
  8822. "MIT"
  8823. ],
  8824. "authors": [
  8825. {
  8826. "name": "Bruno Prieto Reis",
  8827. "email": "bruno.p.reis@gmail.com"
  8828. },
  8829. {
  8830. "name": "Justin Rainbow",
  8831. "email": "justin.rainbow@gmail.com"
  8832. },
  8833. {
  8834. "name": "Igor Wiedler",
  8835. "email": "igor@wiedler.ch"
  8836. },
  8837. {
  8838. "name": "Robert Schönthal",
  8839. "email": "seroscho@googlemail.com"
  8840. }
  8841. ],
  8842. "description": "A library to validate a json schema.",
  8843. "homepage": "https://github.com/justinrainbow/json-schema",
  8844. "keywords": [
  8845. "json",
  8846. "schema"
  8847. ],
  8848. "support": {
  8849. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8850. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10"
  8851. },
  8852. "time": "2020-05-27T16:41:55+00:00"
  8853. },
  8854. {
  8855. "name": "laravel/telescope",
  8856. "version": "v3.5.1",
  8857. "source": {
  8858. "type": "git",
  8859. "url": "https://github.com/laravel/telescope.git",
  8860. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8861. },
  8862. "dist": {
  8863. "type": "zip",
  8864. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8865. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8866. "shasum": ""
  8867. },
  8868. "require": {
  8869. "ext-json": "*",
  8870. "laravel/framework": "^6.0|^7.0",
  8871. "moontoast/math": "^1.1",
  8872. "php": "^7.2",
  8873. "symfony/var-dumper": "^4.4|^5.0"
  8874. },
  8875. "require-dev": {
  8876. "ext-gd": "*",
  8877. "orchestra/testbench": "^4.0|^5.0"
  8878. },
  8879. "type": "library",
  8880. "extra": {
  8881. "branch-alias": {
  8882. "dev-master": "3.x-dev"
  8883. },
  8884. "laravel": {
  8885. "providers": [
  8886. "Laravel\\Telescope\\TelescopeServiceProvider"
  8887. ]
  8888. }
  8889. },
  8890. "autoload": {
  8891. "psr-4": {
  8892. "Laravel\\Telescope\\": "src/"
  8893. }
  8894. },
  8895. "notification-url": "https://packagist.org/downloads/",
  8896. "license": [
  8897. "MIT"
  8898. ],
  8899. "authors": [
  8900. {
  8901. "name": "Taylor Otwell",
  8902. "email": "taylor@laravel.com"
  8903. },
  8904. {
  8905. "name": "Mohamed Said",
  8906. "email": "mohamed@laravel.com"
  8907. }
  8908. ],
  8909. "description": "An elegant debug assistant for the Laravel framework.",
  8910. "keywords": [
  8911. "debugging",
  8912. "laravel",
  8913. "monitoring"
  8914. ],
  8915. "support": {
  8916. "issues": "https://github.com/laravel/telescope/issues",
  8917. "source": "https://github.com/laravel/telescope/tree/v3.5.1"
  8918. },
  8919. "time": "2020-07-28T19:12:33+00:00"
  8920. },
  8921. {
  8922. "name": "maximebf/debugbar",
  8923. "version": "v1.16.4",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/maximebf/php-debugbar.git",
  8927. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8932. "reference": "c86c717e4bf3c6d98422da5c38bfa7b0f494b04c",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "php": "^7.1|^8",
  8937. "psr/log": "^1.0",
  8938. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8939. },
  8940. "require-dev": {
  8941. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8942. },
  8943. "suggest": {
  8944. "kriswallsmith/assetic": "The best way to manage assets",
  8945. "monolog/monolog": "Log using Monolog",
  8946. "predis/predis": "Redis storage"
  8947. },
  8948. "type": "library",
  8949. "extra": {
  8950. "branch-alias": {
  8951. "dev-master": "1.16-dev"
  8952. }
  8953. },
  8954. "autoload": {
  8955. "psr-4": {
  8956. "DebugBar\\": "src/DebugBar/"
  8957. }
  8958. },
  8959. "notification-url": "https://packagist.org/downloads/",
  8960. "license": [
  8961. "MIT"
  8962. ],
  8963. "authors": [
  8964. {
  8965. "name": "Maxime Bouroumeau-Fuseau",
  8966. "email": "maxime.bouroumeau@gmail.com",
  8967. "homepage": "http://maximebf.com"
  8968. },
  8969. {
  8970. "name": "Barry vd. Heuvel",
  8971. "email": "barryvdh@gmail.com"
  8972. }
  8973. ],
  8974. "description": "Debug bar in the browser for php application",
  8975. "homepage": "https://github.com/maximebf/php-debugbar",
  8976. "keywords": [
  8977. "debug",
  8978. "debugbar"
  8979. ],
  8980. "support": {
  8981. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8982. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.4"
  8983. },
  8984. "time": "2020-12-07T10:48:48+00:00"
  8985. },
  8986. {
  8987. "name": "mockery/mockery",
  8988. "version": "1.4.2",
  8989. "source": {
  8990. "type": "git",
  8991. "url": "https://github.com/mockery/mockery.git",
  8992. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8993. },
  8994. "dist": {
  8995. "type": "zip",
  8996. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8997. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8998. "shasum": ""
  8999. },
  9000. "require": {
  9001. "hamcrest/hamcrest-php": "^2.0.1",
  9002. "lib-pcre": ">=7.0",
  9003. "php": "^7.3 || ^8.0"
  9004. },
  9005. "conflict": {
  9006. "phpunit/phpunit": "<8.0"
  9007. },
  9008. "require-dev": {
  9009. "phpunit/phpunit": "^8.5 || ^9.3"
  9010. },
  9011. "type": "library",
  9012. "extra": {
  9013. "branch-alias": {
  9014. "dev-master": "1.4.x-dev"
  9015. }
  9016. },
  9017. "autoload": {
  9018. "psr-0": {
  9019. "Mockery": "library/"
  9020. }
  9021. },
  9022. "notification-url": "https://packagist.org/downloads/",
  9023. "license": [
  9024. "BSD-3-Clause"
  9025. ],
  9026. "authors": [
  9027. {
  9028. "name": "Pádraic Brady",
  9029. "email": "padraic.brady@gmail.com",
  9030. "homepage": "http://blog.astrumfutura.com"
  9031. },
  9032. {
  9033. "name": "Dave Marshall",
  9034. "email": "dave.marshall@atstsolutions.co.uk",
  9035. "homepage": "http://davedevelopment.co.uk"
  9036. }
  9037. ],
  9038. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9039. "homepage": "https://github.com/mockery/mockery",
  9040. "keywords": [
  9041. "BDD",
  9042. "TDD",
  9043. "library",
  9044. "mock",
  9045. "mock objects",
  9046. "mockery",
  9047. "stub",
  9048. "test",
  9049. "test double",
  9050. "testing"
  9051. ],
  9052. "support": {
  9053. "issues": "https://github.com/mockery/mockery/issues",
  9054. "source": "https://github.com/mockery/mockery/tree/master"
  9055. },
  9056. "time": "2020-08-11T18:10:13+00:00"
  9057. },
  9058. {
  9059. "name": "moontoast/math",
  9060. "version": "1.2.1",
  9061. "source": {
  9062. "type": "git",
  9063. "url": "https://github.com/ramsey/moontoast-math.git",
  9064. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  9065. },
  9066. "dist": {
  9067. "type": "zip",
  9068. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  9069. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  9070. "shasum": ""
  9071. },
  9072. "require": {
  9073. "php": ">=5.3.3",
  9074. "phpseclib/bcmath_compat": ">=1.0.3"
  9075. },
  9076. "require-dev": {
  9077. "jakub-onderka/php-parallel-lint": "^0.9.0",
  9078. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  9079. "satooshi/php-coveralls": "^0.6.1",
  9080. "squizlabs/php_codesniffer": "^2.3"
  9081. },
  9082. "type": "library",
  9083. "autoload": {
  9084. "psr-4": {
  9085. "Moontoast\\Math\\": "src/Moontoast/Math",
  9086. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  9087. }
  9088. },
  9089. "notification-url": "https://packagist.org/downloads/",
  9090. "license": [
  9091. "Apache-2.0"
  9092. ],
  9093. "authors": [
  9094. {
  9095. "name": "Ben Ramsey",
  9096. "email": "ben@benramsey.com",
  9097. "homepage": "https://benramsey.com"
  9098. }
  9099. ],
  9100. "description": "A mathematics library, providing functionality for large numbers",
  9101. "homepage": "https://github.com/ramsey/moontoast-math",
  9102. "keywords": [
  9103. "bcmath",
  9104. "math"
  9105. ],
  9106. "support": {
  9107. "issues": "https://github.com/ramsey/moontoast-math/issues",
  9108. "source": "https://github.com/ramsey/moontoast-math"
  9109. },
  9110. "abandoned": "brick/math",
  9111. "time": "2020-01-05T04:49:34+00:00"
  9112. },
  9113. {
  9114. "name": "myclabs/deep-copy",
  9115. "version": "1.10.2",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/myclabs/DeepCopy.git",
  9119. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9124. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "php": "^7.1 || ^8.0"
  9129. },
  9130. "replace": {
  9131. "myclabs/deep-copy": "self.version"
  9132. },
  9133. "require-dev": {
  9134. "doctrine/collections": "^1.0",
  9135. "doctrine/common": "^2.6",
  9136. "phpunit/phpunit": "^7.1"
  9137. },
  9138. "type": "library",
  9139. "autoload": {
  9140. "psr-4": {
  9141. "DeepCopy\\": "src/DeepCopy/"
  9142. },
  9143. "files": [
  9144. "src/DeepCopy/deep_copy.php"
  9145. ]
  9146. },
  9147. "notification-url": "https://packagist.org/downloads/",
  9148. "license": [
  9149. "MIT"
  9150. ],
  9151. "description": "Create deep copies (clones) of your objects",
  9152. "keywords": [
  9153. "clone",
  9154. "copy",
  9155. "duplicate",
  9156. "object",
  9157. "object graph"
  9158. ],
  9159. "support": {
  9160. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9161. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  9162. },
  9163. "funding": [
  9164. {
  9165. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9166. "type": "tidelift"
  9167. }
  9168. ],
  9169. "time": "2020-11-13T09:40:50+00:00"
  9170. },
  9171. {
  9172. "name": "nunomaduro/collision",
  9173. "version": "v4.3.0",
  9174. "source": {
  9175. "type": "git",
  9176. "url": "https://github.com/nunomaduro/collision.git",
  9177. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  9178. },
  9179. "dist": {
  9180. "type": "zip",
  9181. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  9182. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  9183. "shasum": ""
  9184. },
  9185. "require": {
  9186. "facade/ignition-contracts": "^1.0",
  9187. "filp/whoops": "^2.4",
  9188. "php": "^7.2.5 || ^8.0",
  9189. "symfony/console": "^5.0"
  9190. },
  9191. "require-dev": {
  9192. "facade/ignition": "^2.0",
  9193. "fideloper/proxy": "^4.2",
  9194. "friendsofphp/php-cs-fixer": "^2.16",
  9195. "fruitcake/laravel-cors": "^1.0",
  9196. "laravel/framework": "^7.0",
  9197. "laravel/tinker": "^2.0",
  9198. "nunomaduro/larastan": "^0.6",
  9199. "orchestra/testbench": "^5.0",
  9200. "phpstan/phpstan": "^0.12.3",
  9201. "phpunit/phpunit": "^8.5.1 || ^9.0"
  9202. },
  9203. "type": "library",
  9204. "extra": {
  9205. "laravel": {
  9206. "providers": [
  9207. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9208. ]
  9209. }
  9210. },
  9211. "autoload": {
  9212. "psr-4": {
  9213. "NunoMaduro\\Collision\\": "src/"
  9214. }
  9215. },
  9216. "notification-url": "https://packagist.org/downloads/",
  9217. "license": [
  9218. "MIT"
  9219. ],
  9220. "authors": [
  9221. {
  9222. "name": "Nuno Maduro",
  9223. "email": "enunomaduro@gmail.com"
  9224. }
  9225. ],
  9226. "description": "Cli error handling for console/command-line PHP applications.",
  9227. "keywords": [
  9228. "artisan",
  9229. "cli",
  9230. "command-line",
  9231. "console",
  9232. "error",
  9233. "handling",
  9234. "laravel",
  9235. "laravel-zero",
  9236. "php",
  9237. "symfony"
  9238. ],
  9239. "support": {
  9240. "issues": "https://github.com/nunomaduro/collision/issues",
  9241. "source": "https://github.com/nunomaduro/collision"
  9242. },
  9243. "funding": [
  9244. {
  9245. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9246. "type": "custom"
  9247. },
  9248. {
  9249. "url": "https://github.com/nunomaduro",
  9250. "type": "github"
  9251. },
  9252. {
  9253. "url": "https://www.patreon.com/nunomaduro",
  9254. "type": "patreon"
  9255. }
  9256. ],
  9257. "time": "2020-10-29T15:12:23+00:00"
  9258. },
  9259. {
  9260. "name": "paragonie/constant_time_encoding",
  9261. "version": "v2.4.0",
  9262. "source": {
  9263. "type": "git",
  9264. "url": "https://github.com/paragonie/constant_time_encoding.git",
  9265. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c"
  9266. },
  9267. "dist": {
  9268. "type": "zip",
  9269. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9270. "reference": "f34c2b11eb9d2c9318e13540a1dbc2a3afbd939c",
  9271. "shasum": ""
  9272. },
  9273. "require": {
  9274. "php": "^7|^8"
  9275. },
  9276. "require-dev": {
  9277. "phpunit/phpunit": "^6|^7|^8|^9",
  9278. "vimeo/psalm": "^1|^2|^3|^4"
  9279. },
  9280. "type": "library",
  9281. "autoload": {
  9282. "psr-4": {
  9283. "ParagonIE\\ConstantTime\\": "src/"
  9284. }
  9285. },
  9286. "notification-url": "https://packagist.org/downloads/",
  9287. "license": [
  9288. "MIT"
  9289. ],
  9290. "authors": [
  9291. {
  9292. "name": "Paragon Initiative Enterprises",
  9293. "email": "security@paragonie.com",
  9294. "homepage": "https://paragonie.com",
  9295. "role": "Maintainer"
  9296. },
  9297. {
  9298. "name": "Steve 'Sc00bz' Thomas",
  9299. "email": "steve@tobtu.com",
  9300. "homepage": "https://www.tobtu.com",
  9301. "role": "Original Developer"
  9302. }
  9303. ],
  9304. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  9305. "keywords": [
  9306. "base16",
  9307. "base32",
  9308. "base32_decode",
  9309. "base32_encode",
  9310. "base64",
  9311. "base64_decode",
  9312. "base64_encode",
  9313. "bin2hex",
  9314. "encoding",
  9315. "hex",
  9316. "hex2bin",
  9317. "rfc4648"
  9318. ],
  9319. "support": {
  9320. "email": "info@paragonie.com",
  9321. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  9322. "source": "https://github.com/paragonie/constant_time_encoding"
  9323. },
  9324. "time": "2020-12-06T15:14:20+00:00"
  9325. },
  9326. {
  9327. "name": "paragonie/random_compat",
  9328. "version": "v2.0.19",
  9329. "source": {
  9330. "type": "git",
  9331. "url": "https://github.com/paragonie/random_compat.git",
  9332. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241"
  9333. },
  9334. "dist": {
  9335. "type": "zip",
  9336. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9337. "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241",
  9338. "shasum": ""
  9339. },
  9340. "require": {
  9341. "php": ">=5.2.0"
  9342. },
  9343. "require-dev": {
  9344. "phpunit/phpunit": "4.*|5.*"
  9345. },
  9346. "suggest": {
  9347. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  9348. },
  9349. "type": "library",
  9350. "autoload": {
  9351. "files": [
  9352. "lib/random.php"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "MIT"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Paragon Initiative Enterprises",
  9362. "email": "security@paragonie.com",
  9363. "homepage": "https://paragonie.com"
  9364. }
  9365. ],
  9366. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  9367. "keywords": [
  9368. "csprng",
  9369. "polyfill",
  9370. "pseudorandom",
  9371. "random"
  9372. ],
  9373. "support": {
  9374. "email": "info@paragonie.com",
  9375. "issues": "https://github.com/paragonie/random_compat/issues",
  9376. "source": "https://github.com/paragonie/random_compat"
  9377. },
  9378. "time": "2020-10-15T10:06:57+00:00"
  9379. },
  9380. {
  9381. "name": "phar-io/manifest",
  9382. "version": "2.0.1",
  9383. "source": {
  9384. "type": "git",
  9385. "url": "https://github.com/phar-io/manifest.git",
  9386. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  9387. },
  9388. "dist": {
  9389. "type": "zip",
  9390. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9391. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  9392. "shasum": ""
  9393. },
  9394. "require": {
  9395. "ext-dom": "*",
  9396. "ext-phar": "*",
  9397. "ext-xmlwriter": "*",
  9398. "phar-io/version": "^3.0.1",
  9399. "php": "^7.2 || ^8.0"
  9400. },
  9401. "type": "library",
  9402. "extra": {
  9403. "branch-alias": {
  9404. "dev-master": "2.0.x-dev"
  9405. }
  9406. },
  9407. "autoload": {
  9408. "classmap": [
  9409. "src/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "BSD-3-Clause"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Arne Blankerts",
  9419. "email": "arne@blankerts.de",
  9420. "role": "Developer"
  9421. },
  9422. {
  9423. "name": "Sebastian Heuer",
  9424. "email": "sebastian@phpeople.de",
  9425. "role": "Developer"
  9426. },
  9427. {
  9428. "name": "Sebastian Bergmann",
  9429. "email": "sebastian@phpunit.de",
  9430. "role": "Developer"
  9431. }
  9432. ],
  9433. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9434. "support": {
  9435. "issues": "https://github.com/phar-io/manifest/issues",
  9436. "source": "https://github.com/phar-io/manifest/tree/master"
  9437. },
  9438. "time": "2020-06-27T14:33:11+00:00"
  9439. },
  9440. {
  9441. "name": "phar-io/version",
  9442. "version": "3.0.4",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/phar-io/version.git",
  9446. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/phar-io/version/zipball/e4782611070e50613683d2b9a57730e9a3ba5451",
  9451. "reference": "e4782611070e50613683d2b9a57730e9a3ba5451",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "php": "^7.2 || ^8.0"
  9456. },
  9457. "type": "library",
  9458. "autoload": {
  9459. "classmap": [
  9460. "src/"
  9461. ]
  9462. },
  9463. "notification-url": "https://packagist.org/downloads/",
  9464. "license": [
  9465. "BSD-3-Clause"
  9466. ],
  9467. "authors": [
  9468. {
  9469. "name": "Arne Blankerts",
  9470. "email": "arne@blankerts.de",
  9471. "role": "Developer"
  9472. },
  9473. {
  9474. "name": "Sebastian Heuer",
  9475. "email": "sebastian@phpeople.de",
  9476. "role": "Developer"
  9477. },
  9478. {
  9479. "name": "Sebastian Bergmann",
  9480. "email": "sebastian@phpunit.de",
  9481. "role": "Developer"
  9482. }
  9483. ],
  9484. "description": "Library for handling version information and constraints",
  9485. "support": {
  9486. "issues": "https://github.com/phar-io/version/issues",
  9487. "source": "https://github.com/phar-io/version/tree/3.0.4"
  9488. },
  9489. "time": "2020-12-13T23:18:30+00:00"
  9490. },
  9491. {
  9492. "name": "phpdocumentor/reflection-common",
  9493. "version": "2.2.0",
  9494. "source": {
  9495. "type": "git",
  9496. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9497. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9498. },
  9499. "dist": {
  9500. "type": "zip",
  9501. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9502. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9503. "shasum": ""
  9504. },
  9505. "require": {
  9506. "php": "^7.2 || ^8.0"
  9507. },
  9508. "type": "library",
  9509. "extra": {
  9510. "branch-alias": {
  9511. "dev-2.x": "2.x-dev"
  9512. }
  9513. },
  9514. "autoload": {
  9515. "psr-4": {
  9516. "phpDocumentor\\Reflection\\": "src/"
  9517. }
  9518. },
  9519. "notification-url": "https://packagist.org/downloads/",
  9520. "license": [
  9521. "MIT"
  9522. ],
  9523. "authors": [
  9524. {
  9525. "name": "Jaap van Otterdijk",
  9526. "email": "opensource@ijaap.nl"
  9527. }
  9528. ],
  9529. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9530. "homepage": "http://www.phpdoc.org",
  9531. "keywords": [
  9532. "FQSEN",
  9533. "phpDocumentor",
  9534. "phpdoc",
  9535. "reflection",
  9536. "static analysis"
  9537. ],
  9538. "support": {
  9539. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9540. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9541. },
  9542. "time": "2020-06-27T09:03:43+00:00"
  9543. },
  9544. {
  9545. "name": "phpdocumentor/reflection-docblock",
  9546. "version": "5.2.2",
  9547. "source": {
  9548. "type": "git",
  9549. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9550. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  9551. },
  9552. "dist": {
  9553. "type": "zip",
  9554. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  9555. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  9556. "shasum": ""
  9557. },
  9558. "require": {
  9559. "ext-filter": "*",
  9560. "php": "^7.2 || ^8.0",
  9561. "phpdocumentor/reflection-common": "^2.2",
  9562. "phpdocumentor/type-resolver": "^1.3",
  9563. "webmozart/assert": "^1.9.1"
  9564. },
  9565. "require-dev": {
  9566. "mockery/mockery": "~1.3.2"
  9567. },
  9568. "type": "library",
  9569. "extra": {
  9570. "branch-alias": {
  9571. "dev-master": "5.x-dev"
  9572. }
  9573. },
  9574. "autoload": {
  9575. "psr-4": {
  9576. "phpDocumentor\\Reflection\\": "src"
  9577. }
  9578. },
  9579. "notification-url": "https://packagist.org/downloads/",
  9580. "license": [
  9581. "MIT"
  9582. ],
  9583. "authors": [
  9584. {
  9585. "name": "Mike van Riel",
  9586. "email": "me@mikevanriel.com"
  9587. },
  9588. {
  9589. "name": "Jaap van Otterdijk",
  9590. "email": "account@ijaap.nl"
  9591. }
  9592. ],
  9593. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9594. "support": {
  9595. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9596. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  9597. },
  9598. "time": "2020-09-03T19:13:55+00:00"
  9599. },
  9600. {
  9601. "name": "phpdocumentor/type-resolver",
  9602. "version": "1.4.0",
  9603. "source": {
  9604. "type": "git",
  9605. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9606. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  9607. },
  9608. "dist": {
  9609. "type": "zip",
  9610. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9611. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  9612. "shasum": ""
  9613. },
  9614. "require": {
  9615. "php": "^7.2 || ^8.0",
  9616. "phpdocumentor/reflection-common": "^2.0"
  9617. },
  9618. "require-dev": {
  9619. "ext-tokenizer": "*"
  9620. },
  9621. "type": "library",
  9622. "extra": {
  9623. "branch-alias": {
  9624. "dev-1.x": "1.x-dev"
  9625. }
  9626. },
  9627. "autoload": {
  9628. "psr-4": {
  9629. "phpDocumentor\\Reflection\\": "src"
  9630. }
  9631. },
  9632. "notification-url": "https://packagist.org/downloads/",
  9633. "license": [
  9634. "MIT"
  9635. ],
  9636. "authors": [
  9637. {
  9638. "name": "Mike van Riel",
  9639. "email": "me@mikevanriel.com"
  9640. }
  9641. ],
  9642. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9643. "support": {
  9644. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9645. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  9646. },
  9647. "time": "2020-09-17T18:55:26+00:00"
  9648. },
  9649. {
  9650. "name": "phpseclib/bcmath_compat",
  9651. "version": "2.0.0",
  9652. "source": {
  9653. "type": "git",
  9654. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9655. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c"
  9656. },
  9657. "dist": {
  9658. "type": "zip",
  9659. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9660. "reference": "fd896dfceffc13d8cf45d2ee3470777a70026f3c",
  9661. "shasum": ""
  9662. },
  9663. "require": {
  9664. "phpseclib/phpseclib": "^3.0"
  9665. },
  9666. "provide": {
  9667. "ext-bcmath": "8.0.0"
  9668. },
  9669. "require-dev": {
  9670. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  9671. "squizlabs/php_codesniffer": "^3.0"
  9672. },
  9673. "suggest": {
  9674. "ext-gmp": "Will enable faster math operations"
  9675. },
  9676. "type": "library",
  9677. "autoload": {
  9678. "files": [
  9679. "lib/bcmath.php"
  9680. ],
  9681. "psr-4": {
  9682. "bcmath_compat\\": "src"
  9683. }
  9684. },
  9685. "notification-url": "https://packagist.org/downloads/",
  9686. "license": [
  9687. "MIT"
  9688. ],
  9689. "authors": [
  9690. {
  9691. "name": "Jim Wigginton",
  9692. "email": "terrafrost@php.net",
  9693. "homepage": "http://phpseclib.sourceforge.net"
  9694. }
  9695. ],
  9696. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9697. "keywords": [
  9698. "BigInteger",
  9699. "bcmath",
  9700. "bigdecimal",
  9701. "math",
  9702. "polyfill"
  9703. ],
  9704. "support": {
  9705. "email": "terrafrost@php.net",
  9706. "issues": "https://github.com/phpseclib/bcmath_compat/issues",
  9707. "source": "https://github.com/phpseclib/bcmath_compat"
  9708. },
  9709. "time": "2020-12-22T16:38:51+00:00"
  9710. },
  9711. {
  9712. "name": "phpseclib/phpseclib",
  9713. "version": "3.0.2",
  9714. "source": {
  9715. "type": "git",
  9716. "url": "https://github.com/phpseclib/phpseclib.git",
  9717. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995"
  9718. },
  9719. "dist": {
  9720. "type": "zip",
  9721. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9722. "reference": "7a9418e4e02a3da7950b6b85c30e694d68daf995",
  9723. "shasum": ""
  9724. },
  9725. "require": {
  9726. "paragonie/constant_time_encoding": "^1|^2",
  9727. "paragonie/random_compat": "^1.4|^2.0",
  9728. "php": ">=5.6.1"
  9729. },
  9730. "require-dev": {
  9731. "phing/phing": "~2.7",
  9732. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  9733. "squizlabs/php_codesniffer": "~2.0"
  9734. },
  9735. "suggest": {
  9736. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9737. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9738. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9739. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9740. },
  9741. "type": "library",
  9742. "autoload": {
  9743. "files": [
  9744. "phpseclib/bootstrap.php"
  9745. ],
  9746. "psr-4": {
  9747. "phpseclib3\\": "phpseclib/"
  9748. }
  9749. },
  9750. "notification-url": "https://packagist.org/downloads/",
  9751. "license": [
  9752. "MIT"
  9753. ],
  9754. "authors": [
  9755. {
  9756. "name": "Jim Wigginton",
  9757. "email": "terrafrost@php.net",
  9758. "role": "Lead Developer"
  9759. },
  9760. {
  9761. "name": "Patrick Monnerat",
  9762. "email": "pm@datasphere.ch",
  9763. "role": "Developer"
  9764. },
  9765. {
  9766. "name": "Andreas Fischer",
  9767. "email": "bantu@phpbb.com",
  9768. "role": "Developer"
  9769. },
  9770. {
  9771. "name": "Hans-Jürgen Petrich",
  9772. "email": "petrich@tronic-media.com",
  9773. "role": "Developer"
  9774. },
  9775. {
  9776. "name": "Graham Campbell",
  9777. "email": "graham@alt-three.com",
  9778. "role": "Developer"
  9779. }
  9780. ],
  9781. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9782. "homepage": "http://phpseclib.sourceforge.net",
  9783. "keywords": [
  9784. "BigInteger",
  9785. "aes",
  9786. "asn.1",
  9787. "asn1",
  9788. "blowfish",
  9789. "crypto",
  9790. "cryptography",
  9791. "encryption",
  9792. "rsa",
  9793. "security",
  9794. "sftp",
  9795. "signature",
  9796. "signing",
  9797. "ssh",
  9798. "twofish",
  9799. "x.509",
  9800. "x509"
  9801. ],
  9802. "support": {
  9803. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9804. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.2"
  9805. },
  9806. "funding": [
  9807. {
  9808. "url": "https://github.com/terrafrost",
  9809. "type": "github"
  9810. },
  9811. {
  9812. "url": "https://www.patreon.com/phpseclib",
  9813. "type": "patreon"
  9814. },
  9815. {
  9816. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9817. "type": "tidelift"
  9818. }
  9819. ],
  9820. "time": "2020-12-23T16:39:00+00:00"
  9821. },
  9822. {
  9823. "name": "phpspec/prophecy",
  9824. "version": "1.12.2",
  9825. "source": {
  9826. "type": "git",
  9827. "url": "https://github.com/phpspec/prophecy.git",
  9828. "reference": "245710e971a030f42e08f4912863805570f23d39"
  9829. },
  9830. "dist": {
  9831. "type": "zip",
  9832. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/245710e971a030f42e08f4912863805570f23d39",
  9833. "reference": "245710e971a030f42e08f4912863805570f23d39",
  9834. "shasum": ""
  9835. },
  9836. "require": {
  9837. "doctrine/instantiator": "^1.2",
  9838. "php": "^7.2 || ~8.0, <8.1",
  9839. "phpdocumentor/reflection-docblock": "^5.2",
  9840. "sebastian/comparator": "^3.0 || ^4.0",
  9841. "sebastian/recursion-context": "^3.0 || ^4.0"
  9842. },
  9843. "require-dev": {
  9844. "phpspec/phpspec": "^6.0",
  9845. "phpunit/phpunit": "^8.0 || ^9.0"
  9846. },
  9847. "type": "library",
  9848. "extra": {
  9849. "branch-alias": {
  9850. "dev-master": "1.11.x-dev"
  9851. }
  9852. },
  9853. "autoload": {
  9854. "psr-4": {
  9855. "Prophecy\\": "src/Prophecy"
  9856. }
  9857. },
  9858. "notification-url": "https://packagist.org/downloads/",
  9859. "license": [
  9860. "MIT"
  9861. ],
  9862. "authors": [
  9863. {
  9864. "name": "Konstantin Kudryashov",
  9865. "email": "ever.zet@gmail.com",
  9866. "homepage": "http://everzet.com"
  9867. },
  9868. {
  9869. "name": "Marcello Duarte",
  9870. "email": "marcello.duarte@gmail.com"
  9871. }
  9872. ],
  9873. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9874. "homepage": "https://github.com/phpspec/prophecy",
  9875. "keywords": [
  9876. "Double",
  9877. "Dummy",
  9878. "fake",
  9879. "mock",
  9880. "spy",
  9881. "stub"
  9882. ],
  9883. "support": {
  9884. "issues": "https://github.com/phpspec/prophecy/issues",
  9885. "source": "https://github.com/phpspec/prophecy/tree/1.12.2"
  9886. },
  9887. "time": "2020-12-19T10:15:11+00:00"
  9888. },
  9889. {
  9890. "name": "phpunit/php-code-coverage",
  9891. "version": "9.2.5",
  9892. "source": {
  9893. "type": "git",
  9894. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9895. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1"
  9896. },
  9897. "dist": {
  9898. "type": "zip",
  9899. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9900. "reference": "f3e026641cc91909d421802dd3ac7827ebfd97e1",
  9901. "shasum": ""
  9902. },
  9903. "require": {
  9904. "ext-dom": "*",
  9905. "ext-libxml": "*",
  9906. "ext-xmlwriter": "*",
  9907. "nikic/php-parser": "^4.10.2",
  9908. "php": ">=7.3",
  9909. "phpunit/php-file-iterator": "^3.0.3",
  9910. "phpunit/php-text-template": "^2.0.2",
  9911. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9912. "sebastian/complexity": "^2.0",
  9913. "sebastian/environment": "^5.1.2",
  9914. "sebastian/lines-of-code": "^1.0.3",
  9915. "sebastian/version": "^3.0.1",
  9916. "theseer/tokenizer": "^1.2.0"
  9917. },
  9918. "require-dev": {
  9919. "phpunit/phpunit": "^9.3"
  9920. },
  9921. "suggest": {
  9922. "ext-pcov": "*",
  9923. "ext-xdebug": "*"
  9924. },
  9925. "type": "library",
  9926. "extra": {
  9927. "branch-alias": {
  9928. "dev-master": "9.2-dev"
  9929. }
  9930. },
  9931. "autoload": {
  9932. "classmap": [
  9933. "src/"
  9934. ]
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "BSD-3-Clause"
  9939. ],
  9940. "authors": [
  9941. {
  9942. "name": "Sebastian Bergmann",
  9943. "email": "sebastian@phpunit.de",
  9944. "role": "lead"
  9945. }
  9946. ],
  9947. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9948. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9949. "keywords": [
  9950. "coverage",
  9951. "testing",
  9952. "xunit"
  9953. ],
  9954. "support": {
  9955. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9956. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.5"
  9957. },
  9958. "funding": [
  9959. {
  9960. "url": "https://github.com/sebastianbergmann",
  9961. "type": "github"
  9962. }
  9963. ],
  9964. "time": "2020-11-28T06:44:49+00:00"
  9965. },
  9966. {
  9967. "name": "phpunit/php-file-iterator",
  9968. "version": "3.0.5",
  9969. "source": {
  9970. "type": "git",
  9971. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9972. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9973. },
  9974. "dist": {
  9975. "type": "zip",
  9976. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9977. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9978. "shasum": ""
  9979. },
  9980. "require": {
  9981. "php": ">=7.3"
  9982. },
  9983. "require-dev": {
  9984. "phpunit/phpunit": "^9.3"
  9985. },
  9986. "type": "library",
  9987. "extra": {
  9988. "branch-alias": {
  9989. "dev-master": "3.0-dev"
  9990. }
  9991. },
  9992. "autoload": {
  9993. "classmap": [
  9994. "src/"
  9995. ]
  9996. },
  9997. "notification-url": "https://packagist.org/downloads/",
  9998. "license": [
  9999. "BSD-3-Clause"
  10000. ],
  10001. "authors": [
  10002. {
  10003. "name": "Sebastian Bergmann",
  10004. "email": "sebastian@phpunit.de",
  10005. "role": "lead"
  10006. }
  10007. ],
  10008. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10009. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10010. "keywords": [
  10011. "filesystem",
  10012. "iterator"
  10013. ],
  10014. "support": {
  10015. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10016. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  10017. },
  10018. "funding": [
  10019. {
  10020. "url": "https://github.com/sebastianbergmann",
  10021. "type": "github"
  10022. }
  10023. ],
  10024. "time": "2020-09-28T05:57:25+00:00"
  10025. },
  10026. {
  10027. "name": "phpunit/php-invoker",
  10028. "version": "3.1.1",
  10029. "source": {
  10030. "type": "git",
  10031. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10032. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  10033. },
  10034. "dist": {
  10035. "type": "zip",
  10036. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10037. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  10038. "shasum": ""
  10039. },
  10040. "require": {
  10041. "php": ">=7.3"
  10042. },
  10043. "require-dev": {
  10044. "ext-pcntl": "*",
  10045. "phpunit/phpunit": "^9.3"
  10046. },
  10047. "suggest": {
  10048. "ext-pcntl": "*"
  10049. },
  10050. "type": "library",
  10051. "extra": {
  10052. "branch-alias": {
  10053. "dev-master": "3.1-dev"
  10054. }
  10055. },
  10056. "autoload": {
  10057. "classmap": [
  10058. "src/"
  10059. ]
  10060. },
  10061. "notification-url": "https://packagist.org/downloads/",
  10062. "license": [
  10063. "BSD-3-Clause"
  10064. ],
  10065. "authors": [
  10066. {
  10067. "name": "Sebastian Bergmann",
  10068. "email": "sebastian@phpunit.de",
  10069. "role": "lead"
  10070. }
  10071. ],
  10072. "description": "Invoke callables with a timeout",
  10073. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10074. "keywords": [
  10075. "process"
  10076. ],
  10077. "support": {
  10078. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10079. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  10080. },
  10081. "funding": [
  10082. {
  10083. "url": "https://github.com/sebastianbergmann",
  10084. "type": "github"
  10085. }
  10086. ],
  10087. "time": "2020-09-28T05:58:55+00:00"
  10088. },
  10089. {
  10090. "name": "phpunit/php-text-template",
  10091. "version": "2.0.4",
  10092. "source": {
  10093. "type": "git",
  10094. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10095. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  10096. },
  10097. "dist": {
  10098. "type": "zip",
  10099. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10100. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  10101. "shasum": ""
  10102. },
  10103. "require": {
  10104. "php": ">=7.3"
  10105. },
  10106. "require-dev": {
  10107. "phpunit/phpunit": "^9.3"
  10108. },
  10109. "type": "library",
  10110. "extra": {
  10111. "branch-alias": {
  10112. "dev-master": "2.0-dev"
  10113. }
  10114. },
  10115. "autoload": {
  10116. "classmap": [
  10117. "src/"
  10118. ]
  10119. },
  10120. "notification-url": "https://packagist.org/downloads/",
  10121. "license": [
  10122. "BSD-3-Clause"
  10123. ],
  10124. "authors": [
  10125. {
  10126. "name": "Sebastian Bergmann",
  10127. "email": "sebastian@phpunit.de",
  10128. "role": "lead"
  10129. }
  10130. ],
  10131. "description": "Simple template engine.",
  10132. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10133. "keywords": [
  10134. "template"
  10135. ],
  10136. "support": {
  10137. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10138. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  10139. },
  10140. "funding": [
  10141. {
  10142. "url": "https://github.com/sebastianbergmann",
  10143. "type": "github"
  10144. }
  10145. ],
  10146. "time": "2020-10-26T05:33:50+00:00"
  10147. },
  10148. {
  10149. "name": "phpunit/php-timer",
  10150. "version": "5.0.3",
  10151. "source": {
  10152. "type": "git",
  10153. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10154. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10155. },
  10156. "dist": {
  10157. "type": "zip",
  10158. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10159. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10160. "shasum": ""
  10161. },
  10162. "require": {
  10163. "php": ">=7.3"
  10164. },
  10165. "require-dev": {
  10166. "phpunit/phpunit": "^9.3"
  10167. },
  10168. "type": "library",
  10169. "extra": {
  10170. "branch-alias": {
  10171. "dev-master": "5.0-dev"
  10172. }
  10173. },
  10174. "autoload": {
  10175. "classmap": [
  10176. "src/"
  10177. ]
  10178. },
  10179. "notification-url": "https://packagist.org/downloads/",
  10180. "license": [
  10181. "BSD-3-Clause"
  10182. ],
  10183. "authors": [
  10184. {
  10185. "name": "Sebastian Bergmann",
  10186. "email": "sebastian@phpunit.de",
  10187. "role": "lead"
  10188. }
  10189. ],
  10190. "description": "Utility class for timing",
  10191. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10192. "keywords": [
  10193. "timer"
  10194. ],
  10195. "support": {
  10196. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10197. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10198. },
  10199. "funding": [
  10200. {
  10201. "url": "https://github.com/sebastianbergmann",
  10202. "type": "github"
  10203. }
  10204. ],
  10205. "time": "2020-10-26T13:16:10+00:00"
  10206. },
  10207. {
  10208. "name": "phpunit/phpunit",
  10209. "version": "9.5.0",
  10210. "source": {
  10211. "type": "git",
  10212. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10213. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe"
  10214. },
  10215. "dist": {
  10216. "type": "zip",
  10217. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10218. "reference": "8e16c225d57c3d6808014df6b1dd7598d0a5bbbe",
  10219. "shasum": ""
  10220. },
  10221. "require": {
  10222. "doctrine/instantiator": "^1.3.1",
  10223. "ext-dom": "*",
  10224. "ext-json": "*",
  10225. "ext-libxml": "*",
  10226. "ext-mbstring": "*",
  10227. "ext-xml": "*",
  10228. "ext-xmlwriter": "*",
  10229. "myclabs/deep-copy": "^1.10.1",
  10230. "phar-io/manifest": "^2.0.1",
  10231. "phar-io/version": "^3.0.2",
  10232. "php": ">=7.3",
  10233. "phpspec/prophecy": "^1.12.1",
  10234. "phpunit/php-code-coverage": "^9.2.3",
  10235. "phpunit/php-file-iterator": "^3.0.5",
  10236. "phpunit/php-invoker": "^3.1.1",
  10237. "phpunit/php-text-template": "^2.0.3",
  10238. "phpunit/php-timer": "^5.0.2",
  10239. "sebastian/cli-parser": "^1.0.1",
  10240. "sebastian/code-unit": "^1.0.6",
  10241. "sebastian/comparator": "^4.0.5",
  10242. "sebastian/diff": "^4.0.3",
  10243. "sebastian/environment": "^5.1.3",
  10244. "sebastian/exporter": "^4.0.3",
  10245. "sebastian/global-state": "^5.0.1",
  10246. "sebastian/object-enumerator": "^4.0.3",
  10247. "sebastian/resource-operations": "^3.0.3",
  10248. "sebastian/type": "^2.3",
  10249. "sebastian/version": "^3.0.2"
  10250. },
  10251. "require-dev": {
  10252. "ext-pdo": "*",
  10253. "phpspec/prophecy-phpunit": "^2.0.1"
  10254. },
  10255. "suggest": {
  10256. "ext-soap": "*",
  10257. "ext-xdebug": "*"
  10258. },
  10259. "bin": [
  10260. "phpunit"
  10261. ],
  10262. "type": "library",
  10263. "extra": {
  10264. "branch-alias": {
  10265. "dev-master": "9.5-dev"
  10266. }
  10267. },
  10268. "autoload": {
  10269. "classmap": [
  10270. "src/"
  10271. ],
  10272. "files": [
  10273. "src/Framework/Assert/Functions.php"
  10274. ]
  10275. },
  10276. "notification-url": "https://packagist.org/downloads/",
  10277. "license": [
  10278. "BSD-3-Clause"
  10279. ],
  10280. "authors": [
  10281. {
  10282. "name": "Sebastian Bergmann",
  10283. "email": "sebastian@phpunit.de",
  10284. "role": "lead"
  10285. }
  10286. ],
  10287. "description": "The PHP Unit Testing framework.",
  10288. "homepage": "https://phpunit.de/",
  10289. "keywords": [
  10290. "phpunit",
  10291. "testing",
  10292. "xunit"
  10293. ],
  10294. "support": {
  10295. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10296. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.0"
  10297. },
  10298. "funding": [
  10299. {
  10300. "url": "https://phpunit.de/donate.html",
  10301. "type": "custom"
  10302. },
  10303. {
  10304. "url": "https://github.com/sebastianbergmann",
  10305. "type": "github"
  10306. }
  10307. ],
  10308. "time": "2020-12-04T05:05:53+00:00"
  10309. },
  10310. {
  10311. "name": "react/promise",
  10312. "version": "v2.8.0",
  10313. "source": {
  10314. "type": "git",
  10315. "url": "https://github.com/reactphp/promise.git",
  10316. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  10317. },
  10318. "dist": {
  10319. "type": "zip",
  10320. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10321. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  10322. "shasum": ""
  10323. },
  10324. "require": {
  10325. "php": ">=5.4.0"
  10326. },
  10327. "require-dev": {
  10328. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  10329. },
  10330. "type": "library",
  10331. "autoload": {
  10332. "psr-4": {
  10333. "React\\Promise\\": "src/"
  10334. },
  10335. "files": [
  10336. "src/functions_include.php"
  10337. ]
  10338. },
  10339. "notification-url": "https://packagist.org/downloads/",
  10340. "license": [
  10341. "MIT"
  10342. ],
  10343. "authors": [
  10344. {
  10345. "name": "Jan Sorgalla",
  10346. "email": "jsorgalla@gmail.com"
  10347. }
  10348. ],
  10349. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10350. "keywords": [
  10351. "promise",
  10352. "promises"
  10353. ],
  10354. "support": {
  10355. "issues": "https://github.com/reactphp/promise/issues",
  10356. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  10357. },
  10358. "time": "2020-05-12T15:16:56+00:00"
  10359. },
  10360. {
  10361. "name": "sebastian/cli-parser",
  10362. "version": "1.0.1",
  10363. "source": {
  10364. "type": "git",
  10365. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10366. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10367. },
  10368. "dist": {
  10369. "type": "zip",
  10370. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10371. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10372. "shasum": ""
  10373. },
  10374. "require": {
  10375. "php": ">=7.3"
  10376. },
  10377. "require-dev": {
  10378. "phpunit/phpunit": "^9.3"
  10379. },
  10380. "type": "library",
  10381. "extra": {
  10382. "branch-alias": {
  10383. "dev-master": "1.0-dev"
  10384. }
  10385. },
  10386. "autoload": {
  10387. "classmap": [
  10388. "src/"
  10389. ]
  10390. },
  10391. "notification-url": "https://packagist.org/downloads/",
  10392. "license": [
  10393. "BSD-3-Clause"
  10394. ],
  10395. "authors": [
  10396. {
  10397. "name": "Sebastian Bergmann",
  10398. "email": "sebastian@phpunit.de",
  10399. "role": "lead"
  10400. }
  10401. ],
  10402. "description": "Library for parsing CLI options",
  10403. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10404. "support": {
  10405. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10406. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10407. },
  10408. "funding": [
  10409. {
  10410. "url": "https://github.com/sebastianbergmann",
  10411. "type": "github"
  10412. }
  10413. ],
  10414. "time": "2020-09-28T06:08:49+00:00"
  10415. },
  10416. {
  10417. "name": "sebastian/code-unit",
  10418. "version": "1.0.8",
  10419. "source": {
  10420. "type": "git",
  10421. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10422. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10423. },
  10424. "dist": {
  10425. "type": "zip",
  10426. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10427. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10428. "shasum": ""
  10429. },
  10430. "require": {
  10431. "php": ">=7.3"
  10432. },
  10433. "require-dev": {
  10434. "phpunit/phpunit": "^9.3"
  10435. },
  10436. "type": "library",
  10437. "extra": {
  10438. "branch-alias": {
  10439. "dev-master": "1.0-dev"
  10440. }
  10441. },
  10442. "autoload": {
  10443. "classmap": [
  10444. "src/"
  10445. ]
  10446. },
  10447. "notification-url": "https://packagist.org/downloads/",
  10448. "license": [
  10449. "BSD-3-Clause"
  10450. ],
  10451. "authors": [
  10452. {
  10453. "name": "Sebastian Bergmann",
  10454. "email": "sebastian@phpunit.de",
  10455. "role": "lead"
  10456. }
  10457. ],
  10458. "description": "Collection of value objects that represent the PHP code units",
  10459. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10460. "support": {
  10461. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10462. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10463. },
  10464. "funding": [
  10465. {
  10466. "url": "https://github.com/sebastianbergmann",
  10467. "type": "github"
  10468. }
  10469. ],
  10470. "time": "2020-10-26T13:08:54+00:00"
  10471. },
  10472. {
  10473. "name": "sebastian/code-unit-reverse-lookup",
  10474. "version": "2.0.3",
  10475. "source": {
  10476. "type": "git",
  10477. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10478. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10479. },
  10480. "dist": {
  10481. "type": "zip",
  10482. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10483. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10484. "shasum": ""
  10485. },
  10486. "require": {
  10487. "php": ">=7.3"
  10488. },
  10489. "require-dev": {
  10490. "phpunit/phpunit": "^9.3"
  10491. },
  10492. "type": "library",
  10493. "extra": {
  10494. "branch-alias": {
  10495. "dev-master": "2.0-dev"
  10496. }
  10497. },
  10498. "autoload": {
  10499. "classmap": [
  10500. "src/"
  10501. ]
  10502. },
  10503. "notification-url": "https://packagist.org/downloads/",
  10504. "license": [
  10505. "BSD-3-Clause"
  10506. ],
  10507. "authors": [
  10508. {
  10509. "name": "Sebastian Bergmann",
  10510. "email": "sebastian@phpunit.de"
  10511. }
  10512. ],
  10513. "description": "Looks up which function or method a line of code belongs to",
  10514. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10515. "support": {
  10516. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10517. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10518. },
  10519. "funding": [
  10520. {
  10521. "url": "https://github.com/sebastianbergmann",
  10522. "type": "github"
  10523. }
  10524. ],
  10525. "time": "2020-09-28T05:30:19+00:00"
  10526. },
  10527. {
  10528. "name": "sebastian/comparator",
  10529. "version": "4.0.6",
  10530. "source": {
  10531. "type": "git",
  10532. "url": "https://github.com/sebastianbergmann/comparator.git",
  10533. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  10534. },
  10535. "dist": {
  10536. "type": "zip",
  10537. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  10538. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  10539. "shasum": ""
  10540. },
  10541. "require": {
  10542. "php": ">=7.3",
  10543. "sebastian/diff": "^4.0",
  10544. "sebastian/exporter": "^4.0"
  10545. },
  10546. "require-dev": {
  10547. "phpunit/phpunit": "^9.3"
  10548. },
  10549. "type": "library",
  10550. "extra": {
  10551. "branch-alias": {
  10552. "dev-master": "4.0-dev"
  10553. }
  10554. },
  10555. "autoload": {
  10556. "classmap": [
  10557. "src/"
  10558. ]
  10559. },
  10560. "notification-url": "https://packagist.org/downloads/",
  10561. "license": [
  10562. "BSD-3-Clause"
  10563. ],
  10564. "authors": [
  10565. {
  10566. "name": "Sebastian Bergmann",
  10567. "email": "sebastian@phpunit.de"
  10568. },
  10569. {
  10570. "name": "Jeff Welch",
  10571. "email": "whatthejeff@gmail.com"
  10572. },
  10573. {
  10574. "name": "Volker Dusch",
  10575. "email": "github@wallbash.com"
  10576. },
  10577. {
  10578. "name": "Bernhard Schussek",
  10579. "email": "bschussek@2bepublished.at"
  10580. }
  10581. ],
  10582. "description": "Provides the functionality to compare PHP values for equality",
  10583. "homepage": "https://github.com/sebastianbergmann/comparator",
  10584. "keywords": [
  10585. "comparator",
  10586. "compare",
  10587. "equality"
  10588. ],
  10589. "support": {
  10590. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10591. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  10592. },
  10593. "funding": [
  10594. {
  10595. "url": "https://github.com/sebastianbergmann",
  10596. "type": "github"
  10597. }
  10598. ],
  10599. "time": "2020-10-26T15:49:45+00:00"
  10600. },
  10601. {
  10602. "name": "sebastian/complexity",
  10603. "version": "2.0.2",
  10604. "source": {
  10605. "type": "git",
  10606. "url": "https://github.com/sebastianbergmann/complexity.git",
  10607. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  10608. },
  10609. "dist": {
  10610. "type": "zip",
  10611. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  10612. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  10613. "shasum": ""
  10614. },
  10615. "require": {
  10616. "nikic/php-parser": "^4.7",
  10617. "php": ">=7.3"
  10618. },
  10619. "require-dev": {
  10620. "phpunit/phpunit": "^9.3"
  10621. },
  10622. "type": "library",
  10623. "extra": {
  10624. "branch-alias": {
  10625. "dev-master": "2.0-dev"
  10626. }
  10627. },
  10628. "autoload": {
  10629. "classmap": [
  10630. "src/"
  10631. ]
  10632. },
  10633. "notification-url": "https://packagist.org/downloads/",
  10634. "license": [
  10635. "BSD-3-Clause"
  10636. ],
  10637. "authors": [
  10638. {
  10639. "name": "Sebastian Bergmann",
  10640. "email": "sebastian@phpunit.de",
  10641. "role": "lead"
  10642. }
  10643. ],
  10644. "description": "Library for calculating the complexity of PHP code units",
  10645. "homepage": "https://github.com/sebastianbergmann/complexity",
  10646. "support": {
  10647. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10648. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  10649. },
  10650. "funding": [
  10651. {
  10652. "url": "https://github.com/sebastianbergmann",
  10653. "type": "github"
  10654. }
  10655. ],
  10656. "time": "2020-10-26T15:52:27+00:00"
  10657. },
  10658. {
  10659. "name": "sebastian/diff",
  10660. "version": "4.0.4",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/sebastianbergmann/diff.git",
  10664. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10669. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  10670. "shasum": ""
  10671. },
  10672. "require": {
  10673. "php": ">=7.3"
  10674. },
  10675. "require-dev": {
  10676. "phpunit/phpunit": "^9.3",
  10677. "symfony/process": "^4.2 || ^5"
  10678. },
  10679. "type": "library",
  10680. "extra": {
  10681. "branch-alias": {
  10682. "dev-master": "4.0-dev"
  10683. }
  10684. },
  10685. "autoload": {
  10686. "classmap": [
  10687. "src/"
  10688. ]
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "BSD-3-Clause"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Sebastian Bergmann",
  10697. "email": "sebastian@phpunit.de"
  10698. },
  10699. {
  10700. "name": "Kore Nordmann",
  10701. "email": "mail@kore-nordmann.de"
  10702. }
  10703. ],
  10704. "description": "Diff implementation",
  10705. "homepage": "https://github.com/sebastianbergmann/diff",
  10706. "keywords": [
  10707. "diff",
  10708. "udiff",
  10709. "unidiff",
  10710. "unified diff"
  10711. ],
  10712. "support": {
  10713. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10714. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  10715. },
  10716. "funding": [
  10717. {
  10718. "url": "https://github.com/sebastianbergmann",
  10719. "type": "github"
  10720. }
  10721. ],
  10722. "time": "2020-10-26T13:10:38+00:00"
  10723. },
  10724. {
  10725. "name": "sebastian/environment",
  10726. "version": "5.1.3",
  10727. "source": {
  10728. "type": "git",
  10729. "url": "https://github.com/sebastianbergmann/environment.git",
  10730. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  10731. },
  10732. "dist": {
  10733. "type": "zip",
  10734. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  10735. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  10736. "shasum": ""
  10737. },
  10738. "require": {
  10739. "php": ">=7.3"
  10740. },
  10741. "require-dev": {
  10742. "phpunit/phpunit": "^9.3"
  10743. },
  10744. "suggest": {
  10745. "ext-posix": "*"
  10746. },
  10747. "type": "library",
  10748. "extra": {
  10749. "branch-alias": {
  10750. "dev-master": "5.1-dev"
  10751. }
  10752. },
  10753. "autoload": {
  10754. "classmap": [
  10755. "src/"
  10756. ]
  10757. },
  10758. "notification-url": "https://packagist.org/downloads/",
  10759. "license": [
  10760. "BSD-3-Clause"
  10761. ],
  10762. "authors": [
  10763. {
  10764. "name": "Sebastian Bergmann",
  10765. "email": "sebastian@phpunit.de"
  10766. }
  10767. ],
  10768. "description": "Provides functionality to handle HHVM/PHP environments",
  10769. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10770. "keywords": [
  10771. "Xdebug",
  10772. "environment",
  10773. "hhvm"
  10774. ],
  10775. "support": {
  10776. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10777. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  10778. },
  10779. "funding": [
  10780. {
  10781. "url": "https://github.com/sebastianbergmann",
  10782. "type": "github"
  10783. }
  10784. ],
  10785. "time": "2020-09-28T05:52:38+00:00"
  10786. },
  10787. {
  10788. "name": "sebastian/exporter",
  10789. "version": "4.0.3",
  10790. "source": {
  10791. "type": "git",
  10792. "url": "https://github.com/sebastianbergmann/exporter.git",
  10793. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  10794. },
  10795. "dist": {
  10796. "type": "zip",
  10797. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10798. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  10799. "shasum": ""
  10800. },
  10801. "require": {
  10802. "php": ">=7.3",
  10803. "sebastian/recursion-context": "^4.0"
  10804. },
  10805. "require-dev": {
  10806. "ext-mbstring": "*",
  10807. "phpunit/phpunit": "^9.3"
  10808. },
  10809. "type": "library",
  10810. "extra": {
  10811. "branch-alias": {
  10812. "dev-master": "4.0-dev"
  10813. }
  10814. },
  10815. "autoload": {
  10816. "classmap": [
  10817. "src/"
  10818. ]
  10819. },
  10820. "notification-url": "https://packagist.org/downloads/",
  10821. "license": [
  10822. "BSD-3-Clause"
  10823. ],
  10824. "authors": [
  10825. {
  10826. "name": "Sebastian Bergmann",
  10827. "email": "sebastian@phpunit.de"
  10828. },
  10829. {
  10830. "name": "Jeff Welch",
  10831. "email": "whatthejeff@gmail.com"
  10832. },
  10833. {
  10834. "name": "Volker Dusch",
  10835. "email": "github@wallbash.com"
  10836. },
  10837. {
  10838. "name": "Adam Harvey",
  10839. "email": "aharvey@php.net"
  10840. },
  10841. {
  10842. "name": "Bernhard Schussek",
  10843. "email": "bschussek@gmail.com"
  10844. }
  10845. ],
  10846. "description": "Provides the functionality to export PHP variables for visualization",
  10847. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10848. "keywords": [
  10849. "export",
  10850. "exporter"
  10851. ],
  10852. "support": {
  10853. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10854. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  10855. },
  10856. "funding": [
  10857. {
  10858. "url": "https://github.com/sebastianbergmann",
  10859. "type": "github"
  10860. }
  10861. ],
  10862. "time": "2020-09-28T05:24:23+00:00"
  10863. },
  10864. {
  10865. "name": "sebastian/global-state",
  10866. "version": "5.0.2",
  10867. "source": {
  10868. "type": "git",
  10869. "url": "https://github.com/sebastianbergmann/global-state.git",
  10870. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
  10871. },
  10872. "dist": {
  10873. "type": "zip",
  10874. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
  10875. "reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
  10876. "shasum": ""
  10877. },
  10878. "require": {
  10879. "php": ">=7.3",
  10880. "sebastian/object-reflector": "^2.0",
  10881. "sebastian/recursion-context": "^4.0"
  10882. },
  10883. "require-dev": {
  10884. "ext-dom": "*",
  10885. "phpunit/phpunit": "^9.3"
  10886. },
  10887. "suggest": {
  10888. "ext-uopz": "*"
  10889. },
  10890. "type": "library",
  10891. "extra": {
  10892. "branch-alias": {
  10893. "dev-master": "5.0-dev"
  10894. }
  10895. },
  10896. "autoload": {
  10897. "classmap": [
  10898. "src/"
  10899. ]
  10900. },
  10901. "notification-url": "https://packagist.org/downloads/",
  10902. "license": [
  10903. "BSD-3-Clause"
  10904. ],
  10905. "authors": [
  10906. {
  10907. "name": "Sebastian Bergmann",
  10908. "email": "sebastian@phpunit.de"
  10909. }
  10910. ],
  10911. "description": "Snapshotting of global state",
  10912. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10913. "keywords": [
  10914. "global state"
  10915. ],
  10916. "support": {
  10917. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10918. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
  10919. },
  10920. "funding": [
  10921. {
  10922. "url": "https://github.com/sebastianbergmann",
  10923. "type": "github"
  10924. }
  10925. ],
  10926. "time": "2020-10-26T15:55:19+00:00"
  10927. },
  10928. {
  10929. "name": "sebastian/lines-of-code",
  10930. "version": "1.0.3",
  10931. "source": {
  10932. "type": "git",
  10933. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10934. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10935. },
  10936. "dist": {
  10937. "type": "zip",
  10938. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10939. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10940. "shasum": ""
  10941. },
  10942. "require": {
  10943. "nikic/php-parser": "^4.6",
  10944. "php": ">=7.3"
  10945. },
  10946. "require-dev": {
  10947. "phpunit/phpunit": "^9.3"
  10948. },
  10949. "type": "library",
  10950. "extra": {
  10951. "branch-alias": {
  10952. "dev-master": "1.0-dev"
  10953. }
  10954. },
  10955. "autoload": {
  10956. "classmap": [
  10957. "src/"
  10958. ]
  10959. },
  10960. "notification-url": "https://packagist.org/downloads/",
  10961. "license": [
  10962. "BSD-3-Clause"
  10963. ],
  10964. "authors": [
  10965. {
  10966. "name": "Sebastian Bergmann",
  10967. "email": "sebastian@phpunit.de",
  10968. "role": "lead"
  10969. }
  10970. ],
  10971. "description": "Library for counting the lines of code in PHP source code",
  10972. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10973. "support": {
  10974. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10975. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10976. },
  10977. "funding": [
  10978. {
  10979. "url": "https://github.com/sebastianbergmann",
  10980. "type": "github"
  10981. }
  10982. ],
  10983. "time": "2020-11-28T06:42:11+00:00"
  10984. },
  10985. {
  10986. "name": "sebastian/object-enumerator",
  10987. "version": "4.0.4",
  10988. "source": {
  10989. "type": "git",
  10990. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10991. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10992. },
  10993. "dist": {
  10994. "type": "zip",
  10995. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10996. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10997. "shasum": ""
  10998. },
  10999. "require": {
  11000. "php": ">=7.3",
  11001. "sebastian/object-reflector": "^2.0",
  11002. "sebastian/recursion-context": "^4.0"
  11003. },
  11004. "require-dev": {
  11005. "phpunit/phpunit": "^9.3"
  11006. },
  11007. "type": "library",
  11008. "extra": {
  11009. "branch-alias": {
  11010. "dev-master": "4.0-dev"
  11011. }
  11012. },
  11013. "autoload": {
  11014. "classmap": [
  11015. "src/"
  11016. ]
  11017. },
  11018. "notification-url": "https://packagist.org/downloads/",
  11019. "license": [
  11020. "BSD-3-Clause"
  11021. ],
  11022. "authors": [
  11023. {
  11024. "name": "Sebastian Bergmann",
  11025. "email": "sebastian@phpunit.de"
  11026. }
  11027. ],
  11028. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11029. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11030. "support": {
  11031. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11032. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  11033. },
  11034. "funding": [
  11035. {
  11036. "url": "https://github.com/sebastianbergmann",
  11037. "type": "github"
  11038. }
  11039. ],
  11040. "time": "2020-10-26T13:12:34+00:00"
  11041. },
  11042. {
  11043. "name": "sebastian/object-reflector",
  11044. "version": "2.0.4",
  11045. "source": {
  11046. "type": "git",
  11047. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11048. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  11049. },
  11050. "dist": {
  11051. "type": "zip",
  11052. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11053. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  11054. "shasum": ""
  11055. },
  11056. "require": {
  11057. "php": ">=7.3"
  11058. },
  11059. "require-dev": {
  11060. "phpunit/phpunit": "^9.3"
  11061. },
  11062. "type": "library",
  11063. "extra": {
  11064. "branch-alias": {
  11065. "dev-master": "2.0-dev"
  11066. }
  11067. },
  11068. "autoload": {
  11069. "classmap": [
  11070. "src/"
  11071. ]
  11072. },
  11073. "notification-url": "https://packagist.org/downloads/",
  11074. "license": [
  11075. "BSD-3-Clause"
  11076. ],
  11077. "authors": [
  11078. {
  11079. "name": "Sebastian Bergmann",
  11080. "email": "sebastian@phpunit.de"
  11081. }
  11082. ],
  11083. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11084. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11085. "support": {
  11086. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11087. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  11088. },
  11089. "funding": [
  11090. {
  11091. "url": "https://github.com/sebastianbergmann",
  11092. "type": "github"
  11093. }
  11094. ],
  11095. "time": "2020-10-26T13:14:26+00:00"
  11096. },
  11097. {
  11098. "name": "sebastian/recursion-context",
  11099. "version": "4.0.4",
  11100. "source": {
  11101. "type": "git",
  11102. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11103. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  11104. },
  11105. "dist": {
  11106. "type": "zip",
  11107. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  11108. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  11109. "shasum": ""
  11110. },
  11111. "require": {
  11112. "php": ">=7.3"
  11113. },
  11114. "require-dev": {
  11115. "phpunit/phpunit": "^9.3"
  11116. },
  11117. "type": "library",
  11118. "extra": {
  11119. "branch-alias": {
  11120. "dev-master": "4.0-dev"
  11121. }
  11122. },
  11123. "autoload": {
  11124. "classmap": [
  11125. "src/"
  11126. ]
  11127. },
  11128. "notification-url": "https://packagist.org/downloads/",
  11129. "license": [
  11130. "BSD-3-Clause"
  11131. ],
  11132. "authors": [
  11133. {
  11134. "name": "Sebastian Bergmann",
  11135. "email": "sebastian@phpunit.de"
  11136. },
  11137. {
  11138. "name": "Jeff Welch",
  11139. "email": "whatthejeff@gmail.com"
  11140. },
  11141. {
  11142. "name": "Adam Harvey",
  11143. "email": "aharvey@php.net"
  11144. }
  11145. ],
  11146. "description": "Provides functionality to recursively process PHP variables",
  11147. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11148. "support": {
  11149. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11150. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  11151. },
  11152. "funding": [
  11153. {
  11154. "url": "https://github.com/sebastianbergmann",
  11155. "type": "github"
  11156. }
  11157. ],
  11158. "time": "2020-10-26T13:17:30+00:00"
  11159. },
  11160. {
  11161. "name": "sebastian/resource-operations",
  11162. "version": "3.0.3",
  11163. "source": {
  11164. "type": "git",
  11165. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11166. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  11167. },
  11168. "dist": {
  11169. "type": "zip",
  11170. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11171. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  11172. "shasum": ""
  11173. },
  11174. "require": {
  11175. "php": ">=7.3"
  11176. },
  11177. "require-dev": {
  11178. "phpunit/phpunit": "^9.0"
  11179. },
  11180. "type": "library",
  11181. "extra": {
  11182. "branch-alias": {
  11183. "dev-master": "3.0-dev"
  11184. }
  11185. },
  11186. "autoload": {
  11187. "classmap": [
  11188. "src/"
  11189. ]
  11190. },
  11191. "notification-url": "https://packagist.org/downloads/",
  11192. "license": [
  11193. "BSD-3-Clause"
  11194. ],
  11195. "authors": [
  11196. {
  11197. "name": "Sebastian Bergmann",
  11198. "email": "sebastian@phpunit.de"
  11199. }
  11200. ],
  11201. "description": "Provides a list of PHP built-in functions that operate on resources",
  11202. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11203. "support": {
  11204. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11205. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11206. },
  11207. "funding": [
  11208. {
  11209. "url": "https://github.com/sebastianbergmann",
  11210. "type": "github"
  11211. }
  11212. ],
  11213. "time": "2020-09-28T06:45:17+00:00"
  11214. },
  11215. {
  11216. "name": "sebastian/type",
  11217. "version": "2.3.1",
  11218. "source": {
  11219. "type": "git",
  11220. "url": "https://github.com/sebastianbergmann/type.git",
  11221. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2"
  11222. },
  11223. "dist": {
  11224. "type": "zip",
  11225. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11226. "reference": "81cd61ab7bbf2de744aba0ea61fae32f721df3d2",
  11227. "shasum": ""
  11228. },
  11229. "require": {
  11230. "php": ">=7.3"
  11231. },
  11232. "require-dev": {
  11233. "phpunit/phpunit": "^9.3"
  11234. },
  11235. "type": "library",
  11236. "extra": {
  11237. "branch-alias": {
  11238. "dev-master": "2.3-dev"
  11239. }
  11240. },
  11241. "autoload": {
  11242. "classmap": [
  11243. "src/"
  11244. ]
  11245. },
  11246. "notification-url": "https://packagist.org/downloads/",
  11247. "license": [
  11248. "BSD-3-Clause"
  11249. ],
  11250. "authors": [
  11251. {
  11252. "name": "Sebastian Bergmann",
  11253. "email": "sebastian@phpunit.de",
  11254. "role": "lead"
  11255. }
  11256. ],
  11257. "description": "Collection of value objects that represent the types of the PHP type system",
  11258. "homepage": "https://github.com/sebastianbergmann/type",
  11259. "support": {
  11260. "issues": "https://github.com/sebastianbergmann/type/issues",
  11261. "source": "https://github.com/sebastianbergmann/type/tree/2.3.1"
  11262. },
  11263. "funding": [
  11264. {
  11265. "url": "https://github.com/sebastianbergmann",
  11266. "type": "github"
  11267. }
  11268. ],
  11269. "time": "2020-10-26T13:18:59+00:00"
  11270. },
  11271. {
  11272. "name": "sebastian/version",
  11273. "version": "3.0.2",
  11274. "source": {
  11275. "type": "git",
  11276. "url": "https://github.com/sebastianbergmann/version.git",
  11277. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11278. },
  11279. "dist": {
  11280. "type": "zip",
  11281. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11282. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11283. "shasum": ""
  11284. },
  11285. "require": {
  11286. "php": ">=7.3"
  11287. },
  11288. "type": "library",
  11289. "extra": {
  11290. "branch-alias": {
  11291. "dev-master": "3.0-dev"
  11292. }
  11293. },
  11294. "autoload": {
  11295. "classmap": [
  11296. "src/"
  11297. ]
  11298. },
  11299. "notification-url": "https://packagist.org/downloads/",
  11300. "license": [
  11301. "BSD-3-Clause"
  11302. ],
  11303. "authors": [
  11304. {
  11305. "name": "Sebastian Bergmann",
  11306. "email": "sebastian@phpunit.de",
  11307. "role": "lead"
  11308. }
  11309. ],
  11310. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11311. "homepage": "https://github.com/sebastianbergmann/version",
  11312. "support": {
  11313. "issues": "https://github.com/sebastianbergmann/version/issues",
  11314. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11315. },
  11316. "funding": [
  11317. {
  11318. "url": "https://github.com/sebastianbergmann",
  11319. "type": "github"
  11320. }
  11321. ],
  11322. "time": "2020-09-28T06:39:44+00:00"
  11323. },
  11324. {
  11325. "name": "seld/jsonlint",
  11326. "version": "1.8.3",
  11327. "source": {
  11328. "type": "git",
  11329. "url": "https://github.com/Seldaek/jsonlint.git",
  11330. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  11331. },
  11332. "dist": {
  11333. "type": "zip",
  11334. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11335. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  11336. "shasum": ""
  11337. },
  11338. "require": {
  11339. "php": "^5.3 || ^7.0 || ^8.0"
  11340. },
  11341. "require-dev": {
  11342. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11343. },
  11344. "bin": [
  11345. "bin/jsonlint"
  11346. ],
  11347. "type": "library",
  11348. "autoload": {
  11349. "psr-4": {
  11350. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  11351. }
  11352. },
  11353. "notification-url": "https://packagist.org/downloads/",
  11354. "license": [
  11355. "MIT"
  11356. ],
  11357. "authors": [
  11358. {
  11359. "name": "Jordi Boggiano",
  11360. "email": "j.boggiano@seld.be",
  11361. "homepage": "http://seld.be"
  11362. }
  11363. ],
  11364. "description": "JSON Linter",
  11365. "keywords": [
  11366. "json",
  11367. "linter",
  11368. "parser",
  11369. "validator"
  11370. ],
  11371. "support": {
  11372. "issues": "https://github.com/Seldaek/jsonlint/issues",
  11373. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  11374. },
  11375. "funding": [
  11376. {
  11377. "url": "https://github.com/Seldaek",
  11378. "type": "github"
  11379. },
  11380. {
  11381. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  11382. "type": "tidelift"
  11383. }
  11384. ],
  11385. "time": "2020-11-11T09:19:24+00:00"
  11386. },
  11387. {
  11388. "name": "seld/phar-utils",
  11389. "version": "1.1.1",
  11390. "source": {
  11391. "type": "git",
  11392. "url": "https://github.com/Seldaek/phar-utils.git",
  11393. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  11394. },
  11395. "dist": {
  11396. "type": "zip",
  11397. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11398. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  11399. "shasum": ""
  11400. },
  11401. "require": {
  11402. "php": ">=5.3"
  11403. },
  11404. "type": "library",
  11405. "extra": {
  11406. "branch-alias": {
  11407. "dev-master": "1.x-dev"
  11408. }
  11409. },
  11410. "autoload": {
  11411. "psr-4": {
  11412. "Seld\\PharUtils\\": "src/"
  11413. }
  11414. },
  11415. "notification-url": "https://packagist.org/downloads/",
  11416. "license": [
  11417. "MIT"
  11418. ],
  11419. "authors": [
  11420. {
  11421. "name": "Jordi Boggiano",
  11422. "email": "j.boggiano@seld.be"
  11423. }
  11424. ],
  11425. "description": "PHAR file format utilities, for when PHP phars you up",
  11426. "keywords": [
  11427. "phar"
  11428. ],
  11429. "support": {
  11430. "issues": "https://github.com/Seldaek/phar-utils/issues",
  11431. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  11432. },
  11433. "time": "2020-07-07T18:42:57+00:00"
  11434. },
  11435. {
  11436. "name": "symfony/debug",
  11437. "version": "v4.4.18",
  11438. "source": {
  11439. "type": "git",
  11440. "url": "https://github.com/symfony/debug.git",
  11441. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544"
  11442. },
  11443. "dist": {
  11444. "type": "zip",
  11445. "url": "https://api.github.com/repos/symfony/debug/zipball/5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11446. "reference": "5dfc7825f3bfe9bb74b23d8b8ce0e0894e32b544",
  11447. "shasum": ""
  11448. },
  11449. "require": {
  11450. "php": ">=7.1.3",
  11451. "psr/log": "~1.0",
  11452. "symfony/polyfill-php80": "^1.15"
  11453. },
  11454. "conflict": {
  11455. "symfony/http-kernel": "<3.4"
  11456. },
  11457. "require-dev": {
  11458. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  11459. },
  11460. "type": "library",
  11461. "autoload": {
  11462. "psr-4": {
  11463. "Symfony\\Component\\Debug\\": ""
  11464. },
  11465. "exclude-from-classmap": [
  11466. "/Tests/"
  11467. ]
  11468. },
  11469. "notification-url": "https://packagist.org/downloads/",
  11470. "license": [
  11471. "MIT"
  11472. ],
  11473. "authors": [
  11474. {
  11475. "name": "Fabien Potencier",
  11476. "email": "fabien@symfony.com"
  11477. },
  11478. {
  11479. "name": "Symfony Community",
  11480. "homepage": "https://symfony.com/contributors"
  11481. }
  11482. ],
  11483. "description": "Symfony Debug Component",
  11484. "homepage": "https://symfony.com",
  11485. "support": {
  11486. "source": "https://github.com/symfony/debug/tree/v4.4.18"
  11487. },
  11488. "funding": [
  11489. {
  11490. "url": "https://symfony.com/sponsor",
  11491. "type": "custom"
  11492. },
  11493. {
  11494. "url": "https://github.com/fabpot",
  11495. "type": "github"
  11496. },
  11497. {
  11498. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11499. "type": "tidelift"
  11500. }
  11501. ],
  11502. "time": "2020-12-10T16:34:26+00:00"
  11503. },
  11504. {
  11505. "name": "symfony/filesystem",
  11506. "version": "v5.2.1",
  11507. "source": {
  11508. "type": "git",
  11509. "url": "https://github.com/symfony/filesystem.git",
  11510. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d"
  11511. },
  11512. "dist": {
  11513. "type": "zip",
  11514. "url": "https://api.github.com/repos/symfony/filesystem/zipball/fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11515. "reference": "fa8f8cab6b65e2d99a118e082935344c5ba8c60d",
  11516. "shasum": ""
  11517. },
  11518. "require": {
  11519. "php": ">=7.2.5",
  11520. "symfony/polyfill-ctype": "~1.8"
  11521. },
  11522. "type": "library",
  11523. "autoload": {
  11524. "psr-4": {
  11525. "Symfony\\Component\\Filesystem\\": ""
  11526. },
  11527. "exclude-from-classmap": [
  11528. "/Tests/"
  11529. ]
  11530. },
  11531. "notification-url": "https://packagist.org/downloads/",
  11532. "license": [
  11533. "MIT"
  11534. ],
  11535. "authors": [
  11536. {
  11537. "name": "Fabien Potencier",
  11538. "email": "fabien@symfony.com"
  11539. },
  11540. {
  11541. "name": "Symfony Community",
  11542. "homepage": "https://symfony.com/contributors"
  11543. }
  11544. ],
  11545. "description": "Symfony Filesystem Component",
  11546. "homepage": "https://symfony.com",
  11547. "support": {
  11548. "source": "https://github.com/symfony/filesystem/tree/v5.2.1"
  11549. },
  11550. "funding": [
  11551. {
  11552. "url": "https://symfony.com/sponsor",
  11553. "type": "custom"
  11554. },
  11555. {
  11556. "url": "https://github.com/fabpot",
  11557. "type": "github"
  11558. },
  11559. {
  11560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11561. "type": "tidelift"
  11562. }
  11563. ],
  11564. "time": "2020-11-30T17:05:38+00:00"
  11565. },
  11566. {
  11567. "name": "theseer/tokenizer",
  11568. "version": "1.2.0",
  11569. "source": {
  11570. "type": "git",
  11571. "url": "https://github.com/theseer/tokenizer.git",
  11572. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  11573. },
  11574. "dist": {
  11575. "type": "zip",
  11576. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  11577. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  11578. "shasum": ""
  11579. },
  11580. "require": {
  11581. "ext-dom": "*",
  11582. "ext-tokenizer": "*",
  11583. "ext-xmlwriter": "*",
  11584. "php": "^7.2 || ^8.0"
  11585. },
  11586. "type": "library",
  11587. "autoload": {
  11588. "classmap": [
  11589. "src/"
  11590. ]
  11591. },
  11592. "notification-url": "https://packagist.org/downloads/",
  11593. "license": [
  11594. "BSD-3-Clause"
  11595. ],
  11596. "authors": [
  11597. {
  11598. "name": "Arne Blankerts",
  11599. "email": "arne@blankerts.de",
  11600. "role": "Developer"
  11601. }
  11602. ],
  11603. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11604. "support": {
  11605. "issues": "https://github.com/theseer/tokenizer/issues",
  11606. "source": "https://github.com/theseer/tokenizer/tree/master"
  11607. },
  11608. "funding": [
  11609. {
  11610. "url": "https://github.com/theseer",
  11611. "type": "github"
  11612. }
  11613. ],
  11614. "time": "2020-07-12T23:59:07+00:00"
  11615. },
  11616. {
  11617. "name": "webmozart/assert",
  11618. "version": "1.9.1",
  11619. "source": {
  11620. "type": "git",
  11621. "url": "https://github.com/webmozart/assert.git",
  11622. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  11623. },
  11624. "dist": {
  11625. "type": "zip",
  11626. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11627. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  11628. "shasum": ""
  11629. },
  11630. "require": {
  11631. "php": "^5.3.3 || ^7.0 || ^8.0",
  11632. "symfony/polyfill-ctype": "^1.8"
  11633. },
  11634. "conflict": {
  11635. "phpstan/phpstan": "<0.12.20",
  11636. "vimeo/psalm": "<3.9.1"
  11637. },
  11638. "require-dev": {
  11639. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11640. },
  11641. "type": "library",
  11642. "autoload": {
  11643. "psr-4": {
  11644. "Webmozart\\Assert\\": "src/"
  11645. }
  11646. },
  11647. "notification-url": "https://packagist.org/downloads/",
  11648. "license": [
  11649. "MIT"
  11650. ],
  11651. "authors": [
  11652. {
  11653. "name": "Bernhard Schussek",
  11654. "email": "bschussek@gmail.com"
  11655. }
  11656. ],
  11657. "description": "Assertions to validate method input/output with nice error messages.",
  11658. "keywords": [
  11659. "assert",
  11660. "check",
  11661. "validate"
  11662. ],
  11663. "support": {
  11664. "issues": "https://github.com/webmozart/assert/issues",
  11665. "source": "https://github.com/webmozart/assert/tree/master"
  11666. },
  11667. "time": "2020-07-08T17:02:28+00:00"
  11668. }
  11669. ],
  11670. "aliases": [],
  11671. "minimum-stability": "dev",
  11672. "stability-flags": [],
  11673. "prefer-stable": true,
  11674. "prefer-lowest": false,
  11675. "platform": {
  11676. "php": "^7.2.5|^8.0",
  11677. "ext-json": "*",
  11678. "ext-mbstring": "*",
  11679. "ext-openssl": "*",
  11680. "ext-simplexml": "*"
  11681. },
  11682. "platform-dev": [],
  11683. "plugin-api-version": "2.0.0"
  11684. }