composer.lock 346 KB

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