composer.lock 355 KB

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