composer.lock 375 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421
  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": "4c4342ce6a1481f75fbca7b9c6f7fcde",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  20. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  65. },
  66. "time": "2021-06-18T13:26:35+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  79. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.3.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.2"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2021-01-20T22:51:39+00:00"
  129. },
  130. {
  131. "name": "cakephp/chronos",
  132. "version": "2.2.0",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/cakephp/chronos.git",
  136. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/cakephp/chronos/zipball/556e14da67307ffc2e68beeb7df0694dc8d1207d",
  141. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": ">=7.2"
  152. },
  153. "require-dev": {
  154. "cakephp/cakephp-codesniffer": "^4.5",
  155. "phpunit/phpunit": "^8.0 || ^9.0"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Cake\\Chronos\\": "src/"
  161. },
  162. "files": [
  163. "src/carbon_compat.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Brian Nesbitt",
  173. "email": "brian@nesbot.com",
  174. "homepage": "http://nesbot.com"
  175. },
  176. {
  177. "name": "The CakePHP Team",
  178. "homepage": "http://cakephp.org"
  179. }
  180. ],
  181. "description": "A simple API extension for DateTime.",
  182. "homepage": "http://cakephp.org",
  183. "keywords": [
  184. "date",
  185. "datetime",
  186. "time"
  187. ],
  188. "support": {
  189. "irc": "irc://irc.freenode.org/cakephp",
  190. "issues": "https://github.com/cakephp/chronos/issues",
  191. "source": "https://github.com/cakephp/chronos"
  192. },
  193. "time": "2021-06-17T13:49:10+00:00"
  194. },
  195. {
  196. "name": "dasprid/enum",
  197. "version": "1.0.3",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/DASPRiD/Enum.git",
  201. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  206. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  207. "shasum": "",
  208. "mirrors": [
  209. {
  210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  211. "preferred": true
  212. }
  213. ]
  214. },
  215. "require-dev": {
  216. "phpunit/phpunit": "^7 | ^8 | ^9",
  217. "squizlabs/php_codesniffer": "^3.4"
  218. },
  219. "type": "library",
  220. "autoload": {
  221. "psr-4": {
  222. "DASPRiD\\Enum\\": "src/"
  223. }
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "BSD-2-Clause"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Ben Scholzen 'DASPRiD'",
  232. "email": "mail@dasprids.de",
  233. "homepage": "https://dasprids.de/",
  234. "role": "Developer"
  235. }
  236. ],
  237. "description": "PHP 7.1 enum implementation",
  238. "keywords": [
  239. "enum",
  240. "map"
  241. ],
  242. "support": {
  243. "issues": "https://github.com/DASPRiD/Enum/issues",
  244. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  245. },
  246. "time": "2020-10-02T16:03:48+00:00"
  247. },
  248. {
  249. "name": "doctrine/cache",
  250. "version": "2.0.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/cache.git",
  254. "reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/cache/zipball/c9622c6820d3ede1e2315a6a377ea1076e421d88",
  259. "reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "php": "~7.1 || ^8.0"
  270. },
  271. "conflict": {
  272. "doctrine/common": ">2.2,<2.4",
  273. "psr/cache": ">=3"
  274. },
  275. "require-dev": {
  276. "alcaeus/mongo-php-adapter": "^1.1",
  277. "cache/integration-tests": "dev-master",
  278. "doctrine/coding-standard": "^8.0",
  279. "mongodb/mongodb": "^1.1",
  280. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  281. "predis/predis": "~1.0",
  282. "psr/cache": "^1.0 || ^2.0",
  283. "symfony/cache": "^4.4 || ^5.2"
  284. },
  285. "suggest": {
  286. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  321. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  322. "keywords": [
  323. "abstraction",
  324. "apcu",
  325. "cache",
  326. "caching",
  327. "couchdb",
  328. "memcached",
  329. "php",
  330. "redis",
  331. "xcache"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/doctrine/cache/issues",
  335. "source": "https://github.com/doctrine/cache/tree/2.0.3"
  336. },
  337. "funding": [
  338. {
  339. "url": "https://www.doctrine-project.org/sponsorship.html",
  340. "type": "custom"
  341. },
  342. {
  343. "url": "https://www.patreon.com/phpdoctrine",
  344. "type": "patreon"
  345. },
  346. {
  347. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  348. "type": "tidelift"
  349. }
  350. ],
  351. "time": "2021-05-25T09:43:04+00:00"
  352. },
  353. {
  354. "name": "doctrine/dbal",
  355. "version": "2.13.2",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/doctrine/dbal.git",
  359. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/doctrine/dbal/zipball/8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  364. "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4",
  365. "shasum": "",
  366. "mirrors": [
  367. {
  368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  369. "preferred": true
  370. }
  371. ]
  372. },
  373. "require": {
  374. "doctrine/cache": "^1.0|^2.0",
  375. "doctrine/deprecations": "^0.5.3",
  376. "doctrine/event-manager": "^1.0",
  377. "ext-pdo": "*",
  378. "php": "^7.1 || ^8"
  379. },
  380. "require-dev": {
  381. "doctrine/coding-standard": "9.0.0",
  382. "jetbrains/phpstorm-stubs": "2020.2",
  383. "phpstan/phpstan": "0.12.81",
  384. "phpunit/phpunit": "^7.5.20|^8.5|9.5.5",
  385. "squizlabs/php_codesniffer": "3.6.0",
  386. "symfony/cache": "^4.4",
  387. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  388. "vimeo/psalm": "4.6.4"
  389. },
  390. "suggest": {
  391. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  392. },
  393. "bin": [
  394. "bin/doctrine-dbal"
  395. ],
  396. "type": "library",
  397. "autoload": {
  398. "psr-4": {
  399. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  400. }
  401. },
  402. "notification-url": "https://packagist.org/downloads/",
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Guilherme Blanco",
  409. "email": "guilhermeblanco@gmail.com"
  410. },
  411. {
  412. "name": "Roman Borschel",
  413. "email": "roman@code-factory.org"
  414. },
  415. {
  416. "name": "Benjamin Eberlei",
  417. "email": "kontakt@beberlei.de"
  418. },
  419. {
  420. "name": "Jonathan Wage",
  421. "email": "jonwage@gmail.com"
  422. }
  423. ],
  424. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  425. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  426. "keywords": [
  427. "abstraction",
  428. "database",
  429. "db2",
  430. "dbal",
  431. "mariadb",
  432. "mssql",
  433. "mysql",
  434. "oci8",
  435. "oracle",
  436. "pdo",
  437. "pgsql",
  438. "postgresql",
  439. "queryobject",
  440. "sasql",
  441. "sql",
  442. "sqlanywhere",
  443. "sqlite",
  444. "sqlserver",
  445. "sqlsrv"
  446. ],
  447. "support": {
  448. "issues": "https://github.com/doctrine/dbal/issues",
  449. "source": "https://github.com/doctrine/dbal/tree/2.13.2"
  450. },
  451. "funding": [
  452. {
  453. "url": "https://www.doctrine-project.org/sponsorship.html",
  454. "type": "custom"
  455. },
  456. {
  457. "url": "https://www.patreon.com/phpdoctrine",
  458. "type": "patreon"
  459. },
  460. {
  461. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  462. "type": "tidelift"
  463. }
  464. ],
  465. "time": "2021-06-18T21:48:39+00:00"
  466. },
  467. {
  468. "name": "doctrine/deprecations",
  469. "version": "v0.5.3",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/doctrine/deprecations.git",
  473. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  478. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  479. "shasum": "",
  480. "mirrors": [
  481. {
  482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  483. "preferred": true
  484. }
  485. ]
  486. },
  487. "require": {
  488. "php": "^7.1|^8.0"
  489. },
  490. "require-dev": {
  491. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  492. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  493. "psr/log": "^1.0"
  494. },
  495. "suggest": {
  496. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  497. },
  498. "type": "library",
  499. "autoload": {
  500. "psr-4": {
  501. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  502. }
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "MIT"
  507. ],
  508. "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.",
  509. "homepage": "https://www.doctrine-project.org/",
  510. "support": {
  511. "issues": "https://github.com/doctrine/deprecations/issues",
  512. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  513. },
  514. "time": "2021-03-21T12:59:47+00:00"
  515. },
  516. {
  517. "name": "doctrine/event-manager",
  518. "version": "1.1.1",
  519. "source": {
  520. "type": "git",
  521. "url": "https://github.com/doctrine/event-manager.git",
  522. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  523. },
  524. "dist": {
  525. "type": "zip",
  526. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  527. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  528. "shasum": "",
  529. "mirrors": [
  530. {
  531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  532. "preferred": true
  533. }
  534. ]
  535. },
  536. "require": {
  537. "php": "^7.1 || ^8.0"
  538. },
  539. "conflict": {
  540. "doctrine/common": "<2.9@dev"
  541. },
  542. "require-dev": {
  543. "doctrine/coding-standard": "^6.0",
  544. "phpunit/phpunit": "^7.0"
  545. },
  546. "type": "library",
  547. "extra": {
  548. "branch-alias": {
  549. "dev-master": "1.0.x-dev"
  550. }
  551. },
  552. "autoload": {
  553. "psr-4": {
  554. "Doctrine\\Common\\": "lib/Doctrine/Common"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "MIT"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Guilherme Blanco",
  564. "email": "guilhermeblanco@gmail.com"
  565. },
  566. {
  567. "name": "Roman Borschel",
  568. "email": "roman@code-factory.org"
  569. },
  570. {
  571. "name": "Benjamin Eberlei",
  572. "email": "kontakt@beberlei.de"
  573. },
  574. {
  575. "name": "Jonathan Wage",
  576. "email": "jonwage@gmail.com"
  577. },
  578. {
  579. "name": "Johannes Schmitt",
  580. "email": "schmittjoh@gmail.com"
  581. },
  582. {
  583. "name": "Marco Pivetta",
  584. "email": "ocramius@gmail.com"
  585. }
  586. ],
  587. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  588. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  589. "keywords": [
  590. "event",
  591. "event dispatcher",
  592. "event manager",
  593. "event system",
  594. "events"
  595. ],
  596. "support": {
  597. "issues": "https://github.com/doctrine/event-manager/issues",
  598. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  599. },
  600. "funding": [
  601. {
  602. "url": "https://www.doctrine-project.org/sponsorship.html",
  603. "type": "custom"
  604. },
  605. {
  606. "url": "https://www.patreon.com/phpdoctrine",
  607. "type": "patreon"
  608. },
  609. {
  610. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  611. "type": "tidelift"
  612. }
  613. ],
  614. "time": "2020-05-29T18:28:51+00:00"
  615. },
  616. {
  617. "name": "doctrine/inflector",
  618. "version": "2.0.3",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/doctrine/inflector.git",
  622. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  627. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  628. "shasum": "",
  629. "mirrors": [
  630. {
  631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  632. "preferred": true
  633. }
  634. ]
  635. },
  636. "require": {
  637. "php": "^7.2 || ^8.0"
  638. },
  639. "require-dev": {
  640. "doctrine/coding-standard": "^7.0",
  641. "phpstan/phpstan": "^0.11",
  642. "phpstan/phpstan-phpunit": "^0.11",
  643. "phpstan/phpstan-strict-rules": "^0.11",
  644. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  645. },
  646. "type": "library",
  647. "extra": {
  648. "branch-alias": {
  649. "dev-master": "2.0.x-dev"
  650. }
  651. },
  652. "autoload": {
  653. "psr-4": {
  654. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  655. }
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "MIT"
  660. ],
  661. "authors": [
  662. {
  663. "name": "Guilherme Blanco",
  664. "email": "guilhermeblanco@gmail.com"
  665. },
  666. {
  667. "name": "Roman Borschel",
  668. "email": "roman@code-factory.org"
  669. },
  670. {
  671. "name": "Benjamin Eberlei",
  672. "email": "kontakt@beberlei.de"
  673. },
  674. {
  675. "name": "Jonathan Wage",
  676. "email": "jonwage@gmail.com"
  677. },
  678. {
  679. "name": "Johannes Schmitt",
  680. "email": "schmittjoh@gmail.com"
  681. }
  682. ],
  683. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  684. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  685. "keywords": [
  686. "inflection",
  687. "inflector",
  688. "lowercase",
  689. "manipulation",
  690. "php",
  691. "plural",
  692. "singular",
  693. "strings",
  694. "uppercase",
  695. "words"
  696. ],
  697. "support": {
  698. "issues": "https://github.com/doctrine/inflector/issues",
  699. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  700. },
  701. "funding": [
  702. {
  703. "url": "https://www.doctrine-project.org/sponsorship.html",
  704. "type": "custom"
  705. },
  706. {
  707. "url": "https://www.patreon.com/phpdoctrine",
  708. "type": "patreon"
  709. },
  710. {
  711. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  712. "type": "tidelift"
  713. }
  714. ],
  715. "time": "2020-05-29T15:13:26+00:00"
  716. },
  717. {
  718. "name": "doctrine/lexer",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/doctrine/lexer.git",
  723. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  728. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  729. "shasum": "",
  730. "mirrors": [
  731. {
  732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  733. "preferred": true
  734. }
  735. ]
  736. },
  737. "require": {
  738. "php": "^7.2 || ^8.0"
  739. },
  740. "require-dev": {
  741. "doctrine/coding-standard": "^6.0",
  742. "phpstan/phpstan": "^0.11.8",
  743. "phpunit/phpunit": "^8.2"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "branch-alias": {
  748. "dev-master": "1.2.x-dev"
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Guilherme Blanco",
  763. "email": "guilhermeblanco@gmail.com"
  764. },
  765. {
  766. "name": "Roman Borschel",
  767. "email": "roman@code-factory.org"
  768. },
  769. {
  770. "name": "Johannes Schmitt",
  771. "email": "schmittjoh@gmail.com"
  772. }
  773. ],
  774. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  775. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  776. "keywords": [
  777. "annotations",
  778. "docblock",
  779. "lexer",
  780. "parser",
  781. "php"
  782. ],
  783. "support": {
  784. "issues": "https://github.com/doctrine/lexer/issues",
  785. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  786. },
  787. "funding": [
  788. {
  789. "url": "https://www.doctrine-project.org/sponsorship.html",
  790. "type": "custom"
  791. },
  792. {
  793. "url": "https://www.patreon.com/phpdoctrine",
  794. "type": "patreon"
  795. },
  796. {
  797. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  798. "type": "tidelift"
  799. }
  800. ],
  801. "time": "2020-05-25T17:44:05+00:00"
  802. },
  803. {
  804. "name": "dragonmantank/cron-expression",
  805. "version": "v2.3.1",
  806. "source": {
  807. "type": "git",
  808. "url": "https://github.com/dragonmantank/cron-expression.git",
  809. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  810. },
  811. "dist": {
  812. "type": "zip",
  813. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  814. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  815. "shasum": "",
  816. "mirrors": [
  817. {
  818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  819. "preferred": true
  820. }
  821. ]
  822. },
  823. "require": {
  824. "php": "^7.0|^8.0"
  825. },
  826. "require-dev": {
  827. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  828. },
  829. "type": "library",
  830. "extra": {
  831. "branch-alias": {
  832. "dev-master": "2.3-dev"
  833. }
  834. },
  835. "autoload": {
  836. "psr-4": {
  837. "Cron\\": "src/Cron/"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Michael Dowling",
  847. "email": "mtdowling@gmail.com",
  848. "homepage": "https://github.com/mtdowling"
  849. },
  850. {
  851. "name": "Chris Tankersley",
  852. "email": "chris@ctankersley.com",
  853. "homepage": "https://github.com/dragonmantank"
  854. }
  855. ],
  856. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  857. "keywords": [
  858. "cron",
  859. "schedule"
  860. ],
  861. "support": {
  862. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  863. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  864. },
  865. "funding": [
  866. {
  867. "url": "https://github.com/dragonmantank",
  868. "type": "github"
  869. }
  870. ],
  871. "time": "2020-10-13T00:52:37+00:00"
  872. },
  873. {
  874. "name": "egulias/email-validator",
  875. "version": "2.1.25",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/egulias/EmailValidator.git",
  879. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  884. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  885. "shasum": "",
  886. "mirrors": [
  887. {
  888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  889. "preferred": true
  890. }
  891. ]
  892. },
  893. "require": {
  894. "doctrine/lexer": "^1.0.1",
  895. "php": ">=5.5",
  896. "symfony/polyfill-intl-idn": "^1.10"
  897. },
  898. "require-dev": {
  899. "dominicsayers/isemail": "^3.0.7",
  900. "phpunit/phpunit": "^4.8.36|^7.5.15",
  901. "satooshi/php-coveralls": "^1.0.1"
  902. },
  903. "suggest": {
  904. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  905. },
  906. "type": "library",
  907. "extra": {
  908. "branch-alias": {
  909. "dev-master": "2.1.x-dev"
  910. }
  911. },
  912. "autoload": {
  913. "psr-4": {
  914. "Egulias\\EmailValidator\\": "src"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "MIT"
  920. ],
  921. "authors": [
  922. {
  923. "name": "Eduardo Gulias Davis"
  924. }
  925. ],
  926. "description": "A library for validating emails against several RFCs",
  927. "homepage": "https://github.com/egulias/EmailValidator",
  928. "keywords": [
  929. "email",
  930. "emailvalidation",
  931. "emailvalidator",
  932. "validation",
  933. "validator"
  934. ],
  935. "support": {
  936. "issues": "https://github.com/egulias/EmailValidator/issues",
  937. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  938. },
  939. "funding": [
  940. {
  941. "url": "https://github.com/egulias",
  942. "type": "github"
  943. }
  944. ],
  945. "time": "2020-12-29T14:50:06+00:00"
  946. },
  947. {
  948. "name": "endroid/qr-code",
  949. "version": "3.9.7",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/endroid/qr-code.git",
  953. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  958. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  959. "shasum": "",
  960. "mirrors": [
  961. {
  962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  963. "preferred": true
  964. }
  965. ]
  966. },
  967. "require": {
  968. "bacon/bacon-qr-code": "^2.0",
  969. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  970. "myclabs/php-enum": "^1.5",
  971. "php": "^7.3||^8.0",
  972. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  973. "symfony/property-access": "^3.4||^4.4||^5.0"
  974. },
  975. "require-dev": {
  976. "endroid/quality": "^1.5.2",
  977. "setasign/fpdf": "^1.8"
  978. },
  979. "suggest": {
  980. "ext-gd": "Required for generating PNG images",
  981. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  982. "setasign/fpdf": "Required to use the FPDF writer.",
  983. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "branch-alias": {
  988. "dev-master": "3.x-dev"
  989. }
  990. },
  991. "autoload": {
  992. "psr-4": {
  993. "Endroid\\QrCode\\": "src/"
  994. }
  995. },
  996. "notification-url": "https://packagist.org/downloads/",
  997. "license": [
  998. "MIT"
  999. ],
  1000. "authors": [
  1001. {
  1002. "name": "Jeroen van den Enden",
  1003. "email": "info@endroid.nl"
  1004. }
  1005. ],
  1006. "description": "Endroid QR Code",
  1007. "homepage": "https://github.com/endroid/qr-code",
  1008. "keywords": [
  1009. "bundle",
  1010. "code",
  1011. "endroid",
  1012. "php",
  1013. "qr",
  1014. "qrcode"
  1015. ],
  1016. "support": {
  1017. "issues": "https://github.com/endroid/qr-code/issues",
  1018. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1019. },
  1020. "funding": [
  1021. {
  1022. "url": "https://github.com/endroid",
  1023. "type": "github"
  1024. }
  1025. ],
  1026. "time": "2021-04-20T19:10:54+00:00"
  1027. },
  1028. {
  1029. "name": "ezyang/htmlpurifier",
  1030. "version": "v4.13.0",
  1031. "source": {
  1032. "type": "git",
  1033. "url": "https://github.com/ezyang/htmlpurifier.git",
  1034. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1035. },
  1036. "dist": {
  1037. "type": "zip",
  1038. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1039. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1040. "shasum": "",
  1041. "mirrors": [
  1042. {
  1043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1044. "preferred": true
  1045. }
  1046. ]
  1047. },
  1048. "require": {
  1049. "php": ">=5.2"
  1050. },
  1051. "require-dev": {
  1052. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1053. },
  1054. "type": "library",
  1055. "autoload": {
  1056. "psr-0": {
  1057. "HTMLPurifier": "library/"
  1058. },
  1059. "files": [
  1060. "library/HTMLPurifier.composer.php"
  1061. ],
  1062. "exclude-from-classmap": [
  1063. "/library/HTMLPurifier/Language/"
  1064. ]
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "LGPL-2.1-or-later"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Edward Z. Yang",
  1073. "email": "admin@htmlpurifier.org",
  1074. "homepage": "http://ezyang.com"
  1075. }
  1076. ],
  1077. "description": "Standards compliant HTML filter written in PHP",
  1078. "homepage": "http://htmlpurifier.org/",
  1079. "keywords": [
  1080. "html"
  1081. ],
  1082. "support": {
  1083. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1084. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1085. },
  1086. "time": "2020-06-29T00:56:53+00:00"
  1087. },
  1088. {
  1089. "name": "facade/flare-client-php",
  1090. "version": "1.8.1",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/facade/flare-client-php.git",
  1094. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1099. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1100. "shasum": "",
  1101. "mirrors": [
  1102. {
  1103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1104. "preferred": true
  1105. }
  1106. ]
  1107. },
  1108. "require": {
  1109. "facade/ignition-contracts": "~1.0",
  1110. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1111. "php": "^7.1|^8.0",
  1112. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1113. "symfony/mime": "^3.4|^4.0|^5.1",
  1114. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1115. },
  1116. "require-dev": {
  1117. "friendsofphp/php-cs-fixer": "^2.14",
  1118. "phpunit/phpunit": "^7.5.16",
  1119. "spatie/phpunit-snapshot-assertions": "^2.0"
  1120. },
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "1.0-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Facade\\FlareClient\\": "src"
  1130. },
  1131. "files": [
  1132. "src/helpers.php"
  1133. ]
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "description": "Send PHP errors to Flare",
  1140. "homepage": "https://github.com/facade/flare-client-php",
  1141. "keywords": [
  1142. "exception",
  1143. "facade",
  1144. "flare",
  1145. "reporting"
  1146. ],
  1147. "support": {
  1148. "issues": "https://github.com/facade/flare-client-php/issues",
  1149. "source": "https://github.com/facade/flare-client-php/tree/1.8.1"
  1150. },
  1151. "funding": [
  1152. {
  1153. "url": "https://github.com/spatie",
  1154. "type": "github"
  1155. }
  1156. ],
  1157. "time": "2021-05-31T19:23:29+00:00"
  1158. },
  1159. {
  1160. "name": "facade/ignition",
  1161. "version": "2.10.2",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/facade/ignition.git",
  1165. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/facade/ignition/zipball/43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1170. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1171. "shasum": "",
  1172. "mirrors": [
  1173. {
  1174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1175. "preferred": true
  1176. }
  1177. ]
  1178. },
  1179. "require": {
  1180. "ext-json": "*",
  1181. "ext-mbstring": "*",
  1182. "facade/flare-client-php": "^1.6",
  1183. "facade/ignition-contracts": "^1.0.2",
  1184. "filp/whoops": "^2.4",
  1185. "illuminate/support": "^7.0|^8.0",
  1186. "monolog/monolog": "^2.0",
  1187. "php": "^7.2.5|^8.0",
  1188. "symfony/console": "^5.0",
  1189. "symfony/var-dumper": "^5.0"
  1190. },
  1191. "require-dev": {
  1192. "friendsofphp/php-cs-fixer": "^2.14",
  1193. "mockery/mockery": "^1.3",
  1194. "orchestra/testbench": "^5.0|^6.0",
  1195. "psalm/plugin-laravel": "^1.2"
  1196. },
  1197. "suggest": {
  1198. "laravel/telescope": "^3.1"
  1199. },
  1200. "type": "library",
  1201. "extra": {
  1202. "branch-alias": {
  1203. "dev-master": "2.x-dev"
  1204. },
  1205. "laravel": {
  1206. "providers": [
  1207. "Facade\\Ignition\\IgnitionServiceProvider"
  1208. ],
  1209. "aliases": {
  1210. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1211. }
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Facade\\Ignition\\": "src"
  1217. },
  1218. "files": [
  1219. "src/helpers.php"
  1220. ]
  1221. },
  1222. "notification-url": "https://packagist.org/downloads/",
  1223. "license": [
  1224. "MIT"
  1225. ],
  1226. "description": "A beautiful error page for Laravel applications.",
  1227. "homepage": "https://github.com/facade/ignition",
  1228. "keywords": [
  1229. "error",
  1230. "flare",
  1231. "laravel",
  1232. "page"
  1233. ],
  1234. "support": {
  1235. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1236. "forum": "https://twitter.com/flareappio",
  1237. "issues": "https://github.com/facade/ignition/issues",
  1238. "source": "https://github.com/facade/ignition"
  1239. },
  1240. "time": "2021-06-11T06:57:25+00:00"
  1241. },
  1242. {
  1243. "name": "facade/ignition-contracts",
  1244. "version": "1.0.2",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/facade/ignition-contracts.git",
  1248. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1253. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1254. "shasum": "",
  1255. "mirrors": [
  1256. {
  1257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1258. "preferred": true
  1259. }
  1260. ]
  1261. },
  1262. "require": {
  1263. "php": "^7.3|^8.0"
  1264. },
  1265. "require-dev": {
  1266. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1267. "phpunit/phpunit": "^9.3.11",
  1268. "vimeo/psalm": "^3.17.1"
  1269. },
  1270. "type": "library",
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Facade\\IgnitionContracts\\": "src"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "Freek Van der Herten",
  1283. "email": "freek@spatie.be",
  1284. "homepage": "https://flareapp.io",
  1285. "role": "Developer"
  1286. }
  1287. ],
  1288. "description": "Solution contracts for Ignition",
  1289. "homepage": "https://github.com/facade/ignition-contracts",
  1290. "keywords": [
  1291. "contracts",
  1292. "flare",
  1293. "ignition"
  1294. ],
  1295. "support": {
  1296. "issues": "https://github.com/facade/ignition-contracts/issues",
  1297. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1298. },
  1299. "time": "2020-10-16T08:27:54+00:00"
  1300. },
  1301. {
  1302. "name": "fideloper/proxy",
  1303. "version": "4.4.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/fideloper/TrustedProxy.git",
  1307. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1312. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1313. "shasum": "",
  1314. "mirrors": [
  1315. {
  1316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1317. "preferred": true
  1318. }
  1319. ]
  1320. },
  1321. "require": {
  1322. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1323. "php": ">=5.4.0"
  1324. },
  1325. "require-dev": {
  1326. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1327. "mockery/mockery": "^1.0",
  1328. "phpunit/phpunit": "^6.0"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "laravel": {
  1333. "providers": [
  1334. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1335. ]
  1336. }
  1337. },
  1338. "autoload": {
  1339. "psr-4": {
  1340. "Fideloper\\Proxy\\": "src/"
  1341. }
  1342. },
  1343. "notification-url": "https://packagist.org/downloads/",
  1344. "license": [
  1345. "MIT"
  1346. ],
  1347. "authors": [
  1348. {
  1349. "name": "Chris Fidao",
  1350. "email": "fideloper@gmail.com"
  1351. }
  1352. ],
  1353. "description": "Set trusted proxies for Laravel",
  1354. "keywords": [
  1355. "load balancing",
  1356. "proxy",
  1357. "trusted proxy"
  1358. ],
  1359. "support": {
  1360. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1361. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1362. },
  1363. "time": "2020-10-22T13:48:01+00:00"
  1364. },
  1365. {
  1366. "name": "filp/whoops",
  1367. "version": "2.13.0",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/filp/whoops.git",
  1371. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/filp/whoops/zipball/2edbc73a4687d9085c8f20f398eebade844e8424",
  1376. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424",
  1377. "shasum": "",
  1378. "mirrors": [
  1379. {
  1380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1381. "preferred": true
  1382. }
  1383. ]
  1384. },
  1385. "require": {
  1386. "php": "^5.5.9 || ^7.0 || ^8.0",
  1387. "psr/log": "^1.0.1"
  1388. },
  1389. "require-dev": {
  1390. "mockery/mockery": "^0.9 || ^1.0",
  1391. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1392. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1393. },
  1394. "suggest": {
  1395. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1396. "whoops/soap": "Formats errors as SOAP responses"
  1397. },
  1398. "type": "library",
  1399. "extra": {
  1400. "branch-alias": {
  1401. "dev-master": "2.7-dev"
  1402. }
  1403. },
  1404. "autoload": {
  1405. "psr-4": {
  1406. "Whoops\\": "src/Whoops/"
  1407. }
  1408. },
  1409. "notification-url": "https://packagist.org/downloads/",
  1410. "license": [
  1411. "MIT"
  1412. ],
  1413. "authors": [
  1414. {
  1415. "name": "Filipe Dobreira",
  1416. "homepage": "https://github.com/filp",
  1417. "role": "Developer"
  1418. }
  1419. ],
  1420. "description": "php error handling for cool kids",
  1421. "homepage": "https://filp.github.io/whoops/",
  1422. "keywords": [
  1423. "error",
  1424. "exception",
  1425. "handling",
  1426. "library",
  1427. "throwable",
  1428. "whoops"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/filp/whoops/issues",
  1432. "source": "https://github.com/filp/whoops/tree/2.13.0"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://github.com/denis-sokolov",
  1437. "type": "github"
  1438. }
  1439. ],
  1440. "time": "2021-06-04T12:00:00+00:00"
  1441. },
  1442. {
  1443. "name": "firebase/php-jwt",
  1444. "version": "v5.4.0",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/firebase/php-jwt.git",
  1448. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1453. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": ">=5.3.0"
  1464. },
  1465. "require-dev": {
  1466. "phpunit/phpunit": ">=4.8 <=9"
  1467. },
  1468. "suggest": {
  1469. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1470. },
  1471. "type": "library",
  1472. "autoload": {
  1473. "psr-4": {
  1474. "Firebase\\JWT\\": "src"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "BSD-3-Clause"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Neuman Vong",
  1484. "email": "neuman+pear@twilio.com",
  1485. "role": "Developer"
  1486. },
  1487. {
  1488. "name": "Anant Narayanan",
  1489. "email": "anant@php.net",
  1490. "role": "Developer"
  1491. }
  1492. ],
  1493. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1494. "homepage": "https://github.com/firebase/php-jwt",
  1495. "keywords": [
  1496. "jwt",
  1497. "php"
  1498. ],
  1499. "support": {
  1500. "issues": "https://github.com/firebase/php-jwt/issues",
  1501. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1502. },
  1503. "time": "2021-06-23T19:00:23+00:00"
  1504. },
  1505. {
  1506. "name": "guzzlehttp/guzzle",
  1507. "version": "6.5.5",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/guzzle/guzzle.git",
  1511. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1516. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1517. "shasum": "",
  1518. "mirrors": [
  1519. {
  1520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1521. "preferred": true
  1522. }
  1523. ]
  1524. },
  1525. "require": {
  1526. "ext-json": "*",
  1527. "guzzlehttp/promises": "^1.0",
  1528. "guzzlehttp/psr7": "^1.6.1",
  1529. "php": ">=5.5",
  1530. "symfony/polyfill-intl-idn": "^1.17.0"
  1531. },
  1532. "require-dev": {
  1533. "ext-curl": "*",
  1534. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1535. "psr/log": "^1.1"
  1536. },
  1537. "suggest": {
  1538. "psr/log": "Required for using the Log middleware"
  1539. },
  1540. "type": "library",
  1541. "extra": {
  1542. "branch-alias": {
  1543. "dev-master": "6.5-dev"
  1544. }
  1545. },
  1546. "autoload": {
  1547. "psr-4": {
  1548. "GuzzleHttp\\": "src/"
  1549. },
  1550. "files": [
  1551. "src/functions_include.php"
  1552. ]
  1553. },
  1554. "notification-url": "https://packagist.org/downloads/",
  1555. "license": [
  1556. "MIT"
  1557. ],
  1558. "authors": [
  1559. {
  1560. "name": "Michael Dowling",
  1561. "email": "mtdowling@gmail.com",
  1562. "homepage": "https://github.com/mtdowling"
  1563. }
  1564. ],
  1565. "description": "Guzzle is a PHP HTTP client library",
  1566. "homepage": "http://guzzlephp.org/",
  1567. "keywords": [
  1568. "client",
  1569. "curl",
  1570. "framework",
  1571. "http",
  1572. "http client",
  1573. "rest",
  1574. "web service"
  1575. ],
  1576. "support": {
  1577. "issues": "https://github.com/guzzle/guzzle/issues",
  1578. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1579. },
  1580. "time": "2020-06-16T21:01:06+00:00"
  1581. },
  1582. {
  1583. "name": "guzzlehttp/promises",
  1584. "version": "1.4.1",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/guzzle/promises.git",
  1588. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1593. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1594. "shasum": "",
  1595. "mirrors": [
  1596. {
  1597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1598. "preferred": true
  1599. }
  1600. ]
  1601. },
  1602. "require": {
  1603. "php": ">=5.5"
  1604. },
  1605. "require-dev": {
  1606. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "1.4-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "GuzzleHttp\\Promise\\": "src/"
  1617. },
  1618. "files": [
  1619. "src/functions_include.php"
  1620. ]
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Michael Dowling",
  1629. "email": "mtdowling@gmail.com",
  1630. "homepage": "https://github.com/mtdowling"
  1631. }
  1632. ],
  1633. "description": "Guzzle promises library",
  1634. "keywords": [
  1635. "promise"
  1636. ],
  1637. "support": {
  1638. "issues": "https://github.com/guzzle/promises/issues",
  1639. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1640. },
  1641. "time": "2021-03-07T09:25:29+00:00"
  1642. },
  1643. {
  1644. "name": "guzzlehttp/psr7",
  1645. "version": "1.8.2",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/guzzle/psr7.git",
  1649. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1654. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1655. "shasum": "",
  1656. "mirrors": [
  1657. {
  1658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1659. "preferred": true
  1660. }
  1661. ]
  1662. },
  1663. "require": {
  1664. "php": ">=5.4.0",
  1665. "psr/http-message": "~1.0",
  1666. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1667. },
  1668. "provide": {
  1669. "psr/http-message-implementation": "1.0"
  1670. },
  1671. "require-dev": {
  1672. "ext-zlib": "*",
  1673. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1674. },
  1675. "suggest": {
  1676. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1677. },
  1678. "type": "library",
  1679. "extra": {
  1680. "branch-alias": {
  1681. "dev-master": "1.7-dev"
  1682. }
  1683. },
  1684. "autoload": {
  1685. "psr-4": {
  1686. "GuzzleHttp\\Psr7\\": "src/"
  1687. },
  1688. "files": [
  1689. "src/functions_include.php"
  1690. ]
  1691. },
  1692. "notification-url": "https://packagist.org/downloads/",
  1693. "license": [
  1694. "MIT"
  1695. ],
  1696. "authors": [
  1697. {
  1698. "name": "Michael Dowling",
  1699. "email": "mtdowling@gmail.com",
  1700. "homepage": "https://github.com/mtdowling"
  1701. },
  1702. {
  1703. "name": "Tobias Schultze",
  1704. "homepage": "https://github.com/Tobion"
  1705. }
  1706. ],
  1707. "description": "PSR-7 message implementation that also provides common utility methods",
  1708. "keywords": [
  1709. "http",
  1710. "message",
  1711. "psr-7",
  1712. "request",
  1713. "response",
  1714. "stream",
  1715. "uri",
  1716. "url"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/guzzle/psr7/issues",
  1720. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1721. },
  1722. "time": "2021-04-26T09:17:50+00:00"
  1723. },
  1724. {
  1725. "name": "intervention/image",
  1726. "version": "2.5.1",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/Intervention/image.git",
  1730. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1735. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1736. "shasum": "",
  1737. "mirrors": [
  1738. {
  1739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1740. "preferred": true
  1741. }
  1742. ]
  1743. },
  1744. "require": {
  1745. "ext-fileinfo": "*",
  1746. "guzzlehttp/psr7": "~1.1",
  1747. "php": ">=5.4.0"
  1748. },
  1749. "require-dev": {
  1750. "mockery/mockery": "~0.9.2",
  1751. "phpunit/phpunit": "^4.8 || ^5.7"
  1752. },
  1753. "suggest": {
  1754. "ext-gd": "to use GD library based image processing.",
  1755. "ext-imagick": "to use Imagick based image processing.",
  1756. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1757. },
  1758. "type": "library",
  1759. "extra": {
  1760. "branch-alias": {
  1761. "dev-master": "2.4-dev"
  1762. },
  1763. "laravel": {
  1764. "providers": [
  1765. "Intervention\\Image\\ImageServiceProvider"
  1766. ],
  1767. "aliases": {
  1768. "Image": "Intervention\\Image\\Facades\\Image"
  1769. }
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Intervention\\Image\\": "src/Intervention/Image"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Oliver Vogel",
  1784. "email": "oliver@olivervogel.com",
  1785. "homepage": "http://olivervogel.com/"
  1786. }
  1787. ],
  1788. "description": "Image handling and manipulation library with support for Laravel integration",
  1789. "homepage": "http://image.intervention.io/",
  1790. "keywords": [
  1791. "gd",
  1792. "image",
  1793. "imagick",
  1794. "laravel",
  1795. "thumbnail",
  1796. "watermark"
  1797. ],
  1798. "support": {
  1799. "issues": "https://github.com/Intervention/image/issues",
  1800. "source": "https://github.com/Intervention/image/tree/master"
  1801. },
  1802. "time": "2019-11-02T09:15:47+00:00"
  1803. },
  1804. {
  1805. "name": "khanamiryan/qrcode-detector-decoder",
  1806. "version": "1.0.5.1",
  1807. "source": {
  1808. "type": "git",
  1809. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1810. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1811. },
  1812. "dist": {
  1813. "type": "zip",
  1814. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1815. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1816. "shasum": "",
  1817. "mirrors": [
  1818. {
  1819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1820. "preferred": true
  1821. }
  1822. ]
  1823. },
  1824. "require": {
  1825. "php": ">=5.6"
  1826. },
  1827. "require-dev": {
  1828. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1829. },
  1830. "type": "library",
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Zxing\\": "lib/"
  1834. },
  1835. "files": [
  1836. "lib/Common/customFunctions.php"
  1837. ]
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT",
  1842. "Apache-2.0"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Ashot Khanamiryan",
  1847. "email": "a.khanamiryan@gmail.com",
  1848. "homepage": "https://github.com/khanamiryan",
  1849. "role": "Developer"
  1850. }
  1851. ],
  1852. "description": "QR code decoder / reader",
  1853. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1854. "keywords": [
  1855. "barcode",
  1856. "qr",
  1857. "zxing"
  1858. ],
  1859. "support": {
  1860. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1861. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1862. },
  1863. "time": "2021-04-21T08:02:08+00:00"
  1864. },
  1865. {
  1866. "name": "kitetail/zttp",
  1867. "version": "v0.6.0",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/kitetail/zttp.git",
  1871. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1876. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1877. "shasum": "",
  1878. "mirrors": [
  1879. {
  1880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1881. "preferred": true
  1882. }
  1883. ]
  1884. },
  1885. "require": {
  1886. "guzzlehttp/guzzle": "^6.0",
  1887. "php": ">=7.0",
  1888. "tightenco/collect": "^5.4"
  1889. },
  1890. "require-dev": {
  1891. "laravel/lumen-framework": "5.5.*",
  1892. "phpunit/phpunit": "^6.0"
  1893. },
  1894. "type": "library",
  1895. "autoload": {
  1896. "files": [
  1897. "src/Zttp.php"
  1898. ]
  1899. },
  1900. "notification-url": "https://packagist.org/downloads/",
  1901. "license": [
  1902. "MIT"
  1903. ],
  1904. "authors": [
  1905. {
  1906. "name": "Adam Wathan",
  1907. "email": "adam.wathan@gmail.com"
  1908. }
  1909. ],
  1910. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1911. "keywords": [
  1912. "Guzzle",
  1913. "http"
  1914. ],
  1915. "support": {
  1916. "issues": "https://github.com/kitetail/zttp/issues",
  1917. "source": "https://github.com/kitetail/zttp/tree/master"
  1918. },
  1919. "time": "2019-06-10T12:18:52+00:00"
  1920. },
  1921. {
  1922. "name": "laravel/framework",
  1923. "version": "v7.30.4",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/laravel/framework.git",
  1927. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1932. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1933. "shasum": "",
  1934. "mirrors": [
  1935. {
  1936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1937. "preferred": true
  1938. }
  1939. ]
  1940. },
  1941. "require": {
  1942. "doctrine/inflector": "^1.4|^2.0",
  1943. "dragonmantank/cron-expression": "^2.3.1",
  1944. "egulias/email-validator": "^2.1.10",
  1945. "ext-json": "*",
  1946. "ext-mbstring": "*",
  1947. "ext-openssl": "*",
  1948. "league/commonmark": "^1.3",
  1949. "league/flysystem": "^1.1",
  1950. "monolog/monolog": "^2.0",
  1951. "nesbot/carbon": "^2.31",
  1952. "opis/closure": "^3.6",
  1953. "php": "^7.2.5|^8.0",
  1954. "psr/container": "^1.0",
  1955. "psr/simple-cache": "^1.0",
  1956. "ramsey/uuid": "^3.7|^4.0",
  1957. "swiftmailer/swiftmailer": "^6.0",
  1958. "symfony/console": "^5.0",
  1959. "symfony/error-handler": "^5.0",
  1960. "symfony/finder": "^5.0",
  1961. "symfony/http-foundation": "^5.0",
  1962. "symfony/http-kernel": "^5.0",
  1963. "symfony/mime": "^5.0",
  1964. "symfony/polyfill-php73": "^1.17",
  1965. "symfony/process": "^5.0",
  1966. "symfony/routing": "^5.0",
  1967. "symfony/var-dumper": "^5.0",
  1968. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1969. "vlucas/phpdotenv": "^4.0",
  1970. "voku/portable-ascii": "^1.4.8"
  1971. },
  1972. "conflict": {
  1973. "tightenco/collect": "<5.5.33"
  1974. },
  1975. "provide": {
  1976. "psr/container-implementation": "1.0"
  1977. },
  1978. "replace": {
  1979. "illuminate/auth": "self.version",
  1980. "illuminate/broadcasting": "self.version",
  1981. "illuminate/bus": "self.version",
  1982. "illuminate/cache": "self.version",
  1983. "illuminate/config": "self.version",
  1984. "illuminate/console": "self.version",
  1985. "illuminate/container": "self.version",
  1986. "illuminate/contracts": "self.version",
  1987. "illuminate/cookie": "self.version",
  1988. "illuminate/database": "self.version",
  1989. "illuminate/encryption": "self.version",
  1990. "illuminate/events": "self.version",
  1991. "illuminate/filesystem": "self.version",
  1992. "illuminate/hashing": "self.version",
  1993. "illuminate/http": "self.version",
  1994. "illuminate/log": "self.version",
  1995. "illuminate/mail": "self.version",
  1996. "illuminate/notifications": "self.version",
  1997. "illuminate/pagination": "self.version",
  1998. "illuminate/pipeline": "self.version",
  1999. "illuminate/queue": "self.version",
  2000. "illuminate/redis": "self.version",
  2001. "illuminate/routing": "self.version",
  2002. "illuminate/session": "self.version",
  2003. "illuminate/support": "self.version",
  2004. "illuminate/testing": "self.version",
  2005. "illuminate/translation": "self.version",
  2006. "illuminate/validation": "self.version",
  2007. "illuminate/view": "self.version"
  2008. },
  2009. "require-dev": {
  2010. "aws/aws-sdk-php": "^3.155",
  2011. "doctrine/dbal": "^2.6",
  2012. "filp/whoops": "^2.8",
  2013. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2014. "league/flysystem-cached-adapter": "^1.0",
  2015. "mockery/mockery": "~1.3.3|^1.4.2",
  2016. "moontoast/math": "^1.1",
  2017. "orchestra/testbench-core": "^5.8",
  2018. "pda/pheanstalk": "^4.0",
  2019. "phpunit/phpunit": "^8.4|^9.3.3",
  2020. "predis/predis": "^1.1.1",
  2021. "symfony/cache": "^5.0"
  2022. },
  2023. "suggest": {
  2024. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2025. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2026. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2027. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2028. "ext-memcached": "Required to use the memcache cache driver.",
  2029. "ext-pcntl": "Required to use all features of the queue worker.",
  2030. "ext-posix": "Required to use all features of the queue worker.",
  2031. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2032. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2033. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2034. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2035. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2036. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2037. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2038. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2039. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2040. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2041. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2042. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2043. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2044. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2045. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2046. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2047. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2048. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2049. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2050. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2051. },
  2052. "type": "library",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-master": "7.x-dev"
  2056. }
  2057. },
  2058. "autoload": {
  2059. "files": [
  2060. "src/Illuminate/Foundation/helpers.php",
  2061. "src/Illuminate/Support/helpers.php"
  2062. ],
  2063. "psr-4": {
  2064. "Illuminate\\": "src/Illuminate/"
  2065. }
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "Taylor Otwell",
  2074. "email": "taylor@laravel.com"
  2075. }
  2076. ],
  2077. "description": "The Laravel Framework.",
  2078. "homepage": "https://laravel.com",
  2079. "keywords": [
  2080. "framework",
  2081. "laravel"
  2082. ],
  2083. "support": {
  2084. "issues": "https://github.com/laravel/framework/issues",
  2085. "source": "https://github.com/laravel/framework"
  2086. },
  2087. "time": "2021-01-21T14:10:48+00:00"
  2088. },
  2089. {
  2090. "name": "laravel/horizon",
  2091. "version": "v4.3.5",
  2092. "source": {
  2093. "type": "git",
  2094. "url": "https://github.com/laravel/horizon.git",
  2095. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2096. },
  2097. "dist": {
  2098. "type": "zip",
  2099. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2100. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2101. "shasum": "",
  2102. "mirrors": [
  2103. {
  2104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2105. "preferred": true
  2106. }
  2107. ]
  2108. },
  2109. "require": {
  2110. "cakephp/chronos": "^2.0",
  2111. "ext-json": "*",
  2112. "ext-pcntl": "*",
  2113. "ext-posix": "*",
  2114. "illuminate/contracts": "^7.0",
  2115. "illuminate/queue": "^7.0",
  2116. "illuminate/support": "^7.0",
  2117. "php": "^7.2",
  2118. "ramsey/uuid": "^3.5|^4.0",
  2119. "symfony/error-handler": "^5.0",
  2120. "symfony/process": "^5.0"
  2121. },
  2122. "require-dev": {
  2123. "mockery/mockery": "^1.0",
  2124. "orchestra/testbench": "^5.0",
  2125. "phpunit/phpunit": "^8.0",
  2126. "predis/predis": "^1.1"
  2127. },
  2128. "suggest": {
  2129. "ext-redis": "Required to use the Redis PHP driver.",
  2130. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "4.x-dev"
  2136. },
  2137. "laravel": {
  2138. "providers": [
  2139. "Laravel\\Horizon\\HorizonServiceProvider"
  2140. ],
  2141. "aliases": {
  2142. "Horizon": "Laravel\\Horizon\\Horizon"
  2143. }
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Laravel\\Horizon\\": "src/"
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Taylor Otwell",
  2158. "email": "taylor@laravel.com"
  2159. }
  2160. ],
  2161. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2162. "keywords": [
  2163. "laravel",
  2164. "queue"
  2165. ],
  2166. "support": {
  2167. "issues": "https://github.com/laravel/horizon/issues",
  2168. "source": "https://github.com/laravel/horizon/tree/4.x"
  2169. },
  2170. "time": "2020-09-08T13:19:23+00:00"
  2171. },
  2172. {
  2173. "name": "laravel/tinker",
  2174. "version": "v2.6.1",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/laravel/tinker.git",
  2178. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2183. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2184. "shasum": "",
  2185. "mirrors": [
  2186. {
  2187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2188. "preferred": true
  2189. }
  2190. ]
  2191. },
  2192. "require": {
  2193. "illuminate/console": "^6.0|^7.0|^8.0",
  2194. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2195. "illuminate/support": "^6.0|^7.0|^8.0",
  2196. "php": "^7.2.5|^8.0",
  2197. "psy/psysh": "^0.10.4",
  2198. "symfony/var-dumper": "^4.3.4|^5.0"
  2199. },
  2200. "require-dev": {
  2201. "mockery/mockery": "~1.3.3|^1.4.2",
  2202. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2203. },
  2204. "suggest": {
  2205. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "branch-alias": {
  2210. "dev-master": "2.x-dev"
  2211. },
  2212. "laravel": {
  2213. "providers": [
  2214. "Laravel\\Tinker\\TinkerServiceProvider"
  2215. ]
  2216. }
  2217. },
  2218. "autoload": {
  2219. "psr-4": {
  2220. "Laravel\\Tinker\\": "src/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "Taylor Otwell",
  2230. "email": "taylor@laravel.com"
  2231. }
  2232. ],
  2233. "description": "Powerful REPL for the Laravel framework.",
  2234. "keywords": [
  2235. "REPL",
  2236. "Tinker",
  2237. "laravel",
  2238. "psysh"
  2239. ],
  2240. "support": {
  2241. "issues": "https://github.com/laravel/tinker/issues",
  2242. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2243. },
  2244. "time": "2021-03-02T16:53:12+00:00"
  2245. },
  2246. {
  2247. "name": "laravel/ui",
  2248. "version": "v2.5.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/laravel/ui.git",
  2252. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2257. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "illuminate/console": "^7.0",
  2268. "illuminate/filesystem": "^7.0",
  2269. "illuminate/support": "^7.0",
  2270. "php": "^7.2.5|^8.0"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "laravel": {
  2275. "providers": [
  2276. "Laravel\\Ui\\UiServiceProvider"
  2277. ]
  2278. }
  2279. },
  2280. "autoload": {
  2281. "psr-4": {
  2282. "Laravel\\Ui\\": "src/",
  2283. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Taylor Otwell",
  2293. "email": "taylor@laravel.com"
  2294. }
  2295. ],
  2296. "description": "Laravel UI utilities and presets.",
  2297. "keywords": [
  2298. "laravel",
  2299. "ui"
  2300. ],
  2301. "support": {
  2302. "issues": "https://github.com/laravel/ui/issues",
  2303. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2304. },
  2305. "time": "2020-11-03T19:45:19+00:00"
  2306. },
  2307. {
  2308. "name": "league/commonmark",
  2309. "version": "1.6.5",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/thephpleague/commonmark.git",
  2313. "reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/44ffd8d3c4a9133e4bd0548622b09c55af39db5f",
  2318. "reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f",
  2319. "shasum": "",
  2320. "mirrors": [
  2321. {
  2322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2323. "preferred": true
  2324. }
  2325. ]
  2326. },
  2327. "require": {
  2328. "ext-mbstring": "*",
  2329. "php": "^7.1 || ^8.0"
  2330. },
  2331. "conflict": {
  2332. "scrutinizer/ocular": "1.7.*"
  2333. },
  2334. "require-dev": {
  2335. "cebe/markdown": "~1.0",
  2336. "commonmark/commonmark.js": "0.29.2",
  2337. "erusev/parsedown": "~1.0",
  2338. "ext-json": "*",
  2339. "github/gfm": "0.29.0",
  2340. "michelf/php-markdown": "~1.4",
  2341. "mikehaertl/php-shellcommand": "^1.4",
  2342. "phpstan/phpstan": "^0.12.90",
  2343. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2344. "scrutinizer/ocular": "^1.5",
  2345. "symfony/finder": "^4.2"
  2346. },
  2347. "bin": [
  2348. "bin/commonmark"
  2349. ],
  2350. "type": "library",
  2351. "autoload": {
  2352. "psr-4": {
  2353. "League\\CommonMark\\": "src"
  2354. }
  2355. },
  2356. "notification-url": "https://packagist.org/downloads/",
  2357. "license": [
  2358. "BSD-3-Clause"
  2359. ],
  2360. "authors": [
  2361. {
  2362. "name": "Colin O'Dell",
  2363. "email": "colinodell@gmail.com",
  2364. "homepage": "https://www.colinodell.com",
  2365. "role": "Lead Developer"
  2366. }
  2367. ],
  2368. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2369. "homepage": "https://commonmark.thephpleague.com",
  2370. "keywords": [
  2371. "commonmark",
  2372. "flavored",
  2373. "gfm",
  2374. "github",
  2375. "github-flavored",
  2376. "markdown",
  2377. "md",
  2378. "parser"
  2379. ],
  2380. "support": {
  2381. "docs": "https://commonmark.thephpleague.com/",
  2382. "issues": "https://github.com/thephpleague/commonmark/issues",
  2383. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2384. "source": "https://github.com/thephpleague/commonmark"
  2385. },
  2386. "funding": [
  2387. {
  2388. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2389. "type": "custom"
  2390. },
  2391. {
  2392. "url": "https://www.colinodell.com/sponsor",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://www.paypal.me/colinpodell/10.00",
  2397. "type": "custom"
  2398. },
  2399. {
  2400. "url": "https://github.com/colinodell",
  2401. "type": "github"
  2402. },
  2403. {
  2404. "url": "https://www.patreon.com/colinodell",
  2405. "type": "patreon"
  2406. },
  2407. {
  2408. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2409. "type": "tidelift"
  2410. }
  2411. ],
  2412. "time": "2021-06-26T11:57:13+00:00"
  2413. },
  2414. {
  2415. "name": "league/flysystem",
  2416. "version": "1.1.4",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/thephpleague/flysystem.git",
  2420. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2425. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2426. "shasum": "",
  2427. "mirrors": [
  2428. {
  2429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2430. "preferred": true
  2431. }
  2432. ]
  2433. },
  2434. "require": {
  2435. "ext-fileinfo": "*",
  2436. "league/mime-type-detection": "^1.3",
  2437. "php": "^7.2.5 || ^8.0"
  2438. },
  2439. "conflict": {
  2440. "league/flysystem-sftp": "<1.0.6"
  2441. },
  2442. "require-dev": {
  2443. "phpspec/prophecy": "^1.11.1",
  2444. "phpunit/phpunit": "^8.5.8"
  2445. },
  2446. "suggest": {
  2447. "ext-ftp": "Allows you to use FTP server storage",
  2448. "ext-openssl": "Allows you to use FTPS server storage",
  2449. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2450. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2451. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2452. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2453. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2454. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2455. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2456. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2457. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2458. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2459. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2460. },
  2461. "type": "library",
  2462. "extra": {
  2463. "branch-alias": {
  2464. "dev-master": "1.1-dev"
  2465. }
  2466. },
  2467. "autoload": {
  2468. "psr-4": {
  2469. "League\\Flysystem\\": "src/"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "MIT"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Frank de Jonge",
  2479. "email": "info@frenky.net"
  2480. }
  2481. ],
  2482. "description": "Filesystem abstraction: Many filesystems, one API.",
  2483. "keywords": [
  2484. "Cloud Files",
  2485. "WebDAV",
  2486. "abstraction",
  2487. "aws",
  2488. "cloud",
  2489. "copy.com",
  2490. "dropbox",
  2491. "file systems",
  2492. "files",
  2493. "filesystem",
  2494. "filesystems",
  2495. "ftp",
  2496. "rackspace",
  2497. "remote",
  2498. "s3",
  2499. "sftp",
  2500. "storage"
  2501. ],
  2502. "support": {
  2503. "issues": "https://github.com/thephpleague/flysystem/issues",
  2504. "source": "https://github.com/thephpleague/flysystem/tree/1.1.4"
  2505. },
  2506. "funding": [
  2507. {
  2508. "url": "https://offset.earth/frankdejonge",
  2509. "type": "other"
  2510. }
  2511. ],
  2512. "time": "2021-06-23T21:56:05+00:00"
  2513. },
  2514. {
  2515. "name": "league/mime-type-detection",
  2516. "version": "1.7.0",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2520. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2525. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2526. "shasum": "",
  2527. "mirrors": [
  2528. {
  2529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2530. "preferred": true
  2531. }
  2532. ]
  2533. },
  2534. "require": {
  2535. "ext-fileinfo": "*",
  2536. "php": "^7.2 || ^8.0"
  2537. },
  2538. "require-dev": {
  2539. "friendsofphp/php-cs-fixer": "^2.18",
  2540. "phpstan/phpstan": "^0.12.68",
  2541. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2542. },
  2543. "type": "library",
  2544. "autoload": {
  2545. "psr-4": {
  2546. "League\\MimeTypeDetection\\": "src"
  2547. }
  2548. },
  2549. "notification-url": "https://packagist.org/downloads/",
  2550. "license": [
  2551. "MIT"
  2552. ],
  2553. "authors": [
  2554. {
  2555. "name": "Frank de Jonge",
  2556. "email": "info@frankdejonge.nl"
  2557. }
  2558. ],
  2559. "description": "Mime-type detection for Flysystem",
  2560. "support": {
  2561. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2562. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2563. },
  2564. "funding": [
  2565. {
  2566. "url": "https://github.com/frankdejonge",
  2567. "type": "github"
  2568. },
  2569. {
  2570. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2571. "type": "tidelift"
  2572. }
  2573. ],
  2574. "time": "2021-01-18T20:58:21+00:00"
  2575. },
  2576. {
  2577. "name": "maatwebsite/excel",
  2578. "version": "3.1.31",
  2579. "source": {
  2580. "type": "git",
  2581. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2582. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb"
  2583. },
  2584. "dist": {
  2585. "type": "zip",
  2586. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2587. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2588. "shasum": "",
  2589. "mirrors": [
  2590. {
  2591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2592. "preferred": true
  2593. }
  2594. ]
  2595. },
  2596. "require": {
  2597. "ext-json": "*",
  2598. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2599. "php": "^7.0|^8.0",
  2600. "phpoffice/phpspreadsheet": "^1.18"
  2601. },
  2602. "require-dev": {
  2603. "orchestra/testbench": "^6.0",
  2604. "predis/predis": "^1.1"
  2605. },
  2606. "type": "library",
  2607. "extra": {
  2608. "laravel": {
  2609. "providers": [
  2610. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2611. ],
  2612. "aliases": {
  2613. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2614. }
  2615. }
  2616. },
  2617. "autoload": {
  2618. "psr-4": {
  2619. "Maatwebsite\\Excel\\": "src/"
  2620. }
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "Patrick Brouwers",
  2629. "email": "patrick@maatwebsite.nl"
  2630. }
  2631. ],
  2632. "description": "Supercharged Excel exports and imports in Laravel",
  2633. "keywords": [
  2634. "PHPExcel",
  2635. "batch",
  2636. "csv",
  2637. "excel",
  2638. "export",
  2639. "import",
  2640. "laravel",
  2641. "php",
  2642. "phpspreadsheet"
  2643. ],
  2644. "support": {
  2645. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2646. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.31"
  2647. },
  2648. "funding": [
  2649. {
  2650. "url": "https://laravel-excel.com/commercial-support",
  2651. "type": "custom"
  2652. },
  2653. {
  2654. "url": "https://github.com/patrickbrouwers",
  2655. "type": "github"
  2656. }
  2657. ],
  2658. "time": "2021-06-02T17:31:29+00:00"
  2659. },
  2660. {
  2661. "name": "maennchen/zipstream-php",
  2662. "version": "2.1.0",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2666. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2671. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2672. "shasum": "",
  2673. "mirrors": [
  2674. {
  2675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2676. "preferred": true
  2677. }
  2678. ]
  2679. },
  2680. "require": {
  2681. "myclabs/php-enum": "^1.5",
  2682. "php": ">= 7.1",
  2683. "psr/http-message": "^1.0",
  2684. "symfony/polyfill-mbstring": "^1.0"
  2685. },
  2686. "require-dev": {
  2687. "ext-zip": "*",
  2688. "guzzlehttp/guzzle": ">= 6.3",
  2689. "mikey179/vfsstream": "^1.6",
  2690. "phpunit/phpunit": ">= 7.5"
  2691. },
  2692. "type": "library",
  2693. "autoload": {
  2694. "psr-4": {
  2695. "ZipStream\\": "src/"
  2696. }
  2697. },
  2698. "notification-url": "https://packagist.org/downloads/",
  2699. "license": [
  2700. "MIT"
  2701. ],
  2702. "authors": [
  2703. {
  2704. "name": "Paul Duncan",
  2705. "email": "pabs@pablotron.org"
  2706. },
  2707. {
  2708. "name": "Jonatan Männchen",
  2709. "email": "jonatan@maennchen.ch"
  2710. },
  2711. {
  2712. "name": "Jesse Donat",
  2713. "email": "donatj@gmail.com"
  2714. },
  2715. {
  2716. "name": "András Kolesár",
  2717. "email": "kolesar@kolesar.hu"
  2718. }
  2719. ],
  2720. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2721. "keywords": [
  2722. "stream",
  2723. "zip"
  2724. ],
  2725. "support": {
  2726. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2727. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2728. },
  2729. "funding": [
  2730. {
  2731. "url": "https://opencollective.com/zipstream",
  2732. "type": "open_collective"
  2733. }
  2734. ],
  2735. "time": "2020-05-30T13:11:16+00:00"
  2736. },
  2737. {
  2738. "name": "markbaker/complex",
  2739. "version": "2.0.3",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2743. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2748. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2749. "shasum": "",
  2750. "mirrors": [
  2751. {
  2752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2753. "preferred": true
  2754. }
  2755. ]
  2756. },
  2757. "require": {
  2758. "php": "^7.2 || ^8.0"
  2759. },
  2760. "require-dev": {
  2761. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2762. "phpcompatibility/php-compatibility": "^9.0",
  2763. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2764. "squizlabs/php_codesniffer": "^3.4"
  2765. },
  2766. "type": "library",
  2767. "autoload": {
  2768. "psr-4": {
  2769. "Complex\\": "classes/src/"
  2770. },
  2771. "files": [
  2772. "classes/src/functions/abs.php",
  2773. "classes/src/functions/acos.php",
  2774. "classes/src/functions/acosh.php",
  2775. "classes/src/functions/acot.php",
  2776. "classes/src/functions/acoth.php",
  2777. "classes/src/functions/acsc.php",
  2778. "classes/src/functions/acsch.php",
  2779. "classes/src/functions/argument.php",
  2780. "classes/src/functions/asec.php",
  2781. "classes/src/functions/asech.php",
  2782. "classes/src/functions/asin.php",
  2783. "classes/src/functions/asinh.php",
  2784. "classes/src/functions/atan.php",
  2785. "classes/src/functions/atanh.php",
  2786. "classes/src/functions/conjugate.php",
  2787. "classes/src/functions/cos.php",
  2788. "classes/src/functions/cosh.php",
  2789. "classes/src/functions/cot.php",
  2790. "classes/src/functions/coth.php",
  2791. "classes/src/functions/csc.php",
  2792. "classes/src/functions/csch.php",
  2793. "classes/src/functions/exp.php",
  2794. "classes/src/functions/inverse.php",
  2795. "classes/src/functions/ln.php",
  2796. "classes/src/functions/log2.php",
  2797. "classes/src/functions/log10.php",
  2798. "classes/src/functions/negative.php",
  2799. "classes/src/functions/pow.php",
  2800. "classes/src/functions/rho.php",
  2801. "classes/src/functions/sec.php",
  2802. "classes/src/functions/sech.php",
  2803. "classes/src/functions/sin.php",
  2804. "classes/src/functions/sinh.php",
  2805. "classes/src/functions/sqrt.php",
  2806. "classes/src/functions/tan.php",
  2807. "classes/src/functions/tanh.php",
  2808. "classes/src/functions/theta.php",
  2809. "classes/src/operations/add.php",
  2810. "classes/src/operations/subtract.php",
  2811. "classes/src/operations/multiply.php",
  2812. "classes/src/operations/divideby.php",
  2813. "classes/src/operations/divideinto.php"
  2814. ]
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "MIT"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "Mark Baker",
  2823. "email": "mark@lange.demon.co.uk"
  2824. }
  2825. ],
  2826. "description": "PHP Class for working with complex numbers",
  2827. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2828. "keywords": [
  2829. "complex",
  2830. "mathematics"
  2831. ],
  2832. "support": {
  2833. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2834. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2835. },
  2836. "time": "2021-06-02T09:44:11+00:00"
  2837. },
  2838. {
  2839. "name": "markbaker/matrix",
  2840. "version": "2.1.3",
  2841. "source": {
  2842. "type": "git",
  2843. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2844. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2845. },
  2846. "dist": {
  2847. "type": "zip",
  2848. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2849. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2850. "shasum": "",
  2851. "mirrors": [
  2852. {
  2853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2854. "preferred": true
  2855. }
  2856. ]
  2857. },
  2858. "require": {
  2859. "php": "^7.1 || ^8.0"
  2860. },
  2861. "require-dev": {
  2862. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2863. "phpcompatibility/php-compatibility": "^9.0",
  2864. "phpdocumentor/phpdocumentor": "2.*",
  2865. "phploc/phploc": "^4.0",
  2866. "phpmd/phpmd": "2.*",
  2867. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2868. "sebastian/phpcpd": "^4.0",
  2869. "squizlabs/php_codesniffer": "^3.4"
  2870. },
  2871. "type": "library",
  2872. "autoload": {
  2873. "psr-4": {
  2874. "Matrix\\": "classes/src/"
  2875. },
  2876. "files": [
  2877. "classes/src/Functions/adjoint.php",
  2878. "classes/src/Functions/antidiagonal.php",
  2879. "classes/src/Functions/cofactors.php",
  2880. "classes/src/Functions/determinant.php",
  2881. "classes/src/Functions/diagonal.php",
  2882. "classes/src/Functions/identity.php",
  2883. "classes/src/Functions/inverse.php",
  2884. "classes/src/Functions/minors.php",
  2885. "classes/src/Functions/trace.php",
  2886. "classes/src/Functions/transpose.php",
  2887. "classes/src/Operations/add.php",
  2888. "classes/src/Operations/directsum.php",
  2889. "classes/src/Operations/subtract.php",
  2890. "classes/src/Operations/multiply.php",
  2891. "classes/src/Operations/divideby.php",
  2892. "classes/src/Operations/divideinto.php"
  2893. ]
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "Mark Baker",
  2902. "email": "mark@demon-angel.eu"
  2903. }
  2904. ],
  2905. "description": "PHP Class for working with matrices",
  2906. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2907. "keywords": [
  2908. "mathematics",
  2909. "matrix",
  2910. "vector"
  2911. ],
  2912. "support": {
  2913. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2914. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2915. },
  2916. "time": "2021-05-25T15:42:17+00:00"
  2917. },
  2918. {
  2919. "name": "monolog/monolog",
  2920. "version": "2.2.0",
  2921. "source": {
  2922. "type": "git",
  2923. "url": "https://github.com/Seldaek/monolog.git",
  2924. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2925. },
  2926. "dist": {
  2927. "type": "zip",
  2928. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2929. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2930. "shasum": "",
  2931. "mirrors": [
  2932. {
  2933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2934. "preferred": true
  2935. }
  2936. ]
  2937. },
  2938. "require": {
  2939. "php": ">=7.2",
  2940. "psr/log": "^1.0.1"
  2941. },
  2942. "provide": {
  2943. "psr/log-implementation": "1.0.0"
  2944. },
  2945. "require-dev": {
  2946. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2947. "doctrine/couchdb": "~1.0@dev",
  2948. "elasticsearch/elasticsearch": "^7",
  2949. "graylog2/gelf-php": "^1.4.2",
  2950. "mongodb/mongodb": "^1.8",
  2951. "php-amqplib/php-amqplib": "~2.4",
  2952. "php-console/php-console": "^3.1.3",
  2953. "phpspec/prophecy": "^1.6.1",
  2954. "phpstan/phpstan": "^0.12.59",
  2955. "phpunit/phpunit": "^8.5",
  2956. "predis/predis": "^1.1",
  2957. "rollbar/rollbar": "^1.3",
  2958. "ruflin/elastica": ">=0.90 <7.0.1",
  2959. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2960. },
  2961. "suggest": {
  2962. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2963. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2964. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2965. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2966. "ext-mbstring": "Allow to work properly with unicode symbols",
  2967. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2968. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2969. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2970. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2971. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2972. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2973. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2974. },
  2975. "type": "library",
  2976. "extra": {
  2977. "branch-alias": {
  2978. "dev-main": "2.x-dev"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Monolog\\": "src/Monolog"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Jordi Boggiano",
  2993. "email": "j.boggiano@seld.be",
  2994. "homepage": "https://seld.be"
  2995. }
  2996. ],
  2997. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2998. "homepage": "https://github.com/Seldaek/monolog",
  2999. "keywords": [
  3000. "log",
  3001. "logging",
  3002. "psr-3"
  3003. ],
  3004. "support": {
  3005. "issues": "https://github.com/Seldaek/monolog/issues",
  3006. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3007. },
  3008. "funding": [
  3009. {
  3010. "url": "https://github.com/Seldaek",
  3011. "type": "github"
  3012. },
  3013. {
  3014. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3015. "type": "tidelift"
  3016. }
  3017. ],
  3018. "time": "2020-12-14T13:15:25+00:00"
  3019. },
  3020. {
  3021. "name": "myclabs/php-enum",
  3022. "version": "1.8.1",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://github.com/myclabs/php-enum.git",
  3026. "reference": "55555d31a622b4bc9662664132a0533ae6ef47b1"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/55555d31a622b4bc9662664132a0533ae6ef47b1",
  3031. "reference": "55555d31a622b4bc9662664132a0533ae6ef47b1",
  3032. "shasum": "",
  3033. "mirrors": [
  3034. {
  3035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3036. "preferred": true
  3037. }
  3038. ]
  3039. },
  3040. "require": {
  3041. "ext-json": "*",
  3042. "php": "^7.3 || ^8.0"
  3043. },
  3044. "require-dev": {
  3045. "phpunit/phpunit": "^9.5",
  3046. "squizlabs/php_codesniffer": "1.*",
  3047. "vimeo/psalm": "^4.6.2"
  3048. },
  3049. "type": "library",
  3050. "autoload": {
  3051. "psr-4": {
  3052. "MyCLabs\\Enum\\": "src/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "PHP Enum contributors",
  3062. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3063. }
  3064. ],
  3065. "description": "PHP Enum implementation",
  3066. "homepage": "http://github.com/myclabs/php-enum",
  3067. "keywords": [
  3068. "enum"
  3069. ],
  3070. "support": {
  3071. "issues": "https://github.com/myclabs/php-enum/issues",
  3072. "source": "https://github.com/myclabs/php-enum/tree/1.8.1"
  3073. },
  3074. "funding": [
  3075. {
  3076. "url": "https://github.com/mnapoli",
  3077. "type": "github"
  3078. },
  3079. {
  3080. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3081. "type": "tidelift"
  3082. }
  3083. ],
  3084. "time": "2021-06-29T09:20:05+00:00"
  3085. },
  3086. {
  3087. "name": "nesbot/carbon",
  3088. "version": "2.50.0",
  3089. "source": {
  3090. "type": "git",
  3091. "url": "https://github.com/briannesbitt/Carbon.git",
  3092. "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb"
  3093. },
  3094. "dist": {
  3095. "type": "zip",
  3096. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f47f17d17602b2243414a44ad53d9f8b9ada5fdb",
  3097. "reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb",
  3098. "shasum": "",
  3099. "mirrors": [
  3100. {
  3101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3102. "preferred": true
  3103. }
  3104. ]
  3105. },
  3106. "require": {
  3107. "ext-json": "*",
  3108. "php": "^7.1.8 || ^8.0",
  3109. "symfony/polyfill-mbstring": "^1.0",
  3110. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3111. },
  3112. "require-dev": {
  3113. "doctrine/orm": "^2.7",
  3114. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3115. "kylekatarnls/multi-tester": "^2.0",
  3116. "phpmd/phpmd": "^2.9",
  3117. "phpstan/extension-installer": "^1.0",
  3118. "phpstan/phpstan": "^0.12.54",
  3119. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3120. "squizlabs/php_codesniffer": "^3.4"
  3121. },
  3122. "bin": [
  3123. "bin/carbon"
  3124. ],
  3125. "type": "library",
  3126. "extra": {
  3127. "branch-alias": {
  3128. "dev-master": "2.x-dev",
  3129. "dev-3.x": "3.x-dev"
  3130. },
  3131. "laravel": {
  3132. "providers": [
  3133. "Carbon\\Laravel\\ServiceProvider"
  3134. ]
  3135. },
  3136. "phpstan": {
  3137. "includes": [
  3138. "extension.neon"
  3139. ]
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Carbon\\": "src/Carbon/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Brian Nesbitt",
  3154. "email": "brian@nesbot.com",
  3155. "homepage": "https://markido.com"
  3156. },
  3157. {
  3158. "name": "kylekatarnls",
  3159. "homepage": "https://github.com/kylekatarnls"
  3160. }
  3161. ],
  3162. "description": "An API extension for DateTime that supports 281 different languages.",
  3163. "homepage": "https://carbon.nesbot.com",
  3164. "keywords": [
  3165. "date",
  3166. "datetime",
  3167. "time"
  3168. ],
  3169. "support": {
  3170. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3171. "source": "https://github.com/briannesbitt/Carbon"
  3172. },
  3173. "funding": [
  3174. {
  3175. "url": "https://opencollective.com/Carbon",
  3176. "type": "open_collective"
  3177. },
  3178. {
  3179. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3180. "type": "tidelift"
  3181. }
  3182. ],
  3183. "time": "2021-06-28T22:38:45+00:00"
  3184. },
  3185. {
  3186. "name": "nikic/php-parser",
  3187. "version": "v4.10.5",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/nikic/PHP-Parser.git",
  3191. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3196. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3197. "shasum": "",
  3198. "mirrors": [
  3199. {
  3200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3201. "preferred": true
  3202. }
  3203. ]
  3204. },
  3205. "require": {
  3206. "ext-tokenizer": "*",
  3207. "php": ">=7.0"
  3208. },
  3209. "require-dev": {
  3210. "ircmaxell/php-yacc": "^0.0.7",
  3211. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3212. },
  3213. "bin": [
  3214. "bin/php-parse"
  3215. ],
  3216. "type": "library",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-master": "4.9-dev"
  3220. }
  3221. },
  3222. "autoload": {
  3223. "psr-4": {
  3224. "PhpParser\\": "lib/PhpParser"
  3225. }
  3226. },
  3227. "notification-url": "https://packagist.org/downloads/",
  3228. "license": [
  3229. "BSD-3-Clause"
  3230. ],
  3231. "authors": [
  3232. {
  3233. "name": "Nikita Popov"
  3234. }
  3235. ],
  3236. "description": "A PHP parser written in PHP",
  3237. "keywords": [
  3238. "parser",
  3239. "php"
  3240. ],
  3241. "support": {
  3242. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3243. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3244. },
  3245. "time": "2021-05-03T19:11:20+00:00"
  3246. },
  3247. {
  3248. "name": "opis/closure",
  3249. "version": "3.6.2",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/opis/closure.git",
  3253. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3258. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3259. "shasum": "",
  3260. "mirrors": [
  3261. {
  3262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3263. "preferred": true
  3264. }
  3265. ]
  3266. },
  3267. "require": {
  3268. "php": "^5.4 || ^7.0 || ^8.0"
  3269. },
  3270. "require-dev": {
  3271. "jeremeamia/superclosure": "^2.0",
  3272. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3273. },
  3274. "type": "library",
  3275. "extra": {
  3276. "branch-alias": {
  3277. "dev-master": "3.6.x-dev"
  3278. }
  3279. },
  3280. "autoload": {
  3281. "psr-4": {
  3282. "Opis\\Closure\\": "src/"
  3283. },
  3284. "files": [
  3285. "functions.php"
  3286. ]
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Marius Sarca",
  3295. "email": "marius.sarca@gmail.com"
  3296. },
  3297. {
  3298. "name": "Sorin Sarca",
  3299. "email": "sarca_sorin@hotmail.com"
  3300. }
  3301. ],
  3302. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3303. "homepage": "https://opis.io/closure",
  3304. "keywords": [
  3305. "anonymous functions",
  3306. "closure",
  3307. "function",
  3308. "serializable",
  3309. "serialization",
  3310. "serialize"
  3311. ],
  3312. "support": {
  3313. "issues": "https://github.com/opis/closure/issues",
  3314. "source": "https://github.com/opis/closure/tree/3.6.2"
  3315. },
  3316. "time": "2021-04-09T13:42:10+00:00"
  3317. },
  3318. {
  3319. "name": "oursdreams/export",
  3320. "version": "0.0.7",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://github.com/oursdreams/export.git",
  3324. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3329. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3330. "shasum": "",
  3331. "mirrors": [
  3332. {
  3333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3334. "preferred": true
  3335. }
  3336. ]
  3337. },
  3338. "type": "library",
  3339. "extra": {
  3340. "laravel": {
  3341. "providers": [
  3342. "Oursdreams\\Export\\ExportServiceProvider"
  3343. ]
  3344. }
  3345. },
  3346. "autoload": {
  3347. "psr-4": {
  3348. "Oursdreams\\Export\\": "./src"
  3349. }
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "authors": [
  3356. {
  3357. "name": "oursdreams",
  3358. "email": "z1792524653@163.com"
  3359. }
  3360. ],
  3361. "description": "A simple export plug-in",
  3362. "support": {
  3363. "issues": "https://github.com/oursdreams/export/issues",
  3364. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3365. },
  3366. "time": "2021-06-01T03:01:13+00:00"
  3367. },
  3368. {
  3369. "name": "overtrue/laravel-pinyin",
  3370. "version": "4.0.0",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3374. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3379. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3380. "shasum": "",
  3381. "mirrors": [
  3382. {
  3383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3384. "preferred": true
  3385. }
  3386. ]
  3387. },
  3388. "require": {
  3389. "overtrue/pinyin": "~4.0"
  3390. },
  3391. "type": "library",
  3392. "extra": {
  3393. "laravel": {
  3394. "providers": [
  3395. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3396. ],
  3397. "aliases": {
  3398. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3399. }
  3400. }
  3401. },
  3402. "autoload": {
  3403. "psr-4": {
  3404. "Overtrue\\LaravelPinyin\\": "src/"
  3405. },
  3406. "files": [
  3407. "src/helpers.php"
  3408. ]
  3409. },
  3410. "notification-url": "https://packagist.org/downloads/",
  3411. "license": [
  3412. "MIT"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "overtrue",
  3417. "email": "anzhengchao@gmail.com"
  3418. }
  3419. ],
  3420. "description": "Chinese to Pinyin translator.",
  3421. "keywords": [
  3422. "Chinese",
  3423. "Pinyin",
  3424. "laravel",
  3425. "overtrue"
  3426. ],
  3427. "support": {
  3428. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3429. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3430. },
  3431. "time": "2018-10-10T09:02:46+00:00"
  3432. },
  3433. {
  3434. "name": "overtrue/pinyin",
  3435. "version": "4.0.7",
  3436. "source": {
  3437. "type": "git",
  3438. "url": "https://github.com/overtrue/pinyin.git",
  3439. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3440. },
  3441. "dist": {
  3442. "type": "zip",
  3443. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3444. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3445. "shasum": "",
  3446. "mirrors": [
  3447. {
  3448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3449. "preferred": true
  3450. }
  3451. ]
  3452. },
  3453. "require": {
  3454. "php": ">=7.1"
  3455. },
  3456. "require-dev": {
  3457. "brainmaestro/composer-git-hooks": "^2.7",
  3458. "friendsofphp/php-cs-fixer": "^2.16",
  3459. "phpunit/phpunit": "~8.0"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "hooks": {
  3464. "pre-commit": [
  3465. "composer test",
  3466. "composer fix-style"
  3467. ],
  3468. "pre-push": [
  3469. "composer test",
  3470. "composer check-style"
  3471. ]
  3472. }
  3473. },
  3474. "autoload": {
  3475. "psr-4": {
  3476. "Overtrue\\Pinyin\\": "src/"
  3477. },
  3478. "files": [
  3479. "src/const.php"
  3480. ]
  3481. },
  3482. "notification-url": "https://packagist.org/downloads/",
  3483. "license": [
  3484. "MIT"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "overtrue",
  3489. "email": "anzhengchao@gmail.com",
  3490. "homepage": "http://github.com/overtrue"
  3491. }
  3492. ],
  3493. "description": "Chinese to pinyin translator.",
  3494. "homepage": "https://github.com/overtrue/pinyin",
  3495. "keywords": [
  3496. "Chinese",
  3497. "Pinyin",
  3498. "cn2pinyin"
  3499. ],
  3500. "support": {
  3501. "issues": "https://github.com/overtrue/pinyin/issues",
  3502. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3503. },
  3504. "funding": [
  3505. {
  3506. "url": "https://www.patreon.com/overtrue",
  3507. "type": "patreon"
  3508. }
  3509. ],
  3510. "time": "2021-04-16T11:13:48+00:00"
  3511. },
  3512. {
  3513. "name": "paragonie/random_compat",
  3514. "version": "v9.99.100",
  3515. "source": {
  3516. "type": "git",
  3517. "url": "https://github.com/paragonie/random_compat.git",
  3518. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3519. },
  3520. "dist": {
  3521. "type": "zip",
  3522. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3523. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3524. "shasum": "",
  3525. "mirrors": [
  3526. {
  3527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3528. "preferred": true
  3529. }
  3530. ]
  3531. },
  3532. "require": {
  3533. "php": ">= 7"
  3534. },
  3535. "require-dev": {
  3536. "phpunit/phpunit": "4.*|5.*",
  3537. "vimeo/psalm": "^1"
  3538. },
  3539. "suggest": {
  3540. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3541. },
  3542. "type": "library",
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Paragon Initiative Enterprises",
  3550. "email": "security@paragonie.com",
  3551. "homepage": "https://paragonie.com"
  3552. }
  3553. ],
  3554. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3555. "keywords": [
  3556. "csprng",
  3557. "polyfill",
  3558. "pseudorandom",
  3559. "random"
  3560. ],
  3561. "support": {
  3562. "email": "info@paragonie.com",
  3563. "issues": "https://github.com/paragonie/random_compat/issues",
  3564. "source": "https://github.com/paragonie/random_compat"
  3565. },
  3566. "time": "2020-10-15T08:29:30+00:00"
  3567. },
  3568. {
  3569. "name": "paragonie/sodium_compat",
  3570. "version": "v1.16.1",
  3571. "source": {
  3572. "type": "git",
  3573. "url": "https://github.com/paragonie/sodium_compat.git",
  3574. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38"
  3575. },
  3576. "dist": {
  3577. "type": "zip",
  3578. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3579. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3580. "shasum": "",
  3581. "mirrors": [
  3582. {
  3583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3584. "preferred": true
  3585. }
  3586. ]
  3587. },
  3588. "require": {
  3589. "paragonie/random_compat": ">=1",
  3590. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3591. },
  3592. "require-dev": {
  3593. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3594. },
  3595. "suggest": {
  3596. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3597. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3598. },
  3599. "type": "library",
  3600. "autoload": {
  3601. "files": [
  3602. "autoload.php"
  3603. ]
  3604. },
  3605. "notification-url": "https://packagist.org/downloads/",
  3606. "license": [
  3607. "ISC"
  3608. ],
  3609. "authors": [
  3610. {
  3611. "name": "Paragon Initiative Enterprises",
  3612. "email": "security@paragonie.com"
  3613. },
  3614. {
  3615. "name": "Frank Denis",
  3616. "email": "jedisct1@pureftpd.org"
  3617. }
  3618. ],
  3619. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3620. "keywords": [
  3621. "Authentication",
  3622. "BLAKE2b",
  3623. "ChaCha20",
  3624. "ChaCha20-Poly1305",
  3625. "Chapoly",
  3626. "Curve25519",
  3627. "Ed25519",
  3628. "EdDSA",
  3629. "Edwards-curve Digital Signature Algorithm",
  3630. "Elliptic Curve Diffie-Hellman",
  3631. "Poly1305",
  3632. "Pure-PHP cryptography",
  3633. "RFC 7748",
  3634. "RFC 8032",
  3635. "Salpoly",
  3636. "Salsa20",
  3637. "X25519",
  3638. "XChaCha20-Poly1305",
  3639. "XSalsa20-Poly1305",
  3640. "Xchacha20",
  3641. "Xsalsa20",
  3642. "aead",
  3643. "cryptography",
  3644. "ecdh",
  3645. "elliptic curve",
  3646. "elliptic curve cryptography",
  3647. "encryption",
  3648. "libsodium",
  3649. "php",
  3650. "public-key cryptography",
  3651. "secret-key cryptography",
  3652. "side-channel resistant"
  3653. ],
  3654. "support": {
  3655. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3656. "source": "https://github.com/paragonie/sodium_compat/tree/v1.16.1"
  3657. },
  3658. "time": "2021-05-25T12:58:14+00:00"
  3659. },
  3660. {
  3661. "name": "phpoffice/phpspreadsheet",
  3662. "version": "1.18.0",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3666. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3671. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3672. "shasum": "",
  3673. "mirrors": [
  3674. {
  3675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3676. "preferred": true
  3677. }
  3678. ]
  3679. },
  3680. "require": {
  3681. "ext-ctype": "*",
  3682. "ext-dom": "*",
  3683. "ext-fileinfo": "*",
  3684. "ext-gd": "*",
  3685. "ext-iconv": "*",
  3686. "ext-libxml": "*",
  3687. "ext-mbstring": "*",
  3688. "ext-simplexml": "*",
  3689. "ext-xml": "*",
  3690. "ext-xmlreader": "*",
  3691. "ext-xmlwriter": "*",
  3692. "ext-zip": "*",
  3693. "ext-zlib": "*",
  3694. "ezyang/htmlpurifier": "^4.13",
  3695. "maennchen/zipstream-php": "^2.1",
  3696. "markbaker/complex": "^2.0",
  3697. "markbaker/matrix": "^2.0",
  3698. "php": "^7.2 || ^8.0",
  3699. "psr/http-client": "^1.0",
  3700. "psr/http-factory": "^1.0",
  3701. "psr/simple-cache": "^1.0"
  3702. },
  3703. "require-dev": {
  3704. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3705. "dompdf/dompdf": "^1.0",
  3706. "friendsofphp/php-cs-fixer": "^2.18",
  3707. "jpgraph/jpgraph": "^4.0",
  3708. "mpdf/mpdf": "^8.0",
  3709. "phpcompatibility/php-compatibility": "^9.3",
  3710. "phpstan/phpstan": "^0.12.82",
  3711. "phpstan/phpstan-phpunit": "^0.12.18",
  3712. "phpunit/phpunit": "^8.5",
  3713. "squizlabs/php_codesniffer": "^3.5",
  3714. "tecnickcom/tcpdf": "^6.3"
  3715. },
  3716. "suggest": {
  3717. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3718. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3719. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3720. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3721. },
  3722. "type": "library",
  3723. "autoload": {
  3724. "psr-4": {
  3725. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Maarten Balliauw",
  3735. "homepage": "https://blog.maartenballiauw.be"
  3736. },
  3737. {
  3738. "name": "Mark Baker",
  3739. "homepage": "https://markbakeruk.net"
  3740. },
  3741. {
  3742. "name": "Franck Lefevre",
  3743. "homepage": "https://rootslabs.net"
  3744. },
  3745. {
  3746. "name": "Erik Tilt"
  3747. },
  3748. {
  3749. "name": "Adrien Crivelli"
  3750. }
  3751. ],
  3752. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3753. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3754. "keywords": [
  3755. "OpenXML",
  3756. "excel",
  3757. "gnumeric",
  3758. "ods",
  3759. "php",
  3760. "spreadsheet",
  3761. "xls",
  3762. "xlsx"
  3763. ],
  3764. "support": {
  3765. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3766. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3767. },
  3768. "time": "2021-05-31T18:21:15+00:00"
  3769. },
  3770. {
  3771. "name": "phpoption/phpoption",
  3772. "version": "1.7.5",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/schmittjoh/php-option.git",
  3776. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3781. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3782. "shasum": "",
  3783. "mirrors": [
  3784. {
  3785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3786. "preferred": true
  3787. }
  3788. ]
  3789. },
  3790. "require": {
  3791. "php": "^5.5.9 || ^7.0 || ^8.0"
  3792. },
  3793. "require-dev": {
  3794. "bamarni/composer-bin-plugin": "^1.4.1",
  3795. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "1.7-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "PhpOption\\": "src/PhpOption/"
  3806. }
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "Apache-2.0"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "Johannes M. Schmitt",
  3815. "email": "schmittjoh@gmail.com"
  3816. },
  3817. {
  3818. "name": "Graham Campbell",
  3819. "email": "graham@alt-three.com"
  3820. }
  3821. ],
  3822. "description": "Option Type for PHP",
  3823. "keywords": [
  3824. "language",
  3825. "option",
  3826. "php",
  3827. "type"
  3828. ],
  3829. "support": {
  3830. "issues": "https://github.com/schmittjoh/php-option/issues",
  3831. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3832. },
  3833. "funding": [
  3834. {
  3835. "url": "https://github.com/GrahamCampbell",
  3836. "type": "github"
  3837. },
  3838. {
  3839. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3840. "type": "tidelift"
  3841. }
  3842. ],
  3843. "time": "2020-07-20T17:29:33+00:00"
  3844. },
  3845. {
  3846. "name": "picqer/php-barcode-generator",
  3847. "version": "v2.2.0",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/picqer/php-barcode-generator.git",
  3851. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3856. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3857. "shasum": "",
  3858. "mirrors": [
  3859. {
  3860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3861. "preferred": true
  3862. }
  3863. ]
  3864. },
  3865. "require": {
  3866. "ext-mbstring": "*",
  3867. "php": "^7.3|^8.0"
  3868. },
  3869. "require-dev": {
  3870. "phpunit/phpunit": "^9.5"
  3871. },
  3872. "suggest": {
  3873. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3874. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3875. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3876. },
  3877. "type": "library",
  3878. "autoload": {
  3879. "psr-4": {
  3880. "Picqer\\Barcode\\": "src"
  3881. }
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "LGPL-3.0-or-later"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "Nicola Asuni",
  3890. "email": "info@tecnick.com",
  3891. "homepage": "http://nicolaasuni.tecnick.com"
  3892. },
  3893. {
  3894. "name": "Casper Bakker",
  3895. "email": "info@picqer.com",
  3896. "homepage": "https://picqer.com"
  3897. }
  3898. ],
  3899. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  3900. "homepage": "https://github.com/picqer/php-barcode-generator",
  3901. "keywords": [
  3902. "CODABAR",
  3903. "Code11",
  3904. "Code93",
  3905. "EAN13",
  3906. "KIX",
  3907. "KIXCODE",
  3908. "MSI",
  3909. "POSTNET",
  3910. "Pharma",
  3911. "Standard 2 of 5",
  3912. "barcode",
  3913. "barcode generator",
  3914. "code128",
  3915. "code39",
  3916. "ean",
  3917. "html",
  3918. "jpeg",
  3919. "jpg",
  3920. "php",
  3921. "png",
  3922. "svg",
  3923. "upc"
  3924. ],
  3925. "funding": [
  3926. {
  3927. "url": "https://github.com/casperbakker",
  3928. "type": "github"
  3929. }
  3930. ],
  3931. "time": "2021-03-27T09:06:22+00:00"
  3932. },
  3933. {
  3934. "name": "predis/predis",
  3935. "version": "v1.1.7",
  3936. "source": {
  3937. "type": "git",
  3938. "url": "https://github.com/predis/predis.git",
  3939. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3940. },
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3944. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3945. "shasum": "",
  3946. "mirrors": [
  3947. {
  3948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3949. "preferred": true
  3950. }
  3951. ]
  3952. },
  3953. "require": {
  3954. "php": ">=5.3.9"
  3955. },
  3956. "require-dev": {
  3957. "phpunit/phpunit": "~4.8"
  3958. },
  3959. "suggest": {
  3960. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3961. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3962. },
  3963. "type": "library",
  3964. "autoload": {
  3965. "psr-4": {
  3966. "Predis\\": "src/"
  3967. }
  3968. },
  3969. "notification-url": "https://packagist.org/downloads/",
  3970. "license": [
  3971. "MIT"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "Daniele Alessandri",
  3976. "email": "suppakilla@gmail.com",
  3977. "homepage": "http://clorophilla.net",
  3978. "role": "Creator & Maintainer"
  3979. },
  3980. {
  3981. "name": "Till Krüss",
  3982. "homepage": "https://till.im",
  3983. "role": "Maintainer"
  3984. }
  3985. ],
  3986. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3987. "homepage": "http://github.com/predis/predis",
  3988. "keywords": [
  3989. "nosql",
  3990. "predis",
  3991. "redis"
  3992. ],
  3993. "support": {
  3994. "issues": "https://github.com/predis/predis/issues",
  3995. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3996. },
  3997. "funding": [
  3998. {
  3999. "url": "https://github.com/sponsors/tillkruss",
  4000. "type": "github"
  4001. }
  4002. ],
  4003. "time": "2021-04-04T19:34:46+00:00"
  4004. },
  4005. {
  4006. "name": "psr/container",
  4007. "version": "1.1.1",
  4008. "source": {
  4009. "type": "git",
  4010. "url": "https://github.com/php-fig/container.git",
  4011. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4012. },
  4013. "dist": {
  4014. "type": "zip",
  4015. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4016. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4017. "shasum": "",
  4018. "mirrors": [
  4019. {
  4020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4021. "preferred": true
  4022. }
  4023. ]
  4024. },
  4025. "require": {
  4026. "php": ">=7.2.0"
  4027. },
  4028. "type": "library",
  4029. "autoload": {
  4030. "psr-4": {
  4031. "Psr\\Container\\": "src/"
  4032. }
  4033. },
  4034. "notification-url": "https://packagist.org/downloads/",
  4035. "license": [
  4036. "MIT"
  4037. ],
  4038. "authors": [
  4039. {
  4040. "name": "PHP-FIG",
  4041. "homepage": "https://www.php-fig.org/"
  4042. }
  4043. ],
  4044. "description": "Common Container Interface (PHP FIG PSR-11)",
  4045. "homepage": "https://github.com/php-fig/container",
  4046. "keywords": [
  4047. "PSR-11",
  4048. "container",
  4049. "container-interface",
  4050. "container-interop",
  4051. "psr"
  4052. ],
  4053. "support": {
  4054. "issues": "https://github.com/php-fig/container/issues",
  4055. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4056. },
  4057. "time": "2021-03-05T17:36:06+00:00"
  4058. },
  4059. {
  4060. "name": "psr/event-dispatcher",
  4061. "version": "1.0.0",
  4062. "source": {
  4063. "type": "git",
  4064. "url": "https://github.com/php-fig/event-dispatcher.git",
  4065. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4066. },
  4067. "dist": {
  4068. "type": "zip",
  4069. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4070. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4071. "shasum": "",
  4072. "mirrors": [
  4073. {
  4074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4075. "preferred": true
  4076. }
  4077. ]
  4078. },
  4079. "require": {
  4080. "php": ">=7.2.0"
  4081. },
  4082. "type": "library",
  4083. "extra": {
  4084. "branch-alias": {
  4085. "dev-master": "1.0.x-dev"
  4086. }
  4087. },
  4088. "autoload": {
  4089. "psr-4": {
  4090. "Psr\\EventDispatcher\\": "src/"
  4091. }
  4092. },
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "MIT"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "PHP-FIG",
  4100. "homepage": "http://www.php-fig.org/"
  4101. }
  4102. ],
  4103. "description": "Standard interfaces for event handling.",
  4104. "keywords": [
  4105. "events",
  4106. "psr",
  4107. "psr-14"
  4108. ],
  4109. "support": {
  4110. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4111. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4112. },
  4113. "time": "2019-01-08T18:20:26+00:00"
  4114. },
  4115. {
  4116. "name": "psr/http-client",
  4117. "version": "1.0.1",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://github.com/php-fig/http-client.git",
  4121. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4126. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4127. "shasum": "",
  4128. "mirrors": [
  4129. {
  4130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4131. "preferred": true
  4132. }
  4133. ]
  4134. },
  4135. "require": {
  4136. "php": "^7.0 || ^8.0",
  4137. "psr/http-message": "^1.0"
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "branch-alias": {
  4142. "dev-master": "1.0.x-dev"
  4143. }
  4144. },
  4145. "autoload": {
  4146. "psr-4": {
  4147. "Psr\\Http\\Client\\": "src/"
  4148. }
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "authors": [
  4155. {
  4156. "name": "PHP-FIG",
  4157. "homepage": "http://www.php-fig.org/"
  4158. }
  4159. ],
  4160. "description": "Common interface for HTTP clients",
  4161. "homepage": "https://github.com/php-fig/http-client",
  4162. "keywords": [
  4163. "http",
  4164. "http-client",
  4165. "psr",
  4166. "psr-18"
  4167. ],
  4168. "support": {
  4169. "source": "https://github.com/php-fig/http-client/tree/master"
  4170. },
  4171. "time": "2020-06-29T06:28:15+00:00"
  4172. },
  4173. {
  4174. "name": "psr/http-factory",
  4175. "version": "1.0.1",
  4176. "source": {
  4177. "type": "git",
  4178. "url": "https://github.com/php-fig/http-factory.git",
  4179. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4180. },
  4181. "dist": {
  4182. "type": "zip",
  4183. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4184. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4185. "shasum": "",
  4186. "mirrors": [
  4187. {
  4188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4189. "preferred": true
  4190. }
  4191. ]
  4192. },
  4193. "require": {
  4194. "php": ">=7.0.0",
  4195. "psr/http-message": "^1.0"
  4196. },
  4197. "type": "library",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-master": "1.0.x-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "psr-4": {
  4205. "Psr\\Http\\Message\\": "src/"
  4206. }
  4207. },
  4208. "notification-url": "https://packagist.org/downloads/",
  4209. "license": [
  4210. "MIT"
  4211. ],
  4212. "authors": [
  4213. {
  4214. "name": "PHP-FIG",
  4215. "homepage": "http://www.php-fig.org/"
  4216. }
  4217. ],
  4218. "description": "Common interfaces for PSR-7 HTTP message factories",
  4219. "keywords": [
  4220. "factory",
  4221. "http",
  4222. "message",
  4223. "psr",
  4224. "psr-17",
  4225. "psr-7",
  4226. "request",
  4227. "response"
  4228. ],
  4229. "support": {
  4230. "source": "https://github.com/php-fig/http-factory/tree/master"
  4231. },
  4232. "time": "2019-04-30T12:38:16+00:00"
  4233. },
  4234. {
  4235. "name": "psr/http-message",
  4236. "version": "1.0.1",
  4237. "source": {
  4238. "type": "git",
  4239. "url": "https://github.com/php-fig/http-message.git",
  4240. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4241. },
  4242. "dist": {
  4243. "type": "zip",
  4244. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4245. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4246. "shasum": "",
  4247. "mirrors": [
  4248. {
  4249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4250. "preferred": true
  4251. }
  4252. ]
  4253. },
  4254. "require": {
  4255. "php": ">=5.3.0"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-master": "1.0.x-dev"
  4261. }
  4262. },
  4263. "autoload": {
  4264. "psr-4": {
  4265. "Psr\\Http\\Message\\": "src/"
  4266. }
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "MIT"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "PHP-FIG",
  4275. "homepage": "http://www.php-fig.org/"
  4276. }
  4277. ],
  4278. "description": "Common interface for HTTP messages",
  4279. "homepage": "https://github.com/php-fig/http-message",
  4280. "keywords": [
  4281. "http",
  4282. "http-message",
  4283. "psr",
  4284. "psr-7",
  4285. "request",
  4286. "response"
  4287. ],
  4288. "support": {
  4289. "source": "https://github.com/php-fig/http-message/tree/master"
  4290. },
  4291. "time": "2016-08-06T14:39:51+00:00"
  4292. },
  4293. {
  4294. "name": "psr/log",
  4295. "version": "1.1.4",
  4296. "source": {
  4297. "type": "git",
  4298. "url": "https://github.com/php-fig/log.git",
  4299. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4300. },
  4301. "dist": {
  4302. "type": "zip",
  4303. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4304. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4305. "shasum": "",
  4306. "mirrors": [
  4307. {
  4308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4309. "preferred": true
  4310. }
  4311. ]
  4312. },
  4313. "require": {
  4314. "php": ">=5.3.0"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "1.1.x-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "psr-4": {
  4324. "Psr\\Log\\": "Psr/Log/"
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "PHP-FIG",
  4334. "homepage": "https://www.php-fig.org/"
  4335. }
  4336. ],
  4337. "description": "Common interface for logging libraries",
  4338. "homepage": "https://github.com/php-fig/log",
  4339. "keywords": [
  4340. "log",
  4341. "psr",
  4342. "psr-3"
  4343. ],
  4344. "support": {
  4345. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4346. },
  4347. "time": "2021-05-03T11:20:27+00:00"
  4348. },
  4349. {
  4350. "name": "psr/simple-cache",
  4351. "version": "1.0.1",
  4352. "source": {
  4353. "type": "git",
  4354. "url": "https://github.com/php-fig/simple-cache.git",
  4355. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4356. },
  4357. "dist": {
  4358. "type": "zip",
  4359. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4360. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4361. "shasum": "",
  4362. "mirrors": [
  4363. {
  4364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4365. "preferred": true
  4366. }
  4367. ]
  4368. },
  4369. "require": {
  4370. "php": ">=5.3.0"
  4371. },
  4372. "type": "library",
  4373. "extra": {
  4374. "branch-alias": {
  4375. "dev-master": "1.0.x-dev"
  4376. }
  4377. },
  4378. "autoload": {
  4379. "psr-4": {
  4380. "Psr\\SimpleCache\\": "src/"
  4381. }
  4382. },
  4383. "notification-url": "https://packagist.org/downloads/",
  4384. "license": [
  4385. "MIT"
  4386. ],
  4387. "authors": [
  4388. {
  4389. "name": "PHP-FIG",
  4390. "homepage": "http://www.php-fig.org/"
  4391. }
  4392. ],
  4393. "description": "Common interfaces for simple caching",
  4394. "keywords": [
  4395. "cache",
  4396. "caching",
  4397. "psr",
  4398. "psr-16",
  4399. "simple-cache"
  4400. ],
  4401. "support": {
  4402. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4403. },
  4404. "time": "2017-10-23T01:57:42+00:00"
  4405. },
  4406. {
  4407. "name": "psy/psysh",
  4408. "version": "v0.10.8",
  4409. "source": {
  4410. "type": "git",
  4411. "url": "https://github.com/bobthecow/psysh.git",
  4412. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4413. },
  4414. "dist": {
  4415. "type": "zip",
  4416. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4417. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4418. "shasum": "",
  4419. "mirrors": [
  4420. {
  4421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4422. "preferred": true
  4423. }
  4424. ]
  4425. },
  4426. "require": {
  4427. "ext-json": "*",
  4428. "ext-tokenizer": "*",
  4429. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4430. "php": "^8.0 || ^7.0 || ^5.5.9",
  4431. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4432. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4433. },
  4434. "require-dev": {
  4435. "bamarni/composer-bin-plugin": "^1.2",
  4436. "hoa/console": "3.17.*"
  4437. },
  4438. "suggest": {
  4439. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4440. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4441. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4442. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4443. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4444. },
  4445. "bin": [
  4446. "bin/psysh"
  4447. ],
  4448. "type": "library",
  4449. "extra": {
  4450. "branch-alias": {
  4451. "dev-main": "0.10.x-dev"
  4452. }
  4453. },
  4454. "autoload": {
  4455. "files": [
  4456. "src/functions.php"
  4457. ],
  4458. "psr-4": {
  4459. "Psy\\": "src/"
  4460. }
  4461. },
  4462. "notification-url": "https://packagist.org/downloads/",
  4463. "license": [
  4464. "MIT"
  4465. ],
  4466. "authors": [
  4467. {
  4468. "name": "Justin Hileman",
  4469. "email": "justin@justinhileman.info",
  4470. "homepage": "http://justinhileman.com"
  4471. }
  4472. ],
  4473. "description": "An interactive shell for modern PHP.",
  4474. "homepage": "http://psysh.org",
  4475. "keywords": [
  4476. "REPL",
  4477. "console",
  4478. "interactive",
  4479. "shell"
  4480. ],
  4481. "support": {
  4482. "issues": "https://github.com/bobthecow/psysh/issues",
  4483. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4484. },
  4485. "time": "2021-04-10T16:23:39+00:00"
  4486. },
  4487. {
  4488. "name": "pusher/pusher-php-server",
  4489. "version": "v4.1.5",
  4490. "source": {
  4491. "type": "git",
  4492. "url": "https://github.com/pusher/pusher-http-php.git",
  4493. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4494. },
  4495. "dist": {
  4496. "type": "zip",
  4497. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4498. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4499. "shasum": "",
  4500. "mirrors": [
  4501. {
  4502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4503. "preferred": true
  4504. }
  4505. ]
  4506. },
  4507. "require": {
  4508. "ext-curl": "*",
  4509. "paragonie/sodium_compat": "^1.6",
  4510. "php": "^7.1|^8.0",
  4511. "psr/log": "^1.0"
  4512. },
  4513. "require-dev": {
  4514. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4515. },
  4516. "type": "library",
  4517. "extra": {
  4518. "branch-alias": {
  4519. "dev-master": "3.4-dev"
  4520. }
  4521. },
  4522. "autoload": {
  4523. "psr-4": {
  4524. "Pusher\\": "src/"
  4525. }
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "MIT"
  4530. ],
  4531. "description": "Library for interacting with the Pusher REST API",
  4532. "keywords": [
  4533. "events",
  4534. "messaging",
  4535. "php-pusher-server",
  4536. "publish",
  4537. "push",
  4538. "pusher",
  4539. "real time",
  4540. "real-time",
  4541. "realtime",
  4542. "rest",
  4543. "trigger"
  4544. ],
  4545. "support": {
  4546. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4547. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4548. },
  4549. "time": "2020-12-09T09:38:19+00:00"
  4550. },
  4551. {
  4552. "name": "ralouphie/getallheaders",
  4553. "version": "3.0.3",
  4554. "source": {
  4555. "type": "git",
  4556. "url": "https://github.com/ralouphie/getallheaders.git",
  4557. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4558. },
  4559. "dist": {
  4560. "type": "zip",
  4561. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4562. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4563. "shasum": "",
  4564. "mirrors": [
  4565. {
  4566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4567. "preferred": true
  4568. }
  4569. ]
  4570. },
  4571. "require": {
  4572. "php": ">=5.6"
  4573. },
  4574. "require-dev": {
  4575. "php-coveralls/php-coveralls": "^2.1",
  4576. "phpunit/phpunit": "^5 || ^6.5"
  4577. },
  4578. "type": "library",
  4579. "autoload": {
  4580. "files": [
  4581. "src/getallheaders.php"
  4582. ]
  4583. },
  4584. "notification-url": "https://packagist.org/downloads/",
  4585. "license": [
  4586. "MIT"
  4587. ],
  4588. "authors": [
  4589. {
  4590. "name": "Ralph Khattar",
  4591. "email": "ralph.khattar@gmail.com"
  4592. }
  4593. ],
  4594. "description": "A polyfill for getallheaders.",
  4595. "support": {
  4596. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4597. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4598. },
  4599. "time": "2019-03-08T08:55:37+00:00"
  4600. },
  4601. {
  4602. "name": "ramsey/collection",
  4603. "version": "1.1.3",
  4604. "source": {
  4605. "type": "git",
  4606. "url": "https://github.com/ramsey/collection.git",
  4607. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4608. },
  4609. "dist": {
  4610. "type": "zip",
  4611. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4612. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4613. "shasum": "",
  4614. "mirrors": [
  4615. {
  4616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4617. "preferred": true
  4618. }
  4619. ]
  4620. },
  4621. "require": {
  4622. "php": "^7.2 || ^8"
  4623. },
  4624. "require-dev": {
  4625. "captainhook/captainhook": "^5.3",
  4626. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4627. "ergebnis/composer-normalize": "^2.6",
  4628. "fakerphp/faker": "^1.5",
  4629. "hamcrest/hamcrest-php": "^2",
  4630. "jangregor/phpstan-prophecy": "^0.8",
  4631. "mockery/mockery": "^1.3",
  4632. "phpstan/extension-installer": "^1",
  4633. "phpstan/phpstan": "^0.12.32",
  4634. "phpstan/phpstan-mockery": "^0.12.5",
  4635. "phpstan/phpstan-phpunit": "^0.12.11",
  4636. "phpunit/phpunit": "^8.5 || ^9",
  4637. "psy/psysh": "^0.10.4",
  4638. "slevomat/coding-standard": "^6.3",
  4639. "squizlabs/php_codesniffer": "^3.5",
  4640. "vimeo/psalm": "^4.4"
  4641. },
  4642. "type": "library",
  4643. "autoload": {
  4644. "psr-4": {
  4645. "Ramsey\\Collection\\": "src/"
  4646. }
  4647. },
  4648. "notification-url": "https://packagist.org/downloads/",
  4649. "license": [
  4650. "MIT"
  4651. ],
  4652. "authors": [
  4653. {
  4654. "name": "Ben Ramsey",
  4655. "email": "ben@benramsey.com",
  4656. "homepage": "https://benramsey.com"
  4657. }
  4658. ],
  4659. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4660. "keywords": [
  4661. "array",
  4662. "collection",
  4663. "hash",
  4664. "map",
  4665. "queue",
  4666. "set"
  4667. ],
  4668. "support": {
  4669. "issues": "https://github.com/ramsey/collection/issues",
  4670. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4671. },
  4672. "funding": [
  4673. {
  4674. "url": "https://github.com/ramsey",
  4675. "type": "github"
  4676. },
  4677. {
  4678. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4679. "type": "tidelift"
  4680. }
  4681. ],
  4682. "time": "2021-01-21T17:40:04+00:00"
  4683. },
  4684. {
  4685. "name": "ramsey/uuid",
  4686. "version": "4.1.1",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/ramsey/uuid.git",
  4690. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4695. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4696. "shasum": "",
  4697. "mirrors": [
  4698. {
  4699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4700. "preferred": true
  4701. }
  4702. ]
  4703. },
  4704. "require": {
  4705. "brick/math": "^0.8 || ^0.9",
  4706. "ext-json": "*",
  4707. "php": "^7.2 || ^8",
  4708. "ramsey/collection": "^1.0",
  4709. "symfony/polyfill-ctype": "^1.8"
  4710. },
  4711. "replace": {
  4712. "rhumsaa/uuid": "self.version"
  4713. },
  4714. "require-dev": {
  4715. "codeception/aspect-mock": "^3",
  4716. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4717. "doctrine/annotations": "^1.8",
  4718. "goaop/framework": "^2",
  4719. "mockery/mockery": "^1.3",
  4720. "moontoast/math": "^1.1",
  4721. "paragonie/random-lib": "^2",
  4722. "php-mock/php-mock-mockery": "^1.3",
  4723. "php-mock/php-mock-phpunit": "^2.5",
  4724. "php-parallel-lint/php-parallel-lint": "^1.1",
  4725. "phpbench/phpbench": "^0.17.1",
  4726. "phpstan/extension-installer": "^1.0",
  4727. "phpstan/phpstan": "^0.12",
  4728. "phpstan/phpstan-mockery": "^0.12",
  4729. "phpstan/phpstan-phpunit": "^0.12",
  4730. "phpunit/phpunit": "^8.5",
  4731. "psy/psysh": "^0.10.0",
  4732. "slevomat/coding-standard": "^6.0",
  4733. "squizlabs/php_codesniffer": "^3.5",
  4734. "vimeo/psalm": "3.9.4"
  4735. },
  4736. "suggest": {
  4737. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4738. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4739. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4740. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4741. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4742. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4743. },
  4744. "type": "library",
  4745. "extra": {
  4746. "branch-alias": {
  4747. "dev-master": "4.x-dev"
  4748. }
  4749. },
  4750. "autoload": {
  4751. "psr-4": {
  4752. "Ramsey\\Uuid\\": "src/"
  4753. },
  4754. "files": [
  4755. "src/functions.php"
  4756. ]
  4757. },
  4758. "notification-url": "https://packagist.org/downloads/",
  4759. "license": [
  4760. "MIT"
  4761. ],
  4762. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4763. "homepage": "https://github.com/ramsey/uuid",
  4764. "keywords": [
  4765. "guid",
  4766. "identifier",
  4767. "uuid"
  4768. ],
  4769. "support": {
  4770. "issues": "https://github.com/ramsey/uuid/issues",
  4771. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4772. "source": "https://github.com/ramsey/uuid"
  4773. },
  4774. "funding": [
  4775. {
  4776. "url": "https://github.com/ramsey",
  4777. "type": "github"
  4778. }
  4779. ],
  4780. "time": "2020-08-18T17:17:46+00:00"
  4781. },
  4782. {
  4783. "name": "swiftmailer/swiftmailer",
  4784. "version": "v6.2.7",
  4785. "source": {
  4786. "type": "git",
  4787. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4788. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4789. },
  4790. "dist": {
  4791. "type": "zip",
  4792. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4793. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4794. "shasum": "",
  4795. "mirrors": [
  4796. {
  4797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4798. "preferred": true
  4799. }
  4800. ]
  4801. },
  4802. "require": {
  4803. "egulias/email-validator": "^2.0|^3.1",
  4804. "php": ">=7.0.0",
  4805. "symfony/polyfill-iconv": "^1.0",
  4806. "symfony/polyfill-intl-idn": "^1.10",
  4807. "symfony/polyfill-mbstring": "^1.0"
  4808. },
  4809. "require-dev": {
  4810. "mockery/mockery": "^1.0",
  4811. "symfony/phpunit-bridge": "^4.4|^5.0"
  4812. },
  4813. "suggest": {
  4814. "ext-intl": "Needed to support internationalized email addresses"
  4815. },
  4816. "type": "library",
  4817. "extra": {
  4818. "branch-alias": {
  4819. "dev-master": "6.2-dev"
  4820. }
  4821. },
  4822. "autoload": {
  4823. "files": [
  4824. "lib/swift_required.php"
  4825. ]
  4826. },
  4827. "notification-url": "https://packagist.org/downloads/",
  4828. "license": [
  4829. "MIT"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "Chris Corbyn"
  4834. },
  4835. {
  4836. "name": "Fabien Potencier",
  4837. "email": "fabien@symfony.com"
  4838. }
  4839. ],
  4840. "description": "Swiftmailer, free feature-rich PHP mailer",
  4841. "homepage": "https://swiftmailer.symfony.com",
  4842. "keywords": [
  4843. "email",
  4844. "mail",
  4845. "mailer"
  4846. ],
  4847. "support": {
  4848. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4849. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4850. },
  4851. "funding": [
  4852. {
  4853. "url": "https://github.com/fabpot",
  4854. "type": "github"
  4855. },
  4856. {
  4857. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4858. "type": "tidelift"
  4859. }
  4860. ],
  4861. "time": "2021-03-09T12:30:35+00:00"
  4862. },
  4863. {
  4864. "name": "symfony/console",
  4865. "version": "v5.3.2",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://github.com/symfony/console.git",
  4869. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://api.github.com/repos/symfony/console/zipball/649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  4874. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  4875. "shasum": "",
  4876. "mirrors": [
  4877. {
  4878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4879. "preferred": true
  4880. }
  4881. ]
  4882. },
  4883. "require": {
  4884. "php": ">=7.2.5",
  4885. "symfony/deprecation-contracts": "^2.1",
  4886. "symfony/polyfill-mbstring": "~1.0",
  4887. "symfony/polyfill-php73": "^1.8",
  4888. "symfony/polyfill-php80": "^1.15",
  4889. "symfony/service-contracts": "^1.1|^2",
  4890. "symfony/string": "^5.1"
  4891. },
  4892. "conflict": {
  4893. "symfony/dependency-injection": "<4.4",
  4894. "symfony/dotenv": "<5.1",
  4895. "symfony/event-dispatcher": "<4.4",
  4896. "symfony/lock": "<4.4",
  4897. "symfony/process": "<4.4"
  4898. },
  4899. "provide": {
  4900. "psr/log-implementation": "1.0"
  4901. },
  4902. "require-dev": {
  4903. "psr/log": "~1.0",
  4904. "symfony/config": "^4.4|^5.0",
  4905. "symfony/dependency-injection": "^4.4|^5.0",
  4906. "symfony/event-dispatcher": "^4.4|^5.0",
  4907. "symfony/lock": "^4.4|^5.0",
  4908. "symfony/process": "^4.4|^5.0",
  4909. "symfony/var-dumper": "^4.4|^5.0"
  4910. },
  4911. "suggest": {
  4912. "psr/log": "For using the console logger",
  4913. "symfony/event-dispatcher": "",
  4914. "symfony/lock": "",
  4915. "symfony/process": ""
  4916. },
  4917. "type": "library",
  4918. "autoload": {
  4919. "psr-4": {
  4920. "Symfony\\Component\\Console\\": ""
  4921. },
  4922. "exclude-from-classmap": [
  4923. "/Tests/"
  4924. ]
  4925. },
  4926. "notification-url": "https://packagist.org/downloads/",
  4927. "license": [
  4928. "MIT"
  4929. ],
  4930. "authors": [
  4931. {
  4932. "name": "Fabien Potencier",
  4933. "email": "fabien@symfony.com"
  4934. },
  4935. {
  4936. "name": "Symfony Community",
  4937. "homepage": "https://symfony.com/contributors"
  4938. }
  4939. ],
  4940. "description": "Eases the creation of beautiful and testable command line interfaces",
  4941. "homepage": "https://symfony.com",
  4942. "keywords": [
  4943. "cli",
  4944. "command line",
  4945. "console",
  4946. "terminal"
  4947. ],
  4948. "support": {
  4949. "source": "https://github.com/symfony/console/tree/v5.3.2"
  4950. },
  4951. "funding": [
  4952. {
  4953. "url": "https://symfony.com/sponsor",
  4954. "type": "custom"
  4955. },
  4956. {
  4957. "url": "https://github.com/fabpot",
  4958. "type": "github"
  4959. },
  4960. {
  4961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4962. "type": "tidelift"
  4963. }
  4964. ],
  4965. "time": "2021-06-12T09:42:48+00:00"
  4966. },
  4967. {
  4968. "name": "symfony/css-selector",
  4969. "version": "v5.3.0",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/symfony/css-selector.git",
  4973. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4978. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4979. "shasum": "",
  4980. "mirrors": [
  4981. {
  4982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4983. "preferred": true
  4984. }
  4985. ]
  4986. },
  4987. "require": {
  4988. "php": ">=7.2.5"
  4989. },
  4990. "type": "library",
  4991. "autoload": {
  4992. "psr-4": {
  4993. "Symfony\\Component\\CssSelector\\": ""
  4994. },
  4995. "exclude-from-classmap": [
  4996. "/Tests/"
  4997. ]
  4998. },
  4999. "notification-url": "https://packagist.org/downloads/",
  5000. "license": [
  5001. "MIT"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Fabien Potencier",
  5006. "email": "fabien@symfony.com"
  5007. },
  5008. {
  5009. "name": "Jean-François Simon",
  5010. "email": "jeanfrancois.simon@sensiolabs.com"
  5011. },
  5012. {
  5013. "name": "Symfony Community",
  5014. "homepage": "https://symfony.com/contributors"
  5015. }
  5016. ],
  5017. "description": "Converts CSS selectors to XPath expressions",
  5018. "homepage": "https://symfony.com",
  5019. "support": {
  5020. "source": "https://github.com/symfony/css-selector/tree/v5.3.0"
  5021. },
  5022. "funding": [
  5023. {
  5024. "url": "https://symfony.com/sponsor",
  5025. "type": "custom"
  5026. },
  5027. {
  5028. "url": "https://github.com/fabpot",
  5029. "type": "github"
  5030. },
  5031. {
  5032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5033. "type": "tidelift"
  5034. }
  5035. ],
  5036. "time": "2021-05-26T17:40:38+00:00"
  5037. },
  5038. {
  5039. "name": "symfony/deprecation-contracts",
  5040. "version": "v2.4.0",
  5041. "source": {
  5042. "type": "git",
  5043. "url": "https://github.com/symfony/deprecation-contracts.git",
  5044. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5045. },
  5046. "dist": {
  5047. "type": "zip",
  5048. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5049. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5050. "shasum": "",
  5051. "mirrors": [
  5052. {
  5053. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5054. "preferred": true
  5055. }
  5056. ]
  5057. },
  5058. "require": {
  5059. "php": ">=7.1"
  5060. },
  5061. "type": "library",
  5062. "extra": {
  5063. "branch-alias": {
  5064. "dev-main": "2.4-dev"
  5065. },
  5066. "thanks": {
  5067. "name": "symfony/contracts",
  5068. "url": "https://github.com/symfony/contracts"
  5069. }
  5070. },
  5071. "autoload": {
  5072. "files": [
  5073. "function.php"
  5074. ]
  5075. },
  5076. "notification-url": "https://packagist.org/downloads/",
  5077. "license": [
  5078. "MIT"
  5079. ],
  5080. "authors": [
  5081. {
  5082. "name": "Nicolas Grekas",
  5083. "email": "p@tchwork.com"
  5084. },
  5085. {
  5086. "name": "Symfony Community",
  5087. "homepage": "https://symfony.com/contributors"
  5088. }
  5089. ],
  5090. "description": "A generic function and convention to trigger deprecation notices",
  5091. "homepage": "https://symfony.com",
  5092. "support": {
  5093. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5094. },
  5095. "funding": [
  5096. {
  5097. "url": "https://symfony.com/sponsor",
  5098. "type": "custom"
  5099. },
  5100. {
  5101. "url": "https://github.com/fabpot",
  5102. "type": "github"
  5103. },
  5104. {
  5105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5106. "type": "tidelift"
  5107. }
  5108. ],
  5109. "time": "2021-03-23T23:28:01+00:00"
  5110. },
  5111. {
  5112. "name": "symfony/error-handler",
  5113. "version": "v5.3.3",
  5114. "source": {
  5115. "type": "git",
  5116. "url": "https://github.com/symfony/error-handler.git",
  5117. "reference": "43323e79c80719e8a4674e33484bca98270d223f"
  5118. },
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://api.github.com/repos/symfony/error-handler/zipball/43323e79c80719e8a4674e33484bca98270d223f",
  5122. "reference": "43323e79c80719e8a4674e33484bca98270d223f",
  5123. "shasum": "",
  5124. "mirrors": [
  5125. {
  5126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5127. "preferred": true
  5128. }
  5129. ]
  5130. },
  5131. "require": {
  5132. "php": ">=7.2.5",
  5133. "psr/log": "^1.0",
  5134. "symfony/polyfill-php80": "^1.15",
  5135. "symfony/var-dumper": "^4.4|^5.0"
  5136. },
  5137. "require-dev": {
  5138. "symfony/deprecation-contracts": "^2.1",
  5139. "symfony/http-kernel": "^4.4|^5.0",
  5140. "symfony/serializer": "^4.4|^5.0"
  5141. },
  5142. "type": "library",
  5143. "autoload": {
  5144. "psr-4": {
  5145. "Symfony\\Component\\ErrorHandler\\": ""
  5146. },
  5147. "exclude-from-classmap": [
  5148. "/Tests/"
  5149. ]
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Fabien Potencier",
  5158. "email": "fabien@symfony.com"
  5159. },
  5160. {
  5161. "name": "Symfony Community",
  5162. "homepage": "https://symfony.com/contributors"
  5163. }
  5164. ],
  5165. "description": "Provides tools to manage errors and ease debugging PHP code",
  5166. "homepage": "https://symfony.com",
  5167. "support": {
  5168. "source": "https://github.com/symfony/error-handler/tree/v5.3.3"
  5169. },
  5170. "funding": [
  5171. {
  5172. "url": "https://symfony.com/sponsor",
  5173. "type": "custom"
  5174. },
  5175. {
  5176. "url": "https://github.com/fabpot",
  5177. "type": "github"
  5178. },
  5179. {
  5180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5181. "type": "tidelift"
  5182. }
  5183. ],
  5184. "time": "2021-06-24T08:13:00+00:00"
  5185. },
  5186. {
  5187. "name": "symfony/event-dispatcher",
  5188. "version": "v5.3.0",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/symfony/event-dispatcher.git",
  5192. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5197. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5198. "shasum": "",
  5199. "mirrors": [
  5200. {
  5201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5202. "preferred": true
  5203. }
  5204. ]
  5205. },
  5206. "require": {
  5207. "php": ">=7.2.5",
  5208. "symfony/deprecation-contracts": "^2.1",
  5209. "symfony/event-dispatcher-contracts": "^2",
  5210. "symfony/polyfill-php80": "^1.15"
  5211. },
  5212. "conflict": {
  5213. "symfony/dependency-injection": "<4.4"
  5214. },
  5215. "provide": {
  5216. "psr/event-dispatcher-implementation": "1.0",
  5217. "symfony/event-dispatcher-implementation": "2.0"
  5218. },
  5219. "require-dev": {
  5220. "psr/log": "~1.0",
  5221. "symfony/config": "^4.4|^5.0",
  5222. "symfony/dependency-injection": "^4.4|^5.0",
  5223. "symfony/error-handler": "^4.4|^5.0",
  5224. "symfony/expression-language": "^4.4|^5.0",
  5225. "symfony/http-foundation": "^4.4|^5.0",
  5226. "symfony/service-contracts": "^1.1|^2",
  5227. "symfony/stopwatch": "^4.4|^5.0"
  5228. },
  5229. "suggest": {
  5230. "symfony/dependency-injection": "",
  5231. "symfony/http-kernel": ""
  5232. },
  5233. "type": "library",
  5234. "autoload": {
  5235. "psr-4": {
  5236. "Symfony\\Component\\EventDispatcher\\": ""
  5237. },
  5238. "exclude-from-classmap": [
  5239. "/Tests/"
  5240. ]
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "license": [
  5244. "MIT"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "Fabien Potencier",
  5249. "email": "fabien@symfony.com"
  5250. },
  5251. {
  5252. "name": "Symfony Community",
  5253. "homepage": "https://symfony.com/contributors"
  5254. }
  5255. ],
  5256. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5257. "homepage": "https://symfony.com",
  5258. "support": {
  5259. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0"
  5260. },
  5261. "funding": [
  5262. {
  5263. "url": "https://symfony.com/sponsor",
  5264. "type": "custom"
  5265. },
  5266. {
  5267. "url": "https://github.com/fabpot",
  5268. "type": "github"
  5269. },
  5270. {
  5271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5272. "type": "tidelift"
  5273. }
  5274. ],
  5275. "time": "2021-05-26T17:43:10+00:00"
  5276. },
  5277. {
  5278. "name": "symfony/event-dispatcher-contracts",
  5279. "version": "v2.4.0",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5283. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5284. },
  5285. "dist": {
  5286. "type": "zip",
  5287. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5288. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5289. "shasum": "",
  5290. "mirrors": [
  5291. {
  5292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5293. "preferred": true
  5294. }
  5295. ]
  5296. },
  5297. "require": {
  5298. "php": ">=7.2.5",
  5299. "psr/event-dispatcher": "^1"
  5300. },
  5301. "suggest": {
  5302. "symfony/event-dispatcher-implementation": ""
  5303. },
  5304. "type": "library",
  5305. "extra": {
  5306. "branch-alias": {
  5307. "dev-main": "2.4-dev"
  5308. },
  5309. "thanks": {
  5310. "name": "symfony/contracts",
  5311. "url": "https://github.com/symfony/contracts"
  5312. }
  5313. },
  5314. "autoload": {
  5315. "psr-4": {
  5316. "Symfony\\Contracts\\EventDispatcher\\": ""
  5317. }
  5318. },
  5319. "notification-url": "https://packagist.org/downloads/",
  5320. "license": [
  5321. "MIT"
  5322. ],
  5323. "authors": [
  5324. {
  5325. "name": "Nicolas Grekas",
  5326. "email": "p@tchwork.com"
  5327. },
  5328. {
  5329. "name": "Symfony Community",
  5330. "homepage": "https://symfony.com/contributors"
  5331. }
  5332. ],
  5333. "description": "Generic abstractions related to dispatching event",
  5334. "homepage": "https://symfony.com",
  5335. "keywords": [
  5336. "abstractions",
  5337. "contracts",
  5338. "decoupling",
  5339. "interfaces",
  5340. "interoperability",
  5341. "standards"
  5342. ],
  5343. "support": {
  5344. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5345. },
  5346. "funding": [
  5347. {
  5348. "url": "https://symfony.com/sponsor",
  5349. "type": "custom"
  5350. },
  5351. {
  5352. "url": "https://github.com/fabpot",
  5353. "type": "github"
  5354. },
  5355. {
  5356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5357. "type": "tidelift"
  5358. }
  5359. ],
  5360. "time": "2021-03-23T23:28:01+00:00"
  5361. },
  5362. {
  5363. "name": "symfony/finder",
  5364. "version": "v5.3.0",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://github.com/symfony/finder.git",
  5368. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6"
  5369. },
  5370. "dist": {
  5371. "type": "zip",
  5372. "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5373. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5374. "shasum": "",
  5375. "mirrors": [
  5376. {
  5377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5378. "preferred": true
  5379. }
  5380. ]
  5381. },
  5382. "require": {
  5383. "php": ">=7.2.5"
  5384. },
  5385. "type": "library",
  5386. "autoload": {
  5387. "psr-4": {
  5388. "Symfony\\Component\\Finder\\": ""
  5389. },
  5390. "exclude-from-classmap": [
  5391. "/Tests/"
  5392. ]
  5393. },
  5394. "notification-url": "https://packagist.org/downloads/",
  5395. "license": [
  5396. "MIT"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "Fabien Potencier",
  5401. "email": "fabien@symfony.com"
  5402. },
  5403. {
  5404. "name": "Symfony Community",
  5405. "homepage": "https://symfony.com/contributors"
  5406. }
  5407. ],
  5408. "description": "Finds files and directories via an intuitive fluent interface",
  5409. "homepage": "https://symfony.com",
  5410. "support": {
  5411. "source": "https://github.com/symfony/finder/tree/v5.3.0"
  5412. },
  5413. "funding": [
  5414. {
  5415. "url": "https://symfony.com/sponsor",
  5416. "type": "custom"
  5417. },
  5418. {
  5419. "url": "https://github.com/fabpot",
  5420. "type": "github"
  5421. },
  5422. {
  5423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5424. "type": "tidelift"
  5425. }
  5426. ],
  5427. "time": "2021-05-26T12:52:38+00:00"
  5428. },
  5429. {
  5430. "name": "symfony/http-client-contracts",
  5431. "version": "v2.4.0",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://github.com/symfony/http-client-contracts.git",
  5435. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5440. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5441. "shasum": "",
  5442. "mirrors": [
  5443. {
  5444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5445. "preferred": true
  5446. }
  5447. ]
  5448. },
  5449. "require": {
  5450. "php": ">=7.2.5"
  5451. },
  5452. "suggest": {
  5453. "symfony/http-client-implementation": ""
  5454. },
  5455. "type": "library",
  5456. "extra": {
  5457. "branch-alias": {
  5458. "dev-main": "2.4-dev"
  5459. },
  5460. "thanks": {
  5461. "name": "symfony/contracts",
  5462. "url": "https://github.com/symfony/contracts"
  5463. }
  5464. },
  5465. "autoload": {
  5466. "psr-4": {
  5467. "Symfony\\Contracts\\HttpClient\\": ""
  5468. }
  5469. },
  5470. "notification-url": "https://packagist.org/downloads/",
  5471. "license": [
  5472. "MIT"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "Nicolas Grekas",
  5477. "email": "p@tchwork.com"
  5478. },
  5479. {
  5480. "name": "Symfony Community",
  5481. "homepage": "https://symfony.com/contributors"
  5482. }
  5483. ],
  5484. "description": "Generic abstractions related to HTTP clients",
  5485. "homepage": "https://symfony.com",
  5486. "keywords": [
  5487. "abstractions",
  5488. "contracts",
  5489. "decoupling",
  5490. "interfaces",
  5491. "interoperability",
  5492. "standards"
  5493. ],
  5494. "support": {
  5495. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5496. },
  5497. "funding": [
  5498. {
  5499. "url": "https://symfony.com/sponsor",
  5500. "type": "custom"
  5501. },
  5502. {
  5503. "url": "https://github.com/fabpot",
  5504. "type": "github"
  5505. },
  5506. {
  5507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5508. "type": "tidelift"
  5509. }
  5510. ],
  5511. "time": "2021-04-11T23:07:08+00:00"
  5512. },
  5513. {
  5514. "name": "symfony/http-foundation",
  5515. "version": "v5.3.3",
  5516. "source": {
  5517. "type": "git",
  5518. "url": "https://github.com/symfony/http-foundation.git",
  5519. "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf"
  5520. },
  5521. "dist": {
  5522. "type": "zip",
  5523. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0e45ab1574caa0460d9190871a8ce47539e40ccf",
  5524. "reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf",
  5525. "shasum": "",
  5526. "mirrors": [
  5527. {
  5528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5529. "preferred": true
  5530. }
  5531. ]
  5532. },
  5533. "require": {
  5534. "php": ">=7.2.5",
  5535. "symfony/deprecation-contracts": "^2.1",
  5536. "symfony/polyfill-mbstring": "~1.1",
  5537. "symfony/polyfill-php80": "^1.15"
  5538. },
  5539. "require-dev": {
  5540. "predis/predis": "~1.0",
  5541. "symfony/cache": "^4.4|^5.0",
  5542. "symfony/expression-language": "^4.4|^5.0",
  5543. "symfony/mime": "^4.4|^5.0"
  5544. },
  5545. "suggest": {
  5546. "symfony/mime": "To use the file extension guesser"
  5547. },
  5548. "type": "library",
  5549. "autoload": {
  5550. "psr-4": {
  5551. "Symfony\\Component\\HttpFoundation\\": ""
  5552. },
  5553. "exclude-from-classmap": [
  5554. "/Tests/"
  5555. ]
  5556. },
  5557. "notification-url": "https://packagist.org/downloads/",
  5558. "license": [
  5559. "MIT"
  5560. ],
  5561. "authors": [
  5562. {
  5563. "name": "Fabien Potencier",
  5564. "email": "fabien@symfony.com"
  5565. },
  5566. {
  5567. "name": "Symfony Community",
  5568. "homepage": "https://symfony.com/contributors"
  5569. }
  5570. ],
  5571. "description": "Defines an object-oriented layer for the HTTP specification",
  5572. "homepage": "https://symfony.com",
  5573. "support": {
  5574. "source": "https://github.com/symfony/http-foundation/tree/v5.3.3"
  5575. },
  5576. "funding": [
  5577. {
  5578. "url": "https://symfony.com/sponsor",
  5579. "type": "custom"
  5580. },
  5581. {
  5582. "url": "https://github.com/fabpot",
  5583. "type": "github"
  5584. },
  5585. {
  5586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5587. "type": "tidelift"
  5588. }
  5589. ],
  5590. "time": "2021-06-27T09:19:40+00:00"
  5591. },
  5592. {
  5593. "name": "symfony/http-kernel",
  5594. "version": "v5.3.3",
  5595. "source": {
  5596. "type": "git",
  5597. "url": "https://github.com/symfony/http-kernel.git",
  5598. "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8"
  5599. },
  5600. "dist": {
  5601. "type": "zip",
  5602. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8",
  5603. "reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8",
  5604. "shasum": "",
  5605. "mirrors": [
  5606. {
  5607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5608. "preferred": true
  5609. }
  5610. ]
  5611. },
  5612. "require": {
  5613. "php": ">=7.2.5",
  5614. "psr/log": "~1.0",
  5615. "symfony/deprecation-contracts": "^2.1",
  5616. "symfony/error-handler": "^4.4|^5.0",
  5617. "symfony/event-dispatcher": "^5.0",
  5618. "symfony/http-client-contracts": "^1.1|^2",
  5619. "symfony/http-foundation": "^5.3",
  5620. "symfony/polyfill-ctype": "^1.8",
  5621. "symfony/polyfill-php73": "^1.9",
  5622. "symfony/polyfill-php80": "^1.15"
  5623. },
  5624. "conflict": {
  5625. "symfony/browser-kit": "<4.4",
  5626. "symfony/cache": "<5.0",
  5627. "symfony/config": "<5.0",
  5628. "symfony/console": "<4.4",
  5629. "symfony/dependency-injection": "<5.3",
  5630. "symfony/doctrine-bridge": "<5.0",
  5631. "symfony/form": "<5.0",
  5632. "symfony/http-client": "<5.0",
  5633. "symfony/mailer": "<5.0",
  5634. "symfony/messenger": "<5.0",
  5635. "symfony/translation": "<5.0",
  5636. "symfony/twig-bridge": "<5.0",
  5637. "symfony/validator": "<5.0",
  5638. "twig/twig": "<2.13"
  5639. },
  5640. "provide": {
  5641. "psr/log-implementation": "1.0"
  5642. },
  5643. "require-dev": {
  5644. "psr/cache": "^1.0|^2.0|^3.0",
  5645. "symfony/browser-kit": "^4.4|^5.0",
  5646. "symfony/config": "^5.0",
  5647. "symfony/console": "^4.4|^5.0",
  5648. "symfony/css-selector": "^4.4|^5.0",
  5649. "symfony/dependency-injection": "^5.3",
  5650. "symfony/dom-crawler": "^4.4|^5.0",
  5651. "symfony/expression-language": "^4.4|^5.0",
  5652. "symfony/finder": "^4.4|^5.0",
  5653. "symfony/process": "^4.4|^5.0",
  5654. "symfony/routing": "^4.4|^5.0",
  5655. "symfony/stopwatch": "^4.4|^5.0",
  5656. "symfony/translation": "^4.4|^5.0",
  5657. "symfony/translation-contracts": "^1.1|^2",
  5658. "twig/twig": "^2.13|^3.0.4"
  5659. },
  5660. "suggest": {
  5661. "symfony/browser-kit": "",
  5662. "symfony/config": "",
  5663. "symfony/console": "",
  5664. "symfony/dependency-injection": ""
  5665. },
  5666. "type": "library",
  5667. "autoload": {
  5668. "psr-4": {
  5669. "Symfony\\Component\\HttpKernel\\": ""
  5670. },
  5671. "exclude-from-classmap": [
  5672. "/Tests/"
  5673. ]
  5674. },
  5675. "notification-url": "https://packagist.org/downloads/",
  5676. "license": [
  5677. "MIT"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "Fabien Potencier",
  5682. "email": "fabien@symfony.com"
  5683. },
  5684. {
  5685. "name": "Symfony Community",
  5686. "homepage": "https://symfony.com/contributors"
  5687. }
  5688. ],
  5689. "description": "Provides a structured process for converting a Request into a Response",
  5690. "homepage": "https://symfony.com",
  5691. "support": {
  5692. "source": "https://github.com/symfony/http-kernel/tree/v5.3.3"
  5693. },
  5694. "funding": [
  5695. {
  5696. "url": "https://symfony.com/sponsor",
  5697. "type": "custom"
  5698. },
  5699. {
  5700. "url": "https://github.com/fabpot",
  5701. "type": "github"
  5702. },
  5703. {
  5704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5705. "type": "tidelift"
  5706. }
  5707. ],
  5708. "time": "2021-06-30T08:27:49+00:00"
  5709. },
  5710. {
  5711. "name": "symfony/mime",
  5712. "version": "v5.3.2",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/symfony/mime.git",
  5716. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/symfony/mime/zipball/47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5721. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5722. "shasum": "",
  5723. "mirrors": [
  5724. {
  5725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5726. "preferred": true
  5727. }
  5728. ]
  5729. },
  5730. "require": {
  5731. "php": ">=7.2.5",
  5732. "symfony/deprecation-contracts": "^2.1",
  5733. "symfony/polyfill-intl-idn": "^1.10",
  5734. "symfony/polyfill-mbstring": "^1.0",
  5735. "symfony/polyfill-php80": "^1.15"
  5736. },
  5737. "conflict": {
  5738. "egulias/email-validator": "~3.0.0",
  5739. "phpdocumentor/reflection-docblock": "<3.2.2",
  5740. "phpdocumentor/type-resolver": "<1.4.0",
  5741. "symfony/mailer": "<4.4"
  5742. },
  5743. "require-dev": {
  5744. "egulias/email-validator": "^2.1.10|^3.1",
  5745. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5746. "symfony/dependency-injection": "^4.4|^5.0",
  5747. "symfony/property-access": "^4.4|^5.1",
  5748. "symfony/property-info": "^4.4|^5.1",
  5749. "symfony/serializer": "^5.2"
  5750. },
  5751. "type": "library",
  5752. "autoload": {
  5753. "psr-4": {
  5754. "Symfony\\Component\\Mime\\": ""
  5755. },
  5756. "exclude-from-classmap": [
  5757. "/Tests/"
  5758. ]
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "Fabien Potencier",
  5767. "email": "fabien@symfony.com"
  5768. },
  5769. {
  5770. "name": "Symfony Community",
  5771. "homepage": "https://symfony.com/contributors"
  5772. }
  5773. ],
  5774. "description": "Allows manipulating MIME messages",
  5775. "homepage": "https://symfony.com",
  5776. "keywords": [
  5777. "mime",
  5778. "mime-type"
  5779. ],
  5780. "support": {
  5781. "source": "https://github.com/symfony/mime/tree/v5.3.2"
  5782. },
  5783. "funding": [
  5784. {
  5785. "url": "https://symfony.com/sponsor",
  5786. "type": "custom"
  5787. },
  5788. {
  5789. "url": "https://github.com/fabpot",
  5790. "type": "github"
  5791. },
  5792. {
  5793. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5794. "type": "tidelift"
  5795. }
  5796. ],
  5797. "time": "2021-06-09T10:58:01+00:00"
  5798. },
  5799. {
  5800. "name": "symfony/options-resolver",
  5801. "version": "v5.3.0",
  5802. "source": {
  5803. "type": "git",
  5804. "url": "https://github.com/symfony/options-resolver.git",
  5805. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5"
  5806. },
  5807. "dist": {
  5808. "type": "zip",
  5809. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5",
  5810. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5",
  5811. "shasum": "",
  5812. "mirrors": [
  5813. {
  5814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5815. "preferred": true
  5816. }
  5817. ]
  5818. },
  5819. "require": {
  5820. "php": ">=7.2.5",
  5821. "symfony/deprecation-contracts": "^2.1",
  5822. "symfony/polyfill-php73": "~1.0",
  5823. "symfony/polyfill-php80": "^1.15"
  5824. },
  5825. "type": "library",
  5826. "autoload": {
  5827. "psr-4": {
  5828. "Symfony\\Component\\OptionsResolver\\": ""
  5829. },
  5830. "exclude-from-classmap": [
  5831. "/Tests/"
  5832. ]
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "MIT"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "Fabien Potencier",
  5841. "email": "fabien@symfony.com"
  5842. },
  5843. {
  5844. "name": "Symfony Community",
  5845. "homepage": "https://symfony.com/contributors"
  5846. }
  5847. ],
  5848. "description": "Provides an improved replacement for the array_replace PHP function",
  5849. "homepage": "https://symfony.com",
  5850. "keywords": [
  5851. "config",
  5852. "configuration",
  5853. "options"
  5854. ],
  5855. "support": {
  5856. "source": "https://github.com/symfony/options-resolver/tree/v5.3.0"
  5857. },
  5858. "funding": [
  5859. {
  5860. "url": "https://symfony.com/sponsor",
  5861. "type": "custom"
  5862. },
  5863. {
  5864. "url": "https://github.com/fabpot",
  5865. "type": "github"
  5866. },
  5867. {
  5868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5869. "type": "tidelift"
  5870. }
  5871. ],
  5872. "time": "2021-05-26T17:43:10+00:00"
  5873. },
  5874. {
  5875. "name": "symfony/polyfill-ctype",
  5876. "version": "v1.23.0",
  5877. "source": {
  5878. "type": "git",
  5879. "url": "https://github.com/symfony/polyfill-ctype.git",
  5880. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5881. },
  5882. "dist": {
  5883. "type": "zip",
  5884. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5885. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5886. "shasum": "",
  5887. "mirrors": [
  5888. {
  5889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5890. "preferred": true
  5891. }
  5892. ]
  5893. },
  5894. "require": {
  5895. "php": ">=7.1"
  5896. },
  5897. "suggest": {
  5898. "ext-ctype": "For best performance"
  5899. },
  5900. "type": "library",
  5901. "extra": {
  5902. "branch-alias": {
  5903. "dev-main": "1.23-dev"
  5904. },
  5905. "thanks": {
  5906. "name": "symfony/polyfill",
  5907. "url": "https://github.com/symfony/polyfill"
  5908. }
  5909. },
  5910. "autoload": {
  5911. "psr-4": {
  5912. "Symfony\\Polyfill\\Ctype\\": ""
  5913. },
  5914. "files": [
  5915. "bootstrap.php"
  5916. ]
  5917. },
  5918. "notification-url": "https://packagist.org/downloads/",
  5919. "license": [
  5920. "MIT"
  5921. ],
  5922. "authors": [
  5923. {
  5924. "name": "Gert de Pagter",
  5925. "email": "BackEndTea@gmail.com"
  5926. },
  5927. {
  5928. "name": "Symfony Community",
  5929. "homepage": "https://symfony.com/contributors"
  5930. }
  5931. ],
  5932. "description": "Symfony polyfill for ctype functions",
  5933. "homepage": "https://symfony.com",
  5934. "keywords": [
  5935. "compatibility",
  5936. "ctype",
  5937. "polyfill",
  5938. "portable"
  5939. ],
  5940. "support": {
  5941. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5942. },
  5943. "funding": [
  5944. {
  5945. "url": "https://symfony.com/sponsor",
  5946. "type": "custom"
  5947. },
  5948. {
  5949. "url": "https://github.com/fabpot",
  5950. "type": "github"
  5951. },
  5952. {
  5953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5954. "type": "tidelift"
  5955. }
  5956. ],
  5957. "time": "2021-02-19T12:13:01+00:00"
  5958. },
  5959. {
  5960. "name": "symfony/polyfill-iconv",
  5961. "version": "v1.23.0",
  5962. "source": {
  5963. "type": "git",
  5964. "url": "https://github.com/symfony/polyfill-iconv.git",
  5965. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5966. },
  5967. "dist": {
  5968. "type": "zip",
  5969. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5970. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5971. "shasum": "",
  5972. "mirrors": [
  5973. {
  5974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5975. "preferred": true
  5976. }
  5977. ]
  5978. },
  5979. "require": {
  5980. "php": ">=7.1"
  5981. },
  5982. "suggest": {
  5983. "ext-iconv": "For best performance"
  5984. },
  5985. "type": "library",
  5986. "extra": {
  5987. "branch-alias": {
  5988. "dev-main": "1.23-dev"
  5989. },
  5990. "thanks": {
  5991. "name": "symfony/polyfill",
  5992. "url": "https://github.com/symfony/polyfill"
  5993. }
  5994. },
  5995. "autoload": {
  5996. "psr-4": {
  5997. "Symfony\\Polyfill\\Iconv\\": ""
  5998. },
  5999. "files": [
  6000. "bootstrap.php"
  6001. ]
  6002. },
  6003. "notification-url": "https://packagist.org/downloads/",
  6004. "license": [
  6005. "MIT"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "Nicolas Grekas",
  6010. "email": "p@tchwork.com"
  6011. },
  6012. {
  6013. "name": "Symfony Community",
  6014. "homepage": "https://symfony.com/contributors"
  6015. }
  6016. ],
  6017. "description": "Symfony polyfill for the Iconv extension",
  6018. "homepage": "https://symfony.com",
  6019. "keywords": [
  6020. "compatibility",
  6021. "iconv",
  6022. "polyfill",
  6023. "portable",
  6024. "shim"
  6025. ],
  6026. "support": {
  6027. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  6028. },
  6029. "funding": [
  6030. {
  6031. "url": "https://symfony.com/sponsor",
  6032. "type": "custom"
  6033. },
  6034. {
  6035. "url": "https://github.com/fabpot",
  6036. "type": "github"
  6037. },
  6038. {
  6039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6040. "type": "tidelift"
  6041. }
  6042. ],
  6043. "time": "2021-05-27T09:27:20+00:00"
  6044. },
  6045. {
  6046. "name": "symfony/polyfill-intl-grapheme",
  6047. "version": "v1.23.0",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6051. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  6056. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  6057. "shasum": "",
  6058. "mirrors": [
  6059. {
  6060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6061. "preferred": true
  6062. }
  6063. ]
  6064. },
  6065. "require": {
  6066. "php": ">=7.1"
  6067. },
  6068. "suggest": {
  6069. "ext-intl": "For best performance"
  6070. },
  6071. "type": "library",
  6072. "extra": {
  6073. "branch-alias": {
  6074. "dev-main": "1.23-dev"
  6075. },
  6076. "thanks": {
  6077. "name": "symfony/polyfill",
  6078. "url": "https://github.com/symfony/polyfill"
  6079. }
  6080. },
  6081. "autoload": {
  6082. "psr-4": {
  6083. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6084. },
  6085. "files": [
  6086. "bootstrap.php"
  6087. ]
  6088. },
  6089. "notification-url": "https://packagist.org/downloads/",
  6090. "license": [
  6091. "MIT"
  6092. ],
  6093. "authors": [
  6094. {
  6095. "name": "Nicolas Grekas",
  6096. "email": "p@tchwork.com"
  6097. },
  6098. {
  6099. "name": "Symfony Community",
  6100. "homepage": "https://symfony.com/contributors"
  6101. }
  6102. ],
  6103. "description": "Symfony polyfill for intl's grapheme_* functions",
  6104. "homepage": "https://symfony.com",
  6105. "keywords": [
  6106. "compatibility",
  6107. "grapheme",
  6108. "intl",
  6109. "polyfill",
  6110. "portable",
  6111. "shim"
  6112. ],
  6113. "support": {
  6114. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  6115. },
  6116. "funding": [
  6117. {
  6118. "url": "https://symfony.com/sponsor",
  6119. "type": "custom"
  6120. },
  6121. {
  6122. "url": "https://github.com/fabpot",
  6123. "type": "github"
  6124. },
  6125. {
  6126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6127. "type": "tidelift"
  6128. }
  6129. ],
  6130. "time": "2021-05-27T09:17:38+00:00"
  6131. },
  6132. {
  6133. "name": "symfony/polyfill-intl-idn",
  6134. "version": "v1.23.0",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6138. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6143. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6144. "shasum": "",
  6145. "mirrors": [
  6146. {
  6147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6148. "preferred": true
  6149. }
  6150. ]
  6151. },
  6152. "require": {
  6153. "php": ">=7.1",
  6154. "symfony/polyfill-intl-normalizer": "^1.10",
  6155. "symfony/polyfill-php72": "^1.10"
  6156. },
  6157. "suggest": {
  6158. "ext-intl": "For best performance"
  6159. },
  6160. "type": "library",
  6161. "extra": {
  6162. "branch-alias": {
  6163. "dev-main": "1.23-dev"
  6164. },
  6165. "thanks": {
  6166. "name": "symfony/polyfill",
  6167. "url": "https://github.com/symfony/polyfill"
  6168. }
  6169. },
  6170. "autoload": {
  6171. "psr-4": {
  6172. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6173. },
  6174. "files": [
  6175. "bootstrap.php"
  6176. ]
  6177. },
  6178. "notification-url": "https://packagist.org/downloads/",
  6179. "license": [
  6180. "MIT"
  6181. ],
  6182. "authors": [
  6183. {
  6184. "name": "Laurent Bassin",
  6185. "email": "laurent@bassin.info"
  6186. },
  6187. {
  6188. "name": "Trevor Rowbotham",
  6189. "email": "trevor.rowbotham@pm.me"
  6190. },
  6191. {
  6192. "name": "Symfony Community",
  6193. "homepage": "https://symfony.com/contributors"
  6194. }
  6195. ],
  6196. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6197. "homepage": "https://symfony.com",
  6198. "keywords": [
  6199. "compatibility",
  6200. "idn",
  6201. "intl",
  6202. "polyfill",
  6203. "portable",
  6204. "shim"
  6205. ],
  6206. "support": {
  6207. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6208. },
  6209. "funding": [
  6210. {
  6211. "url": "https://symfony.com/sponsor",
  6212. "type": "custom"
  6213. },
  6214. {
  6215. "url": "https://github.com/fabpot",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2021-05-27T09:27:20+00:00"
  6224. },
  6225. {
  6226. "name": "symfony/polyfill-intl-normalizer",
  6227. "version": "v1.23.0",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6231. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6236. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6237. "shasum": "",
  6238. "mirrors": [
  6239. {
  6240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6241. "preferred": true
  6242. }
  6243. ]
  6244. },
  6245. "require": {
  6246. "php": ">=7.1"
  6247. },
  6248. "suggest": {
  6249. "ext-intl": "For best performance"
  6250. },
  6251. "type": "library",
  6252. "extra": {
  6253. "branch-alias": {
  6254. "dev-main": "1.23-dev"
  6255. },
  6256. "thanks": {
  6257. "name": "symfony/polyfill",
  6258. "url": "https://github.com/symfony/polyfill"
  6259. }
  6260. },
  6261. "autoload": {
  6262. "psr-4": {
  6263. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6264. },
  6265. "files": [
  6266. "bootstrap.php"
  6267. ],
  6268. "classmap": [
  6269. "Resources/stubs"
  6270. ]
  6271. },
  6272. "notification-url": "https://packagist.org/downloads/",
  6273. "license": [
  6274. "MIT"
  6275. ],
  6276. "authors": [
  6277. {
  6278. "name": "Nicolas Grekas",
  6279. "email": "p@tchwork.com"
  6280. },
  6281. {
  6282. "name": "Symfony Community",
  6283. "homepage": "https://symfony.com/contributors"
  6284. }
  6285. ],
  6286. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6287. "homepage": "https://symfony.com",
  6288. "keywords": [
  6289. "compatibility",
  6290. "intl",
  6291. "normalizer",
  6292. "polyfill",
  6293. "portable",
  6294. "shim"
  6295. ],
  6296. "support": {
  6297. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6298. },
  6299. "funding": [
  6300. {
  6301. "url": "https://symfony.com/sponsor",
  6302. "type": "custom"
  6303. },
  6304. {
  6305. "url": "https://github.com/fabpot",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2021-02-19T12:13:01+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/polyfill-mbstring",
  6317. "version": "v1.23.0",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6321. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6326. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6327. "shasum": "",
  6328. "mirrors": [
  6329. {
  6330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6331. "preferred": true
  6332. }
  6333. ]
  6334. },
  6335. "require": {
  6336. "php": ">=7.1"
  6337. },
  6338. "suggest": {
  6339. "ext-mbstring": "For best performance"
  6340. },
  6341. "type": "library",
  6342. "extra": {
  6343. "branch-alias": {
  6344. "dev-main": "1.23-dev"
  6345. },
  6346. "thanks": {
  6347. "name": "symfony/polyfill",
  6348. "url": "https://github.com/symfony/polyfill"
  6349. }
  6350. },
  6351. "autoload": {
  6352. "psr-4": {
  6353. "Symfony\\Polyfill\\Mbstring\\": ""
  6354. },
  6355. "files": [
  6356. "bootstrap.php"
  6357. ]
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Nicolas Grekas",
  6366. "email": "p@tchwork.com"
  6367. },
  6368. {
  6369. "name": "Symfony Community",
  6370. "homepage": "https://symfony.com/contributors"
  6371. }
  6372. ],
  6373. "description": "Symfony polyfill for the Mbstring extension",
  6374. "homepage": "https://symfony.com",
  6375. "keywords": [
  6376. "compatibility",
  6377. "mbstring",
  6378. "polyfill",
  6379. "portable",
  6380. "shim"
  6381. ],
  6382. "support": {
  6383. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  6384. },
  6385. "funding": [
  6386. {
  6387. "url": "https://symfony.com/sponsor",
  6388. "type": "custom"
  6389. },
  6390. {
  6391. "url": "https://github.com/fabpot",
  6392. "type": "github"
  6393. },
  6394. {
  6395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6396. "type": "tidelift"
  6397. }
  6398. ],
  6399. "time": "2021-05-27T09:27:20+00:00"
  6400. },
  6401. {
  6402. "name": "symfony/polyfill-php72",
  6403. "version": "v1.23.0",
  6404. "source": {
  6405. "type": "git",
  6406. "url": "https://github.com/symfony/polyfill-php72.git",
  6407. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6408. },
  6409. "dist": {
  6410. "type": "zip",
  6411. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6412. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6413. "shasum": "",
  6414. "mirrors": [
  6415. {
  6416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6417. "preferred": true
  6418. }
  6419. ]
  6420. },
  6421. "require": {
  6422. "php": ">=7.1"
  6423. },
  6424. "type": "library",
  6425. "extra": {
  6426. "branch-alias": {
  6427. "dev-main": "1.23-dev"
  6428. },
  6429. "thanks": {
  6430. "name": "symfony/polyfill",
  6431. "url": "https://github.com/symfony/polyfill"
  6432. }
  6433. },
  6434. "autoload": {
  6435. "psr-4": {
  6436. "Symfony\\Polyfill\\Php72\\": ""
  6437. },
  6438. "files": [
  6439. "bootstrap.php"
  6440. ]
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "MIT"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "Nicolas Grekas",
  6449. "email": "p@tchwork.com"
  6450. },
  6451. {
  6452. "name": "Symfony Community",
  6453. "homepage": "https://symfony.com/contributors"
  6454. }
  6455. ],
  6456. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6457. "homepage": "https://symfony.com",
  6458. "keywords": [
  6459. "compatibility",
  6460. "polyfill",
  6461. "portable",
  6462. "shim"
  6463. ],
  6464. "support": {
  6465. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6466. },
  6467. "funding": [
  6468. {
  6469. "url": "https://symfony.com/sponsor",
  6470. "type": "custom"
  6471. },
  6472. {
  6473. "url": "https://github.com/fabpot",
  6474. "type": "github"
  6475. },
  6476. {
  6477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6478. "type": "tidelift"
  6479. }
  6480. ],
  6481. "time": "2021-05-27T09:17:38+00:00"
  6482. },
  6483. {
  6484. "name": "symfony/polyfill-php73",
  6485. "version": "v1.23.0",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://github.com/symfony/polyfill-php73.git",
  6489. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6494. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6495. "shasum": "",
  6496. "mirrors": [
  6497. {
  6498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6499. "preferred": true
  6500. }
  6501. ]
  6502. },
  6503. "require": {
  6504. "php": ">=7.1"
  6505. },
  6506. "type": "library",
  6507. "extra": {
  6508. "branch-alias": {
  6509. "dev-main": "1.23-dev"
  6510. },
  6511. "thanks": {
  6512. "name": "symfony/polyfill",
  6513. "url": "https://github.com/symfony/polyfill"
  6514. }
  6515. },
  6516. "autoload": {
  6517. "psr-4": {
  6518. "Symfony\\Polyfill\\Php73\\": ""
  6519. },
  6520. "files": [
  6521. "bootstrap.php"
  6522. ],
  6523. "classmap": [
  6524. "Resources/stubs"
  6525. ]
  6526. },
  6527. "notification-url": "https://packagist.org/downloads/",
  6528. "license": [
  6529. "MIT"
  6530. ],
  6531. "authors": [
  6532. {
  6533. "name": "Nicolas Grekas",
  6534. "email": "p@tchwork.com"
  6535. },
  6536. {
  6537. "name": "Symfony Community",
  6538. "homepage": "https://symfony.com/contributors"
  6539. }
  6540. ],
  6541. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6542. "homepage": "https://symfony.com",
  6543. "keywords": [
  6544. "compatibility",
  6545. "polyfill",
  6546. "portable",
  6547. "shim"
  6548. ],
  6549. "support": {
  6550. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6551. },
  6552. "funding": [
  6553. {
  6554. "url": "https://symfony.com/sponsor",
  6555. "type": "custom"
  6556. },
  6557. {
  6558. "url": "https://github.com/fabpot",
  6559. "type": "github"
  6560. },
  6561. {
  6562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6563. "type": "tidelift"
  6564. }
  6565. ],
  6566. "time": "2021-02-19T12:13:01+00:00"
  6567. },
  6568. {
  6569. "name": "symfony/polyfill-php80",
  6570. "version": "v1.23.0",
  6571. "source": {
  6572. "type": "git",
  6573. "url": "https://github.com/symfony/polyfill-php80.git",
  6574. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  6575. },
  6576. "dist": {
  6577. "type": "zip",
  6578. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6579. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6580. "shasum": "",
  6581. "mirrors": [
  6582. {
  6583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6584. "preferred": true
  6585. }
  6586. ]
  6587. },
  6588. "require": {
  6589. "php": ">=7.1"
  6590. },
  6591. "type": "library",
  6592. "extra": {
  6593. "branch-alias": {
  6594. "dev-main": "1.23-dev"
  6595. },
  6596. "thanks": {
  6597. "name": "symfony/polyfill",
  6598. "url": "https://github.com/symfony/polyfill"
  6599. }
  6600. },
  6601. "autoload": {
  6602. "psr-4": {
  6603. "Symfony\\Polyfill\\Php80\\": ""
  6604. },
  6605. "files": [
  6606. "bootstrap.php"
  6607. ],
  6608. "classmap": [
  6609. "Resources/stubs"
  6610. ]
  6611. },
  6612. "notification-url": "https://packagist.org/downloads/",
  6613. "license": [
  6614. "MIT"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "Ion Bazan",
  6619. "email": "ion.bazan@gmail.com"
  6620. },
  6621. {
  6622. "name": "Nicolas Grekas",
  6623. "email": "p@tchwork.com"
  6624. },
  6625. {
  6626. "name": "Symfony Community",
  6627. "homepage": "https://symfony.com/contributors"
  6628. }
  6629. ],
  6630. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6631. "homepage": "https://symfony.com",
  6632. "keywords": [
  6633. "compatibility",
  6634. "polyfill",
  6635. "portable",
  6636. "shim"
  6637. ],
  6638. "support": {
  6639. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  6640. },
  6641. "funding": [
  6642. {
  6643. "url": "https://symfony.com/sponsor",
  6644. "type": "custom"
  6645. },
  6646. {
  6647. "url": "https://github.com/fabpot",
  6648. "type": "github"
  6649. },
  6650. {
  6651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6652. "type": "tidelift"
  6653. }
  6654. ],
  6655. "time": "2021-02-19T12:13:01+00:00"
  6656. },
  6657. {
  6658. "name": "symfony/process",
  6659. "version": "v5.3.2",
  6660. "source": {
  6661. "type": "git",
  6662. "url": "https://github.com/symfony/process.git",
  6663. "reference": "714b47f9196de61a196d86c4bad5f09201b307df"
  6664. },
  6665. "dist": {
  6666. "type": "zip",
  6667. "url": "https://api.github.com/repos/symfony/process/zipball/714b47f9196de61a196d86c4bad5f09201b307df",
  6668. "reference": "714b47f9196de61a196d86c4bad5f09201b307df",
  6669. "shasum": "",
  6670. "mirrors": [
  6671. {
  6672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6673. "preferred": true
  6674. }
  6675. ]
  6676. },
  6677. "require": {
  6678. "php": ">=7.2.5",
  6679. "symfony/polyfill-php80": "^1.15"
  6680. },
  6681. "type": "library",
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Symfony\\Component\\Process\\": ""
  6685. },
  6686. "exclude-from-classmap": [
  6687. "/Tests/"
  6688. ]
  6689. },
  6690. "notification-url": "https://packagist.org/downloads/",
  6691. "license": [
  6692. "MIT"
  6693. ],
  6694. "authors": [
  6695. {
  6696. "name": "Fabien Potencier",
  6697. "email": "fabien@symfony.com"
  6698. },
  6699. {
  6700. "name": "Symfony Community",
  6701. "homepage": "https://symfony.com/contributors"
  6702. }
  6703. ],
  6704. "description": "Executes commands in sub-processes",
  6705. "homepage": "https://symfony.com",
  6706. "support": {
  6707. "source": "https://github.com/symfony/process/tree/v5.3.2"
  6708. },
  6709. "funding": [
  6710. {
  6711. "url": "https://symfony.com/sponsor",
  6712. "type": "custom"
  6713. },
  6714. {
  6715. "url": "https://github.com/fabpot",
  6716. "type": "github"
  6717. },
  6718. {
  6719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6720. "type": "tidelift"
  6721. }
  6722. ],
  6723. "time": "2021-06-12T10:15:01+00:00"
  6724. },
  6725. {
  6726. "name": "symfony/property-access",
  6727. "version": "v5.3.0",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://github.com/symfony/property-access.git",
  6731. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://api.github.com/repos/symfony/property-access/zipball/8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6736. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6737. "shasum": "",
  6738. "mirrors": [
  6739. {
  6740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6741. "preferred": true
  6742. }
  6743. ]
  6744. },
  6745. "require": {
  6746. "php": ">=7.2.5",
  6747. "symfony/deprecation-contracts": "^2.1",
  6748. "symfony/polyfill-php80": "^1.15",
  6749. "symfony/property-info": "^5.2"
  6750. },
  6751. "require-dev": {
  6752. "symfony/cache": "^4.4|^5.0"
  6753. },
  6754. "suggest": {
  6755. "psr/cache-implementation": "To cache access methods."
  6756. },
  6757. "type": "library",
  6758. "autoload": {
  6759. "psr-4": {
  6760. "Symfony\\Component\\PropertyAccess\\": ""
  6761. },
  6762. "exclude-from-classmap": [
  6763. "/Tests/"
  6764. ]
  6765. },
  6766. "notification-url": "https://packagist.org/downloads/",
  6767. "license": [
  6768. "MIT"
  6769. ],
  6770. "authors": [
  6771. {
  6772. "name": "Fabien Potencier",
  6773. "email": "fabien@symfony.com"
  6774. },
  6775. {
  6776. "name": "Symfony Community",
  6777. "homepage": "https://symfony.com/contributors"
  6778. }
  6779. ],
  6780. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6781. "homepage": "https://symfony.com",
  6782. "keywords": [
  6783. "access",
  6784. "array",
  6785. "extraction",
  6786. "index",
  6787. "injection",
  6788. "object",
  6789. "property",
  6790. "property path",
  6791. "reflection"
  6792. ],
  6793. "support": {
  6794. "source": "https://github.com/symfony/property-access/tree/v5.3.0"
  6795. },
  6796. "funding": [
  6797. {
  6798. "url": "https://symfony.com/sponsor",
  6799. "type": "custom"
  6800. },
  6801. {
  6802. "url": "https://github.com/fabpot",
  6803. "type": "github"
  6804. },
  6805. {
  6806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6807. "type": "tidelift"
  6808. }
  6809. ],
  6810. "time": "2021-05-26T17:43:10+00:00"
  6811. },
  6812. {
  6813. "name": "symfony/property-info",
  6814. "version": "v5.3.1",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://github.com/symfony/property-info.git",
  6818. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf"
  6819. },
  6820. "dist": {
  6821. "type": "zip",
  6822. "url": "https://api.github.com/repos/symfony/property-info/zipball/6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6823. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6824. "shasum": "",
  6825. "mirrors": [
  6826. {
  6827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6828. "preferred": true
  6829. }
  6830. ]
  6831. },
  6832. "require": {
  6833. "php": ">=7.2.5",
  6834. "symfony/deprecation-contracts": "^2.1",
  6835. "symfony/polyfill-php80": "^1.15",
  6836. "symfony/string": "^5.1"
  6837. },
  6838. "conflict": {
  6839. "phpdocumentor/reflection-docblock": "<3.2.2",
  6840. "phpdocumentor/type-resolver": "<1.4.0",
  6841. "symfony/dependency-injection": "<4.4"
  6842. },
  6843. "require-dev": {
  6844. "doctrine/annotations": "^1.10.4",
  6845. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6846. "symfony/cache": "^4.4|^5.0",
  6847. "symfony/dependency-injection": "^4.4|^5.0",
  6848. "symfony/serializer": "^4.4|^5.0"
  6849. },
  6850. "suggest": {
  6851. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6852. "psr/cache-implementation": "To cache results",
  6853. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6854. "symfony/serializer": "To use Serializer metadata"
  6855. },
  6856. "type": "library",
  6857. "autoload": {
  6858. "psr-4": {
  6859. "Symfony\\Component\\PropertyInfo\\": ""
  6860. },
  6861. "exclude-from-classmap": [
  6862. "/Tests/"
  6863. ]
  6864. },
  6865. "notification-url": "https://packagist.org/downloads/",
  6866. "license": [
  6867. "MIT"
  6868. ],
  6869. "authors": [
  6870. {
  6871. "name": "Kévin Dunglas",
  6872. "email": "dunglas@gmail.com"
  6873. },
  6874. {
  6875. "name": "Symfony Community",
  6876. "homepage": "https://symfony.com/contributors"
  6877. }
  6878. ],
  6879. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6880. "homepage": "https://symfony.com",
  6881. "keywords": [
  6882. "doctrine",
  6883. "phpdoc",
  6884. "property",
  6885. "symfony",
  6886. "type",
  6887. "validator"
  6888. ],
  6889. "support": {
  6890. "source": "https://github.com/symfony/property-info/tree/v5.3.1"
  6891. },
  6892. "funding": [
  6893. {
  6894. "url": "https://symfony.com/sponsor",
  6895. "type": "custom"
  6896. },
  6897. {
  6898. "url": "https://github.com/fabpot",
  6899. "type": "github"
  6900. },
  6901. {
  6902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6903. "type": "tidelift"
  6904. }
  6905. ],
  6906. "time": "2021-05-31T12:40:48+00:00"
  6907. },
  6908. {
  6909. "name": "symfony/routing",
  6910. "version": "v5.3.0",
  6911. "source": {
  6912. "type": "git",
  6913. "url": "https://github.com/symfony/routing.git",
  6914. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199"
  6915. },
  6916. "dist": {
  6917. "type": "zip",
  6918. "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199",
  6919. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199",
  6920. "shasum": "",
  6921. "mirrors": [
  6922. {
  6923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6924. "preferred": true
  6925. }
  6926. ]
  6927. },
  6928. "require": {
  6929. "php": ">=7.2.5",
  6930. "symfony/deprecation-contracts": "^2.1",
  6931. "symfony/polyfill-php80": "^1.15"
  6932. },
  6933. "conflict": {
  6934. "doctrine/annotations": "<1.12",
  6935. "symfony/config": "<5.3",
  6936. "symfony/dependency-injection": "<4.4",
  6937. "symfony/yaml": "<4.4"
  6938. },
  6939. "require-dev": {
  6940. "doctrine/annotations": "^1.12",
  6941. "psr/log": "~1.0",
  6942. "symfony/config": "^5.3",
  6943. "symfony/dependency-injection": "^4.4|^5.0",
  6944. "symfony/expression-language": "^4.4|^5.0",
  6945. "symfony/http-foundation": "^4.4|^5.0",
  6946. "symfony/yaml": "^4.4|^5.0"
  6947. },
  6948. "suggest": {
  6949. "symfony/config": "For using the all-in-one router or any loader",
  6950. "symfony/expression-language": "For using expression matching",
  6951. "symfony/http-foundation": "For using a Symfony Request object",
  6952. "symfony/yaml": "For using the YAML loader"
  6953. },
  6954. "type": "library",
  6955. "autoload": {
  6956. "psr-4": {
  6957. "Symfony\\Component\\Routing\\": ""
  6958. },
  6959. "exclude-from-classmap": [
  6960. "/Tests/"
  6961. ]
  6962. },
  6963. "notification-url": "https://packagist.org/downloads/",
  6964. "license": [
  6965. "MIT"
  6966. ],
  6967. "authors": [
  6968. {
  6969. "name": "Fabien Potencier",
  6970. "email": "fabien@symfony.com"
  6971. },
  6972. {
  6973. "name": "Symfony Community",
  6974. "homepage": "https://symfony.com/contributors"
  6975. }
  6976. ],
  6977. "description": "Maps an HTTP request to a set of configuration variables",
  6978. "homepage": "https://symfony.com",
  6979. "keywords": [
  6980. "router",
  6981. "routing",
  6982. "uri",
  6983. "url"
  6984. ],
  6985. "support": {
  6986. "source": "https://github.com/symfony/routing/tree/v5.3.0"
  6987. },
  6988. "funding": [
  6989. {
  6990. "url": "https://symfony.com/sponsor",
  6991. "type": "custom"
  6992. },
  6993. {
  6994. "url": "https://github.com/fabpot",
  6995. "type": "github"
  6996. },
  6997. {
  6998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6999. "type": "tidelift"
  7000. }
  7001. ],
  7002. "time": "2021-05-26T17:43:10+00:00"
  7003. },
  7004. {
  7005. "name": "symfony/service-contracts",
  7006. "version": "v2.4.0",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/symfony/service-contracts.git",
  7010. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7015. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7016. "shasum": "",
  7017. "mirrors": [
  7018. {
  7019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7020. "preferred": true
  7021. }
  7022. ]
  7023. },
  7024. "require": {
  7025. "php": ">=7.2.5",
  7026. "psr/container": "^1.1"
  7027. },
  7028. "suggest": {
  7029. "symfony/service-implementation": ""
  7030. },
  7031. "type": "library",
  7032. "extra": {
  7033. "branch-alias": {
  7034. "dev-main": "2.4-dev"
  7035. },
  7036. "thanks": {
  7037. "name": "symfony/contracts",
  7038. "url": "https://github.com/symfony/contracts"
  7039. }
  7040. },
  7041. "autoload": {
  7042. "psr-4": {
  7043. "Symfony\\Contracts\\Service\\": ""
  7044. }
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Nicolas Grekas",
  7053. "email": "p@tchwork.com"
  7054. },
  7055. {
  7056. "name": "Symfony Community",
  7057. "homepage": "https://symfony.com/contributors"
  7058. }
  7059. ],
  7060. "description": "Generic abstractions related to writing services",
  7061. "homepage": "https://symfony.com",
  7062. "keywords": [
  7063. "abstractions",
  7064. "contracts",
  7065. "decoupling",
  7066. "interfaces",
  7067. "interoperability",
  7068. "standards"
  7069. ],
  7070. "support": {
  7071. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7072. },
  7073. "funding": [
  7074. {
  7075. "url": "https://symfony.com/sponsor",
  7076. "type": "custom"
  7077. },
  7078. {
  7079. "url": "https://github.com/fabpot",
  7080. "type": "github"
  7081. },
  7082. {
  7083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7084. "type": "tidelift"
  7085. }
  7086. ],
  7087. "time": "2021-04-01T10:43:52+00:00"
  7088. },
  7089. {
  7090. "name": "symfony/string",
  7091. "version": "v5.3.3",
  7092. "source": {
  7093. "type": "git",
  7094. "url": "https://github.com/symfony/string.git",
  7095. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1"
  7096. },
  7097. "dist": {
  7098. "type": "zip",
  7099. "url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  7100. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  7101. "shasum": "",
  7102. "mirrors": [
  7103. {
  7104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7105. "preferred": true
  7106. }
  7107. ]
  7108. },
  7109. "require": {
  7110. "php": ">=7.2.5",
  7111. "symfony/polyfill-ctype": "~1.8",
  7112. "symfony/polyfill-intl-grapheme": "~1.0",
  7113. "symfony/polyfill-intl-normalizer": "~1.0",
  7114. "symfony/polyfill-mbstring": "~1.0",
  7115. "symfony/polyfill-php80": "~1.15"
  7116. },
  7117. "require-dev": {
  7118. "symfony/error-handler": "^4.4|^5.0",
  7119. "symfony/http-client": "^4.4|^5.0",
  7120. "symfony/translation-contracts": "^1.1|^2",
  7121. "symfony/var-exporter": "^4.4|^5.0"
  7122. },
  7123. "type": "library",
  7124. "autoload": {
  7125. "psr-4": {
  7126. "Symfony\\Component\\String\\": ""
  7127. },
  7128. "files": [
  7129. "Resources/functions.php"
  7130. ],
  7131. "exclude-from-classmap": [
  7132. "/Tests/"
  7133. ]
  7134. },
  7135. "notification-url": "https://packagist.org/downloads/",
  7136. "license": [
  7137. "MIT"
  7138. ],
  7139. "authors": [
  7140. {
  7141. "name": "Nicolas Grekas",
  7142. "email": "p@tchwork.com"
  7143. },
  7144. {
  7145. "name": "Symfony Community",
  7146. "homepage": "https://symfony.com/contributors"
  7147. }
  7148. ],
  7149. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7150. "homepage": "https://symfony.com",
  7151. "keywords": [
  7152. "grapheme",
  7153. "i18n",
  7154. "string",
  7155. "unicode",
  7156. "utf-8",
  7157. "utf8"
  7158. ],
  7159. "support": {
  7160. "source": "https://github.com/symfony/string/tree/v5.3.3"
  7161. },
  7162. "funding": [
  7163. {
  7164. "url": "https://symfony.com/sponsor",
  7165. "type": "custom"
  7166. },
  7167. {
  7168. "url": "https://github.com/fabpot",
  7169. "type": "github"
  7170. },
  7171. {
  7172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7173. "type": "tidelift"
  7174. }
  7175. ],
  7176. "time": "2021-06-27T11:44:38+00:00"
  7177. },
  7178. {
  7179. "name": "symfony/translation",
  7180. "version": "v5.3.3",
  7181. "source": {
  7182. "type": "git",
  7183. "url": "https://github.com/symfony/translation.git",
  7184. "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c"
  7185. },
  7186. "dist": {
  7187. "type": "zip",
  7188. "url": "https://api.github.com/repos/symfony/translation/zipball/380b8c9e944d0e364b25f28e8e555241eb49c01c",
  7189. "reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c",
  7190. "shasum": "",
  7191. "mirrors": [
  7192. {
  7193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7194. "preferred": true
  7195. }
  7196. ]
  7197. },
  7198. "require": {
  7199. "php": ">=7.2.5",
  7200. "symfony/deprecation-contracts": "^2.1",
  7201. "symfony/polyfill-mbstring": "~1.0",
  7202. "symfony/polyfill-php80": "^1.15",
  7203. "symfony/translation-contracts": "^2.3"
  7204. },
  7205. "conflict": {
  7206. "symfony/config": "<4.4",
  7207. "symfony/dependency-injection": "<5.0",
  7208. "symfony/http-kernel": "<5.0",
  7209. "symfony/twig-bundle": "<5.0",
  7210. "symfony/yaml": "<4.4"
  7211. },
  7212. "provide": {
  7213. "symfony/translation-implementation": "2.3"
  7214. },
  7215. "require-dev": {
  7216. "psr/log": "~1.0",
  7217. "symfony/config": "^4.4|^5.0",
  7218. "symfony/console": "^4.4|^5.0",
  7219. "symfony/dependency-injection": "^5.0",
  7220. "symfony/finder": "^4.4|^5.0",
  7221. "symfony/http-kernel": "^5.0",
  7222. "symfony/intl": "^4.4|^5.0",
  7223. "symfony/polyfill-intl-icu": "^1.21",
  7224. "symfony/service-contracts": "^1.1.2|^2",
  7225. "symfony/yaml": "^4.4|^5.0"
  7226. },
  7227. "suggest": {
  7228. "psr/log-implementation": "To use logging capability in translator",
  7229. "symfony/config": "",
  7230. "symfony/yaml": ""
  7231. },
  7232. "type": "library",
  7233. "autoload": {
  7234. "files": [
  7235. "Resources/functions.php"
  7236. ],
  7237. "psr-4": {
  7238. "Symfony\\Component\\Translation\\": ""
  7239. },
  7240. "exclude-from-classmap": [
  7241. "/Tests/"
  7242. ]
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "license": [
  7246. "MIT"
  7247. ],
  7248. "authors": [
  7249. {
  7250. "name": "Fabien Potencier",
  7251. "email": "fabien@symfony.com"
  7252. },
  7253. {
  7254. "name": "Symfony Community",
  7255. "homepage": "https://symfony.com/contributors"
  7256. }
  7257. ],
  7258. "description": "Provides tools to internationalize your application",
  7259. "homepage": "https://symfony.com",
  7260. "support": {
  7261. "source": "https://github.com/symfony/translation/tree/v5.3.3"
  7262. },
  7263. "funding": [
  7264. {
  7265. "url": "https://symfony.com/sponsor",
  7266. "type": "custom"
  7267. },
  7268. {
  7269. "url": "https://github.com/fabpot",
  7270. "type": "github"
  7271. },
  7272. {
  7273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7274. "type": "tidelift"
  7275. }
  7276. ],
  7277. "time": "2021-06-27T12:22:47+00:00"
  7278. },
  7279. {
  7280. "name": "symfony/translation-contracts",
  7281. "version": "v2.4.0",
  7282. "source": {
  7283. "type": "git",
  7284. "url": "https://github.com/symfony/translation-contracts.git",
  7285. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7286. },
  7287. "dist": {
  7288. "type": "zip",
  7289. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7290. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7291. "shasum": "",
  7292. "mirrors": [
  7293. {
  7294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7295. "preferred": true
  7296. }
  7297. ]
  7298. },
  7299. "require": {
  7300. "php": ">=7.2.5"
  7301. },
  7302. "suggest": {
  7303. "symfony/translation-implementation": ""
  7304. },
  7305. "type": "library",
  7306. "extra": {
  7307. "branch-alias": {
  7308. "dev-main": "2.4-dev"
  7309. },
  7310. "thanks": {
  7311. "name": "symfony/contracts",
  7312. "url": "https://github.com/symfony/contracts"
  7313. }
  7314. },
  7315. "autoload": {
  7316. "psr-4": {
  7317. "Symfony\\Contracts\\Translation\\": ""
  7318. }
  7319. },
  7320. "notification-url": "https://packagist.org/downloads/",
  7321. "license": [
  7322. "MIT"
  7323. ],
  7324. "authors": [
  7325. {
  7326. "name": "Nicolas Grekas",
  7327. "email": "p@tchwork.com"
  7328. },
  7329. {
  7330. "name": "Symfony Community",
  7331. "homepage": "https://symfony.com/contributors"
  7332. }
  7333. ],
  7334. "description": "Generic abstractions related to translation",
  7335. "homepage": "https://symfony.com",
  7336. "keywords": [
  7337. "abstractions",
  7338. "contracts",
  7339. "decoupling",
  7340. "interfaces",
  7341. "interoperability",
  7342. "standards"
  7343. ],
  7344. "support": {
  7345. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7346. },
  7347. "funding": [
  7348. {
  7349. "url": "https://symfony.com/sponsor",
  7350. "type": "custom"
  7351. },
  7352. {
  7353. "url": "https://github.com/fabpot",
  7354. "type": "github"
  7355. },
  7356. {
  7357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7358. "type": "tidelift"
  7359. }
  7360. ],
  7361. "time": "2021-03-23T23:28:01+00:00"
  7362. },
  7363. {
  7364. "name": "symfony/var-dumper",
  7365. "version": "v5.3.3",
  7366. "source": {
  7367. "type": "git",
  7368. "url": "https://github.com/symfony/var-dumper.git",
  7369. "reference": "46aa709affb9ad3355bd7a810f9662d71025c384"
  7370. },
  7371. "dist": {
  7372. "type": "zip",
  7373. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/46aa709affb9ad3355bd7a810f9662d71025c384",
  7374. "reference": "46aa709affb9ad3355bd7a810f9662d71025c384",
  7375. "shasum": "",
  7376. "mirrors": [
  7377. {
  7378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7379. "preferred": true
  7380. }
  7381. ]
  7382. },
  7383. "require": {
  7384. "php": ">=7.2.5",
  7385. "symfony/polyfill-mbstring": "~1.0",
  7386. "symfony/polyfill-php80": "^1.15"
  7387. },
  7388. "conflict": {
  7389. "phpunit/phpunit": "<5.4.3",
  7390. "symfony/console": "<4.4"
  7391. },
  7392. "require-dev": {
  7393. "ext-iconv": "*",
  7394. "symfony/console": "^4.4|^5.0",
  7395. "symfony/process": "^4.4|^5.0",
  7396. "twig/twig": "^2.13|^3.0.4"
  7397. },
  7398. "suggest": {
  7399. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7400. "ext-intl": "To show region name in time zone dump",
  7401. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7402. },
  7403. "bin": [
  7404. "Resources/bin/var-dump-server"
  7405. ],
  7406. "type": "library",
  7407. "autoload": {
  7408. "files": [
  7409. "Resources/functions/dump.php"
  7410. ],
  7411. "psr-4": {
  7412. "Symfony\\Component\\VarDumper\\": ""
  7413. },
  7414. "exclude-from-classmap": [
  7415. "/Tests/"
  7416. ]
  7417. },
  7418. "notification-url": "https://packagist.org/downloads/",
  7419. "license": [
  7420. "MIT"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Nicolas Grekas",
  7425. "email": "p@tchwork.com"
  7426. },
  7427. {
  7428. "name": "Symfony Community",
  7429. "homepage": "https://symfony.com/contributors"
  7430. }
  7431. ],
  7432. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7433. "homepage": "https://symfony.com",
  7434. "keywords": [
  7435. "debug",
  7436. "dump"
  7437. ],
  7438. "support": {
  7439. "source": "https://github.com/symfony/var-dumper/tree/v5.3.3"
  7440. },
  7441. "funding": [
  7442. {
  7443. "url": "https://symfony.com/sponsor",
  7444. "type": "custom"
  7445. },
  7446. {
  7447. "url": "https://github.com/fabpot",
  7448. "type": "github"
  7449. },
  7450. {
  7451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7452. "type": "tidelift"
  7453. }
  7454. ],
  7455. "time": "2021-06-24T08:13:00+00:00"
  7456. },
  7457. {
  7458. "name": "te7a-houdini/laravel-trix",
  7459. "version": "2.0.4",
  7460. "source": {
  7461. "type": "git",
  7462. "url": "https://github.com/amaelftah/laravel-trix.git",
  7463. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7464. },
  7465. "dist": {
  7466. "type": "zip",
  7467. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7468. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7469. "shasum": "",
  7470. "mirrors": [
  7471. {
  7472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7473. "preferred": true
  7474. }
  7475. ]
  7476. },
  7477. "require": {
  7478. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7479. "php": "^7.1"
  7480. },
  7481. "require-dev": {
  7482. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7483. },
  7484. "type": "library",
  7485. "extra": {
  7486. "laravel": {
  7487. "providers": [
  7488. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7489. ]
  7490. }
  7491. },
  7492. "autoload": {
  7493. "psr-4": {
  7494. "Te7aHoudini\\LaravelTrix\\": "src"
  7495. }
  7496. },
  7497. "notification-url": "https://packagist.org/downloads/",
  7498. "license": [
  7499. "MIT"
  7500. ],
  7501. "authors": [
  7502. {
  7503. "name": "Ahmed Abd El Ftah",
  7504. "email": "ahmedabdelftah95165@gmail.com",
  7505. "role": "Developer"
  7506. }
  7507. ],
  7508. "description": "trix editor for laravel inspired by ActionText for rails",
  7509. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7510. "keywords": [
  7511. "laravel-trix",
  7512. "te7a-houdini"
  7513. ],
  7514. "support": {
  7515. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7516. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7517. },
  7518. "time": "2020-11-12T10:48:06+00:00"
  7519. },
  7520. {
  7521. "name": "tightenco/collect",
  7522. "version": "v5.6.33",
  7523. "source": {
  7524. "type": "git",
  7525. "url": "https://github.com/tighten/collect.git",
  7526. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7527. },
  7528. "dist": {
  7529. "type": "zip",
  7530. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7531. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7532. "shasum": "",
  7533. "mirrors": [
  7534. {
  7535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7536. "preferred": true
  7537. }
  7538. ]
  7539. },
  7540. "require": {
  7541. "php": ">=7.1.3",
  7542. "symfony/var-dumper": ">=3.1.10"
  7543. },
  7544. "require-dev": {
  7545. "mockery/mockery": "~1.0",
  7546. "nesbot/carbon": "~1.20",
  7547. "phpunit/phpunit": "~7.0"
  7548. },
  7549. "type": "library",
  7550. "autoload": {
  7551. "files": [
  7552. "src/Collect/Support/helpers.php",
  7553. "src/Collect/Support/alias.php"
  7554. ],
  7555. "psr-4": {
  7556. "Tightenco\\Collect\\": "src/Collect"
  7557. }
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "Taylor Otwell",
  7566. "email": "taylorotwell@gmail.com"
  7567. }
  7568. ],
  7569. "description": "Collect - Illuminate Collections as a separate package.",
  7570. "keywords": [
  7571. "collection",
  7572. "laravel"
  7573. ],
  7574. "support": {
  7575. "issues": "https://github.com/tighten/collect/issues",
  7576. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7577. },
  7578. "time": "2018-08-09T16:56:26+00:00"
  7579. },
  7580. {
  7581. "name": "tijsverkoyen/css-to-inline-styles",
  7582. "version": "2.2.3",
  7583. "source": {
  7584. "type": "git",
  7585. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7586. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7587. },
  7588. "dist": {
  7589. "type": "zip",
  7590. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7591. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7592. "shasum": "",
  7593. "mirrors": [
  7594. {
  7595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7596. "preferred": true
  7597. }
  7598. ]
  7599. },
  7600. "require": {
  7601. "ext-dom": "*",
  7602. "ext-libxml": "*",
  7603. "php": "^5.5 || ^7.0 || ^8.0",
  7604. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7605. },
  7606. "require-dev": {
  7607. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7608. },
  7609. "type": "library",
  7610. "extra": {
  7611. "branch-alias": {
  7612. "dev-master": "2.2.x-dev"
  7613. }
  7614. },
  7615. "autoload": {
  7616. "psr-4": {
  7617. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7618. }
  7619. },
  7620. "notification-url": "https://packagist.org/downloads/",
  7621. "license": [
  7622. "BSD-3-Clause"
  7623. ],
  7624. "authors": [
  7625. {
  7626. "name": "Tijs Verkoyen",
  7627. "email": "css_to_inline_styles@verkoyen.eu",
  7628. "role": "Developer"
  7629. }
  7630. ],
  7631. "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.",
  7632. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7633. "support": {
  7634. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7635. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7636. },
  7637. "time": "2020-07-13T06:12:54+00:00"
  7638. },
  7639. {
  7640. "name": "vlucas/phpdotenv",
  7641. "version": "v4.2.0",
  7642. "source": {
  7643. "type": "git",
  7644. "url": "https://github.com/vlucas/phpdotenv.git",
  7645. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7646. },
  7647. "dist": {
  7648. "type": "zip",
  7649. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7650. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7651. "shasum": "",
  7652. "mirrors": [
  7653. {
  7654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7655. "preferred": true
  7656. }
  7657. ]
  7658. },
  7659. "require": {
  7660. "php": "^5.5.9 || ^7.0 || ^8.0",
  7661. "phpoption/phpoption": "^1.7.3",
  7662. "symfony/polyfill-ctype": "^1.17"
  7663. },
  7664. "require-dev": {
  7665. "bamarni/composer-bin-plugin": "^1.4.1",
  7666. "ext-filter": "*",
  7667. "ext-pcre": "*",
  7668. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7669. },
  7670. "suggest": {
  7671. "ext-filter": "Required to use the boolean validator.",
  7672. "ext-pcre": "Required to use most of the library."
  7673. },
  7674. "type": "library",
  7675. "extra": {
  7676. "branch-alias": {
  7677. "dev-master": "4.1-dev"
  7678. }
  7679. },
  7680. "autoload": {
  7681. "psr-4": {
  7682. "Dotenv\\": "src/"
  7683. }
  7684. },
  7685. "notification-url": "https://packagist.org/downloads/",
  7686. "license": [
  7687. "BSD-3-Clause"
  7688. ],
  7689. "authors": [
  7690. {
  7691. "name": "Graham Campbell",
  7692. "email": "graham@alt-three.com",
  7693. "homepage": "https://gjcampbell.co.uk/"
  7694. },
  7695. {
  7696. "name": "Vance Lucas",
  7697. "email": "vance@vancelucas.com",
  7698. "homepage": "https://vancelucas.com/"
  7699. }
  7700. ],
  7701. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7702. "keywords": [
  7703. "dotenv",
  7704. "env",
  7705. "environment"
  7706. ],
  7707. "support": {
  7708. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7709. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7710. },
  7711. "funding": [
  7712. {
  7713. "url": "https://github.com/GrahamCampbell",
  7714. "type": "github"
  7715. },
  7716. {
  7717. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7718. "type": "tidelift"
  7719. }
  7720. ],
  7721. "time": "2021-01-20T15:11:48+00:00"
  7722. },
  7723. {
  7724. "name": "voku/portable-ascii",
  7725. "version": "1.5.6",
  7726. "source": {
  7727. "type": "git",
  7728. "url": "https://github.com/voku/portable-ascii.git",
  7729. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7730. },
  7731. "dist": {
  7732. "type": "zip",
  7733. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7734. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7735. "shasum": "",
  7736. "mirrors": [
  7737. {
  7738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7739. "preferred": true
  7740. }
  7741. ]
  7742. },
  7743. "require": {
  7744. "php": ">=7.0.0"
  7745. },
  7746. "require-dev": {
  7747. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7748. },
  7749. "suggest": {
  7750. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7751. },
  7752. "type": "library",
  7753. "autoload": {
  7754. "psr-4": {
  7755. "voku\\": "src/voku/"
  7756. }
  7757. },
  7758. "notification-url": "https://packagist.org/downloads/",
  7759. "license": [
  7760. "MIT"
  7761. ],
  7762. "authors": [
  7763. {
  7764. "name": "Lars Moelleken",
  7765. "homepage": "http://www.moelleken.org/"
  7766. }
  7767. ],
  7768. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7769. "homepage": "https://github.com/voku/portable-ascii",
  7770. "keywords": [
  7771. "ascii",
  7772. "clean",
  7773. "php"
  7774. ],
  7775. "support": {
  7776. "issues": "https://github.com/voku/portable-ascii/issues",
  7777. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7778. },
  7779. "funding": [
  7780. {
  7781. "url": "https://www.paypal.me/moelleken",
  7782. "type": "custom"
  7783. },
  7784. {
  7785. "url": "https://github.com/voku",
  7786. "type": "github"
  7787. },
  7788. {
  7789. "url": "https://opencollective.com/portable-ascii",
  7790. "type": "open_collective"
  7791. },
  7792. {
  7793. "url": "https://www.patreon.com/voku",
  7794. "type": "patreon"
  7795. },
  7796. {
  7797. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7798. "type": "tidelift"
  7799. }
  7800. ],
  7801. "time": "2020-11-12T00:07:28+00:00"
  7802. },
  7803. {
  7804. "name": "yajra/laravel-oci8",
  7805. "version": "v7.0.0",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/yajra/laravel-oci8.git",
  7809. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7814. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7815. "shasum": "",
  7816. "mirrors": [
  7817. {
  7818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7819. "preferred": true
  7820. }
  7821. ]
  7822. },
  7823. "require": {
  7824. "ext-oci8": ">=2.0.0",
  7825. "ext-pdo": "*",
  7826. "illuminate/database": "^7",
  7827. "illuminate/support": "^7",
  7828. "php": "^7.2.5",
  7829. "yajra/laravel-pdo-via-oci8": "^2"
  7830. },
  7831. "require-dev": {
  7832. "mockery/mockery": "^1.3.1",
  7833. "phpunit/phpunit": "^8.4|^9.0",
  7834. "scrutinizer/ocular": "~1.1"
  7835. },
  7836. "type": "library",
  7837. "extra": {
  7838. "branch-alias": {
  7839. "dev-master": "7.x-dev"
  7840. },
  7841. "laravel": {
  7842. "providers": [
  7843. "Yajra\\Oci8\\Oci8ServiceProvider"
  7844. ]
  7845. }
  7846. },
  7847. "autoload": {
  7848. "files": [
  7849. "src/helper.php"
  7850. ],
  7851. "psr-4": {
  7852. "Yajra\\": "src/"
  7853. }
  7854. },
  7855. "notification-url": "https://packagist.org/downloads/",
  7856. "license": [
  7857. "MIT"
  7858. ],
  7859. "authors": [
  7860. {
  7861. "name": "Arjay Angeles",
  7862. "email": "aqangeles@gmail.com"
  7863. }
  7864. ],
  7865. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7866. "keywords": [
  7867. "laravel",
  7868. "oci8",
  7869. "oracle",
  7870. "pdo_oci"
  7871. ],
  7872. "support": {
  7873. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7874. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7875. },
  7876. "funding": [
  7877. {
  7878. "url": "https://www.paypal.me/yajra",
  7879. "type": "custom"
  7880. },
  7881. {
  7882. "url": "https://www.patreon.com/yajra",
  7883. "type": "patreon"
  7884. }
  7885. ],
  7886. "time": "2020-03-04T02:15:19+00:00"
  7887. },
  7888. {
  7889. "name": "yajra/laravel-pdo-via-oci8",
  7890. "version": "v2.2.0",
  7891. "source": {
  7892. "type": "git",
  7893. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7894. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7895. },
  7896. "dist": {
  7897. "type": "zip",
  7898. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7899. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7900. "shasum": "",
  7901. "mirrors": [
  7902. {
  7903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7904. "preferred": true
  7905. }
  7906. ]
  7907. },
  7908. "require-dev": {
  7909. "phpunit/phpunit": "^6.4"
  7910. },
  7911. "type": "library",
  7912. "extra": {
  7913. "branch-alias": {
  7914. "dev-master": "2.0-dev"
  7915. }
  7916. },
  7917. "autoload": {
  7918. "psr-4": {
  7919. "Yajra\\": "src/"
  7920. }
  7921. },
  7922. "notification-url": "https://packagist.org/downloads/",
  7923. "license": [
  7924. "MIT"
  7925. ],
  7926. "authors": [
  7927. {
  7928. "name": "Arjay Angeles",
  7929. "email": "aqangeles@gmail.com"
  7930. }
  7931. ],
  7932. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7933. "support": {
  7934. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7935. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7936. },
  7937. "time": "2020-12-11T12:29:18+00:00"
  7938. }
  7939. ],
  7940. "packages-dev": [
  7941. {
  7942. "name": "barryvdh/laravel-debugbar",
  7943. "version": "v3.6.2",
  7944. "source": {
  7945. "type": "git",
  7946. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7947. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a"
  7948. },
  7949. "dist": {
  7950. "type": "zip",
  7951. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7952. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7953. "shasum": "",
  7954. "mirrors": [
  7955. {
  7956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7957. "preferred": true
  7958. }
  7959. ]
  7960. },
  7961. "require": {
  7962. "illuminate/routing": "^6|^7|^8",
  7963. "illuminate/session": "^6|^7|^8",
  7964. "illuminate/support": "^6|^7|^8",
  7965. "maximebf/debugbar": "^1.16.3",
  7966. "php": ">=7.2",
  7967. "symfony/debug": "^4.3|^5",
  7968. "symfony/finder": "^4.3|^5"
  7969. },
  7970. "require-dev": {
  7971. "mockery/mockery": "^1.3.3",
  7972. "orchestra/testbench-dusk": "^4|^5|^6",
  7973. "phpunit/phpunit": "^8.5|^9.0",
  7974. "squizlabs/php_codesniffer": "^3.5"
  7975. },
  7976. "type": "library",
  7977. "extra": {
  7978. "branch-alias": {
  7979. "dev-master": "3.5-dev"
  7980. },
  7981. "laravel": {
  7982. "providers": [
  7983. "Barryvdh\\Debugbar\\ServiceProvider"
  7984. ],
  7985. "aliases": {
  7986. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7987. }
  7988. }
  7989. },
  7990. "autoload": {
  7991. "psr-4": {
  7992. "Barryvdh\\Debugbar\\": "src/"
  7993. },
  7994. "files": [
  7995. "src/helpers.php"
  7996. ]
  7997. },
  7998. "notification-url": "https://packagist.org/downloads/",
  7999. "license": [
  8000. "MIT"
  8001. ],
  8002. "authors": [
  8003. {
  8004. "name": "Barry vd. Heuvel",
  8005. "email": "barryvdh@gmail.com"
  8006. }
  8007. ],
  8008. "description": "PHP Debugbar integration for Laravel",
  8009. "keywords": [
  8010. "debug",
  8011. "debugbar",
  8012. "laravel",
  8013. "profiler",
  8014. "webprofiler"
  8015. ],
  8016. "support": {
  8017. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8018. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.2"
  8019. },
  8020. "funding": [
  8021. {
  8022. "url": "https://fruitcake.nl",
  8023. "type": "custom"
  8024. },
  8025. {
  8026. "url": "https://github.com/barryvdh",
  8027. "type": "github"
  8028. }
  8029. ],
  8030. "time": "2021-06-14T14:29:26+00:00"
  8031. },
  8032. {
  8033. "name": "beyondcode/laravel-dump-server",
  8034. "version": "1.7.0",
  8035. "source": {
  8036. "type": "git",
  8037. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  8038. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  8039. },
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  8043. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  8044. "shasum": "",
  8045. "mirrors": [
  8046. {
  8047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8048. "preferred": true
  8049. }
  8050. ]
  8051. },
  8052. "require": {
  8053. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8054. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8055. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  8056. "php": ">=7.2.5",
  8057. "symfony/var-dumper": "^5.0"
  8058. },
  8059. "require-dev": {
  8060. "larapack/dd": "^1.0",
  8061. "phpunit/phpunit": "^7.0|^9.3"
  8062. },
  8063. "type": "library",
  8064. "extra": {
  8065. "laravel": {
  8066. "providers": [
  8067. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  8068. ]
  8069. }
  8070. },
  8071. "autoload": {
  8072. "psr-4": {
  8073. "BeyondCode\\DumpServer\\": "src"
  8074. },
  8075. "files": [
  8076. "helpers.php"
  8077. ]
  8078. },
  8079. "notification-url": "https://packagist.org/downloads/",
  8080. "license": [
  8081. "MIT"
  8082. ],
  8083. "authors": [
  8084. {
  8085. "name": "Marcel Pociot",
  8086. "email": "marcel@beyondco.de",
  8087. "homepage": "https://beyondco.de",
  8088. "role": "Developer"
  8089. }
  8090. ],
  8091. "description": "Symfony Var-Dump Server for Laravel",
  8092. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  8093. "keywords": [
  8094. "beyondcode",
  8095. "laravel-dump-server"
  8096. ],
  8097. "support": {
  8098. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  8099. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  8100. },
  8101. "time": "2020-12-15T10:57:43+00:00"
  8102. },
  8103. {
  8104. "name": "doctrine/instantiator",
  8105. "version": "1.4.0",
  8106. "source": {
  8107. "type": "git",
  8108. "url": "https://github.com/doctrine/instantiator.git",
  8109. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8110. },
  8111. "dist": {
  8112. "type": "zip",
  8113. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8114. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8115. "shasum": "",
  8116. "mirrors": [
  8117. {
  8118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8119. "preferred": true
  8120. }
  8121. ]
  8122. },
  8123. "require": {
  8124. "php": "^7.1 || ^8.0"
  8125. },
  8126. "require-dev": {
  8127. "doctrine/coding-standard": "^8.0",
  8128. "ext-pdo": "*",
  8129. "ext-phar": "*",
  8130. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8131. "phpstan/phpstan": "^0.12",
  8132. "phpstan/phpstan-phpunit": "^0.12",
  8133. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8134. },
  8135. "type": "library",
  8136. "autoload": {
  8137. "psr-4": {
  8138. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8139. }
  8140. },
  8141. "notification-url": "https://packagist.org/downloads/",
  8142. "license": [
  8143. "MIT"
  8144. ],
  8145. "authors": [
  8146. {
  8147. "name": "Marco Pivetta",
  8148. "email": "ocramius@gmail.com",
  8149. "homepage": "https://ocramius.github.io/"
  8150. }
  8151. ],
  8152. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8153. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8154. "keywords": [
  8155. "constructor",
  8156. "instantiate"
  8157. ],
  8158. "support": {
  8159. "issues": "https://github.com/doctrine/instantiator/issues",
  8160. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8161. },
  8162. "funding": [
  8163. {
  8164. "url": "https://www.doctrine-project.org/sponsorship.html",
  8165. "type": "custom"
  8166. },
  8167. {
  8168. "url": "https://www.patreon.com/phpdoctrine",
  8169. "type": "patreon"
  8170. },
  8171. {
  8172. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8173. "type": "tidelift"
  8174. }
  8175. ],
  8176. "time": "2020-11-10T18:47:58+00:00"
  8177. },
  8178. {
  8179. "name": "fzaninotto/faker",
  8180. "version": "v1.9.2",
  8181. "source": {
  8182. "type": "git",
  8183. "url": "https://github.com/fzaninotto/Faker.git",
  8184. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8185. },
  8186. "dist": {
  8187. "type": "zip",
  8188. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8189. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8190. "shasum": "",
  8191. "mirrors": [
  8192. {
  8193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8194. "preferred": true
  8195. }
  8196. ]
  8197. },
  8198. "require": {
  8199. "php": "^5.3.3 || ^7.0"
  8200. },
  8201. "require-dev": {
  8202. "ext-intl": "*",
  8203. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8204. "squizlabs/php_codesniffer": "^2.9.2"
  8205. },
  8206. "type": "library",
  8207. "extra": {
  8208. "branch-alias": {
  8209. "dev-master": "1.9-dev"
  8210. }
  8211. },
  8212. "autoload": {
  8213. "psr-4": {
  8214. "Faker\\": "src/Faker/"
  8215. }
  8216. },
  8217. "notification-url": "https://packagist.org/downloads/",
  8218. "license": [
  8219. "MIT"
  8220. ],
  8221. "authors": [
  8222. {
  8223. "name": "François Zaninotto"
  8224. }
  8225. ],
  8226. "description": "Faker is a PHP library that generates fake data for you.",
  8227. "keywords": [
  8228. "data",
  8229. "faker",
  8230. "fixtures"
  8231. ],
  8232. "support": {
  8233. "issues": "https://github.com/fzaninotto/Faker/issues",
  8234. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8235. },
  8236. "abandoned": true,
  8237. "time": "2020-12-11T09:56:16+00:00"
  8238. },
  8239. {
  8240. "name": "hamcrest/hamcrest-php",
  8241. "version": "v2.0.1",
  8242. "source": {
  8243. "type": "git",
  8244. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8245. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8246. },
  8247. "dist": {
  8248. "type": "zip",
  8249. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8250. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8251. "shasum": "",
  8252. "mirrors": [
  8253. {
  8254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8255. "preferred": true
  8256. }
  8257. ]
  8258. },
  8259. "require": {
  8260. "php": "^5.3|^7.0|^8.0"
  8261. },
  8262. "replace": {
  8263. "cordoval/hamcrest-php": "*",
  8264. "davedevelopment/hamcrest-php": "*",
  8265. "kodova/hamcrest-php": "*"
  8266. },
  8267. "require-dev": {
  8268. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8269. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8270. },
  8271. "type": "library",
  8272. "extra": {
  8273. "branch-alias": {
  8274. "dev-master": "2.1-dev"
  8275. }
  8276. },
  8277. "autoload": {
  8278. "classmap": [
  8279. "hamcrest"
  8280. ]
  8281. },
  8282. "notification-url": "https://packagist.org/downloads/",
  8283. "license": [
  8284. "BSD-3-Clause"
  8285. ],
  8286. "description": "This is the PHP port of Hamcrest Matchers",
  8287. "keywords": [
  8288. "test"
  8289. ],
  8290. "support": {
  8291. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8292. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8293. },
  8294. "time": "2020-07-09T08:09:16+00:00"
  8295. },
  8296. {
  8297. "name": "maximebf/debugbar",
  8298. "version": "v1.16.5",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/maximebf/php-debugbar.git",
  8302. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8307. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8308. "shasum": "",
  8309. "mirrors": [
  8310. {
  8311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8312. "preferred": true
  8313. }
  8314. ]
  8315. },
  8316. "require": {
  8317. "php": "^7.1|^8",
  8318. "psr/log": "^1.0",
  8319. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8320. },
  8321. "require-dev": {
  8322. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8323. },
  8324. "suggest": {
  8325. "kriswallsmith/assetic": "The best way to manage assets",
  8326. "monolog/monolog": "Log using Monolog",
  8327. "predis/predis": "Redis storage"
  8328. },
  8329. "type": "library",
  8330. "extra": {
  8331. "branch-alias": {
  8332. "dev-master": "1.16-dev"
  8333. }
  8334. },
  8335. "autoload": {
  8336. "psr-4": {
  8337. "DebugBar\\": "src/DebugBar/"
  8338. }
  8339. },
  8340. "notification-url": "https://packagist.org/downloads/",
  8341. "license": [
  8342. "MIT"
  8343. ],
  8344. "authors": [
  8345. {
  8346. "name": "Maxime Bouroumeau-Fuseau",
  8347. "email": "maxime.bouroumeau@gmail.com",
  8348. "homepage": "http://maximebf.com"
  8349. },
  8350. {
  8351. "name": "Barry vd. Heuvel",
  8352. "email": "barryvdh@gmail.com"
  8353. }
  8354. ],
  8355. "description": "Debug bar in the browser for php application",
  8356. "homepage": "https://github.com/maximebf/php-debugbar",
  8357. "keywords": [
  8358. "debug",
  8359. "debugbar"
  8360. ],
  8361. "support": {
  8362. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8363. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8364. },
  8365. "time": "2020-12-07T11:07:24+00:00"
  8366. },
  8367. {
  8368. "name": "mockery/mockery",
  8369. "version": "1.4.3",
  8370. "source": {
  8371. "type": "git",
  8372. "url": "https://github.com/mockery/mockery.git",
  8373. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8374. },
  8375. "dist": {
  8376. "type": "zip",
  8377. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8378. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8379. "shasum": "",
  8380. "mirrors": [
  8381. {
  8382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8383. "preferred": true
  8384. }
  8385. ]
  8386. },
  8387. "require": {
  8388. "hamcrest/hamcrest-php": "^2.0.1",
  8389. "lib-pcre": ">=7.0",
  8390. "php": "^7.3 || ^8.0"
  8391. },
  8392. "conflict": {
  8393. "phpunit/phpunit": "<8.0"
  8394. },
  8395. "require-dev": {
  8396. "phpunit/phpunit": "^8.5 || ^9.3"
  8397. },
  8398. "type": "library",
  8399. "extra": {
  8400. "branch-alias": {
  8401. "dev-master": "1.4.x-dev"
  8402. }
  8403. },
  8404. "autoload": {
  8405. "psr-0": {
  8406. "Mockery": "library/"
  8407. }
  8408. },
  8409. "notification-url": "https://packagist.org/downloads/",
  8410. "license": [
  8411. "BSD-3-Clause"
  8412. ],
  8413. "authors": [
  8414. {
  8415. "name": "Pádraic Brady",
  8416. "email": "padraic.brady@gmail.com",
  8417. "homepage": "http://blog.astrumfutura.com"
  8418. },
  8419. {
  8420. "name": "Dave Marshall",
  8421. "email": "dave.marshall@atstsolutions.co.uk",
  8422. "homepage": "http://davedevelopment.co.uk"
  8423. }
  8424. ],
  8425. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8426. "homepage": "https://github.com/mockery/mockery",
  8427. "keywords": [
  8428. "BDD",
  8429. "TDD",
  8430. "library",
  8431. "mock",
  8432. "mock objects",
  8433. "mockery",
  8434. "stub",
  8435. "test",
  8436. "test double",
  8437. "testing"
  8438. ],
  8439. "support": {
  8440. "issues": "https://github.com/mockery/mockery/issues",
  8441. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8442. },
  8443. "time": "2021-02-24T09:51:49+00:00"
  8444. },
  8445. {
  8446. "name": "myclabs/deep-copy",
  8447. "version": "1.10.2",
  8448. "source": {
  8449. "type": "git",
  8450. "url": "https://github.com/myclabs/DeepCopy.git",
  8451. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8452. },
  8453. "dist": {
  8454. "type": "zip",
  8455. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8456. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8457. "shasum": "",
  8458. "mirrors": [
  8459. {
  8460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8461. "preferred": true
  8462. }
  8463. ]
  8464. },
  8465. "require": {
  8466. "php": "^7.1 || ^8.0"
  8467. },
  8468. "replace": {
  8469. "myclabs/deep-copy": "self.version"
  8470. },
  8471. "require-dev": {
  8472. "doctrine/collections": "^1.0",
  8473. "doctrine/common": "^2.6",
  8474. "phpunit/phpunit": "^7.1"
  8475. },
  8476. "type": "library",
  8477. "autoload": {
  8478. "psr-4": {
  8479. "DeepCopy\\": "src/DeepCopy/"
  8480. },
  8481. "files": [
  8482. "src/DeepCopy/deep_copy.php"
  8483. ]
  8484. },
  8485. "notification-url": "https://packagist.org/downloads/",
  8486. "license": [
  8487. "MIT"
  8488. ],
  8489. "description": "Create deep copies (clones) of your objects",
  8490. "keywords": [
  8491. "clone",
  8492. "copy",
  8493. "duplicate",
  8494. "object",
  8495. "object graph"
  8496. ],
  8497. "support": {
  8498. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8499. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8500. },
  8501. "funding": [
  8502. {
  8503. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8504. "type": "tidelift"
  8505. }
  8506. ],
  8507. "time": "2020-11-13T09:40:50+00:00"
  8508. },
  8509. {
  8510. "name": "nunomaduro/collision",
  8511. "version": "v4.3.0",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/nunomaduro/collision.git",
  8515. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8520. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8521. "shasum": "",
  8522. "mirrors": [
  8523. {
  8524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8525. "preferred": true
  8526. }
  8527. ]
  8528. },
  8529. "require": {
  8530. "facade/ignition-contracts": "^1.0",
  8531. "filp/whoops": "^2.4",
  8532. "php": "^7.2.5 || ^8.0",
  8533. "symfony/console": "^5.0"
  8534. },
  8535. "require-dev": {
  8536. "facade/ignition": "^2.0",
  8537. "fideloper/proxy": "^4.2",
  8538. "friendsofphp/php-cs-fixer": "^2.16",
  8539. "fruitcake/laravel-cors": "^1.0",
  8540. "laravel/framework": "^7.0",
  8541. "laravel/tinker": "^2.0",
  8542. "nunomaduro/larastan": "^0.6",
  8543. "orchestra/testbench": "^5.0",
  8544. "phpstan/phpstan": "^0.12.3",
  8545. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8546. },
  8547. "type": "library",
  8548. "extra": {
  8549. "laravel": {
  8550. "providers": [
  8551. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8552. ]
  8553. }
  8554. },
  8555. "autoload": {
  8556. "psr-4": {
  8557. "NunoMaduro\\Collision\\": "src/"
  8558. }
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Nuno Maduro",
  8567. "email": "enunomaduro@gmail.com"
  8568. }
  8569. ],
  8570. "description": "Cli error handling for console/command-line PHP applications.",
  8571. "keywords": [
  8572. "artisan",
  8573. "cli",
  8574. "command-line",
  8575. "console",
  8576. "error",
  8577. "handling",
  8578. "laravel",
  8579. "laravel-zero",
  8580. "php",
  8581. "symfony"
  8582. ],
  8583. "support": {
  8584. "issues": "https://github.com/nunomaduro/collision/issues",
  8585. "source": "https://github.com/nunomaduro/collision"
  8586. },
  8587. "funding": [
  8588. {
  8589. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8590. "type": "custom"
  8591. },
  8592. {
  8593. "url": "https://github.com/nunomaduro",
  8594. "type": "github"
  8595. },
  8596. {
  8597. "url": "https://www.patreon.com/nunomaduro",
  8598. "type": "patreon"
  8599. }
  8600. ],
  8601. "time": "2020-10-29T15:12:23+00:00"
  8602. },
  8603. {
  8604. "name": "phar-io/manifest",
  8605. "version": "2.0.1",
  8606. "source": {
  8607. "type": "git",
  8608. "url": "https://github.com/phar-io/manifest.git",
  8609. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8610. },
  8611. "dist": {
  8612. "type": "zip",
  8613. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8614. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8615. "shasum": "",
  8616. "mirrors": [
  8617. {
  8618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8619. "preferred": true
  8620. }
  8621. ]
  8622. },
  8623. "require": {
  8624. "ext-dom": "*",
  8625. "ext-phar": "*",
  8626. "ext-xmlwriter": "*",
  8627. "phar-io/version": "^3.0.1",
  8628. "php": "^7.2 || ^8.0"
  8629. },
  8630. "type": "library",
  8631. "extra": {
  8632. "branch-alias": {
  8633. "dev-master": "2.0.x-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": "Arne Blankerts",
  8648. "email": "arne@blankerts.de",
  8649. "role": "Developer"
  8650. },
  8651. {
  8652. "name": "Sebastian Heuer",
  8653. "email": "sebastian@phpeople.de",
  8654. "role": "Developer"
  8655. },
  8656. {
  8657. "name": "Sebastian Bergmann",
  8658. "email": "sebastian@phpunit.de",
  8659. "role": "Developer"
  8660. }
  8661. ],
  8662. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8663. "support": {
  8664. "issues": "https://github.com/phar-io/manifest/issues",
  8665. "source": "https://github.com/phar-io/manifest/tree/master"
  8666. },
  8667. "time": "2020-06-27T14:33:11+00:00"
  8668. },
  8669. {
  8670. "name": "phar-io/version",
  8671. "version": "3.1.0",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/phar-io/version.git",
  8675. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8680. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8681. "shasum": "",
  8682. "mirrors": [
  8683. {
  8684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8685. "preferred": true
  8686. }
  8687. ]
  8688. },
  8689. "require": {
  8690. "php": "^7.2 || ^8.0"
  8691. },
  8692. "type": "library",
  8693. "autoload": {
  8694. "classmap": [
  8695. "src/"
  8696. ]
  8697. },
  8698. "notification-url": "https://packagist.org/downloads/",
  8699. "license": [
  8700. "BSD-3-Clause"
  8701. ],
  8702. "authors": [
  8703. {
  8704. "name": "Arne Blankerts",
  8705. "email": "arne@blankerts.de",
  8706. "role": "Developer"
  8707. },
  8708. {
  8709. "name": "Sebastian Heuer",
  8710. "email": "sebastian@phpeople.de",
  8711. "role": "Developer"
  8712. },
  8713. {
  8714. "name": "Sebastian Bergmann",
  8715. "email": "sebastian@phpunit.de",
  8716. "role": "Developer"
  8717. }
  8718. ],
  8719. "description": "Library for handling version information and constraints",
  8720. "support": {
  8721. "issues": "https://github.com/phar-io/version/issues",
  8722. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8723. },
  8724. "time": "2021-02-23T14:00:09+00:00"
  8725. },
  8726. {
  8727. "name": "phpdocumentor/reflection-common",
  8728. "version": "2.2.0",
  8729. "source": {
  8730. "type": "git",
  8731. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8732. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8733. },
  8734. "dist": {
  8735. "type": "zip",
  8736. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8737. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8738. "shasum": "",
  8739. "mirrors": [
  8740. {
  8741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8742. "preferred": true
  8743. }
  8744. ]
  8745. },
  8746. "require": {
  8747. "php": "^7.2 || ^8.0"
  8748. },
  8749. "type": "library",
  8750. "extra": {
  8751. "branch-alias": {
  8752. "dev-2.x": "2.x-dev"
  8753. }
  8754. },
  8755. "autoload": {
  8756. "psr-4": {
  8757. "phpDocumentor\\Reflection\\": "src/"
  8758. }
  8759. },
  8760. "notification-url": "https://packagist.org/downloads/",
  8761. "license": [
  8762. "MIT"
  8763. ],
  8764. "authors": [
  8765. {
  8766. "name": "Jaap van Otterdijk",
  8767. "email": "opensource@ijaap.nl"
  8768. }
  8769. ],
  8770. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8771. "homepage": "http://www.phpdoc.org",
  8772. "keywords": [
  8773. "FQSEN",
  8774. "phpDocumentor",
  8775. "phpdoc",
  8776. "reflection",
  8777. "static analysis"
  8778. ],
  8779. "support": {
  8780. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8781. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8782. },
  8783. "time": "2020-06-27T09:03:43+00:00"
  8784. },
  8785. {
  8786. "name": "phpdocumentor/reflection-docblock",
  8787. "version": "5.2.2",
  8788. "source": {
  8789. "type": "git",
  8790. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8791. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8792. },
  8793. "dist": {
  8794. "type": "zip",
  8795. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8796. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8797. "shasum": "",
  8798. "mirrors": [
  8799. {
  8800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8801. "preferred": true
  8802. }
  8803. ]
  8804. },
  8805. "require": {
  8806. "ext-filter": "*",
  8807. "php": "^7.2 || ^8.0",
  8808. "phpdocumentor/reflection-common": "^2.2",
  8809. "phpdocumentor/type-resolver": "^1.3",
  8810. "webmozart/assert": "^1.9.1"
  8811. },
  8812. "require-dev": {
  8813. "mockery/mockery": "~1.3.2"
  8814. },
  8815. "type": "library",
  8816. "extra": {
  8817. "branch-alias": {
  8818. "dev-master": "5.x-dev"
  8819. }
  8820. },
  8821. "autoload": {
  8822. "psr-4": {
  8823. "phpDocumentor\\Reflection\\": "src"
  8824. }
  8825. },
  8826. "notification-url": "https://packagist.org/downloads/",
  8827. "license": [
  8828. "MIT"
  8829. ],
  8830. "authors": [
  8831. {
  8832. "name": "Mike van Riel",
  8833. "email": "me@mikevanriel.com"
  8834. },
  8835. {
  8836. "name": "Jaap van Otterdijk",
  8837. "email": "account@ijaap.nl"
  8838. }
  8839. ],
  8840. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8841. "support": {
  8842. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8843. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8844. },
  8845. "time": "2020-09-03T19:13:55+00:00"
  8846. },
  8847. {
  8848. "name": "phpdocumentor/type-resolver",
  8849. "version": "1.4.0",
  8850. "source": {
  8851. "type": "git",
  8852. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8853. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8854. },
  8855. "dist": {
  8856. "type": "zip",
  8857. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8858. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8859. "shasum": "",
  8860. "mirrors": [
  8861. {
  8862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8863. "preferred": true
  8864. }
  8865. ]
  8866. },
  8867. "require": {
  8868. "php": "^7.2 || ^8.0",
  8869. "phpdocumentor/reflection-common": "^2.0"
  8870. },
  8871. "require-dev": {
  8872. "ext-tokenizer": "*"
  8873. },
  8874. "type": "library",
  8875. "extra": {
  8876. "branch-alias": {
  8877. "dev-1.x": "1.x-dev"
  8878. }
  8879. },
  8880. "autoload": {
  8881. "psr-4": {
  8882. "phpDocumentor\\Reflection\\": "src"
  8883. }
  8884. },
  8885. "notification-url": "https://packagist.org/downloads/",
  8886. "license": [
  8887. "MIT"
  8888. ],
  8889. "authors": [
  8890. {
  8891. "name": "Mike van Riel",
  8892. "email": "me@mikevanriel.com"
  8893. }
  8894. ],
  8895. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8896. "support": {
  8897. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8898. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8899. },
  8900. "time": "2020-09-17T18:55:26+00:00"
  8901. },
  8902. {
  8903. "name": "phpspec/prophecy",
  8904. "version": "1.13.0",
  8905. "source": {
  8906. "type": "git",
  8907. "url": "https://github.com/phpspec/prophecy.git",
  8908. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8909. },
  8910. "dist": {
  8911. "type": "zip",
  8912. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8913. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8914. "shasum": "",
  8915. "mirrors": [
  8916. {
  8917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8918. "preferred": true
  8919. }
  8920. ]
  8921. },
  8922. "require": {
  8923. "doctrine/instantiator": "^1.2",
  8924. "php": "^7.2 || ~8.0, <8.1",
  8925. "phpdocumentor/reflection-docblock": "^5.2",
  8926. "sebastian/comparator": "^3.0 || ^4.0",
  8927. "sebastian/recursion-context": "^3.0 || ^4.0"
  8928. },
  8929. "require-dev": {
  8930. "phpspec/phpspec": "^6.0",
  8931. "phpunit/phpunit": "^8.0 || ^9.0"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "branch-alias": {
  8936. "dev-master": "1.11.x-dev"
  8937. }
  8938. },
  8939. "autoload": {
  8940. "psr-4": {
  8941. "Prophecy\\": "src/Prophecy"
  8942. }
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "MIT"
  8947. ],
  8948. "authors": [
  8949. {
  8950. "name": "Konstantin Kudryashov",
  8951. "email": "ever.zet@gmail.com",
  8952. "homepage": "http://everzet.com"
  8953. },
  8954. {
  8955. "name": "Marcello Duarte",
  8956. "email": "marcello.duarte@gmail.com"
  8957. }
  8958. ],
  8959. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8960. "homepage": "https://github.com/phpspec/prophecy",
  8961. "keywords": [
  8962. "Double",
  8963. "Dummy",
  8964. "fake",
  8965. "mock",
  8966. "spy",
  8967. "stub"
  8968. ],
  8969. "support": {
  8970. "issues": "https://github.com/phpspec/prophecy/issues",
  8971. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8972. },
  8973. "time": "2021-03-17T13:42:18+00:00"
  8974. },
  8975. {
  8976. "name": "phpunit/php-code-coverage",
  8977. "version": "7.0.14",
  8978. "source": {
  8979. "type": "git",
  8980. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8981. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8982. },
  8983. "dist": {
  8984. "type": "zip",
  8985. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8986. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8987. "shasum": "",
  8988. "mirrors": [
  8989. {
  8990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8991. "preferred": true
  8992. }
  8993. ]
  8994. },
  8995. "require": {
  8996. "ext-dom": "*",
  8997. "ext-xmlwriter": "*",
  8998. "php": ">=7.2",
  8999. "phpunit/php-file-iterator": "^2.0.2",
  9000. "phpunit/php-text-template": "^1.2.1",
  9001. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  9002. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9003. "sebastian/environment": "^4.2.2",
  9004. "sebastian/version": "^2.0.1",
  9005. "theseer/tokenizer": "^1.1.3"
  9006. },
  9007. "require-dev": {
  9008. "phpunit/phpunit": "^8.2.2"
  9009. },
  9010. "suggest": {
  9011. "ext-xdebug": "^2.7.2"
  9012. },
  9013. "type": "library",
  9014. "extra": {
  9015. "branch-alias": {
  9016. "dev-master": "7.0-dev"
  9017. }
  9018. },
  9019. "autoload": {
  9020. "classmap": [
  9021. "src/"
  9022. ]
  9023. },
  9024. "notification-url": "https://packagist.org/downloads/",
  9025. "license": [
  9026. "BSD-3-Clause"
  9027. ],
  9028. "authors": [
  9029. {
  9030. "name": "Sebastian Bergmann",
  9031. "email": "sebastian@phpunit.de",
  9032. "role": "lead"
  9033. }
  9034. ],
  9035. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9036. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9037. "keywords": [
  9038. "coverage",
  9039. "testing",
  9040. "xunit"
  9041. ],
  9042. "support": {
  9043. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9044. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  9045. },
  9046. "funding": [
  9047. {
  9048. "url": "https://github.com/sebastianbergmann",
  9049. "type": "github"
  9050. }
  9051. ],
  9052. "time": "2020-12-02T13:39:03+00:00"
  9053. },
  9054. {
  9055. "name": "phpunit/php-file-iterator",
  9056. "version": "2.0.3",
  9057. "source": {
  9058. "type": "git",
  9059. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9060. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  9061. },
  9062. "dist": {
  9063. "type": "zip",
  9064. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9065. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  9066. "shasum": "",
  9067. "mirrors": [
  9068. {
  9069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9070. "preferred": true
  9071. }
  9072. ]
  9073. },
  9074. "require": {
  9075. "php": ">=7.1"
  9076. },
  9077. "require-dev": {
  9078. "phpunit/phpunit": "^8.5"
  9079. },
  9080. "type": "library",
  9081. "extra": {
  9082. "branch-alias": {
  9083. "dev-master": "2.0.x-dev"
  9084. }
  9085. },
  9086. "autoload": {
  9087. "classmap": [
  9088. "src/"
  9089. ]
  9090. },
  9091. "notification-url": "https://packagist.org/downloads/",
  9092. "license": [
  9093. "BSD-3-Clause"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "Sebastian Bergmann",
  9098. "email": "sebastian@phpunit.de",
  9099. "role": "lead"
  9100. }
  9101. ],
  9102. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9103. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9104. "keywords": [
  9105. "filesystem",
  9106. "iterator"
  9107. ],
  9108. "support": {
  9109. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9110. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  9111. },
  9112. "funding": [
  9113. {
  9114. "url": "https://github.com/sebastianbergmann",
  9115. "type": "github"
  9116. }
  9117. ],
  9118. "time": "2020-11-30T08:25:21+00:00"
  9119. },
  9120. {
  9121. "name": "phpunit/php-text-template",
  9122. "version": "1.2.1",
  9123. "source": {
  9124. "type": "git",
  9125. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9126. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9127. },
  9128. "dist": {
  9129. "type": "zip",
  9130. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9131. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9132. "shasum": "",
  9133. "mirrors": [
  9134. {
  9135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9136. "preferred": true
  9137. }
  9138. ]
  9139. },
  9140. "require": {
  9141. "php": ">=5.3.3"
  9142. },
  9143. "type": "library",
  9144. "autoload": {
  9145. "classmap": [
  9146. "src/"
  9147. ]
  9148. },
  9149. "notification-url": "https://packagist.org/downloads/",
  9150. "license": [
  9151. "BSD-3-Clause"
  9152. ],
  9153. "authors": [
  9154. {
  9155. "name": "Sebastian Bergmann",
  9156. "email": "sebastian@phpunit.de",
  9157. "role": "lead"
  9158. }
  9159. ],
  9160. "description": "Simple template engine.",
  9161. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9162. "keywords": [
  9163. "template"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9167. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9168. },
  9169. "time": "2015-06-21T13:50:34+00:00"
  9170. },
  9171. {
  9172. "name": "phpunit/php-timer",
  9173. "version": "2.1.3",
  9174. "source": {
  9175. "type": "git",
  9176. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9177. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9178. },
  9179. "dist": {
  9180. "type": "zip",
  9181. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9182. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9183. "shasum": "",
  9184. "mirrors": [
  9185. {
  9186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9187. "preferred": true
  9188. }
  9189. ]
  9190. },
  9191. "require": {
  9192. "php": ">=7.1"
  9193. },
  9194. "require-dev": {
  9195. "phpunit/phpunit": "^8.5"
  9196. },
  9197. "type": "library",
  9198. "extra": {
  9199. "branch-alias": {
  9200. "dev-master": "2.1-dev"
  9201. }
  9202. },
  9203. "autoload": {
  9204. "classmap": [
  9205. "src/"
  9206. ]
  9207. },
  9208. "notification-url": "https://packagist.org/downloads/",
  9209. "license": [
  9210. "BSD-3-Clause"
  9211. ],
  9212. "authors": [
  9213. {
  9214. "name": "Sebastian Bergmann",
  9215. "email": "sebastian@phpunit.de",
  9216. "role": "lead"
  9217. }
  9218. ],
  9219. "description": "Utility class for timing",
  9220. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9221. "keywords": [
  9222. "timer"
  9223. ],
  9224. "support": {
  9225. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9226. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9227. },
  9228. "funding": [
  9229. {
  9230. "url": "https://github.com/sebastianbergmann",
  9231. "type": "github"
  9232. }
  9233. ],
  9234. "time": "2020-11-30T08:20:02+00:00"
  9235. },
  9236. {
  9237. "name": "phpunit/php-token-stream",
  9238. "version": "4.0.4",
  9239. "source": {
  9240. "type": "git",
  9241. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9242. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9243. },
  9244. "dist": {
  9245. "type": "zip",
  9246. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9247. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9248. "shasum": "",
  9249. "mirrors": [
  9250. {
  9251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9252. "preferred": true
  9253. }
  9254. ]
  9255. },
  9256. "require": {
  9257. "ext-tokenizer": "*",
  9258. "php": "^7.3 || ^8.0"
  9259. },
  9260. "require-dev": {
  9261. "phpunit/phpunit": "^9.0"
  9262. },
  9263. "type": "library",
  9264. "extra": {
  9265. "branch-alias": {
  9266. "dev-master": "4.0-dev"
  9267. }
  9268. },
  9269. "autoload": {
  9270. "classmap": [
  9271. "src/"
  9272. ]
  9273. },
  9274. "notification-url": "https://packagist.org/downloads/",
  9275. "license": [
  9276. "BSD-3-Clause"
  9277. ],
  9278. "authors": [
  9279. {
  9280. "name": "Sebastian Bergmann",
  9281. "email": "sebastian@phpunit.de"
  9282. }
  9283. ],
  9284. "description": "Wrapper around PHP's tokenizer extension.",
  9285. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9286. "keywords": [
  9287. "tokenizer"
  9288. ],
  9289. "support": {
  9290. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9291. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9292. },
  9293. "funding": [
  9294. {
  9295. "url": "https://github.com/sebastianbergmann",
  9296. "type": "github"
  9297. }
  9298. ],
  9299. "abandoned": true,
  9300. "time": "2020-08-04T08:28:15+00:00"
  9301. },
  9302. {
  9303. "name": "phpunit/phpunit",
  9304. "version": "8.5.17",
  9305. "source": {
  9306. "type": "git",
  9307. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9308. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da"
  9309. },
  9310. "dist": {
  9311. "type": "zip",
  9312. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/79067856d85421c56d413bd238d4e2cd6b0e54da",
  9313. "reference": "79067856d85421c56d413bd238d4e2cd6b0e54da",
  9314. "shasum": "",
  9315. "mirrors": [
  9316. {
  9317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9318. "preferred": true
  9319. }
  9320. ]
  9321. },
  9322. "require": {
  9323. "doctrine/instantiator": "^1.3.1",
  9324. "ext-dom": "*",
  9325. "ext-json": "*",
  9326. "ext-libxml": "*",
  9327. "ext-mbstring": "*",
  9328. "ext-xml": "*",
  9329. "ext-xmlwriter": "*",
  9330. "myclabs/deep-copy": "^1.10.0",
  9331. "phar-io/manifest": "^2.0.1",
  9332. "phar-io/version": "^3.0.2",
  9333. "php": ">=7.2",
  9334. "phpspec/prophecy": "^1.10.3",
  9335. "phpunit/php-code-coverage": "^7.0.12",
  9336. "phpunit/php-file-iterator": "^2.0.2",
  9337. "phpunit/php-text-template": "^1.2.1",
  9338. "phpunit/php-timer": "^2.1.2",
  9339. "sebastian/comparator": "^3.0.2",
  9340. "sebastian/diff": "^3.0.2",
  9341. "sebastian/environment": "^4.2.3",
  9342. "sebastian/exporter": "^3.1.2",
  9343. "sebastian/global-state": "^3.0.0",
  9344. "sebastian/object-enumerator": "^3.0.3",
  9345. "sebastian/resource-operations": "^2.0.1",
  9346. "sebastian/type": "^1.1.3",
  9347. "sebastian/version": "^2.0.1"
  9348. },
  9349. "require-dev": {
  9350. "ext-pdo": "*"
  9351. },
  9352. "suggest": {
  9353. "ext-soap": "*",
  9354. "ext-xdebug": "*",
  9355. "phpunit/php-invoker": "^2.0.0"
  9356. },
  9357. "bin": [
  9358. "phpunit"
  9359. ],
  9360. "type": "library",
  9361. "extra": {
  9362. "branch-alias": {
  9363. "dev-master": "8.5-dev"
  9364. }
  9365. },
  9366. "autoload": {
  9367. "classmap": [
  9368. "src/"
  9369. ]
  9370. },
  9371. "notification-url": "https://packagist.org/downloads/",
  9372. "license": [
  9373. "BSD-3-Clause"
  9374. ],
  9375. "authors": [
  9376. {
  9377. "name": "Sebastian Bergmann",
  9378. "email": "sebastian@phpunit.de",
  9379. "role": "lead"
  9380. }
  9381. ],
  9382. "description": "The PHP Unit Testing framework.",
  9383. "homepage": "https://phpunit.de/",
  9384. "keywords": [
  9385. "phpunit",
  9386. "testing",
  9387. "xunit"
  9388. ],
  9389. "support": {
  9390. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9391. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.17"
  9392. },
  9393. "funding": [
  9394. {
  9395. "url": "https://phpunit.de/donate.html",
  9396. "type": "custom"
  9397. },
  9398. {
  9399. "url": "https://github.com/sebastianbergmann",
  9400. "type": "github"
  9401. }
  9402. ],
  9403. "time": "2021-06-23T05:12:43+00:00"
  9404. },
  9405. {
  9406. "name": "sebastian/code-unit-reverse-lookup",
  9407. "version": "1.0.2",
  9408. "source": {
  9409. "type": "git",
  9410. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9411. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9412. },
  9413. "dist": {
  9414. "type": "zip",
  9415. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9416. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9417. "shasum": "",
  9418. "mirrors": [
  9419. {
  9420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9421. "preferred": true
  9422. }
  9423. ]
  9424. },
  9425. "require": {
  9426. "php": ">=5.6"
  9427. },
  9428. "require-dev": {
  9429. "phpunit/phpunit": "^8.5"
  9430. },
  9431. "type": "library",
  9432. "extra": {
  9433. "branch-alias": {
  9434. "dev-master": "1.0.x-dev"
  9435. }
  9436. },
  9437. "autoload": {
  9438. "classmap": [
  9439. "src/"
  9440. ]
  9441. },
  9442. "notification-url": "https://packagist.org/downloads/",
  9443. "license": [
  9444. "BSD-3-Clause"
  9445. ],
  9446. "authors": [
  9447. {
  9448. "name": "Sebastian Bergmann",
  9449. "email": "sebastian@phpunit.de"
  9450. }
  9451. ],
  9452. "description": "Looks up which function or method a line of code belongs to",
  9453. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9454. "support": {
  9455. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9456. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9457. },
  9458. "funding": [
  9459. {
  9460. "url": "https://github.com/sebastianbergmann",
  9461. "type": "github"
  9462. }
  9463. ],
  9464. "time": "2020-11-30T08:15:22+00:00"
  9465. },
  9466. {
  9467. "name": "sebastian/comparator",
  9468. "version": "3.0.3",
  9469. "source": {
  9470. "type": "git",
  9471. "url": "https://github.com/sebastianbergmann/comparator.git",
  9472. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9473. },
  9474. "dist": {
  9475. "type": "zip",
  9476. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9477. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9478. "shasum": "",
  9479. "mirrors": [
  9480. {
  9481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9482. "preferred": true
  9483. }
  9484. ]
  9485. },
  9486. "require": {
  9487. "php": ">=7.1",
  9488. "sebastian/diff": "^3.0",
  9489. "sebastian/exporter": "^3.1"
  9490. },
  9491. "require-dev": {
  9492. "phpunit/phpunit": "^8.5"
  9493. },
  9494. "type": "library",
  9495. "extra": {
  9496. "branch-alias": {
  9497. "dev-master": "3.0-dev"
  9498. }
  9499. },
  9500. "autoload": {
  9501. "classmap": [
  9502. "src/"
  9503. ]
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "BSD-3-Clause"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Sebastian Bergmann",
  9512. "email": "sebastian@phpunit.de"
  9513. },
  9514. {
  9515. "name": "Jeff Welch",
  9516. "email": "whatthejeff@gmail.com"
  9517. },
  9518. {
  9519. "name": "Volker Dusch",
  9520. "email": "github@wallbash.com"
  9521. },
  9522. {
  9523. "name": "Bernhard Schussek",
  9524. "email": "bschussek@2bepublished.at"
  9525. }
  9526. ],
  9527. "description": "Provides the functionality to compare PHP values for equality",
  9528. "homepage": "https://github.com/sebastianbergmann/comparator",
  9529. "keywords": [
  9530. "comparator",
  9531. "compare",
  9532. "equality"
  9533. ],
  9534. "support": {
  9535. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9536. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9537. },
  9538. "funding": [
  9539. {
  9540. "url": "https://github.com/sebastianbergmann",
  9541. "type": "github"
  9542. }
  9543. ],
  9544. "time": "2020-11-30T08:04:30+00:00"
  9545. },
  9546. {
  9547. "name": "sebastian/diff",
  9548. "version": "3.0.3",
  9549. "source": {
  9550. "type": "git",
  9551. "url": "https://github.com/sebastianbergmann/diff.git",
  9552. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9553. },
  9554. "dist": {
  9555. "type": "zip",
  9556. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9557. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9558. "shasum": "",
  9559. "mirrors": [
  9560. {
  9561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9562. "preferred": true
  9563. }
  9564. ]
  9565. },
  9566. "require": {
  9567. "php": ">=7.1"
  9568. },
  9569. "require-dev": {
  9570. "phpunit/phpunit": "^7.5 || ^8.0",
  9571. "symfony/process": "^2 || ^3.3 || ^4"
  9572. },
  9573. "type": "library",
  9574. "extra": {
  9575. "branch-alias": {
  9576. "dev-master": "3.0-dev"
  9577. }
  9578. },
  9579. "autoload": {
  9580. "classmap": [
  9581. "src/"
  9582. ]
  9583. },
  9584. "notification-url": "https://packagist.org/downloads/",
  9585. "license": [
  9586. "BSD-3-Clause"
  9587. ],
  9588. "authors": [
  9589. {
  9590. "name": "Sebastian Bergmann",
  9591. "email": "sebastian@phpunit.de"
  9592. },
  9593. {
  9594. "name": "Kore Nordmann",
  9595. "email": "mail@kore-nordmann.de"
  9596. }
  9597. ],
  9598. "description": "Diff implementation",
  9599. "homepage": "https://github.com/sebastianbergmann/diff",
  9600. "keywords": [
  9601. "diff",
  9602. "udiff",
  9603. "unidiff",
  9604. "unified diff"
  9605. ],
  9606. "support": {
  9607. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9608. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9609. },
  9610. "funding": [
  9611. {
  9612. "url": "https://github.com/sebastianbergmann",
  9613. "type": "github"
  9614. }
  9615. ],
  9616. "time": "2020-11-30T07:59:04+00:00"
  9617. },
  9618. {
  9619. "name": "sebastian/environment",
  9620. "version": "4.2.4",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/sebastianbergmann/environment.git",
  9624. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9629. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9630. "shasum": "",
  9631. "mirrors": [
  9632. {
  9633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9634. "preferred": true
  9635. }
  9636. ]
  9637. },
  9638. "require": {
  9639. "php": ">=7.1"
  9640. },
  9641. "require-dev": {
  9642. "phpunit/phpunit": "^7.5"
  9643. },
  9644. "suggest": {
  9645. "ext-posix": "*"
  9646. },
  9647. "type": "library",
  9648. "extra": {
  9649. "branch-alias": {
  9650. "dev-master": "4.2-dev"
  9651. }
  9652. },
  9653. "autoload": {
  9654. "classmap": [
  9655. "src/"
  9656. ]
  9657. },
  9658. "notification-url": "https://packagist.org/downloads/",
  9659. "license": [
  9660. "BSD-3-Clause"
  9661. ],
  9662. "authors": [
  9663. {
  9664. "name": "Sebastian Bergmann",
  9665. "email": "sebastian@phpunit.de"
  9666. }
  9667. ],
  9668. "description": "Provides functionality to handle HHVM/PHP environments",
  9669. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9670. "keywords": [
  9671. "Xdebug",
  9672. "environment",
  9673. "hhvm"
  9674. ],
  9675. "support": {
  9676. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9677. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9678. },
  9679. "funding": [
  9680. {
  9681. "url": "https://github.com/sebastianbergmann",
  9682. "type": "github"
  9683. }
  9684. ],
  9685. "time": "2020-11-30T07:53:42+00:00"
  9686. },
  9687. {
  9688. "name": "sebastian/exporter",
  9689. "version": "3.1.3",
  9690. "source": {
  9691. "type": "git",
  9692. "url": "https://github.com/sebastianbergmann/exporter.git",
  9693. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9694. },
  9695. "dist": {
  9696. "type": "zip",
  9697. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9698. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9699. "shasum": "",
  9700. "mirrors": [
  9701. {
  9702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9703. "preferred": true
  9704. }
  9705. ]
  9706. },
  9707. "require": {
  9708. "php": ">=7.0",
  9709. "sebastian/recursion-context": "^3.0"
  9710. },
  9711. "require-dev": {
  9712. "ext-mbstring": "*",
  9713. "phpunit/phpunit": "^6.0"
  9714. },
  9715. "type": "library",
  9716. "extra": {
  9717. "branch-alias": {
  9718. "dev-master": "3.1.x-dev"
  9719. }
  9720. },
  9721. "autoload": {
  9722. "classmap": [
  9723. "src/"
  9724. ]
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "BSD-3-Clause"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Sebastian Bergmann",
  9733. "email": "sebastian@phpunit.de"
  9734. },
  9735. {
  9736. "name": "Jeff Welch",
  9737. "email": "whatthejeff@gmail.com"
  9738. },
  9739. {
  9740. "name": "Volker Dusch",
  9741. "email": "github@wallbash.com"
  9742. },
  9743. {
  9744. "name": "Adam Harvey",
  9745. "email": "aharvey@php.net"
  9746. },
  9747. {
  9748. "name": "Bernhard Schussek",
  9749. "email": "bschussek@gmail.com"
  9750. }
  9751. ],
  9752. "description": "Provides the functionality to export PHP variables for visualization",
  9753. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9754. "keywords": [
  9755. "export",
  9756. "exporter"
  9757. ],
  9758. "support": {
  9759. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9760. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9761. },
  9762. "funding": [
  9763. {
  9764. "url": "https://github.com/sebastianbergmann",
  9765. "type": "github"
  9766. }
  9767. ],
  9768. "time": "2020-11-30T07:47:53+00:00"
  9769. },
  9770. {
  9771. "name": "sebastian/global-state",
  9772. "version": "3.0.1",
  9773. "source": {
  9774. "type": "git",
  9775. "url": "https://github.com/sebastianbergmann/global-state.git",
  9776. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9777. },
  9778. "dist": {
  9779. "type": "zip",
  9780. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9781. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9782. "shasum": "",
  9783. "mirrors": [
  9784. {
  9785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9786. "preferred": true
  9787. }
  9788. ]
  9789. },
  9790. "require": {
  9791. "php": ">=7.2",
  9792. "sebastian/object-reflector": "^1.1.1",
  9793. "sebastian/recursion-context": "^3.0"
  9794. },
  9795. "require-dev": {
  9796. "ext-dom": "*",
  9797. "phpunit/phpunit": "^8.0"
  9798. },
  9799. "suggest": {
  9800. "ext-uopz": "*"
  9801. },
  9802. "type": "library",
  9803. "extra": {
  9804. "branch-alias": {
  9805. "dev-master": "3.0-dev"
  9806. }
  9807. },
  9808. "autoload": {
  9809. "classmap": [
  9810. "src/"
  9811. ]
  9812. },
  9813. "notification-url": "https://packagist.org/downloads/",
  9814. "license": [
  9815. "BSD-3-Clause"
  9816. ],
  9817. "authors": [
  9818. {
  9819. "name": "Sebastian Bergmann",
  9820. "email": "sebastian@phpunit.de"
  9821. }
  9822. ],
  9823. "description": "Snapshotting of global state",
  9824. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9825. "keywords": [
  9826. "global state"
  9827. ],
  9828. "support": {
  9829. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9830. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9831. },
  9832. "funding": [
  9833. {
  9834. "url": "https://github.com/sebastianbergmann",
  9835. "type": "github"
  9836. }
  9837. ],
  9838. "time": "2020-11-30T07:43:24+00:00"
  9839. },
  9840. {
  9841. "name": "sebastian/object-enumerator",
  9842. "version": "3.0.4",
  9843. "source": {
  9844. "type": "git",
  9845. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9846. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9847. },
  9848. "dist": {
  9849. "type": "zip",
  9850. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9851. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9852. "shasum": "",
  9853. "mirrors": [
  9854. {
  9855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9856. "preferred": true
  9857. }
  9858. ]
  9859. },
  9860. "require": {
  9861. "php": ">=7.0",
  9862. "sebastian/object-reflector": "^1.1.1",
  9863. "sebastian/recursion-context": "^3.0"
  9864. },
  9865. "require-dev": {
  9866. "phpunit/phpunit": "^6.0"
  9867. },
  9868. "type": "library",
  9869. "extra": {
  9870. "branch-alias": {
  9871. "dev-master": "3.0.x-dev"
  9872. }
  9873. },
  9874. "autoload": {
  9875. "classmap": [
  9876. "src/"
  9877. ]
  9878. },
  9879. "notification-url": "https://packagist.org/downloads/",
  9880. "license": [
  9881. "BSD-3-Clause"
  9882. ],
  9883. "authors": [
  9884. {
  9885. "name": "Sebastian Bergmann",
  9886. "email": "sebastian@phpunit.de"
  9887. }
  9888. ],
  9889. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9890. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9891. "support": {
  9892. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9893. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9894. },
  9895. "funding": [
  9896. {
  9897. "url": "https://github.com/sebastianbergmann",
  9898. "type": "github"
  9899. }
  9900. ],
  9901. "time": "2020-11-30T07:40:27+00:00"
  9902. },
  9903. {
  9904. "name": "sebastian/object-reflector",
  9905. "version": "1.1.2",
  9906. "source": {
  9907. "type": "git",
  9908. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9909. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9910. },
  9911. "dist": {
  9912. "type": "zip",
  9913. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9914. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9915. "shasum": "",
  9916. "mirrors": [
  9917. {
  9918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9919. "preferred": true
  9920. }
  9921. ]
  9922. },
  9923. "require": {
  9924. "php": ">=7.0"
  9925. },
  9926. "require-dev": {
  9927. "phpunit/phpunit": "^6.0"
  9928. },
  9929. "type": "library",
  9930. "extra": {
  9931. "branch-alias": {
  9932. "dev-master": "1.1-dev"
  9933. }
  9934. },
  9935. "autoload": {
  9936. "classmap": [
  9937. "src/"
  9938. ]
  9939. },
  9940. "notification-url": "https://packagist.org/downloads/",
  9941. "license": [
  9942. "BSD-3-Clause"
  9943. ],
  9944. "authors": [
  9945. {
  9946. "name": "Sebastian Bergmann",
  9947. "email": "sebastian@phpunit.de"
  9948. }
  9949. ],
  9950. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9951. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9952. "support": {
  9953. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9954. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9955. },
  9956. "funding": [
  9957. {
  9958. "url": "https://github.com/sebastianbergmann",
  9959. "type": "github"
  9960. }
  9961. ],
  9962. "time": "2020-11-30T07:37:18+00:00"
  9963. },
  9964. {
  9965. "name": "sebastian/recursion-context",
  9966. "version": "3.0.1",
  9967. "source": {
  9968. "type": "git",
  9969. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9970. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9971. },
  9972. "dist": {
  9973. "type": "zip",
  9974. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9975. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9976. "shasum": "",
  9977. "mirrors": [
  9978. {
  9979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9980. "preferred": true
  9981. }
  9982. ]
  9983. },
  9984. "require": {
  9985. "php": ">=7.0"
  9986. },
  9987. "require-dev": {
  9988. "phpunit/phpunit": "^6.0"
  9989. },
  9990. "type": "library",
  9991. "extra": {
  9992. "branch-alias": {
  9993. "dev-master": "3.0.x-dev"
  9994. }
  9995. },
  9996. "autoload": {
  9997. "classmap": [
  9998. "src/"
  9999. ]
  10000. },
  10001. "notification-url": "https://packagist.org/downloads/",
  10002. "license": [
  10003. "BSD-3-Clause"
  10004. ],
  10005. "authors": [
  10006. {
  10007. "name": "Sebastian Bergmann",
  10008. "email": "sebastian@phpunit.de"
  10009. },
  10010. {
  10011. "name": "Jeff Welch",
  10012. "email": "whatthejeff@gmail.com"
  10013. },
  10014. {
  10015. "name": "Adam Harvey",
  10016. "email": "aharvey@php.net"
  10017. }
  10018. ],
  10019. "description": "Provides functionality to recursively process PHP variables",
  10020. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10021. "support": {
  10022. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10023. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10024. },
  10025. "funding": [
  10026. {
  10027. "url": "https://github.com/sebastianbergmann",
  10028. "type": "github"
  10029. }
  10030. ],
  10031. "time": "2020-11-30T07:34:24+00:00"
  10032. },
  10033. {
  10034. "name": "sebastian/resource-operations",
  10035. "version": "2.0.2",
  10036. "source": {
  10037. "type": "git",
  10038. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10039. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10040. },
  10041. "dist": {
  10042. "type": "zip",
  10043. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10044. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10045. "shasum": "",
  10046. "mirrors": [
  10047. {
  10048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10049. "preferred": true
  10050. }
  10051. ]
  10052. },
  10053. "require": {
  10054. "php": ">=7.1"
  10055. },
  10056. "type": "library",
  10057. "extra": {
  10058. "branch-alias": {
  10059. "dev-master": "2.0-dev"
  10060. }
  10061. },
  10062. "autoload": {
  10063. "classmap": [
  10064. "src/"
  10065. ]
  10066. },
  10067. "notification-url": "https://packagist.org/downloads/",
  10068. "license": [
  10069. "BSD-3-Clause"
  10070. ],
  10071. "authors": [
  10072. {
  10073. "name": "Sebastian Bergmann",
  10074. "email": "sebastian@phpunit.de"
  10075. }
  10076. ],
  10077. "description": "Provides a list of PHP built-in functions that operate on resources",
  10078. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10079. "support": {
  10080. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10081. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10082. },
  10083. "funding": [
  10084. {
  10085. "url": "https://github.com/sebastianbergmann",
  10086. "type": "github"
  10087. }
  10088. ],
  10089. "time": "2020-11-30T07:30:19+00:00"
  10090. },
  10091. {
  10092. "name": "sebastian/type",
  10093. "version": "1.1.4",
  10094. "source": {
  10095. "type": "git",
  10096. "url": "https://github.com/sebastianbergmann/type.git",
  10097. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10098. },
  10099. "dist": {
  10100. "type": "zip",
  10101. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10102. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10103. "shasum": "",
  10104. "mirrors": [
  10105. {
  10106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10107. "preferred": true
  10108. }
  10109. ]
  10110. },
  10111. "require": {
  10112. "php": ">=7.2"
  10113. },
  10114. "require-dev": {
  10115. "phpunit/phpunit": "^8.2"
  10116. },
  10117. "type": "library",
  10118. "extra": {
  10119. "branch-alias": {
  10120. "dev-master": "1.1-dev"
  10121. }
  10122. },
  10123. "autoload": {
  10124. "classmap": [
  10125. "src/"
  10126. ]
  10127. },
  10128. "notification-url": "https://packagist.org/downloads/",
  10129. "license": [
  10130. "BSD-3-Clause"
  10131. ],
  10132. "authors": [
  10133. {
  10134. "name": "Sebastian Bergmann",
  10135. "email": "sebastian@phpunit.de",
  10136. "role": "lead"
  10137. }
  10138. ],
  10139. "description": "Collection of value objects that represent the types of the PHP type system",
  10140. "homepage": "https://github.com/sebastianbergmann/type",
  10141. "support": {
  10142. "issues": "https://github.com/sebastianbergmann/type/issues",
  10143. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10144. },
  10145. "funding": [
  10146. {
  10147. "url": "https://github.com/sebastianbergmann",
  10148. "type": "github"
  10149. }
  10150. ],
  10151. "time": "2020-11-30T07:25:11+00:00"
  10152. },
  10153. {
  10154. "name": "sebastian/version",
  10155. "version": "2.0.1",
  10156. "source": {
  10157. "type": "git",
  10158. "url": "https://github.com/sebastianbergmann/version.git",
  10159. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10160. },
  10161. "dist": {
  10162. "type": "zip",
  10163. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10164. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10165. "shasum": "",
  10166. "mirrors": [
  10167. {
  10168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10169. "preferred": true
  10170. }
  10171. ]
  10172. },
  10173. "require": {
  10174. "php": ">=5.6"
  10175. },
  10176. "type": "library",
  10177. "extra": {
  10178. "branch-alias": {
  10179. "dev-master": "2.0.x-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "classmap": [
  10184. "src/"
  10185. ]
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Sebastian Bergmann",
  10194. "email": "sebastian@phpunit.de",
  10195. "role": "lead"
  10196. }
  10197. ],
  10198. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10199. "homepage": "https://github.com/sebastianbergmann/version",
  10200. "support": {
  10201. "issues": "https://github.com/sebastianbergmann/version/issues",
  10202. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10203. },
  10204. "time": "2016-10-03T07:35:21+00:00"
  10205. },
  10206. {
  10207. "name": "symfony/debug",
  10208. "version": "v4.4.25",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/symfony/debug.git",
  10212. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10217. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10218. "shasum": "",
  10219. "mirrors": [
  10220. {
  10221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10222. "preferred": true
  10223. }
  10224. ]
  10225. },
  10226. "require": {
  10227. "php": ">=7.1.3",
  10228. "psr/log": "~1.0",
  10229. "symfony/polyfill-php80": "^1.15"
  10230. },
  10231. "conflict": {
  10232. "symfony/http-kernel": "<3.4"
  10233. },
  10234. "require-dev": {
  10235. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10236. },
  10237. "type": "library",
  10238. "autoload": {
  10239. "psr-4": {
  10240. "Symfony\\Component\\Debug\\": ""
  10241. },
  10242. "exclude-from-classmap": [
  10243. "/Tests/"
  10244. ]
  10245. },
  10246. "notification-url": "https://packagist.org/downloads/",
  10247. "license": [
  10248. "MIT"
  10249. ],
  10250. "authors": [
  10251. {
  10252. "name": "Fabien Potencier",
  10253. "email": "fabien@symfony.com"
  10254. },
  10255. {
  10256. "name": "Symfony Community",
  10257. "homepage": "https://symfony.com/contributors"
  10258. }
  10259. ],
  10260. "description": "Provides tools to ease debugging PHP code",
  10261. "homepage": "https://symfony.com",
  10262. "support": {
  10263. "source": "https://github.com/symfony/debug/tree/v4.4.25"
  10264. },
  10265. "funding": [
  10266. {
  10267. "url": "https://symfony.com/sponsor",
  10268. "type": "custom"
  10269. },
  10270. {
  10271. "url": "https://github.com/fabpot",
  10272. "type": "github"
  10273. },
  10274. {
  10275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10276. "type": "tidelift"
  10277. }
  10278. ],
  10279. "time": "2021-05-26T17:39:37+00:00"
  10280. },
  10281. {
  10282. "name": "theseer/tokenizer",
  10283. "version": "1.2.0",
  10284. "source": {
  10285. "type": "git",
  10286. "url": "https://github.com/theseer/tokenizer.git",
  10287. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10288. },
  10289. "dist": {
  10290. "type": "zip",
  10291. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10292. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10293. "shasum": "",
  10294. "mirrors": [
  10295. {
  10296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10297. "preferred": true
  10298. }
  10299. ]
  10300. },
  10301. "require": {
  10302. "ext-dom": "*",
  10303. "ext-tokenizer": "*",
  10304. "ext-xmlwriter": "*",
  10305. "php": "^7.2 || ^8.0"
  10306. },
  10307. "type": "library",
  10308. "autoload": {
  10309. "classmap": [
  10310. "src/"
  10311. ]
  10312. },
  10313. "notification-url": "https://packagist.org/downloads/",
  10314. "license": [
  10315. "BSD-3-Clause"
  10316. ],
  10317. "authors": [
  10318. {
  10319. "name": "Arne Blankerts",
  10320. "email": "arne@blankerts.de",
  10321. "role": "Developer"
  10322. }
  10323. ],
  10324. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10325. "support": {
  10326. "issues": "https://github.com/theseer/tokenizer/issues",
  10327. "source": "https://github.com/theseer/tokenizer/tree/master"
  10328. },
  10329. "funding": [
  10330. {
  10331. "url": "https://github.com/theseer",
  10332. "type": "github"
  10333. }
  10334. ],
  10335. "time": "2020-07-12T23:59:07+00:00"
  10336. },
  10337. {
  10338. "name": "webmozart/assert",
  10339. "version": "1.10.0",
  10340. "source": {
  10341. "type": "git",
  10342. "url": "https://github.com/webmozarts/assert.git",
  10343. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10344. },
  10345. "dist": {
  10346. "type": "zip",
  10347. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10348. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10349. "shasum": "",
  10350. "mirrors": [
  10351. {
  10352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10353. "preferred": true
  10354. }
  10355. ]
  10356. },
  10357. "require": {
  10358. "php": "^7.2 || ^8.0",
  10359. "symfony/polyfill-ctype": "^1.8"
  10360. },
  10361. "conflict": {
  10362. "phpstan/phpstan": "<0.12.20",
  10363. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10364. },
  10365. "require-dev": {
  10366. "phpunit/phpunit": "^8.5.13"
  10367. },
  10368. "type": "library",
  10369. "extra": {
  10370. "branch-alias": {
  10371. "dev-master": "1.10-dev"
  10372. }
  10373. },
  10374. "autoload": {
  10375. "psr-4": {
  10376. "Webmozart\\Assert\\": "src/"
  10377. }
  10378. },
  10379. "notification-url": "https://packagist.org/downloads/",
  10380. "license": [
  10381. "MIT"
  10382. ],
  10383. "authors": [
  10384. {
  10385. "name": "Bernhard Schussek",
  10386. "email": "bschussek@gmail.com"
  10387. }
  10388. ],
  10389. "description": "Assertions to validate method input/output with nice error messages.",
  10390. "keywords": [
  10391. "assert",
  10392. "check",
  10393. "validate"
  10394. ],
  10395. "support": {
  10396. "issues": "https://github.com/webmozarts/assert/issues",
  10397. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10398. },
  10399. "time": "2021-03-09T10:59:23+00:00"
  10400. }
  10401. ],
  10402. "aliases": [],
  10403. "minimum-stability": "dev",
  10404. "stability-flags": [],
  10405. "prefer-stable": true,
  10406. "prefer-lowest": false,
  10407. "platform": {
  10408. "php": "^7.2.14",
  10409. "ext-bcmath": "*",
  10410. "ext-json": "*",
  10411. "ext-mbstring": "*",
  10412. "ext-openssl": "*",
  10413. "ext-pdo": "*"
  10414. },
  10415. "platform-dev": [],
  10416. "platform-overrides": {
  10417. "ext-pcntl": "7.2",
  10418. "ext-posix": "7.2"
  10419. },
  10420. "plugin-api-version": "2.1.0"
  10421. }