1
0

installed.json 276 KB

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