composer.lock 294 KB

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