composer.lock 308 KB

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