composer.lock 272 KB

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