composer.lock 314 KB

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