composer.lock 376 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463
  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": "0569fe65bebd55bd7e10b338e8c5c98d",
  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.3",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  79. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  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.9.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.3"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://github.com/BenMorel",
  125. "type": "github"
  126. },
  127. {
  128. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  129. "type": "tidelift"
  130. }
  131. ],
  132. "time": "2021-08-15T20:50:18+00:00"
  133. },
  134. {
  135. "name": "cakephp/chronos",
  136. "version": "2.2.0",
  137. "source": {
  138. "type": "git",
  139. "url": "https://github.com/cakephp/chronos.git",
  140. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d"
  141. },
  142. "dist": {
  143. "type": "zip",
  144. "url": "https://api.github.com/repos/cakephp/chronos/zipball/556e14da67307ffc2e68beeb7df0694dc8d1207d",
  145. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d",
  146. "shasum": "",
  147. "mirrors": [
  148. {
  149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  150. "preferred": true
  151. }
  152. ]
  153. },
  154. "require": {
  155. "php": ">=7.2"
  156. },
  157. "require-dev": {
  158. "cakephp/cakephp-codesniffer": "^4.5",
  159. "phpunit/phpunit": "^8.0 || ^9.0"
  160. },
  161. "type": "library",
  162. "autoload": {
  163. "psr-4": {
  164. "Cake\\Chronos\\": "src/"
  165. },
  166. "files": [
  167. "src/carbon_compat.php"
  168. ]
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "MIT"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Brian Nesbitt",
  177. "email": "brian@nesbot.com",
  178. "homepage": "http://nesbot.com"
  179. },
  180. {
  181. "name": "The CakePHP Team",
  182. "homepage": "http://cakephp.org"
  183. }
  184. ],
  185. "description": "A simple API extension for DateTime.",
  186. "homepage": "http://cakephp.org",
  187. "keywords": [
  188. "date",
  189. "datetime",
  190. "time"
  191. ],
  192. "support": {
  193. "irc": "irc://irc.freenode.org/cakephp",
  194. "issues": "https://github.com/cakephp/chronos/issues",
  195. "source": "https://github.com/cakephp/chronos"
  196. },
  197. "time": "2021-06-17T13:49:10+00:00"
  198. },
  199. {
  200. "name": "dasprid/enum",
  201. "version": "1.0.3",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/DASPRiD/Enum.git",
  205. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  210. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  211. "shasum": "",
  212. "mirrors": [
  213. {
  214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  215. "preferred": true
  216. }
  217. ]
  218. },
  219. "require-dev": {
  220. "phpunit/phpunit": "^7 | ^8 | ^9",
  221. "squizlabs/php_codesniffer": "^3.4"
  222. },
  223. "type": "library",
  224. "autoload": {
  225. "psr-4": {
  226. "DASPRiD\\Enum\\": "src/"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "BSD-2-Clause"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Ben Scholzen 'DASPRiD'",
  236. "email": "mail@dasprids.de",
  237. "homepage": "https://dasprids.de/",
  238. "role": "Developer"
  239. }
  240. ],
  241. "description": "PHP 7.1 enum implementation",
  242. "keywords": [
  243. "enum",
  244. "map"
  245. ],
  246. "support": {
  247. "issues": "https://github.com/DASPRiD/Enum/issues",
  248. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  249. },
  250. "time": "2020-10-02T16:03:48+00:00"
  251. },
  252. {
  253. "name": "doctrine/cache",
  254. "version": "2.1.1",
  255. "source": {
  256. "type": "git",
  257. "url": "https://github.com/doctrine/cache.git",
  258. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  259. },
  260. "dist": {
  261. "type": "zip",
  262. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  263. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  264. "shasum": "",
  265. "mirrors": [
  266. {
  267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  268. "preferred": true
  269. }
  270. ]
  271. },
  272. "require": {
  273. "php": "~7.1 || ^8.0"
  274. },
  275. "conflict": {
  276. "doctrine/common": ">2.2,<2.4"
  277. },
  278. "require-dev": {
  279. "alcaeus/mongo-php-adapter": "^1.1",
  280. "cache/integration-tests": "dev-master",
  281. "doctrine/coding-standard": "^8.0",
  282. "mongodb/mongodb": "^1.1",
  283. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  284. "predis/predis": "~1.0",
  285. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  286. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  287. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  288. },
  289. "suggest": {
  290. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "MIT"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Guilherme Blanco",
  305. "email": "guilhermeblanco@gmail.com"
  306. },
  307. {
  308. "name": "Roman Borschel",
  309. "email": "roman@code-factory.org"
  310. },
  311. {
  312. "name": "Benjamin Eberlei",
  313. "email": "kontakt@beberlei.de"
  314. },
  315. {
  316. "name": "Jonathan Wage",
  317. "email": "jonwage@gmail.com"
  318. },
  319. {
  320. "name": "Johannes Schmitt",
  321. "email": "schmittjoh@gmail.com"
  322. }
  323. ],
  324. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  325. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  326. "keywords": [
  327. "abstraction",
  328. "apcu",
  329. "cache",
  330. "caching",
  331. "couchdb",
  332. "memcached",
  333. "php",
  334. "redis",
  335. "xcache"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/doctrine/cache/issues",
  339. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://www.doctrine-project.org/sponsorship.html",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://www.patreon.com/phpdoctrine",
  348. "type": "patreon"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2021-07-17T14:49:29+00:00"
  356. },
  357. {
  358. "name": "doctrine/dbal",
  359. "version": "2.13.3",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/doctrine/dbal.git",
  363. "reference": "0d7adf4cadfee6f70850e5b163e6cdd706417838"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0d7adf4cadfee6f70850e5b163e6cdd706417838",
  368. "reference": "0d7adf4cadfee6f70850e5b163e6cdd706417838",
  369. "shasum": "",
  370. "mirrors": [
  371. {
  372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  373. "preferred": true
  374. }
  375. ]
  376. },
  377. "require": {
  378. "doctrine/cache": "^1.0|^2.0",
  379. "doctrine/deprecations": "^0.5.3",
  380. "doctrine/event-manager": "^1.0",
  381. "ext-pdo": "*",
  382. "php": "^7.1 || ^8"
  383. },
  384. "require-dev": {
  385. "doctrine/coding-standard": "9.0.0",
  386. "jetbrains/phpstorm-stubs": "2021.1",
  387. "phpstan/phpstan": "0.12.96",
  388. "phpunit/phpunit": "^7.5.20|^8.5|9.5.5",
  389. "psalm/plugin-phpunit": "0.16.1",
  390. "squizlabs/php_codesniffer": "3.6.0",
  391. "symfony/cache": "^4.4",
  392. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  393. "vimeo/psalm": "4.10.0"
  394. },
  395. "suggest": {
  396. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  397. },
  398. "bin": [
  399. "bin/doctrine-dbal"
  400. ],
  401. "type": "library",
  402. "autoload": {
  403. "psr-4": {
  404. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Guilherme Blanco",
  414. "email": "guilhermeblanco@gmail.com"
  415. },
  416. {
  417. "name": "Roman Borschel",
  418. "email": "roman@code-factory.org"
  419. },
  420. {
  421. "name": "Benjamin Eberlei",
  422. "email": "kontakt@beberlei.de"
  423. },
  424. {
  425. "name": "Jonathan Wage",
  426. "email": "jonwage@gmail.com"
  427. }
  428. ],
  429. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  430. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  431. "keywords": [
  432. "abstraction",
  433. "database",
  434. "db2",
  435. "dbal",
  436. "mariadb",
  437. "mssql",
  438. "mysql",
  439. "oci8",
  440. "oracle",
  441. "pdo",
  442. "pgsql",
  443. "postgresql",
  444. "queryobject",
  445. "sasql",
  446. "sql",
  447. "sqlanywhere",
  448. "sqlite",
  449. "sqlserver",
  450. "sqlsrv"
  451. ],
  452. "support": {
  453. "issues": "https://github.com/doctrine/dbal/issues",
  454. "source": "https://github.com/doctrine/dbal/tree/2.13.3"
  455. },
  456. "funding": [
  457. {
  458. "url": "https://www.doctrine-project.org/sponsorship.html",
  459. "type": "custom"
  460. },
  461. {
  462. "url": "https://www.patreon.com/phpdoctrine",
  463. "type": "patreon"
  464. },
  465. {
  466. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  467. "type": "tidelift"
  468. }
  469. ],
  470. "time": "2021-09-12T19:11:48+00:00"
  471. },
  472. {
  473. "name": "doctrine/deprecations",
  474. "version": "v0.5.3",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/doctrine/deprecations.git",
  478. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  483. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  484. "shasum": "",
  485. "mirrors": [
  486. {
  487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  488. "preferred": true
  489. }
  490. ]
  491. },
  492. "require": {
  493. "php": "^7.1|^8.0"
  494. },
  495. "require-dev": {
  496. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  497. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  498. "psr/log": "^1.0"
  499. },
  500. "suggest": {
  501. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  502. },
  503. "type": "library",
  504. "autoload": {
  505. "psr-4": {
  506. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  507. }
  508. },
  509. "notification-url": "https://packagist.org/downloads/",
  510. "license": [
  511. "MIT"
  512. ],
  513. "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.",
  514. "homepage": "https://www.doctrine-project.org/",
  515. "support": {
  516. "issues": "https://github.com/doctrine/deprecations/issues",
  517. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  518. },
  519. "time": "2021-03-21T12:59:47+00:00"
  520. },
  521. {
  522. "name": "doctrine/event-manager",
  523. "version": "1.1.1",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/doctrine/event-manager.git",
  527. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  532. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  533. "shasum": "",
  534. "mirrors": [
  535. {
  536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  537. "preferred": true
  538. }
  539. ]
  540. },
  541. "require": {
  542. "php": "^7.1 || ^8.0"
  543. },
  544. "conflict": {
  545. "doctrine/common": "<2.9@dev"
  546. },
  547. "require-dev": {
  548. "doctrine/coding-standard": "^6.0",
  549. "phpunit/phpunit": "^7.0"
  550. },
  551. "type": "library",
  552. "extra": {
  553. "branch-alias": {
  554. "dev-master": "1.0.x-dev"
  555. }
  556. },
  557. "autoload": {
  558. "psr-4": {
  559. "Doctrine\\Common\\": "lib/Doctrine/Common"
  560. }
  561. },
  562. "notification-url": "https://packagist.org/downloads/",
  563. "license": [
  564. "MIT"
  565. ],
  566. "authors": [
  567. {
  568. "name": "Guilherme Blanco",
  569. "email": "guilhermeblanco@gmail.com"
  570. },
  571. {
  572. "name": "Roman Borschel",
  573. "email": "roman@code-factory.org"
  574. },
  575. {
  576. "name": "Benjamin Eberlei",
  577. "email": "kontakt@beberlei.de"
  578. },
  579. {
  580. "name": "Jonathan Wage",
  581. "email": "jonwage@gmail.com"
  582. },
  583. {
  584. "name": "Johannes Schmitt",
  585. "email": "schmittjoh@gmail.com"
  586. },
  587. {
  588. "name": "Marco Pivetta",
  589. "email": "ocramius@gmail.com"
  590. }
  591. ],
  592. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  593. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  594. "keywords": [
  595. "event",
  596. "event dispatcher",
  597. "event manager",
  598. "event system",
  599. "events"
  600. ],
  601. "support": {
  602. "issues": "https://github.com/doctrine/event-manager/issues",
  603. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  604. },
  605. "funding": [
  606. {
  607. "url": "https://www.doctrine-project.org/sponsorship.html",
  608. "type": "custom"
  609. },
  610. {
  611. "url": "https://www.patreon.com/phpdoctrine",
  612. "type": "patreon"
  613. },
  614. {
  615. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  616. "type": "tidelift"
  617. }
  618. ],
  619. "time": "2020-05-29T18:28:51+00:00"
  620. },
  621. {
  622. "name": "doctrine/inflector",
  623. "version": "2.0.3",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/doctrine/inflector.git",
  627. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  632. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  633. "shasum": "",
  634. "mirrors": [
  635. {
  636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  637. "preferred": true
  638. }
  639. ]
  640. },
  641. "require": {
  642. "php": "^7.2 || ^8.0"
  643. },
  644. "require-dev": {
  645. "doctrine/coding-standard": "^7.0",
  646. "phpstan/phpstan": "^0.11",
  647. "phpstan/phpstan-phpunit": "^0.11",
  648. "phpstan/phpstan-strict-rules": "^0.11",
  649. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  650. },
  651. "type": "library",
  652. "extra": {
  653. "branch-alias": {
  654. "dev-master": "2.0.x-dev"
  655. }
  656. },
  657. "autoload": {
  658. "psr-4": {
  659. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  660. }
  661. },
  662. "notification-url": "https://packagist.org/downloads/",
  663. "license": [
  664. "MIT"
  665. ],
  666. "authors": [
  667. {
  668. "name": "Guilherme Blanco",
  669. "email": "guilhermeblanco@gmail.com"
  670. },
  671. {
  672. "name": "Roman Borschel",
  673. "email": "roman@code-factory.org"
  674. },
  675. {
  676. "name": "Benjamin Eberlei",
  677. "email": "kontakt@beberlei.de"
  678. },
  679. {
  680. "name": "Jonathan Wage",
  681. "email": "jonwage@gmail.com"
  682. },
  683. {
  684. "name": "Johannes Schmitt",
  685. "email": "schmittjoh@gmail.com"
  686. }
  687. ],
  688. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  689. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  690. "keywords": [
  691. "inflection",
  692. "inflector",
  693. "lowercase",
  694. "manipulation",
  695. "php",
  696. "plural",
  697. "singular",
  698. "strings",
  699. "uppercase",
  700. "words"
  701. ],
  702. "support": {
  703. "issues": "https://github.com/doctrine/inflector/issues",
  704. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  705. },
  706. "funding": [
  707. {
  708. "url": "https://www.doctrine-project.org/sponsorship.html",
  709. "type": "custom"
  710. },
  711. {
  712. "url": "https://www.patreon.com/phpdoctrine",
  713. "type": "patreon"
  714. },
  715. {
  716. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  717. "type": "tidelift"
  718. }
  719. ],
  720. "time": "2020-05-29T15:13:26+00:00"
  721. },
  722. {
  723. "name": "doctrine/lexer",
  724. "version": "1.2.1",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/doctrine/lexer.git",
  728. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  733. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  734. "shasum": "",
  735. "mirrors": [
  736. {
  737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  738. "preferred": true
  739. }
  740. ]
  741. },
  742. "require": {
  743. "php": "^7.2 || ^8.0"
  744. },
  745. "require-dev": {
  746. "doctrine/coding-standard": "^6.0",
  747. "phpstan/phpstan": "^0.11.8",
  748. "phpunit/phpunit": "^8.2"
  749. },
  750. "type": "library",
  751. "extra": {
  752. "branch-alias": {
  753. "dev-master": "1.2.x-dev"
  754. }
  755. },
  756. "autoload": {
  757. "psr-4": {
  758. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  759. }
  760. },
  761. "notification-url": "https://packagist.org/downloads/",
  762. "license": [
  763. "MIT"
  764. ],
  765. "authors": [
  766. {
  767. "name": "Guilherme Blanco",
  768. "email": "guilhermeblanco@gmail.com"
  769. },
  770. {
  771. "name": "Roman Borschel",
  772. "email": "roman@code-factory.org"
  773. },
  774. {
  775. "name": "Johannes Schmitt",
  776. "email": "schmittjoh@gmail.com"
  777. }
  778. ],
  779. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  780. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  781. "keywords": [
  782. "annotations",
  783. "docblock",
  784. "lexer",
  785. "parser",
  786. "php"
  787. ],
  788. "support": {
  789. "issues": "https://github.com/doctrine/lexer/issues",
  790. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  791. },
  792. "funding": [
  793. {
  794. "url": "https://www.doctrine-project.org/sponsorship.html",
  795. "type": "custom"
  796. },
  797. {
  798. "url": "https://www.patreon.com/phpdoctrine",
  799. "type": "patreon"
  800. },
  801. {
  802. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  803. "type": "tidelift"
  804. }
  805. ],
  806. "time": "2020-05-25T17:44:05+00:00"
  807. },
  808. {
  809. "name": "dragonmantank/cron-expression",
  810. "version": "v2.3.1",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/dragonmantank/cron-expression.git",
  814. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  819. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "php": "^7.0|^8.0"
  830. },
  831. "require-dev": {
  832. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  833. },
  834. "type": "library",
  835. "extra": {
  836. "branch-alias": {
  837. "dev-master": "2.3-dev"
  838. }
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "Cron\\": "src/Cron/"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "MIT"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Michael Dowling",
  852. "email": "mtdowling@gmail.com",
  853. "homepage": "https://github.com/mtdowling"
  854. },
  855. {
  856. "name": "Chris Tankersley",
  857. "email": "chris@ctankersley.com",
  858. "homepage": "https://github.com/dragonmantank"
  859. }
  860. ],
  861. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  862. "keywords": [
  863. "cron",
  864. "schedule"
  865. ],
  866. "support": {
  867. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  868. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  869. },
  870. "funding": [
  871. {
  872. "url": "https://github.com/dragonmantank",
  873. "type": "github"
  874. }
  875. ],
  876. "time": "2020-10-13T00:52:37+00:00"
  877. },
  878. {
  879. "name": "egulias/email-validator",
  880. "version": "2.1.25",
  881. "source": {
  882. "type": "git",
  883. "url": "https://github.com/egulias/EmailValidator.git",
  884. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  885. },
  886. "dist": {
  887. "type": "zip",
  888. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  889. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  890. "shasum": "",
  891. "mirrors": [
  892. {
  893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  894. "preferred": true
  895. }
  896. ]
  897. },
  898. "require": {
  899. "doctrine/lexer": "^1.0.1",
  900. "php": ">=5.5",
  901. "symfony/polyfill-intl-idn": "^1.10"
  902. },
  903. "require-dev": {
  904. "dominicsayers/isemail": "^3.0.7",
  905. "phpunit/phpunit": "^4.8.36|^7.5.15",
  906. "satooshi/php-coveralls": "^1.0.1"
  907. },
  908. "suggest": {
  909. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  910. },
  911. "type": "library",
  912. "extra": {
  913. "branch-alias": {
  914. "dev-master": "2.1.x-dev"
  915. }
  916. },
  917. "autoload": {
  918. "psr-4": {
  919. "Egulias\\EmailValidator\\": "src"
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "MIT"
  925. ],
  926. "authors": [
  927. {
  928. "name": "Eduardo Gulias Davis"
  929. }
  930. ],
  931. "description": "A library for validating emails against several RFCs",
  932. "homepage": "https://github.com/egulias/EmailValidator",
  933. "keywords": [
  934. "email",
  935. "emailvalidation",
  936. "emailvalidator",
  937. "validation",
  938. "validator"
  939. ],
  940. "support": {
  941. "issues": "https://github.com/egulias/EmailValidator/issues",
  942. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  943. },
  944. "funding": [
  945. {
  946. "url": "https://github.com/egulias",
  947. "type": "github"
  948. }
  949. ],
  950. "time": "2020-12-29T14:50:06+00:00"
  951. },
  952. {
  953. "name": "endroid/qr-code",
  954. "version": "3.9.7",
  955. "source": {
  956. "type": "git",
  957. "url": "https://github.com/endroid/qr-code.git",
  958. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  959. },
  960. "dist": {
  961. "type": "zip",
  962. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  963. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  964. "shasum": "",
  965. "mirrors": [
  966. {
  967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  968. "preferred": true
  969. }
  970. ]
  971. },
  972. "require": {
  973. "bacon/bacon-qr-code": "^2.0",
  974. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  975. "myclabs/php-enum": "^1.5",
  976. "php": "^7.3||^8.0",
  977. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  978. "symfony/property-access": "^3.4||^4.4||^5.0"
  979. },
  980. "require-dev": {
  981. "endroid/quality": "^1.5.2",
  982. "setasign/fpdf": "^1.8"
  983. },
  984. "suggest": {
  985. "ext-gd": "Required for generating PNG images",
  986. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  987. "setasign/fpdf": "Required to use the FPDF writer.",
  988. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  989. },
  990. "type": "library",
  991. "extra": {
  992. "branch-alias": {
  993. "dev-master": "3.x-dev"
  994. }
  995. },
  996. "autoload": {
  997. "psr-4": {
  998. "Endroid\\QrCode\\": "src/"
  999. }
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Jeroen van den Enden",
  1008. "email": "info@endroid.nl"
  1009. }
  1010. ],
  1011. "description": "Endroid QR Code",
  1012. "homepage": "https://github.com/endroid/qr-code",
  1013. "keywords": [
  1014. "bundle",
  1015. "code",
  1016. "endroid",
  1017. "php",
  1018. "qr",
  1019. "qrcode"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/endroid/qr-code/issues",
  1023. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://github.com/endroid",
  1028. "type": "github"
  1029. }
  1030. ],
  1031. "time": "2021-04-20T19:10:54+00:00"
  1032. },
  1033. {
  1034. "name": "ezyang/htmlpurifier",
  1035. "version": "v4.13.0",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/ezyang/htmlpurifier.git",
  1039. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1044. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1045. "shasum": "",
  1046. "mirrors": [
  1047. {
  1048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1049. "preferred": true
  1050. }
  1051. ]
  1052. },
  1053. "require": {
  1054. "php": ">=5.2"
  1055. },
  1056. "require-dev": {
  1057. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1058. },
  1059. "type": "library",
  1060. "autoload": {
  1061. "psr-0": {
  1062. "HTMLPurifier": "library/"
  1063. },
  1064. "files": [
  1065. "library/HTMLPurifier.composer.php"
  1066. ],
  1067. "exclude-from-classmap": [
  1068. "/library/HTMLPurifier/Language/"
  1069. ]
  1070. },
  1071. "notification-url": "https://packagist.org/downloads/",
  1072. "license": [
  1073. "LGPL-2.1-or-later"
  1074. ],
  1075. "authors": [
  1076. {
  1077. "name": "Edward Z. Yang",
  1078. "email": "admin@htmlpurifier.org",
  1079. "homepage": "http://ezyang.com"
  1080. }
  1081. ],
  1082. "description": "Standards compliant HTML filter written in PHP",
  1083. "homepage": "http://htmlpurifier.org/",
  1084. "keywords": [
  1085. "html"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1089. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1090. },
  1091. "time": "2020-06-29T00:56:53+00:00"
  1092. },
  1093. {
  1094. "name": "facade/flare-client-php",
  1095. "version": "1.9.1",
  1096. "source": {
  1097. "type": "git",
  1098. "url": "https://github.com/facade/flare-client-php.git",
  1099. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed"
  1100. },
  1101. "dist": {
  1102. "type": "zip",
  1103. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1104. "reference": "b2adf1512755637d0cef4f7d1b54301325ac78ed",
  1105. "shasum": "",
  1106. "mirrors": [
  1107. {
  1108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1109. "preferred": true
  1110. }
  1111. ]
  1112. },
  1113. "require": {
  1114. "facade/ignition-contracts": "~1.0",
  1115. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1116. "php": "^7.1|^8.0",
  1117. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1118. "symfony/mime": "^3.4|^4.0|^5.1",
  1119. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1120. },
  1121. "require-dev": {
  1122. "friendsofphp/php-cs-fixer": "^2.14",
  1123. "phpunit/phpunit": "^7.5.16",
  1124. "spatie/phpunit-snapshot-assertions": "^2.0"
  1125. },
  1126. "type": "library",
  1127. "extra": {
  1128. "branch-alias": {
  1129. "dev-master": "1.0-dev"
  1130. }
  1131. },
  1132. "autoload": {
  1133. "psr-4": {
  1134. "Facade\\FlareClient\\": "src"
  1135. },
  1136. "files": [
  1137. "src/helpers.php"
  1138. ]
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "description": "Send PHP errors to Flare",
  1145. "homepage": "https://github.com/facade/flare-client-php",
  1146. "keywords": [
  1147. "exception",
  1148. "facade",
  1149. "flare",
  1150. "reporting"
  1151. ],
  1152. "support": {
  1153. "issues": "https://github.com/facade/flare-client-php/issues",
  1154. "source": "https://github.com/facade/flare-client-php/tree/1.9.1"
  1155. },
  1156. "funding": [
  1157. {
  1158. "url": "https://github.com/spatie",
  1159. "type": "github"
  1160. }
  1161. ],
  1162. "time": "2021-09-13T12:16:46+00:00"
  1163. },
  1164. {
  1165. "name": "facade/ignition",
  1166. "version": "2.13.1",
  1167. "source": {
  1168. "type": "git",
  1169. "url": "https://github.com/facade/ignition.git",
  1170. "reference": "e3f49bef7b4165fa4b8a9dc579e7b63fa06aef78"
  1171. },
  1172. "dist": {
  1173. "type": "zip",
  1174. "url": "https://api.github.com/repos/facade/ignition/zipball/e3f49bef7b4165fa4b8a9dc579e7b63fa06aef78",
  1175. "reference": "e3f49bef7b4165fa4b8a9dc579e7b63fa06aef78",
  1176. "shasum": "",
  1177. "mirrors": [
  1178. {
  1179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1180. "preferred": true
  1181. }
  1182. ]
  1183. },
  1184. "require": {
  1185. "ext-json": "*",
  1186. "ext-mbstring": "*",
  1187. "facade/flare-client-php": "^1.9.1",
  1188. "facade/ignition-contracts": "^1.0.2",
  1189. "illuminate/support": "^7.0|^8.0",
  1190. "monolog/monolog": "^2.0",
  1191. "php": "^7.2.5|^8.0",
  1192. "symfony/console": "^5.0",
  1193. "symfony/var-dumper": "^5.0"
  1194. },
  1195. "require-dev": {
  1196. "friendsofphp/php-cs-fixer": "^2.14",
  1197. "mockery/mockery": "^1.3",
  1198. "orchestra/testbench": "^5.0|^6.0",
  1199. "psalm/plugin-laravel": "^1.2"
  1200. },
  1201. "suggest": {
  1202. "laravel/telescope": "^3.1"
  1203. },
  1204. "type": "library",
  1205. "extra": {
  1206. "branch-alias": {
  1207. "dev-master": "2.x-dev"
  1208. },
  1209. "laravel": {
  1210. "providers": [
  1211. "Facade\\Ignition\\IgnitionServiceProvider"
  1212. ],
  1213. "aliases": {
  1214. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1215. }
  1216. }
  1217. },
  1218. "autoload": {
  1219. "psr-4": {
  1220. "Facade\\Ignition\\": "src"
  1221. },
  1222. "files": [
  1223. "src/helpers.php"
  1224. ]
  1225. },
  1226. "notification-url": "https://packagist.org/downloads/",
  1227. "license": [
  1228. "MIT"
  1229. ],
  1230. "description": "A beautiful error page for Laravel applications.",
  1231. "homepage": "https://github.com/facade/ignition",
  1232. "keywords": [
  1233. "error",
  1234. "flare",
  1235. "laravel",
  1236. "page"
  1237. ],
  1238. "support": {
  1239. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1240. "forum": "https://twitter.com/flareappio",
  1241. "issues": "https://github.com/facade/ignition/issues",
  1242. "source": "https://github.com/facade/ignition"
  1243. },
  1244. "time": "2021-09-13T13:01:30+00:00"
  1245. },
  1246. {
  1247. "name": "facade/ignition-contracts",
  1248. "version": "1.0.2",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/facade/ignition-contracts.git",
  1252. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1257. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1258. "shasum": "",
  1259. "mirrors": [
  1260. {
  1261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1262. "preferred": true
  1263. }
  1264. ]
  1265. },
  1266. "require": {
  1267. "php": "^7.3|^8.0"
  1268. },
  1269. "require-dev": {
  1270. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1271. "phpunit/phpunit": "^9.3.11",
  1272. "vimeo/psalm": "^3.17.1"
  1273. },
  1274. "type": "library",
  1275. "autoload": {
  1276. "psr-4": {
  1277. "Facade\\IgnitionContracts\\": "src"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Freek Van der Herten",
  1287. "email": "freek@spatie.be",
  1288. "homepage": "https://flareapp.io",
  1289. "role": "Developer"
  1290. }
  1291. ],
  1292. "description": "Solution contracts for Ignition",
  1293. "homepage": "https://github.com/facade/ignition-contracts",
  1294. "keywords": [
  1295. "contracts",
  1296. "flare",
  1297. "ignition"
  1298. ],
  1299. "support": {
  1300. "issues": "https://github.com/facade/ignition-contracts/issues",
  1301. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1302. },
  1303. "time": "2020-10-16T08:27:54+00:00"
  1304. },
  1305. {
  1306. "name": "fideloper/proxy",
  1307. "version": "4.4.1",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/fideloper/TrustedProxy.git",
  1311. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1316. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1317. "shasum": "",
  1318. "mirrors": [
  1319. {
  1320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1321. "preferred": true
  1322. }
  1323. ]
  1324. },
  1325. "require": {
  1326. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1327. "php": ">=5.4.0"
  1328. },
  1329. "require-dev": {
  1330. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1331. "mockery/mockery": "^1.0",
  1332. "phpunit/phpunit": "^6.0"
  1333. },
  1334. "type": "library",
  1335. "extra": {
  1336. "laravel": {
  1337. "providers": [
  1338. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1339. ]
  1340. }
  1341. },
  1342. "autoload": {
  1343. "psr-4": {
  1344. "Fideloper\\Proxy\\": "src/"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Chris Fidao",
  1354. "email": "fideloper@gmail.com"
  1355. }
  1356. ],
  1357. "description": "Set trusted proxies for Laravel",
  1358. "keywords": [
  1359. "load balancing",
  1360. "proxy",
  1361. "trusted proxy"
  1362. ],
  1363. "support": {
  1364. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1365. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1366. },
  1367. "time": "2020-10-22T13:48:01+00:00"
  1368. },
  1369. {
  1370. "name": "firebase/php-jwt",
  1371. "version": "v5.4.0",
  1372. "source": {
  1373. "type": "git",
  1374. "url": "https://github.com/firebase/php-jwt.git",
  1375. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2"
  1376. },
  1377. "dist": {
  1378. "type": "zip",
  1379. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1380. "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2",
  1381. "shasum": "",
  1382. "mirrors": [
  1383. {
  1384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1385. "preferred": true
  1386. }
  1387. ]
  1388. },
  1389. "require": {
  1390. "php": ">=5.3.0"
  1391. },
  1392. "require-dev": {
  1393. "phpunit/phpunit": ">=4.8 <=9"
  1394. },
  1395. "suggest": {
  1396. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1397. },
  1398. "type": "library",
  1399. "autoload": {
  1400. "psr-4": {
  1401. "Firebase\\JWT\\": "src"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "BSD-3-Clause"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Neuman Vong",
  1411. "email": "neuman+pear@twilio.com",
  1412. "role": "Developer"
  1413. },
  1414. {
  1415. "name": "Anant Narayanan",
  1416. "email": "anant@php.net",
  1417. "role": "Developer"
  1418. }
  1419. ],
  1420. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1421. "homepage": "https://github.com/firebase/php-jwt",
  1422. "keywords": [
  1423. "jwt",
  1424. "php"
  1425. ],
  1426. "support": {
  1427. "issues": "https://github.com/firebase/php-jwt/issues",
  1428. "source": "https://github.com/firebase/php-jwt/tree/v5.4.0"
  1429. },
  1430. "time": "2021-06-23T19:00:23+00:00"
  1431. },
  1432. {
  1433. "name": "guzzlehttp/guzzle",
  1434. "version": "6.5.5",
  1435. "source": {
  1436. "type": "git",
  1437. "url": "https://github.com/guzzle/guzzle.git",
  1438. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1439. },
  1440. "dist": {
  1441. "type": "zip",
  1442. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1443. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1444. "shasum": "",
  1445. "mirrors": [
  1446. {
  1447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1448. "preferred": true
  1449. }
  1450. ]
  1451. },
  1452. "require": {
  1453. "ext-json": "*",
  1454. "guzzlehttp/promises": "^1.0",
  1455. "guzzlehttp/psr7": "^1.6.1",
  1456. "php": ">=5.5",
  1457. "symfony/polyfill-intl-idn": "^1.17.0"
  1458. },
  1459. "require-dev": {
  1460. "ext-curl": "*",
  1461. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1462. "psr/log": "^1.1"
  1463. },
  1464. "suggest": {
  1465. "psr/log": "Required for using the Log middleware"
  1466. },
  1467. "type": "library",
  1468. "extra": {
  1469. "branch-alias": {
  1470. "dev-master": "6.5-dev"
  1471. }
  1472. },
  1473. "autoload": {
  1474. "psr-4": {
  1475. "GuzzleHttp\\": "src/"
  1476. },
  1477. "files": [
  1478. "src/functions_include.php"
  1479. ]
  1480. },
  1481. "notification-url": "https://packagist.org/downloads/",
  1482. "license": [
  1483. "MIT"
  1484. ],
  1485. "authors": [
  1486. {
  1487. "name": "Michael Dowling",
  1488. "email": "mtdowling@gmail.com",
  1489. "homepage": "https://github.com/mtdowling"
  1490. }
  1491. ],
  1492. "description": "Guzzle is a PHP HTTP client library",
  1493. "homepage": "http://guzzlephp.org/",
  1494. "keywords": [
  1495. "client",
  1496. "curl",
  1497. "framework",
  1498. "http",
  1499. "http client",
  1500. "rest",
  1501. "web service"
  1502. ],
  1503. "support": {
  1504. "issues": "https://github.com/guzzle/guzzle/issues",
  1505. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1506. },
  1507. "time": "2020-06-16T21:01:06+00:00"
  1508. },
  1509. {
  1510. "name": "guzzlehttp/promises",
  1511. "version": "1.4.1",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/guzzle/promises.git",
  1515. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1520. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1521. "shasum": "",
  1522. "mirrors": [
  1523. {
  1524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1525. "preferred": true
  1526. }
  1527. ]
  1528. },
  1529. "require": {
  1530. "php": ">=5.5"
  1531. },
  1532. "require-dev": {
  1533. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1534. },
  1535. "type": "library",
  1536. "extra": {
  1537. "branch-alias": {
  1538. "dev-master": "1.4-dev"
  1539. }
  1540. },
  1541. "autoload": {
  1542. "psr-4": {
  1543. "GuzzleHttp\\Promise\\": "src/"
  1544. },
  1545. "files": [
  1546. "src/functions_include.php"
  1547. ]
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Michael Dowling",
  1556. "email": "mtdowling@gmail.com",
  1557. "homepage": "https://github.com/mtdowling"
  1558. }
  1559. ],
  1560. "description": "Guzzle promises library",
  1561. "keywords": [
  1562. "promise"
  1563. ],
  1564. "support": {
  1565. "issues": "https://github.com/guzzle/promises/issues",
  1566. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1567. },
  1568. "time": "2021-03-07T09:25:29+00:00"
  1569. },
  1570. {
  1571. "name": "guzzlehttp/psr7",
  1572. "version": "1.8.2",
  1573. "source": {
  1574. "type": "git",
  1575. "url": "https://github.com/guzzle/psr7.git",
  1576. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1577. },
  1578. "dist": {
  1579. "type": "zip",
  1580. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1581. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1582. "shasum": "",
  1583. "mirrors": [
  1584. {
  1585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1586. "preferred": true
  1587. }
  1588. ]
  1589. },
  1590. "require": {
  1591. "php": ">=5.4.0",
  1592. "psr/http-message": "~1.0",
  1593. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1594. },
  1595. "provide": {
  1596. "psr/http-message-implementation": "1.0"
  1597. },
  1598. "require-dev": {
  1599. "ext-zlib": "*",
  1600. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1601. },
  1602. "suggest": {
  1603. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1604. },
  1605. "type": "library",
  1606. "extra": {
  1607. "branch-alias": {
  1608. "dev-master": "1.7-dev"
  1609. }
  1610. },
  1611. "autoload": {
  1612. "psr-4": {
  1613. "GuzzleHttp\\Psr7\\": "src/"
  1614. },
  1615. "files": [
  1616. "src/functions_include.php"
  1617. ]
  1618. },
  1619. "notification-url": "https://packagist.org/downloads/",
  1620. "license": [
  1621. "MIT"
  1622. ],
  1623. "authors": [
  1624. {
  1625. "name": "Michael Dowling",
  1626. "email": "mtdowling@gmail.com",
  1627. "homepage": "https://github.com/mtdowling"
  1628. },
  1629. {
  1630. "name": "Tobias Schultze",
  1631. "homepage": "https://github.com/Tobion"
  1632. }
  1633. ],
  1634. "description": "PSR-7 message implementation that also provides common utility methods",
  1635. "keywords": [
  1636. "http",
  1637. "message",
  1638. "psr-7",
  1639. "request",
  1640. "response",
  1641. "stream",
  1642. "uri",
  1643. "url"
  1644. ],
  1645. "support": {
  1646. "issues": "https://github.com/guzzle/psr7/issues",
  1647. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1648. },
  1649. "time": "2021-04-26T09:17:50+00:00"
  1650. },
  1651. {
  1652. "name": "intervention/image",
  1653. "version": "2.6.1",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/Intervention/image.git",
  1657. "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/Intervention/image/zipball/0925f10b259679b5d8ca58f3a2add9255ffcda45",
  1662. "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45",
  1663. "shasum": "",
  1664. "mirrors": [
  1665. {
  1666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1667. "preferred": true
  1668. }
  1669. ]
  1670. },
  1671. "require": {
  1672. "ext-fileinfo": "*",
  1673. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1674. "php": ">=5.4.0"
  1675. },
  1676. "require-dev": {
  1677. "mockery/mockery": "~0.9.2",
  1678. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1679. },
  1680. "suggest": {
  1681. "ext-gd": "to use GD library based image processing.",
  1682. "ext-imagick": "to use Imagick based image processing.",
  1683. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1684. },
  1685. "type": "library",
  1686. "extra": {
  1687. "branch-alias": {
  1688. "dev-master": "2.4-dev"
  1689. },
  1690. "laravel": {
  1691. "providers": [
  1692. "Intervention\\Image\\ImageServiceProvider"
  1693. ],
  1694. "aliases": {
  1695. "Image": "Intervention\\Image\\Facades\\Image"
  1696. }
  1697. }
  1698. },
  1699. "autoload": {
  1700. "psr-4": {
  1701. "Intervention\\Image\\": "src/Intervention/Image"
  1702. }
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "MIT"
  1707. ],
  1708. "authors": [
  1709. {
  1710. "name": "Oliver Vogel",
  1711. "email": "oliver@olivervogel.com",
  1712. "homepage": "http://olivervogel.com/"
  1713. }
  1714. ],
  1715. "description": "Image handling and manipulation library with support for Laravel integration",
  1716. "homepage": "http://image.intervention.io/",
  1717. "keywords": [
  1718. "gd",
  1719. "image",
  1720. "imagick",
  1721. "laravel",
  1722. "thumbnail",
  1723. "watermark"
  1724. ],
  1725. "support": {
  1726. "issues": "https://github.com/Intervention/image/issues",
  1727. "source": "https://github.com/Intervention/image/tree/2.6.1"
  1728. },
  1729. "funding": [
  1730. {
  1731. "url": "https://www.paypal.me/interventionphp",
  1732. "type": "custom"
  1733. },
  1734. {
  1735. "url": "https://github.com/Intervention",
  1736. "type": "github"
  1737. }
  1738. ],
  1739. "time": "2021-07-22T14:31:53+00:00"
  1740. },
  1741. {
  1742. "name": "khanamiryan/qrcode-detector-decoder",
  1743. "version": "1.0.5.2",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1747. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1752. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1753. "shasum": "",
  1754. "mirrors": [
  1755. {
  1756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1757. "preferred": true
  1758. }
  1759. ]
  1760. },
  1761. "require": {
  1762. "php": ">=5.6"
  1763. },
  1764. "require-dev": {
  1765. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1766. },
  1767. "type": "library",
  1768. "autoload": {
  1769. "psr-4": {
  1770. "Zxing\\": "lib/"
  1771. },
  1772. "files": [
  1773. "lib/Common/customFunctions.php"
  1774. ]
  1775. },
  1776. "notification-url": "https://packagist.org/downloads/",
  1777. "license": [
  1778. "MIT",
  1779. "Apache-2.0"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Ashot Khanamiryan",
  1784. "email": "a.khanamiryan@gmail.com",
  1785. "homepage": "https://github.com/khanamiryan",
  1786. "role": "Developer"
  1787. }
  1788. ],
  1789. "description": "QR code decoder / reader",
  1790. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1791. "keywords": [
  1792. "barcode",
  1793. "qr",
  1794. "zxing"
  1795. ],
  1796. "support": {
  1797. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1798. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  1799. },
  1800. "time": "2021-07-13T18:46:38+00:00"
  1801. },
  1802. {
  1803. "name": "kitetail/zttp",
  1804. "version": "v0.6.0",
  1805. "source": {
  1806. "type": "git",
  1807. "url": "https://github.com/kitetail/zttp.git",
  1808. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1809. },
  1810. "dist": {
  1811. "type": "zip",
  1812. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1813. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1814. "shasum": "",
  1815. "mirrors": [
  1816. {
  1817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1818. "preferred": true
  1819. }
  1820. ]
  1821. },
  1822. "require": {
  1823. "guzzlehttp/guzzle": "^6.0",
  1824. "php": ">=7.0",
  1825. "tightenco/collect": "^5.4"
  1826. },
  1827. "require-dev": {
  1828. "laravel/lumen-framework": "5.5.*",
  1829. "phpunit/phpunit": "^6.0"
  1830. },
  1831. "type": "library",
  1832. "autoload": {
  1833. "files": [
  1834. "src/Zttp.php"
  1835. ]
  1836. },
  1837. "notification-url": "https://packagist.org/downloads/",
  1838. "license": [
  1839. "MIT"
  1840. ],
  1841. "authors": [
  1842. {
  1843. "name": "Adam Wathan",
  1844. "email": "adam.wathan@gmail.com"
  1845. }
  1846. ],
  1847. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1848. "keywords": [
  1849. "Guzzle",
  1850. "http"
  1851. ],
  1852. "support": {
  1853. "issues": "https://github.com/kitetail/zttp/issues",
  1854. "source": "https://github.com/kitetail/zttp/tree/master"
  1855. },
  1856. "time": "2019-06-10T12:18:52+00:00"
  1857. },
  1858. {
  1859. "name": "laravel/framework",
  1860. "version": "v7.30.4",
  1861. "source": {
  1862. "type": "git",
  1863. "url": "https://github.com/laravel/framework.git",
  1864. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1865. },
  1866. "dist": {
  1867. "type": "zip",
  1868. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1869. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1870. "shasum": "",
  1871. "mirrors": [
  1872. {
  1873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1874. "preferred": true
  1875. }
  1876. ]
  1877. },
  1878. "require": {
  1879. "doctrine/inflector": "^1.4|^2.0",
  1880. "dragonmantank/cron-expression": "^2.3.1",
  1881. "egulias/email-validator": "^2.1.10",
  1882. "ext-json": "*",
  1883. "ext-mbstring": "*",
  1884. "ext-openssl": "*",
  1885. "league/commonmark": "^1.3",
  1886. "league/flysystem": "^1.1",
  1887. "monolog/monolog": "^2.0",
  1888. "nesbot/carbon": "^2.31",
  1889. "opis/closure": "^3.6",
  1890. "php": "^7.2.5|^8.0",
  1891. "psr/container": "^1.0",
  1892. "psr/simple-cache": "^1.0",
  1893. "ramsey/uuid": "^3.7|^4.0",
  1894. "swiftmailer/swiftmailer": "^6.0",
  1895. "symfony/console": "^5.0",
  1896. "symfony/error-handler": "^5.0",
  1897. "symfony/finder": "^5.0",
  1898. "symfony/http-foundation": "^5.0",
  1899. "symfony/http-kernel": "^5.0",
  1900. "symfony/mime": "^5.0",
  1901. "symfony/polyfill-php73": "^1.17",
  1902. "symfony/process": "^5.0",
  1903. "symfony/routing": "^5.0",
  1904. "symfony/var-dumper": "^5.0",
  1905. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1906. "vlucas/phpdotenv": "^4.0",
  1907. "voku/portable-ascii": "^1.4.8"
  1908. },
  1909. "conflict": {
  1910. "tightenco/collect": "<5.5.33"
  1911. },
  1912. "provide": {
  1913. "psr/container-implementation": "1.0"
  1914. },
  1915. "replace": {
  1916. "illuminate/auth": "self.version",
  1917. "illuminate/broadcasting": "self.version",
  1918. "illuminate/bus": "self.version",
  1919. "illuminate/cache": "self.version",
  1920. "illuminate/config": "self.version",
  1921. "illuminate/console": "self.version",
  1922. "illuminate/container": "self.version",
  1923. "illuminate/contracts": "self.version",
  1924. "illuminate/cookie": "self.version",
  1925. "illuminate/database": "self.version",
  1926. "illuminate/encryption": "self.version",
  1927. "illuminate/events": "self.version",
  1928. "illuminate/filesystem": "self.version",
  1929. "illuminate/hashing": "self.version",
  1930. "illuminate/http": "self.version",
  1931. "illuminate/log": "self.version",
  1932. "illuminate/mail": "self.version",
  1933. "illuminate/notifications": "self.version",
  1934. "illuminate/pagination": "self.version",
  1935. "illuminate/pipeline": "self.version",
  1936. "illuminate/queue": "self.version",
  1937. "illuminate/redis": "self.version",
  1938. "illuminate/routing": "self.version",
  1939. "illuminate/session": "self.version",
  1940. "illuminate/support": "self.version",
  1941. "illuminate/testing": "self.version",
  1942. "illuminate/translation": "self.version",
  1943. "illuminate/validation": "self.version",
  1944. "illuminate/view": "self.version"
  1945. },
  1946. "require-dev": {
  1947. "aws/aws-sdk-php": "^3.155",
  1948. "doctrine/dbal": "^2.6",
  1949. "filp/whoops": "^2.8",
  1950. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  1951. "league/flysystem-cached-adapter": "^1.0",
  1952. "mockery/mockery": "~1.3.3|^1.4.2",
  1953. "moontoast/math": "^1.1",
  1954. "orchestra/testbench-core": "^5.8",
  1955. "pda/pheanstalk": "^4.0",
  1956. "phpunit/phpunit": "^8.4|^9.3.3",
  1957. "predis/predis": "^1.1.1",
  1958. "symfony/cache": "^5.0"
  1959. },
  1960. "suggest": {
  1961. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  1962. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1963. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1964. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1965. "ext-memcached": "Required to use the memcache cache driver.",
  1966. "ext-pcntl": "Required to use all features of the queue worker.",
  1967. "ext-posix": "Required to use all features of the queue worker.",
  1968. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1969. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1970. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1971. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  1972. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1973. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1974. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1975. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1976. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  1977. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1978. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1979. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1980. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  1981. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1982. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1983. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1984. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1985. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1986. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1987. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1988. },
  1989. "type": "library",
  1990. "extra": {
  1991. "branch-alias": {
  1992. "dev-master": "7.x-dev"
  1993. }
  1994. },
  1995. "autoload": {
  1996. "files": [
  1997. "src/Illuminate/Foundation/helpers.php",
  1998. "src/Illuminate/Support/helpers.php"
  1999. ],
  2000. "psr-4": {
  2001. "Illuminate\\": "src/Illuminate/"
  2002. }
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "Taylor Otwell",
  2011. "email": "taylor@laravel.com"
  2012. }
  2013. ],
  2014. "description": "The Laravel Framework.",
  2015. "homepage": "https://laravel.com",
  2016. "keywords": [
  2017. "framework",
  2018. "laravel"
  2019. ],
  2020. "support": {
  2021. "issues": "https://github.com/laravel/framework/issues",
  2022. "source": "https://github.com/laravel/framework"
  2023. },
  2024. "time": "2021-01-21T14:10:48+00:00"
  2025. },
  2026. {
  2027. "name": "laravel/horizon",
  2028. "version": "v4.3.5",
  2029. "source": {
  2030. "type": "git",
  2031. "url": "https://github.com/laravel/horizon.git",
  2032. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2033. },
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2037. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2038. "shasum": "",
  2039. "mirrors": [
  2040. {
  2041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2042. "preferred": true
  2043. }
  2044. ]
  2045. },
  2046. "require": {
  2047. "cakephp/chronos": "^2.0",
  2048. "ext-json": "*",
  2049. "ext-pcntl": "*",
  2050. "ext-posix": "*",
  2051. "illuminate/contracts": "^7.0",
  2052. "illuminate/queue": "^7.0",
  2053. "illuminate/support": "^7.0",
  2054. "php": "^7.2",
  2055. "ramsey/uuid": "^3.5|^4.0",
  2056. "symfony/error-handler": "^5.0",
  2057. "symfony/process": "^5.0"
  2058. },
  2059. "require-dev": {
  2060. "mockery/mockery": "^1.0",
  2061. "orchestra/testbench": "^5.0",
  2062. "phpunit/phpunit": "^8.0",
  2063. "predis/predis": "^1.1"
  2064. },
  2065. "suggest": {
  2066. "ext-redis": "Required to use the Redis PHP driver.",
  2067. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2068. },
  2069. "type": "library",
  2070. "extra": {
  2071. "branch-alias": {
  2072. "dev-master": "4.x-dev"
  2073. },
  2074. "laravel": {
  2075. "providers": [
  2076. "Laravel\\Horizon\\HorizonServiceProvider"
  2077. ],
  2078. "aliases": {
  2079. "Horizon": "Laravel\\Horizon\\Horizon"
  2080. }
  2081. }
  2082. },
  2083. "autoload": {
  2084. "psr-4": {
  2085. "Laravel\\Horizon\\": "src/"
  2086. }
  2087. },
  2088. "notification-url": "https://packagist.org/downloads/",
  2089. "license": [
  2090. "MIT"
  2091. ],
  2092. "authors": [
  2093. {
  2094. "name": "Taylor Otwell",
  2095. "email": "taylor@laravel.com"
  2096. }
  2097. ],
  2098. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2099. "keywords": [
  2100. "laravel",
  2101. "queue"
  2102. ],
  2103. "support": {
  2104. "issues": "https://github.com/laravel/horizon/issues",
  2105. "source": "https://github.com/laravel/horizon/tree/4.x"
  2106. },
  2107. "time": "2020-09-08T13:19:23+00:00"
  2108. },
  2109. {
  2110. "name": "laravel/tinker",
  2111. "version": "v2.6.1",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://github.com/laravel/tinker.git",
  2115. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2120. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2121. "shasum": "",
  2122. "mirrors": [
  2123. {
  2124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2125. "preferred": true
  2126. }
  2127. ]
  2128. },
  2129. "require": {
  2130. "illuminate/console": "^6.0|^7.0|^8.0",
  2131. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2132. "illuminate/support": "^6.0|^7.0|^8.0",
  2133. "php": "^7.2.5|^8.0",
  2134. "psy/psysh": "^0.10.4",
  2135. "symfony/var-dumper": "^4.3.4|^5.0"
  2136. },
  2137. "require-dev": {
  2138. "mockery/mockery": "~1.3.3|^1.4.2",
  2139. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2140. },
  2141. "suggest": {
  2142. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2143. },
  2144. "type": "library",
  2145. "extra": {
  2146. "branch-alias": {
  2147. "dev-master": "2.x-dev"
  2148. },
  2149. "laravel": {
  2150. "providers": [
  2151. "Laravel\\Tinker\\TinkerServiceProvider"
  2152. ]
  2153. }
  2154. },
  2155. "autoload": {
  2156. "psr-4": {
  2157. "Laravel\\Tinker\\": "src/"
  2158. }
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "authors": [
  2165. {
  2166. "name": "Taylor Otwell",
  2167. "email": "taylor@laravel.com"
  2168. }
  2169. ],
  2170. "description": "Powerful REPL for the Laravel framework.",
  2171. "keywords": [
  2172. "REPL",
  2173. "Tinker",
  2174. "laravel",
  2175. "psysh"
  2176. ],
  2177. "support": {
  2178. "issues": "https://github.com/laravel/tinker/issues",
  2179. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2180. },
  2181. "time": "2021-03-02T16:53:12+00:00"
  2182. },
  2183. {
  2184. "name": "laravel/ui",
  2185. "version": "v2.5.0",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://github.com/laravel/ui.git",
  2189. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2194. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2195. "shasum": "",
  2196. "mirrors": [
  2197. {
  2198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2199. "preferred": true
  2200. }
  2201. ]
  2202. },
  2203. "require": {
  2204. "illuminate/console": "^7.0",
  2205. "illuminate/filesystem": "^7.0",
  2206. "illuminate/support": "^7.0",
  2207. "php": "^7.2.5|^8.0"
  2208. },
  2209. "type": "library",
  2210. "extra": {
  2211. "laravel": {
  2212. "providers": [
  2213. "Laravel\\Ui\\UiServiceProvider"
  2214. ]
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Laravel\\Ui\\": "src/",
  2220. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  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": "Laravel UI utilities and presets.",
  2234. "keywords": [
  2235. "laravel",
  2236. "ui"
  2237. ],
  2238. "support": {
  2239. "issues": "https://github.com/laravel/ui/issues",
  2240. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2241. },
  2242. "time": "2020-11-03T19:45:19+00:00"
  2243. },
  2244. {
  2245. "name": "league/commonmark",
  2246. "version": "1.6.6",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://github.com/thephpleague/commonmark.git",
  2250. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2255. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2256. "shasum": "",
  2257. "mirrors": [
  2258. {
  2259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2260. "preferred": true
  2261. }
  2262. ]
  2263. },
  2264. "require": {
  2265. "ext-mbstring": "*",
  2266. "php": "^7.1 || ^8.0"
  2267. },
  2268. "conflict": {
  2269. "scrutinizer/ocular": "1.7.*"
  2270. },
  2271. "require-dev": {
  2272. "cebe/markdown": "~1.0",
  2273. "commonmark/commonmark.js": "0.29.2",
  2274. "erusev/parsedown": "~1.0",
  2275. "ext-json": "*",
  2276. "github/gfm": "0.29.0",
  2277. "michelf/php-markdown": "~1.4",
  2278. "mikehaertl/php-shellcommand": "^1.4",
  2279. "phpstan/phpstan": "^0.12.90",
  2280. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2281. "scrutinizer/ocular": "^1.5",
  2282. "symfony/finder": "^4.2"
  2283. },
  2284. "bin": [
  2285. "bin/commonmark"
  2286. ],
  2287. "type": "library",
  2288. "autoload": {
  2289. "psr-4": {
  2290. "League\\CommonMark\\": "src"
  2291. }
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "BSD-3-Clause"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Colin O'Dell",
  2300. "email": "colinodell@gmail.com",
  2301. "homepage": "https://www.colinodell.com",
  2302. "role": "Lead Developer"
  2303. }
  2304. ],
  2305. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2306. "homepage": "https://commonmark.thephpleague.com",
  2307. "keywords": [
  2308. "commonmark",
  2309. "flavored",
  2310. "gfm",
  2311. "github",
  2312. "github-flavored",
  2313. "markdown",
  2314. "md",
  2315. "parser"
  2316. ],
  2317. "support": {
  2318. "docs": "https://commonmark.thephpleague.com/",
  2319. "issues": "https://github.com/thephpleague/commonmark/issues",
  2320. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2321. "source": "https://github.com/thephpleague/commonmark"
  2322. },
  2323. "funding": [
  2324. {
  2325. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2326. "type": "custom"
  2327. },
  2328. {
  2329. "url": "https://www.colinodell.com/sponsor",
  2330. "type": "custom"
  2331. },
  2332. {
  2333. "url": "https://www.paypal.me/colinpodell/10.00",
  2334. "type": "custom"
  2335. },
  2336. {
  2337. "url": "https://github.com/colinodell",
  2338. "type": "github"
  2339. },
  2340. {
  2341. "url": "https://www.patreon.com/colinodell",
  2342. "type": "patreon"
  2343. },
  2344. {
  2345. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2346. "type": "tidelift"
  2347. }
  2348. ],
  2349. "time": "2021-07-17T17:13:23+00:00"
  2350. },
  2351. {
  2352. "name": "league/flysystem",
  2353. "version": "1.1.5",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/thephpleague/flysystem.git",
  2357. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
  2362. "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
  2363. "shasum": "",
  2364. "mirrors": [
  2365. {
  2366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2367. "preferred": true
  2368. }
  2369. ]
  2370. },
  2371. "require": {
  2372. "ext-fileinfo": "*",
  2373. "league/mime-type-detection": "^1.3",
  2374. "php": "^7.2.5 || ^8.0"
  2375. },
  2376. "conflict": {
  2377. "league/flysystem-sftp": "<1.0.6"
  2378. },
  2379. "require-dev": {
  2380. "phpspec/prophecy": "^1.11.1",
  2381. "phpunit/phpunit": "^8.5.8"
  2382. },
  2383. "suggest": {
  2384. "ext-ftp": "Allows you to use FTP server storage",
  2385. "ext-openssl": "Allows you to use FTPS server storage",
  2386. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2387. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2388. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2389. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2390. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2391. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2392. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2393. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2394. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2395. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2396. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2397. },
  2398. "type": "library",
  2399. "extra": {
  2400. "branch-alias": {
  2401. "dev-master": "1.1-dev"
  2402. }
  2403. },
  2404. "autoload": {
  2405. "psr-4": {
  2406. "League\\Flysystem\\": "src/"
  2407. }
  2408. },
  2409. "notification-url": "https://packagist.org/downloads/",
  2410. "license": [
  2411. "MIT"
  2412. ],
  2413. "authors": [
  2414. {
  2415. "name": "Frank de Jonge",
  2416. "email": "info@frenky.net"
  2417. }
  2418. ],
  2419. "description": "Filesystem abstraction: Many filesystems, one API.",
  2420. "keywords": [
  2421. "Cloud Files",
  2422. "WebDAV",
  2423. "abstraction",
  2424. "aws",
  2425. "cloud",
  2426. "copy.com",
  2427. "dropbox",
  2428. "file systems",
  2429. "files",
  2430. "filesystem",
  2431. "filesystems",
  2432. "ftp",
  2433. "rackspace",
  2434. "remote",
  2435. "s3",
  2436. "sftp",
  2437. "storage"
  2438. ],
  2439. "support": {
  2440. "issues": "https://github.com/thephpleague/flysystem/issues",
  2441. "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
  2442. },
  2443. "funding": [
  2444. {
  2445. "url": "https://offset.earth/frankdejonge",
  2446. "type": "other"
  2447. }
  2448. ],
  2449. "time": "2021-08-17T13:49:42+00:00"
  2450. },
  2451. {
  2452. "name": "league/mime-type-detection",
  2453. "version": "1.7.0",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2457. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2462. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2463. "shasum": "",
  2464. "mirrors": [
  2465. {
  2466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2467. "preferred": true
  2468. }
  2469. ]
  2470. },
  2471. "require": {
  2472. "ext-fileinfo": "*",
  2473. "php": "^7.2 || ^8.0"
  2474. },
  2475. "require-dev": {
  2476. "friendsofphp/php-cs-fixer": "^2.18",
  2477. "phpstan/phpstan": "^0.12.68",
  2478. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2479. },
  2480. "type": "library",
  2481. "autoload": {
  2482. "psr-4": {
  2483. "League\\MimeTypeDetection\\": "src"
  2484. }
  2485. },
  2486. "notification-url": "https://packagist.org/downloads/",
  2487. "license": [
  2488. "MIT"
  2489. ],
  2490. "authors": [
  2491. {
  2492. "name": "Frank de Jonge",
  2493. "email": "info@frankdejonge.nl"
  2494. }
  2495. ],
  2496. "description": "Mime-type detection for Flysystem",
  2497. "support": {
  2498. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2499. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2500. },
  2501. "funding": [
  2502. {
  2503. "url": "https://github.com/frankdejonge",
  2504. "type": "github"
  2505. },
  2506. {
  2507. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2508. "type": "tidelift"
  2509. }
  2510. ],
  2511. "time": "2021-01-18T20:58:21+00:00"
  2512. },
  2513. {
  2514. "name": "maatwebsite/excel",
  2515. "version": "3.1.32",
  2516. "source": {
  2517. "type": "git",
  2518. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2519. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf"
  2520. },
  2521. "dist": {
  2522. "type": "zip",
  2523. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2524. "reference": "9dc29b63a77fb7f2f514ef754af3a1b57e83cadf",
  2525. "shasum": "",
  2526. "mirrors": [
  2527. {
  2528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2529. "preferred": true
  2530. }
  2531. ]
  2532. },
  2533. "require": {
  2534. "ext-json": "*",
  2535. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2536. "php": "^7.0|^8.0",
  2537. "phpoffice/phpspreadsheet": "^1.18"
  2538. },
  2539. "require-dev": {
  2540. "orchestra/testbench": "^6.0",
  2541. "predis/predis": "^1.1"
  2542. },
  2543. "type": "library",
  2544. "extra": {
  2545. "laravel": {
  2546. "providers": [
  2547. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2548. ],
  2549. "aliases": {
  2550. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2551. }
  2552. }
  2553. },
  2554. "autoload": {
  2555. "psr-4": {
  2556. "Maatwebsite\\Excel\\": "src/"
  2557. }
  2558. },
  2559. "notification-url": "https://packagist.org/downloads/",
  2560. "license": [
  2561. "MIT"
  2562. ],
  2563. "authors": [
  2564. {
  2565. "name": "Patrick Brouwers",
  2566. "email": "patrick@maatwebsite.nl"
  2567. }
  2568. ],
  2569. "description": "Supercharged Excel exports and imports in Laravel",
  2570. "keywords": [
  2571. "PHPExcel",
  2572. "batch",
  2573. "csv",
  2574. "excel",
  2575. "export",
  2576. "import",
  2577. "laravel",
  2578. "php",
  2579. "phpspreadsheet"
  2580. ],
  2581. "support": {
  2582. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2583. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.32"
  2584. },
  2585. "funding": [
  2586. {
  2587. "url": "https://laravel-excel.com/commercial-support",
  2588. "type": "custom"
  2589. },
  2590. {
  2591. "url": "https://github.com/patrickbrouwers",
  2592. "type": "github"
  2593. }
  2594. ],
  2595. "time": "2021-07-08T10:11:21+00:00"
  2596. },
  2597. {
  2598. "name": "maennchen/zipstream-php",
  2599. "version": "2.1.0",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2603. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2608. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2609. "shasum": "",
  2610. "mirrors": [
  2611. {
  2612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2613. "preferred": true
  2614. }
  2615. ]
  2616. },
  2617. "require": {
  2618. "myclabs/php-enum": "^1.5",
  2619. "php": ">= 7.1",
  2620. "psr/http-message": "^1.0",
  2621. "symfony/polyfill-mbstring": "^1.0"
  2622. },
  2623. "require-dev": {
  2624. "ext-zip": "*",
  2625. "guzzlehttp/guzzle": ">= 6.3",
  2626. "mikey179/vfsstream": "^1.6",
  2627. "phpunit/phpunit": ">= 7.5"
  2628. },
  2629. "type": "library",
  2630. "autoload": {
  2631. "psr-4": {
  2632. "ZipStream\\": "src/"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Paul Duncan",
  2642. "email": "pabs@pablotron.org"
  2643. },
  2644. {
  2645. "name": "Jonatan Männchen",
  2646. "email": "jonatan@maennchen.ch"
  2647. },
  2648. {
  2649. "name": "Jesse Donat",
  2650. "email": "donatj@gmail.com"
  2651. },
  2652. {
  2653. "name": "András Kolesár",
  2654. "email": "kolesar@kolesar.hu"
  2655. }
  2656. ],
  2657. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2658. "keywords": [
  2659. "stream",
  2660. "zip"
  2661. ],
  2662. "support": {
  2663. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2664. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2665. },
  2666. "funding": [
  2667. {
  2668. "url": "https://opencollective.com/zipstream",
  2669. "type": "open_collective"
  2670. }
  2671. ],
  2672. "time": "2020-05-30T13:11:16+00:00"
  2673. },
  2674. {
  2675. "name": "markbaker/complex",
  2676. "version": "2.0.3",
  2677. "source": {
  2678. "type": "git",
  2679. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2680. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2681. },
  2682. "dist": {
  2683. "type": "zip",
  2684. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2685. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2686. "shasum": "",
  2687. "mirrors": [
  2688. {
  2689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2690. "preferred": true
  2691. }
  2692. ]
  2693. },
  2694. "require": {
  2695. "php": "^7.2 || ^8.0"
  2696. },
  2697. "require-dev": {
  2698. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2699. "phpcompatibility/php-compatibility": "^9.0",
  2700. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2701. "squizlabs/php_codesniffer": "^3.4"
  2702. },
  2703. "type": "library",
  2704. "autoload": {
  2705. "psr-4": {
  2706. "Complex\\": "classes/src/"
  2707. },
  2708. "files": [
  2709. "classes/src/functions/abs.php",
  2710. "classes/src/functions/acos.php",
  2711. "classes/src/functions/acosh.php",
  2712. "classes/src/functions/acot.php",
  2713. "classes/src/functions/acoth.php",
  2714. "classes/src/functions/acsc.php",
  2715. "classes/src/functions/acsch.php",
  2716. "classes/src/functions/argument.php",
  2717. "classes/src/functions/asec.php",
  2718. "classes/src/functions/asech.php",
  2719. "classes/src/functions/asin.php",
  2720. "classes/src/functions/asinh.php",
  2721. "classes/src/functions/atan.php",
  2722. "classes/src/functions/atanh.php",
  2723. "classes/src/functions/conjugate.php",
  2724. "classes/src/functions/cos.php",
  2725. "classes/src/functions/cosh.php",
  2726. "classes/src/functions/cot.php",
  2727. "classes/src/functions/coth.php",
  2728. "classes/src/functions/csc.php",
  2729. "classes/src/functions/csch.php",
  2730. "classes/src/functions/exp.php",
  2731. "classes/src/functions/inverse.php",
  2732. "classes/src/functions/ln.php",
  2733. "classes/src/functions/log2.php",
  2734. "classes/src/functions/log10.php",
  2735. "classes/src/functions/negative.php",
  2736. "classes/src/functions/pow.php",
  2737. "classes/src/functions/rho.php",
  2738. "classes/src/functions/sec.php",
  2739. "classes/src/functions/sech.php",
  2740. "classes/src/functions/sin.php",
  2741. "classes/src/functions/sinh.php",
  2742. "classes/src/functions/sqrt.php",
  2743. "classes/src/functions/tan.php",
  2744. "classes/src/functions/tanh.php",
  2745. "classes/src/functions/theta.php",
  2746. "classes/src/operations/add.php",
  2747. "classes/src/operations/subtract.php",
  2748. "classes/src/operations/multiply.php",
  2749. "classes/src/operations/divideby.php",
  2750. "classes/src/operations/divideinto.php"
  2751. ]
  2752. },
  2753. "notification-url": "https://packagist.org/downloads/",
  2754. "license": [
  2755. "MIT"
  2756. ],
  2757. "authors": [
  2758. {
  2759. "name": "Mark Baker",
  2760. "email": "mark@lange.demon.co.uk"
  2761. }
  2762. ],
  2763. "description": "PHP Class for working with complex numbers",
  2764. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2765. "keywords": [
  2766. "complex",
  2767. "mathematics"
  2768. ],
  2769. "support": {
  2770. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2771. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2772. },
  2773. "time": "2021-06-02T09:44:11+00:00"
  2774. },
  2775. {
  2776. "name": "markbaker/matrix",
  2777. "version": "2.1.3",
  2778. "source": {
  2779. "type": "git",
  2780. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2781. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2782. },
  2783. "dist": {
  2784. "type": "zip",
  2785. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2786. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2787. "shasum": "",
  2788. "mirrors": [
  2789. {
  2790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2791. "preferred": true
  2792. }
  2793. ]
  2794. },
  2795. "require": {
  2796. "php": "^7.1 || ^8.0"
  2797. },
  2798. "require-dev": {
  2799. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2800. "phpcompatibility/php-compatibility": "^9.0",
  2801. "phpdocumentor/phpdocumentor": "2.*",
  2802. "phploc/phploc": "^4.0",
  2803. "phpmd/phpmd": "2.*",
  2804. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2805. "sebastian/phpcpd": "^4.0",
  2806. "squizlabs/php_codesniffer": "^3.4"
  2807. },
  2808. "type": "library",
  2809. "autoload": {
  2810. "psr-4": {
  2811. "Matrix\\": "classes/src/"
  2812. },
  2813. "files": [
  2814. "classes/src/Functions/adjoint.php",
  2815. "classes/src/Functions/antidiagonal.php",
  2816. "classes/src/Functions/cofactors.php",
  2817. "classes/src/Functions/determinant.php",
  2818. "classes/src/Functions/diagonal.php",
  2819. "classes/src/Functions/identity.php",
  2820. "classes/src/Functions/inverse.php",
  2821. "classes/src/Functions/minors.php",
  2822. "classes/src/Functions/trace.php",
  2823. "classes/src/Functions/transpose.php",
  2824. "classes/src/Operations/add.php",
  2825. "classes/src/Operations/directsum.php",
  2826. "classes/src/Operations/subtract.php",
  2827. "classes/src/Operations/multiply.php",
  2828. "classes/src/Operations/divideby.php",
  2829. "classes/src/Operations/divideinto.php"
  2830. ]
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "Mark Baker",
  2839. "email": "mark@demon-angel.eu"
  2840. }
  2841. ],
  2842. "description": "PHP Class for working with matrices",
  2843. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2844. "keywords": [
  2845. "mathematics",
  2846. "matrix",
  2847. "vector"
  2848. ],
  2849. "support": {
  2850. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2851. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2852. },
  2853. "time": "2021-05-25T15:42:17+00:00"
  2854. },
  2855. {
  2856. "name": "monolog/monolog",
  2857. "version": "2.3.2",
  2858. "source": {
  2859. "type": "git",
  2860. "url": "https://github.com/Seldaek/monolog.git",
  2861. "reference": "71312564759a7db5b789296369c1a264efc43aad"
  2862. },
  2863. "dist": {
  2864. "type": "zip",
  2865. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad",
  2866. "reference": "71312564759a7db5b789296369c1a264efc43aad",
  2867. "shasum": "",
  2868. "mirrors": [
  2869. {
  2870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2871. "preferred": true
  2872. }
  2873. ]
  2874. },
  2875. "require": {
  2876. "php": ">=7.2",
  2877. "psr/log": "^1.0.1"
  2878. },
  2879. "provide": {
  2880. "psr/log-implementation": "1.0.0"
  2881. },
  2882. "require-dev": {
  2883. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2884. "doctrine/couchdb": "~1.0@dev",
  2885. "elasticsearch/elasticsearch": "^7",
  2886. "graylog2/gelf-php": "^1.4.2",
  2887. "mongodb/mongodb": "^1.8",
  2888. "php-amqplib/php-amqplib": "~2.4",
  2889. "php-console/php-console": "^3.1.3",
  2890. "phpspec/prophecy": "^1.6.1",
  2891. "phpstan/phpstan": "^0.12.91",
  2892. "phpunit/phpunit": "^8.5",
  2893. "predis/predis": "^1.1",
  2894. "rollbar/rollbar": "^1.3",
  2895. "ruflin/elastica": ">=0.90 <7.0.1",
  2896. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2897. },
  2898. "suggest": {
  2899. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2900. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2901. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2902. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2903. "ext-mbstring": "Allow to work properly with unicode symbols",
  2904. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2905. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2906. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2907. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2908. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2909. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2910. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2911. },
  2912. "type": "library",
  2913. "extra": {
  2914. "branch-alias": {
  2915. "dev-main": "2.x-dev"
  2916. }
  2917. },
  2918. "autoload": {
  2919. "psr-4": {
  2920. "Monolog\\": "src/Monolog"
  2921. }
  2922. },
  2923. "notification-url": "https://packagist.org/downloads/",
  2924. "license": [
  2925. "MIT"
  2926. ],
  2927. "authors": [
  2928. {
  2929. "name": "Jordi Boggiano",
  2930. "email": "j.boggiano@seld.be",
  2931. "homepage": "https://seld.be"
  2932. }
  2933. ],
  2934. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2935. "homepage": "https://github.com/Seldaek/monolog",
  2936. "keywords": [
  2937. "log",
  2938. "logging",
  2939. "psr-3"
  2940. ],
  2941. "support": {
  2942. "issues": "https://github.com/Seldaek/monolog/issues",
  2943. "source": "https://github.com/Seldaek/monolog/tree/2.3.2"
  2944. },
  2945. "funding": [
  2946. {
  2947. "url": "https://github.com/Seldaek",
  2948. "type": "github"
  2949. },
  2950. {
  2951. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2952. "type": "tidelift"
  2953. }
  2954. ],
  2955. "time": "2021-07-23T07:42:52+00:00"
  2956. },
  2957. {
  2958. "name": "myclabs/php-enum",
  2959. "version": "1.8.3",
  2960. "source": {
  2961. "type": "git",
  2962. "url": "https://github.com/myclabs/php-enum.git",
  2963. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2964. },
  2965. "dist": {
  2966. "type": "zip",
  2967. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2968. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2969. "shasum": "",
  2970. "mirrors": [
  2971. {
  2972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2973. "preferred": true
  2974. }
  2975. ]
  2976. },
  2977. "require": {
  2978. "ext-json": "*",
  2979. "php": "^7.3 || ^8.0"
  2980. },
  2981. "require-dev": {
  2982. "phpunit/phpunit": "^9.5",
  2983. "squizlabs/php_codesniffer": "1.*",
  2984. "vimeo/psalm": "^4.6.2"
  2985. },
  2986. "type": "library",
  2987. "autoload": {
  2988. "psr-4": {
  2989. "MyCLabs\\Enum\\": "src/"
  2990. }
  2991. },
  2992. "notification-url": "https://packagist.org/downloads/",
  2993. "license": [
  2994. "MIT"
  2995. ],
  2996. "authors": [
  2997. {
  2998. "name": "PHP Enum contributors",
  2999. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3000. }
  3001. ],
  3002. "description": "PHP Enum implementation",
  3003. "homepage": "http://github.com/myclabs/php-enum",
  3004. "keywords": [
  3005. "enum"
  3006. ],
  3007. "support": {
  3008. "issues": "https://github.com/myclabs/php-enum/issues",
  3009. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  3010. },
  3011. "funding": [
  3012. {
  3013. "url": "https://github.com/mnapoli",
  3014. "type": "github"
  3015. },
  3016. {
  3017. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3018. "type": "tidelift"
  3019. }
  3020. ],
  3021. "time": "2021-07-05T08:18:36+00:00"
  3022. },
  3023. {
  3024. "name": "nesbot/carbon",
  3025. "version": "2.53.1",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/briannesbitt/Carbon.git",
  3029. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f4655858a784988f880c1b8c7feabbf02dfdf045",
  3034. "reference": "f4655858a784988f880c1b8c7feabbf02dfdf045",
  3035. "shasum": "",
  3036. "mirrors": [
  3037. {
  3038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3039. "preferred": true
  3040. }
  3041. ]
  3042. },
  3043. "require": {
  3044. "ext-json": "*",
  3045. "php": "^7.1.8 || ^8.0",
  3046. "symfony/polyfill-mbstring": "^1.0",
  3047. "symfony/polyfill-php80": "^1.16",
  3048. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3049. },
  3050. "require-dev": {
  3051. "doctrine/orm": "^2.7",
  3052. "friendsofphp/php-cs-fixer": "^3.0",
  3053. "kylekatarnls/multi-tester": "^2.0",
  3054. "phpmd/phpmd": "^2.9",
  3055. "phpstan/extension-installer": "^1.0",
  3056. "phpstan/phpstan": "^0.12.54",
  3057. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3058. "squizlabs/php_codesniffer": "^3.4"
  3059. },
  3060. "bin": [
  3061. "bin/carbon"
  3062. ],
  3063. "type": "library",
  3064. "extra": {
  3065. "branch-alias": {
  3066. "dev-3.x": "3.x-dev",
  3067. "dev-master": "2.x-dev"
  3068. },
  3069. "laravel": {
  3070. "providers": [
  3071. "Carbon\\Laravel\\ServiceProvider"
  3072. ]
  3073. },
  3074. "phpstan": {
  3075. "includes": [
  3076. "extension.neon"
  3077. ]
  3078. }
  3079. },
  3080. "autoload": {
  3081. "psr-4": {
  3082. "Carbon\\": "src/Carbon/"
  3083. }
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "Brian Nesbitt",
  3092. "email": "brian@nesbot.com",
  3093. "homepage": "https://markido.com"
  3094. },
  3095. {
  3096. "name": "kylekatarnls",
  3097. "homepage": "https://github.com/kylekatarnls"
  3098. }
  3099. ],
  3100. "description": "An API extension for DateTime that supports 281 different languages.",
  3101. "homepage": "https://carbon.nesbot.com",
  3102. "keywords": [
  3103. "date",
  3104. "datetime",
  3105. "time"
  3106. ],
  3107. "support": {
  3108. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3109. "source": "https://github.com/briannesbitt/Carbon"
  3110. },
  3111. "funding": [
  3112. {
  3113. "url": "https://opencollective.com/Carbon",
  3114. "type": "open_collective"
  3115. },
  3116. {
  3117. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3118. "type": "tidelift"
  3119. }
  3120. ],
  3121. "time": "2021-09-06T09:29:23+00:00"
  3122. },
  3123. {
  3124. "name": "nikic/php-parser",
  3125. "version": "v4.12.0",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/nikic/PHP-Parser.git",
  3129. "reference": "6608f01670c3cc5079e18c1dab1104e002579143"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143",
  3134. "reference": "6608f01670c3cc5079e18c1dab1104e002579143",
  3135. "shasum": "",
  3136. "mirrors": [
  3137. {
  3138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3139. "preferred": true
  3140. }
  3141. ]
  3142. },
  3143. "require": {
  3144. "ext-tokenizer": "*",
  3145. "php": ">=7.0"
  3146. },
  3147. "require-dev": {
  3148. "ircmaxell/php-yacc": "^0.0.7",
  3149. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3150. },
  3151. "bin": [
  3152. "bin/php-parse"
  3153. ],
  3154. "type": "library",
  3155. "extra": {
  3156. "branch-alias": {
  3157. "dev-master": "4.9-dev"
  3158. }
  3159. },
  3160. "autoload": {
  3161. "psr-4": {
  3162. "PhpParser\\": "lib/PhpParser"
  3163. }
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "BSD-3-Clause"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "Nikita Popov"
  3172. }
  3173. ],
  3174. "description": "A PHP parser written in PHP",
  3175. "keywords": [
  3176. "parser",
  3177. "php"
  3178. ],
  3179. "support": {
  3180. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3181. "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0"
  3182. },
  3183. "time": "2021-07-21T10:44:31+00:00"
  3184. },
  3185. {
  3186. "name": "opis/closure",
  3187. "version": "3.6.2",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/opis/closure.git",
  3191. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3196. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  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. "php": "^5.4 || ^7.0 || ^8.0"
  3207. },
  3208. "require-dev": {
  3209. "jeremeamia/superclosure": "^2.0",
  3210. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3211. },
  3212. "type": "library",
  3213. "extra": {
  3214. "branch-alias": {
  3215. "dev-master": "3.6.x-dev"
  3216. }
  3217. },
  3218. "autoload": {
  3219. "psr-4": {
  3220. "Opis\\Closure\\": "src/"
  3221. },
  3222. "files": [
  3223. "functions.php"
  3224. ]
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "authors": [
  3231. {
  3232. "name": "Marius Sarca",
  3233. "email": "marius.sarca@gmail.com"
  3234. },
  3235. {
  3236. "name": "Sorin Sarca",
  3237. "email": "sarca_sorin@hotmail.com"
  3238. }
  3239. ],
  3240. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3241. "homepage": "https://opis.io/closure",
  3242. "keywords": [
  3243. "anonymous functions",
  3244. "closure",
  3245. "function",
  3246. "serializable",
  3247. "serialization",
  3248. "serialize"
  3249. ],
  3250. "support": {
  3251. "issues": "https://github.com/opis/closure/issues",
  3252. "source": "https://github.com/opis/closure/tree/3.6.2"
  3253. },
  3254. "time": "2021-04-09T13:42:10+00:00"
  3255. },
  3256. {
  3257. "name": "oursdreams/export",
  3258. "version": "0.0.7",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/oursdreams/export.git",
  3262. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3267. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3268. "shasum": "",
  3269. "mirrors": [
  3270. {
  3271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3272. "preferred": true
  3273. }
  3274. ]
  3275. },
  3276. "type": "library",
  3277. "extra": {
  3278. "laravel": {
  3279. "providers": [
  3280. "Oursdreams\\Export\\ExportServiceProvider"
  3281. ]
  3282. }
  3283. },
  3284. "autoload": {
  3285. "psr-4": {
  3286. "Oursdreams\\Export\\": "./src"
  3287. }
  3288. },
  3289. "notification-url": "https://packagist.org/downloads/",
  3290. "license": [
  3291. "MIT"
  3292. ],
  3293. "authors": [
  3294. {
  3295. "name": "oursdreams",
  3296. "email": "z1792524653@163.com"
  3297. }
  3298. ],
  3299. "description": "A simple export plug-in",
  3300. "support": {
  3301. "issues": "https://github.com/oursdreams/export/issues",
  3302. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3303. },
  3304. "time": "2021-06-01T03:01:13+00:00"
  3305. },
  3306. {
  3307. "name": "overtrue/laravel-pinyin",
  3308. "version": "4.0.0",
  3309. "source": {
  3310. "type": "git",
  3311. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3312. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3313. },
  3314. "dist": {
  3315. "type": "zip",
  3316. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3317. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3318. "shasum": "",
  3319. "mirrors": [
  3320. {
  3321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3322. "preferred": true
  3323. }
  3324. ]
  3325. },
  3326. "require": {
  3327. "overtrue/pinyin": "~4.0"
  3328. },
  3329. "type": "library",
  3330. "extra": {
  3331. "laravel": {
  3332. "providers": [
  3333. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3334. ],
  3335. "aliases": {
  3336. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3337. }
  3338. }
  3339. },
  3340. "autoload": {
  3341. "psr-4": {
  3342. "Overtrue\\LaravelPinyin\\": "src/"
  3343. },
  3344. "files": [
  3345. "src/helpers.php"
  3346. ]
  3347. },
  3348. "notification-url": "https://packagist.org/downloads/",
  3349. "license": [
  3350. "MIT"
  3351. ],
  3352. "authors": [
  3353. {
  3354. "name": "overtrue",
  3355. "email": "anzhengchao@gmail.com"
  3356. }
  3357. ],
  3358. "description": "Chinese to Pinyin translator.",
  3359. "keywords": [
  3360. "Chinese",
  3361. "Pinyin",
  3362. "laravel",
  3363. "overtrue"
  3364. ],
  3365. "support": {
  3366. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3367. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3368. },
  3369. "time": "2018-10-10T09:02:46+00:00"
  3370. },
  3371. {
  3372. "name": "overtrue/pinyin",
  3373. "version": "4.0.8",
  3374. "source": {
  3375. "type": "git",
  3376. "url": "https://github.com/overtrue/pinyin.git",
  3377. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  3378. },
  3379. "dist": {
  3380. "type": "zip",
  3381. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3382. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  3383. "shasum": "",
  3384. "mirrors": [
  3385. {
  3386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3387. "preferred": true
  3388. }
  3389. ]
  3390. },
  3391. "require": {
  3392. "php": ">=7.1"
  3393. },
  3394. "require-dev": {
  3395. "brainmaestro/composer-git-hooks": "^2.7",
  3396. "friendsofphp/php-cs-fixer": "^2.16",
  3397. "phpunit/phpunit": "~8.0"
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "hooks": {
  3402. "pre-commit": [
  3403. "composer test",
  3404. "composer fix-style"
  3405. ],
  3406. "pre-push": [
  3407. "composer test",
  3408. "composer check-style"
  3409. ]
  3410. }
  3411. },
  3412. "autoload": {
  3413. "psr-4": {
  3414. "Overtrue\\Pinyin\\": "src/"
  3415. },
  3416. "files": [
  3417. "src/const.php"
  3418. ]
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "overtrue",
  3427. "email": "anzhengchao@gmail.com",
  3428. "homepage": "http://github.com/overtrue"
  3429. }
  3430. ],
  3431. "description": "Chinese to pinyin translator.",
  3432. "homepage": "https://github.com/overtrue/pinyin",
  3433. "keywords": [
  3434. "Chinese",
  3435. "Pinyin",
  3436. "cn2pinyin"
  3437. ],
  3438. "support": {
  3439. "issues": "https://github.com/overtrue/pinyin/issues",
  3440. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  3441. },
  3442. "funding": [
  3443. {
  3444. "url": "https://www.patreon.com/overtrue",
  3445. "type": "patreon"
  3446. }
  3447. ],
  3448. "time": "2021-07-19T03:43:32+00:00"
  3449. },
  3450. {
  3451. "name": "paragonie/random_compat",
  3452. "version": "v9.99.100",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/paragonie/random_compat.git",
  3456. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3461. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3462. "shasum": "",
  3463. "mirrors": [
  3464. {
  3465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3466. "preferred": true
  3467. }
  3468. ]
  3469. },
  3470. "require": {
  3471. "php": ">= 7"
  3472. },
  3473. "require-dev": {
  3474. "phpunit/phpunit": "4.*|5.*",
  3475. "vimeo/psalm": "^1"
  3476. },
  3477. "suggest": {
  3478. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3479. },
  3480. "type": "library",
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "Paragon Initiative Enterprises",
  3488. "email": "security@paragonie.com",
  3489. "homepage": "https://paragonie.com"
  3490. }
  3491. ],
  3492. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3493. "keywords": [
  3494. "csprng",
  3495. "polyfill",
  3496. "pseudorandom",
  3497. "random"
  3498. ],
  3499. "support": {
  3500. "email": "info@paragonie.com",
  3501. "issues": "https://github.com/paragonie/random_compat/issues",
  3502. "source": "https://github.com/paragonie/random_compat"
  3503. },
  3504. "time": "2020-10-15T08:29:30+00:00"
  3505. },
  3506. {
  3507. "name": "paragonie/sodium_compat",
  3508. "version": "v1.17.0",
  3509. "source": {
  3510. "type": "git",
  3511. "url": "https://github.com/paragonie/sodium_compat.git",
  3512. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321"
  3513. },
  3514. "dist": {
  3515. "type": "zip",
  3516. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/c59cac21abbcc0df06a3dd18076450ea4797b321",
  3517. "reference": "c59cac21abbcc0df06a3dd18076450ea4797b321",
  3518. "shasum": "",
  3519. "mirrors": [
  3520. {
  3521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3522. "preferred": true
  3523. }
  3524. ]
  3525. },
  3526. "require": {
  3527. "paragonie/random_compat": ">=1",
  3528. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3529. },
  3530. "require-dev": {
  3531. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3532. },
  3533. "suggest": {
  3534. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3535. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3536. },
  3537. "type": "library",
  3538. "autoload": {
  3539. "files": [
  3540. "autoload.php"
  3541. ]
  3542. },
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "ISC"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Paragon Initiative Enterprises",
  3550. "email": "security@paragonie.com"
  3551. },
  3552. {
  3553. "name": "Frank Denis",
  3554. "email": "jedisct1@pureftpd.org"
  3555. }
  3556. ],
  3557. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3558. "keywords": [
  3559. "Authentication",
  3560. "BLAKE2b",
  3561. "ChaCha20",
  3562. "ChaCha20-Poly1305",
  3563. "Chapoly",
  3564. "Curve25519",
  3565. "Ed25519",
  3566. "EdDSA",
  3567. "Edwards-curve Digital Signature Algorithm",
  3568. "Elliptic Curve Diffie-Hellman",
  3569. "Poly1305",
  3570. "Pure-PHP cryptography",
  3571. "RFC 7748",
  3572. "RFC 8032",
  3573. "Salpoly",
  3574. "Salsa20",
  3575. "X25519",
  3576. "XChaCha20-Poly1305",
  3577. "XSalsa20-Poly1305",
  3578. "Xchacha20",
  3579. "Xsalsa20",
  3580. "aead",
  3581. "cryptography",
  3582. "ecdh",
  3583. "elliptic curve",
  3584. "elliptic curve cryptography",
  3585. "encryption",
  3586. "libsodium",
  3587. "php",
  3588. "public-key cryptography",
  3589. "secret-key cryptography",
  3590. "side-channel resistant"
  3591. ],
  3592. "support": {
  3593. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3594. "source": "https://github.com/paragonie/sodium_compat/tree/v1.17.0"
  3595. },
  3596. "time": "2021-08-10T02:43:50+00:00"
  3597. },
  3598. {
  3599. "name": "phpoffice/phpspreadsheet",
  3600. "version": "1.18.0",
  3601. "source": {
  3602. "type": "git",
  3603. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3604. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3605. },
  3606. "dist": {
  3607. "type": "zip",
  3608. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3609. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3610. "shasum": "",
  3611. "mirrors": [
  3612. {
  3613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3614. "preferred": true
  3615. }
  3616. ]
  3617. },
  3618. "require": {
  3619. "ext-ctype": "*",
  3620. "ext-dom": "*",
  3621. "ext-fileinfo": "*",
  3622. "ext-gd": "*",
  3623. "ext-iconv": "*",
  3624. "ext-libxml": "*",
  3625. "ext-mbstring": "*",
  3626. "ext-simplexml": "*",
  3627. "ext-xml": "*",
  3628. "ext-xmlreader": "*",
  3629. "ext-xmlwriter": "*",
  3630. "ext-zip": "*",
  3631. "ext-zlib": "*",
  3632. "ezyang/htmlpurifier": "^4.13",
  3633. "maennchen/zipstream-php": "^2.1",
  3634. "markbaker/complex": "^2.0",
  3635. "markbaker/matrix": "^2.0",
  3636. "php": "^7.2 || ^8.0",
  3637. "psr/http-client": "^1.0",
  3638. "psr/http-factory": "^1.0",
  3639. "psr/simple-cache": "^1.0"
  3640. },
  3641. "require-dev": {
  3642. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3643. "dompdf/dompdf": "^1.0",
  3644. "friendsofphp/php-cs-fixer": "^2.18",
  3645. "jpgraph/jpgraph": "^4.0",
  3646. "mpdf/mpdf": "^8.0",
  3647. "phpcompatibility/php-compatibility": "^9.3",
  3648. "phpstan/phpstan": "^0.12.82",
  3649. "phpstan/phpstan-phpunit": "^0.12.18",
  3650. "phpunit/phpunit": "^8.5",
  3651. "squizlabs/php_codesniffer": "^3.5",
  3652. "tecnickcom/tcpdf": "^6.3"
  3653. },
  3654. "suggest": {
  3655. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3656. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3657. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3658. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3659. },
  3660. "type": "library",
  3661. "autoload": {
  3662. "psr-4": {
  3663. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3664. }
  3665. },
  3666. "notification-url": "https://packagist.org/downloads/",
  3667. "license": [
  3668. "MIT"
  3669. ],
  3670. "authors": [
  3671. {
  3672. "name": "Maarten Balliauw",
  3673. "homepage": "https://blog.maartenballiauw.be"
  3674. },
  3675. {
  3676. "name": "Mark Baker",
  3677. "homepage": "https://markbakeruk.net"
  3678. },
  3679. {
  3680. "name": "Franck Lefevre",
  3681. "homepage": "https://rootslabs.net"
  3682. },
  3683. {
  3684. "name": "Erik Tilt"
  3685. },
  3686. {
  3687. "name": "Adrien Crivelli"
  3688. }
  3689. ],
  3690. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3691. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3692. "keywords": [
  3693. "OpenXML",
  3694. "excel",
  3695. "gnumeric",
  3696. "ods",
  3697. "php",
  3698. "spreadsheet",
  3699. "xls",
  3700. "xlsx"
  3701. ],
  3702. "support": {
  3703. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3704. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3705. },
  3706. "time": "2021-05-31T18:21:15+00:00"
  3707. },
  3708. {
  3709. "name": "phpoption/phpoption",
  3710. "version": "1.8.0",
  3711. "source": {
  3712. "type": "git",
  3713. "url": "https://github.com/schmittjoh/php-option.git",
  3714. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28"
  3715. },
  3716. "dist": {
  3717. "type": "zip",
  3718. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3719. "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28",
  3720. "shasum": "",
  3721. "mirrors": [
  3722. {
  3723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3724. "preferred": true
  3725. }
  3726. ]
  3727. },
  3728. "require": {
  3729. "php": "^7.0 || ^8.0"
  3730. },
  3731. "require-dev": {
  3732. "bamarni/composer-bin-plugin": "^1.4.1",
  3733. "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8"
  3734. },
  3735. "type": "library",
  3736. "extra": {
  3737. "branch-alias": {
  3738. "dev-master": "1.8-dev"
  3739. }
  3740. },
  3741. "autoload": {
  3742. "psr-4": {
  3743. "PhpOption\\": "src/PhpOption/"
  3744. }
  3745. },
  3746. "notification-url": "https://packagist.org/downloads/",
  3747. "license": [
  3748. "Apache-2.0"
  3749. ],
  3750. "authors": [
  3751. {
  3752. "name": "Johannes M. Schmitt",
  3753. "email": "schmittjoh@gmail.com"
  3754. },
  3755. {
  3756. "name": "Graham Campbell",
  3757. "email": "hello@gjcampbell.co.uk"
  3758. }
  3759. ],
  3760. "description": "Option Type for PHP",
  3761. "keywords": [
  3762. "language",
  3763. "option",
  3764. "php",
  3765. "type"
  3766. ],
  3767. "support": {
  3768. "issues": "https://github.com/schmittjoh/php-option/issues",
  3769. "source": "https://github.com/schmittjoh/php-option/tree/1.8.0"
  3770. },
  3771. "funding": [
  3772. {
  3773. "url": "https://github.com/GrahamCampbell",
  3774. "type": "github"
  3775. },
  3776. {
  3777. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3778. "type": "tidelift"
  3779. }
  3780. ],
  3781. "time": "2021-08-28T21:27:29+00:00"
  3782. },
  3783. {
  3784. "name": "picqer/php-barcode-generator",
  3785. "version": "v2.2.0",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://github.com/picqer/php-barcode-generator.git",
  3789. "reference": "7df93b40099e5fefad055543320a36b80dccda05"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/7df93b40099e5fefad055543320a36b80dccda05",
  3794. "reference": "7df93b40099e5fefad055543320a36b80dccda05",
  3795. "shasum": "",
  3796. "mirrors": [
  3797. {
  3798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3799. "preferred": true
  3800. }
  3801. ]
  3802. },
  3803. "require": {
  3804. "ext-mbstring": "*",
  3805. "php": "^7.3|^8.0"
  3806. },
  3807. "require-dev": {
  3808. "phpunit/phpunit": "^9.5"
  3809. },
  3810. "suggest": {
  3811. "ext-bcmath": "Barcode IMB (Intelligent Mail Barcode) needs bcmath extension",
  3812. "ext-gd": "For JPG and PNG generators, GD or Imagick is required",
  3813. "ext-imagick": "For JPG and PNG generators, GD or Imagick is required"
  3814. },
  3815. "type": "library",
  3816. "autoload": {
  3817. "psr-4": {
  3818. "Picqer\\Barcode\\": "src"
  3819. }
  3820. },
  3821. "notification-url": "https://packagist.org/downloads/",
  3822. "license": [
  3823. "LGPL-3.0-or-later"
  3824. ],
  3825. "authors": [
  3826. {
  3827. "name": "Nicola Asuni",
  3828. "email": "info@tecnick.com",
  3829. "homepage": "http://nicolaasuni.tecnick.com"
  3830. },
  3831. {
  3832. "name": "Casper Bakker",
  3833. "email": "info@picqer.com",
  3834. "homepage": "https://picqer.com"
  3835. }
  3836. ],
  3837. "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.",
  3838. "homepage": "https://github.com/picqer/php-barcode-generator",
  3839. "keywords": [
  3840. "CODABAR",
  3841. "Code11",
  3842. "Code93",
  3843. "EAN13",
  3844. "KIX",
  3845. "KIXCODE",
  3846. "MSI",
  3847. "POSTNET",
  3848. "Pharma",
  3849. "Standard 2 of 5",
  3850. "barcode",
  3851. "barcode generator",
  3852. "code128",
  3853. "code39",
  3854. "ean",
  3855. "html",
  3856. "jpeg",
  3857. "jpg",
  3858. "php",
  3859. "png",
  3860. "svg",
  3861. "upc"
  3862. ],
  3863. "support": {
  3864. "issues": "https://github.com/picqer/php-barcode-generator/issues",
  3865. "source": "https://github.com/picqer/php-barcode-generator/tree/v2.2.0"
  3866. },
  3867. "funding": [
  3868. {
  3869. "url": "https://github.com/casperbakker",
  3870. "type": "github"
  3871. }
  3872. ],
  3873. "time": "2021-03-27T09:06:22+00:00"
  3874. },
  3875. {
  3876. "name": "predis/predis",
  3877. "version": "v1.1.7",
  3878. "source": {
  3879. "type": "git",
  3880. "url": "https://github.com/predis/predis.git",
  3881. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3882. },
  3883. "dist": {
  3884. "type": "zip",
  3885. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3886. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3887. "shasum": "",
  3888. "mirrors": [
  3889. {
  3890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3891. "preferred": true
  3892. }
  3893. ]
  3894. },
  3895. "require": {
  3896. "php": ">=5.3.9"
  3897. },
  3898. "require-dev": {
  3899. "phpunit/phpunit": "~4.8"
  3900. },
  3901. "suggest": {
  3902. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3903. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3904. },
  3905. "type": "library",
  3906. "autoload": {
  3907. "psr-4": {
  3908. "Predis\\": "src/"
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "Daniele Alessandri",
  3918. "email": "suppakilla@gmail.com",
  3919. "homepage": "http://clorophilla.net",
  3920. "role": "Creator & Maintainer"
  3921. },
  3922. {
  3923. "name": "Till Krüss",
  3924. "homepage": "https://till.im",
  3925. "role": "Maintainer"
  3926. }
  3927. ],
  3928. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3929. "homepage": "http://github.com/predis/predis",
  3930. "keywords": [
  3931. "nosql",
  3932. "predis",
  3933. "redis"
  3934. ],
  3935. "support": {
  3936. "issues": "https://github.com/predis/predis/issues",
  3937. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3938. },
  3939. "funding": [
  3940. {
  3941. "url": "https://github.com/sponsors/tillkruss",
  3942. "type": "github"
  3943. }
  3944. ],
  3945. "time": "2021-04-04T19:34:46+00:00"
  3946. },
  3947. {
  3948. "name": "psr/container",
  3949. "version": "1.1.1",
  3950. "source": {
  3951. "type": "git",
  3952. "url": "https://github.com/php-fig/container.git",
  3953. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3954. },
  3955. "dist": {
  3956. "type": "zip",
  3957. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3958. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3959. "shasum": "",
  3960. "mirrors": [
  3961. {
  3962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3963. "preferred": true
  3964. }
  3965. ]
  3966. },
  3967. "require": {
  3968. "php": ">=7.2.0"
  3969. },
  3970. "type": "library",
  3971. "autoload": {
  3972. "psr-4": {
  3973. "Psr\\Container\\": "src/"
  3974. }
  3975. },
  3976. "notification-url": "https://packagist.org/downloads/",
  3977. "license": [
  3978. "MIT"
  3979. ],
  3980. "authors": [
  3981. {
  3982. "name": "PHP-FIG",
  3983. "homepage": "https://www.php-fig.org/"
  3984. }
  3985. ],
  3986. "description": "Common Container Interface (PHP FIG PSR-11)",
  3987. "homepage": "https://github.com/php-fig/container",
  3988. "keywords": [
  3989. "PSR-11",
  3990. "container",
  3991. "container-interface",
  3992. "container-interop",
  3993. "psr"
  3994. ],
  3995. "support": {
  3996. "issues": "https://github.com/php-fig/container/issues",
  3997. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3998. },
  3999. "time": "2021-03-05T17:36:06+00:00"
  4000. },
  4001. {
  4002. "name": "psr/event-dispatcher",
  4003. "version": "1.0.0",
  4004. "source": {
  4005. "type": "git",
  4006. "url": "https://github.com/php-fig/event-dispatcher.git",
  4007. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4008. },
  4009. "dist": {
  4010. "type": "zip",
  4011. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4012. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4013. "shasum": "",
  4014. "mirrors": [
  4015. {
  4016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4017. "preferred": true
  4018. }
  4019. ]
  4020. },
  4021. "require": {
  4022. "php": ">=7.2.0"
  4023. },
  4024. "type": "library",
  4025. "extra": {
  4026. "branch-alias": {
  4027. "dev-master": "1.0.x-dev"
  4028. }
  4029. },
  4030. "autoload": {
  4031. "psr-4": {
  4032. "Psr\\EventDispatcher\\": "src/"
  4033. }
  4034. },
  4035. "notification-url": "https://packagist.org/downloads/",
  4036. "license": [
  4037. "MIT"
  4038. ],
  4039. "authors": [
  4040. {
  4041. "name": "PHP-FIG",
  4042. "homepage": "http://www.php-fig.org/"
  4043. }
  4044. ],
  4045. "description": "Standard interfaces for event handling.",
  4046. "keywords": [
  4047. "events",
  4048. "psr",
  4049. "psr-14"
  4050. ],
  4051. "support": {
  4052. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4053. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4054. },
  4055. "time": "2019-01-08T18:20:26+00:00"
  4056. },
  4057. {
  4058. "name": "psr/http-client",
  4059. "version": "1.0.1",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/php-fig/http-client.git",
  4063. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4068. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4069. "shasum": "",
  4070. "mirrors": [
  4071. {
  4072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4073. "preferred": true
  4074. }
  4075. ]
  4076. },
  4077. "require": {
  4078. "php": "^7.0 || ^8.0",
  4079. "psr/http-message": "^1.0"
  4080. },
  4081. "type": "library",
  4082. "extra": {
  4083. "branch-alias": {
  4084. "dev-master": "1.0.x-dev"
  4085. }
  4086. },
  4087. "autoload": {
  4088. "psr-4": {
  4089. "Psr\\Http\\Client\\": "src/"
  4090. }
  4091. },
  4092. "notification-url": "https://packagist.org/downloads/",
  4093. "license": [
  4094. "MIT"
  4095. ],
  4096. "authors": [
  4097. {
  4098. "name": "PHP-FIG",
  4099. "homepage": "http://www.php-fig.org/"
  4100. }
  4101. ],
  4102. "description": "Common interface for HTTP clients",
  4103. "homepage": "https://github.com/php-fig/http-client",
  4104. "keywords": [
  4105. "http",
  4106. "http-client",
  4107. "psr",
  4108. "psr-18"
  4109. ],
  4110. "support": {
  4111. "source": "https://github.com/php-fig/http-client/tree/master"
  4112. },
  4113. "time": "2020-06-29T06:28:15+00:00"
  4114. },
  4115. {
  4116. "name": "psr/http-factory",
  4117. "version": "1.0.1",
  4118. "source": {
  4119. "type": "git",
  4120. "url": "https://github.com/php-fig/http-factory.git",
  4121. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4122. },
  4123. "dist": {
  4124. "type": "zip",
  4125. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4126. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  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.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\\Message\\": "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 interfaces for PSR-7 HTTP message factories",
  4161. "keywords": [
  4162. "factory",
  4163. "http",
  4164. "message",
  4165. "psr",
  4166. "psr-17",
  4167. "psr-7",
  4168. "request",
  4169. "response"
  4170. ],
  4171. "support": {
  4172. "source": "https://github.com/php-fig/http-factory/tree/master"
  4173. },
  4174. "time": "2019-04-30T12:38:16+00:00"
  4175. },
  4176. {
  4177. "name": "psr/http-message",
  4178. "version": "1.0.1",
  4179. "source": {
  4180. "type": "git",
  4181. "url": "https://github.com/php-fig/http-message.git",
  4182. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4183. },
  4184. "dist": {
  4185. "type": "zip",
  4186. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4187. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4188. "shasum": "",
  4189. "mirrors": [
  4190. {
  4191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4192. "preferred": true
  4193. }
  4194. ]
  4195. },
  4196. "require": {
  4197. "php": ">=5.3.0"
  4198. },
  4199. "type": "library",
  4200. "extra": {
  4201. "branch-alias": {
  4202. "dev-master": "1.0.x-dev"
  4203. }
  4204. },
  4205. "autoload": {
  4206. "psr-4": {
  4207. "Psr\\Http\\Message\\": "src/"
  4208. }
  4209. },
  4210. "notification-url": "https://packagist.org/downloads/",
  4211. "license": [
  4212. "MIT"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "PHP-FIG",
  4217. "homepage": "http://www.php-fig.org/"
  4218. }
  4219. ],
  4220. "description": "Common interface for HTTP messages",
  4221. "homepage": "https://github.com/php-fig/http-message",
  4222. "keywords": [
  4223. "http",
  4224. "http-message",
  4225. "psr",
  4226. "psr-7",
  4227. "request",
  4228. "response"
  4229. ],
  4230. "support": {
  4231. "source": "https://github.com/php-fig/http-message/tree/master"
  4232. },
  4233. "time": "2016-08-06T14:39:51+00:00"
  4234. },
  4235. {
  4236. "name": "psr/log",
  4237. "version": "1.1.4",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://github.com/php-fig/log.git",
  4241. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4246. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4247. "shasum": "",
  4248. "mirrors": [
  4249. {
  4250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4251. "preferred": true
  4252. }
  4253. ]
  4254. },
  4255. "require": {
  4256. "php": ">=5.3.0"
  4257. },
  4258. "type": "library",
  4259. "extra": {
  4260. "branch-alias": {
  4261. "dev-master": "1.1.x-dev"
  4262. }
  4263. },
  4264. "autoload": {
  4265. "psr-4": {
  4266. "Psr\\Log\\": "Psr/Log/"
  4267. }
  4268. },
  4269. "notification-url": "https://packagist.org/downloads/",
  4270. "license": [
  4271. "MIT"
  4272. ],
  4273. "authors": [
  4274. {
  4275. "name": "PHP-FIG",
  4276. "homepage": "https://www.php-fig.org/"
  4277. }
  4278. ],
  4279. "description": "Common interface for logging libraries",
  4280. "homepage": "https://github.com/php-fig/log",
  4281. "keywords": [
  4282. "log",
  4283. "psr",
  4284. "psr-3"
  4285. ],
  4286. "support": {
  4287. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4288. },
  4289. "time": "2021-05-03T11:20:27+00:00"
  4290. },
  4291. {
  4292. "name": "psr/simple-cache",
  4293. "version": "1.0.1",
  4294. "source": {
  4295. "type": "git",
  4296. "url": "https://github.com/php-fig/simple-cache.git",
  4297. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4298. },
  4299. "dist": {
  4300. "type": "zip",
  4301. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4302. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4303. "shasum": "",
  4304. "mirrors": [
  4305. {
  4306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4307. "preferred": true
  4308. }
  4309. ]
  4310. },
  4311. "require": {
  4312. "php": ">=5.3.0"
  4313. },
  4314. "type": "library",
  4315. "extra": {
  4316. "branch-alias": {
  4317. "dev-master": "1.0.x-dev"
  4318. }
  4319. },
  4320. "autoload": {
  4321. "psr-4": {
  4322. "Psr\\SimpleCache\\": "src/"
  4323. }
  4324. },
  4325. "notification-url": "https://packagist.org/downloads/",
  4326. "license": [
  4327. "MIT"
  4328. ],
  4329. "authors": [
  4330. {
  4331. "name": "PHP-FIG",
  4332. "homepage": "http://www.php-fig.org/"
  4333. }
  4334. ],
  4335. "description": "Common interfaces for simple caching",
  4336. "keywords": [
  4337. "cache",
  4338. "caching",
  4339. "psr",
  4340. "psr-16",
  4341. "simple-cache"
  4342. ],
  4343. "support": {
  4344. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4345. },
  4346. "time": "2017-10-23T01:57:42+00:00"
  4347. },
  4348. {
  4349. "name": "psy/psysh",
  4350. "version": "v0.10.8",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/bobthecow/psysh.git",
  4354. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4359. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4360. "shasum": "",
  4361. "mirrors": [
  4362. {
  4363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4364. "preferred": true
  4365. }
  4366. ]
  4367. },
  4368. "require": {
  4369. "ext-json": "*",
  4370. "ext-tokenizer": "*",
  4371. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4372. "php": "^8.0 || ^7.0 || ^5.5.9",
  4373. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4374. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4375. },
  4376. "require-dev": {
  4377. "bamarni/composer-bin-plugin": "^1.2",
  4378. "hoa/console": "3.17.*"
  4379. },
  4380. "suggest": {
  4381. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4382. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4383. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4384. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4385. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4386. },
  4387. "bin": [
  4388. "bin/psysh"
  4389. ],
  4390. "type": "library",
  4391. "extra": {
  4392. "branch-alias": {
  4393. "dev-main": "0.10.x-dev"
  4394. }
  4395. },
  4396. "autoload": {
  4397. "files": [
  4398. "src/functions.php"
  4399. ],
  4400. "psr-4": {
  4401. "Psy\\": "src/"
  4402. }
  4403. },
  4404. "notification-url": "https://packagist.org/downloads/",
  4405. "license": [
  4406. "MIT"
  4407. ],
  4408. "authors": [
  4409. {
  4410. "name": "Justin Hileman",
  4411. "email": "justin@justinhileman.info",
  4412. "homepage": "http://justinhileman.com"
  4413. }
  4414. ],
  4415. "description": "An interactive shell for modern PHP.",
  4416. "homepage": "http://psysh.org",
  4417. "keywords": [
  4418. "REPL",
  4419. "console",
  4420. "interactive",
  4421. "shell"
  4422. ],
  4423. "support": {
  4424. "issues": "https://github.com/bobthecow/psysh/issues",
  4425. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4426. },
  4427. "time": "2021-04-10T16:23:39+00:00"
  4428. },
  4429. {
  4430. "name": "pusher/pusher-php-server",
  4431. "version": "v4.1.5",
  4432. "source": {
  4433. "type": "git",
  4434. "url": "https://github.com/pusher/pusher-http-php.git",
  4435. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4436. },
  4437. "dist": {
  4438. "type": "zip",
  4439. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4440. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4441. "shasum": "",
  4442. "mirrors": [
  4443. {
  4444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4445. "preferred": true
  4446. }
  4447. ]
  4448. },
  4449. "require": {
  4450. "ext-curl": "*",
  4451. "paragonie/sodium_compat": "^1.6",
  4452. "php": "^7.1|^8.0",
  4453. "psr/log": "^1.0"
  4454. },
  4455. "require-dev": {
  4456. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4457. },
  4458. "type": "library",
  4459. "extra": {
  4460. "branch-alias": {
  4461. "dev-master": "3.4-dev"
  4462. }
  4463. },
  4464. "autoload": {
  4465. "psr-4": {
  4466. "Pusher\\": "src/"
  4467. }
  4468. },
  4469. "notification-url": "https://packagist.org/downloads/",
  4470. "license": [
  4471. "MIT"
  4472. ],
  4473. "description": "Library for interacting with the Pusher REST API",
  4474. "keywords": [
  4475. "events",
  4476. "messaging",
  4477. "php-pusher-server",
  4478. "publish",
  4479. "push",
  4480. "pusher",
  4481. "real time",
  4482. "real-time",
  4483. "realtime",
  4484. "rest",
  4485. "trigger"
  4486. ],
  4487. "support": {
  4488. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4489. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4490. },
  4491. "time": "2020-12-09T09:38:19+00:00"
  4492. },
  4493. {
  4494. "name": "ralouphie/getallheaders",
  4495. "version": "3.0.3",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/ralouphie/getallheaders.git",
  4499. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4504. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4505. "shasum": "",
  4506. "mirrors": [
  4507. {
  4508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4509. "preferred": true
  4510. }
  4511. ]
  4512. },
  4513. "require": {
  4514. "php": ">=5.6"
  4515. },
  4516. "require-dev": {
  4517. "php-coveralls/php-coveralls": "^2.1",
  4518. "phpunit/phpunit": "^5 || ^6.5"
  4519. },
  4520. "type": "library",
  4521. "autoload": {
  4522. "files": [
  4523. "src/getallheaders.php"
  4524. ]
  4525. },
  4526. "notification-url": "https://packagist.org/downloads/",
  4527. "license": [
  4528. "MIT"
  4529. ],
  4530. "authors": [
  4531. {
  4532. "name": "Ralph Khattar",
  4533. "email": "ralph.khattar@gmail.com"
  4534. }
  4535. ],
  4536. "description": "A polyfill for getallheaders.",
  4537. "support": {
  4538. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4539. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4540. },
  4541. "time": "2019-03-08T08:55:37+00:00"
  4542. },
  4543. {
  4544. "name": "ramsey/collection",
  4545. "version": "1.2.1",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://github.com/ramsey/collection.git",
  4549. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://api.github.com/repos/ramsey/collection/zipball/eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4554. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4555. "shasum": "",
  4556. "mirrors": [
  4557. {
  4558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4559. "preferred": true
  4560. }
  4561. ]
  4562. },
  4563. "require": {
  4564. "php": "^7.3 || ^8",
  4565. "symfony/polyfill-php81": "^1.23"
  4566. },
  4567. "require-dev": {
  4568. "captainhook/captainhook": "^5.3",
  4569. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4570. "ergebnis/composer-normalize": "^2.6",
  4571. "fakerphp/faker": "^1.5",
  4572. "hamcrest/hamcrest-php": "^2",
  4573. "jangregor/phpstan-prophecy": "^0.8",
  4574. "mockery/mockery": "^1.3",
  4575. "phpspec/prophecy-phpunit": "^2.0",
  4576. "phpstan/extension-installer": "^1",
  4577. "phpstan/phpstan": "^0.12.32",
  4578. "phpstan/phpstan-mockery": "^0.12.5",
  4579. "phpstan/phpstan-phpunit": "^0.12.11",
  4580. "phpunit/phpunit": "^8.5 || ^9",
  4581. "psy/psysh": "^0.10.4",
  4582. "slevomat/coding-standard": "^6.3",
  4583. "squizlabs/php_codesniffer": "^3.5",
  4584. "vimeo/psalm": "^4.4"
  4585. },
  4586. "type": "library",
  4587. "autoload": {
  4588. "psr-4": {
  4589. "Ramsey\\Collection\\": "src/"
  4590. }
  4591. },
  4592. "notification-url": "https://packagist.org/downloads/",
  4593. "license": [
  4594. "MIT"
  4595. ],
  4596. "authors": [
  4597. {
  4598. "name": "Ben Ramsey",
  4599. "email": "ben@benramsey.com",
  4600. "homepage": "https://benramsey.com"
  4601. }
  4602. ],
  4603. "description": "A PHP library for representing and manipulating collections.",
  4604. "keywords": [
  4605. "array",
  4606. "collection",
  4607. "hash",
  4608. "map",
  4609. "queue",
  4610. "set"
  4611. ],
  4612. "support": {
  4613. "issues": "https://github.com/ramsey/collection/issues",
  4614. "source": "https://github.com/ramsey/collection/tree/1.2.1"
  4615. },
  4616. "funding": [
  4617. {
  4618. "url": "https://github.com/ramsey",
  4619. "type": "github"
  4620. },
  4621. {
  4622. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4623. "type": "tidelift"
  4624. }
  4625. ],
  4626. "time": "2021-08-06T03:41:06+00:00"
  4627. },
  4628. {
  4629. "name": "ramsey/uuid",
  4630. "version": "4.2.1",
  4631. "source": {
  4632. "type": "git",
  4633. "url": "https://github.com/ramsey/uuid.git",
  4634. "reference": "fe665a03df4f056aa65af552a96e1976df8c8dae"
  4635. },
  4636. "dist": {
  4637. "type": "zip",
  4638. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fe665a03df4f056aa65af552a96e1976df8c8dae",
  4639. "reference": "fe665a03df4f056aa65af552a96e1976df8c8dae",
  4640. "shasum": "",
  4641. "mirrors": [
  4642. {
  4643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4644. "preferred": true
  4645. }
  4646. ]
  4647. },
  4648. "require": {
  4649. "brick/math": "^0.8 || ^0.9",
  4650. "ext-json": "*",
  4651. "php": "^7.2 || ^8",
  4652. "ramsey/collection": "^1.0",
  4653. "symfony/polyfill-ctype": "^1.8"
  4654. },
  4655. "replace": {
  4656. "rhumsaa/uuid": "self.version"
  4657. },
  4658. "require-dev": {
  4659. "captainhook/captainhook": "^5.10",
  4660. "captainhook/plugin-composer": "^5.3",
  4661. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4662. "doctrine/annotations": "^1.8",
  4663. "ergebnis/composer-normalize": "^2.15",
  4664. "mockery/mockery": "^1.3",
  4665. "moontoast/math": "^1.1",
  4666. "paragonie/random-lib": "^2",
  4667. "php-mock/php-mock": "^2.2",
  4668. "php-mock/php-mock-mockery": "^1.3",
  4669. "php-parallel-lint/php-parallel-lint": "^1.1",
  4670. "phpbench/phpbench": "^1.0",
  4671. "phpstan/extension-installer": "^1.0",
  4672. "phpstan/phpstan": "^0.12",
  4673. "phpstan/phpstan-mockery": "^0.12",
  4674. "phpstan/phpstan-phpunit": "^0.12",
  4675. "phpunit/phpunit": "^8.5 || ^9",
  4676. "slevomat/coding-standard": "^7.0",
  4677. "squizlabs/php_codesniffer": "^3.5",
  4678. "vimeo/psalm": "^4.9"
  4679. },
  4680. "suggest": {
  4681. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4682. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4683. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4684. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4685. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4686. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4687. },
  4688. "type": "library",
  4689. "extra": {
  4690. "branch-alias": {
  4691. "dev-main": "4.x-dev"
  4692. },
  4693. "captainhook": {
  4694. "force-install": true
  4695. }
  4696. },
  4697. "autoload": {
  4698. "psr-4": {
  4699. "Ramsey\\Uuid\\": "src/"
  4700. },
  4701. "files": [
  4702. "src/functions.php"
  4703. ]
  4704. },
  4705. "notification-url": "https://packagist.org/downloads/",
  4706. "license": [
  4707. "MIT"
  4708. ],
  4709. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4710. "keywords": [
  4711. "guid",
  4712. "identifier",
  4713. "uuid"
  4714. ],
  4715. "support": {
  4716. "issues": "https://github.com/ramsey/uuid/issues",
  4717. "source": "https://github.com/ramsey/uuid/tree/4.2.1"
  4718. },
  4719. "funding": [
  4720. {
  4721. "url": "https://github.com/ramsey",
  4722. "type": "github"
  4723. },
  4724. {
  4725. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4726. "type": "tidelift"
  4727. }
  4728. ],
  4729. "time": "2021-08-11T01:06:55+00:00"
  4730. },
  4731. {
  4732. "name": "swiftmailer/swiftmailer",
  4733. "version": "v6.2.7",
  4734. "source": {
  4735. "type": "git",
  4736. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4737. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4738. },
  4739. "dist": {
  4740. "type": "zip",
  4741. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4742. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4743. "shasum": "",
  4744. "mirrors": [
  4745. {
  4746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4747. "preferred": true
  4748. }
  4749. ]
  4750. },
  4751. "require": {
  4752. "egulias/email-validator": "^2.0|^3.1",
  4753. "php": ">=7.0.0",
  4754. "symfony/polyfill-iconv": "^1.0",
  4755. "symfony/polyfill-intl-idn": "^1.10",
  4756. "symfony/polyfill-mbstring": "^1.0"
  4757. },
  4758. "require-dev": {
  4759. "mockery/mockery": "^1.0",
  4760. "symfony/phpunit-bridge": "^4.4|^5.0"
  4761. },
  4762. "suggest": {
  4763. "ext-intl": "Needed to support internationalized email addresses"
  4764. },
  4765. "type": "library",
  4766. "extra": {
  4767. "branch-alias": {
  4768. "dev-master": "6.2-dev"
  4769. }
  4770. },
  4771. "autoload": {
  4772. "files": [
  4773. "lib/swift_required.php"
  4774. ]
  4775. },
  4776. "notification-url": "https://packagist.org/downloads/",
  4777. "license": [
  4778. "MIT"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "Chris Corbyn"
  4783. },
  4784. {
  4785. "name": "Fabien Potencier",
  4786. "email": "fabien@symfony.com"
  4787. }
  4788. ],
  4789. "description": "Swiftmailer, free feature-rich PHP mailer",
  4790. "homepage": "https://swiftmailer.symfony.com",
  4791. "keywords": [
  4792. "email",
  4793. "mail",
  4794. "mailer"
  4795. ],
  4796. "support": {
  4797. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4798. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4799. },
  4800. "funding": [
  4801. {
  4802. "url": "https://github.com/fabpot",
  4803. "type": "github"
  4804. },
  4805. {
  4806. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4807. "type": "tidelift"
  4808. }
  4809. ],
  4810. "time": "2021-03-09T12:30:35+00:00"
  4811. },
  4812. {
  4813. "name": "symfony/console",
  4814. "version": "v5.3.7",
  4815. "source": {
  4816. "type": "git",
  4817. "url": "https://github.com/symfony/console.git",
  4818. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a"
  4819. },
  4820. "dist": {
  4821. "type": "zip",
  4822. "url": "https://api.github.com/repos/symfony/console/zipball/8b1008344647462ae6ec57559da166c2bfa5e16a",
  4823. "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a",
  4824. "shasum": "",
  4825. "mirrors": [
  4826. {
  4827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4828. "preferred": true
  4829. }
  4830. ]
  4831. },
  4832. "require": {
  4833. "php": ">=7.2.5",
  4834. "symfony/deprecation-contracts": "^2.1",
  4835. "symfony/polyfill-mbstring": "~1.0",
  4836. "symfony/polyfill-php73": "^1.8",
  4837. "symfony/polyfill-php80": "^1.16",
  4838. "symfony/service-contracts": "^1.1|^2",
  4839. "symfony/string": "^5.1"
  4840. },
  4841. "conflict": {
  4842. "psr/log": ">=3",
  4843. "symfony/dependency-injection": "<4.4",
  4844. "symfony/dotenv": "<5.1",
  4845. "symfony/event-dispatcher": "<4.4",
  4846. "symfony/lock": "<4.4",
  4847. "symfony/process": "<4.4"
  4848. },
  4849. "provide": {
  4850. "psr/log-implementation": "1.0|2.0"
  4851. },
  4852. "require-dev": {
  4853. "psr/log": "^1|^2",
  4854. "symfony/config": "^4.4|^5.0",
  4855. "symfony/dependency-injection": "^4.4|^5.0",
  4856. "symfony/event-dispatcher": "^4.4|^5.0",
  4857. "symfony/lock": "^4.4|^5.0",
  4858. "symfony/process": "^4.4|^5.0",
  4859. "symfony/var-dumper": "^4.4|^5.0"
  4860. },
  4861. "suggest": {
  4862. "psr/log": "For using the console logger",
  4863. "symfony/event-dispatcher": "",
  4864. "symfony/lock": "",
  4865. "symfony/process": ""
  4866. },
  4867. "type": "library",
  4868. "autoload": {
  4869. "psr-4": {
  4870. "Symfony\\Component\\Console\\": ""
  4871. },
  4872. "exclude-from-classmap": [
  4873. "/Tests/"
  4874. ]
  4875. },
  4876. "notification-url": "https://packagist.org/downloads/",
  4877. "license": [
  4878. "MIT"
  4879. ],
  4880. "authors": [
  4881. {
  4882. "name": "Fabien Potencier",
  4883. "email": "fabien@symfony.com"
  4884. },
  4885. {
  4886. "name": "Symfony Community",
  4887. "homepage": "https://symfony.com/contributors"
  4888. }
  4889. ],
  4890. "description": "Eases the creation of beautiful and testable command line interfaces",
  4891. "homepage": "https://symfony.com",
  4892. "keywords": [
  4893. "cli",
  4894. "command line",
  4895. "console",
  4896. "terminal"
  4897. ],
  4898. "support": {
  4899. "source": "https://github.com/symfony/console/tree/v5.3.7"
  4900. },
  4901. "funding": [
  4902. {
  4903. "url": "https://symfony.com/sponsor",
  4904. "type": "custom"
  4905. },
  4906. {
  4907. "url": "https://github.com/fabpot",
  4908. "type": "github"
  4909. },
  4910. {
  4911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4912. "type": "tidelift"
  4913. }
  4914. ],
  4915. "time": "2021-08-25T20:02:16+00:00"
  4916. },
  4917. {
  4918. "name": "symfony/css-selector",
  4919. "version": "v5.3.4",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/symfony/css-selector.git",
  4923. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  4928. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  4929. "shasum": "",
  4930. "mirrors": [
  4931. {
  4932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4933. "preferred": true
  4934. }
  4935. ]
  4936. },
  4937. "require": {
  4938. "php": ">=7.2.5",
  4939. "symfony/polyfill-php80": "^1.16"
  4940. },
  4941. "type": "library",
  4942. "autoload": {
  4943. "psr-4": {
  4944. "Symfony\\Component\\CssSelector\\": ""
  4945. },
  4946. "exclude-from-classmap": [
  4947. "/Tests/"
  4948. ]
  4949. },
  4950. "notification-url": "https://packagist.org/downloads/",
  4951. "license": [
  4952. "MIT"
  4953. ],
  4954. "authors": [
  4955. {
  4956. "name": "Fabien Potencier",
  4957. "email": "fabien@symfony.com"
  4958. },
  4959. {
  4960. "name": "Jean-François Simon",
  4961. "email": "jeanfrancois.simon@sensiolabs.com"
  4962. },
  4963. {
  4964. "name": "Symfony Community",
  4965. "homepage": "https://symfony.com/contributors"
  4966. }
  4967. ],
  4968. "description": "Converts CSS selectors to XPath expressions",
  4969. "homepage": "https://symfony.com",
  4970. "support": {
  4971. "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
  4972. },
  4973. "funding": [
  4974. {
  4975. "url": "https://symfony.com/sponsor",
  4976. "type": "custom"
  4977. },
  4978. {
  4979. "url": "https://github.com/fabpot",
  4980. "type": "github"
  4981. },
  4982. {
  4983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4984. "type": "tidelift"
  4985. }
  4986. ],
  4987. "time": "2021-07-21T12:38:00+00:00"
  4988. },
  4989. {
  4990. "name": "symfony/deprecation-contracts",
  4991. "version": "v2.4.0",
  4992. "source": {
  4993. "type": "git",
  4994. "url": "https://github.com/symfony/deprecation-contracts.git",
  4995. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4996. },
  4997. "dist": {
  4998. "type": "zip",
  4999. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5000. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5001. "shasum": "",
  5002. "mirrors": [
  5003. {
  5004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5005. "preferred": true
  5006. }
  5007. ]
  5008. },
  5009. "require": {
  5010. "php": ">=7.1"
  5011. },
  5012. "type": "library",
  5013. "extra": {
  5014. "branch-alias": {
  5015. "dev-main": "2.4-dev"
  5016. },
  5017. "thanks": {
  5018. "name": "symfony/contracts",
  5019. "url": "https://github.com/symfony/contracts"
  5020. }
  5021. },
  5022. "autoload": {
  5023. "files": [
  5024. "function.php"
  5025. ]
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "MIT"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Nicolas Grekas",
  5034. "email": "p@tchwork.com"
  5035. },
  5036. {
  5037. "name": "Symfony Community",
  5038. "homepage": "https://symfony.com/contributors"
  5039. }
  5040. ],
  5041. "description": "A generic function and convention to trigger deprecation notices",
  5042. "homepage": "https://symfony.com",
  5043. "support": {
  5044. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5045. },
  5046. "funding": [
  5047. {
  5048. "url": "https://symfony.com/sponsor",
  5049. "type": "custom"
  5050. },
  5051. {
  5052. "url": "https://github.com/fabpot",
  5053. "type": "github"
  5054. },
  5055. {
  5056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5057. "type": "tidelift"
  5058. }
  5059. ],
  5060. "time": "2021-03-23T23:28:01+00:00"
  5061. },
  5062. {
  5063. "name": "symfony/error-handler",
  5064. "version": "v5.3.7",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/symfony/error-handler.git",
  5068. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/symfony/error-handler/zipball/3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5073. "reference": "3bc60d0fba00ae8d1eaa9eb5ab11a2bbdd1fc321",
  5074. "shasum": "",
  5075. "mirrors": [
  5076. {
  5077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5078. "preferred": true
  5079. }
  5080. ]
  5081. },
  5082. "require": {
  5083. "php": ">=7.2.5",
  5084. "psr/log": "^1|^2|^3",
  5085. "symfony/var-dumper": "^4.4|^5.0"
  5086. },
  5087. "require-dev": {
  5088. "symfony/deprecation-contracts": "^2.1",
  5089. "symfony/http-kernel": "^4.4|^5.0",
  5090. "symfony/serializer": "^4.4|^5.0"
  5091. },
  5092. "type": "library",
  5093. "autoload": {
  5094. "psr-4": {
  5095. "Symfony\\Component\\ErrorHandler\\": ""
  5096. },
  5097. "exclude-from-classmap": [
  5098. "/Tests/"
  5099. ]
  5100. },
  5101. "notification-url": "https://packagist.org/downloads/",
  5102. "license": [
  5103. "MIT"
  5104. ],
  5105. "authors": [
  5106. {
  5107. "name": "Fabien Potencier",
  5108. "email": "fabien@symfony.com"
  5109. },
  5110. {
  5111. "name": "Symfony Community",
  5112. "homepage": "https://symfony.com/contributors"
  5113. }
  5114. ],
  5115. "description": "Provides tools to manage errors and ease debugging PHP code",
  5116. "homepage": "https://symfony.com",
  5117. "support": {
  5118. "source": "https://github.com/symfony/error-handler/tree/v5.3.7"
  5119. },
  5120. "funding": [
  5121. {
  5122. "url": "https://symfony.com/sponsor",
  5123. "type": "custom"
  5124. },
  5125. {
  5126. "url": "https://github.com/fabpot",
  5127. "type": "github"
  5128. },
  5129. {
  5130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5131. "type": "tidelift"
  5132. }
  5133. ],
  5134. "time": "2021-08-28T15:07:08+00:00"
  5135. },
  5136. {
  5137. "name": "symfony/event-dispatcher",
  5138. "version": "v5.3.7",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/symfony/event-dispatcher.git",
  5142. "reference": "ce7b20d69c66a20939d8952b617506a44d102130"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ce7b20d69c66a20939d8952b617506a44d102130",
  5147. "reference": "ce7b20d69c66a20939d8952b617506a44d102130",
  5148. "shasum": "",
  5149. "mirrors": [
  5150. {
  5151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5152. "preferred": true
  5153. }
  5154. ]
  5155. },
  5156. "require": {
  5157. "php": ">=7.2.5",
  5158. "symfony/deprecation-contracts": "^2.1",
  5159. "symfony/event-dispatcher-contracts": "^2",
  5160. "symfony/polyfill-php80": "^1.16"
  5161. },
  5162. "conflict": {
  5163. "symfony/dependency-injection": "<4.4"
  5164. },
  5165. "provide": {
  5166. "psr/event-dispatcher-implementation": "1.0",
  5167. "symfony/event-dispatcher-implementation": "2.0"
  5168. },
  5169. "require-dev": {
  5170. "psr/log": "^1|^2|^3",
  5171. "symfony/config": "^4.4|^5.0",
  5172. "symfony/dependency-injection": "^4.4|^5.0",
  5173. "symfony/error-handler": "^4.4|^5.0",
  5174. "symfony/expression-language": "^4.4|^5.0",
  5175. "symfony/http-foundation": "^4.4|^5.0",
  5176. "symfony/service-contracts": "^1.1|^2",
  5177. "symfony/stopwatch": "^4.4|^5.0"
  5178. },
  5179. "suggest": {
  5180. "symfony/dependency-injection": "",
  5181. "symfony/http-kernel": ""
  5182. },
  5183. "type": "library",
  5184. "autoload": {
  5185. "psr-4": {
  5186. "Symfony\\Component\\EventDispatcher\\": ""
  5187. },
  5188. "exclude-from-classmap": [
  5189. "/Tests/"
  5190. ]
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "Fabien Potencier",
  5199. "email": "fabien@symfony.com"
  5200. },
  5201. {
  5202. "name": "Symfony Community",
  5203. "homepage": "https://symfony.com/contributors"
  5204. }
  5205. ],
  5206. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5207. "homepage": "https://symfony.com",
  5208. "support": {
  5209. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.7"
  5210. },
  5211. "funding": [
  5212. {
  5213. "url": "https://symfony.com/sponsor",
  5214. "type": "custom"
  5215. },
  5216. {
  5217. "url": "https://github.com/fabpot",
  5218. "type": "github"
  5219. },
  5220. {
  5221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5222. "type": "tidelift"
  5223. }
  5224. ],
  5225. "time": "2021-08-04T21:20:46+00:00"
  5226. },
  5227. {
  5228. "name": "symfony/event-dispatcher-contracts",
  5229. "version": "v2.4.0",
  5230. "source": {
  5231. "type": "git",
  5232. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5233. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5234. },
  5235. "dist": {
  5236. "type": "zip",
  5237. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5238. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5239. "shasum": "",
  5240. "mirrors": [
  5241. {
  5242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5243. "preferred": true
  5244. }
  5245. ]
  5246. },
  5247. "require": {
  5248. "php": ">=7.2.5",
  5249. "psr/event-dispatcher": "^1"
  5250. },
  5251. "suggest": {
  5252. "symfony/event-dispatcher-implementation": ""
  5253. },
  5254. "type": "library",
  5255. "extra": {
  5256. "branch-alias": {
  5257. "dev-main": "2.4-dev"
  5258. },
  5259. "thanks": {
  5260. "name": "symfony/contracts",
  5261. "url": "https://github.com/symfony/contracts"
  5262. }
  5263. },
  5264. "autoload": {
  5265. "psr-4": {
  5266. "Symfony\\Contracts\\EventDispatcher\\": ""
  5267. }
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "Nicolas Grekas",
  5276. "email": "p@tchwork.com"
  5277. },
  5278. {
  5279. "name": "Symfony Community",
  5280. "homepage": "https://symfony.com/contributors"
  5281. }
  5282. ],
  5283. "description": "Generic abstractions related to dispatching event",
  5284. "homepage": "https://symfony.com",
  5285. "keywords": [
  5286. "abstractions",
  5287. "contracts",
  5288. "decoupling",
  5289. "interfaces",
  5290. "interoperability",
  5291. "standards"
  5292. ],
  5293. "support": {
  5294. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5295. },
  5296. "funding": [
  5297. {
  5298. "url": "https://symfony.com/sponsor",
  5299. "type": "custom"
  5300. },
  5301. {
  5302. "url": "https://github.com/fabpot",
  5303. "type": "github"
  5304. },
  5305. {
  5306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5307. "type": "tidelift"
  5308. }
  5309. ],
  5310. "time": "2021-03-23T23:28:01+00:00"
  5311. },
  5312. {
  5313. "name": "symfony/finder",
  5314. "version": "v5.3.7",
  5315. "source": {
  5316. "type": "git",
  5317. "url": "https://github.com/symfony/finder.git",
  5318. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93"
  5319. },
  5320. "dist": {
  5321. "type": "zip",
  5322. "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5323. "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93",
  5324. "shasum": "",
  5325. "mirrors": [
  5326. {
  5327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5328. "preferred": true
  5329. }
  5330. ]
  5331. },
  5332. "require": {
  5333. "php": ">=7.2.5",
  5334. "symfony/polyfill-php80": "^1.16"
  5335. },
  5336. "type": "library",
  5337. "autoload": {
  5338. "psr-4": {
  5339. "Symfony\\Component\\Finder\\": ""
  5340. },
  5341. "exclude-from-classmap": [
  5342. "/Tests/"
  5343. ]
  5344. },
  5345. "notification-url": "https://packagist.org/downloads/",
  5346. "license": [
  5347. "MIT"
  5348. ],
  5349. "authors": [
  5350. {
  5351. "name": "Fabien Potencier",
  5352. "email": "fabien@symfony.com"
  5353. },
  5354. {
  5355. "name": "Symfony Community",
  5356. "homepage": "https://symfony.com/contributors"
  5357. }
  5358. ],
  5359. "description": "Finds files and directories via an intuitive fluent interface",
  5360. "homepage": "https://symfony.com",
  5361. "support": {
  5362. "source": "https://github.com/symfony/finder/tree/v5.3.7"
  5363. },
  5364. "funding": [
  5365. {
  5366. "url": "https://symfony.com/sponsor",
  5367. "type": "custom"
  5368. },
  5369. {
  5370. "url": "https://github.com/fabpot",
  5371. "type": "github"
  5372. },
  5373. {
  5374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5375. "type": "tidelift"
  5376. }
  5377. ],
  5378. "time": "2021-08-04T21:20:46+00:00"
  5379. },
  5380. {
  5381. "name": "symfony/http-client-contracts",
  5382. "version": "v2.4.0",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/symfony/http-client-contracts.git",
  5386. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5391. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5392. "shasum": "",
  5393. "mirrors": [
  5394. {
  5395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5396. "preferred": true
  5397. }
  5398. ]
  5399. },
  5400. "require": {
  5401. "php": ">=7.2.5"
  5402. },
  5403. "suggest": {
  5404. "symfony/http-client-implementation": ""
  5405. },
  5406. "type": "library",
  5407. "extra": {
  5408. "branch-alias": {
  5409. "dev-main": "2.4-dev"
  5410. },
  5411. "thanks": {
  5412. "name": "symfony/contracts",
  5413. "url": "https://github.com/symfony/contracts"
  5414. }
  5415. },
  5416. "autoload": {
  5417. "psr-4": {
  5418. "Symfony\\Contracts\\HttpClient\\": ""
  5419. }
  5420. },
  5421. "notification-url": "https://packagist.org/downloads/",
  5422. "license": [
  5423. "MIT"
  5424. ],
  5425. "authors": [
  5426. {
  5427. "name": "Nicolas Grekas",
  5428. "email": "p@tchwork.com"
  5429. },
  5430. {
  5431. "name": "Symfony Community",
  5432. "homepage": "https://symfony.com/contributors"
  5433. }
  5434. ],
  5435. "description": "Generic abstractions related to HTTP clients",
  5436. "homepage": "https://symfony.com",
  5437. "keywords": [
  5438. "abstractions",
  5439. "contracts",
  5440. "decoupling",
  5441. "interfaces",
  5442. "interoperability",
  5443. "standards"
  5444. ],
  5445. "support": {
  5446. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5447. },
  5448. "funding": [
  5449. {
  5450. "url": "https://symfony.com/sponsor",
  5451. "type": "custom"
  5452. },
  5453. {
  5454. "url": "https://github.com/fabpot",
  5455. "type": "github"
  5456. },
  5457. {
  5458. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5459. "type": "tidelift"
  5460. }
  5461. ],
  5462. "time": "2021-04-11T23:07:08+00:00"
  5463. },
  5464. {
  5465. "name": "symfony/http-foundation",
  5466. "version": "v5.3.7",
  5467. "source": {
  5468. "type": "git",
  5469. "url": "https://github.com/symfony/http-foundation.git",
  5470. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5"
  5471. },
  5472. "dist": {
  5473. "type": "zip",
  5474. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5475. "reference": "e36c8e5502b4f3f0190c675f1c1f1248a64f04e5",
  5476. "shasum": "",
  5477. "mirrors": [
  5478. {
  5479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5480. "preferred": true
  5481. }
  5482. ]
  5483. },
  5484. "require": {
  5485. "php": ">=7.2.5",
  5486. "symfony/deprecation-contracts": "^2.1",
  5487. "symfony/polyfill-mbstring": "~1.1",
  5488. "symfony/polyfill-php80": "^1.16"
  5489. },
  5490. "require-dev": {
  5491. "predis/predis": "~1.0",
  5492. "symfony/cache": "^4.4|^5.0",
  5493. "symfony/expression-language": "^4.4|^5.0",
  5494. "symfony/mime": "^4.4|^5.0"
  5495. },
  5496. "suggest": {
  5497. "symfony/mime": "To use the file extension guesser"
  5498. },
  5499. "type": "library",
  5500. "autoload": {
  5501. "psr-4": {
  5502. "Symfony\\Component\\HttpFoundation\\": ""
  5503. },
  5504. "exclude-from-classmap": [
  5505. "/Tests/"
  5506. ]
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Fabien Potencier",
  5515. "email": "fabien@symfony.com"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Defines an object-oriented layer for the HTTP specification",
  5523. "homepage": "https://symfony.com",
  5524. "support": {
  5525. "source": "https://github.com/symfony/http-foundation/tree/v5.3.7"
  5526. },
  5527. "funding": [
  5528. {
  5529. "url": "https://symfony.com/sponsor",
  5530. "type": "custom"
  5531. },
  5532. {
  5533. "url": "https://github.com/fabpot",
  5534. "type": "github"
  5535. },
  5536. {
  5537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5538. "type": "tidelift"
  5539. }
  5540. ],
  5541. "time": "2021-08-27T11:20:35+00:00"
  5542. },
  5543. {
  5544. "name": "symfony/http-kernel",
  5545. "version": "v5.3.7",
  5546. "source": {
  5547. "type": "git",
  5548. "url": "https://github.com/symfony/http-kernel.git",
  5549. "reference": "a3a78e37935a527b50376c22ac1cec35b57fe787"
  5550. },
  5551. "dist": {
  5552. "type": "zip",
  5553. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a3a78e37935a527b50376c22ac1cec35b57fe787",
  5554. "reference": "a3a78e37935a527b50376c22ac1cec35b57fe787",
  5555. "shasum": "",
  5556. "mirrors": [
  5557. {
  5558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5559. "preferred": true
  5560. }
  5561. ]
  5562. },
  5563. "require": {
  5564. "php": ">=7.2.5",
  5565. "psr/log": "^1|^2",
  5566. "symfony/deprecation-contracts": "^2.1",
  5567. "symfony/error-handler": "^4.4|^5.0",
  5568. "symfony/event-dispatcher": "^5.0",
  5569. "symfony/http-client-contracts": "^1.1|^2",
  5570. "symfony/http-foundation": "^5.3.7",
  5571. "symfony/polyfill-ctype": "^1.8",
  5572. "symfony/polyfill-php73": "^1.9",
  5573. "symfony/polyfill-php80": "^1.16"
  5574. },
  5575. "conflict": {
  5576. "symfony/browser-kit": "<4.4",
  5577. "symfony/cache": "<5.0",
  5578. "symfony/config": "<5.0",
  5579. "symfony/console": "<4.4",
  5580. "symfony/dependency-injection": "<5.3",
  5581. "symfony/doctrine-bridge": "<5.0",
  5582. "symfony/form": "<5.0",
  5583. "symfony/http-client": "<5.0",
  5584. "symfony/mailer": "<5.0",
  5585. "symfony/messenger": "<5.0",
  5586. "symfony/translation": "<5.0",
  5587. "symfony/twig-bridge": "<5.0",
  5588. "symfony/validator": "<5.0",
  5589. "twig/twig": "<2.13"
  5590. },
  5591. "provide": {
  5592. "psr/log-implementation": "1.0|2.0"
  5593. },
  5594. "require-dev": {
  5595. "psr/cache": "^1.0|^2.0|^3.0",
  5596. "symfony/browser-kit": "^4.4|^5.0",
  5597. "symfony/config": "^5.0",
  5598. "symfony/console": "^4.4|^5.0",
  5599. "symfony/css-selector": "^4.4|^5.0",
  5600. "symfony/dependency-injection": "^5.3",
  5601. "symfony/dom-crawler": "^4.4|^5.0",
  5602. "symfony/expression-language": "^4.4|^5.0",
  5603. "symfony/finder": "^4.4|^5.0",
  5604. "symfony/process": "^4.4|^5.0",
  5605. "symfony/routing": "^4.4|^5.0",
  5606. "symfony/stopwatch": "^4.4|^5.0",
  5607. "symfony/translation": "^4.4|^5.0",
  5608. "symfony/translation-contracts": "^1.1|^2",
  5609. "twig/twig": "^2.13|^3.0.4"
  5610. },
  5611. "suggest": {
  5612. "symfony/browser-kit": "",
  5613. "symfony/config": "",
  5614. "symfony/console": "",
  5615. "symfony/dependency-injection": ""
  5616. },
  5617. "type": "library",
  5618. "autoload": {
  5619. "psr-4": {
  5620. "Symfony\\Component\\HttpKernel\\": ""
  5621. },
  5622. "exclude-from-classmap": [
  5623. "/Tests/"
  5624. ]
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "MIT"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Fabien Potencier",
  5633. "email": "fabien@symfony.com"
  5634. },
  5635. {
  5636. "name": "Symfony Community",
  5637. "homepage": "https://symfony.com/contributors"
  5638. }
  5639. ],
  5640. "description": "Provides a structured process for converting a Request into a Response",
  5641. "homepage": "https://symfony.com",
  5642. "support": {
  5643. "source": "https://github.com/symfony/http-kernel/tree/v5.3.7"
  5644. },
  5645. "funding": [
  5646. {
  5647. "url": "https://symfony.com/sponsor",
  5648. "type": "custom"
  5649. },
  5650. {
  5651. "url": "https://github.com/fabpot",
  5652. "type": "github"
  5653. },
  5654. {
  5655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5656. "type": "tidelift"
  5657. }
  5658. ],
  5659. "time": "2021-08-30T12:37:19+00:00"
  5660. },
  5661. {
  5662. "name": "symfony/mime",
  5663. "version": "v5.3.7",
  5664. "source": {
  5665. "type": "git",
  5666. "url": "https://github.com/symfony/mime.git",
  5667. "reference": "ae887cb3b044658676129f5e97aeb7e9eb69c2d8"
  5668. },
  5669. "dist": {
  5670. "type": "zip",
  5671. "url": "https://api.github.com/repos/symfony/mime/zipball/ae887cb3b044658676129f5e97aeb7e9eb69c2d8",
  5672. "reference": "ae887cb3b044658676129f5e97aeb7e9eb69c2d8",
  5673. "shasum": "",
  5674. "mirrors": [
  5675. {
  5676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5677. "preferred": true
  5678. }
  5679. ]
  5680. },
  5681. "require": {
  5682. "php": ">=7.2.5",
  5683. "symfony/deprecation-contracts": "^2.1",
  5684. "symfony/polyfill-intl-idn": "^1.10",
  5685. "symfony/polyfill-mbstring": "^1.0",
  5686. "symfony/polyfill-php80": "^1.16"
  5687. },
  5688. "conflict": {
  5689. "egulias/email-validator": "~3.0.0",
  5690. "phpdocumentor/reflection-docblock": "<3.2.2",
  5691. "phpdocumentor/type-resolver": "<1.4.0",
  5692. "symfony/mailer": "<4.4"
  5693. },
  5694. "require-dev": {
  5695. "egulias/email-validator": "^2.1.10|^3.1",
  5696. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5697. "symfony/dependency-injection": "^4.4|^5.0",
  5698. "symfony/property-access": "^4.4|^5.1",
  5699. "symfony/property-info": "^4.4|^5.1",
  5700. "symfony/serializer": "^5.2"
  5701. },
  5702. "type": "library",
  5703. "autoload": {
  5704. "psr-4": {
  5705. "Symfony\\Component\\Mime\\": ""
  5706. },
  5707. "exclude-from-classmap": [
  5708. "/Tests/"
  5709. ]
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "MIT"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Fabien Potencier",
  5718. "email": "fabien@symfony.com"
  5719. },
  5720. {
  5721. "name": "Symfony Community",
  5722. "homepage": "https://symfony.com/contributors"
  5723. }
  5724. ],
  5725. "description": "Allows manipulating MIME messages",
  5726. "homepage": "https://symfony.com",
  5727. "keywords": [
  5728. "mime",
  5729. "mime-type"
  5730. ],
  5731. "support": {
  5732. "source": "https://github.com/symfony/mime/tree/v5.3.7"
  5733. },
  5734. "funding": [
  5735. {
  5736. "url": "https://symfony.com/sponsor",
  5737. "type": "custom"
  5738. },
  5739. {
  5740. "url": "https://github.com/fabpot",
  5741. "type": "github"
  5742. },
  5743. {
  5744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5745. "type": "tidelift"
  5746. }
  5747. ],
  5748. "time": "2021-08-20T11:40:01+00:00"
  5749. },
  5750. {
  5751. "name": "symfony/options-resolver",
  5752. "version": "v5.3.7",
  5753. "source": {
  5754. "type": "git",
  5755. "url": "https://github.com/symfony/options-resolver.git",
  5756. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e"
  5757. },
  5758. "dist": {
  5759. "type": "zip",
  5760. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5761. "reference": "4b78e55b179003a42523a362cc0e8327f7a69b5e",
  5762. "shasum": "",
  5763. "mirrors": [
  5764. {
  5765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5766. "preferred": true
  5767. }
  5768. ]
  5769. },
  5770. "require": {
  5771. "php": ">=7.2.5",
  5772. "symfony/deprecation-contracts": "^2.1",
  5773. "symfony/polyfill-php73": "~1.0",
  5774. "symfony/polyfill-php80": "^1.16"
  5775. },
  5776. "type": "library",
  5777. "autoload": {
  5778. "psr-4": {
  5779. "Symfony\\Component\\OptionsResolver\\": ""
  5780. },
  5781. "exclude-from-classmap": [
  5782. "/Tests/"
  5783. ]
  5784. },
  5785. "notification-url": "https://packagist.org/downloads/",
  5786. "license": [
  5787. "MIT"
  5788. ],
  5789. "authors": [
  5790. {
  5791. "name": "Fabien Potencier",
  5792. "email": "fabien@symfony.com"
  5793. },
  5794. {
  5795. "name": "Symfony Community",
  5796. "homepage": "https://symfony.com/contributors"
  5797. }
  5798. ],
  5799. "description": "Provides an improved replacement for the array_replace PHP function",
  5800. "homepage": "https://symfony.com",
  5801. "keywords": [
  5802. "config",
  5803. "configuration",
  5804. "options"
  5805. ],
  5806. "support": {
  5807. "source": "https://github.com/symfony/options-resolver/tree/v5.3.7"
  5808. },
  5809. "funding": [
  5810. {
  5811. "url": "https://symfony.com/sponsor",
  5812. "type": "custom"
  5813. },
  5814. {
  5815. "url": "https://github.com/fabpot",
  5816. "type": "github"
  5817. },
  5818. {
  5819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5820. "type": "tidelift"
  5821. }
  5822. ],
  5823. "time": "2021-08-04T21:20:46+00:00"
  5824. },
  5825. {
  5826. "name": "symfony/polyfill-ctype",
  5827. "version": "v1.23.0",
  5828. "source": {
  5829. "type": "git",
  5830. "url": "https://github.com/symfony/polyfill-ctype.git",
  5831. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5832. },
  5833. "dist": {
  5834. "type": "zip",
  5835. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5836. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5837. "shasum": "",
  5838. "mirrors": [
  5839. {
  5840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5841. "preferred": true
  5842. }
  5843. ]
  5844. },
  5845. "require": {
  5846. "php": ">=7.1"
  5847. },
  5848. "suggest": {
  5849. "ext-ctype": "For best performance"
  5850. },
  5851. "type": "library",
  5852. "extra": {
  5853. "branch-alias": {
  5854. "dev-main": "1.23-dev"
  5855. },
  5856. "thanks": {
  5857. "name": "symfony/polyfill",
  5858. "url": "https://github.com/symfony/polyfill"
  5859. }
  5860. },
  5861. "autoload": {
  5862. "psr-4": {
  5863. "Symfony\\Polyfill\\Ctype\\": ""
  5864. },
  5865. "files": [
  5866. "bootstrap.php"
  5867. ]
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "MIT"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Gert de Pagter",
  5876. "email": "BackEndTea@gmail.com"
  5877. },
  5878. {
  5879. "name": "Symfony Community",
  5880. "homepage": "https://symfony.com/contributors"
  5881. }
  5882. ],
  5883. "description": "Symfony polyfill for ctype functions",
  5884. "homepage": "https://symfony.com",
  5885. "keywords": [
  5886. "compatibility",
  5887. "ctype",
  5888. "polyfill",
  5889. "portable"
  5890. ],
  5891. "support": {
  5892. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5893. },
  5894. "funding": [
  5895. {
  5896. "url": "https://symfony.com/sponsor",
  5897. "type": "custom"
  5898. },
  5899. {
  5900. "url": "https://github.com/fabpot",
  5901. "type": "github"
  5902. },
  5903. {
  5904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5905. "type": "tidelift"
  5906. }
  5907. ],
  5908. "time": "2021-02-19T12:13:01+00:00"
  5909. },
  5910. {
  5911. "name": "symfony/polyfill-iconv",
  5912. "version": "v1.23.0",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/symfony/polyfill-iconv.git",
  5916. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5921. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5922. "shasum": "",
  5923. "mirrors": [
  5924. {
  5925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5926. "preferred": true
  5927. }
  5928. ]
  5929. },
  5930. "require": {
  5931. "php": ">=7.1"
  5932. },
  5933. "suggest": {
  5934. "ext-iconv": "For best performance"
  5935. },
  5936. "type": "library",
  5937. "extra": {
  5938. "branch-alias": {
  5939. "dev-main": "1.23-dev"
  5940. },
  5941. "thanks": {
  5942. "name": "symfony/polyfill",
  5943. "url": "https://github.com/symfony/polyfill"
  5944. }
  5945. },
  5946. "autoload": {
  5947. "psr-4": {
  5948. "Symfony\\Polyfill\\Iconv\\": ""
  5949. },
  5950. "files": [
  5951. "bootstrap.php"
  5952. ]
  5953. },
  5954. "notification-url": "https://packagist.org/downloads/",
  5955. "license": [
  5956. "MIT"
  5957. ],
  5958. "authors": [
  5959. {
  5960. "name": "Nicolas Grekas",
  5961. "email": "p@tchwork.com"
  5962. },
  5963. {
  5964. "name": "Symfony Community",
  5965. "homepage": "https://symfony.com/contributors"
  5966. }
  5967. ],
  5968. "description": "Symfony polyfill for the Iconv extension",
  5969. "homepage": "https://symfony.com",
  5970. "keywords": [
  5971. "compatibility",
  5972. "iconv",
  5973. "polyfill",
  5974. "portable",
  5975. "shim"
  5976. ],
  5977. "support": {
  5978. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5979. },
  5980. "funding": [
  5981. {
  5982. "url": "https://symfony.com/sponsor",
  5983. "type": "custom"
  5984. },
  5985. {
  5986. "url": "https://github.com/fabpot",
  5987. "type": "github"
  5988. },
  5989. {
  5990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5991. "type": "tidelift"
  5992. }
  5993. ],
  5994. "time": "2021-05-27T09:27:20+00:00"
  5995. },
  5996. {
  5997. "name": "symfony/polyfill-intl-grapheme",
  5998. "version": "v1.23.1",
  5999. "source": {
  6000. "type": "git",
  6001. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6002. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  6003. },
  6004. "dist": {
  6005. "type": "zip",
  6006. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  6007. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  6008. "shasum": "",
  6009. "mirrors": [
  6010. {
  6011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6012. "preferred": true
  6013. }
  6014. ]
  6015. },
  6016. "require": {
  6017. "php": ">=7.1"
  6018. },
  6019. "suggest": {
  6020. "ext-intl": "For best performance"
  6021. },
  6022. "type": "library",
  6023. "extra": {
  6024. "branch-alias": {
  6025. "dev-main": "1.23-dev"
  6026. },
  6027. "thanks": {
  6028. "name": "symfony/polyfill",
  6029. "url": "https://github.com/symfony/polyfill"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "psr-4": {
  6034. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6035. },
  6036. "files": [
  6037. "bootstrap.php"
  6038. ]
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "Nicolas Grekas",
  6047. "email": "p@tchwork.com"
  6048. },
  6049. {
  6050. "name": "Symfony Community",
  6051. "homepage": "https://symfony.com/contributors"
  6052. }
  6053. ],
  6054. "description": "Symfony polyfill for intl's grapheme_* functions",
  6055. "homepage": "https://symfony.com",
  6056. "keywords": [
  6057. "compatibility",
  6058. "grapheme",
  6059. "intl",
  6060. "polyfill",
  6061. "portable",
  6062. "shim"
  6063. ],
  6064. "support": {
  6065. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  6066. },
  6067. "funding": [
  6068. {
  6069. "url": "https://symfony.com/sponsor",
  6070. "type": "custom"
  6071. },
  6072. {
  6073. "url": "https://github.com/fabpot",
  6074. "type": "github"
  6075. },
  6076. {
  6077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6078. "type": "tidelift"
  6079. }
  6080. ],
  6081. "time": "2021-05-27T12:26:48+00:00"
  6082. },
  6083. {
  6084. "name": "symfony/polyfill-intl-idn",
  6085. "version": "v1.23.0",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6089. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6094. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6095. "shasum": "",
  6096. "mirrors": [
  6097. {
  6098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6099. "preferred": true
  6100. }
  6101. ]
  6102. },
  6103. "require": {
  6104. "php": ">=7.1",
  6105. "symfony/polyfill-intl-normalizer": "^1.10",
  6106. "symfony/polyfill-php72": "^1.10"
  6107. },
  6108. "suggest": {
  6109. "ext-intl": "For best performance"
  6110. },
  6111. "type": "library",
  6112. "extra": {
  6113. "branch-alias": {
  6114. "dev-main": "1.23-dev"
  6115. },
  6116. "thanks": {
  6117. "name": "symfony/polyfill",
  6118. "url": "https://github.com/symfony/polyfill"
  6119. }
  6120. },
  6121. "autoload": {
  6122. "psr-4": {
  6123. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6124. },
  6125. "files": [
  6126. "bootstrap.php"
  6127. ]
  6128. },
  6129. "notification-url": "https://packagist.org/downloads/",
  6130. "license": [
  6131. "MIT"
  6132. ],
  6133. "authors": [
  6134. {
  6135. "name": "Laurent Bassin",
  6136. "email": "laurent@bassin.info"
  6137. },
  6138. {
  6139. "name": "Trevor Rowbotham",
  6140. "email": "trevor.rowbotham@pm.me"
  6141. },
  6142. {
  6143. "name": "Symfony Community",
  6144. "homepage": "https://symfony.com/contributors"
  6145. }
  6146. ],
  6147. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6148. "homepage": "https://symfony.com",
  6149. "keywords": [
  6150. "compatibility",
  6151. "idn",
  6152. "intl",
  6153. "polyfill",
  6154. "portable",
  6155. "shim"
  6156. ],
  6157. "support": {
  6158. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6159. },
  6160. "funding": [
  6161. {
  6162. "url": "https://symfony.com/sponsor",
  6163. "type": "custom"
  6164. },
  6165. {
  6166. "url": "https://github.com/fabpot",
  6167. "type": "github"
  6168. },
  6169. {
  6170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6171. "type": "tidelift"
  6172. }
  6173. ],
  6174. "time": "2021-05-27T09:27:20+00:00"
  6175. },
  6176. {
  6177. "name": "symfony/polyfill-intl-normalizer",
  6178. "version": "v1.23.0",
  6179. "source": {
  6180. "type": "git",
  6181. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6182. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6183. },
  6184. "dist": {
  6185. "type": "zip",
  6186. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6187. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6188. "shasum": "",
  6189. "mirrors": [
  6190. {
  6191. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6192. "preferred": true
  6193. }
  6194. ]
  6195. },
  6196. "require": {
  6197. "php": ">=7.1"
  6198. },
  6199. "suggest": {
  6200. "ext-intl": "For best performance"
  6201. },
  6202. "type": "library",
  6203. "extra": {
  6204. "branch-alias": {
  6205. "dev-main": "1.23-dev"
  6206. },
  6207. "thanks": {
  6208. "name": "symfony/polyfill",
  6209. "url": "https://github.com/symfony/polyfill"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "psr-4": {
  6214. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6215. },
  6216. "files": [
  6217. "bootstrap.php"
  6218. ],
  6219. "classmap": [
  6220. "Resources/stubs"
  6221. ]
  6222. },
  6223. "notification-url": "https://packagist.org/downloads/",
  6224. "license": [
  6225. "MIT"
  6226. ],
  6227. "authors": [
  6228. {
  6229. "name": "Nicolas Grekas",
  6230. "email": "p@tchwork.com"
  6231. },
  6232. {
  6233. "name": "Symfony Community",
  6234. "homepage": "https://symfony.com/contributors"
  6235. }
  6236. ],
  6237. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6238. "homepage": "https://symfony.com",
  6239. "keywords": [
  6240. "compatibility",
  6241. "intl",
  6242. "normalizer",
  6243. "polyfill",
  6244. "portable",
  6245. "shim"
  6246. ],
  6247. "support": {
  6248. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6249. },
  6250. "funding": [
  6251. {
  6252. "url": "https://symfony.com/sponsor",
  6253. "type": "custom"
  6254. },
  6255. {
  6256. "url": "https://github.com/fabpot",
  6257. "type": "github"
  6258. },
  6259. {
  6260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6261. "type": "tidelift"
  6262. }
  6263. ],
  6264. "time": "2021-02-19T12:13:01+00:00"
  6265. },
  6266. {
  6267. "name": "symfony/polyfill-mbstring",
  6268. "version": "v1.23.1",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6272. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6277. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6278. "shasum": "",
  6279. "mirrors": [
  6280. {
  6281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6282. "preferred": true
  6283. }
  6284. ]
  6285. },
  6286. "require": {
  6287. "php": ">=7.1"
  6288. },
  6289. "suggest": {
  6290. "ext-mbstring": "For best performance"
  6291. },
  6292. "type": "library",
  6293. "extra": {
  6294. "branch-alias": {
  6295. "dev-main": "1.23-dev"
  6296. },
  6297. "thanks": {
  6298. "name": "symfony/polyfill",
  6299. "url": "https://github.com/symfony/polyfill"
  6300. }
  6301. },
  6302. "autoload": {
  6303. "psr-4": {
  6304. "Symfony\\Polyfill\\Mbstring\\": ""
  6305. },
  6306. "files": [
  6307. "bootstrap.php"
  6308. ]
  6309. },
  6310. "notification-url": "https://packagist.org/downloads/",
  6311. "license": [
  6312. "MIT"
  6313. ],
  6314. "authors": [
  6315. {
  6316. "name": "Nicolas Grekas",
  6317. "email": "p@tchwork.com"
  6318. },
  6319. {
  6320. "name": "Symfony Community",
  6321. "homepage": "https://symfony.com/contributors"
  6322. }
  6323. ],
  6324. "description": "Symfony polyfill for the Mbstring extension",
  6325. "homepage": "https://symfony.com",
  6326. "keywords": [
  6327. "compatibility",
  6328. "mbstring",
  6329. "polyfill",
  6330. "portable",
  6331. "shim"
  6332. ],
  6333. "support": {
  6334. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  6335. },
  6336. "funding": [
  6337. {
  6338. "url": "https://symfony.com/sponsor",
  6339. "type": "custom"
  6340. },
  6341. {
  6342. "url": "https://github.com/fabpot",
  6343. "type": "github"
  6344. },
  6345. {
  6346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6347. "type": "tidelift"
  6348. }
  6349. ],
  6350. "time": "2021-05-27T12:26:48+00:00"
  6351. },
  6352. {
  6353. "name": "symfony/polyfill-php72",
  6354. "version": "v1.23.0",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/symfony/polyfill-php72.git",
  6358. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6363. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6364. "shasum": "",
  6365. "mirrors": [
  6366. {
  6367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6368. "preferred": true
  6369. }
  6370. ]
  6371. },
  6372. "require": {
  6373. "php": ">=7.1"
  6374. },
  6375. "type": "library",
  6376. "extra": {
  6377. "branch-alias": {
  6378. "dev-main": "1.23-dev"
  6379. },
  6380. "thanks": {
  6381. "name": "symfony/polyfill",
  6382. "url": "https://github.com/symfony/polyfill"
  6383. }
  6384. },
  6385. "autoload": {
  6386. "psr-4": {
  6387. "Symfony\\Polyfill\\Php72\\": ""
  6388. },
  6389. "files": [
  6390. "bootstrap.php"
  6391. ]
  6392. },
  6393. "notification-url": "https://packagist.org/downloads/",
  6394. "license": [
  6395. "MIT"
  6396. ],
  6397. "authors": [
  6398. {
  6399. "name": "Nicolas Grekas",
  6400. "email": "p@tchwork.com"
  6401. },
  6402. {
  6403. "name": "Symfony Community",
  6404. "homepage": "https://symfony.com/contributors"
  6405. }
  6406. ],
  6407. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6408. "homepage": "https://symfony.com",
  6409. "keywords": [
  6410. "compatibility",
  6411. "polyfill",
  6412. "portable",
  6413. "shim"
  6414. ],
  6415. "support": {
  6416. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6417. },
  6418. "funding": [
  6419. {
  6420. "url": "https://symfony.com/sponsor",
  6421. "type": "custom"
  6422. },
  6423. {
  6424. "url": "https://github.com/fabpot",
  6425. "type": "github"
  6426. },
  6427. {
  6428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6429. "type": "tidelift"
  6430. }
  6431. ],
  6432. "time": "2021-05-27T09:17:38+00:00"
  6433. },
  6434. {
  6435. "name": "symfony/polyfill-php73",
  6436. "version": "v1.23.0",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://github.com/symfony/polyfill-php73.git",
  6440. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6445. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6446. "shasum": "",
  6447. "mirrors": [
  6448. {
  6449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6450. "preferred": true
  6451. }
  6452. ]
  6453. },
  6454. "require": {
  6455. "php": ">=7.1"
  6456. },
  6457. "type": "library",
  6458. "extra": {
  6459. "branch-alias": {
  6460. "dev-main": "1.23-dev"
  6461. },
  6462. "thanks": {
  6463. "name": "symfony/polyfill",
  6464. "url": "https://github.com/symfony/polyfill"
  6465. }
  6466. },
  6467. "autoload": {
  6468. "psr-4": {
  6469. "Symfony\\Polyfill\\Php73\\": ""
  6470. },
  6471. "files": [
  6472. "bootstrap.php"
  6473. ],
  6474. "classmap": [
  6475. "Resources/stubs"
  6476. ]
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Nicolas Grekas",
  6485. "email": "p@tchwork.com"
  6486. },
  6487. {
  6488. "name": "Symfony Community",
  6489. "homepage": "https://symfony.com/contributors"
  6490. }
  6491. ],
  6492. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6493. "homepage": "https://symfony.com",
  6494. "keywords": [
  6495. "compatibility",
  6496. "polyfill",
  6497. "portable",
  6498. "shim"
  6499. ],
  6500. "support": {
  6501. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6502. },
  6503. "funding": [
  6504. {
  6505. "url": "https://symfony.com/sponsor",
  6506. "type": "custom"
  6507. },
  6508. {
  6509. "url": "https://github.com/fabpot",
  6510. "type": "github"
  6511. },
  6512. {
  6513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6514. "type": "tidelift"
  6515. }
  6516. ],
  6517. "time": "2021-02-19T12:13:01+00:00"
  6518. },
  6519. {
  6520. "name": "symfony/polyfill-php80",
  6521. "version": "v1.23.1",
  6522. "source": {
  6523. "type": "git",
  6524. "url": "https://github.com/symfony/polyfill-php80.git",
  6525. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6526. },
  6527. "dist": {
  6528. "type": "zip",
  6529. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6530. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6531. "shasum": "",
  6532. "mirrors": [
  6533. {
  6534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6535. "preferred": true
  6536. }
  6537. ]
  6538. },
  6539. "require": {
  6540. "php": ">=7.1"
  6541. },
  6542. "type": "library",
  6543. "extra": {
  6544. "branch-alias": {
  6545. "dev-main": "1.23-dev"
  6546. },
  6547. "thanks": {
  6548. "name": "symfony/polyfill",
  6549. "url": "https://github.com/symfony/polyfill"
  6550. }
  6551. },
  6552. "autoload": {
  6553. "psr-4": {
  6554. "Symfony\\Polyfill\\Php80\\": ""
  6555. },
  6556. "files": [
  6557. "bootstrap.php"
  6558. ],
  6559. "classmap": [
  6560. "Resources/stubs"
  6561. ]
  6562. },
  6563. "notification-url": "https://packagist.org/downloads/",
  6564. "license": [
  6565. "MIT"
  6566. ],
  6567. "authors": [
  6568. {
  6569. "name": "Ion Bazan",
  6570. "email": "ion.bazan@gmail.com"
  6571. },
  6572. {
  6573. "name": "Nicolas Grekas",
  6574. "email": "p@tchwork.com"
  6575. },
  6576. {
  6577. "name": "Symfony Community",
  6578. "homepage": "https://symfony.com/contributors"
  6579. }
  6580. ],
  6581. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6582. "homepage": "https://symfony.com",
  6583. "keywords": [
  6584. "compatibility",
  6585. "polyfill",
  6586. "portable",
  6587. "shim"
  6588. ],
  6589. "support": {
  6590. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  6591. },
  6592. "funding": [
  6593. {
  6594. "url": "https://symfony.com/sponsor",
  6595. "type": "custom"
  6596. },
  6597. {
  6598. "url": "https://github.com/fabpot",
  6599. "type": "github"
  6600. },
  6601. {
  6602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6603. "type": "tidelift"
  6604. }
  6605. ],
  6606. "time": "2021-07-28T13:41:28+00:00"
  6607. },
  6608. {
  6609. "name": "symfony/polyfill-php81",
  6610. "version": "v1.23.0",
  6611. "source": {
  6612. "type": "git",
  6613. "url": "https://github.com/symfony/polyfill-php81.git",
  6614. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  6615. },
  6616. "dist": {
  6617. "type": "zip",
  6618. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  6619. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  6620. "shasum": "",
  6621. "mirrors": [
  6622. {
  6623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6624. "preferred": true
  6625. }
  6626. ]
  6627. },
  6628. "require": {
  6629. "php": ">=7.1"
  6630. },
  6631. "type": "library",
  6632. "extra": {
  6633. "branch-alias": {
  6634. "dev-main": "1.23-dev"
  6635. },
  6636. "thanks": {
  6637. "name": "symfony/polyfill",
  6638. "url": "https://github.com/symfony/polyfill"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "psr-4": {
  6643. "Symfony\\Polyfill\\Php81\\": ""
  6644. },
  6645. "files": [
  6646. "bootstrap.php"
  6647. ],
  6648. "classmap": [
  6649. "Resources/stubs"
  6650. ]
  6651. },
  6652. "notification-url": "https://packagist.org/downloads/",
  6653. "license": [
  6654. "MIT"
  6655. ],
  6656. "authors": [
  6657. {
  6658. "name": "Nicolas Grekas",
  6659. "email": "p@tchwork.com"
  6660. },
  6661. {
  6662. "name": "Symfony Community",
  6663. "homepage": "https://symfony.com/contributors"
  6664. }
  6665. ],
  6666. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6667. "homepage": "https://symfony.com",
  6668. "keywords": [
  6669. "compatibility",
  6670. "polyfill",
  6671. "portable",
  6672. "shim"
  6673. ],
  6674. "support": {
  6675. "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://symfony.com/sponsor",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/fabpot",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6688. "type": "tidelift"
  6689. }
  6690. ],
  6691. "time": "2021-05-21T13:25:03+00:00"
  6692. },
  6693. {
  6694. "name": "symfony/process",
  6695. "version": "v5.3.7",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/symfony/process.git",
  6699. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/symfony/process/zipball/38f26c7d6ed535217ea393e05634cb0b244a1967",
  6704. "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967",
  6705. "shasum": "",
  6706. "mirrors": [
  6707. {
  6708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6709. "preferred": true
  6710. }
  6711. ]
  6712. },
  6713. "require": {
  6714. "php": ">=7.2.5",
  6715. "symfony/polyfill-php80": "^1.16"
  6716. },
  6717. "type": "library",
  6718. "autoload": {
  6719. "psr-4": {
  6720. "Symfony\\Component\\Process\\": ""
  6721. },
  6722. "exclude-from-classmap": [
  6723. "/Tests/"
  6724. ]
  6725. },
  6726. "notification-url": "https://packagist.org/downloads/",
  6727. "license": [
  6728. "MIT"
  6729. ],
  6730. "authors": [
  6731. {
  6732. "name": "Fabien Potencier",
  6733. "email": "fabien@symfony.com"
  6734. },
  6735. {
  6736. "name": "Symfony Community",
  6737. "homepage": "https://symfony.com/contributors"
  6738. }
  6739. ],
  6740. "description": "Executes commands in sub-processes",
  6741. "homepage": "https://symfony.com",
  6742. "support": {
  6743. "source": "https://github.com/symfony/process/tree/v5.3.7"
  6744. },
  6745. "funding": [
  6746. {
  6747. "url": "https://symfony.com/sponsor",
  6748. "type": "custom"
  6749. },
  6750. {
  6751. "url": "https://github.com/fabpot",
  6752. "type": "github"
  6753. },
  6754. {
  6755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6756. "type": "tidelift"
  6757. }
  6758. ],
  6759. "time": "2021-08-04T21:20:46+00:00"
  6760. },
  6761. {
  6762. "name": "symfony/property-access",
  6763. "version": "v5.3.7",
  6764. "source": {
  6765. "type": "git",
  6766. "url": "https://github.com/symfony/property-access.git",
  6767. "reference": "a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589"
  6768. },
  6769. "dist": {
  6770. "type": "zip",
  6771. "url": "https://api.github.com/repos/symfony/property-access/zipball/a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589",
  6772. "reference": "a4bbf09b8f3e2d2c89cc2c8b3d6682bf4c3d5589",
  6773. "shasum": "",
  6774. "mirrors": [
  6775. {
  6776. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6777. "preferred": true
  6778. }
  6779. ]
  6780. },
  6781. "require": {
  6782. "php": ">=7.2.5",
  6783. "symfony/deprecation-contracts": "^2.1",
  6784. "symfony/polyfill-php80": "^1.16",
  6785. "symfony/property-info": "^5.2"
  6786. },
  6787. "require-dev": {
  6788. "symfony/cache": "^4.4|^5.0"
  6789. },
  6790. "suggest": {
  6791. "psr/cache-implementation": "To cache access methods."
  6792. },
  6793. "type": "library",
  6794. "autoload": {
  6795. "psr-4": {
  6796. "Symfony\\Component\\PropertyAccess\\": ""
  6797. },
  6798. "exclude-from-classmap": [
  6799. "/Tests/"
  6800. ]
  6801. },
  6802. "notification-url": "https://packagist.org/downloads/",
  6803. "license": [
  6804. "MIT"
  6805. ],
  6806. "authors": [
  6807. {
  6808. "name": "Fabien Potencier",
  6809. "email": "fabien@symfony.com"
  6810. },
  6811. {
  6812. "name": "Symfony Community",
  6813. "homepage": "https://symfony.com/contributors"
  6814. }
  6815. ],
  6816. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6817. "homepage": "https://symfony.com",
  6818. "keywords": [
  6819. "access",
  6820. "array",
  6821. "extraction",
  6822. "index",
  6823. "injection",
  6824. "object",
  6825. "property",
  6826. "property path",
  6827. "reflection"
  6828. ],
  6829. "support": {
  6830. "source": "https://github.com/symfony/property-access/tree/v5.3.7"
  6831. },
  6832. "funding": [
  6833. {
  6834. "url": "https://symfony.com/sponsor",
  6835. "type": "custom"
  6836. },
  6837. {
  6838. "url": "https://github.com/fabpot",
  6839. "type": "github"
  6840. },
  6841. {
  6842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6843. "type": "tidelift"
  6844. }
  6845. ],
  6846. "time": "2021-08-09T12:23:10+00:00"
  6847. },
  6848. {
  6849. "name": "symfony/property-info",
  6850. "version": "v5.3.7",
  6851. "source": {
  6852. "type": "git",
  6853. "url": "https://github.com/symfony/property-info.git",
  6854. "reference": "7202b6c93a07df5df83eb58e3757dffb77fc5d90"
  6855. },
  6856. "dist": {
  6857. "type": "zip",
  6858. "url": "https://api.github.com/repos/symfony/property-info/zipball/7202b6c93a07df5df83eb58e3757dffb77fc5d90",
  6859. "reference": "7202b6c93a07df5df83eb58e3757dffb77fc5d90",
  6860. "shasum": "",
  6861. "mirrors": [
  6862. {
  6863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6864. "preferred": true
  6865. }
  6866. ]
  6867. },
  6868. "require": {
  6869. "php": ">=7.2.5",
  6870. "symfony/deprecation-contracts": "^2.1",
  6871. "symfony/polyfill-php80": "^1.16",
  6872. "symfony/string": "^5.1"
  6873. },
  6874. "conflict": {
  6875. "phpdocumentor/reflection-docblock": "<3.2.2",
  6876. "phpdocumentor/type-resolver": "<1.4.0",
  6877. "symfony/dependency-injection": "<4.4"
  6878. },
  6879. "require-dev": {
  6880. "doctrine/annotations": "^1.10.4",
  6881. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6882. "symfony/cache": "^4.4|^5.0",
  6883. "symfony/dependency-injection": "^4.4|^5.0",
  6884. "symfony/serializer": "^4.4|^5.0"
  6885. },
  6886. "suggest": {
  6887. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6888. "psr/cache-implementation": "To cache results",
  6889. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6890. "symfony/serializer": "To use Serializer metadata"
  6891. },
  6892. "type": "library",
  6893. "autoload": {
  6894. "psr-4": {
  6895. "Symfony\\Component\\PropertyInfo\\": ""
  6896. },
  6897. "exclude-from-classmap": [
  6898. "/Tests/"
  6899. ]
  6900. },
  6901. "notification-url": "https://packagist.org/downloads/",
  6902. "license": [
  6903. "MIT"
  6904. ],
  6905. "authors": [
  6906. {
  6907. "name": "Kévin Dunglas",
  6908. "email": "dunglas@gmail.com"
  6909. },
  6910. {
  6911. "name": "Symfony Community",
  6912. "homepage": "https://symfony.com/contributors"
  6913. }
  6914. ],
  6915. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6916. "homepage": "https://symfony.com",
  6917. "keywords": [
  6918. "doctrine",
  6919. "phpdoc",
  6920. "property",
  6921. "symfony",
  6922. "type",
  6923. "validator"
  6924. ],
  6925. "support": {
  6926. "source": "https://github.com/symfony/property-info/tree/v5.3.7"
  6927. },
  6928. "funding": [
  6929. {
  6930. "url": "https://symfony.com/sponsor",
  6931. "type": "custom"
  6932. },
  6933. {
  6934. "url": "https://github.com/fabpot",
  6935. "type": "github"
  6936. },
  6937. {
  6938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6939. "type": "tidelift"
  6940. }
  6941. ],
  6942. "time": "2021-08-23T12:57:24+00:00"
  6943. },
  6944. {
  6945. "name": "symfony/routing",
  6946. "version": "v5.3.7",
  6947. "source": {
  6948. "type": "git",
  6949. "url": "https://github.com/symfony/routing.git",
  6950. "reference": "be865017746fe869007d94220ad3f5297951811b"
  6951. },
  6952. "dist": {
  6953. "type": "zip",
  6954. "url": "https://api.github.com/repos/symfony/routing/zipball/be865017746fe869007d94220ad3f5297951811b",
  6955. "reference": "be865017746fe869007d94220ad3f5297951811b",
  6956. "shasum": "",
  6957. "mirrors": [
  6958. {
  6959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6960. "preferred": true
  6961. }
  6962. ]
  6963. },
  6964. "require": {
  6965. "php": ">=7.2.5",
  6966. "symfony/deprecation-contracts": "^2.1",
  6967. "symfony/polyfill-php80": "^1.16"
  6968. },
  6969. "conflict": {
  6970. "doctrine/annotations": "<1.12",
  6971. "symfony/config": "<5.3",
  6972. "symfony/dependency-injection": "<4.4",
  6973. "symfony/yaml": "<4.4"
  6974. },
  6975. "require-dev": {
  6976. "doctrine/annotations": "^1.12",
  6977. "psr/log": "^1|^2|^3",
  6978. "symfony/config": "^5.3",
  6979. "symfony/dependency-injection": "^4.4|^5.0",
  6980. "symfony/expression-language": "^4.4|^5.0",
  6981. "symfony/http-foundation": "^4.4|^5.0",
  6982. "symfony/yaml": "^4.4|^5.0"
  6983. },
  6984. "suggest": {
  6985. "symfony/config": "For using the all-in-one router or any loader",
  6986. "symfony/expression-language": "For using expression matching",
  6987. "symfony/http-foundation": "For using a Symfony Request object",
  6988. "symfony/yaml": "For using the YAML loader"
  6989. },
  6990. "type": "library",
  6991. "autoload": {
  6992. "psr-4": {
  6993. "Symfony\\Component\\Routing\\": ""
  6994. },
  6995. "exclude-from-classmap": [
  6996. "/Tests/"
  6997. ]
  6998. },
  6999. "notification-url": "https://packagist.org/downloads/",
  7000. "license": [
  7001. "MIT"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "Fabien Potencier",
  7006. "email": "fabien@symfony.com"
  7007. },
  7008. {
  7009. "name": "Symfony Community",
  7010. "homepage": "https://symfony.com/contributors"
  7011. }
  7012. ],
  7013. "description": "Maps an HTTP request to a set of configuration variables",
  7014. "homepage": "https://symfony.com",
  7015. "keywords": [
  7016. "router",
  7017. "routing",
  7018. "uri",
  7019. "url"
  7020. ],
  7021. "support": {
  7022. "source": "https://github.com/symfony/routing/tree/v5.3.7"
  7023. },
  7024. "funding": [
  7025. {
  7026. "url": "https://symfony.com/sponsor",
  7027. "type": "custom"
  7028. },
  7029. {
  7030. "url": "https://github.com/fabpot",
  7031. "type": "github"
  7032. },
  7033. {
  7034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7035. "type": "tidelift"
  7036. }
  7037. ],
  7038. "time": "2021-08-04T21:42:42+00:00"
  7039. },
  7040. {
  7041. "name": "symfony/service-contracts",
  7042. "version": "v2.4.0",
  7043. "source": {
  7044. "type": "git",
  7045. "url": "https://github.com/symfony/service-contracts.git",
  7046. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  7047. },
  7048. "dist": {
  7049. "type": "zip",
  7050. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7051. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  7052. "shasum": "",
  7053. "mirrors": [
  7054. {
  7055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7056. "preferred": true
  7057. }
  7058. ]
  7059. },
  7060. "require": {
  7061. "php": ">=7.2.5",
  7062. "psr/container": "^1.1"
  7063. },
  7064. "suggest": {
  7065. "symfony/service-implementation": ""
  7066. },
  7067. "type": "library",
  7068. "extra": {
  7069. "branch-alias": {
  7070. "dev-main": "2.4-dev"
  7071. },
  7072. "thanks": {
  7073. "name": "symfony/contracts",
  7074. "url": "https://github.com/symfony/contracts"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "psr-4": {
  7079. "Symfony\\Contracts\\Service\\": ""
  7080. }
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Nicolas Grekas",
  7089. "email": "p@tchwork.com"
  7090. },
  7091. {
  7092. "name": "Symfony Community",
  7093. "homepage": "https://symfony.com/contributors"
  7094. }
  7095. ],
  7096. "description": "Generic abstractions related to writing services",
  7097. "homepage": "https://symfony.com",
  7098. "keywords": [
  7099. "abstractions",
  7100. "contracts",
  7101. "decoupling",
  7102. "interfaces",
  7103. "interoperability",
  7104. "standards"
  7105. ],
  7106. "support": {
  7107. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7108. },
  7109. "funding": [
  7110. {
  7111. "url": "https://symfony.com/sponsor",
  7112. "type": "custom"
  7113. },
  7114. {
  7115. "url": "https://github.com/fabpot",
  7116. "type": "github"
  7117. },
  7118. {
  7119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7120. "type": "tidelift"
  7121. }
  7122. ],
  7123. "time": "2021-04-01T10:43:52+00:00"
  7124. },
  7125. {
  7126. "name": "symfony/string",
  7127. "version": "v5.3.7",
  7128. "source": {
  7129. "type": "git",
  7130. "url": "https://github.com/symfony/string.git",
  7131. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5"
  7132. },
  7133. "dist": {
  7134. "type": "zip",
  7135. "url": "https://api.github.com/repos/symfony/string/zipball/8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7136. "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5",
  7137. "shasum": "",
  7138. "mirrors": [
  7139. {
  7140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7141. "preferred": true
  7142. }
  7143. ]
  7144. },
  7145. "require": {
  7146. "php": ">=7.2.5",
  7147. "symfony/polyfill-ctype": "~1.8",
  7148. "symfony/polyfill-intl-grapheme": "~1.0",
  7149. "symfony/polyfill-intl-normalizer": "~1.0",
  7150. "symfony/polyfill-mbstring": "~1.0",
  7151. "symfony/polyfill-php80": "~1.15"
  7152. },
  7153. "require-dev": {
  7154. "symfony/error-handler": "^4.4|^5.0",
  7155. "symfony/http-client": "^4.4|^5.0",
  7156. "symfony/translation-contracts": "^1.1|^2",
  7157. "symfony/var-exporter": "^4.4|^5.0"
  7158. },
  7159. "type": "library",
  7160. "autoload": {
  7161. "psr-4": {
  7162. "Symfony\\Component\\String\\": ""
  7163. },
  7164. "files": [
  7165. "Resources/functions.php"
  7166. ],
  7167. "exclude-from-classmap": [
  7168. "/Tests/"
  7169. ]
  7170. },
  7171. "notification-url": "https://packagist.org/downloads/",
  7172. "license": [
  7173. "MIT"
  7174. ],
  7175. "authors": [
  7176. {
  7177. "name": "Nicolas Grekas",
  7178. "email": "p@tchwork.com"
  7179. },
  7180. {
  7181. "name": "Symfony Community",
  7182. "homepage": "https://symfony.com/contributors"
  7183. }
  7184. ],
  7185. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7186. "homepage": "https://symfony.com",
  7187. "keywords": [
  7188. "grapheme",
  7189. "i18n",
  7190. "string",
  7191. "unicode",
  7192. "utf-8",
  7193. "utf8"
  7194. ],
  7195. "support": {
  7196. "source": "https://github.com/symfony/string/tree/v5.3.7"
  7197. },
  7198. "funding": [
  7199. {
  7200. "url": "https://symfony.com/sponsor",
  7201. "type": "custom"
  7202. },
  7203. {
  7204. "url": "https://github.com/fabpot",
  7205. "type": "github"
  7206. },
  7207. {
  7208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7209. "type": "tidelift"
  7210. }
  7211. ],
  7212. "time": "2021-08-26T08:00:08+00:00"
  7213. },
  7214. {
  7215. "name": "symfony/translation",
  7216. "version": "v5.3.7",
  7217. "source": {
  7218. "type": "git",
  7219. "url": "https://github.com/symfony/translation.git",
  7220. "reference": "4d595a6d15fd3a2c67f6f31d14d15d3b7356d7a6"
  7221. },
  7222. "dist": {
  7223. "type": "zip",
  7224. "url": "https://api.github.com/repos/symfony/translation/zipball/4d595a6d15fd3a2c67f6f31d14d15d3b7356d7a6",
  7225. "reference": "4d595a6d15fd3a2c67f6f31d14d15d3b7356d7a6",
  7226. "shasum": "",
  7227. "mirrors": [
  7228. {
  7229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7230. "preferred": true
  7231. }
  7232. ]
  7233. },
  7234. "require": {
  7235. "php": ">=7.2.5",
  7236. "symfony/deprecation-contracts": "^2.1",
  7237. "symfony/polyfill-mbstring": "~1.0",
  7238. "symfony/polyfill-php80": "^1.16",
  7239. "symfony/translation-contracts": "^2.3"
  7240. },
  7241. "conflict": {
  7242. "symfony/config": "<4.4",
  7243. "symfony/dependency-injection": "<5.0",
  7244. "symfony/http-kernel": "<5.0",
  7245. "symfony/twig-bundle": "<5.0",
  7246. "symfony/yaml": "<4.4"
  7247. },
  7248. "provide": {
  7249. "symfony/translation-implementation": "2.3"
  7250. },
  7251. "require-dev": {
  7252. "psr/log": "^1|^2|^3",
  7253. "symfony/config": "^4.4|^5.0",
  7254. "symfony/console": "^4.4|^5.0",
  7255. "symfony/dependency-injection": "^5.0",
  7256. "symfony/finder": "^4.4|^5.0",
  7257. "symfony/http-kernel": "^5.0",
  7258. "symfony/intl": "^4.4|^5.0",
  7259. "symfony/polyfill-intl-icu": "^1.21",
  7260. "symfony/service-contracts": "^1.1.2|^2",
  7261. "symfony/yaml": "^4.4|^5.0"
  7262. },
  7263. "suggest": {
  7264. "psr/log-implementation": "To use logging capability in translator",
  7265. "symfony/config": "",
  7266. "symfony/yaml": ""
  7267. },
  7268. "type": "library",
  7269. "autoload": {
  7270. "files": [
  7271. "Resources/functions.php"
  7272. ],
  7273. "psr-4": {
  7274. "Symfony\\Component\\Translation\\": ""
  7275. },
  7276. "exclude-from-classmap": [
  7277. "/Tests/"
  7278. ]
  7279. },
  7280. "notification-url": "https://packagist.org/downloads/",
  7281. "license": [
  7282. "MIT"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Fabien Potencier",
  7287. "email": "fabien@symfony.com"
  7288. },
  7289. {
  7290. "name": "Symfony Community",
  7291. "homepage": "https://symfony.com/contributors"
  7292. }
  7293. ],
  7294. "description": "Provides tools to internationalize your application",
  7295. "homepage": "https://symfony.com",
  7296. "support": {
  7297. "source": "https://github.com/symfony/translation/tree/v5.3.7"
  7298. },
  7299. "funding": [
  7300. {
  7301. "url": "https://symfony.com/sponsor",
  7302. "type": "custom"
  7303. },
  7304. {
  7305. "url": "https://github.com/fabpot",
  7306. "type": "github"
  7307. },
  7308. {
  7309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7310. "type": "tidelift"
  7311. }
  7312. ],
  7313. "time": "2021-08-26T08:22:53+00:00"
  7314. },
  7315. {
  7316. "name": "symfony/translation-contracts",
  7317. "version": "v2.4.0",
  7318. "source": {
  7319. "type": "git",
  7320. "url": "https://github.com/symfony/translation-contracts.git",
  7321. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7322. },
  7323. "dist": {
  7324. "type": "zip",
  7325. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7326. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7327. "shasum": "",
  7328. "mirrors": [
  7329. {
  7330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7331. "preferred": true
  7332. }
  7333. ]
  7334. },
  7335. "require": {
  7336. "php": ">=7.2.5"
  7337. },
  7338. "suggest": {
  7339. "symfony/translation-implementation": ""
  7340. },
  7341. "type": "library",
  7342. "extra": {
  7343. "branch-alias": {
  7344. "dev-main": "2.4-dev"
  7345. },
  7346. "thanks": {
  7347. "name": "symfony/contracts",
  7348. "url": "https://github.com/symfony/contracts"
  7349. }
  7350. },
  7351. "autoload": {
  7352. "psr-4": {
  7353. "Symfony\\Contracts\\Translation\\": ""
  7354. }
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "MIT"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Nicolas Grekas",
  7363. "email": "p@tchwork.com"
  7364. },
  7365. {
  7366. "name": "Symfony Community",
  7367. "homepage": "https://symfony.com/contributors"
  7368. }
  7369. ],
  7370. "description": "Generic abstractions related to translation",
  7371. "homepage": "https://symfony.com",
  7372. "keywords": [
  7373. "abstractions",
  7374. "contracts",
  7375. "decoupling",
  7376. "interfaces",
  7377. "interoperability",
  7378. "standards"
  7379. ],
  7380. "support": {
  7381. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7382. },
  7383. "funding": [
  7384. {
  7385. "url": "https://symfony.com/sponsor",
  7386. "type": "custom"
  7387. },
  7388. {
  7389. "url": "https://github.com/fabpot",
  7390. "type": "github"
  7391. },
  7392. {
  7393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7394. "type": "tidelift"
  7395. }
  7396. ],
  7397. "time": "2021-03-23T23:28:01+00:00"
  7398. },
  7399. {
  7400. "name": "symfony/var-dumper",
  7401. "version": "v5.3.7",
  7402. "source": {
  7403. "type": "git",
  7404. "url": "https://github.com/symfony/var-dumper.git",
  7405. "reference": "3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f"
  7406. },
  7407. "dist": {
  7408. "type": "zip",
  7409. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f",
  7410. "reference": "3ad5af4aed07d0a0201bbcfc42658fe6c5b2fb8f",
  7411. "shasum": "",
  7412. "mirrors": [
  7413. {
  7414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7415. "preferred": true
  7416. }
  7417. ]
  7418. },
  7419. "require": {
  7420. "php": ">=7.2.5",
  7421. "symfony/polyfill-mbstring": "~1.0",
  7422. "symfony/polyfill-php80": "^1.16"
  7423. },
  7424. "conflict": {
  7425. "phpunit/phpunit": "<5.4.3",
  7426. "symfony/console": "<4.4"
  7427. },
  7428. "require-dev": {
  7429. "ext-iconv": "*",
  7430. "symfony/console": "^4.4|^5.0",
  7431. "symfony/process": "^4.4|^5.0",
  7432. "twig/twig": "^2.13|^3.0.4"
  7433. },
  7434. "suggest": {
  7435. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7436. "ext-intl": "To show region name in time zone dump",
  7437. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7438. },
  7439. "bin": [
  7440. "Resources/bin/var-dump-server"
  7441. ],
  7442. "type": "library",
  7443. "autoload": {
  7444. "files": [
  7445. "Resources/functions/dump.php"
  7446. ],
  7447. "psr-4": {
  7448. "Symfony\\Component\\VarDumper\\": ""
  7449. },
  7450. "exclude-from-classmap": [
  7451. "/Tests/"
  7452. ]
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "license": [
  7456. "MIT"
  7457. ],
  7458. "authors": [
  7459. {
  7460. "name": "Nicolas Grekas",
  7461. "email": "p@tchwork.com"
  7462. },
  7463. {
  7464. "name": "Symfony Community",
  7465. "homepage": "https://symfony.com/contributors"
  7466. }
  7467. ],
  7468. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7469. "homepage": "https://symfony.com",
  7470. "keywords": [
  7471. "debug",
  7472. "dump"
  7473. ],
  7474. "support": {
  7475. "source": "https://github.com/symfony/var-dumper/tree/v5.3.7"
  7476. },
  7477. "funding": [
  7478. {
  7479. "url": "https://symfony.com/sponsor",
  7480. "type": "custom"
  7481. },
  7482. {
  7483. "url": "https://github.com/fabpot",
  7484. "type": "github"
  7485. },
  7486. {
  7487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7488. "type": "tidelift"
  7489. }
  7490. ],
  7491. "time": "2021-08-04T23:19:25+00:00"
  7492. },
  7493. {
  7494. "name": "te7a-houdini/laravel-trix",
  7495. "version": "2.0.4",
  7496. "source": {
  7497. "type": "git",
  7498. "url": "https://github.com/amaelftah/laravel-trix.git",
  7499. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7500. },
  7501. "dist": {
  7502. "type": "zip",
  7503. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7504. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7505. "shasum": "",
  7506. "mirrors": [
  7507. {
  7508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7509. "preferred": true
  7510. }
  7511. ]
  7512. },
  7513. "require": {
  7514. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7515. "php": "^7.1"
  7516. },
  7517. "require-dev": {
  7518. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7519. },
  7520. "type": "library",
  7521. "extra": {
  7522. "laravel": {
  7523. "providers": [
  7524. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7525. ]
  7526. }
  7527. },
  7528. "autoload": {
  7529. "psr-4": {
  7530. "Te7aHoudini\\LaravelTrix\\": "src"
  7531. }
  7532. },
  7533. "notification-url": "https://packagist.org/downloads/",
  7534. "license": [
  7535. "MIT"
  7536. ],
  7537. "authors": [
  7538. {
  7539. "name": "Ahmed Abd El Ftah",
  7540. "email": "ahmedabdelftah95165@gmail.com",
  7541. "role": "Developer"
  7542. }
  7543. ],
  7544. "description": "trix editor for laravel inspired by ActionText for rails",
  7545. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7546. "keywords": [
  7547. "laravel-trix",
  7548. "te7a-houdini"
  7549. ],
  7550. "support": {
  7551. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7552. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7553. },
  7554. "time": "2020-11-12T10:48:06+00:00"
  7555. },
  7556. {
  7557. "name": "tightenco/collect",
  7558. "version": "v5.6.33",
  7559. "source": {
  7560. "type": "git",
  7561. "url": "https://github.com/tighten/collect.git",
  7562. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7563. },
  7564. "dist": {
  7565. "type": "zip",
  7566. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7567. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7568. "shasum": "",
  7569. "mirrors": [
  7570. {
  7571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7572. "preferred": true
  7573. }
  7574. ]
  7575. },
  7576. "require": {
  7577. "php": ">=7.1.3",
  7578. "symfony/var-dumper": ">=3.1.10"
  7579. },
  7580. "require-dev": {
  7581. "mockery/mockery": "~1.0",
  7582. "nesbot/carbon": "~1.20",
  7583. "phpunit/phpunit": "~7.0"
  7584. },
  7585. "type": "library",
  7586. "autoload": {
  7587. "files": [
  7588. "src/Collect/Support/helpers.php",
  7589. "src/Collect/Support/alias.php"
  7590. ],
  7591. "psr-4": {
  7592. "Tightenco\\Collect\\": "src/Collect"
  7593. }
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "MIT"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Taylor Otwell",
  7602. "email": "taylorotwell@gmail.com"
  7603. }
  7604. ],
  7605. "description": "Collect - Illuminate Collections as a separate package.",
  7606. "keywords": [
  7607. "collection",
  7608. "laravel"
  7609. ],
  7610. "support": {
  7611. "issues": "https://github.com/tighten/collect/issues",
  7612. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7613. },
  7614. "time": "2018-08-09T16:56:26+00:00"
  7615. },
  7616. {
  7617. "name": "tijsverkoyen/css-to-inline-styles",
  7618. "version": "2.2.3",
  7619. "source": {
  7620. "type": "git",
  7621. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7622. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7623. },
  7624. "dist": {
  7625. "type": "zip",
  7626. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7627. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7628. "shasum": "",
  7629. "mirrors": [
  7630. {
  7631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7632. "preferred": true
  7633. }
  7634. ]
  7635. },
  7636. "require": {
  7637. "ext-dom": "*",
  7638. "ext-libxml": "*",
  7639. "php": "^5.5 || ^7.0 || ^8.0",
  7640. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7641. },
  7642. "require-dev": {
  7643. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7644. },
  7645. "type": "library",
  7646. "extra": {
  7647. "branch-alias": {
  7648. "dev-master": "2.2.x-dev"
  7649. }
  7650. },
  7651. "autoload": {
  7652. "psr-4": {
  7653. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7654. }
  7655. },
  7656. "notification-url": "https://packagist.org/downloads/",
  7657. "license": [
  7658. "BSD-3-Clause"
  7659. ],
  7660. "authors": [
  7661. {
  7662. "name": "Tijs Verkoyen",
  7663. "email": "css_to_inline_styles@verkoyen.eu",
  7664. "role": "Developer"
  7665. }
  7666. ],
  7667. "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.",
  7668. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7669. "support": {
  7670. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7671. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7672. },
  7673. "time": "2020-07-13T06:12:54+00:00"
  7674. },
  7675. {
  7676. "name": "vlucas/phpdotenv",
  7677. "version": "v4.2.0",
  7678. "source": {
  7679. "type": "git",
  7680. "url": "https://github.com/vlucas/phpdotenv.git",
  7681. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7682. },
  7683. "dist": {
  7684. "type": "zip",
  7685. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7686. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7687. "shasum": "",
  7688. "mirrors": [
  7689. {
  7690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7691. "preferred": true
  7692. }
  7693. ]
  7694. },
  7695. "require": {
  7696. "php": "^5.5.9 || ^7.0 || ^8.0",
  7697. "phpoption/phpoption": "^1.7.3",
  7698. "symfony/polyfill-ctype": "^1.17"
  7699. },
  7700. "require-dev": {
  7701. "bamarni/composer-bin-plugin": "^1.4.1",
  7702. "ext-filter": "*",
  7703. "ext-pcre": "*",
  7704. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7705. },
  7706. "suggest": {
  7707. "ext-filter": "Required to use the boolean validator.",
  7708. "ext-pcre": "Required to use most of the library."
  7709. },
  7710. "type": "library",
  7711. "extra": {
  7712. "branch-alias": {
  7713. "dev-master": "4.1-dev"
  7714. }
  7715. },
  7716. "autoload": {
  7717. "psr-4": {
  7718. "Dotenv\\": "src/"
  7719. }
  7720. },
  7721. "notification-url": "https://packagist.org/downloads/",
  7722. "license": [
  7723. "BSD-3-Clause"
  7724. ],
  7725. "authors": [
  7726. {
  7727. "name": "Graham Campbell",
  7728. "email": "graham@alt-three.com",
  7729. "homepage": "https://gjcampbell.co.uk/"
  7730. },
  7731. {
  7732. "name": "Vance Lucas",
  7733. "email": "vance@vancelucas.com",
  7734. "homepage": "https://vancelucas.com/"
  7735. }
  7736. ],
  7737. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7738. "keywords": [
  7739. "dotenv",
  7740. "env",
  7741. "environment"
  7742. ],
  7743. "support": {
  7744. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7745. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7746. },
  7747. "funding": [
  7748. {
  7749. "url": "https://github.com/GrahamCampbell",
  7750. "type": "github"
  7751. },
  7752. {
  7753. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7754. "type": "tidelift"
  7755. }
  7756. ],
  7757. "time": "2021-01-20T15:11:48+00:00"
  7758. },
  7759. {
  7760. "name": "voku/portable-ascii",
  7761. "version": "1.5.6",
  7762. "source": {
  7763. "type": "git",
  7764. "url": "https://github.com/voku/portable-ascii.git",
  7765. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7766. },
  7767. "dist": {
  7768. "type": "zip",
  7769. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7770. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7771. "shasum": "",
  7772. "mirrors": [
  7773. {
  7774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7775. "preferred": true
  7776. }
  7777. ]
  7778. },
  7779. "require": {
  7780. "php": ">=7.0.0"
  7781. },
  7782. "require-dev": {
  7783. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7784. },
  7785. "suggest": {
  7786. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7787. },
  7788. "type": "library",
  7789. "autoload": {
  7790. "psr-4": {
  7791. "voku\\": "src/voku/"
  7792. }
  7793. },
  7794. "notification-url": "https://packagist.org/downloads/",
  7795. "license": [
  7796. "MIT"
  7797. ],
  7798. "authors": [
  7799. {
  7800. "name": "Lars Moelleken",
  7801. "homepage": "http://www.moelleken.org/"
  7802. }
  7803. ],
  7804. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7805. "homepage": "https://github.com/voku/portable-ascii",
  7806. "keywords": [
  7807. "ascii",
  7808. "clean",
  7809. "php"
  7810. ],
  7811. "support": {
  7812. "issues": "https://github.com/voku/portable-ascii/issues",
  7813. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7814. },
  7815. "funding": [
  7816. {
  7817. "url": "https://www.paypal.me/moelleken",
  7818. "type": "custom"
  7819. },
  7820. {
  7821. "url": "https://github.com/voku",
  7822. "type": "github"
  7823. },
  7824. {
  7825. "url": "https://opencollective.com/portable-ascii",
  7826. "type": "open_collective"
  7827. },
  7828. {
  7829. "url": "https://www.patreon.com/voku",
  7830. "type": "patreon"
  7831. },
  7832. {
  7833. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7834. "type": "tidelift"
  7835. }
  7836. ],
  7837. "time": "2020-11-12T00:07:28+00:00"
  7838. },
  7839. {
  7840. "name": "yajra/laravel-oci8",
  7841. "version": "v7.0.0",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://github.com/yajra/laravel-oci8.git",
  7845. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7850. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7851. "shasum": "",
  7852. "mirrors": [
  7853. {
  7854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7855. "preferred": true
  7856. }
  7857. ]
  7858. },
  7859. "require": {
  7860. "ext-oci8": ">=2.0.0",
  7861. "ext-pdo": "*",
  7862. "illuminate/database": "^7",
  7863. "illuminate/support": "^7",
  7864. "php": "^7.2.5",
  7865. "yajra/laravel-pdo-via-oci8": "^2"
  7866. },
  7867. "require-dev": {
  7868. "mockery/mockery": "^1.3.1",
  7869. "phpunit/phpunit": "^8.4|^9.0",
  7870. "scrutinizer/ocular": "~1.1"
  7871. },
  7872. "type": "library",
  7873. "extra": {
  7874. "branch-alias": {
  7875. "dev-master": "7.x-dev"
  7876. },
  7877. "laravel": {
  7878. "providers": [
  7879. "Yajra\\Oci8\\Oci8ServiceProvider"
  7880. ]
  7881. }
  7882. },
  7883. "autoload": {
  7884. "files": [
  7885. "src/helper.php"
  7886. ],
  7887. "psr-4": {
  7888. "Yajra\\": "src/"
  7889. }
  7890. },
  7891. "notification-url": "https://packagist.org/downloads/",
  7892. "license": [
  7893. "MIT"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "Arjay Angeles",
  7898. "email": "aqangeles@gmail.com"
  7899. }
  7900. ],
  7901. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7902. "keywords": [
  7903. "laravel",
  7904. "oci8",
  7905. "oracle",
  7906. "pdo_oci"
  7907. ],
  7908. "support": {
  7909. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7910. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7911. },
  7912. "funding": [
  7913. {
  7914. "url": "https://www.paypal.me/yajra",
  7915. "type": "custom"
  7916. },
  7917. {
  7918. "url": "https://www.patreon.com/yajra",
  7919. "type": "patreon"
  7920. }
  7921. ],
  7922. "time": "2020-03-04T02:15:19+00:00"
  7923. },
  7924. {
  7925. "name": "yajra/laravel-pdo-via-oci8",
  7926. "version": "v2.2.0",
  7927. "source": {
  7928. "type": "git",
  7929. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7930. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7931. },
  7932. "dist": {
  7933. "type": "zip",
  7934. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7935. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7936. "shasum": "",
  7937. "mirrors": [
  7938. {
  7939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7940. "preferred": true
  7941. }
  7942. ]
  7943. },
  7944. "require-dev": {
  7945. "phpunit/phpunit": "^6.4"
  7946. },
  7947. "type": "library",
  7948. "extra": {
  7949. "branch-alias": {
  7950. "dev-master": "2.0-dev"
  7951. }
  7952. },
  7953. "autoload": {
  7954. "psr-4": {
  7955. "Yajra\\": "src/"
  7956. }
  7957. },
  7958. "notification-url": "https://packagist.org/downloads/",
  7959. "license": [
  7960. "MIT"
  7961. ],
  7962. "authors": [
  7963. {
  7964. "name": "Arjay Angeles",
  7965. "email": "aqangeles@gmail.com"
  7966. }
  7967. ],
  7968. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7969. "support": {
  7970. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7971. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7972. },
  7973. "time": "2020-12-11T12:29:18+00:00"
  7974. }
  7975. ],
  7976. "packages-dev": [
  7977. {
  7978. "name": "barryvdh/laravel-debugbar",
  7979. "version": "v3.6.2",
  7980. "source": {
  7981. "type": "git",
  7982. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7983. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a"
  7984. },
  7985. "dist": {
  7986. "type": "zip",
  7987. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7988. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7989. "shasum": "",
  7990. "mirrors": [
  7991. {
  7992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7993. "preferred": true
  7994. }
  7995. ]
  7996. },
  7997. "require": {
  7998. "illuminate/routing": "^6|^7|^8",
  7999. "illuminate/session": "^6|^7|^8",
  8000. "illuminate/support": "^6|^7|^8",
  8001. "maximebf/debugbar": "^1.16.3",
  8002. "php": ">=7.2",
  8003. "symfony/debug": "^4.3|^5",
  8004. "symfony/finder": "^4.3|^5"
  8005. },
  8006. "require-dev": {
  8007. "mockery/mockery": "^1.3.3",
  8008. "orchestra/testbench-dusk": "^4|^5|^6",
  8009. "phpunit/phpunit": "^8.5|^9.0",
  8010. "squizlabs/php_codesniffer": "^3.5"
  8011. },
  8012. "type": "library",
  8013. "extra": {
  8014. "branch-alias": {
  8015. "dev-master": "3.5-dev"
  8016. },
  8017. "laravel": {
  8018. "providers": [
  8019. "Barryvdh\\Debugbar\\ServiceProvider"
  8020. ],
  8021. "aliases": {
  8022. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  8023. }
  8024. }
  8025. },
  8026. "autoload": {
  8027. "psr-4": {
  8028. "Barryvdh\\Debugbar\\": "src/"
  8029. },
  8030. "files": [
  8031. "src/helpers.php"
  8032. ]
  8033. },
  8034. "notification-url": "https://packagist.org/downloads/",
  8035. "license": [
  8036. "MIT"
  8037. ],
  8038. "authors": [
  8039. {
  8040. "name": "Barry vd. Heuvel",
  8041. "email": "barryvdh@gmail.com"
  8042. }
  8043. ],
  8044. "description": "PHP Debugbar integration for Laravel",
  8045. "keywords": [
  8046. "debug",
  8047. "debugbar",
  8048. "laravel",
  8049. "profiler",
  8050. "webprofiler"
  8051. ],
  8052. "support": {
  8053. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  8054. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.2"
  8055. },
  8056. "funding": [
  8057. {
  8058. "url": "https://fruitcake.nl",
  8059. "type": "custom"
  8060. },
  8061. {
  8062. "url": "https://github.com/barryvdh",
  8063. "type": "github"
  8064. }
  8065. ],
  8066. "time": "2021-06-14T14:29:26+00:00"
  8067. },
  8068. {
  8069. "name": "doctrine/instantiator",
  8070. "version": "1.4.0",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/doctrine/instantiator.git",
  8074. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8079. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8080. "shasum": "",
  8081. "mirrors": [
  8082. {
  8083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8084. "preferred": true
  8085. }
  8086. ]
  8087. },
  8088. "require": {
  8089. "php": "^7.1 || ^8.0"
  8090. },
  8091. "require-dev": {
  8092. "doctrine/coding-standard": "^8.0",
  8093. "ext-pdo": "*",
  8094. "ext-phar": "*",
  8095. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8096. "phpstan/phpstan": "^0.12",
  8097. "phpstan/phpstan-phpunit": "^0.12",
  8098. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8099. },
  8100. "type": "library",
  8101. "autoload": {
  8102. "psr-4": {
  8103. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8104. }
  8105. },
  8106. "notification-url": "https://packagist.org/downloads/",
  8107. "license": [
  8108. "MIT"
  8109. ],
  8110. "authors": [
  8111. {
  8112. "name": "Marco Pivetta",
  8113. "email": "ocramius@gmail.com",
  8114. "homepage": "https://ocramius.github.io/"
  8115. }
  8116. ],
  8117. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8118. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8119. "keywords": [
  8120. "constructor",
  8121. "instantiate"
  8122. ],
  8123. "support": {
  8124. "issues": "https://github.com/doctrine/instantiator/issues",
  8125. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8126. },
  8127. "funding": [
  8128. {
  8129. "url": "https://www.doctrine-project.org/sponsorship.html",
  8130. "type": "custom"
  8131. },
  8132. {
  8133. "url": "https://www.patreon.com/phpdoctrine",
  8134. "type": "patreon"
  8135. },
  8136. {
  8137. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8138. "type": "tidelift"
  8139. }
  8140. ],
  8141. "time": "2020-11-10T18:47:58+00:00"
  8142. },
  8143. {
  8144. "name": "filp/whoops",
  8145. "version": "2.14.1",
  8146. "source": {
  8147. "type": "git",
  8148. "url": "https://github.com/filp/whoops.git",
  8149. "reference": "15ead64e9828f0fc90932114429c4f7923570cb1"
  8150. },
  8151. "dist": {
  8152. "type": "zip",
  8153. "url": "https://api.github.com/repos/filp/whoops/zipball/15ead64e9828f0fc90932114429c4f7923570cb1",
  8154. "reference": "15ead64e9828f0fc90932114429c4f7923570cb1",
  8155. "shasum": "",
  8156. "mirrors": [
  8157. {
  8158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8159. "preferred": true
  8160. }
  8161. ]
  8162. },
  8163. "require": {
  8164. "php": "^5.5.9 || ^7.0 || ^8.0",
  8165. "psr/log": "^1.0.1"
  8166. },
  8167. "require-dev": {
  8168. "mockery/mockery": "^0.9 || ^1.0",
  8169. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8170. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8171. },
  8172. "suggest": {
  8173. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8174. "whoops/soap": "Formats errors as SOAP responses"
  8175. },
  8176. "type": "library",
  8177. "extra": {
  8178. "branch-alias": {
  8179. "dev-master": "2.7-dev"
  8180. }
  8181. },
  8182. "autoload": {
  8183. "psr-4": {
  8184. "Whoops\\": "src/Whoops/"
  8185. }
  8186. },
  8187. "notification-url": "https://packagist.org/downloads/",
  8188. "license": [
  8189. "MIT"
  8190. ],
  8191. "authors": [
  8192. {
  8193. "name": "Filipe Dobreira",
  8194. "homepage": "https://github.com/filp",
  8195. "role": "Developer"
  8196. }
  8197. ],
  8198. "description": "php error handling for cool kids",
  8199. "homepage": "https://filp.github.io/whoops/",
  8200. "keywords": [
  8201. "error",
  8202. "exception",
  8203. "handling",
  8204. "library",
  8205. "throwable",
  8206. "whoops"
  8207. ],
  8208. "support": {
  8209. "issues": "https://github.com/filp/whoops/issues",
  8210. "source": "https://github.com/filp/whoops/tree/2.14.1"
  8211. },
  8212. "funding": [
  8213. {
  8214. "url": "https://github.com/denis-sokolov",
  8215. "type": "github"
  8216. }
  8217. ],
  8218. "time": "2021-08-29T12:00:00+00:00"
  8219. },
  8220. {
  8221. "name": "fzaninotto/faker",
  8222. "version": "v1.9.2",
  8223. "source": {
  8224. "type": "git",
  8225. "url": "https://github.com/fzaninotto/Faker.git",
  8226. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8227. },
  8228. "dist": {
  8229. "type": "zip",
  8230. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8231. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8232. "shasum": "",
  8233. "mirrors": [
  8234. {
  8235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8236. "preferred": true
  8237. }
  8238. ]
  8239. },
  8240. "require": {
  8241. "php": "^5.3.3 || ^7.0"
  8242. },
  8243. "require-dev": {
  8244. "ext-intl": "*",
  8245. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8246. "squizlabs/php_codesniffer": "^2.9.2"
  8247. },
  8248. "type": "library",
  8249. "extra": {
  8250. "branch-alias": {
  8251. "dev-master": "1.9-dev"
  8252. }
  8253. },
  8254. "autoload": {
  8255. "psr-4": {
  8256. "Faker\\": "src/Faker/"
  8257. }
  8258. },
  8259. "notification-url": "https://packagist.org/downloads/",
  8260. "license": [
  8261. "MIT"
  8262. ],
  8263. "authors": [
  8264. {
  8265. "name": "François Zaninotto"
  8266. }
  8267. ],
  8268. "description": "Faker is a PHP library that generates fake data for you.",
  8269. "keywords": [
  8270. "data",
  8271. "faker",
  8272. "fixtures"
  8273. ],
  8274. "support": {
  8275. "issues": "https://github.com/fzaninotto/Faker/issues",
  8276. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8277. },
  8278. "abandoned": true,
  8279. "time": "2020-12-11T09:56:16+00:00"
  8280. },
  8281. {
  8282. "name": "hamcrest/hamcrest-php",
  8283. "version": "v2.0.1",
  8284. "source": {
  8285. "type": "git",
  8286. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8287. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8288. },
  8289. "dist": {
  8290. "type": "zip",
  8291. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8292. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8293. "shasum": "",
  8294. "mirrors": [
  8295. {
  8296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8297. "preferred": true
  8298. }
  8299. ]
  8300. },
  8301. "require": {
  8302. "php": "^5.3|^7.0|^8.0"
  8303. },
  8304. "replace": {
  8305. "cordoval/hamcrest-php": "*",
  8306. "davedevelopment/hamcrest-php": "*",
  8307. "kodova/hamcrest-php": "*"
  8308. },
  8309. "require-dev": {
  8310. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8311. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8312. },
  8313. "type": "library",
  8314. "extra": {
  8315. "branch-alias": {
  8316. "dev-master": "2.1-dev"
  8317. }
  8318. },
  8319. "autoload": {
  8320. "classmap": [
  8321. "hamcrest"
  8322. ]
  8323. },
  8324. "notification-url": "https://packagist.org/downloads/",
  8325. "license": [
  8326. "BSD-3-Clause"
  8327. ],
  8328. "description": "This is the PHP port of Hamcrest Matchers",
  8329. "keywords": [
  8330. "test"
  8331. ],
  8332. "support": {
  8333. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8334. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8335. },
  8336. "time": "2020-07-09T08:09:16+00:00"
  8337. },
  8338. {
  8339. "name": "maximebf/debugbar",
  8340. "version": "v1.17.1",
  8341. "source": {
  8342. "type": "git",
  8343. "url": "https://github.com/maximebf/php-debugbar.git",
  8344. "reference": "0a3532556be0145603f8a9de23e76dc28eed7054"
  8345. },
  8346. "dist": {
  8347. "type": "zip",
  8348. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/0a3532556be0145603f8a9de23e76dc28eed7054",
  8349. "reference": "0a3532556be0145603f8a9de23e76dc28eed7054",
  8350. "shasum": "",
  8351. "mirrors": [
  8352. {
  8353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8354. "preferred": true
  8355. }
  8356. ]
  8357. },
  8358. "require": {
  8359. "php": "^7.1|^8",
  8360. "psr/log": "^1.0",
  8361. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8362. },
  8363. "require-dev": {
  8364. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8365. },
  8366. "suggest": {
  8367. "kriswallsmith/assetic": "The best way to manage assets",
  8368. "monolog/monolog": "Log using Monolog",
  8369. "predis/predis": "Redis storage"
  8370. },
  8371. "type": "library",
  8372. "extra": {
  8373. "branch-alias": {
  8374. "dev-master": "1.17-dev"
  8375. }
  8376. },
  8377. "autoload": {
  8378. "psr-4": {
  8379. "DebugBar\\": "src/DebugBar/"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "MIT"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "Maxime Bouroumeau-Fuseau",
  8389. "email": "maxime.bouroumeau@gmail.com",
  8390. "homepage": "http://maximebf.com"
  8391. },
  8392. {
  8393. "name": "Barry vd. Heuvel",
  8394. "email": "barryvdh@gmail.com"
  8395. }
  8396. ],
  8397. "description": "Debug bar in the browser for php application",
  8398. "homepage": "https://github.com/maximebf/php-debugbar",
  8399. "keywords": [
  8400. "debug",
  8401. "debugbar"
  8402. ],
  8403. "support": {
  8404. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8405. "source": "https://github.com/maximebf/php-debugbar/tree/v1.17.1"
  8406. },
  8407. "time": "2021-08-01T09:19:02+00:00"
  8408. },
  8409. {
  8410. "name": "mockery/mockery",
  8411. "version": "1.4.4",
  8412. "source": {
  8413. "type": "git",
  8414. "url": "https://github.com/mockery/mockery.git",
  8415. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346"
  8416. },
  8417. "dist": {
  8418. "type": "zip",
  8419. "url": "https://api.github.com/repos/mockery/mockery/zipball/e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8420. "reference": "e01123a0e847d52d186c5eb4b9bf58b0c6d00346",
  8421. "shasum": "",
  8422. "mirrors": [
  8423. {
  8424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8425. "preferred": true
  8426. }
  8427. ]
  8428. },
  8429. "require": {
  8430. "hamcrest/hamcrest-php": "^2.0.1",
  8431. "lib-pcre": ">=7.0",
  8432. "php": "^7.3 || ^8.0"
  8433. },
  8434. "conflict": {
  8435. "phpunit/phpunit": "<8.0"
  8436. },
  8437. "require-dev": {
  8438. "phpunit/phpunit": "^8.5 || ^9.3"
  8439. },
  8440. "type": "library",
  8441. "extra": {
  8442. "branch-alias": {
  8443. "dev-master": "1.4.x-dev"
  8444. }
  8445. },
  8446. "autoload": {
  8447. "psr-0": {
  8448. "Mockery": "library/"
  8449. }
  8450. },
  8451. "notification-url": "https://packagist.org/downloads/",
  8452. "license": [
  8453. "BSD-3-Clause"
  8454. ],
  8455. "authors": [
  8456. {
  8457. "name": "Pádraic Brady",
  8458. "email": "padraic.brady@gmail.com",
  8459. "homepage": "http://blog.astrumfutura.com"
  8460. },
  8461. {
  8462. "name": "Dave Marshall",
  8463. "email": "dave.marshall@atstsolutions.co.uk",
  8464. "homepage": "http://davedevelopment.co.uk"
  8465. }
  8466. ],
  8467. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8468. "homepage": "https://github.com/mockery/mockery",
  8469. "keywords": [
  8470. "BDD",
  8471. "TDD",
  8472. "library",
  8473. "mock",
  8474. "mock objects",
  8475. "mockery",
  8476. "stub",
  8477. "test",
  8478. "test double",
  8479. "testing"
  8480. ],
  8481. "support": {
  8482. "issues": "https://github.com/mockery/mockery/issues",
  8483. "source": "https://github.com/mockery/mockery/tree/1.4.4"
  8484. },
  8485. "time": "2021-09-13T15:28:59+00:00"
  8486. },
  8487. {
  8488. "name": "myclabs/deep-copy",
  8489. "version": "1.10.2",
  8490. "source": {
  8491. "type": "git",
  8492. "url": "https://github.com/myclabs/DeepCopy.git",
  8493. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8494. },
  8495. "dist": {
  8496. "type": "zip",
  8497. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8498. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8499. "shasum": "",
  8500. "mirrors": [
  8501. {
  8502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8503. "preferred": true
  8504. }
  8505. ]
  8506. },
  8507. "require": {
  8508. "php": "^7.1 || ^8.0"
  8509. },
  8510. "replace": {
  8511. "myclabs/deep-copy": "self.version"
  8512. },
  8513. "require-dev": {
  8514. "doctrine/collections": "^1.0",
  8515. "doctrine/common": "^2.6",
  8516. "phpunit/phpunit": "^7.1"
  8517. },
  8518. "type": "library",
  8519. "autoload": {
  8520. "psr-4": {
  8521. "DeepCopy\\": "src/DeepCopy/"
  8522. },
  8523. "files": [
  8524. "src/DeepCopy/deep_copy.php"
  8525. ]
  8526. },
  8527. "notification-url": "https://packagist.org/downloads/",
  8528. "license": [
  8529. "MIT"
  8530. ],
  8531. "description": "Create deep copies (clones) of your objects",
  8532. "keywords": [
  8533. "clone",
  8534. "copy",
  8535. "duplicate",
  8536. "object",
  8537. "object graph"
  8538. ],
  8539. "support": {
  8540. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8541. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8542. },
  8543. "funding": [
  8544. {
  8545. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8546. "type": "tidelift"
  8547. }
  8548. ],
  8549. "time": "2020-11-13T09:40:50+00:00"
  8550. },
  8551. {
  8552. "name": "nunomaduro/collision",
  8553. "version": "v4.3.0",
  8554. "source": {
  8555. "type": "git",
  8556. "url": "https://github.com/nunomaduro/collision.git",
  8557. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8558. },
  8559. "dist": {
  8560. "type": "zip",
  8561. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8562. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8563. "shasum": "",
  8564. "mirrors": [
  8565. {
  8566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8567. "preferred": true
  8568. }
  8569. ]
  8570. },
  8571. "require": {
  8572. "facade/ignition-contracts": "^1.0",
  8573. "filp/whoops": "^2.4",
  8574. "php": "^7.2.5 || ^8.0",
  8575. "symfony/console": "^5.0"
  8576. },
  8577. "require-dev": {
  8578. "facade/ignition": "^2.0",
  8579. "fideloper/proxy": "^4.2",
  8580. "friendsofphp/php-cs-fixer": "^2.16",
  8581. "fruitcake/laravel-cors": "^1.0",
  8582. "laravel/framework": "^7.0",
  8583. "laravel/tinker": "^2.0",
  8584. "nunomaduro/larastan": "^0.6",
  8585. "orchestra/testbench": "^5.0",
  8586. "phpstan/phpstan": "^0.12.3",
  8587. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8588. },
  8589. "type": "library",
  8590. "extra": {
  8591. "laravel": {
  8592. "providers": [
  8593. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8594. ]
  8595. }
  8596. },
  8597. "autoload": {
  8598. "psr-4": {
  8599. "NunoMaduro\\Collision\\": "src/"
  8600. }
  8601. },
  8602. "notification-url": "https://packagist.org/downloads/",
  8603. "license": [
  8604. "MIT"
  8605. ],
  8606. "authors": [
  8607. {
  8608. "name": "Nuno Maduro",
  8609. "email": "enunomaduro@gmail.com"
  8610. }
  8611. ],
  8612. "description": "Cli error handling for console/command-line PHP applications.",
  8613. "keywords": [
  8614. "artisan",
  8615. "cli",
  8616. "command-line",
  8617. "console",
  8618. "error",
  8619. "handling",
  8620. "laravel",
  8621. "laravel-zero",
  8622. "php",
  8623. "symfony"
  8624. ],
  8625. "support": {
  8626. "issues": "https://github.com/nunomaduro/collision/issues",
  8627. "source": "https://github.com/nunomaduro/collision"
  8628. },
  8629. "funding": [
  8630. {
  8631. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8632. "type": "custom"
  8633. },
  8634. {
  8635. "url": "https://github.com/nunomaduro",
  8636. "type": "github"
  8637. },
  8638. {
  8639. "url": "https://www.patreon.com/nunomaduro",
  8640. "type": "patreon"
  8641. }
  8642. ],
  8643. "time": "2020-10-29T15:12:23+00:00"
  8644. },
  8645. {
  8646. "name": "phar-io/manifest",
  8647. "version": "2.0.3",
  8648. "source": {
  8649. "type": "git",
  8650. "url": "https://github.com/phar-io/manifest.git",
  8651. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8652. },
  8653. "dist": {
  8654. "type": "zip",
  8655. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8656. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8657. "shasum": "",
  8658. "mirrors": [
  8659. {
  8660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8661. "preferred": true
  8662. }
  8663. ]
  8664. },
  8665. "require": {
  8666. "ext-dom": "*",
  8667. "ext-phar": "*",
  8668. "ext-xmlwriter": "*",
  8669. "phar-io/version": "^3.0.1",
  8670. "php": "^7.2 || ^8.0"
  8671. },
  8672. "type": "library",
  8673. "extra": {
  8674. "branch-alias": {
  8675. "dev-master": "2.0.x-dev"
  8676. }
  8677. },
  8678. "autoload": {
  8679. "classmap": [
  8680. "src/"
  8681. ]
  8682. },
  8683. "notification-url": "https://packagist.org/downloads/",
  8684. "license": [
  8685. "BSD-3-Clause"
  8686. ],
  8687. "authors": [
  8688. {
  8689. "name": "Arne Blankerts",
  8690. "email": "arne@blankerts.de",
  8691. "role": "Developer"
  8692. },
  8693. {
  8694. "name": "Sebastian Heuer",
  8695. "email": "sebastian@phpeople.de",
  8696. "role": "Developer"
  8697. },
  8698. {
  8699. "name": "Sebastian Bergmann",
  8700. "email": "sebastian@phpunit.de",
  8701. "role": "Developer"
  8702. }
  8703. ],
  8704. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8705. "support": {
  8706. "issues": "https://github.com/phar-io/manifest/issues",
  8707. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8708. },
  8709. "time": "2021-07-20T11:28:43+00:00"
  8710. },
  8711. {
  8712. "name": "phar-io/version",
  8713. "version": "3.1.0",
  8714. "source": {
  8715. "type": "git",
  8716. "url": "https://github.com/phar-io/version.git",
  8717. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8718. },
  8719. "dist": {
  8720. "type": "zip",
  8721. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8722. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8723. "shasum": "",
  8724. "mirrors": [
  8725. {
  8726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8727. "preferred": true
  8728. }
  8729. ]
  8730. },
  8731. "require": {
  8732. "php": "^7.2 || ^8.0"
  8733. },
  8734. "type": "library",
  8735. "autoload": {
  8736. "classmap": [
  8737. "src/"
  8738. ]
  8739. },
  8740. "notification-url": "https://packagist.org/downloads/",
  8741. "license": [
  8742. "BSD-3-Clause"
  8743. ],
  8744. "authors": [
  8745. {
  8746. "name": "Arne Blankerts",
  8747. "email": "arne@blankerts.de",
  8748. "role": "Developer"
  8749. },
  8750. {
  8751. "name": "Sebastian Heuer",
  8752. "email": "sebastian@phpeople.de",
  8753. "role": "Developer"
  8754. },
  8755. {
  8756. "name": "Sebastian Bergmann",
  8757. "email": "sebastian@phpunit.de",
  8758. "role": "Developer"
  8759. }
  8760. ],
  8761. "description": "Library for handling version information and constraints",
  8762. "support": {
  8763. "issues": "https://github.com/phar-io/version/issues",
  8764. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8765. },
  8766. "time": "2021-02-23T14:00:09+00:00"
  8767. },
  8768. {
  8769. "name": "phpdocumentor/reflection-common",
  8770. "version": "2.2.0",
  8771. "source": {
  8772. "type": "git",
  8773. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8774. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8775. },
  8776. "dist": {
  8777. "type": "zip",
  8778. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8779. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8780. "shasum": "",
  8781. "mirrors": [
  8782. {
  8783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8784. "preferred": true
  8785. }
  8786. ]
  8787. },
  8788. "require": {
  8789. "php": "^7.2 || ^8.0"
  8790. },
  8791. "type": "library",
  8792. "extra": {
  8793. "branch-alias": {
  8794. "dev-2.x": "2.x-dev"
  8795. }
  8796. },
  8797. "autoload": {
  8798. "psr-4": {
  8799. "phpDocumentor\\Reflection\\": "src/"
  8800. }
  8801. },
  8802. "notification-url": "https://packagist.org/downloads/",
  8803. "license": [
  8804. "MIT"
  8805. ],
  8806. "authors": [
  8807. {
  8808. "name": "Jaap van Otterdijk",
  8809. "email": "opensource@ijaap.nl"
  8810. }
  8811. ],
  8812. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8813. "homepage": "http://www.phpdoc.org",
  8814. "keywords": [
  8815. "FQSEN",
  8816. "phpDocumentor",
  8817. "phpdoc",
  8818. "reflection",
  8819. "static analysis"
  8820. ],
  8821. "support": {
  8822. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8823. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8824. },
  8825. "time": "2020-06-27T09:03:43+00:00"
  8826. },
  8827. {
  8828. "name": "phpdocumentor/reflection-docblock",
  8829. "version": "5.2.2",
  8830. "source": {
  8831. "type": "git",
  8832. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8833. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8834. },
  8835. "dist": {
  8836. "type": "zip",
  8837. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8838. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8839. "shasum": "",
  8840. "mirrors": [
  8841. {
  8842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8843. "preferred": true
  8844. }
  8845. ]
  8846. },
  8847. "require": {
  8848. "ext-filter": "*",
  8849. "php": "^7.2 || ^8.0",
  8850. "phpdocumentor/reflection-common": "^2.2",
  8851. "phpdocumentor/type-resolver": "^1.3",
  8852. "webmozart/assert": "^1.9.1"
  8853. },
  8854. "require-dev": {
  8855. "mockery/mockery": "~1.3.2"
  8856. },
  8857. "type": "library",
  8858. "extra": {
  8859. "branch-alias": {
  8860. "dev-master": "5.x-dev"
  8861. }
  8862. },
  8863. "autoload": {
  8864. "psr-4": {
  8865. "phpDocumentor\\Reflection\\": "src"
  8866. }
  8867. },
  8868. "notification-url": "https://packagist.org/downloads/",
  8869. "license": [
  8870. "MIT"
  8871. ],
  8872. "authors": [
  8873. {
  8874. "name": "Mike van Riel",
  8875. "email": "me@mikevanriel.com"
  8876. },
  8877. {
  8878. "name": "Jaap van Otterdijk",
  8879. "email": "account@ijaap.nl"
  8880. }
  8881. ],
  8882. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8883. "support": {
  8884. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8885. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8886. },
  8887. "time": "2020-09-03T19:13:55+00:00"
  8888. },
  8889. {
  8890. "name": "phpdocumentor/type-resolver",
  8891. "version": "1.4.0",
  8892. "source": {
  8893. "type": "git",
  8894. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8895. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8896. },
  8897. "dist": {
  8898. "type": "zip",
  8899. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8900. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8901. "shasum": "",
  8902. "mirrors": [
  8903. {
  8904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8905. "preferred": true
  8906. }
  8907. ]
  8908. },
  8909. "require": {
  8910. "php": "^7.2 || ^8.0",
  8911. "phpdocumentor/reflection-common": "^2.0"
  8912. },
  8913. "require-dev": {
  8914. "ext-tokenizer": "*"
  8915. },
  8916. "type": "library",
  8917. "extra": {
  8918. "branch-alias": {
  8919. "dev-1.x": "1.x-dev"
  8920. }
  8921. },
  8922. "autoload": {
  8923. "psr-4": {
  8924. "phpDocumentor\\Reflection\\": "src"
  8925. }
  8926. },
  8927. "notification-url": "https://packagist.org/downloads/",
  8928. "license": [
  8929. "MIT"
  8930. ],
  8931. "authors": [
  8932. {
  8933. "name": "Mike van Riel",
  8934. "email": "me@mikevanriel.com"
  8935. }
  8936. ],
  8937. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8938. "support": {
  8939. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8940. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8941. },
  8942. "time": "2020-09-17T18:55:26+00:00"
  8943. },
  8944. {
  8945. "name": "phpspec/prophecy",
  8946. "version": "1.14.0",
  8947. "source": {
  8948. "type": "git",
  8949. "url": "https://github.com/phpspec/prophecy.git",
  8950. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e"
  8951. },
  8952. "dist": {
  8953. "type": "zip",
  8954. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  8955. "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
  8956. "shasum": "",
  8957. "mirrors": [
  8958. {
  8959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8960. "preferred": true
  8961. }
  8962. ]
  8963. },
  8964. "require": {
  8965. "doctrine/instantiator": "^1.2",
  8966. "php": "^7.2 || ~8.0, <8.2",
  8967. "phpdocumentor/reflection-docblock": "^5.2",
  8968. "sebastian/comparator": "^3.0 || ^4.0",
  8969. "sebastian/recursion-context": "^3.0 || ^4.0"
  8970. },
  8971. "require-dev": {
  8972. "phpspec/phpspec": "^6.0 || ^7.0",
  8973. "phpunit/phpunit": "^8.0 || ^9.0"
  8974. },
  8975. "type": "library",
  8976. "extra": {
  8977. "branch-alias": {
  8978. "dev-master": "1.x-dev"
  8979. }
  8980. },
  8981. "autoload": {
  8982. "psr-4": {
  8983. "Prophecy\\": "src/Prophecy"
  8984. }
  8985. },
  8986. "notification-url": "https://packagist.org/downloads/",
  8987. "license": [
  8988. "MIT"
  8989. ],
  8990. "authors": [
  8991. {
  8992. "name": "Konstantin Kudryashov",
  8993. "email": "ever.zet@gmail.com",
  8994. "homepage": "http://everzet.com"
  8995. },
  8996. {
  8997. "name": "Marcello Duarte",
  8998. "email": "marcello.duarte@gmail.com"
  8999. }
  9000. ],
  9001. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9002. "homepage": "https://github.com/phpspec/prophecy",
  9003. "keywords": [
  9004. "Double",
  9005. "Dummy",
  9006. "fake",
  9007. "mock",
  9008. "spy",
  9009. "stub"
  9010. ],
  9011. "support": {
  9012. "issues": "https://github.com/phpspec/prophecy/issues",
  9013. "source": "https://github.com/phpspec/prophecy/tree/1.14.0"
  9014. },
  9015. "time": "2021-09-10T09:02:12+00:00"
  9016. },
  9017. {
  9018. "name": "phpunit/php-code-coverage",
  9019. "version": "7.0.15",
  9020. "source": {
  9021. "type": "git",
  9022. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9023. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9024. },
  9025. "dist": {
  9026. "type": "zip",
  9027. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9028. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9029. "shasum": "",
  9030. "mirrors": [
  9031. {
  9032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9033. "preferred": true
  9034. }
  9035. ]
  9036. },
  9037. "require": {
  9038. "ext-dom": "*",
  9039. "ext-xmlwriter": "*",
  9040. "php": ">=7.2",
  9041. "phpunit/php-file-iterator": "^2.0.2",
  9042. "phpunit/php-text-template": "^1.2.1",
  9043. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9044. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9045. "sebastian/environment": "^4.2.2",
  9046. "sebastian/version": "^2.0.1",
  9047. "theseer/tokenizer": "^1.1.3"
  9048. },
  9049. "require-dev": {
  9050. "phpunit/phpunit": "^8.2.2"
  9051. },
  9052. "suggest": {
  9053. "ext-xdebug": "^2.7.2"
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "branch-alias": {
  9058. "dev-master": "7.0-dev"
  9059. }
  9060. },
  9061. "autoload": {
  9062. "classmap": [
  9063. "src/"
  9064. ]
  9065. },
  9066. "notification-url": "https://packagist.org/downloads/",
  9067. "license": [
  9068. "BSD-3-Clause"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "Sebastian Bergmann",
  9073. "email": "sebastian@phpunit.de",
  9074. "role": "lead"
  9075. }
  9076. ],
  9077. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9078. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9079. "keywords": [
  9080. "coverage",
  9081. "testing",
  9082. "xunit"
  9083. ],
  9084. "support": {
  9085. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9086. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://github.com/sebastianbergmann",
  9091. "type": "github"
  9092. }
  9093. ],
  9094. "time": "2021-07-26T12:20:09+00:00"
  9095. },
  9096. {
  9097. "name": "phpunit/php-file-iterator",
  9098. "version": "2.0.4",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9102. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/28af674ff175d0768a5a978e6de83f697d4a7f05",
  9107. "reference": "28af674ff175d0768a5a978e6de83f697d4a7f05",
  9108. "shasum": "",
  9109. "mirrors": [
  9110. {
  9111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9112. "preferred": true
  9113. }
  9114. ]
  9115. },
  9116. "require": {
  9117. "php": ">=7.1"
  9118. },
  9119. "require-dev": {
  9120. "phpunit/phpunit": "^8.5"
  9121. },
  9122. "type": "library",
  9123. "extra": {
  9124. "branch-alias": {
  9125. "dev-master": "2.0.x-dev"
  9126. }
  9127. },
  9128. "autoload": {
  9129. "classmap": [
  9130. "src/"
  9131. ]
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-3-Clause"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Sebastian Bergmann",
  9140. "email": "sebastian@phpunit.de",
  9141. "role": "lead"
  9142. }
  9143. ],
  9144. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9145. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9146. "keywords": [
  9147. "filesystem",
  9148. "iterator"
  9149. ],
  9150. "support": {
  9151. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9152. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.4"
  9153. },
  9154. "funding": [
  9155. {
  9156. "url": "https://github.com/sebastianbergmann",
  9157. "type": "github"
  9158. }
  9159. ],
  9160. "time": "2021-07-19T06:46:01+00:00"
  9161. },
  9162. {
  9163. "name": "phpunit/php-text-template",
  9164. "version": "1.2.1",
  9165. "source": {
  9166. "type": "git",
  9167. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9168. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9169. },
  9170. "dist": {
  9171. "type": "zip",
  9172. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9173. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9174. "shasum": "",
  9175. "mirrors": [
  9176. {
  9177. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9178. "preferred": true
  9179. }
  9180. ]
  9181. },
  9182. "require": {
  9183. "php": ">=5.3.3"
  9184. },
  9185. "type": "library",
  9186. "autoload": {
  9187. "classmap": [
  9188. "src/"
  9189. ]
  9190. },
  9191. "notification-url": "https://packagist.org/downloads/",
  9192. "license": [
  9193. "BSD-3-Clause"
  9194. ],
  9195. "authors": [
  9196. {
  9197. "name": "Sebastian Bergmann",
  9198. "email": "sebastian@phpunit.de",
  9199. "role": "lead"
  9200. }
  9201. ],
  9202. "description": "Simple template engine.",
  9203. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9204. "keywords": [
  9205. "template"
  9206. ],
  9207. "support": {
  9208. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9209. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9210. },
  9211. "time": "2015-06-21T13:50:34+00:00"
  9212. },
  9213. {
  9214. "name": "phpunit/php-timer",
  9215. "version": "2.1.3",
  9216. "source": {
  9217. "type": "git",
  9218. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9219. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9220. },
  9221. "dist": {
  9222. "type": "zip",
  9223. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9224. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9225. "shasum": "",
  9226. "mirrors": [
  9227. {
  9228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9229. "preferred": true
  9230. }
  9231. ]
  9232. },
  9233. "require": {
  9234. "php": ">=7.1"
  9235. },
  9236. "require-dev": {
  9237. "phpunit/phpunit": "^8.5"
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "branch-alias": {
  9242. "dev-master": "2.1-dev"
  9243. }
  9244. },
  9245. "autoload": {
  9246. "classmap": [
  9247. "src/"
  9248. ]
  9249. },
  9250. "notification-url": "https://packagist.org/downloads/",
  9251. "license": [
  9252. "BSD-3-Clause"
  9253. ],
  9254. "authors": [
  9255. {
  9256. "name": "Sebastian Bergmann",
  9257. "email": "sebastian@phpunit.de",
  9258. "role": "lead"
  9259. }
  9260. ],
  9261. "description": "Utility class for timing",
  9262. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9263. "keywords": [
  9264. "timer"
  9265. ],
  9266. "support": {
  9267. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9268. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9269. },
  9270. "funding": [
  9271. {
  9272. "url": "https://github.com/sebastianbergmann",
  9273. "type": "github"
  9274. }
  9275. ],
  9276. "time": "2020-11-30T08:20:02+00:00"
  9277. },
  9278. {
  9279. "name": "phpunit/php-token-stream",
  9280. "version": "4.0.4",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9284. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9289. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9290. "shasum": "",
  9291. "mirrors": [
  9292. {
  9293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9294. "preferred": true
  9295. }
  9296. ]
  9297. },
  9298. "require": {
  9299. "ext-tokenizer": "*",
  9300. "php": "^7.3 || ^8.0"
  9301. },
  9302. "require-dev": {
  9303. "phpunit/phpunit": "^9.0"
  9304. },
  9305. "type": "library",
  9306. "extra": {
  9307. "branch-alias": {
  9308. "dev-master": "4.0-dev"
  9309. }
  9310. },
  9311. "autoload": {
  9312. "classmap": [
  9313. "src/"
  9314. ]
  9315. },
  9316. "notification-url": "https://packagist.org/downloads/",
  9317. "license": [
  9318. "BSD-3-Clause"
  9319. ],
  9320. "authors": [
  9321. {
  9322. "name": "Sebastian Bergmann",
  9323. "email": "sebastian@phpunit.de"
  9324. }
  9325. ],
  9326. "description": "Wrapper around PHP's tokenizer extension.",
  9327. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9328. "keywords": [
  9329. "tokenizer"
  9330. ],
  9331. "support": {
  9332. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9333. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9334. },
  9335. "funding": [
  9336. {
  9337. "url": "https://github.com/sebastianbergmann",
  9338. "type": "github"
  9339. }
  9340. ],
  9341. "abandoned": true,
  9342. "time": "2020-08-04T08:28:15+00:00"
  9343. },
  9344. {
  9345. "name": "phpunit/phpunit",
  9346. "version": "8.5.20",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9350. "reference": "9deefba183198398a09b927a6ac6bc1feb0b7b70"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9deefba183198398a09b927a6ac6bc1feb0b7b70",
  9355. "reference": "9deefba183198398a09b927a6ac6bc1feb0b7b70",
  9356. "shasum": "",
  9357. "mirrors": [
  9358. {
  9359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9360. "preferred": true
  9361. }
  9362. ]
  9363. },
  9364. "require": {
  9365. "doctrine/instantiator": "^1.3.1",
  9366. "ext-dom": "*",
  9367. "ext-json": "*",
  9368. "ext-libxml": "*",
  9369. "ext-mbstring": "*",
  9370. "ext-xml": "*",
  9371. "ext-xmlwriter": "*",
  9372. "myclabs/deep-copy": "^1.10.0",
  9373. "phar-io/manifest": "^2.0.3",
  9374. "phar-io/version": "^3.0.2",
  9375. "php": ">=7.2",
  9376. "phpspec/prophecy": "^1.10.3",
  9377. "phpunit/php-code-coverage": "^7.0.12",
  9378. "phpunit/php-file-iterator": "^2.0.4",
  9379. "phpunit/php-text-template": "^1.2.1",
  9380. "phpunit/php-timer": "^2.1.2",
  9381. "sebastian/comparator": "^3.0.2",
  9382. "sebastian/diff": "^3.0.2",
  9383. "sebastian/environment": "^4.2.3",
  9384. "sebastian/exporter": "^3.1.2",
  9385. "sebastian/global-state": "^3.0.0",
  9386. "sebastian/object-enumerator": "^3.0.3",
  9387. "sebastian/resource-operations": "^2.0.1",
  9388. "sebastian/type": "^1.1.3",
  9389. "sebastian/version": "^2.0.1"
  9390. },
  9391. "require-dev": {
  9392. "ext-pdo": "*"
  9393. },
  9394. "suggest": {
  9395. "ext-soap": "*",
  9396. "ext-xdebug": "*",
  9397. "phpunit/php-invoker": "^2.0.0"
  9398. },
  9399. "bin": [
  9400. "phpunit"
  9401. ],
  9402. "type": "library",
  9403. "extra": {
  9404. "branch-alias": {
  9405. "dev-master": "8.5-dev"
  9406. }
  9407. },
  9408. "autoload": {
  9409. "classmap": [
  9410. "src/"
  9411. ]
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "license": [
  9415. "BSD-3-Clause"
  9416. ],
  9417. "authors": [
  9418. {
  9419. "name": "Sebastian Bergmann",
  9420. "email": "sebastian@phpunit.de",
  9421. "role": "lead"
  9422. }
  9423. ],
  9424. "description": "The PHP Unit Testing framework.",
  9425. "homepage": "https://phpunit.de/",
  9426. "keywords": [
  9427. "phpunit",
  9428. "testing",
  9429. "xunit"
  9430. ],
  9431. "support": {
  9432. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9433. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.20"
  9434. },
  9435. "funding": [
  9436. {
  9437. "url": "https://phpunit.de/donate.html",
  9438. "type": "custom"
  9439. },
  9440. {
  9441. "url": "https://github.com/sebastianbergmann",
  9442. "type": "github"
  9443. }
  9444. ],
  9445. "time": "2021-08-31T06:44:38+00:00"
  9446. },
  9447. {
  9448. "name": "sebastian/code-unit-reverse-lookup",
  9449. "version": "1.0.2",
  9450. "source": {
  9451. "type": "git",
  9452. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9453. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9454. },
  9455. "dist": {
  9456. "type": "zip",
  9457. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9458. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9459. "shasum": "",
  9460. "mirrors": [
  9461. {
  9462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9463. "preferred": true
  9464. }
  9465. ]
  9466. },
  9467. "require": {
  9468. "php": ">=5.6"
  9469. },
  9470. "require-dev": {
  9471. "phpunit/phpunit": "^8.5"
  9472. },
  9473. "type": "library",
  9474. "extra": {
  9475. "branch-alias": {
  9476. "dev-master": "1.0.x-dev"
  9477. }
  9478. },
  9479. "autoload": {
  9480. "classmap": [
  9481. "src/"
  9482. ]
  9483. },
  9484. "notification-url": "https://packagist.org/downloads/",
  9485. "license": [
  9486. "BSD-3-Clause"
  9487. ],
  9488. "authors": [
  9489. {
  9490. "name": "Sebastian Bergmann",
  9491. "email": "sebastian@phpunit.de"
  9492. }
  9493. ],
  9494. "description": "Looks up which function or method a line of code belongs to",
  9495. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9496. "support": {
  9497. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9498. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9499. },
  9500. "funding": [
  9501. {
  9502. "url": "https://github.com/sebastianbergmann",
  9503. "type": "github"
  9504. }
  9505. ],
  9506. "time": "2020-11-30T08:15:22+00:00"
  9507. },
  9508. {
  9509. "name": "sebastian/comparator",
  9510. "version": "3.0.3",
  9511. "source": {
  9512. "type": "git",
  9513. "url": "https://github.com/sebastianbergmann/comparator.git",
  9514. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9515. },
  9516. "dist": {
  9517. "type": "zip",
  9518. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9519. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9520. "shasum": "",
  9521. "mirrors": [
  9522. {
  9523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9524. "preferred": true
  9525. }
  9526. ]
  9527. },
  9528. "require": {
  9529. "php": ">=7.1",
  9530. "sebastian/diff": "^3.0",
  9531. "sebastian/exporter": "^3.1"
  9532. },
  9533. "require-dev": {
  9534. "phpunit/phpunit": "^8.5"
  9535. },
  9536. "type": "library",
  9537. "extra": {
  9538. "branch-alias": {
  9539. "dev-master": "3.0-dev"
  9540. }
  9541. },
  9542. "autoload": {
  9543. "classmap": [
  9544. "src/"
  9545. ]
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "BSD-3-Clause"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Sebastian Bergmann",
  9554. "email": "sebastian@phpunit.de"
  9555. },
  9556. {
  9557. "name": "Jeff Welch",
  9558. "email": "whatthejeff@gmail.com"
  9559. },
  9560. {
  9561. "name": "Volker Dusch",
  9562. "email": "github@wallbash.com"
  9563. },
  9564. {
  9565. "name": "Bernhard Schussek",
  9566. "email": "bschussek@2bepublished.at"
  9567. }
  9568. ],
  9569. "description": "Provides the functionality to compare PHP values for equality",
  9570. "homepage": "https://github.com/sebastianbergmann/comparator",
  9571. "keywords": [
  9572. "comparator",
  9573. "compare",
  9574. "equality"
  9575. ],
  9576. "support": {
  9577. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9578. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9579. },
  9580. "funding": [
  9581. {
  9582. "url": "https://github.com/sebastianbergmann",
  9583. "type": "github"
  9584. }
  9585. ],
  9586. "time": "2020-11-30T08:04:30+00:00"
  9587. },
  9588. {
  9589. "name": "sebastian/diff",
  9590. "version": "3.0.3",
  9591. "source": {
  9592. "type": "git",
  9593. "url": "https://github.com/sebastianbergmann/diff.git",
  9594. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9595. },
  9596. "dist": {
  9597. "type": "zip",
  9598. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9599. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9600. "shasum": "",
  9601. "mirrors": [
  9602. {
  9603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9604. "preferred": true
  9605. }
  9606. ]
  9607. },
  9608. "require": {
  9609. "php": ">=7.1"
  9610. },
  9611. "require-dev": {
  9612. "phpunit/phpunit": "^7.5 || ^8.0",
  9613. "symfony/process": "^2 || ^3.3 || ^4"
  9614. },
  9615. "type": "library",
  9616. "extra": {
  9617. "branch-alias": {
  9618. "dev-master": "3.0-dev"
  9619. }
  9620. },
  9621. "autoload": {
  9622. "classmap": [
  9623. "src/"
  9624. ]
  9625. },
  9626. "notification-url": "https://packagist.org/downloads/",
  9627. "license": [
  9628. "BSD-3-Clause"
  9629. ],
  9630. "authors": [
  9631. {
  9632. "name": "Sebastian Bergmann",
  9633. "email": "sebastian@phpunit.de"
  9634. },
  9635. {
  9636. "name": "Kore Nordmann",
  9637. "email": "mail@kore-nordmann.de"
  9638. }
  9639. ],
  9640. "description": "Diff implementation",
  9641. "homepage": "https://github.com/sebastianbergmann/diff",
  9642. "keywords": [
  9643. "diff",
  9644. "udiff",
  9645. "unidiff",
  9646. "unified diff"
  9647. ],
  9648. "support": {
  9649. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9650. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9651. },
  9652. "funding": [
  9653. {
  9654. "url": "https://github.com/sebastianbergmann",
  9655. "type": "github"
  9656. }
  9657. ],
  9658. "time": "2020-11-30T07:59:04+00:00"
  9659. },
  9660. {
  9661. "name": "sebastian/environment",
  9662. "version": "4.2.4",
  9663. "source": {
  9664. "type": "git",
  9665. "url": "https://github.com/sebastianbergmann/environment.git",
  9666. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9667. },
  9668. "dist": {
  9669. "type": "zip",
  9670. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9671. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9672. "shasum": "",
  9673. "mirrors": [
  9674. {
  9675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9676. "preferred": true
  9677. }
  9678. ]
  9679. },
  9680. "require": {
  9681. "php": ">=7.1"
  9682. },
  9683. "require-dev": {
  9684. "phpunit/phpunit": "^7.5"
  9685. },
  9686. "suggest": {
  9687. "ext-posix": "*"
  9688. },
  9689. "type": "library",
  9690. "extra": {
  9691. "branch-alias": {
  9692. "dev-master": "4.2-dev"
  9693. }
  9694. },
  9695. "autoload": {
  9696. "classmap": [
  9697. "src/"
  9698. ]
  9699. },
  9700. "notification-url": "https://packagist.org/downloads/",
  9701. "license": [
  9702. "BSD-3-Clause"
  9703. ],
  9704. "authors": [
  9705. {
  9706. "name": "Sebastian Bergmann",
  9707. "email": "sebastian@phpunit.de"
  9708. }
  9709. ],
  9710. "description": "Provides functionality to handle HHVM/PHP environments",
  9711. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9712. "keywords": [
  9713. "Xdebug",
  9714. "environment",
  9715. "hhvm"
  9716. ],
  9717. "support": {
  9718. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9719. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9720. },
  9721. "funding": [
  9722. {
  9723. "url": "https://github.com/sebastianbergmann",
  9724. "type": "github"
  9725. }
  9726. ],
  9727. "time": "2020-11-30T07:53:42+00:00"
  9728. },
  9729. {
  9730. "name": "sebastian/exporter",
  9731. "version": "3.1.3",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/sebastianbergmann/exporter.git",
  9735. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9740. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9741. "shasum": "",
  9742. "mirrors": [
  9743. {
  9744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9745. "preferred": true
  9746. }
  9747. ]
  9748. },
  9749. "require": {
  9750. "php": ">=7.0",
  9751. "sebastian/recursion-context": "^3.0"
  9752. },
  9753. "require-dev": {
  9754. "ext-mbstring": "*",
  9755. "phpunit/phpunit": "^6.0"
  9756. },
  9757. "type": "library",
  9758. "extra": {
  9759. "branch-alias": {
  9760. "dev-master": "3.1.x-dev"
  9761. }
  9762. },
  9763. "autoload": {
  9764. "classmap": [
  9765. "src/"
  9766. ]
  9767. },
  9768. "notification-url": "https://packagist.org/downloads/",
  9769. "license": [
  9770. "BSD-3-Clause"
  9771. ],
  9772. "authors": [
  9773. {
  9774. "name": "Sebastian Bergmann",
  9775. "email": "sebastian@phpunit.de"
  9776. },
  9777. {
  9778. "name": "Jeff Welch",
  9779. "email": "whatthejeff@gmail.com"
  9780. },
  9781. {
  9782. "name": "Volker Dusch",
  9783. "email": "github@wallbash.com"
  9784. },
  9785. {
  9786. "name": "Adam Harvey",
  9787. "email": "aharvey@php.net"
  9788. },
  9789. {
  9790. "name": "Bernhard Schussek",
  9791. "email": "bschussek@gmail.com"
  9792. }
  9793. ],
  9794. "description": "Provides the functionality to export PHP variables for visualization",
  9795. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9796. "keywords": [
  9797. "export",
  9798. "exporter"
  9799. ],
  9800. "support": {
  9801. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9802. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/sebastianbergmann",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2020-11-30T07:47:53+00:00"
  9811. },
  9812. {
  9813. "name": "sebastian/global-state",
  9814. "version": "3.0.1",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/sebastianbergmann/global-state.git",
  9818. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9823. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9824. "shasum": "",
  9825. "mirrors": [
  9826. {
  9827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9828. "preferred": true
  9829. }
  9830. ]
  9831. },
  9832. "require": {
  9833. "php": ">=7.2",
  9834. "sebastian/object-reflector": "^1.1.1",
  9835. "sebastian/recursion-context": "^3.0"
  9836. },
  9837. "require-dev": {
  9838. "ext-dom": "*",
  9839. "phpunit/phpunit": "^8.0"
  9840. },
  9841. "suggest": {
  9842. "ext-uopz": "*"
  9843. },
  9844. "type": "library",
  9845. "extra": {
  9846. "branch-alias": {
  9847. "dev-master": "3.0-dev"
  9848. }
  9849. },
  9850. "autoload": {
  9851. "classmap": [
  9852. "src/"
  9853. ]
  9854. },
  9855. "notification-url": "https://packagist.org/downloads/",
  9856. "license": [
  9857. "BSD-3-Clause"
  9858. ],
  9859. "authors": [
  9860. {
  9861. "name": "Sebastian Bergmann",
  9862. "email": "sebastian@phpunit.de"
  9863. }
  9864. ],
  9865. "description": "Snapshotting of global state",
  9866. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9867. "keywords": [
  9868. "global state"
  9869. ],
  9870. "support": {
  9871. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9872. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9873. },
  9874. "funding": [
  9875. {
  9876. "url": "https://github.com/sebastianbergmann",
  9877. "type": "github"
  9878. }
  9879. ],
  9880. "time": "2020-11-30T07:43:24+00:00"
  9881. },
  9882. {
  9883. "name": "sebastian/object-enumerator",
  9884. "version": "3.0.4",
  9885. "source": {
  9886. "type": "git",
  9887. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9888. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9889. },
  9890. "dist": {
  9891. "type": "zip",
  9892. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9893. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9894. "shasum": "",
  9895. "mirrors": [
  9896. {
  9897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9898. "preferred": true
  9899. }
  9900. ]
  9901. },
  9902. "require": {
  9903. "php": ">=7.0",
  9904. "sebastian/object-reflector": "^1.1.1",
  9905. "sebastian/recursion-context": "^3.0"
  9906. },
  9907. "require-dev": {
  9908. "phpunit/phpunit": "^6.0"
  9909. },
  9910. "type": "library",
  9911. "extra": {
  9912. "branch-alias": {
  9913. "dev-master": "3.0.x-dev"
  9914. }
  9915. },
  9916. "autoload": {
  9917. "classmap": [
  9918. "src/"
  9919. ]
  9920. },
  9921. "notification-url": "https://packagist.org/downloads/",
  9922. "license": [
  9923. "BSD-3-Clause"
  9924. ],
  9925. "authors": [
  9926. {
  9927. "name": "Sebastian Bergmann",
  9928. "email": "sebastian@phpunit.de"
  9929. }
  9930. ],
  9931. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9932. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9933. "support": {
  9934. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9935. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9936. },
  9937. "funding": [
  9938. {
  9939. "url": "https://github.com/sebastianbergmann",
  9940. "type": "github"
  9941. }
  9942. ],
  9943. "time": "2020-11-30T07:40:27+00:00"
  9944. },
  9945. {
  9946. "name": "sebastian/object-reflector",
  9947. "version": "1.1.2",
  9948. "source": {
  9949. "type": "git",
  9950. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9951. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9952. },
  9953. "dist": {
  9954. "type": "zip",
  9955. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9956. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9957. "shasum": "",
  9958. "mirrors": [
  9959. {
  9960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9961. "preferred": true
  9962. }
  9963. ]
  9964. },
  9965. "require": {
  9966. "php": ">=7.0"
  9967. },
  9968. "require-dev": {
  9969. "phpunit/phpunit": "^6.0"
  9970. },
  9971. "type": "library",
  9972. "extra": {
  9973. "branch-alias": {
  9974. "dev-master": "1.1-dev"
  9975. }
  9976. },
  9977. "autoload": {
  9978. "classmap": [
  9979. "src/"
  9980. ]
  9981. },
  9982. "notification-url": "https://packagist.org/downloads/",
  9983. "license": [
  9984. "BSD-3-Clause"
  9985. ],
  9986. "authors": [
  9987. {
  9988. "name": "Sebastian Bergmann",
  9989. "email": "sebastian@phpunit.de"
  9990. }
  9991. ],
  9992. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9993. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9994. "support": {
  9995. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9996. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9997. },
  9998. "funding": [
  9999. {
  10000. "url": "https://github.com/sebastianbergmann",
  10001. "type": "github"
  10002. }
  10003. ],
  10004. "time": "2020-11-30T07:37:18+00:00"
  10005. },
  10006. {
  10007. "name": "sebastian/recursion-context",
  10008. "version": "3.0.1",
  10009. "source": {
  10010. "type": "git",
  10011. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10012. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10013. },
  10014. "dist": {
  10015. "type": "zip",
  10016. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10017. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10018. "shasum": "",
  10019. "mirrors": [
  10020. {
  10021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10022. "preferred": true
  10023. }
  10024. ]
  10025. },
  10026. "require": {
  10027. "php": ">=7.0"
  10028. },
  10029. "require-dev": {
  10030. "phpunit/phpunit": "^6.0"
  10031. },
  10032. "type": "library",
  10033. "extra": {
  10034. "branch-alias": {
  10035. "dev-master": "3.0.x-dev"
  10036. }
  10037. },
  10038. "autoload": {
  10039. "classmap": [
  10040. "src/"
  10041. ]
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "BSD-3-Clause"
  10046. ],
  10047. "authors": [
  10048. {
  10049. "name": "Sebastian Bergmann",
  10050. "email": "sebastian@phpunit.de"
  10051. },
  10052. {
  10053. "name": "Jeff Welch",
  10054. "email": "whatthejeff@gmail.com"
  10055. },
  10056. {
  10057. "name": "Adam Harvey",
  10058. "email": "aharvey@php.net"
  10059. }
  10060. ],
  10061. "description": "Provides functionality to recursively process PHP variables",
  10062. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10063. "support": {
  10064. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10065. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10066. },
  10067. "funding": [
  10068. {
  10069. "url": "https://github.com/sebastianbergmann",
  10070. "type": "github"
  10071. }
  10072. ],
  10073. "time": "2020-11-30T07:34:24+00:00"
  10074. },
  10075. {
  10076. "name": "sebastian/resource-operations",
  10077. "version": "2.0.2",
  10078. "source": {
  10079. "type": "git",
  10080. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10081. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10082. },
  10083. "dist": {
  10084. "type": "zip",
  10085. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10086. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10087. "shasum": "",
  10088. "mirrors": [
  10089. {
  10090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10091. "preferred": true
  10092. }
  10093. ]
  10094. },
  10095. "require": {
  10096. "php": ">=7.1"
  10097. },
  10098. "type": "library",
  10099. "extra": {
  10100. "branch-alias": {
  10101. "dev-master": "2.0-dev"
  10102. }
  10103. },
  10104. "autoload": {
  10105. "classmap": [
  10106. "src/"
  10107. ]
  10108. },
  10109. "notification-url": "https://packagist.org/downloads/",
  10110. "license": [
  10111. "BSD-3-Clause"
  10112. ],
  10113. "authors": [
  10114. {
  10115. "name": "Sebastian Bergmann",
  10116. "email": "sebastian@phpunit.de"
  10117. }
  10118. ],
  10119. "description": "Provides a list of PHP built-in functions that operate on resources",
  10120. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10121. "support": {
  10122. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10123. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10124. },
  10125. "funding": [
  10126. {
  10127. "url": "https://github.com/sebastianbergmann",
  10128. "type": "github"
  10129. }
  10130. ],
  10131. "abandoned": true,
  10132. "time": "2020-11-30T07:30:19+00:00"
  10133. },
  10134. {
  10135. "name": "sebastian/type",
  10136. "version": "1.1.4",
  10137. "source": {
  10138. "type": "git",
  10139. "url": "https://github.com/sebastianbergmann/type.git",
  10140. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10141. },
  10142. "dist": {
  10143. "type": "zip",
  10144. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10145. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10146. "shasum": "",
  10147. "mirrors": [
  10148. {
  10149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10150. "preferred": true
  10151. }
  10152. ]
  10153. },
  10154. "require": {
  10155. "php": ">=7.2"
  10156. },
  10157. "require-dev": {
  10158. "phpunit/phpunit": "^8.2"
  10159. },
  10160. "type": "library",
  10161. "extra": {
  10162. "branch-alias": {
  10163. "dev-master": "1.1-dev"
  10164. }
  10165. },
  10166. "autoload": {
  10167. "classmap": [
  10168. "src/"
  10169. ]
  10170. },
  10171. "notification-url": "https://packagist.org/downloads/",
  10172. "license": [
  10173. "BSD-3-Clause"
  10174. ],
  10175. "authors": [
  10176. {
  10177. "name": "Sebastian Bergmann",
  10178. "email": "sebastian@phpunit.de",
  10179. "role": "lead"
  10180. }
  10181. ],
  10182. "description": "Collection of value objects that represent the types of the PHP type system",
  10183. "homepage": "https://github.com/sebastianbergmann/type",
  10184. "support": {
  10185. "issues": "https://github.com/sebastianbergmann/type/issues",
  10186. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10187. },
  10188. "funding": [
  10189. {
  10190. "url": "https://github.com/sebastianbergmann",
  10191. "type": "github"
  10192. }
  10193. ],
  10194. "time": "2020-11-30T07:25:11+00:00"
  10195. },
  10196. {
  10197. "name": "sebastian/version",
  10198. "version": "2.0.1",
  10199. "source": {
  10200. "type": "git",
  10201. "url": "https://github.com/sebastianbergmann/version.git",
  10202. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10203. },
  10204. "dist": {
  10205. "type": "zip",
  10206. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10207. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10208. "shasum": "",
  10209. "mirrors": [
  10210. {
  10211. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10212. "preferred": true
  10213. }
  10214. ]
  10215. },
  10216. "require": {
  10217. "php": ">=5.6"
  10218. },
  10219. "type": "library",
  10220. "extra": {
  10221. "branch-alias": {
  10222. "dev-master": "2.0.x-dev"
  10223. }
  10224. },
  10225. "autoload": {
  10226. "classmap": [
  10227. "src/"
  10228. ]
  10229. },
  10230. "notification-url": "https://packagist.org/downloads/",
  10231. "license": [
  10232. "BSD-3-Clause"
  10233. ],
  10234. "authors": [
  10235. {
  10236. "name": "Sebastian Bergmann",
  10237. "email": "sebastian@phpunit.de",
  10238. "role": "lead"
  10239. }
  10240. ],
  10241. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10242. "homepage": "https://github.com/sebastianbergmann/version",
  10243. "support": {
  10244. "issues": "https://github.com/sebastianbergmann/version/issues",
  10245. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10246. },
  10247. "time": "2016-10-03T07:35:21+00:00"
  10248. },
  10249. {
  10250. "name": "symfony/debug",
  10251. "version": "v4.4.27",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/symfony/debug.git",
  10255. "reference": "2f9160e92eb64c95da7368c867b663a8e34e980c"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/symfony/debug/zipball/2f9160e92eb64c95da7368c867b663a8e34e980c",
  10260. "reference": "2f9160e92eb64c95da7368c867b663a8e34e980c",
  10261. "shasum": "",
  10262. "mirrors": [
  10263. {
  10264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10265. "preferred": true
  10266. }
  10267. ]
  10268. },
  10269. "require": {
  10270. "php": ">=7.1.3",
  10271. "psr/log": "^1|^2|^3"
  10272. },
  10273. "conflict": {
  10274. "symfony/http-kernel": "<3.4"
  10275. },
  10276. "require-dev": {
  10277. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10278. },
  10279. "type": "library",
  10280. "autoload": {
  10281. "psr-4": {
  10282. "Symfony\\Component\\Debug\\": ""
  10283. },
  10284. "exclude-from-classmap": [
  10285. "/Tests/"
  10286. ]
  10287. },
  10288. "notification-url": "https://packagist.org/downloads/",
  10289. "license": [
  10290. "MIT"
  10291. ],
  10292. "authors": [
  10293. {
  10294. "name": "Fabien Potencier",
  10295. "email": "fabien@symfony.com"
  10296. },
  10297. {
  10298. "name": "Symfony Community",
  10299. "homepage": "https://symfony.com/contributors"
  10300. }
  10301. ],
  10302. "description": "Provides tools to ease debugging PHP code",
  10303. "homepage": "https://symfony.com",
  10304. "support": {
  10305. "source": "https://github.com/symfony/debug/tree/v4.4.27"
  10306. },
  10307. "funding": [
  10308. {
  10309. "url": "https://symfony.com/sponsor",
  10310. "type": "custom"
  10311. },
  10312. {
  10313. "url": "https://github.com/fabpot",
  10314. "type": "github"
  10315. },
  10316. {
  10317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10318. "type": "tidelift"
  10319. }
  10320. ],
  10321. "time": "2021-07-22T07:21:39+00:00"
  10322. },
  10323. {
  10324. "name": "theseer/tokenizer",
  10325. "version": "1.2.1",
  10326. "source": {
  10327. "type": "git",
  10328. "url": "https://github.com/theseer/tokenizer.git",
  10329. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10330. },
  10331. "dist": {
  10332. "type": "zip",
  10333. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10334. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10335. "shasum": "",
  10336. "mirrors": [
  10337. {
  10338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10339. "preferred": true
  10340. }
  10341. ]
  10342. },
  10343. "require": {
  10344. "ext-dom": "*",
  10345. "ext-tokenizer": "*",
  10346. "ext-xmlwriter": "*",
  10347. "php": "^7.2 || ^8.0"
  10348. },
  10349. "type": "library",
  10350. "autoload": {
  10351. "classmap": [
  10352. "src/"
  10353. ]
  10354. },
  10355. "notification-url": "https://packagist.org/downloads/",
  10356. "license": [
  10357. "BSD-3-Clause"
  10358. ],
  10359. "authors": [
  10360. {
  10361. "name": "Arne Blankerts",
  10362. "email": "arne@blankerts.de",
  10363. "role": "Developer"
  10364. }
  10365. ],
  10366. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10367. "support": {
  10368. "issues": "https://github.com/theseer/tokenizer/issues",
  10369. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10370. },
  10371. "funding": [
  10372. {
  10373. "url": "https://github.com/theseer",
  10374. "type": "github"
  10375. }
  10376. ],
  10377. "time": "2021-07-28T10:34:58+00:00"
  10378. },
  10379. {
  10380. "name": "webmozart/assert",
  10381. "version": "1.10.0",
  10382. "source": {
  10383. "type": "git",
  10384. "url": "https://github.com/webmozarts/assert.git",
  10385. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10386. },
  10387. "dist": {
  10388. "type": "zip",
  10389. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10390. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10391. "shasum": "",
  10392. "mirrors": [
  10393. {
  10394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10395. "preferred": true
  10396. }
  10397. ]
  10398. },
  10399. "require": {
  10400. "php": "^7.2 || ^8.0",
  10401. "symfony/polyfill-ctype": "^1.8"
  10402. },
  10403. "conflict": {
  10404. "phpstan/phpstan": "<0.12.20",
  10405. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10406. },
  10407. "require-dev": {
  10408. "phpunit/phpunit": "^8.5.13"
  10409. },
  10410. "type": "library",
  10411. "extra": {
  10412. "branch-alias": {
  10413. "dev-master": "1.10-dev"
  10414. }
  10415. },
  10416. "autoload": {
  10417. "psr-4": {
  10418. "Webmozart\\Assert\\": "src/"
  10419. }
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "MIT"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Bernhard Schussek",
  10428. "email": "bschussek@gmail.com"
  10429. }
  10430. ],
  10431. "description": "Assertions to validate method input/output with nice error messages.",
  10432. "keywords": [
  10433. "assert",
  10434. "check",
  10435. "validate"
  10436. ],
  10437. "support": {
  10438. "issues": "https://github.com/webmozarts/assert/issues",
  10439. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10440. },
  10441. "time": "2021-03-09T10:59:23+00:00"
  10442. }
  10443. ],
  10444. "aliases": [],
  10445. "minimum-stability": "dev",
  10446. "stability-flags": [],
  10447. "prefer-stable": true,
  10448. "prefer-lowest": false,
  10449. "platform": {
  10450. "php": "^7.2.14",
  10451. "ext-bcmath": "*",
  10452. "ext-json": "*",
  10453. "ext-mbstring": "*",
  10454. "ext-openssl": "*",
  10455. "ext-pdo": "*"
  10456. },
  10457. "platform-dev": [],
  10458. "platform-overrides": {
  10459. "ext-pcntl": "7.2",
  10460. "ext-posix": "7.2"
  10461. },
  10462. "plugin-api-version": "2.1.0"
  10463. }