composer.lock 294 KB

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