composer.lock 317 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935
  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": "9f541663fd01e473460d4386bbd2c0fc",
  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.9",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/composer/composer.git",
  387. "reference": "83c3250093d5491600a822e176b107a945baf95a"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/composer/composer/zipball/83c3250093d5491600a822e176b107a945baf95a",
  392. "reference": "83c3250093d5491600a822e176b107a945baf95a",
  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-07-16T10:57:00+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.4",
  537. "source": {
  538. "type": "git",
  539. "url": "https://github.com/composer/spdx-licenses.git",
  540. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  541. },
  542. "dist": {
  543. "type": "zip",
  544. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  545. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  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-07-15T15:35:07+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.14.1",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3608. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  3613. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  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.1",
  3637. "markbaker/complex": "^1.4",
  3638. "markbaker/matrix": "^1.2",
  3639. "php": "^7.2",
  3640. "psr/http-client": "^1.0",
  3641. "psr/http-factory": "^1.0",
  3642. "psr/simple-cache": "^1.0"
  3643. },
  3644. "require-dev": {
  3645. "dompdf/dompdf": "^0.8.5",
  3646. "friendsofphp/php-cs-fixer": "^2.16",
  3647. "jpgraph/jpgraph": "^4.0",
  3648. "mpdf/mpdf": "^8.0",
  3649. "phpcompatibility/php-compatibility": "^9.3",
  3650. "phpunit/phpunit": "^8.5",
  3651. "squizlabs/php_codesniffer": "^3.5",
  3652. "tecnickcom/tcpdf": "^6.3"
  3653. },
  3654. "suggest": {
  3655. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3656. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3657. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3658. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3659. },
  3660. "type": "library",
  3661. "autoload": {
  3662. "psr-4": {
  3663. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3664. }
  3665. },
  3666. "notification-url": "https://packagist.org/downloads/",
  3667. "license": [
  3668. "MIT"
  3669. ],
  3670. "authors": [
  3671. {
  3672. "name": "Maarten Balliauw",
  3673. "homepage": "https://blog.maartenballiauw.be"
  3674. },
  3675. {
  3676. "name": "Mark Baker",
  3677. "homepage": "https://markbakeruk.net"
  3678. },
  3679. {
  3680. "name": "Franck Lefevre",
  3681. "homepage": "https://rootslabs.net"
  3682. },
  3683. {
  3684. "name": "Erik Tilt"
  3685. },
  3686. {
  3687. "name": "Adrien Crivelli"
  3688. }
  3689. ],
  3690. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3691. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3692. "keywords": [
  3693. "OpenXML",
  3694. "excel",
  3695. "gnumeric",
  3696. "ods",
  3697. "php",
  3698. "spreadsheet",
  3699. "xls",
  3700. "xlsx"
  3701. ],
  3702. "time": "2020-07-19T09:51:35+00:00"
  3703. },
  3704. {
  3705. "name": "phpoption/phpoption",
  3706. "version": "1.7.5",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/schmittjoh/php-option.git",
  3710. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3715. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3716. "shasum": "",
  3717. "mirrors": [
  3718. {
  3719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3720. "preferred": true
  3721. }
  3722. ]
  3723. },
  3724. "require": {
  3725. "php": "^5.5.9 || ^7.0 || ^8.0"
  3726. },
  3727. "require-dev": {
  3728. "bamarni/composer-bin-plugin": "^1.4.1",
  3729. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3730. },
  3731. "type": "library",
  3732. "extra": {
  3733. "branch-alias": {
  3734. "dev-master": "1.7-dev"
  3735. }
  3736. },
  3737. "autoload": {
  3738. "psr-4": {
  3739. "PhpOption\\": "src/PhpOption/"
  3740. }
  3741. },
  3742. "notification-url": "https://packagist.org/downloads/",
  3743. "license": [
  3744. "Apache-2.0"
  3745. ],
  3746. "authors": [
  3747. {
  3748. "name": "Johannes M. Schmitt",
  3749. "email": "schmittjoh@gmail.com"
  3750. },
  3751. {
  3752. "name": "Graham Campbell",
  3753. "email": "graham@alt-three.com"
  3754. }
  3755. ],
  3756. "description": "Option Type for PHP",
  3757. "keywords": [
  3758. "language",
  3759. "option",
  3760. "php",
  3761. "type"
  3762. ],
  3763. "time": "2020-07-20T17:29:33+00:00"
  3764. },
  3765. {
  3766. "name": "predis/predis",
  3767. "version": "v1.1.1",
  3768. "source": {
  3769. "type": "git",
  3770. "url": "https://github.com/nrk/predis.git",
  3771. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3772. },
  3773. "dist": {
  3774. "type": "zip",
  3775. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3776. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3777. "shasum": "",
  3778. "mirrors": [
  3779. {
  3780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3781. "preferred": true
  3782. }
  3783. ]
  3784. },
  3785. "require": {
  3786. "php": ">=5.3.9"
  3787. },
  3788. "require-dev": {
  3789. "phpunit/phpunit": "~4.8"
  3790. },
  3791. "suggest": {
  3792. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3793. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3794. },
  3795. "type": "library",
  3796. "autoload": {
  3797. "psr-4": {
  3798. "Predis\\": "src/"
  3799. }
  3800. },
  3801. "notification-url": "https://packagist.org/downloads/",
  3802. "license": [
  3803. "MIT"
  3804. ],
  3805. "authors": [
  3806. {
  3807. "name": "Daniele Alessandri",
  3808. "email": "suppakilla@gmail.com",
  3809. "homepage": "http://clorophilla.net"
  3810. }
  3811. ],
  3812. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3813. "homepage": "http://github.com/nrk/predis",
  3814. "keywords": [
  3815. "nosql",
  3816. "predis",
  3817. "redis"
  3818. ],
  3819. "time": "2016-06-16T16:22:20+00:00"
  3820. },
  3821. {
  3822. "name": "psr/container",
  3823. "version": "1.0.0",
  3824. "source": {
  3825. "type": "git",
  3826. "url": "https://github.com/php-fig/container.git",
  3827. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3828. },
  3829. "dist": {
  3830. "type": "zip",
  3831. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3832. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3833. "shasum": "",
  3834. "mirrors": [
  3835. {
  3836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3837. "preferred": true
  3838. }
  3839. ]
  3840. },
  3841. "require": {
  3842. "php": ">=5.3.0"
  3843. },
  3844. "type": "library",
  3845. "extra": {
  3846. "branch-alias": {
  3847. "dev-master": "1.0.x-dev"
  3848. }
  3849. },
  3850. "autoload": {
  3851. "psr-4": {
  3852. "Psr\\Container\\": "src/"
  3853. }
  3854. },
  3855. "notification-url": "https://packagist.org/downloads/",
  3856. "license": [
  3857. "MIT"
  3858. ],
  3859. "authors": [
  3860. {
  3861. "name": "PHP-FIG",
  3862. "homepage": "http://www.php-fig.org/"
  3863. }
  3864. ],
  3865. "description": "Common Container Interface (PHP FIG PSR-11)",
  3866. "homepage": "https://github.com/php-fig/container",
  3867. "keywords": [
  3868. "PSR-11",
  3869. "container",
  3870. "container-interface",
  3871. "container-interop",
  3872. "psr"
  3873. ],
  3874. "time": "2017-02-14T16:28:37+00:00"
  3875. },
  3876. {
  3877. "name": "psr/http-client",
  3878. "version": "1.0.1",
  3879. "source": {
  3880. "type": "git",
  3881. "url": "https://github.com/php-fig/http-client.git",
  3882. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3883. },
  3884. "dist": {
  3885. "type": "zip",
  3886. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3887. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3888. "shasum": "",
  3889. "mirrors": [
  3890. {
  3891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3892. "preferred": true
  3893. }
  3894. ]
  3895. },
  3896. "require": {
  3897. "php": "^7.0 || ^8.0",
  3898. "psr/http-message": "^1.0"
  3899. },
  3900. "type": "library",
  3901. "extra": {
  3902. "branch-alias": {
  3903. "dev-master": "1.0.x-dev"
  3904. }
  3905. },
  3906. "autoload": {
  3907. "psr-4": {
  3908. "Psr\\Http\\Client\\": "src/"
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "PHP-FIG",
  3918. "homepage": "http://www.php-fig.org/"
  3919. }
  3920. ],
  3921. "description": "Common interface for HTTP clients",
  3922. "homepage": "https://github.com/php-fig/http-client",
  3923. "keywords": [
  3924. "http",
  3925. "http-client",
  3926. "psr",
  3927. "psr-18"
  3928. ],
  3929. "time": "2020-06-29T06:28:15+00:00"
  3930. },
  3931. {
  3932. "name": "psr/http-factory",
  3933. "version": "1.0.1",
  3934. "source": {
  3935. "type": "git",
  3936. "url": "https://github.com/php-fig/http-factory.git",
  3937. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3938. },
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3942. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3943. "shasum": "",
  3944. "mirrors": [
  3945. {
  3946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3947. "preferred": true
  3948. }
  3949. ]
  3950. },
  3951. "require": {
  3952. "php": ">=7.0.0",
  3953. "psr/http-message": "^1.0"
  3954. },
  3955. "type": "library",
  3956. "extra": {
  3957. "branch-alias": {
  3958. "dev-master": "1.0.x-dev"
  3959. }
  3960. },
  3961. "autoload": {
  3962. "psr-4": {
  3963. "Psr\\Http\\Message\\": "src/"
  3964. }
  3965. },
  3966. "notification-url": "https://packagist.org/downloads/",
  3967. "license": [
  3968. "MIT"
  3969. ],
  3970. "authors": [
  3971. {
  3972. "name": "PHP-FIG",
  3973. "homepage": "http://www.php-fig.org/"
  3974. }
  3975. ],
  3976. "description": "Common interfaces for PSR-7 HTTP message factories",
  3977. "keywords": [
  3978. "factory",
  3979. "http",
  3980. "message",
  3981. "psr",
  3982. "psr-17",
  3983. "psr-7",
  3984. "request",
  3985. "response"
  3986. ],
  3987. "time": "2019-04-30T12:38:16+00:00"
  3988. },
  3989. {
  3990. "name": "psr/http-message",
  3991. "version": "1.0.1",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/php-fig/http-message.git",
  3995. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4000. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4001. "shasum": "",
  4002. "mirrors": [
  4003. {
  4004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4005. "preferred": true
  4006. }
  4007. ]
  4008. },
  4009. "require": {
  4010. "php": ">=5.3.0"
  4011. },
  4012. "type": "library",
  4013. "extra": {
  4014. "branch-alias": {
  4015. "dev-master": "1.0.x-dev"
  4016. }
  4017. },
  4018. "autoload": {
  4019. "psr-4": {
  4020. "Psr\\Http\\Message\\": "src/"
  4021. }
  4022. },
  4023. "notification-url": "https://packagist.org/downloads/",
  4024. "license": [
  4025. "MIT"
  4026. ],
  4027. "authors": [
  4028. {
  4029. "name": "PHP-FIG",
  4030. "homepage": "http://www.php-fig.org/"
  4031. }
  4032. ],
  4033. "description": "Common interface for HTTP messages",
  4034. "homepage": "https://github.com/php-fig/http-message",
  4035. "keywords": [
  4036. "http",
  4037. "http-message",
  4038. "psr",
  4039. "psr-7",
  4040. "request",
  4041. "response"
  4042. ],
  4043. "time": "2016-08-06T14:39:51+00:00"
  4044. },
  4045. {
  4046. "name": "psr/log",
  4047. "version": "1.1.3",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/php-fig/log.git",
  4051. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  4056. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  4057. "shasum": "",
  4058. "mirrors": [
  4059. {
  4060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4061. "preferred": true
  4062. }
  4063. ]
  4064. },
  4065. "require": {
  4066. "php": ">=5.3.0"
  4067. },
  4068. "type": "library",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-master": "1.1.x-dev"
  4072. }
  4073. },
  4074. "autoload": {
  4075. "psr-4": {
  4076. "Psr\\Log\\": "Psr/Log/"
  4077. }
  4078. },
  4079. "notification-url": "https://packagist.org/downloads/",
  4080. "license": [
  4081. "MIT"
  4082. ],
  4083. "authors": [
  4084. {
  4085. "name": "PHP-FIG",
  4086. "homepage": "http://www.php-fig.org/"
  4087. }
  4088. ],
  4089. "description": "Common interface for logging libraries",
  4090. "homepage": "https://github.com/php-fig/log",
  4091. "keywords": [
  4092. "log",
  4093. "psr",
  4094. "psr-3"
  4095. ],
  4096. "time": "2020-03-23T09:12:05+00:00"
  4097. },
  4098. {
  4099. "name": "psr/simple-cache",
  4100. "version": "1.0.1",
  4101. "source": {
  4102. "type": "git",
  4103. "url": "https://github.com/php-fig/simple-cache.git",
  4104. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4105. },
  4106. "dist": {
  4107. "type": "zip",
  4108. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4109. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4110. "shasum": "",
  4111. "mirrors": [
  4112. {
  4113. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4114. "preferred": true
  4115. }
  4116. ]
  4117. },
  4118. "require": {
  4119. "php": ">=5.3.0"
  4120. },
  4121. "type": "library",
  4122. "extra": {
  4123. "branch-alias": {
  4124. "dev-master": "1.0.x-dev"
  4125. }
  4126. },
  4127. "autoload": {
  4128. "psr-4": {
  4129. "Psr\\SimpleCache\\": "src/"
  4130. }
  4131. },
  4132. "notification-url": "https://packagist.org/downloads/",
  4133. "license": [
  4134. "MIT"
  4135. ],
  4136. "authors": [
  4137. {
  4138. "name": "PHP-FIG",
  4139. "homepage": "http://www.php-fig.org/"
  4140. }
  4141. ],
  4142. "description": "Common interfaces for simple caching",
  4143. "keywords": [
  4144. "cache",
  4145. "caching",
  4146. "psr",
  4147. "psr-16",
  4148. "simple-cache"
  4149. ],
  4150. "time": "2017-10-23T01:57:42+00:00"
  4151. },
  4152. {
  4153. "name": "psy/psysh",
  4154. "version": "v0.9.12",
  4155. "source": {
  4156. "type": "git",
  4157. "url": "https://github.com/bobthecow/psysh.git",
  4158. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  4159. },
  4160. "dist": {
  4161. "type": "zip",
  4162. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  4163. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  4164. "shasum": "",
  4165. "mirrors": [
  4166. {
  4167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4168. "preferred": true
  4169. }
  4170. ]
  4171. },
  4172. "require": {
  4173. "dnoegel/php-xdg-base-dir": "0.1.*",
  4174. "ext-json": "*",
  4175. "ext-tokenizer": "*",
  4176. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  4177. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  4178. "php": ">=5.4.0",
  4179. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  4180. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  4181. },
  4182. "require-dev": {
  4183. "bamarni/composer-bin-plugin": "^1.2",
  4184. "hoa/console": "~2.15|~3.16",
  4185. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  4186. },
  4187. "suggest": {
  4188. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4189. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4190. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4191. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4192. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4193. },
  4194. "bin": [
  4195. "bin/psysh"
  4196. ],
  4197. "type": "library",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-develop": "0.9.x-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "files": [
  4205. "src/functions.php"
  4206. ],
  4207. "psr-4": {
  4208. "Psy\\": "src/"
  4209. }
  4210. },
  4211. "notification-url": "https://packagist.org/downloads/",
  4212. "license": [
  4213. "MIT"
  4214. ],
  4215. "authors": [
  4216. {
  4217. "name": "Justin Hileman",
  4218. "email": "justin@justinhileman.info",
  4219. "homepage": "http://justinhileman.com"
  4220. }
  4221. ],
  4222. "description": "An interactive shell for modern PHP.",
  4223. "homepage": "http://psysh.org",
  4224. "keywords": [
  4225. "REPL",
  4226. "console",
  4227. "interactive",
  4228. "shell"
  4229. ],
  4230. "time": "2019-12-06T14:19:43+00:00"
  4231. },
  4232. {
  4233. "name": "ralouphie/getallheaders",
  4234. "version": "3.0.3",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://github.com/ralouphie/getallheaders.git",
  4238. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4243. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4244. "shasum": "",
  4245. "mirrors": [
  4246. {
  4247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4248. "preferred": true
  4249. }
  4250. ]
  4251. },
  4252. "require": {
  4253. "php": ">=5.6"
  4254. },
  4255. "require-dev": {
  4256. "php-coveralls/php-coveralls": "^2.1",
  4257. "phpunit/phpunit": "^5 || ^6.5"
  4258. },
  4259. "type": "library",
  4260. "autoload": {
  4261. "files": [
  4262. "src/getallheaders.php"
  4263. ]
  4264. },
  4265. "notification-url": "https://packagist.org/downloads/",
  4266. "license": [
  4267. "MIT"
  4268. ],
  4269. "authors": [
  4270. {
  4271. "name": "Ralph Khattar",
  4272. "email": "ralph.khattar@gmail.com"
  4273. }
  4274. ],
  4275. "description": "A polyfill for getallheaders.",
  4276. "time": "2019-03-08T08:55:37+00:00"
  4277. },
  4278. {
  4279. "name": "ramsey/uuid",
  4280. "version": "3.9.3",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://github.com/ramsey/uuid.git",
  4284. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  4289. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  4290. "shasum": "",
  4291. "mirrors": [
  4292. {
  4293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4294. "preferred": true
  4295. }
  4296. ]
  4297. },
  4298. "require": {
  4299. "ext-json": "*",
  4300. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  4301. "php": "^5.4 | ^7 | ^8",
  4302. "symfony/polyfill-ctype": "^1.8"
  4303. },
  4304. "replace": {
  4305. "rhumsaa/uuid": "self.version"
  4306. },
  4307. "require-dev": {
  4308. "codeception/aspect-mock": "^1 | ^2",
  4309. "doctrine/annotations": "^1.2",
  4310. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  4311. "jakub-onderka/php-parallel-lint": "^1",
  4312. "mockery/mockery": "^0.9.11 | ^1",
  4313. "moontoast/math": "^1.1",
  4314. "paragonie/random-lib": "^2",
  4315. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  4316. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  4317. "squizlabs/php_codesniffer": "^3.5"
  4318. },
  4319. "suggest": {
  4320. "ext-ctype": "Provides support for PHP Ctype functions",
  4321. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  4322. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  4323. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  4324. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  4325. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4326. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  4327. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "3.x-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Ramsey\\Uuid\\": "src/"
  4338. },
  4339. "files": [
  4340. "src/functions.php"
  4341. ]
  4342. },
  4343. "notification-url": "https://packagist.org/downloads/",
  4344. "license": [
  4345. "MIT"
  4346. ],
  4347. "authors": [
  4348. {
  4349. "name": "Ben Ramsey",
  4350. "email": "ben@benramsey.com",
  4351. "homepage": "https://benramsey.com"
  4352. },
  4353. {
  4354. "name": "Marijn Huizendveld",
  4355. "email": "marijn.huizendveld@gmail.com"
  4356. },
  4357. {
  4358. "name": "Thibaud Fabre",
  4359. "email": "thibaud@aztech.io"
  4360. }
  4361. ],
  4362. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4363. "homepage": "https://github.com/ramsey/uuid",
  4364. "keywords": [
  4365. "guid",
  4366. "identifier",
  4367. "uuid"
  4368. ],
  4369. "time": "2020-02-21T04:36:14+00:00"
  4370. },
  4371. {
  4372. "name": "rap2hpoutre/laravel-log-viewer",
  4373. "version": "v1.6.0",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  4377. "reference": "02023f590b84d11be8716a8c07146c128f9e7b42"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/02023f590b84d11be8716a8c07146c128f9e7b42",
  4382. "reference": "02023f590b84d11be8716a8c07146c128f9e7b42",
  4383. "shasum": "",
  4384. "mirrors": [
  4385. {
  4386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4387. "preferred": true
  4388. }
  4389. ]
  4390. },
  4391. "require": {
  4392. "illuminate/support": "4.2.*|5.*|^6.0|^7.0",
  4393. "php": ">=5.4.0"
  4394. },
  4395. "require-dev": {
  4396. "orchestra/testbench": "3.7.*",
  4397. "phpunit/phpunit": "^7"
  4398. },
  4399. "type": "laravel-package",
  4400. "extra": {
  4401. "laravel": {
  4402. "providers": [
  4403. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  4404. ]
  4405. }
  4406. },
  4407. "autoload": {
  4408. "classmap": [
  4409. "src/controllers"
  4410. ],
  4411. "psr-0": {
  4412. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  4413. }
  4414. },
  4415. "notification-url": "https://packagist.org/downloads/",
  4416. "license": [
  4417. "MIT"
  4418. ],
  4419. "authors": [
  4420. {
  4421. "name": "rap2hpoutre",
  4422. "email": "raphaelht@gmail.com"
  4423. }
  4424. ],
  4425. "description": "A Laravel log reader",
  4426. "keywords": [
  4427. "laravel",
  4428. "log",
  4429. "log-reader",
  4430. "log-viewer",
  4431. "logging",
  4432. "lumen"
  4433. ],
  4434. "time": "2020-04-27T06:40:08+00:00"
  4435. },
  4436. {
  4437. "name": "riverslei/payment",
  4438. "version": "v5.1.0",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://github.com/helei112g/payment.git",
  4442. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4447. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  4448. "shasum": "",
  4449. "mirrors": [
  4450. {
  4451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4452. "preferred": true
  4453. }
  4454. ]
  4455. },
  4456. "require": {
  4457. "ext-bcmath": "*",
  4458. "ext-json": "*",
  4459. "ext-mbstring": "*",
  4460. "ext-openssl": "*",
  4461. "ext-simplexml": "*",
  4462. "ext-xml": "*",
  4463. "guzzlehttp/guzzle": "~6.0",
  4464. "php": ">=7.0"
  4465. },
  4466. "require-dev": {
  4467. "codeception/codeception": "*"
  4468. },
  4469. "type": "library",
  4470. "autoload": {
  4471. "psr-4": {
  4472. "Payment\\": "src/"
  4473. }
  4474. },
  4475. "notification-url": "https://packagist.org/downloads/",
  4476. "license": [
  4477. "MIT"
  4478. ],
  4479. "authors": [
  4480. {
  4481. "name": "Leo",
  4482. "email": "dayugog@gmail.com",
  4483. "homepage": "https://dayutalk.cn"
  4484. }
  4485. ],
  4486. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  4487. "homepage": "http://helei112g.github.io/payment",
  4488. "keywords": [
  4489. "alipay",
  4490. "weixin",
  4491. "一网通",
  4492. "微信支付",
  4493. "招商一网通",
  4494. "支付宝支付",
  4495. "集成支付接口SDK"
  4496. ],
  4497. "time": "2020-05-04T03:07:17+00:00"
  4498. },
  4499. {
  4500. "name": "scyllaly/hcaptcha",
  4501. "version": "4.1",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://github.com/Scyllaly/hcaptcha.git",
  4505. "reference": "97ca32c09f9f04ac10aaf394485f0ec49e5a6a75"
  4506. },
  4507. "dist": {
  4508. "type": "zip",
  4509. "url": "https://api.github.com/repos/Scyllaly/hcaptcha/zipball/97ca32c09f9f04ac10aaf394485f0ec49e5a6a75",
  4510. "reference": "97ca32c09f9f04ac10aaf394485f0ec49e5a6a75",
  4511. "shasum": "",
  4512. "mirrors": [
  4513. {
  4514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4515. "preferred": true
  4516. }
  4517. ]
  4518. },
  4519. "require": {
  4520. "guzzlehttp/guzzle": "^6.2",
  4521. "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*",
  4522. "php": ">=5.5.5"
  4523. },
  4524. "require-dev": {
  4525. "phpunit/phpunit": "~4.8"
  4526. },
  4527. "type": "library",
  4528. "autoload": {
  4529. "psr-4": {
  4530. "Scyllaly\\HCaptcha\\": "src/"
  4531. }
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "MIT"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "scyllaly",
  4540. "email": "scyllaly@github.com"
  4541. }
  4542. ],
  4543. "description": "hCaptcha For Laravel5.x",
  4544. "keywords": [
  4545. "captcha",
  4546. "hcaptcha",
  4547. "laravel",
  4548. "laravel5"
  4549. ],
  4550. "time": "2020-04-21T16:58:39+00:00"
  4551. },
  4552. {
  4553. "name": "seld/jsonlint",
  4554. "version": "1.8.0",
  4555. "source": {
  4556. "type": "git",
  4557. "url": "https://github.com/Seldaek/jsonlint.git",
  4558. "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1"
  4559. },
  4560. "dist": {
  4561. "type": "zip",
  4562. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1",
  4563. "reference": "ff2aa5420bfbc296cf6a0bc785fa5b35736de7c1",
  4564. "shasum": "",
  4565. "mirrors": [
  4566. {
  4567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4568. "preferred": true
  4569. }
  4570. ]
  4571. },
  4572. "require": {
  4573. "php": "^5.3 || ^7.0 || ^8.0"
  4574. },
  4575. "require-dev": {
  4576. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4577. },
  4578. "bin": [
  4579. "bin/jsonlint"
  4580. ],
  4581. "type": "library",
  4582. "autoload": {
  4583. "psr-4": {
  4584. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  4585. }
  4586. },
  4587. "notification-url": "https://packagist.org/downloads/",
  4588. "license": [
  4589. "MIT"
  4590. ],
  4591. "authors": [
  4592. {
  4593. "name": "Jordi Boggiano",
  4594. "email": "j.boggiano@seld.be",
  4595. "homepage": "http://seld.be"
  4596. }
  4597. ],
  4598. "description": "JSON Linter",
  4599. "keywords": [
  4600. "json",
  4601. "linter",
  4602. "parser",
  4603. "validator"
  4604. ],
  4605. "time": "2020-04-30T19:05:18+00:00"
  4606. },
  4607. {
  4608. "name": "seld/phar-utils",
  4609. "version": "1.1.1",
  4610. "source": {
  4611. "type": "git",
  4612. "url": "https://github.com/Seldaek/phar-utils.git",
  4613. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  4614. },
  4615. "dist": {
  4616. "type": "zip",
  4617. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  4618. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  4619. "shasum": "",
  4620. "mirrors": [
  4621. {
  4622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4623. "preferred": true
  4624. }
  4625. ]
  4626. },
  4627. "require": {
  4628. "php": ">=5.3"
  4629. },
  4630. "type": "library",
  4631. "extra": {
  4632. "branch-alias": {
  4633. "dev-master": "1.x-dev"
  4634. }
  4635. },
  4636. "autoload": {
  4637. "psr-4": {
  4638. "Seld\\PharUtils\\": "src/"
  4639. }
  4640. },
  4641. "notification-url": "https://packagist.org/downloads/",
  4642. "license": [
  4643. "MIT"
  4644. ],
  4645. "authors": [
  4646. {
  4647. "name": "Jordi Boggiano",
  4648. "email": "j.boggiano@seld.be"
  4649. }
  4650. ],
  4651. "description": "PHAR file format utilities, for when PHP phars you up",
  4652. "keywords": [
  4653. "phar"
  4654. ],
  4655. "time": "2020-07-07T18:42:57+00:00"
  4656. },
  4657. {
  4658. "name": "simplesoftwareio/simple-qrcode",
  4659. "version": "3.0.0",
  4660. "source": {
  4661. "type": "git",
  4662. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4663. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e"
  4664. },
  4665. "dist": {
  4666. "type": "zip",
  4667. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  4668. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  4669. "shasum": "",
  4670. "mirrors": [
  4671. {
  4672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4673. "preferred": true
  4674. }
  4675. ]
  4676. },
  4677. "require": {
  4678. "bacon/bacon-qr-code": "2.0.0",
  4679. "ext-gd": "*",
  4680. "php": ">=7.2"
  4681. },
  4682. "require-dev": {
  4683. "mockery/mockery": "~1",
  4684. "phpunit/phpunit": "~9"
  4685. },
  4686. "suggest": {
  4687. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4688. "illuminate/support": "Allows for use within Laravel."
  4689. },
  4690. "type": "library",
  4691. "extra": {
  4692. "laravel": {
  4693. "providers": [
  4694. "SimpleSoftwareIO\\QrCode\\ServiceProvider"
  4695. ],
  4696. "aliases": {
  4697. "QrCode": "SimpleSoftwareIO\\QrCode\\Facade"
  4698. }
  4699. }
  4700. },
  4701. "autoload": {
  4702. "psr-4": {
  4703. "SimpleSoftwareIO\\QrCode\\": "src"
  4704. }
  4705. },
  4706. "notification-url": "https://packagist.org/downloads/",
  4707. "license": [
  4708. "MIT"
  4709. ],
  4710. "authors": [
  4711. {
  4712. "name": "Simple Software LLC",
  4713. "email": "support@simplesoftware.io"
  4714. }
  4715. ],
  4716. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4717. "homepage": "http://www.simplesoftware.io",
  4718. "keywords": [
  4719. "Simple",
  4720. "generator",
  4721. "laravel",
  4722. "qrcode",
  4723. "wrapper"
  4724. ],
  4725. "time": "2020-06-02T20:41:21+00:00"
  4726. },
  4727. {
  4728. "name": "spatie/laravel-permission",
  4729. "version": "3.13.0",
  4730. "source": {
  4731. "type": "git",
  4732. "url": "https://github.com/spatie/laravel-permission.git",
  4733. "reference": "49b8063fbb9ec52ebef98cc6ec527a80d8853141"
  4734. },
  4735. "dist": {
  4736. "type": "zip",
  4737. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/49b8063fbb9ec52ebef98cc6ec527a80d8853141",
  4738. "reference": "49b8063fbb9ec52ebef98cc6ec527a80d8853141",
  4739. "shasum": "",
  4740. "mirrors": [
  4741. {
  4742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4743. "preferred": true
  4744. }
  4745. ]
  4746. },
  4747. "require": {
  4748. "illuminate/auth": "^5.8|^6.0|^7.0",
  4749. "illuminate/container": "^5.8|^6.0|^7.0",
  4750. "illuminate/contracts": "^5.8|^6.0|^7.0",
  4751. "illuminate/database": "^5.8|^6.0|^7.0",
  4752. "php": "^7.2.5"
  4753. },
  4754. "require-dev": {
  4755. "orchestra/testbench": "^3.8|^4.0|^5.0",
  4756. "phpunit/phpunit": "^8.0|^9.0",
  4757. "predis/predis": "^1.1"
  4758. },
  4759. "type": "library",
  4760. "extra": {
  4761. "laravel": {
  4762. "providers": [
  4763. "Spatie\\Permission\\PermissionServiceProvider"
  4764. ]
  4765. }
  4766. },
  4767. "autoload": {
  4768. "psr-4": {
  4769. "Spatie\\Permission\\": "src"
  4770. },
  4771. "files": [
  4772. "src/helpers.php"
  4773. ]
  4774. },
  4775. "notification-url": "https://packagist.org/downloads/",
  4776. "license": [
  4777. "MIT"
  4778. ],
  4779. "authors": [
  4780. {
  4781. "name": "Freek Van der Herten",
  4782. "email": "freek@spatie.be",
  4783. "homepage": "https://spatie.be",
  4784. "role": "Developer"
  4785. }
  4786. ],
  4787. "description": "Permission handling for Laravel 5.8 and up",
  4788. "homepage": "https://github.com/spatie/laravel-permission",
  4789. "keywords": [
  4790. "acl",
  4791. "laravel",
  4792. "permission",
  4793. "permissions",
  4794. "rbac",
  4795. "roles",
  4796. "security",
  4797. "spatie"
  4798. ],
  4799. "time": "2020-05-20T00:31:29+00:00"
  4800. },
  4801. {
  4802. "name": "srmklive/paypal",
  4803. "version": "1.7.0",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/srmklive/laravel-paypal.git",
  4807. "reference": "09b78947e302837eb7851e6a4c204532c9ef4927"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/09b78947e302837eb7851e6a4c204532c9ef4927",
  4812. "reference": "09b78947e302837eb7851e6a4c204532c9ef4927",
  4813. "shasum": "",
  4814. "mirrors": [
  4815. {
  4816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4817. "preferred": true
  4818. }
  4819. ]
  4820. },
  4821. "require": {
  4822. "guzzlehttp/guzzle": "~6.0",
  4823. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0",
  4824. "nesbot/carbon": "~1.0|~2.0"
  4825. },
  4826. "type": "library",
  4827. "extra": {
  4828. "laravel": {
  4829. "providers": [
  4830. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4831. ],
  4832. "aliases": {
  4833. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4834. }
  4835. }
  4836. },
  4837. "autoload": {
  4838. "psr-4": {
  4839. "Srmklive\\PayPal\\": "src/"
  4840. }
  4841. },
  4842. "notification-url": "https://packagist.org/downloads/",
  4843. "license": [
  4844. "MIT"
  4845. ],
  4846. "authors": [
  4847. {
  4848. "name": "Raza Mehdi",
  4849. "email": "srmk@outlook.com"
  4850. }
  4851. ],
  4852. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4853. "keywords": [
  4854. "http",
  4855. "laravel paypal",
  4856. "paypal",
  4857. "rest",
  4858. "web service"
  4859. ],
  4860. "time": "2020-03-03T09:42:56+00:00"
  4861. },
  4862. {
  4863. "name": "swiftmailer/swiftmailer",
  4864. "version": "v6.2.3",
  4865. "source": {
  4866. "type": "git",
  4867. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4868. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  4869. },
  4870. "dist": {
  4871. "type": "zip",
  4872. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4873. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  4874. "shasum": "",
  4875. "mirrors": [
  4876. {
  4877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4878. "preferred": true
  4879. }
  4880. ]
  4881. },
  4882. "require": {
  4883. "egulias/email-validator": "~2.0",
  4884. "php": ">=7.0.0",
  4885. "symfony/polyfill-iconv": "^1.0",
  4886. "symfony/polyfill-intl-idn": "^1.10",
  4887. "symfony/polyfill-mbstring": "^1.0"
  4888. },
  4889. "require-dev": {
  4890. "mockery/mockery": "~0.9.1",
  4891. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4892. },
  4893. "suggest": {
  4894. "ext-intl": "Needed to support internationalized email addresses",
  4895. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4896. },
  4897. "type": "library",
  4898. "extra": {
  4899. "branch-alias": {
  4900. "dev-master": "6.2-dev"
  4901. }
  4902. },
  4903. "autoload": {
  4904. "files": [
  4905. "lib/swift_required.php"
  4906. ]
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Chris Corbyn"
  4915. },
  4916. {
  4917. "name": "Fabien Potencier",
  4918. "email": "fabien@symfony.com"
  4919. }
  4920. ],
  4921. "description": "Swiftmailer, free feature-rich PHP mailer",
  4922. "homepage": "https://swiftmailer.symfony.com",
  4923. "keywords": [
  4924. "email",
  4925. "mail",
  4926. "mailer"
  4927. ],
  4928. "time": "2019-11-12T09:31:26+00:00"
  4929. },
  4930. {
  4931. "name": "symfony/console",
  4932. "version": "v4.4.10",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://github.com/symfony/console.git",
  4936. "reference": "326b064d804043005526f5a0494cfb49edb59bb0"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://api.github.com/repos/symfony/console/zipball/326b064d804043005526f5a0494cfb49edb59bb0",
  4941. "reference": "326b064d804043005526f5a0494cfb49edb59bb0",
  4942. "shasum": "",
  4943. "mirrors": [
  4944. {
  4945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4946. "preferred": true
  4947. }
  4948. ]
  4949. },
  4950. "require": {
  4951. "php": ">=7.1.3",
  4952. "symfony/polyfill-mbstring": "~1.0",
  4953. "symfony/polyfill-php73": "^1.8",
  4954. "symfony/polyfill-php80": "^1.15",
  4955. "symfony/service-contracts": "^1.1|^2"
  4956. },
  4957. "conflict": {
  4958. "symfony/dependency-injection": "<3.4",
  4959. "symfony/event-dispatcher": "<4.3|>=5",
  4960. "symfony/lock": "<4.4",
  4961. "symfony/process": "<3.3"
  4962. },
  4963. "provide": {
  4964. "psr/log-implementation": "1.0"
  4965. },
  4966. "require-dev": {
  4967. "psr/log": "~1.0",
  4968. "symfony/config": "^3.4|^4.0|^5.0",
  4969. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  4970. "symfony/event-dispatcher": "^4.3",
  4971. "symfony/lock": "^4.4|^5.0",
  4972. "symfony/process": "^3.4|^4.0|^5.0",
  4973. "symfony/var-dumper": "^4.3|^5.0"
  4974. },
  4975. "suggest": {
  4976. "psr/log": "For using the console logger",
  4977. "symfony/event-dispatcher": "",
  4978. "symfony/lock": "",
  4979. "symfony/process": ""
  4980. },
  4981. "type": "library",
  4982. "extra": {
  4983. "branch-alias": {
  4984. "dev-master": "4.4-dev"
  4985. }
  4986. },
  4987. "autoload": {
  4988. "psr-4": {
  4989. "Symfony\\Component\\Console\\": ""
  4990. },
  4991. "exclude-from-classmap": [
  4992. "/Tests/"
  4993. ]
  4994. },
  4995. "notification-url": "https://packagist.org/downloads/",
  4996. "license": [
  4997. "MIT"
  4998. ],
  4999. "authors": [
  5000. {
  5001. "name": "Fabien Potencier",
  5002. "email": "fabien@symfony.com"
  5003. },
  5004. {
  5005. "name": "Symfony Community",
  5006. "homepage": "https://symfony.com/contributors"
  5007. }
  5008. ],
  5009. "description": "Symfony Console Component",
  5010. "homepage": "https://symfony.com",
  5011. "time": "2020-05-30T20:06:45+00:00"
  5012. },
  5013. {
  5014. "name": "symfony/css-selector",
  5015. "version": "v5.1.2",
  5016. "source": {
  5017. "type": "git",
  5018. "url": "https://github.com/symfony/css-selector.git",
  5019. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  5020. },
  5021. "dist": {
  5022. "type": "zip",
  5023. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  5024. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  5025. "shasum": "",
  5026. "mirrors": [
  5027. {
  5028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5029. "preferred": true
  5030. }
  5031. ]
  5032. },
  5033. "require": {
  5034. "php": ">=7.2.5"
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "branch-alias": {
  5039. "dev-master": "5.1-dev"
  5040. }
  5041. },
  5042. "autoload": {
  5043. "psr-4": {
  5044. "Symfony\\Component\\CssSelector\\": ""
  5045. },
  5046. "exclude-from-classmap": [
  5047. "/Tests/"
  5048. ]
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Fabien Potencier",
  5057. "email": "fabien@symfony.com"
  5058. },
  5059. {
  5060. "name": "Jean-François Simon",
  5061. "email": "jeanfrancois.simon@sensiolabs.com"
  5062. },
  5063. {
  5064. "name": "Symfony Community",
  5065. "homepage": "https://symfony.com/contributors"
  5066. }
  5067. ],
  5068. "description": "Symfony CssSelector Component",
  5069. "homepage": "https://symfony.com",
  5070. "time": "2020-05-20T17:43:50+00:00"
  5071. },
  5072. {
  5073. "name": "symfony/debug",
  5074. "version": "v4.4.10",
  5075. "source": {
  5076. "type": "git",
  5077. "url": "https://github.com/symfony/debug.git",
  5078. "reference": "28f92d08bb6d1fddf8158e02c194ad43870007e6"
  5079. },
  5080. "dist": {
  5081. "type": "zip",
  5082. "url": "https://api.github.com/repos/symfony/debug/zipball/28f92d08bb6d1fddf8158e02c194ad43870007e6",
  5083. "reference": "28f92d08bb6d1fddf8158e02c194ad43870007e6",
  5084. "shasum": "",
  5085. "mirrors": [
  5086. {
  5087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5088. "preferred": true
  5089. }
  5090. ]
  5091. },
  5092. "require": {
  5093. "php": ">=7.1.3",
  5094. "psr/log": "~1.0",
  5095. "symfony/polyfill-php80": "^1.15"
  5096. },
  5097. "conflict": {
  5098. "symfony/http-kernel": "<3.4"
  5099. },
  5100. "require-dev": {
  5101. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  5102. },
  5103. "type": "library",
  5104. "extra": {
  5105. "branch-alias": {
  5106. "dev-master": "4.4-dev"
  5107. }
  5108. },
  5109. "autoload": {
  5110. "psr-4": {
  5111. "Symfony\\Component\\Debug\\": ""
  5112. },
  5113. "exclude-from-classmap": [
  5114. "/Tests/"
  5115. ]
  5116. },
  5117. "notification-url": "https://packagist.org/downloads/",
  5118. "license": [
  5119. "MIT"
  5120. ],
  5121. "authors": [
  5122. {
  5123. "name": "Fabien Potencier",
  5124. "email": "fabien@symfony.com"
  5125. },
  5126. {
  5127. "name": "Symfony Community",
  5128. "homepage": "https://symfony.com/contributors"
  5129. }
  5130. ],
  5131. "description": "Symfony Debug Component",
  5132. "homepage": "https://symfony.com",
  5133. "time": "2020-05-24T08:33:35+00:00"
  5134. },
  5135. {
  5136. "name": "symfony/error-handler",
  5137. "version": "v4.4.10",
  5138. "source": {
  5139. "type": "git",
  5140. "url": "https://github.com/symfony/error-handler.git",
  5141. "reference": "0df9a23c0f9eddbb6682479fee6fd58b88add75b"
  5142. },
  5143. "dist": {
  5144. "type": "zip",
  5145. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0df9a23c0f9eddbb6682479fee6fd58b88add75b",
  5146. "reference": "0df9a23c0f9eddbb6682479fee6fd58b88add75b",
  5147. "shasum": "",
  5148. "mirrors": [
  5149. {
  5150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5151. "preferred": true
  5152. }
  5153. ]
  5154. },
  5155. "require": {
  5156. "php": ">=7.1.3",
  5157. "psr/log": "~1.0",
  5158. "symfony/debug": "^4.4.5",
  5159. "symfony/polyfill-php80": "^1.15",
  5160. "symfony/var-dumper": "^4.4|^5.0"
  5161. },
  5162. "require-dev": {
  5163. "symfony/http-kernel": "^4.4|^5.0",
  5164. "symfony/serializer": "^4.4|^5.0"
  5165. },
  5166. "type": "library",
  5167. "extra": {
  5168. "branch-alias": {
  5169. "dev-master": "4.4-dev"
  5170. }
  5171. },
  5172. "autoload": {
  5173. "psr-4": {
  5174. "Symfony\\Component\\ErrorHandler\\": ""
  5175. },
  5176. "exclude-from-classmap": [
  5177. "/Tests/"
  5178. ]
  5179. },
  5180. "notification-url": "https://packagist.org/downloads/",
  5181. "license": [
  5182. "MIT"
  5183. ],
  5184. "authors": [
  5185. {
  5186. "name": "Fabien Potencier",
  5187. "email": "fabien@symfony.com"
  5188. },
  5189. {
  5190. "name": "Symfony Community",
  5191. "homepage": "https://symfony.com/contributors"
  5192. }
  5193. ],
  5194. "description": "Symfony ErrorHandler Component",
  5195. "homepage": "https://symfony.com",
  5196. "time": "2020-05-28T10:39:14+00:00"
  5197. },
  5198. {
  5199. "name": "symfony/event-dispatcher",
  5200. "version": "v4.4.10",
  5201. "source": {
  5202. "type": "git",
  5203. "url": "https://github.com/symfony/event-dispatcher.git",
  5204. "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866"
  5205. },
  5206. "dist": {
  5207. "type": "zip",
  5208. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a5370aaa7807c7a439b21386661ffccf3dff2866",
  5209. "reference": "a5370aaa7807c7a439b21386661ffccf3dff2866",
  5210. "shasum": "",
  5211. "mirrors": [
  5212. {
  5213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5214. "preferred": true
  5215. }
  5216. ]
  5217. },
  5218. "require": {
  5219. "php": ">=7.1.3",
  5220. "symfony/event-dispatcher-contracts": "^1.1"
  5221. },
  5222. "conflict": {
  5223. "symfony/dependency-injection": "<3.4"
  5224. },
  5225. "provide": {
  5226. "psr/event-dispatcher-implementation": "1.0",
  5227. "symfony/event-dispatcher-implementation": "1.1"
  5228. },
  5229. "require-dev": {
  5230. "psr/log": "~1.0",
  5231. "symfony/config": "^3.4|^4.0|^5.0",
  5232. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5233. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5234. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5235. "symfony/service-contracts": "^1.1|^2",
  5236. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5237. },
  5238. "suggest": {
  5239. "symfony/dependency-injection": "",
  5240. "symfony/http-kernel": ""
  5241. },
  5242. "type": "library",
  5243. "extra": {
  5244. "branch-alias": {
  5245. "dev-master": "4.4-dev"
  5246. }
  5247. },
  5248. "autoload": {
  5249. "psr-4": {
  5250. "Symfony\\Component\\EventDispatcher\\": ""
  5251. },
  5252. "exclude-from-classmap": [
  5253. "/Tests/"
  5254. ]
  5255. },
  5256. "notification-url": "https://packagist.org/downloads/",
  5257. "license": [
  5258. "MIT"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Fabien Potencier",
  5263. "email": "fabien@symfony.com"
  5264. },
  5265. {
  5266. "name": "Symfony Community",
  5267. "homepage": "https://symfony.com/contributors"
  5268. }
  5269. ],
  5270. "description": "Symfony EventDispatcher Component",
  5271. "homepage": "https://symfony.com",
  5272. "time": "2020-05-20T08:37:50+00:00"
  5273. },
  5274. {
  5275. "name": "symfony/event-dispatcher-contracts",
  5276. "version": "v1.1.9",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5280. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5285. "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
  5286. "shasum": "",
  5287. "mirrors": [
  5288. {
  5289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5290. "preferred": true
  5291. }
  5292. ]
  5293. },
  5294. "require": {
  5295. "php": ">=7.1.3"
  5296. },
  5297. "suggest": {
  5298. "psr/event-dispatcher": "",
  5299. "symfony/event-dispatcher-implementation": ""
  5300. },
  5301. "type": "library",
  5302. "extra": {
  5303. "branch-alias": {
  5304. "dev-master": "1.1-dev"
  5305. },
  5306. "thanks": {
  5307. "name": "symfony/contracts",
  5308. "url": "https://github.com/symfony/contracts"
  5309. }
  5310. },
  5311. "autoload": {
  5312. "psr-4": {
  5313. "Symfony\\Contracts\\EventDispatcher\\": ""
  5314. }
  5315. },
  5316. "notification-url": "https://packagist.org/downloads/",
  5317. "license": [
  5318. "MIT"
  5319. ],
  5320. "authors": [
  5321. {
  5322. "name": "Nicolas Grekas",
  5323. "email": "p@tchwork.com"
  5324. },
  5325. {
  5326. "name": "Symfony Community",
  5327. "homepage": "https://symfony.com/contributors"
  5328. }
  5329. ],
  5330. "description": "Generic abstractions related to dispatching event",
  5331. "homepage": "https://symfony.com",
  5332. "keywords": [
  5333. "abstractions",
  5334. "contracts",
  5335. "decoupling",
  5336. "interfaces",
  5337. "interoperability",
  5338. "standards"
  5339. ],
  5340. "time": "2020-07-06T13:19:58+00:00"
  5341. },
  5342. {
  5343. "name": "symfony/filesystem",
  5344. "version": "v5.1.2",
  5345. "source": {
  5346. "type": "git",
  5347. "url": "https://github.com/symfony/filesystem.git",
  5348. "reference": "6e4320f06d5f2cce0d96530162491f4465179157"
  5349. },
  5350. "dist": {
  5351. "type": "zip",
  5352. "url": "https://api.github.com/repos/symfony/filesystem/zipball/6e4320f06d5f2cce0d96530162491f4465179157",
  5353. "reference": "6e4320f06d5f2cce0d96530162491f4465179157",
  5354. "shasum": "",
  5355. "mirrors": [
  5356. {
  5357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5358. "preferred": true
  5359. }
  5360. ]
  5361. },
  5362. "require": {
  5363. "php": ">=7.2.5",
  5364. "symfony/polyfill-ctype": "~1.8"
  5365. },
  5366. "type": "library",
  5367. "extra": {
  5368. "branch-alias": {
  5369. "dev-master": "5.1-dev"
  5370. }
  5371. },
  5372. "autoload": {
  5373. "psr-4": {
  5374. "Symfony\\Component\\Filesystem\\": ""
  5375. },
  5376. "exclude-from-classmap": [
  5377. "/Tests/"
  5378. ]
  5379. },
  5380. "notification-url": "https://packagist.org/downloads/",
  5381. "license": [
  5382. "MIT"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Fabien Potencier",
  5387. "email": "fabien@symfony.com"
  5388. },
  5389. {
  5390. "name": "Symfony Community",
  5391. "homepage": "https://symfony.com/contributors"
  5392. }
  5393. ],
  5394. "description": "Symfony Filesystem Component",
  5395. "homepage": "https://symfony.com",
  5396. "time": "2020-05-30T20:35:19+00:00"
  5397. },
  5398. {
  5399. "name": "symfony/finder",
  5400. "version": "v4.4.10",
  5401. "source": {
  5402. "type": "git",
  5403. "url": "https://github.com/symfony/finder.git",
  5404. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  5405. },
  5406. "dist": {
  5407. "type": "zip",
  5408. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  5409. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  5410. "shasum": "",
  5411. "mirrors": [
  5412. {
  5413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5414. "preferred": true
  5415. }
  5416. ]
  5417. },
  5418. "require": {
  5419. "php": "^7.1.3"
  5420. },
  5421. "type": "library",
  5422. "extra": {
  5423. "branch-alias": {
  5424. "dev-master": "4.4-dev"
  5425. }
  5426. },
  5427. "autoload": {
  5428. "psr-4": {
  5429. "Symfony\\Component\\Finder\\": ""
  5430. },
  5431. "exclude-from-classmap": [
  5432. "/Tests/"
  5433. ]
  5434. },
  5435. "notification-url": "https://packagist.org/downloads/",
  5436. "license": [
  5437. "MIT"
  5438. ],
  5439. "authors": [
  5440. {
  5441. "name": "Fabien Potencier",
  5442. "email": "fabien@symfony.com"
  5443. },
  5444. {
  5445. "name": "Symfony Community",
  5446. "homepage": "https://symfony.com/contributors"
  5447. }
  5448. ],
  5449. "description": "Symfony Finder Component",
  5450. "homepage": "https://symfony.com",
  5451. "time": "2020-03-27T16:54:36+00:00"
  5452. },
  5453. {
  5454. "name": "symfony/http-foundation",
  5455. "version": "v4.4.10",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/symfony/http-foundation.git",
  5459. "reference": "3adfbd7098c850b02d107330b7b9deacf2581578"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3adfbd7098c850b02d107330b7b9deacf2581578",
  5464. "reference": "3adfbd7098c850b02d107330b7b9deacf2581578",
  5465. "shasum": "",
  5466. "mirrors": [
  5467. {
  5468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5469. "preferred": true
  5470. }
  5471. ]
  5472. },
  5473. "require": {
  5474. "php": ">=7.1.3",
  5475. "symfony/mime": "^4.3|^5.0",
  5476. "symfony/polyfill-mbstring": "~1.1"
  5477. },
  5478. "require-dev": {
  5479. "predis/predis": "~1.0",
  5480. "symfony/expression-language": "^3.4|^4.0|^5.0"
  5481. },
  5482. "type": "library",
  5483. "extra": {
  5484. "branch-alias": {
  5485. "dev-master": "4.4-dev"
  5486. }
  5487. },
  5488. "autoload": {
  5489. "psr-4": {
  5490. "Symfony\\Component\\HttpFoundation\\": ""
  5491. },
  5492. "exclude-from-classmap": [
  5493. "/Tests/"
  5494. ]
  5495. },
  5496. "notification-url": "https://packagist.org/downloads/",
  5497. "license": [
  5498. "MIT"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Fabien Potencier",
  5503. "email": "fabien@symfony.com"
  5504. },
  5505. {
  5506. "name": "Symfony Community",
  5507. "homepage": "https://symfony.com/contributors"
  5508. }
  5509. ],
  5510. "description": "Symfony HttpFoundation Component",
  5511. "homepage": "https://symfony.com",
  5512. "time": "2020-05-23T09:11:46+00:00"
  5513. },
  5514. {
  5515. "name": "symfony/http-kernel",
  5516. "version": "v4.4.10",
  5517. "source": {
  5518. "type": "git",
  5519. "url": "https://github.com/symfony/http-kernel.git",
  5520. "reference": "81d42148474e1852a333ed7a732f2a014af75430"
  5521. },
  5522. "dist": {
  5523. "type": "zip",
  5524. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/81d42148474e1852a333ed7a732f2a014af75430",
  5525. "reference": "81d42148474e1852a333ed7a732f2a014af75430",
  5526. "shasum": "",
  5527. "mirrors": [
  5528. {
  5529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5530. "preferred": true
  5531. }
  5532. ]
  5533. },
  5534. "require": {
  5535. "php": ">=7.1.3",
  5536. "psr/log": "~1.0",
  5537. "symfony/error-handler": "^4.4",
  5538. "symfony/event-dispatcher": "^4.4",
  5539. "symfony/http-foundation": "^4.4|^5.0",
  5540. "symfony/polyfill-ctype": "^1.8",
  5541. "symfony/polyfill-php73": "^1.9",
  5542. "symfony/polyfill-php80": "^1.15"
  5543. },
  5544. "conflict": {
  5545. "symfony/browser-kit": "<4.3",
  5546. "symfony/config": "<3.4",
  5547. "symfony/console": ">=5",
  5548. "symfony/dependency-injection": "<4.3",
  5549. "symfony/translation": "<4.2",
  5550. "twig/twig": "<1.34|<2.4,>=2"
  5551. },
  5552. "provide": {
  5553. "psr/log-implementation": "1.0"
  5554. },
  5555. "require-dev": {
  5556. "psr/cache": "~1.0",
  5557. "symfony/browser-kit": "^4.3|^5.0",
  5558. "symfony/config": "^3.4|^4.0|^5.0",
  5559. "symfony/console": "^3.4|^4.0",
  5560. "symfony/css-selector": "^3.4|^4.0|^5.0",
  5561. "symfony/dependency-injection": "^4.3|^5.0",
  5562. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  5563. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5564. "symfony/finder": "^3.4|^4.0|^5.0",
  5565. "symfony/process": "^3.4|^4.0|^5.0",
  5566. "symfony/routing": "^3.4|^4.0|^5.0",
  5567. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  5568. "symfony/templating": "^3.4|^4.0|^5.0",
  5569. "symfony/translation": "^4.2|^5.0",
  5570. "symfony/translation-contracts": "^1.1|^2",
  5571. "twig/twig": "^1.34|^2.4|^3.0"
  5572. },
  5573. "suggest": {
  5574. "symfony/browser-kit": "",
  5575. "symfony/config": "",
  5576. "symfony/console": "",
  5577. "symfony/dependency-injection": ""
  5578. },
  5579. "type": "library",
  5580. "extra": {
  5581. "branch-alias": {
  5582. "dev-master": "4.4-dev"
  5583. }
  5584. },
  5585. "autoload": {
  5586. "psr-4": {
  5587. "Symfony\\Component\\HttpKernel\\": ""
  5588. },
  5589. "exclude-from-classmap": [
  5590. "/Tests/"
  5591. ]
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Fabien Potencier",
  5600. "email": "fabien@symfony.com"
  5601. },
  5602. {
  5603. "name": "Symfony Community",
  5604. "homepage": "https://symfony.com/contributors"
  5605. }
  5606. ],
  5607. "description": "Symfony HttpKernel Component",
  5608. "homepage": "https://symfony.com",
  5609. "time": "2020-06-12T11:15:37+00:00"
  5610. },
  5611. {
  5612. "name": "symfony/mime",
  5613. "version": "v5.1.2",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/symfony/mime.git",
  5617. "reference": "c0c418f05e727606e85b482a8591519c4712cf45"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/symfony/mime/zipball/c0c418f05e727606e85b482a8591519c4712cf45",
  5622. "reference": "c0c418f05e727606e85b482a8591519c4712cf45",
  5623. "shasum": "",
  5624. "mirrors": [
  5625. {
  5626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5627. "preferred": true
  5628. }
  5629. ]
  5630. },
  5631. "require": {
  5632. "php": ">=7.2.5",
  5633. "symfony/polyfill-intl-idn": "^1.10",
  5634. "symfony/polyfill-mbstring": "^1.0",
  5635. "symfony/polyfill-php80": "^1.15"
  5636. },
  5637. "conflict": {
  5638. "symfony/mailer": "<4.4"
  5639. },
  5640. "require-dev": {
  5641. "egulias/email-validator": "^2.1.10",
  5642. "symfony/dependency-injection": "^4.4|^5.0"
  5643. },
  5644. "type": "library",
  5645. "extra": {
  5646. "branch-alias": {
  5647. "dev-master": "5.1-dev"
  5648. }
  5649. },
  5650. "autoload": {
  5651. "psr-4": {
  5652. "Symfony\\Component\\Mime\\": ""
  5653. },
  5654. "exclude-from-classmap": [
  5655. "/Tests/"
  5656. ]
  5657. },
  5658. "notification-url": "https://packagist.org/downloads/",
  5659. "license": [
  5660. "MIT"
  5661. ],
  5662. "authors": [
  5663. {
  5664. "name": "Fabien Potencier",
  5665. "email": "fabien@symfony.com"
  5666. },
  5667. {
  5668. "name": "Symfony Community",
  5669. "homepage": "https://symfony.com/contributors"
  5670. }
  5671. ],
  5672. "description": "A library to manipulate MIME messages",
  5673. "homepage": "https://symfony.com",
  5674. "keywords": [
  5675. "mime",
  5676. "mime-type"
  5677. ],
  5678. "time": "2020-06-09T15:07:35+00:00"
  5679. },
  5680. {
  5681. "name": "symfony/polyfill-ctype",
  5682. "version": "v1.18.0",
  5683. "source": {
  5684. "type": "git",
  5685. "url": "https://github.com/symfony/polyfill-ctype.git",
  5686. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  5687. },
  5688. "dist": {
  5689. "type": "zip",
  5690. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  5691. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  5692. "shasum": "",
  5693. "mirrors": [
  5694. {
  5695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5696. "preferred": true
  5697. }
  5698. ]
  5699. },
  5700. "require": {
  5701. "php": ">=5.3.3"
  5702. },
  5703. "suggest": {
  5704. "ext-ctype": "For best performance"
  5705. },
  5706. "type": "library",
  5707. "extra": {
  5708. "branch-alias": {
  5709. "dev-master": "1.18-dev"
  5710. },
  5711. "thanks": {
  5712. "name": "symfony/polyfill",
  5713. "url": "https://github.com/symfony/polyfill"
  5714. }
  5715. },
  5716. "autoload": {
  5717. "psr-4": {
  5718. "Symfony\\Polyfill\\Ctype\\": ""
  5719. },
  5720. "files": [
  5721. "bootstrap.php"
  5722. ]
  5723. },
  5724. "notification-url": "https://packagist.org/downloads/",
  5725. "license": [
  5726. "MIT"
  5727. ],
  5728. "authors": [
  5729. {
  5730. "name": "Gert de Pagter",
  5731. "email": "BackEndTea@gmail.com"
  5732. },
  5733. {
  5734. "name": "Symfony Community",
  5735. "homepage": "https://symfony.com/contributors"
  5736. }
  5737. ],
  5738. "description": "Symfony polyfill for ctype functions",
  5739. "homepage": "https://symfony.com",
  5740. "keywords": [
  5741. "compatibility",
  5742. "ctype",
  5743. "polyfill",
  5744. "portable"
  5745. ],
  5746. "time": "2020-07-14T12:35:20+00:00"
  5747. },
  5748. {
  5749. "name": "symfony/polyfill-iconv",
  5750. "version": "v1.18.0",
  5751. "source": {
  5752. "type": "git",
  5753. "url": "https://github.com/symfony/polyfill-iconv.git",
  5754. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  5755. },
  5756. "dist": {
  5757. "type": "zip",
  5758. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  5759. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  5760. "shasum": "",
  5761. "mirrors": [
  5762. {
  5763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5764. "preferred": true
  5765. }
  5766. ]
  5767. },
  5768. "require": {
  5769. "php": ">=5.3.3"
  5770. },
  5771. "suggest": {
  5772. "ext-iconv": "For best performance"
  5773. },
  5774. "type": "library",
  5775. "extra": {
  5776. "branch-alias": {
  5777. "dev-master": "1.18-dev"
  5778. },
  5779. "thanks": {
  5780. "name": "symfony/polyfill",
  5781. "url": "https://github.com/symfony/polyfill"
  5782. }
  5783. },
  5784. "autoload": {
  5785. "psr-4": {
  5786. "Symfony\\Polyfill\\Iconv\\": ""
  5787. },
  5788. "files": [
  5789. "bootstrap.php"
  5790. ]
  5791. },
  5792. "notification-url": "https://packagist.org/downloads/",
  5793. "license": [
  5794. "MIT"
  5795. ],
  5796. "authors": [
  5797. {
  5798. "name": "Nicolas Grekas",
  5799. "email": "p@tchwork.com"
  5800. },
  5801. {
  5802. "name": "Symfony Community",
  5803. "homepage": "https://symfony.com/contributors"
  5804. }
  5805. ],
  5806. "description": "Symfony polyfill for the Iconv extension",
  5807. "homepage": "https://symfony.com",
  5808. "keywords": [
  5809. "compatibility",
  5810. "iconv",
  5811. "polyfill",
  5812. "portable",
  5813. "shim"
  5814. ],
  5815. "time": "2020-07-14T12:35:20+00:00"
  5816. },
  5817. {
  5818. "name": "symfony/polyfill-intl-idn",
  5819. "version": "v1.18.0",
  5820. "source": {
  5821. "type": "git",
  5822. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5823. "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe"
  5824. },
  5825. "dist": {
  5826. "type": "zip",
  5827. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/bc6549d068d0160e0f10f7a5a23c7d1406b95ebe",
  5828. "reference": "bc6549d068d0160e0f10f7a5a23c7d1406b95ebe",
  5829. "shasum": "",
  5830. "mirrors": [
  5831. {
  5832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5833. "preferred": true
  5834. }
  5835. ]
  5836. },
  5837. "require": {
  5838. "php": ">=5.3.3",
  5839. "symfony/polyfill-intl-normalizer": "^1.10",
  5840. "symfony/polyfill-php70": "^1.10",
  5841. "symfony/polyfill-php72": "^1.10"
  5842. },
  5843. "suggest": {
  5844. "ext-intl": "For best performance"
  5845. },
  5846. "type": "library",
  5847. "extra": {
  5848. "branch-alias": {
  5849. "dev-master": "1.18-dev"
  5850. },
  5851. "thanks": {
  5852. "name": "symfony/polyfill",
  5853. "url": "https://github.com/symfony/polyfill"
  5854. }
  5855. },
  5856. "autoload": {
  5857. "psr-4": {
  5858. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5859. },
  5860. "files": [
  5861. "bootstrap.php"
  5862. ]
  5863. },
  5864. "notification-url": "https://packagist.org/downloads/",
  5865. "license": [
  5866. "MIT"
  5867. ],
  5868. "authors": [
  5869. {
  5870. "name": "Laurent Bassin",
  5871. "email": "laurent@bassin.info"
  5872. },
  5873. {
  5874. "name": "Trevor Rowbotham",
  5875. "email": "trevor.rowbotham@pm.me"
  5876. },
  5877. {
  5878. "name": "Symfony Community",
  5879. "homepage": "https://symfony.com/contributors"
  5880. }
  5881. ],
  5882. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5883. "homepage": "https://symfony.com",
  5884. "keywords": [
  5885. "compatibility",
  5886. "idn",
  5887. "intl",
  5888. "polyfill",
  5889. "portable",
  5890. "shim"
  5891. ],
  5892. "time": "2020-07-14T12:35:20+00:00"
  5893. },
  5894. {
  5895. "name": "symfony/polyfill-intl-normalizer",
  5896. "version": "v1.18.0",
  5897. "source": {
  5898. "type": "git",
  5899. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5900. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  5901. },
  5902. "dist": {
  5903. "type": "zip",
  5904. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5905. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5906. "shasum": "",
  5907. "mirrors": [
  5908. {
  5909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5910. "preferred": true
  5911. }
  5912. ]
  5913. },
  5914. "require": {
  5915. "php": ">=5.3.3"
  5916. },
  5917. "suggest": {
  5918. "ext-intl": "For best performance"
  5919. },
  5920. "type": "library",
  5921. "extra": {
  5922. "branch-alias": {
  5923. "dev-master": "1.18-dev"
  5924. },
  5925. "thanks": {
  5926. "name": "symfony/polyfill",
  5927. "url": "https://github.com/symfony/polyfill"
  5928. }
  5929. },
  5930. "autoload": {
  5931. "psr-4": {
  5932. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5933. },
  5934. "files": [
  5935. "bootstrap.php"
  5936. ],
  5937. "classmap": [
  5938. "Resources/stubs"
  5939. ]
  5940. },
  5941. "notification-url": "https://packagist.org/downloads/",
  5942. "license": [
  5943. "MIT"
  5944. ],
  5945. "authors": [
  5946. {
  5947. "name": "Nicolas Grekas",
  5948. "email": "p@tchwork.com"
  5949. },
  5950. {
  5951. "name": "Symfony Community",
  5952. "homepage": "https://symfony.com/contributors"
  5953. }
  5954. ],
  5955. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5956. "homepage": "https://symfony.com",
  5957. "keywords": [
  5958. "compatibility",
  5959. "intl",
  5960. "normalizer",
  5961. "polyfill",
  5962. "portable",
  5963. "shim"
  5964. ],
  5965. "time": "2020-07-14T12:35:20+00:00"
  5966. },
  5967. {
  5968. "name": "symfony/polyfill-mbstring",
  5969. "version": "v1.18.0",
  5970. "source": {
  5971. "type": "git",
  5972. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5973. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  5974. },
  5975. "dist": {
  5976. "type": "zip",
  5977. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5978. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5979. "shasum": "",
  5980. "mirrors": [
  5981. {
  5982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5983. "preferred": true
  5984. }
  5985. ]
  5986. },
  5987. "require": {
  5988. "php": ">=5.3.3"
  5989. },
  5990. "suggest": {
  5991. "ext-mbstring": "For best performance"
  5992. },
  5993. "type": "library",
  5994. "extra": {
  5995. "branch-alias": {
  5996. "dev-master": "1.18-dev"
  5997. },
  5998. "thanks": {
  5999. "name": "symfony/polyfill",
  6000. "url": "https://github.com/symfony/polyfill"
  6001. }
  6002. },
  6003. "autoload": {
  6004. "psr-4": {
  6005. "Symfony\\Polyfill\\Mbstring\\": ""
  6006. },
  6007. "files": [
  6008. "bootstrap.php"
  6009. ]
  6010. },
  6011. "notification-url": "https://packagist.org/downloads/",
  6012. "license": [
  6013. "MIT"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "Nicolas Grekas",
  6018. "email": "p@tchwork.com"
  6019. },
  6020. {
  6021. "name": "Symfony Community",
  6022. "homepage": "https://symfony.com/contributors"
  6023. }
  6024. ],
  6025. "description": "Symfony polyfill for the Mbstring extension",
  6026. "homepage": "https://symfony.com",
  6027. "keywords": [
  6028. "compatibility",
  6029. "mbstring",
  6030. "polyfill",
  6031. "portable",
  6032. "shim"
  6033. ],
  6034. "time": "2020-07-14T12:35:20+00:00"
  6035. },
  6036. {
  6037. "name": "symfony/polyfill-php70",
  6038. "version": "v1.18.0",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://github.com/symfony/polyfill-php70.git",
  6042. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  6043. },
  6044. "dist": {
  6045. "type": "zip",
  6046. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  6047. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  6048. "shasum": "",
  6049. "mirrors": [
  6050. {
  6051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6052. "preferred": true
  6053. }
  6054. ]
  6055. },
  6056. "require": {
  6057. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  6058. "php": ">=5.3.3"
  6059. },
  6060. "type": "library",
  6061. "extra": {
  6062. "branch-alias": {
  6063. "dev-master": "1.18-dev"
  6064. },
  6065. "thanks": {
  6066. "name": "symfony/polyfill",
  6067. "url": "https://github.com/symfony/polyfill"
  6068. }
  6069. },
  6070. "autoload": {
  6071. "psr-4": {
  6072. "Symfony\\Polyfill\\Php70\\": ""
  6073. },
  6074. "files": [
  6075. "bootstrap.php"
  6076. ],
  6077. "classmap": [
  6078. "Resources/stubs"
  6079. ]
  6080. },
  6081. "notification-url": "https://packagist.org/downloads/",
  6082. "license": [
  6083. "MIT"
  6084. ],
  6085. "authors": [
  6086. {
  6087. "name": "Nicolas Grekas",
  6088. "email": "p@tchwork.com"
  6089. },
  6090. {
  6091. "name": "Symfony Community",
  6092. "homepage": "https://symfony.com/contributors"
  6093. }
  6094. ],
  6095. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  6096. "homepage": "https://symfony.com",
  6097. "keywords": [
  6098. "compatibility",
  6099. "polyfill",
  6100. "portable",
  6101. "shim"
  6102. ],
  6103. "time": "2020-07-14T12:35:20+00:00"
  6104. },
  6105. {
  6106. "name": "symfony/polyfill-php72",
  6107. "version": "v1.18.0",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://github.com/symfony/polyfill-php72.git",
  6111. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  6116. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  6117. "shasum": "",
  6118. "mirrors": [
  6119. {
  6120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6121. "preferred": true
  6122. }
  6123. ]
  6124. },
  6125. "require": {
  6126. "php": ">=5.3.3"
  6127. },
  6128. "type": "library",
  6129. "extra": {
  6130. "branch-alias": {
  6131. "dev-master": "1.18-dev"
  6132. },
  6133. "thanks": {
  6134. "name": "symfony/polyfill",
  6135. "url": "https://github.com/symfony/polyfill"
  6136. }
  6137. },
  6138. "autoload": {
  6139. "psr-4": {
  6140. "Symfony\\Polyfill\\Php72\\": ""
  6141. },
  6142. "files": [
  6143. "bootstrap.php"
  6144. ]
  6145. },
  6146. "notification-url": "https://packagist.org/downloads/",
  6147. "license": [
  6148. "MIT"
  6149. ],
  6150. "authors": [
  6151. {
  6152. "name": "Nicolas Grekas",
  6153. "email": "p@tchwork.com"
  6154. },
  6155. {
  6156. "name": "Symfony Community",
  6157. "homepage": "https://symfony.com/contributors"
  6158. }
  6159. ],
  6160. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6161. "homepage": "https://symfony.com",
  6162. "keywords": [
  6163. "compatibility",
  6164. "polyfill",
  6165. "portable",
  6166. "shim"
  6167. ],
  6168. "time": "2020-07-14T12:35:20+00:00"
  6169. },
  6170. {
  6171. "name": "symfony/polyfill-php73",
  6172. "version": "v1.18.0",
  6173. "source": {
  6174. "type": "git",
  6175. "url": "https://github.com/symfony/polyfill-php73.git",
  6176. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  6177. },
  6178. "dist": {
  6179. "type": "zip",
  6180. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  6181. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  6182. "shasum": "",
  6183. "mirrors": [
  6184. {
  6185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6186. "preferred": true
  6187. }
  6188. ]
  6189. },
  6190. "require": {
  6191. "php": ">=5.3.3"
  6192. },
  6193. "type": "library",
  6194. "extra": {
  6195. "branch-alias": {
  6196. "dev-master": "1.18-dev"
  6197. },
  6198. "thanks": {
  6199. "name": "symfony/polyfill",
  6200. "url": "https://github.com/symfony/polyfill"
  6201. }
  6202. },
  6203. "autoload": {
  6204. "psr-4": {
  6205. "Symfony\\Polyfill\\Php73\\": ""
  6206. },
  6207. "files": [
  6208. "bootstrap.php"
  6209. ],
  6210. "classmap": [
  6211. "Resources/stubs"
  6212. ]
  6213. },
  6214. "notification-url": "https://packagist.org/downloads/",
  6215. "license": [
  6216. "MIT"
  6217. ],
  6218. "authors": [
  6219. {
  6220. "name": "Nicolas Grekas",
  6221. "email": "p@tchwork.com"
  6222. },
  6223. {
  6224. "name": "Symfony Community",
  6225. "homepage": "https://symfony.com/contributors"
  6226. }
  6227. ],
  6228. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6229. "homepage": "https://symfony.com",
  6230. "keywords": [
  6231. "compatibility",
  6232. "polyfill",
  6233. "portable",
  6234. "shim"
  6235. ],
  6236. "time": "2020-07-14T12:35:20+00:00"
  6237. },
  6238. {
  6239. "name": "symfony/polyfill-php80",
  6240. "version": "v1.18.0",
  6241. "source": {
  6242. "type": "git",
  6243. "url": "https://github.com/symfony/polyfill-php80.git",
  6244. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  6245. },
  6246. "dist": {
  6247. "type": "zip",
  6248. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  6249. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  6250. "shasum": "",
  6251. "mirrors": [
  6252. {
  6253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6254. "preferred": true
  6255. }
  6256. ]
  6257. },
  6258. "require": {
  6259. "php": ">=7.0.8"
  6260. },
  6261. "type": "library",
  6262. "extra": {
  6263. "branch-alias": {
  6264. "dev-master": "1.18-dev"
  6265. },
  6266. "thanks": {
  6267. "name": "symfony/polyfill",
  6268. "url": "https://github.com/symfony/polyfill"
  6269. }
  6270. },
  6271. "autoload": {
  6272. "psr-4": {
  6273. "Symfony\\Polyfill\\Php80\\": ""
  6274. },
  6275. "files": [
  6276. "bootstrap.php"
  6277. ],
  6278. "classmap": [
  6279. "Resources/stubs"
  6280. ]
  6281. },
  6282. "notification-url": "https://packagist.org/downloads/",
  6283. "license": [
  6284. "MIT"
  6285. ],
  6286. "authors": [
  6287. {
  6288. "name": "Ion Bazan",
  6289. "email": "ion.bazan@gmail.com"
  6290. },
  6291. {
  6292. "name": "Nicolas Grekas",
  6293. "email": "p@tchwork.com"
  6294. },
  6295. {
  6296. "name": "Symfony Community",
  6297. "homepage": "https://symfony.com/contributors"
  6298. }
  6299. ],
  6300. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6301. "homepage": "https://symfony.com",
  6302. "keywords": [
  6303. "compatibility",
  6304. "polyfill",
  6305. "portable",
  6306. "shim"
  6307. ],
  6308. "time": "2020-07-14T12:35:20+00:00"
  6309. },
  6310. {
  6311. "name": "symfony/process",
  6312. "version": "v4.4.10",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://github.com/symfony/process.git",
  6316. "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5"
  6317. },
  6318. "dist": {
  6319. "type": "zip",
  6320. "url": "https://api.github.com/repos/symfony/process/zipball/c714958428a85c86ab97e3a0c96db4c4f381b7f5",
  6321. "reference": "c714958428a85c86ab97e3a0c96db4c4f381b7f5",
  6322. "shasum": "",
  6323. "mirrors": [
  6324. {
  6325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6326. "preferred": true
  6327. }
  6328. ]
  6329. },
  6330. "require": {
  6331. "php": "^7.1.3"
  6332. },
  6333. "type": "library",
  6334. "extra": {
  6335. "branch-alias": {
  6336. "dev-master": "4.4-dev"
  6337. }
  6338. },
  6339. "autoload": {
  6340. "psr-4": {
  6341. "Symfony\\Component\\Process\\": ""
  6342. },
  6343. "exclude-from-classmap": [
  6344. "/Tests/"
  6345. ]
  6346. },
  6347. "notification-url": "https://packagist.org/downloads/",
  6348. "license": [
  6349. "MIT"
  6350. ],
  6351. "authors": [
  6352. {
  6353. "name": "Fabien Potencier",
  6354. "email": "fabien@symfony.com"
  6355. },
  6356. {
  6357. "name": "Symfony Community",
  6358. "homepage": "https://symfony.com/contributors"
  6359. }
  6360. ],
  6361. "description": "Symfony Process Component",
  6362. "homepage": "https://symfony.com",
  6363. "time": "2020-05-30T20:06:45+00:00"
  6364. },
  6365. {
  6366. "name": "symfony/routing",
  6367. "version": "v4.4.10",
  6368. "source": {
  6369. "type": "git",
  6370. "url": "https://github.com/symfony/routing.git",
  6371. "reference": "0f557911dde75c2a9652b8097bd7c9f54507f646"
  6372. },
  6373. "dist": {
  6374. "type": "zip",
  6375. "url": "https://api.github.com/repos/symfony/routing/zipball/0f557911dde75c2a9652b8097bd7c9f54507f646",
  6376. "reference": "0f557911dde75c2a9652b8097bd7c9f54507f646",
  6377. "shasum": "",
  6378. "mirrors": [
  6379. {
  6380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6381. "preferred": true
  6382. }
  6383. ]
  6384. },
  6385. "require": {
  6386. "php": "^7.1.3"
  6387. },
  6388. "conflict": {
  6389. "symfony/config": "<4.2",
  6390. "symfony/dependency-injection": "<3.4",
  6391. "symfony/yaml": "<3.4"
  6392. },
  6393. "require-dev": {
  6394. "doctrine/annotations": "~1.2",
  6395. "psr/log": "~1.0",
  6396. "symfony/config": "^4.2|^5.0",
  6397. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6398. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6399. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  6400. "symfony/yaml": "^3.4|^4.0|^5.0"
  6401. },
  6402. "suggest": {
  6403. "doctrine/annotations": "For using the annotation loader",
  6404. "symfony/config": "For using the all-in-one router or any loader",
  6405. "symfony/expression-language": "For using expression matching",
  6406. "symfony/http-foundation": "For using a Symfony Request object",
  6407. "symfony/yaml": "For using the YAML loader"
  6408. },
  6409. "type": "library",
  6410. "extra": {
  6411. "branch-alias": {
  6412. "dev-master": "4.4-dev"
  6413. }
  6414. },
  6415. "autoload": {
  6416. "psr-4": {
  6417. "Symfony\\Component\\Routing\\": ""
  6418. },
  6419. "exclude-from-classmap": [
  6420. "/Tests/"
  6421. ]
  6422. },
  6423. "notification-url": "https://packagist.org/downloads/",
  6424. "license": [
  6425. "MIT"
  6426. ],
  6427. "authors": [
  6428. {
  6429. "name": "Fabien Potencier",
  6430. "email": "fabien@symfony.com"
  6431. },
  6432. {
  6433. "name": "Symfony Community",
  6434. "homepage": "https://symfony.com/contributors"
  6435. }
  6436. ],
  6437. "description": "Symfony Routing Component",
  6438. "homepage": "https://symfony.com",
  6439. "keywords": [
  6440. "router",
  6441. "routing",
  6442. "uri",
  6443. "url"
  6444. ],
  6445. "time": "2020-05-30T20:07:26+00:00"
  6446. },
  6447. {
  6448. "name": "symfony/service-contracts",
  6449. "version": "v2.1.3",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/symfony/service-contracts.git",
  6453. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442",
  6458. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442",
  6459. "shasum": "",
  6460. "mirrors": [
  6461. {
  6462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6463. "preferred": true
  6464. }
  6465. ]
  6466. },
  6467. "require": {
  6468. "php": ">=7.2.5",
  6469. "psr/container": "^1.0"
  6470. },
  6471. "suggest": {
  6472. "symfony/service-implementation": ""
  6473. },
  6474. "type": "library",
  6475. "extra": {
  6476. "branch-alias": {
  6477. "dev-master": "2.1-dev"
  6478. },
  6479. "thanks": {
  6480. "name": "symfony/contracts",
  6481. "url": "https://github.com/symfony/contracts"
  6482. }
  6483. },
  6484. "autoload": {
  6485. "psr-4": {
  6486. "Symfony\\Contracts\\Service\\": ""
  6487. }
  6488. },
  6489. "notification-url": "https://packagist.org/downloads/",
  6490. "license": [
  6491. "MIT"
  6492. ],
  6493. "authors": [
  6494. {
  6495. "name": "Nicolas Grekas",
  6496. "email": "p@tchwork.com"
  6497. },
  6498. {
  6499. "name": "Symfony Community",
  6500. "homepage": "https://symfony.com/contributors"
  6501. }
  6502. ],
  6503. "description": "Generic abstractions related to writing services",
  6504. "homepage": "https://symfony.com",
  6505. "keywords": [
  6506. "abstractions",
  6507. "contracts",
  6508. "decoupling",
  6509. "interfaces",
  6510. "interoperability",
  6511. "standards"
  6512. ],
  6513. "time": "2020-07-06T13:23:11+00:00"
  6514. },
  6515. {
  6516. "name": "symfony/translation",
  6517. "version": "v4.4.10",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://github.com/symfony/translation.git",
  6521. "reference": "79d3ef9096a6a6047dbc69218b68c7b7f63193af"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://api.github.com/repos/symfony/translation/zipball/79d3ef9096a6a6047dbc69218b68c7b7f63193af",
  6526. "reference": "79d3ef9096a6a6047dbc69218b68c7b7f63193af",
  6527. "shasum": "",
  6528. "mirrors": [
  6529. {
  6530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6531. "preferred": true
  6532. }
  6533. ]
  6534. },
  6535. "require": {
  6536. "php": ">=7.1.3",
  6537. "symfony/polyfill-mbstring": "~1.0",
  6538. "symfony/translation-contracts": "^1.1.6|^2"
  6539. },
  6540. "conflict": {
  6541. "symfony/config": "<3.4",
  6542. "symfony/dependency-injection": "<3.4",
  6543. "symfony/http-kernel": "<4.4",
  6544. "symfony/yaml": "<3.4"
  6545. },
  6546. "provide": {
  6547. "symfony/translation-implementation": "1.0"
  6548. },
  6549. "require-dev": {
  6550. "psr/log": "~1.0",
  6551. "symfony/config": "^3.4|^4.0|^5.0",
  6552. "symfony/console": "^3.4|^4.0|^5.0",
  6553. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6554. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  6555. "symfony/http-kernel": "^4.4",
  6556. "symfony/intl": "^3.4|^4.0|^5.0",
  6557. "symfony/service-contracts": "^1.1.2|^2",
  6558. "symfony/yaml": "^3.4|^4.0|^5.0"
  6559. },
  6560. "suggest": {
  6561. "psr/log-implementation": "To use logging capability in translator",
  6562. "symfony/config": "",
  6563. "symfony/yaml": ""
  6564. },
  6565. "type": "library",
  6566. "extra": {
  6567. "branch-alias": {
  6568. "dev-master": "4.4-dev"
  6569. }
  6570. },
  6571. "autoload": {
  6572. "psr-4": {
  6573. "Symfony\\Component\\Translation\\": ""
  6574. },
  6575. "exclude-from-classmap": [
  6576. "/Tests/"
  6577. ]
  6578. },
  6579. "notification-url": "https://packagist.org/downloads/",
  6580. "license": [
  6581. "MIT"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "Fabien Potencier",
  6586. "email": "fabien@symfony.com"
  6587. },
  6588. {
  6589. "name": "Symfony Community",
  6590. "homepage": "https://symfony.com/contributors"
  6591. }
  6592. ],
  6593. "description": "Symfony Translation Component",
  6594. "homepage": "https://symfony.com",
  6595. "time": "2020-05-30T20:06:45+00:00"
  6596. },
  6597. {
  6598. "name": "symfony/translation-contracts",
  6599. "version": "v2.1.3",
  6600. "source": {
  6601. "type": "git",
  6602. "url": "https://github.com/symfony/translation-contracts.git",
  6603. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63"
  6604. },
  6605. "dist": {
  6606. "type": "zip",
  6607. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63",
  6608. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63",
  6609. "shasum": "",
  6610. "mirrors": [
  6611. {
  6612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6613. "preferred": true
  6614. }
  6615. ]
  6616. },
  6617. "require": {
  6618. "php": ">=7.2.5"
  6619. },
  6620. "suggest": {
  6621. "symfony/translation-implementation": ""
  6622. },
  6623. "type": "library",
  6624. "extra": {
  6625. "branch-alias": {
  6626. "dev-master": "2.1-dev"
  6627. },
  6628. "thanks": {
  6629. "name": "symfony/contracts",
  6630. "url": "https://github.com/symfony/contracts"
  6631. }
  6632. },
  6633. "autoload": {
  6634. "psr-4": {
  6635. "Symfony\\Contracts\\Translation\\": ""
  6636. }
  6637. },
  6638. "notification-url": "https://packagist.org/downloads/",
  6639. "license": [
  6640. "MIT"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "Nicolas Grekas",
  6645. "email": "p@tchwork.com"
  6646. },
  6647. {
  6648. "name": "Symfony Community",
  6649. "homepage": "https://symfony.com/contributors"
  6650. }
  6651. ],
  6652. "description": "Generic abstractions related to translation",
  6653. "homepage": "https://symfony.com",
  6654. "keywords": [
  6655. "abstractions",
  6656. "contracts",
  6657. "decoupling",
  6658. "interfaces",
  6659. "interoperability",
  6660. "standards"
  6661. ],
  6662. "time": "2020-07-06T13:23:11+00:00"
  6663. },
  6664. {
  6665. "name": "symfony/var-dumper",
  6666. "version": "v4.4.10",
  6667. "source": {
  6668. "type": "git",
  6669. "url": "https://github.com/symfony/var-dumper.git",
  6670. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac"
  6671. },
  6672. "dist": {
  6673. "type": "zip",
  6674. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  6675. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  6676. "shasum": "",
  6677. "mirrors": [
  6678. {
  6679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6680. "preferred": true
  6681. }
  6682. ]
  6683. },
  6684. "require": {
  6685. "php": ">=7.1.3",
  6686. "symfony/polyfill-mbstring": "~1.0",
  6687. "symfony/polyfill-php72": "~1.5",
  6688. "symfony/polyfill-php80": "^1.15"
  6689. },
  6690. "conflict": {
  6691. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6692. "symfony/console": "<3.4"
  6693. },
  6694. "require-dev": {
  6695. "ext-iconv": "*",
  6696. "symfony/console": "^3.4|^4.0|^5.0",
  6697. "symfony/process": "^4.4|^5.0",
  6698. "twig/twig": "^1.34|^2.4|^3.0"
  6699. },
  6700. "suggest": {
  6701. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6702. "ext-intl": "To show region name in time zone dump",
  6703. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6704. },
  6705. "bin": [
  6706. "Resources/bin/var-dump-server"
  6707. ],
  6708. "type": "library",
  6709. "extra": {
  6710. "branch-alias": {
  6711. "dev-master": "4.4-dev"
  6712. }
  6713. },
  6714. "autoload": {
  6715. "files": [
  6716. "Resources/functions/dump.php"
  6717. ],
  6718. "psr-4": {
  6719. "Symfony\\Component\\VarDumper\\": ""
  6720. },
  6721. "exclude-from-classmap": [
  6722. "/Tests/"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Nicolas Grekas",
  6732. "email": "p@tchwork.com"
  6733. },
  6734. {
  6735. "name": "Symfony Community",
  6736. "homepage": "https://symfony.com/contributors"
  6737. }
  6738. ],
  6739. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6740. "homepage": "https://symfony.com",
  6741. "keywords": [
  6742. "debug",
  6743. "dump"
  6744. ],
  6745. "time": "2020-05-30T20:06:45+00:00"
  6746. },
  6747. {
  6748. "name": "tijsverkoyen/css-to-inline-styles",
  6749. "version": "2.2.3",
  6750. "source": {
  6751. "type": "git",
  6752. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6753. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6754. },
  6755. "dist": {
  6756. "type": "zip",
  6757. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6758. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6759. "shasum": "",
  6760. "mirrors": [
  6761. {
  6762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6763. "preferred": true
  6764. }
  6765. ]
  6766. },
  6767. "require": {
  6768. "ext-dom": "*",
  6769. "ext-libxml": "*",
  6770. "php": "^5.5 || ^7.0 || ^8.0",
  6771. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6772. },
  6773. "require-dev": {
  6774. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6775. },
  6776. "type": "library",
  6777. "extra": {
  6778. "branch-alias": {
  6779. "dev-master": "2.2.x-dev"
  6780. }
  6781. },
  6782. "autoload": {
  6783. "psr-4": {
  6784. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6785. }
  6786. },
  6787. "notification-url": "https://packagist.org/downloads/",
  6788. "license": [
  6789. "BSD-3-Clause"
  6790. ],
  6791. "authors": [
  6792. {
  6793. "name": "Tijs Verkoyen",
  6794. "email": "css_to_inline_styles@verkoyen.eu",
  6795. "role": "Developer"
  6796. }
  6797. ],
  6798. "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.",
  6799. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6800. "time": "2020-07-13T06:12:54+00:00"
  6801. },
  6802. {
  6803. "name": "vlucas/phpdotenv",
  6804. "version": "v3.6.7",
  6805. "source": {
  6806. "type": "git",
  6807. "url": "https://github.com/vlucas/phpdotenv.git",
  6808. "reference": "2065beda6cbe75e2603686907b2e45f6f3a5ad82"
  6809. },
  6810. "dist": {
  6811. "type": "zip",
  6812. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2065beda6cbe75e2603686907b2e45f6f3a5ad82",
  6813. "reference": "2065beda6cbe75e2603686907b2e45f6f3a5ad82",
  6814. "shasum": "",
  6815. "mirrors": [
  6816. {
  6817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6818. "preferred": true
  6819. }
  6820. ]
  6821. },
  6822. "require": {
  6823. "php": "^5.4 || ^7.0 || ^8.0",
  6824. "phpoption/phpoption": "^1.5.2",
  6825. "symfony/polyfill-ctype": "^1.17"
  6826. },
  6827. "require-dev": {
  6828. "ext-filter": "*",
  6829. "ext-pcre": "*",
  6830. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6831. },
  6832. "suggest": {
  6833. "ext-filter": "Required to use the boolean validator.",
  6834. "ext-pcre": "Required to use most of the library."
  6835. },
  6836. "type": "library",
  6837. "extra": {
  6838. "branch-alias": {
  6839. "dev-master": "3.6-dev"
  6840. }
  6841. },
  6842. "autoload": {
  6843. "psr-4": {
  6844. "Dotenv\\": "src/"
  6845. }
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "BSD-3-Clause"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Graham Campbell",
  6854. "email": "graham@alt-three.com",
  6855. "homepage": "https://gjcampbell.co.uk/"
  6856. },
  6857. {
  6858. "name": "Vance Lucas",
  6859. "email": "vance@vancelucas.com",
  6860. "homepage": "https://vancelucas.com/"
  6861. }
  6862. ],
  6863. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6864. "keywords": [
  6865. "dotenv",
  6866. "env",
  6867. "environment"
  6868. ],
  6869. "time": "2020-07-14T19:04:52+00:00"
  6870. },
  6871. {
  6872. "name": "xhat/payjs",
  6873. "version": "1.4.3",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/xhat/payjs.git",
  6877. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/xhat/payjs/zipball/3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6882. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6883. "shasum": "",
  6884. "mirrors": [
  6885. {
  6886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6887. "preferred": true
  6888. }
  6889. ]
  6890. },
  6891. "type": "library",
  6892. "autoload": {
  6893. "psr-4": {
  6894. "Xhat\\Payjs\\": "src/"
  6895. }
  6896. },
  6897. "notification-url": "https://packagist.org/downloads/",
  6898. "license": [
  6899. "MIT"
  6900. ],
  6901. "authors": [
  6902. {
  6903. "name": "andy",
  6904. "email": "andy@popfeng.com"
  6905. }
  6906. ],
  6907. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6908. "time": "2019-08-13T04:58:08+00:00"
  6909. }
  6910. ],
  6911. "packages-dev": [
  6912. {
  6913. "name": "beyondcode/laravel-dump-server",
  6914. "version": "1.3.0",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  6918. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  6923. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  6924. "shasum": "",
  6925. "mirrors": [
  6926. {
  6927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6928. "preferred": true
  6929. }
  6930. ]
  6931. },
  6932. "require": {
  6933. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  6934. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  6935. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  6936. "php": "^7.1",
  6937. "symfony/var-dumper": "^4.1.1"
  6938. },
  6939. "require-dev": {
  6940. "larapack/dd": "^1.0",
  6941. "phpunit/phpunit": "^7.0"
  6942. },
  6943. "type": "library",
  6944. "extra": {
  6945. "laravel": {
  6946. "providers": [
  6947. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  6948. ]
  6949. }
  6950. },
  6951. "autoload": {
  6952. "psr-4": {
  6953. "BeyondCode\\DumpServer\\": "src"
  6954. },
  6955. "files": [
  6956. "helpers.php"
  6957. ]
  6958. },
  6959. "notification-url": "https://packagist.org/downloads/",
  6960. "license": [
  6961. "MIT"
  6962. ],
  6963. "authors": [
  6964. {
  6965. "name": "Marcel Pociot",
  6966. "email": "marcel@beyondco.de",
  6967. "homepage": "https://beyondco.de",
  6968. "role": "Developer"
  6969. }
  6970. ],
  6971. "description": "Symfony Var-Dump Server for Laravel",
  6972. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  6973. "keywords": [
  6974. "beyondcode",
  6975. "laravel-dump-server"
  6976. ],
  6977. "time": "2019-08-11T13:17:40+00:00"
  6978. },
  6979. {
  6980. "name": "doctrine/instantiator",
  6981. "version": "1.3.1",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://github.com/doctrine/instantiator.git",
  6985. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  6990. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  6991. "shasum": "",
  6992. "mirrors": [
  6993. {
  6994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6995. "preferred": true
  6996. }
  6997. ]
  6998. },
  6999. "require": {
  7000. "php": "^7.1 || ^8.0"
  7001. },
  7002. "require-dev": {
  7003. "doctrine/coding-standard": "^6.0",
  7004. "ext-pdo": "*",
  7005. "ext-phar": "*",
  7006. "phpbench/phpbench": "^0.13",
  7007. "phpstan/phpstan-phpunit": "^0.11",
  7008. "phpstan/phpstan-shim": "^0.11",
  7009. "phpunit/phpunit": "^7.0"
  7010. },
  7011. "type": "library",
  7012. "extra": {
  7013. "branch-alias": {
  7014. "dev-master": "1.2.x-dev"
  7015. }
  7016. },
  7017. "autoload": {
  7018. "psr-4": {
  7019. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7020. }
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "MIT"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Marco Pivetta",
  7029. "email": "ocramius@gmail.com",
  7030. "homepage": "http://ocramius.github.com/"
  7031. }
  7032. ],
  7033. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7034. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7035. "keywords": [
  7036. "constructor",
  7037. "instantiate"
  7038. ],
  7039. "time": "2020-05-29T17:27:14+00:00"
  7040. },
  7041. {
  7042. "name": "filp/whoops",
  7043. "version": "2.7.3",
  7044. "source": {
  7045. "type": "git",
  7046. "url": "https://github.com/filp/whoops.git",
  7047. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  7048. },
  7049. "dist": {
  7050. "type": "zip",
  7051. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7052. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7053. "shasum": "",
  7054. "mirrors": [
  7055. {
  7056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7057. "preferred": true
  7058. }
  7059. ]
  7060. },
  7061. "require": {
  7062. "php": "^5.5.9 || ^7.0",
  7063. "psr/log": "^1.0.1"
  7064. },
  7065. "require-dev": {
  7066. "mockery/mockery": "^0.9 || ^1.0",
  7067. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  7068. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7069. },
  7070. "suggest": {
  7071. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7072. "whoops/soap": "Formats errors as SOAP responses"
  7073. },
  7074. "type": "library",
  7075. "extra": {
  7076. "branch-alias": {
  7077. "dev-master": "2.6-dev"
  7078. }
  7079. },
  7080. "autoload": {
  7081. "psr-4": {
  7082. "Whoops\\": "src/Whoops/"
  7083. }
  7084. },
  7085. "notification-url": "https://packagist.org/downloads/",
  7086. "license": [
  7087. "MIT"
  7088. ],
  7089. "authors": [
  7090. {
  7091. "name": "Filipe Dobreira",
  7092. "homepage": "https://github.com/filp",
  7093. "role": "Developer"
  7094. }
  7095. ],
  7096. "description": "php error handling for cool kids",
  7097. "homepage": "https://filp.github.io/whoops/",
  7098. "keywords": [
  7099. "error",
  7100. "exception",
  7101. "handling",
  7102. "library",
  7103. "throwable",
  7104. "whoops"
  7105. ],
  7106. "time": "2020-06-14T09:00:00+00:00"
  7107. },
  7108. {
  7109. "name": "fzaninotto/faker",
  7110. "version": "v1.9.1",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://github.com/fzaninotto/Faker.git",
  7114. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  7119. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  7120. "shasum": "",
  7121. "mirrors": [
  7122. {
  7123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7124. "preferred": true
  7125. }
  7126. ]
  7127. },
  7128. "require": {
  7129. "php": "^5.3.3 || ^7.0"
  7130. },
  7131. "require-dev": {
  7132. "ext-intl": "*",
  7133. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7134. "squizlabs/php_codesniffer": "^2.9.2"
  7135. },
  7136. "type": "library",
  7137. "extra": {
  7138. "branch-alias": {
  7139. "dev-master": "1.9-dev"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "psr-4": {
  7144. "Faker\\": "src/Faker/"
  7145. }
  7146. },
  7147. "notification-url": "https://packagist.org/downloads/",
  7148. "license": [
  7149. "MIT"
  7150. ],
  7151. "authors": [
  7152. {
  7153. "name": "François Zaninotto"
  7154. }
  7155. ],
  7156. "description": "Faker is a PHP library that generates fake data for you.",
  7157. "keywords": [
  7158. "data",
  7159. "faker",
  7160. "fixtures"
  7161. ],
  7162. "time": "2019-12-12T13:22:17+00:00"
  7163. },
  7164. {
  7165. "name": "hamcrest/hamcrest-php",
  7166. "version": "v2.0.1",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7170. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7175. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7176. "shasum": "",
  7177. "mirrors": [
  7178. {
  7179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7180. "preferred": true
  7181. }
  7182. ]
  7183. },
  7184. "require": {
  7185. "php": "^5.3|^7.0|^8.0"
  7186. },
  7187. "replace": {
  7188. "cordoval/hamcrest-php": "*",
  7189. "davedevelopment/hamcrest-php": "*",
  7190. "kodova/hamcrest-php": "*"
  7191. },
  7192. "require-dev": {
  7193. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7194. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7195. },
  7196. "type": "library",
  7197. "extra": {
  7198. "branch-alias": {
  7199. "dev-master": "2.1-dev"
  7200. }
  7201. },
  7202. "autoload": {
  7203. "classmap": [
  7204. "hamcrest"
  7205. ]
  7206. },
  7207. "notification-url": "https://packagist.org/downloads/",
  7208. "license": [
  7209. "BSD-3-Clause"
  7210. ],
  7211. "description": "This is the PHP port of Hamcrest Matchers",
  7212. "keywords": [
  7213. "test"
  7214. ],
  7215. "time": "2020-07-09T08:09:16+00:00"
  7216. },
  7217. {
  7218. "name": "mockery/mockery",
  7219. "version": "1.4.1",
  7220. "source": {
  7221. "type": "git",
  7222. "url": "https://github.com/mockery/mockery.git",
  7223. "reference": "1404386ca3410b04fe58b9517e85d702ab33b2c6"
  7224. },
  7225. "dist": {
  7226. "type": "zip",
  7227. "url": "https://api.github.com/repos/mockery/mockery/zipball/1404386ca3410b04fe58b9517e85d702ab33b2c6",
  7228. "reference": "1404386ca3410b04fe58b9517e85d702ab33b2c6",
  7229. "shasum": "",
  7230. "mirrors": [
  7231. {
  7232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7233. "preferred": true
  7234. }
  7235. ]
  7236. },
  7237. "require": {
  7238. "hamcrest/hamcrest-php": "^2.0.1",
  7239. "lib-pcre": ">=7.0",
  7240. "php": "^7.3 || ^8.0"
  7241. },
  7242. "conflict": {
  7243. "phpunit/phpunit": "<8.0"
  7244. },
  7245. "require-dev": {
  7246. "phpunit/phpunit": "^8.5 || ^9.0"
  7247. },
  7248. "type": "library",
  7249. "extra": {
  7250. "branch-alias": {
  7251. "dev-master": "1.4.x-dev"
  7252. }
  7253. },
  7254. "autoload": {
  7255. "psr-0": {
  7256. "Mockery": "library/"
  7257. }
  7258. },
  7259. "notification-url": "https://packagist.org/downloads/",
  7260. "license": [
  7261. "BSD-3-Clause"
  7262. ],
  7263. "authors": [
  7264. {
  7265. "name": "Pádraic Brady",
  7266. "email": "padraic.brady@gmail.com",
  7267. "homepage": "http://blog.astrumfutura.com"
  7268. },
  7269. {
  7270. "name": "Dave Marshall",
  7271. "email": "dave.marshall@atstsolutions.co.uk",
  7272. "homepage": "http://davedevelopment.co.uk"
  7273. }
  7274. ],
  7275. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7276. "homepage": "https://github.com/mockery/mockery",
  7277. "keywords": [
  7278. "BDD",
  7279. "TDD",
  7280. "library",
  7281. "mock",
  7282. "mock objects",
  7283. "mockery",
  7284. "stub",
  7285. "test",
  7286. "test double",
  7287. "testing"
  7288. ],
  7289. "time": "2020-07-09T08:31:54+00:00"
  7290. },
  7291. {
  7292. "name": "myclabs/deep-copy",
  7293. "version": "1.10.1",
  7294. "source": {
  7295. "type": "git",
  7296. "url": "https://github.com/myclabs/DeepCopy.git",
  7297. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  7298. },
  7299. "dist": {
  7300. "type": "zip",
  7301. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7302. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7303. "shasum": "",
  7304. "mirrors": [
  7305. {
  7306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7307. "preferred": true
  7308. }
  7309. ]
  7310. },
  7311. "require": {
  7312. "php": "^7.1 || ^8.0"
  7313. },
  7314. "replace": {
  7315. "myclabs/deep-copy": "self.version"
  7316. },
  7317. "require-dev": {
  7318. "doctrine/collections": "^1.0",
  7319. "doctrine/common": "^2.6",
  7320. "phpunit/phpunit": "^7.1"
  7321. },
  7322. "type": "library",
  7323. "autoload": {
  7324. "psr-4": {
  7325. "DeepCopy\\": "src/DeepCopy/"
  7326. },
  7327. "files": [
  7328. "src/DeepCopy/deep_copy.php"
  7329. ]
  7330. },
  7331. "notification-url": "https://packagist.org/downloads/",
  7332. "license": [
  7333. "MIT"
  7334. ],
  7335. "description": "Create deep copies (clones) of your objects",
  7336. "keywords": [
  7337. "clone",
  7338. "copy",
  7339. "duplicate",
  7340. "object",
  7341. "object graph"
  7342. ],
  7343. "time": "2020-06-29T13:22:24+00:00"
  7344. },
  7345. {
  7346. "name": "nunomaduro/collision",
  7347. "version": "v3.0.1",
  7348. "source": {
  7349. "type": "git",
  7350. "url": "https://github.com/nunomaduro/collision.git",
  7351. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  7352. },
  7353. "dist": {
  7354. "type": "zip",
  7355. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  7356. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  7357. "shasum": "",
  7358. "mirrors": [
  7359. {
  7360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7361. "preferred": true
  7362. }
  7363. ]
  7364. },
  7365. "require": {
  7366. "filp/whoops": "^2.1.4",
  7367. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  7368. "php": "^7.1",
  7369. "symfony/console": "~2.8|~3.3|~4.0"
  7370. },
  7371. "require-dev": {
  7372. "laravel/framework": "5.8.*",
  7373. "nunomaduro/larastan": "^0.3.0",
  7374. "phpstan/phpstan": "^0.11",
  7375. "phpunit/phpunit": "~8.0"
  7376. },
  7377. "type": "library",
  7378. "extra": {
  7379. "laravel": {
  7380. "providers": [
  7381. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7382. ]
  7383. }
  7384. },
  7385. "autoload": {
  7386. "psr-4": {
  7387. "NunoMaduro\\Collision\\": "src/"
  7388. }
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "license": [
  7392. "MIT"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "Nuno Maduro",
  7397. "email": "enunomaduro@gmail.com"
  7398. }
  7399. ],
  7400. "description": "Cli error handling for console/command-line PHP applications.",
  7401. "keywords": [
  7402. "artisan",
  7403. "cli",
  7404. "command-line",
  7405. "console",
  7406. "error",
  7407. "handling",
  7408. "laravel",
  7409. "laravel-zero",
  7410. "php",
  7411. "symfony"
  7412. ],
  7413. "time": "2019-03-07T21:35:13+00:00"
  7414. },
  7415. {
  7416. "name": "phar-io/manifest",
  7417. "version": "1.0.3",
  7418. "source": {
  7419. "type": "git",
  7420. "url": "https://github.com/phar-io/manifest.git",
  7421. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  7422. },
  7423. "dist": {
  7424. "type": "zip",
  7425. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7426. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  7427. "shasum": "",
  7428. "mirrors": [
  7429. {
  7430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7431. "preferred": true
  7432. }
  7433. ]
  7434. },
  7435. "require": {
  7436. "ext-dom": "*",
  7437. "ext-phar": "*",
  7438. "phar-io/version": "^2.0",
  7439. "php": "^5.6 || ^7.0"
  7440. },
  7441. "type": "library",
  7442. "extra": {
  7443. "branch-alias": {
  7444. "dev-master": "1.0.x-dev"
  7445. }
  7446. },
  7447. "autoload": {
  7448. "classmap": [
  7449. "src/"
  7450. ]
  7451. },
  7452. "notification-url": "https://packagist.org/downloads/",
  7453. "license": [
  7454. "BSD-3-Clause"
  7455. ],
  7456. "authors": [
  7457. {
  7458. "name": "Arne Blankerts",
  7459. "email": "arne@blankerts.de",
  7460. "role": "Developer"
  7461. },
  7462. {
  7463. "name": "Sebastian Heuer",
  7464. "email": "sebastian@phpeople.de",
  7465. "role": "Developer"
  7466. },
  7467. {
  7468. "name": "Sebastian Bergmann",
  7469. "email": "sebastian@phpunit.de",
  7470. "role": "Developer"
  7471. }
  7472. ],
  7473. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7474. "time": "2018-07-08T19:23:20+00:00"
  7475. },
  7476. {
  7477. "name": "phar-io/version",
  7478. "version": "2.0.1",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://github.com/phar-io/version.git",
  7482. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7487. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  7488. "shasum": "",
  7489. "mirrors": [
  7490. {
  7491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7492. "preferred": true
  7493. }
  7494. ]
  7495. },
  7496. "require": {
  7497. "php": "^5.6 || ^7.0"
  7498. },
  7499. "type": "library",
  7500. "autoload": {
  7501. "classmap": [
  7502. "src/"
  7503. ]
  7504. },
  7505. "notification-url": "https://packagist.org/downloads/",
  7506. "license": [
  7507. "BSD-3-Clause"
  7508. ],
  7509. "authors": [
  7510. {
  7511. "name": "Arne Blankerts",
  7512. "email": "arne@blankerts.de",
  7513. "role": "Developer"
  7514. },
  7515. {
  7516. "name": "Sebastian Heuer",
  7517. "email": "sebastian@phpeople.de",
  7518. "role": "Developer"
  7519. },
  7520. {
  7521. "name": "Sebastian Bergmann",
  7522. "email": "sebastian@phpunit.de",
  7523. "role": "Developer"
  7524. }
  7525. ],
  7526. "description": "Library for handling version information and constraints",
  7527. "time": "2018-07-08T19:19:57+00:00"
  7528. },
  7529. {
  7530. "name": "phpdocumentor/reflection-common",
  7531. "version": "2.2.0",
  7532. "source": {
  7533. "type": "git",
  7534. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7535. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  7536. },
  7537. "dist": {
  7538. "type": "zip",
  7539. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  7540. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  7541. "shasum": "",
  7542. "mirrors": [
  7543. {
  7544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7545. "preferred": true
  7546. }
  7547. ]
  7548. },
  7549. "require": {
  7550. "php": "^7.2 || ^8.0"
  7551. },
  7552. "type": "library",
  7553. "extra": {
  7554. "branch-alias": {
  7555. "dev-2.x": "2.x-dev"
  7556. }
  7557. },
  7558. "autoload": {
  7559. "psr-4": {
  7560. "phpDocumentor\\Reflection\\": "src/"
  7561. }
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Jaap van Otterdijk",
  7570. "email": "opensource@ijaap.nl"
  7571. }
  7572. ],
  7573. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7574. "homepage": "http://www.phpdoc.org",
  7575. "keywords": [
  7576. "FQSEN",
  7577. "phpDocumentor",
  7578. "phpdoc",
  7579. "reflection",
  7580. "static analysis"
  7581. ],
  7582. "time": "2020-06-27T09:03:43+00:00"
  7583. },
  7584. {
  7585. "name": "phpdocumentor/reflection-docblock",
  7586. "version": "5.2.0",
  7587. "source": {
  7588. "type": "git",
  7589. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7590. "reference": "3170448f5769fe19f456173d833734e0ff1b84df"
  7591. },
  7592. "dist": {
  7593. "type": "zip",
  7594. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/3170448f5769fe19f456173d833734e0ff1b84df",
  7595. "reference": "3170448f5769fe19f456173d833734e0ff1b84df",
  7596. "shasum": "",
  7597. "mirrors": [
  7598. {
  7599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7600. "preferred": true
  7601. }
  7602. ]
  7603. },
  7604. "require": {
  7605. "ext-filter": "*",
  7606. "php": "^7.2 || ^8.0",
  7607. "phpdocumentor/reflection-common": "^2.2",
  7608. "phpdocumentor/type-resolver": "^1.3",
  7609. "webmozart/assert": "^1.9.1"
  7610. },
  7611. "require-dev": {
  7612. "mockery/mockery": "~1.3.2"
  7613. },
  7614. "type": "library",
  7615. "extra": {
  7616. "branch-alias": {
  7617. "dev-master": "5.x-dev"
  7618. }
  7619. },
  7620. "autoload": {
  7621. "psr-4": {
  7622. "phpDocumentor\\Reflection\\": "src"
  7623. }
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "MIT"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Mike van Riel",
  7632. "email": "me@mikevanriel.com"
  7633. },
  7634. {
  7635. "name": "Jaap van Otterdijk",
  7636. "email": "account@ijaap.nl"
  7637. }
  7638. ],
  7639. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7640. "time": "2020-07-20T20:05:34+00:00"
  7641. },
  7642. {
  7643. "name": "phpdocumentor/type-resolver",
  7644. "version": "1.3.0",
  7645. "source": {
  7646. "type": "git",
  7647. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7648. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  7649. },
  7650. "dist": {
  7651. "type": "zip",
  7652. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  7653. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  7654. "shasum": "",
  7655. "mirrors": [
  7656. {
  7657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7658. "preferred": true
  7659. }
  7660. ]
  7661. },
  7662. "require": {
  7663. "php": "^7.2 || ^8.0",
  7664. "phpdocumentor/reflection-common": "^2.0"
  7665. },
  7666. "require-dev": {
  7667. "ext-tokenizer": "*"
  7668. },
  7669. "type": "library",
  7670. "extra": {
  7671. "branch-alias": {
  7672. "dev-1.x": "1.x-dev"
  7673. }
  7674. },
  7675. "autoload": {
  7676. "psr-4": {
  7677. "phpDocumentor\\Reflection\\": "src"
  7678. }
  7679. },
  7680. "notification-url": "https://packagist.org/downloads/",
  7681. "license": [
  7682. "MIT"
  7683. ],
  7684. "authors": [
  7685. {
  7686. "name": "Mike van Riel",
  7687. "email": "me@mikevanriel.com"
  7688. }
  7689. ],
  7690. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  7691. "time": "2020-06-27T10:12:23+00:00"
  7692. },
  7693. {
  7694. "name": "phpspec/prophecy",
  7695. "version": "1.11.1",
  7696. "source": {
  7697. "type": "git",
  7698. "url": "https://github.com/phpspec/prophecy.git",
  7699. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  7700. },
  7701. "dist": {
  7702. "type": "zip",
  7703. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  7704. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  7705. "shasum": "",
  7706. "mirrors": [
  7707. {
  7708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7709. "preferred": true
  7710. }
  7711. ]
  7712. },
  7713. "require": {
  7714. "doctrine/instantiator": "^1.2",
  7715. "php": "^7.2",
  7716. "phpdocumentor/reflection-docblock": "^5.0",
  7717. "sebastian/comparator": "^3.0 || ^4.0",
  7718. "sebastian/recursion-context": "^3.0 || ^4.0"
  7719. },
  7720. "require-dev": {
  7721. "phpspec/phpspec": "^6.0",
  7722. "phpunit/phpunit": "^8.0"
  7723. },
  7724. "type": "library",
  7725. "extra": {
  7726. "branch-alias": {
  7727. "dev-master": "1.11.x-dev"
  7728. }
  7729. },
  7730. "autoload": {
  7731. "psr-4": {
  7732. "Prophecy\\": "src/Prophecy"
  7733. }
  7734. },
  7735. "notification-url": "https://packagist.org/downloads/",
  7736. "license": [
  7737. "MIT"
  7738. ],
  7739. "authors": [
  7740. {
  7741. "name": "Konstantin Kudryashov",
  7742. "email": "ever.zet@gmail.com",
  7743. "homepage": "http://everzet.com"
  7744. },
  7745. {
  7746. "name": "Marcello Duarte",
  7747. "email": "marcello.duarte@gmail.com"
  7748. }
  7749. ],
  7750. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7751. "homepage": "https://github.com/phpspec/prophecy",
  7752. "keywords": [
  7753. "Double",
  7754. "Dummy",
  7755. "fake",
  7756. "mock",
  7757. "spy",
  7758. "stub"
  7759. ],
  7760. "time": "2020-07-08T12:44:21+00:00"
  7761. },
  7762. {
  7763. "name": "phpunit/php-code-coverage",
  7764. "version": "7.0.10",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7768. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  7773. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  7774. "shasum": "",
  7775. "mirrors": [
  7776. {
  7777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7778. "preferred": true
  7779. }
  7780. ]
  7781. },
  7782. "require": {
  7783. "ext-dom": "*",
  7784. "ext-xmlwriter": "*",
  7785. "php": "^7.2",
  7786. "phpunit/php-file-iterator": "^2.0.2",
  7787. "phpunit/php-text-template": "^1.2.1",
  7788. "phpunit/php-token-stream": "^3.1.1",
  7789. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7790. "sebastian/environment": "^4.2.2",
  7791. "sebastian/version": "^2.0.1",
  7792. "theseer/tokenizer": "^1.1.3"
  7793. },
  7794. "require-dev": {
  7795. "phpunit/phpunit": "^8.2.2"
  7796. },
  7797. "suggest": {
  7798. "ext-xdebug": "^2.7.2"
  7799. },
  7800. "type": "library",
  7801. "extra": {
  7802. "branch-alias": {
  7803. "dev-master": "7.0-dev"
  7804. }
  7805. },
  7806. "autoload": {
  7807. "classmap": [
  7808. "src/"
  7809. ]
  7810. },
  7811. "notification-url": "https://packagist.org/downloads/",
  7812. "license": [
  7813. "BSD-3-Clause"
  7814. ],
  7815. "authors": [
  7816. {
  7817. "name": "Sebastian Bergmann",
  7818. "email": "sebastian@phpunit.de",
  7819. "role": "lead"
  7820. }
  7821. ],
  7822. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7823. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7824. "keywords": [
  7825. "coverage",
  7826. "testing",
  7827. "xunit"
  7828. ],
  7829. "time": "2019-11-20T13:55:58+00:00"
  7830. },
  7831. {
  7832. "name": "phpunit/php-file-iterator",
  7833. "version": "2.0.2",
  7834. "source": {
  7835. "type": "git",
  7836. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7837. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  7838. },
  7839. "dist": {
  7840. "type": "zip",
  7841. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  7842. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  7843. "shasum": "",
  7844. "mirrors": [
  7845. {
  7846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7847. "preferred": true
  7848. }
  7849. ]
  7850. },
  7851. "require": {
  7852. "php": "^7.1"
  7853. },
  7854. "require-dev": {
  7855. "phpunit/phpunit": "^7.1"
  7856. },
  7857. "type": "library",
  7858. "extra": {
  7859. "branch-alias": {
  7860. "dev-master": "2.0.x-dev"
  7861. }
  7862. },
  7863. "autoload": {
  7864. "classmap": [
  7865. "src/"
  7866. ]
  7867. },
  7868. "notification-url": "https://packagist.org/downloads/",
  7869. "license": [
  7870. "BSD-3-Clause"
  7871. ],
  7872. "authors": [
  7873. {
  7874. "name": "Sebastian Bergmann",
  7875. "email": "sebastian@phpunit.de",
  7876. "role": "lead"
  7877. }
  7878. ],
  7879. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7880. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7881. "keywords": [
  7882. "filesystem",
  7883. "iterator"
  7884. ],
  7885. "time": "2018-09-13T20:33:42+00:00"
  7886. },
  7887. {
  7888. "name": "phpunit/php-text-template",
  7889. "version": "1.2.1",
  7890. "source": {
  7891. "type": "git",
  7892. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7893. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7894. },
  7895. "dist": {
  7896. "type": "zip",
  7897. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7898. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7899. "shasum": "",
  7900. "mirrors": [
  7901. {
  7902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7903. "preferred": true
  7904. }
  7905. ]
  7906. },
  7907. "require": {
  7908. "php": ">=5.3.3"
  7909. },
  7910. "type": "library",
  7911. "autoload": {
  7912. "classmap": [
  7913. "src/"
  7914. ]
  7915. },
  7916. "notification-url": "https://packagist.org/downloads/",
  7917. "license": [
  7918. "BSD-3-Clause"
  7919. ],
  7920. "authors": [
  7921. {
  7922. "name": "Sebastian Bergmann",
  7923. "email": "sebastian@phpunit.de",
  7924. "role": "lead"
  7925. }
  7926. ],
  7927. "description": "Simple template engine.",
  7928. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7929. "keywords": [
  7930. "template"
  7931. ],
  7932. "time": "2015-06-21T13:50:34+00:00"
  7933. },
  7934. {
  7935. "name": "phpunit/php-timer",
  7936. "version": "2.1.2",
  7937. "source": {
  7938. "type": "git",
  7939. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7940. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  7941. },
  7942. "dist": {
  7943. "type": "zip",
  7944. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  7945. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  7946. "shasum": "",
  7947. "mirrors": [
  7948. {
  7949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7950. "preferred": true
  7951. }
  7952. ]
  7953. },
  7954. "require": {
  7955. "php": "^7.1"
  7956. },
  7957. "require-dev": {
  7958. "phpunit/phpunit": "^7.0"
  7959. },
  7960. "type": "library",
  7961. "extra": {
  7962. "branch-alias": {
  7963. "dev-master": "2.1-dev"
  7964. }
  7965. },
  7966. "autoload": {
  7967. "classmap": [
  7968. "src/"
  7969. ]
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "BSD-3-Clause"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Sebastian Bergmann",
  7978. "email": "sebastian@phpunit.de",
  7979. "role": "lead"
  7980. }
  7981. ],
  7982. "description": "Utility class for timing",
  7983. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7984. "keywords": [
  7985. "timer"
  7986. ],
  7987. "time": "2019-06-07T04:22:29+00:00"
  7988. },
  7989. {
  7990. "name": "phpunit/php-token-stream",
  7991. "version": "3.1.1",
  7992. "source": {
  7993. "type": "git",
  7994. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7995. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  7996. },
  7997. "dist": {
  7998. "type": "zip",
  7999. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  8000. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  8001. "shasum": "",
  8002. "mirrors": [
  8003. {
  8004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8005. "preferred": true
  8006. }
  8007. ]
  8008. },
  8009. "require": {
  8010. "ext-tokenizer": "*",
  8011. "php": "^7.1"
  8012. },
  8013. "require-dev": {
  8014. "phpunit/phpunit": "^7.0"
  8015. },
  8016. "type": "library",
  8017. "extra": {
  8018. "branch-alias": {
  8019. "dev-master": "3.1-dev"
  8020. }
  8021. },
  8022. "autoload": {
  8023. "classmap": [
  8024. "src/"
  8025. ]
  8026. },
  8027. "notification-url": "https://packagist.org/downloads/",
  8028. "license": [
  8029. "BSD-3-Clause"
  8030. ],
  8031. "authors": [
  8032. {
  8033. "name": "Sebastian Bergmann",
  8034. "email": "sebastian@phpunit.de"
  8035. }
  8036. ],
  8037. "description": "Wrapper around PHP's tokenizer extension.",
  8038. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8039. "keywords": [
  8040. "tokenizer"
  8041. ],
  8042. "time": "2019-09-17T06:23:10+00:00"
  8043. },
  8044. {
  8045. "name": "phpunit/phpunit",
  8046. "version": "8.5.8",
  8047. "source": {
  8048. "type": "git",
  8049. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8050. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  8051. },
  8052. "dist": {
  8053. "type": "zip",
  8054. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  8055. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  8056. "shasum": "",
  8057. "mirrors": [
  8058. {
  8059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8060. "preferred": true
  8061. }
  8062. ]
  8063. },
  8064. "require": {
  8065. "doctrine/instantiator": "^1.2.0",
  8066. "ext-dom": "*",
  8067. "ext-json": "*",
  8068. "ext-libxml": "*",
  8069. "ext-mbstring": "*",
  8070. "ext-xml": "*",
  8071. "ext-xmlwriter": "*",
  8072. "myclabs/deep-copy": "^1.9.1",
  8073. "phar-io/manifest": "^1.0.3",
  8074. "phar-io/version": "^2.0.1",
  8075. "php": "^7.2",
  8076. "phpspec/prophecy": "^1.8.1",
  8077. "phpunit/php-code-coverage": "^7.0.7",
  8078. "phpunit/php-file-iterator": "^2.0.2",
  8079. "phpunit/php-text-template": "^1.2.1",
  8080. "phpunit/php-timer": "^2.1.2",
  8081. "sebastian/comparator": "^3.0.2",
  8082. "sebastian/diff": "^3.0.2",
  8083. "sebastian/environment": "^4.2.2",
  8084. "sebastian/exporter": "^3.1.1",
  8085. "sebastian/global-state": "^3.0.0",
  8086. "sebastian/object-enumerator": "^3.0.3",
  8087. "sebastian/resource-operations": "^2.0.1",
  8088. "sebastian/type": "^1.1.3",
  8089. "sebastian/version": "^2.0.1"
  8090. },
  8091. "require-dev": {
  8092. "ext-pdo": "*"
  8093. },
  8094. "suggest": {
  8095. "ext-soap": "*",
  8096. "ext-xdebug": "*",
  8097. "phpunit/php-invoker": "^2.0.0"
  8098. },
  8099. "bin": [
  8100. "phpunit"
  8101. ],
  8102. "type": "library",
  8103. "extra": {
  8104. "branch-alias": {
  8105. "dev-master": "8.5-dev"
  8106. }
  8107. },
  8108. "autoload": {
  8109. "classmap": [
  8110. "src/"
  8111. ]
  8112. },
  8113. "notification-url": "https://packagist.org/downloads/",
  8114. "license": [
  8115. "BSD-3-Clause"
  8116. ],
  8117. "authors": [
  8118. {
  8119. "name": "Sebastian Bergmann",
  8120. "email": "sebastian@phpunit.de",
  8121. "role": "lead"
  8122. }
  8123. ],
  8124. "description": "The PHP Unit Testing framework.",
  8125. "homepage": "https://phpunit.de/",
  8126. "keywords": [
  8127. "phpunit",
  8128. "testing",
  8129. "xunit"
  8130. ],
  8131. "time": "2020-06-22T07:06:58+00:00"
  8132. },
  8133. {
  8134. "name": "sebastian/code-unit-reverse-lookup",
  8135. "version": "1.0.1",
  8136. "source": {
  8137. "type": "git",
  8138. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8139. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8140. },
  8141. "dist": {
  8142. "type": "zip",
  8143. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8144. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8145. "shasum": "",
  8146. "mirrors": [
  8147. {
  8148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8149. "preferred": true
  8150. }
  8151. ]
  8152. },
  8153. "require": {
  8154. "php": "^5.6 || ^7.0"
  8155. },
  8156. "require-dev": {
  8157. "phpunit/phpunit": "^5.7 || ^6.0"
  8158. },
  8159. "type": "library",
  8160. "extra": {
  8161. "branch-alias": {
  8162. "dev-master": "1.0.x-dev"
  8163. }
  8164. },
  8165. "autoload": {
  8166. "classmap": [
  8167. "src/"
  8168. ]
  8169. },
  8170. "notification-url": "https://packagist.org/downloads/",
  8171. "license": [
  8172. "BSD-3-Clause"
  8173. ],
  8174. "authors": [
  8175. {
  8176. "name": "Sebastian Bergmann",
  8177. "email": "sebastian@phpunit.de"
  8178. }
  8179. ],
  8180. "description": "Looks up which function or method a line of code belongs to",
  8181. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8182. "time": "2017-03-04T06:30:41+00:00"
  8183. },
  8184. {
  8185. "name": "sebastian/comparator",
  8186. "version": "3.0.2",
  8187. "source": {
  8188. "type": "git",
  8189. "url": "https://github.com/sebastianbergmann/comparator.git",
  8190. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  8191. },
  8192. "dist": {
  8193. "type": "zip",
  8194. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8195. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8196. "shasum": "",
  8197. "mirrors": [
  8198. {
  8199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8200. "preferred": true
  8201. }
  8202. ]
  8203. },
  8204. "require": {
  8205. "php": "^7.1",
  8206. "sebastian/diff": "^3.0",
  8207. "sebastian/exporter": "^3.1"
  8208. },
  8209. "require-dev": {
  8210. "phpunit/phpunit": "^7.1"
  8211. },
  8212. "type": "library",
  8213. "extra": {
  8214. "branch-alias": {
  8215. "dev-master": "3.0-dev"
  8216. }
  8217. },
  8218. "autoload": {
  8219. "classmap": [
  8220. "src/"
  8221. ]
  8222. },
  8223. "notification-url": "https://packagist.org/downloads/",
  8224. "license": [
  8225. "BSD-3-Clause"
  8226. ],
  8227. "authors": [
  8228. {
  8229. "name": "Jeff Welch",
  8230. "email": "whatthejeff@gmail.com"
  8231. },
  8232. {
  8233. "name": "Volker Dusch",
  8234. "email": "github@wallbash.com"
  8235. },
  8236. {
  8237. "name": "Bernhard Schussek",
  8238. "email": "bschussek@2bepublished.at"
  8239. },
  8240. {
  8241. "name": "Sebastian Bergmann",
  8242. "email": "sebastian@phpunit.de"
  8243. }
  8244. ],
  8245. "description": "Provides the functionality to compare PHP values for equality",
  8246. "homepage": "https://github.com/sebastianbergmann/comparator",
  8247. "keywords": [
  8248. "comparator",
  8249. "compare",
  8250. "equality"
  8251. ],
  8252. "time": "2018-07-12T15:12:46+00:00"
  8253. },
  8254. {
  8255. "name": "sebastian/diff",
  8256. "version": "3.0.2",
  8257. "source": {
  8258. "type": "git",
  8259. "url": "https://github.com/sebastianbergmann/diff.git",
  8260. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  8261. },
  8262. "dist": {
  8263. "type": "zip",
  8264. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  8265. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  8266. "shasum": "",
  8267. "mirrors": [
  8268. {
  8269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8270. "preferred": true
  8271. }
  8272. ]
  8273. },
  8274. "require": {
  8275. "php": "^7.1"
  8276. },
  8277. "require-dev": {
  8278. "phpunit/phpunit": "^7.5 || ^8.0",
  8279. "symfony/process": "^2 || ^3.3 || ^4"
  8280. },
  8281. "type": "library",
  8282. "extra": {
  8283. "branch-alias": {
  8284. "dev-master": "3.0-dev"
  8285. }
  8286. },
  8287. "autoload": {
  8288. "classmap": [
  8289. "src/"
  8290. ]
  8291. },
  8292. "notification-url": "https://packagist.org/downloads/",
  8293. "license": [
  8294. "BSD-3-Clause"
  8295. ],
  8296. "authors": [
  8297. {
  8298. "name": "Kore Nordmann",
  8299. "email": "mail@kore-nordmann.de"
  8300. },
  8301. {
  8302. "name": "Sebastian Bergmann",
  8303. "email": "sebastian@phpunit.de"
  8304. }
  8305. ],
  8306. "description": "Diff implementation",
  8307. "homepage": "https://github.com/sebastianbergmann/diff",
  8308. "keywords": [
  8309. "diff",
  8310. "udiff",
  8311. "unidiff",
  8312. "unified diff"
  8313. ],
  8314. "time": "2019-02-04T06:01:07+00:00"
  8315. },
  8316. {
  8317. "name": "sebastian/environment",
  8318. "version": "4.2.3",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/sebastianbergmann/environment.git",
  8322. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8327. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  8328. "shasum": "",
  8329. "mirrors": [
  8330. {
  8331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8332. "preferred": true
  8333. }
  8334. ]
  8335. },
  8336. "require": {
  8337. "php": "^7.1"
  8338. },
  8339. "require-dev": {
  8340. "phpunit/phpunit": "^7.5"
  8341. },
  8342. "suggest": {
  8343. "ext-posix": "*"
  8344. },
  8345. "type": "library",
  8346. "extra": {
  8347. "branch-alias": {
  8348. "dev-master": "4.2-dev"
  8349. }
  8350. },
  8351. "autoload": {
  8352. "classmap": [
  8353. "src/"
  8354. ]
  8355. },
  8356. "notification-url": "https://packagist.org/downloads/",
  8357. "license": [
  8358. "BSD-3-Clause"
  8359. ],
  8360. "authors": [
  8361. {
  8362. "name": "Sebastian Bergmann",
  8363. "email": "sebastian@phpunit.de"
  8364. }
  8365. ],
  8366. "description": "Provides functionality to handle HHVM/PHP environments",
  8367. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8368. "keywords": [
  8369. "Xdebug",
  8370. "environment",
  8371. "hhvm"
  8372. ],
  8373. "time": "2019-11-20T08:46:58+00:00"
  8374. },
  8375. {
  8376. "name": "sebastian/exporter",
  8377. "version": "3.1.2",
  8378. "source": {
  8379. "type": "git",
  8380. "url": "https://github.com/sebastianbergmann/exporter.git",
  8381. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8382. },
  8383. "dist": {
  8384. "type": "zip",
  8385. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8386. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8387. "shasum": "",
  8388. "mirrors": [
  8389. {
  8390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8391. "preferred": true
  8392. }
  8393. ]
  8394. },
  8395. "require": {
  8396. "php": "^7.0",
  8397. "sebastian/recursion-context": "^3.0"
  8398. },
  8399. "require-dev": {
  8400. "ext-mbstring": "*",
  8401. "phpunit/phpunit": "^6.0"
  8402. },
  8403. "type": "library",
  8404. "extra": {
  8405. "branch-alias": {
  8406. "dev-master": "3.1.x-dev"
  8407. }
  8408. },
  8409. "autoload": {
  8410. "classmap": [
  8411. "src/"
  8412. ]
  8413. },
  8414. "notification-url": "https://packagist.org/downloads/",
  8415. "license": [
  8416. "BSD-3-Clause"
  8417. ],
  8418. "authors": [
  8419. {
  8420. "name": "Sebastian Bergmann",
  8421. "email": "sebastian@phpunit.de"
  8422. },
  8423. {
  8424. "name": "Jeff Welch",
  8425. "email": "whatthejeff@gmail.com"
  8426. },
  8427. {
  8428. "name": "Volker Dusch",
  8429. "email": "github@wallbash.com"
  8430. },
  8431. {
  8432. "name": "Adam Harvey",
  8433. "email": "aharvey@php.net"
  8434. },
  8435. {
  8436. "name": "Bernhard Schussek",
  8437. "email": "bschussek@gmail.com"
  8438. }
  8439. ],
  8440. "description": "Provides the functionality to export PHP variables for visualization",
  8441. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8442. "keywords": [
  8443. "export",
  8444. "exporter"
  8445. ],
  8446. "time": "2019-09-14T09:02:43+00:00"
  8447. },
  8448. {
  8449. "name": "sebastian/global-state",
  8450. "version": "3.0.0",
  8451. "source": {
  8452. "type": "git",
  8453. "url": "https://github.com/sebastianbergmann/global-state.git",
  8454. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  8455. },
  8456. "dist": {
  8457. "type": "zip",
  8458. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  8459. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  8460. "shasum": "",
  8461. "mirrors": [
  8462. {
  8463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8464. "preferred": true
  8465. }
  8466. ]
  8467. },
  8468. "require": {
  8469. "php": "^7.2",
  8470. "sebastian/object-reflector": "^1.1.1",
  8471. "sebastian/recursion-context": "^3.0"
  8472. },
  8473. "require-dev": {
  8474. "ext-dom": "*",
  8475. "phpunit/phpunit": "^8.0"
  8476. },
  8477. "suggest": {
  8478. "ext-uopz": "*"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "branch-alias": {
  8483. "dev-master": "3.0-dev"
  8484. }
  8485. },
  8486. "autoload": {
  8487. "classmap": [
  8488. "src/"
  8489. ]
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "BSD-3-Clause"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "Sebastian Bergmann",
  8498. "email": "sebastian@phpunit.de"
  8499. }
  8500. ],
  8501. "description": "Snapshotting of global state",
  8502. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8503. "keywords": [
  8504. "global state"
  8505. ],
  8506. "time": "2019-02-01T05:30:01+00:00"
  8507. },
  8508. {
  8509. "name": "sebastian/object-enumerator",
  8510. "version": "3.0.3",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8514. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8519. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8520. "shasum": "",
  8521. "mirrors": [
  8522. {
  8523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8524. "preferred": true
  8525. }
  8526. ]
  8527. },
  8528. "require": {
  8529. "php": "^7.0",
  8530. "sebastian/object-reflector": "^1.1.1",
  8531. "sebastian/recursion-context": "^3.0"
  8532. },
  8533. "require-dev": {
  8534. "phpunit/phpunit": "^6.0"
  8535. },
  8536. "type": "library",
  8537. "extra": {
  8538. "branch-alias": {
  8539. "dev-master": "3.0.x-dev"
  8540. }
  8541. },
  8542. "autoload": {
  8543. "classmap": [
  8544. "src/"
  8545. ]
  8546. },
  8547. "notification-url": "https://packagist.org/downloads/",
  8548. "license": [
  8549. "BSD-3-Clause"
  8550. ],
  8551. "authors": [
  8552. {
  8553. "name": "Sebastian Bergmann",
  8554. "email": "sebastian@phpunit.de"
  8555. }
  8556. ],
  8557. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8558. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8559. "time": "2017-08-03T12:35:26+00:00"
  8560. },
  8561. {
  8562. "name": "sebastian/object-reflector",
  8563. "version": "1.1.1",
  8564. "source": {
  8565. "type": "git",
  8566. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8567. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8568. },
  8569. "dist": {
  8570. "type": "zip",
  8571. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8572. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8573. "shasum": "",
  8574. "mirrors": [
  8575. {
  8576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8577. "preferred": true
  8578. }
  8579. ]
  8580. },
  8581. "require": {
  8582. "php": "^7.0"
  8583. },
  8584. "require-dev": {
  8585. "phpunit/phpunit": "^6.0"
  8586. },
  8587. "type": "library",
  8588. "extra": {
  8589. "branch-alias": {
  8590. "dev-master": "1.1-dev"
  8591. }
  8592. },
  8593. "autoload": {
  8594. "classmap": [
  8595. "src/"
  8596. ]
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "BSD-3-Clause"
  8601. ],
  8602. "authors": [
  8603. {
  8604. "name": "Sebastian Bergmann",
  8605. "email": "sebastian@phpunit.de"
  8606. }
  8607. ],
  8608. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8609. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8610. "time": "2017-03-29T09:07:27+00:00"
  8611. },
  8612. {
  8613. "name": "sebastian/recursion-context",
  8614. "version": "3.0.0",
  8615. "source": {
  8616. "type": "git",
  8617. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8618. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8619. },
  8620. "dist": {
  8621. "type": "zip",
  8622. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8623. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8624. "shasum": "",
  8625. "mirrors": [
  8626. {
  8627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8628. "preferred": true
  8629. }
  8630. ]
  8631. },
  8632. "require": {
  8633. "php": "^7.0"
  8634. },
  8635. "require-dev": {
  8636. "phpunit/phpunit": "^6.0"
  8637. },
  8638. "type": "library",
  8639. "extra": {
  8640. "branch-alias": {
  8641. "dev-master": "3.0.x-dev"
  8642. }
  8643. },
  8644. "autoload": {
  8645. "classmap": [
  8646. "src/"
  8647. ]
  8648. },
  8649. "notification-url": "https://packagist.org/downloads/",
  8650. "license": [
  8651. "BSD-3-Clause"
  8652. ],
  8653. "authors": [
  8654. {
  8655. "name": "Jeff Welch",
  8656. "email": "whatthejeff@gmail.com"
  8657. },
  8658. {
  8659. "name": "Sebastian Bergmann",
  8660. "email": "sebastian@phpunit.de"
  8661. },
  8662. {
  8663. "name": "Adam Harvey",
  8664. "email": "aharvey@php.net"
  8665. }
  8666. ],
  8667. "description": "Provides functionality to recursively process PHP variables",
  8668. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8669. "time": "2017-03-03T06:23:57+00:00"
  8670. },
  8671. {
  8672. "name": "sebastian/resource-operations",
  8673. "version": "2.0.1",
  8674. "source": {
  8675. "type": "git",
  8676. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8677. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  8678. },
  8679. "dist": {
  8680. "type": "zip",
  8681. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8682. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  8683. "shasum": "",
  8684. "mirrors": [
  8685. {
  8686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8687. "preferred": true
  8688. }
  8689. ]
  8690. },
  8691. "require": {
  8692. "php": "^7.1"
  8693. },
  8694. "type": "library",
  8695. "extra": {
  8696. "branch-alias": {
  8697. "dev-master": "2.0-dev"
  8698. }
  8699. },
  8700. "autoload": {
  8701. "classmap": [
  8702. "src/"
  8703. ]
  8704. },
  8705. "notification-url": "https://packagist.org/downloads/",
  8706. "license": [
  8707. "BSD-3-Clause"
  8708. ],
  8709. "authors": [
  8710. {
  8711. "name": "Sebastian Bergmann",
  8712. "email": "sebastian@phpunit.de"
  8713. }
  8714. ],
  8715. "description": "Provides a list of PHP built-in functions that operate on resources",
  8716. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8717. "time": "2018-10-04T04:07:39+00:00"
  8718. },
  8719. {
  8720. "name": "sebastian/type",
  8721. "version": "1.1.3",
  8722. "source": {
  8723. "type": "git",
  8724. "url": "https://github.com/sebastianbergmann/type.git",
  8725. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  8726. },
  8727. "dist": {
  8728. "type": "zip",
  8729. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  8730. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  8731. "shasum": "",
  8732. "mirrors": [
  8733. {
  8734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8735. "preferred": true
  8736. }
  8737. ]
  8738. },
  8739. "require": {
  8740. "php": "^7.2"
  8741. },
  8742. "require-dev": {
  8743. "phpunit/phpunit": "^8.2"
  8744. },
  8745. "type": "library",
  8746. "extra": {
  8747. "branch-alias": {
  8748. "dev-master": "1.1-dev"
  8749. }
  8750. },
  8751. "autoload": {
  8752. "classmap": [
  8753. "src/"
  8754. ]
  8755. },
  8756. "notification-url": "https://packagist.org/downloads/",
  8757. "license": [
  8758. "BSD-3-Clause"
  8759. ],
  8760. "authors": [
  8761. {
  8762. "name": "Sebastian Bergmann",
  8763. "email": "sebastian@phpunit.de",
  8764. "role": "lead"
  8765. }
  8766. ],
  8767. "description": "Collection of value objects that represent the types of the PHP type system",
  8768. "homepage": "https://github.com/sebastianbergmann/type",
  8769. "time": "2019-07-02T08:10:15+00:00"
  8770. },
  8771. {
  8772. "name": "sebastian/version",
  8773. "version": "2.0.1",
  8774. "source": {
  8775. "type": "git",
  8776. "url": "https://github.com/sebastianbergmann/version.git",
  8777. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8778. },
  8779. "dist": {
  8780. "type": "zip",
  8781. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8782. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8783. "shasum": "",
  8784. "mirrors": [
  8785. {
  8786. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8787. "preferred": true
  8788. }
  8789. ]
  8790. },
  8791. "require": {
  8792. "php": ">=5.6"
  8793. },
  8794. "type": "library",
  8795. "extra": {
  8796. "branch-alias": {
  8797. "dev-master": "2.0.x-dev"
  8798. }
  8799. },
  8800. "autoload": {
  8801. "classmap": [
  8802. "src/"
  8803. ]
  8804. },
  8805. "notification-url": "https://packagist.org/downloads/",
  8806. "license": [
  8807. "BSD-3-Clause"
  8808. ],
  8809. "authors": [
  8810. {
  8811. "name": "Sebastian Bergmann",
  8812. "email": "sebastian@phpunit.de",
  8813. "role": "lead"
  8814. }
  8815. ],
  8816. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8817. "homepage": "https://github.com/sebastianbergmann/version",
  8818. "time": "2016-10-03T07:35:21+00:00"
  8819. },
  8820. {
  8821. "name": "theseer/tokenizer",
  8822. "version": "1.2.0",
  8823. "source": {
  8824. "type": "git",
  8825. "url": "https://github.com/theseer/tokenizer.git",
  8826. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  8827. },
  8828. "dist": {
  8829. "type": "zip",
  8830. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  8831. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  8832. "shasum": "",
  8833. "mirrors": [
  8834. {
  8835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8836. "preferred": true
  8837. }
  8838. ]
  8839. },
  8840. "require": {
  8841. "ext-dom": "*",
  8842. "ext-tokenizer": "*",
  8843. "ext-xmlwriter": "*",
  8844. "php": "^7.2 || ^8.0"
  8845. },
  8846. "type": "library",
  8847. "autoload": {
  8848. "classmap": [
  8849. "src/"
  8850. ]
  8851. },
  8852. "notification-url": "https://packagist.org/downloads/",
  8853. "license": [
  8854. "BSD-3-Clause"
  8855. ],
  8856. "authors": [
  8857. {
  8858. "name": "Arne Blankerts",
  8859. "email": "arne@blankerts.de",
  8860. "role": "Developer"
  8861. }
  8862. ],
  8863. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8864. "time": "2020-07-12T23:59:07+00:00"
  8865. },
  8866. {
  8867. "name": "webmozart/assert",
  8868. "version": "1.9.1",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/webmozart/assert.git",
  8872. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8877. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8878. "shasum": "",
  8879. "mirrors": [
  8880. {
  8881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8882. "preferred": true
  8883. }
  8884. ]
  8885. },
  8886. "require": {
  8887. "php": "^5.3.3 || ^7.0 || ^8.0",
  8888. "symfony/polyfill-ctype": "^1.8"
  8889. },
  8890. "conflict": {
  8891. "phpstan/phpstan": "<0.12.20",
  8892. "vimeo/psalm": "<3.9.1"
  8893. },
  8894. "require-dev": {
  8895. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8896. },
  8897. "type": "library",
  8898. "autoload": {
  8899. "psr-4": {
  8900. "Webmozart\\Assert\\": "src/"
  8901. }
  8902. },
  8903. "notification-url": "https://packagist.org/downloads/",
  8904. "license": [
  8905. "MIT"
  8906. ],
  8907. "authors": [
  8908. {
  8909. "name": "Bernhard Schussek",
  8910. "email": "bschussek@gmail.com"
  8911. }
  8912. ],
  8913. "description": "Assertions to validate method input/output with nice error messages.",
  8914. "keywords": [
  8915. "assert",
  8916. "check",
  8917. "validate"
  8918. ],
  8919. "time": "2020-07-08T17:02:28+00:00"
  8920. }
  8921. ],
  8922. "aliases": [],
  8923. "minimum-stability": "dev",
  8924. "stability-flags": [],
  8925. "prefer-stable": true,
  8926. "prefer-lowest": false,
  8927. "platform": {
  8928. "php": "^7.2",
  8929. "ext-curl": "*",
  8930. "ext-dom": "*",
  8931. "ext-json": "*",
  8932. "ext-openssl": "*"
  8933. },
  8934. "platform-dev": []
  8935. }