composer.lock 358 KB

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