composer.lock 288 KB

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