composer.lock 386 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793
  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": "f0d42b12d63d1f45d3472b9e87c9ab32",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "time": "2019-01-01T23:59:15+00:00"
  63. },
  64. {
  65. "name": "alibabacloud/client",
  66. "version": "1.5.18",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  70. "reference": "5dcf7b8fdfa64abdae7a5ca867289baf95e8e12a"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5dcf7b8fdfa64abdae7a5ca867289baf95e8e12a",
  75. "reference": "5dcf7b8fdfa64abdae7a5ca867289baf95e8e12a",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "adbario/php-dot-notation": "^2.2",
  86. "clagiordano/weblibs-configmanager": "^1.0",
  87. "danielstjules/stringy": "^3.1",
  88. "ext-curl": "*",
  89. "ext-json": "*",
  90. "ext-libxml": "*",
  91. "ext-mbstring": "*",
  92. "ext-openssl": "*",
  93. "ext-simplexml": "*",
  94. "ext-xmlwriter": "*",
  95. "guzzlehttp/guzzle": "^6.3",
  96. "mtdowling/jmespath.php": "^2.4",
  97. "php": ">=5.5"
  98. },
  99. "require-dev": {
  100. "composer/composer": "^1.8",
  101. "drupal/coder": "^8.3",
  102. "ext-dom": "*",
  103. "ext-pcre": "*",
  104. "ext-sockets": "*",
  105. "ext-spl": "*",
  106. "league/climate": "^3.2.4",
  107. "mikey179/vfsstream": "^1.6",
  108. "monolog/monolog": "^1.24",
  109. "phpunit/phpunit": "^4.8.35|^5.4.3",
  110. "psr/cache": "^1.0",
  111. "symfony/dotenv": "^3.4",
  112. "symfony/var-dumper": "^3.4"
  113. },
  114. "suggest": {
  115. "ext-sockets": "To use client-side monitoring"
  116. },
  117. "type": "library",
  118. "autoload": {
  119. "psr-4": {
  120. "AlibabaCloud\\Client\\": "src"
  121. },
  122. "files": [
  123. "src/Functions.php"
  124. ]
  125. },
  126. "notification-url": "https://packagist.org/downloads/",
  127. "license": [
  128. "Apache-2.0"
  129. ],
  130. "authors": [
  131. {
  132. "name": "Alibaba Cloud SDK",
  133. "email": "sdk-team@alibabacloud.com",
  134. "homepage": "http://www.alibabacloud.com"
  135. }
  136. ],
  137. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  138. "homepage": "https://www.alibabacloud.com/",
  139. "keywords": [
  140. "alibaba",
  141. "alibabacloud",
  142. "aliyun",
  143. "client",
  144. "cloud",
  145. "library",
  146. "sdk",
  147. "tool"
  148. ],
  149. "time": "2019-10-11T11:09:47+00:00"
  150. },
  151. {
  152. "name": "alibabacloud/sdk",
  153. "version": "1.7.76",
  154. "source": {
  155. "type": "git",
  156. "url": "https://github.com/aliyun/openapi-sdk-php.git",
  157. "reference": "2532a7d00469ad68215aec8aa0633c9701b55785"
  158. },
  159. "dist": {
  160. "type": "zip",
  161. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php/zipball/2532a7d00469ad68215aec8aa0633c9701b55785",
  162. "reference": "2532a7d00469ad68215aec8aa0633c9701b55785",
  163. "shasum": "",
  164. "mirrors": [
  165. {
  166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  167. "preferred": true
  168. }
  169. ]
  170. },
  171. "require": {
  172. "alibabacloud/client": "^1.5",
  173. "ext-curl": "*",
  174. "ext-json": "*",
  175. "ext-libxml": "*",
  176. "ext-mbstring": "*",
  177. "ext-openssl": "*",
  178. "ext-simplexml": "*",
  179. "ext-xmlwriter": "*",
  180. "php": ">=5.5"
  181. },
  182. "replace": {
  183. "alibabacloud/aas": "self.version",
  184. "alibabacloud/actiontrail": "self.version",
  185. "alibabacloud/aegis": "self.version",
  186. "alibabacloud/afs": "self.version",
  187. "alibabacloud/airec": "self.version",
  188. "alibabacloud/alidns": "self.version",
  189. "alibabacloud/alikafka": "self.version",
  190. "alibabacloud/alimt": "self.version",
  191. "alibabacloud/aliprobe": "self.version",
  192. "alibabacloud/appmallsservice": "self.version",
  193. "alibabacloud/arms": "self.version",
  194. "alibabacloud/arms4finance": "self.version",
  195. "alibabacloud/baas": "self.version",
  196. "alibabacloud/batchcompute": "self.version",
  197. "alibabacloud/bss": "self.version",
  198. "alibabacloud/bssopenapi": "self.version",
  199. "alibabacloud/cas": "self.version",
  200. "alibabacloud/cbn": "self.version",
  201. "alibabacloud/ccc": "self.version",
  202. "alibabacloud/ccs": "self.version",
  203. "alibabacloud/cdn": "self.version",
  204. "alibabacloud/cds": "self.version",
  205. "alibabacloud/cf": "self.version",
  206. "alibabacloud/chatbot": "self.version",
  207. "alibabacloud/cloudapi": "self.version",
  208. "alibabacloud/cloudauth": "self.version",
  209. "alibabacloud/cloudesl": "self.version",
  210. "alibabacloud/cloudmarketing": "self.version",
  211. "alibabacloud/cloudphoto": "self.version",
  212. "alibabacloud/cloudwf": "self.version",
  213. "alibabacloud/cms": "self.version",
  214. "alibabacloud/commondriver": "self.version",
  215. "alibabacloud/companyreg": "self.version",
  216. "alibabacloud/cr": "self.version",
  217. "alibabacloud/crm": "self.version",
  218. "alibabacloud/cs": "self.version",
  219. "alibabacloud/csb": "self.version",
  220. "alibabacloud/cusanalyticsconline": "self.version",
  221. "alibabacloud/dataworkspublic": "self.version",
  222. "alibabacloud/dbs": "self.version",
  223. "alibabacloud/dcdn": "self.version",
  224. "alibabacloud/dds": "self.version",
  225. "alibabacloud/dm": "self.version",
  226. "alibabacloud/dmsenterprise": "self.version",
  227. "alibabacloud/domain": "self.version",
  228. "alibabacloud/domainintl": "self.version",
  229. "alibabacloud/drcloud": "self.version",
  230. "alibabacloud/drds": "self.version",
  231. "alibabacloud/dts": "self.version",
  232. "alibabacloud/dybaseapi": "self.version",
  233. "alibabacloud/dypnsapi": "self.version",
  234. "alibabacloud/dysmsapi": "self.version",
  235. "alibabacloud/dyvmsapi": "self.version",
  236. "alibabacloud/eci": "self.version",
  237. "alibabacloud/ecs": "self.version",
  238. "alibabacloud/ecsinc": "self.version",
  239. "alibabacloud/edas": "self.version",
  240. "alibabacloud/ehpc": "self.version",
  241. "alibabacloud/emr": "self.version",
  242. "alibabacloud/ess": "self.version",
  243. "alibabacloud/fnf": "self.version",
  244. "alibabacloud/foas": "self.version",
  245. "alibabacloud/ft": "self.version",
  246. "alibabacloud/gpdb": "self.version",
  247. "alibabacloud/green": "self.version",
  248. "alibabacloud/hpc": "self.version",
  249. "alibabacloud/hsm": "self.version",
  250. "alibabacloud/httpdns": "self.version",
  251. "alibabacloud/idst": "self.version",
  252. "alibabacloud/imagesearch": "self.version",
  253. "alibabacloud/imm": "self.version",
  254. "alibabacloud/industrybrain": "self.version",
  255. "alibabacloud/iot": "self.version",
  256. "alibabacloud/itaas": "self.version",
  257. "alibabacloud/ivision": "self.version",
  258. "alibabacloud/jaq": "self.version",
  259. "alibabacloud/jarvis": "self.version",
  260. "alibabacloud/jarvispublic": "self.version",
  261. "alibabacloud/kms": "self.version",
  262. "alibabacloud/linkedmall": "self.version",
  263. "alibabacloud/linkface": "self.version",
  264. "alibabacloud/linkwan": "self.version",
  265. "alibabacloud/live": "self.version",
  266. "alibabacloud/lubancloud": "self.version",
  267. "alibabacloud/lubanruler": "self.version",
  268. "alibabacloud/market": "self.version",
  269. "alibabacloud/mopen": "self.version",
  270. "alibabacloud/mts": "self.version",
  271. "alibabacloud/nas": "self.version",
  272. "alibabacloud/netana": "self.version",
  273. "alibabacloud/nlp": "self.version",
  274. "alibabacloud/nlscloudmeta": "self.version",
  275. "alibabacloud/nlsfiletrans": "self.version",
  276. "alibabacloud/ocs": "self.version",
  277. "alibabacloud/oms": "self.version",
  278. "alibabacloud/ons": "self.version",
  279. "alibabacloud/openanalytics": "self.version",
  280. "alibabacloud/ossadmin": "self.version",
  281. "alibabacloud/ots": "self.version",
  282. "alibabacloud/petadata": "self.version",
  283. "alibabacloud/polardb": "self.version",
  284. "alibabacloud/productcatalog": "self.version",
  285. "alibabacloud/pts": "self.version",
  286. "alibabacloud/push": "self.version",
  287. "alibabacloud/pvtz": "self.version",
  288. "alibabacloud/qualitycheck": "self.version",
  289. "alibabacloud/ram": "self.version",
  290. "alibabacloud/rds": "self.version",
  291. "alibabacloud/retailcloud": "self.version",
  292. "alibabacloud/rkvstore": "self.version",
  293. "alibabacloud/ros": "self.version",
  294. "alibabacloud/rtc": "self.version",
  295. "alibabacloud/saf": "self.version",
  296. "alibabacloud/sas": "self.version",
  297. "alibabacloud/sasapi": "self.version",
  298. "alibabacloud/scdn": "self.version",
  299. "alibabacloud/skyeye": "self.version",
  300. "alibabacloud/slb": "self.version",
  301. "alibabacloud/smartag": "self.version",
  302. "alibabacloud/sms": "self.version",
  303. "alibabacloud/smsintl": "self.version",
  304. "alibabacloud/snsuapi": "self.version",
  305. "alibabacloud/sts": "self.version",
  306. "alibabacloud/taginner": "self.version",
  307. "alibabacloud/tesladam": "self.version",
  308. "alibabacloud/teslamaxcompute": "self.version",
  309. "alibabacloud/teslastream": "self.version",
  310. "alibabacloud/ubsms": "self.version",
  311. "alibabacloud/ubsmsinner": "self.version",
  312. "alibabacloud/uis": "self.version",
  313. "alibabacloud/vod": "self.version",
  314. "alibabacloud/vpc": "self.version",
  315. "alibabacloud/vs": "self.version",
  316. "alibabacloud/wafopenapi": "self.version",
  317. "alibabacloud/welfareinner": "self.version",
  318. "alibabacloud/xspace": "self.version",
  319. "alibabacloud/yqbridge": "self.version",
  320. "alibabacloud/yundun": "self.version"
  321. },
  322. "require-dev": {
  323. "composer/composer": "^1.8",
  324. "league/climate": "^3.2.4",
  325. "phpunit/phpunit": "^4.8",
  326. "symfony/dotenv": "^3.4",
  327. "symfony/var-dumper": "^3.4"
  328. },
  329. "suggest": {
  330. "ext-sockets": "To use client-side monitoring"
  331. },
  332. "type": "library",
  333. "autoload": {
  334. "psr-4": {
  335. "AlibabaCloud\\": "src"
  336. }
  337. },
  338. "notification-url": "https://packagist.org/downloads/",
  339. "license": [
  340. "Apache-2.0"
  341. ],
  342. "authors": [
  343. {
  344. "name": "Alibaba Cloud SDK",
  345. "email": "sdk-team@alibabacloud.com",
  346. "homepage": "http://www.alibabacloud.com"
  347. }
  348. ],
  349. "description": "Alibaba Cloud SDK for PHP - Easier to Use Alibaba Cloud in your PHP project",
  350. "homepage": "https://www.alibabacloud.com/",
  351. "keywords": [
  352. "alibaba",
  353. "alibabacloud",
  354. "aliyun",
  355. "cloud",
  356. "library",
  357. "sdk"
  358. ],
  359. "time": "2019-08-21T12:11:35+00:00"
  360. },
  361. {
  362. "name": "alicfeng/identity-card",
  363. "version": "v3.0",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/alicfeng/IdentityCard.git",
  367. "reference": "8db49fa8936258f7f7b0ae1a736702e82cf16a04"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/alicfeng/IdentityCard/zipball/8db49fa8936258f7f7b0ae1a736702e82cf16a04",
  372. "reference": "8db49fa8936258f7f7b0ae1a736702e82cf16a04",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "ext-gd": "*",
  383. "ext-iconv": "*"
  384. },
  385. "require-dev": {
  386. "phpunit/phpunit": "@stable"
  387. },
  388. "type": "library",
  389. "autoload": {
  390. "psr-4": {
  391. "AlicFeng\\": "src/"
  392. }
  393. },
  394. "notification-url": "https://packagist.org/downloads/",
  395. "license": [
  396. "MIT"
  397. ],
  398. "authors": [
  399. {
  400. "name": "AlicFeng",
  401. "email": "a@samego.com"
  402. }
  403. ],
  404. "description": "IdentityCard Library",
  405. "keywords": [
  406. "China",
  407. "IdentityCard",
  408. "alicfeng",
  409. "id",
  410. "idcard",
  411. "identify",
  412. "samego"
  413. ],
  414. "time": "2019-06-24T17:34:55+00:00"
  415. },
  416. {
  417. "name": "aliyuncs/oss-sdk-php",
  418. "version": "v2.3.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  422. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  427. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  428. "shasum": "",
  429. "mirrors": [
  430. {
  431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  432. "preferred": true
  433. }
  434. ]
  435. },
  436. "require": {
  437. "php": ">=5.3"
  438. },
  439. "require-dev": {
  440. "phpunit/phpunit": "~4.0",
  441. "satooshi/php-coveralls": "~1.0"
  442. },
  443. "type": "library",
  444. "autoload": {
  445. "psr-4": {
  446. "OSS\\": "src/OSS"
  447. }
  448. },
  449. "notification-url": "https://packagist.org/downloads/",
  450. "license": [
  451. "MIT"
  452. ],
  453. "authors": [
  454. {
  455. "name": "Aliyuncs",
  456. "homepage": "http://www.aliyun.com"
  457. }
  458. ],
  459. "description": "Aliyun OSS SDK for PHP",
  460. "homepage": "http://www.aliyun.com/product/oss/",
  461. "time": "2018-01-08T06:59:35+00:00"
  462. },
  463. {
  464. "name": "asm89/stack-cors",
  465. "version": "1.2.0",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/asm89/stack-cors.git",
  469. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  474. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  475. "shasum": "",
  476. "mirrors": [
  477. {
  478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  479. "preferred": true
  480. }
  481. ]
  482. },
  483. "require": {
  484. "php": ">=5.5.9",
  485. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  486. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  487. },
  488. "require-dev": {
  489. "phpunit/phpunit": "^5.0 || ^4.8.10",
  490. "squizlabs/php_codesniffer": "^2.3"
  491. },
  492. "type": "library",
  493. "extra": {
  494. "branch-alias": {
  495. "dev-master": "1.2-dev"
  496. }
  497. },
  498. "autoload": {
  499. "psr-4": {
  500. "Asm89\\Stack\\": "src/Asm89/Stack/"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "authors": [
  508. {
  509. "name": "Alexander",
  510. "email": "iam.asm89@gmail.com"
  511. }
  512. ],
  513. "description": "Cross-origin resource sharing library and stack middleware",
  514. "homepage": "https://github.com/asm89/stack-cors",
  515. "keywords": [
  516. "cors",
  517. "stack"
  518. ],
  519. "time": "2017-12-20T14:37:45+00:00"
  520. },
  521. {
  522. "name": "bacon/bacon-qr-code",
  523. "version": "1.0.3",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/Bacon/BaconQrCode.git",
  527. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  532. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  533. "shasum": "",
  534. "mirrors": [
  535. {
  536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  537. "preferred": true
  538. }
  539. ]
  540. },
  541. "require": {
  542. "ext-iconv": "*",
  543. "php": "^5.4|^7.0"
  544. },
  545. "require-dev": {
  546. "phpunit/phpunit": "^4.8"
  547. },
  548. "suggest": {
  549. "ext-gd": "to generate QR code images"
  550. },
  551. "type": "library",
  552. "autoload": {
  553. "psr-0": {
  554. "BaconQrCode": "src/"
  555. }
  556. },
  557. "notification-url": "https://packagist.org/downloads/",
  558. "license": [
  559. "BSD-2-Clause"
  560. ],
  561. "authors": [
  562. {
  563. "name": "Ben Scholzen 'DASPRiD'",
  564. "role": "Developer",
  565. "email": "mail@dasprids.de",
  566. "homepage": "http://www.dasprids.de"
  567. }
  568. ],
  569. "description": "BaconQrCode is a QR code generator for PHP.",
  570. "homepage": "https://github.com/Bacon/BaconQrCode",
  571. "time": "2017-10-17T09:59:25+00:00"
  572. },
  573. {
  574. "name": "barryvdh/laravel-cors",
  575. "version": "v0.11.4",
  576. "source": {
  577. "type": "git",
  578. "url": "https://github.com/barryvdh/laravel-cors.git",
  579. "reference": "03492f1a3bc74a05de23f93b94ac7cc5c173eec9"
  580. },
  581. "dist": {
  582. "type": "zip",
  583. "url": "https://api.github.com/repos/barryvdh/laravel-cors/zipball/03492f1a3bc74a05de23f93b94ac7cc5c173eec9",
  584. "reference": "03492f1a3bc74a05de23f93b94ac7cc5c173eec9",
  585. "shasum": "",
  586. "mirrors": [
  587. {
  588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  589. "preferred": true
  590. }
  591. ]
  592. },
  593. "require": {
  594. "asm89/stack-cors": "^1.2",
  595. "illuminate/support": "^5.5|^6",
  596. "php": ">=7",
  597. "symfony/http-foundation": "^3.1|^4",
  598. "symfony/http-kernel": "^3.1|^4"
  599. },
  600. "require-dev": {
  601. "laravel/framework": "^5.5",
  602. "orchestra/testbench": "3.3.x|3.4.x|3.5.x|3.6.x|3.7.x",
  603. "phpunit/phpunit": "^4.8|^5.2|^7.0",
  604. "squizlabs/php_codesniffer": "^2.3"
  605. },
  606. "type": "library",
  607. "extra": {
  608. "branch-alias": {
  609. "dev-master": "0.11-dev"
  610. },
  611. "laravel": {
  612. "providers": [
  613. "Barryvdh\\Cors\\ServiceProvider"
  614. ]
  615. }
  616. },
  617. "autoload": {
  618. "psr-4": {
  619. "Barryvdh\\Cors\\": "src/"
  620. }
  621. },
  622. "notification-url": "https://packagist.org/downloads/",
  623. "license": [
  624. "MIT"
  625. ],
  626. "authors": [
  627. {
  628. "name": "Barry vd. Heuvel",
  629. "email": "barryvdh@gmail.com"
  630. }
  631. ],
  632. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  633. "keywords": [
  634. "api",
  635. "cors",
  636. "crossdomain",
  637. "laravel"
  638. ],
  639. "time": "2019-08-28T11:27:11+00:00"
  640. },
  641. {
  642. "name": "barryvdh/laravel-snappy",
  643. "version": "v0.4.4",
  644. "source": {
  645. "type": "git",
  646. "url": "https://github.com/barryvdh/laravel-snappy.git",
  647. "reference": "4379153df99c04938946b8174337eb99a8852a8f"
  648. },
  649. "dist": {
  650. "type": "zip",
  651. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/4379153df99c04938946b8174337eb99a8852a8f",
  652. "reference": "4379153df99c04938946b8174337eb99a8852a8f",
  653. "shasum": "",
  654. "mirrors": [
  655. {
  656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  657. "preferred": true
  658. }
  659. ]
  660. },
  661. "require": {
  662. "illuminate/filesystem": "5.5.x|5.6.x|5.7.x|5.8.x",
  663. "illuminate/support": "5.5.x|5.6.x|5.7.x|5.8.x",
  664. "knplabs/knp-snappy": "^1",
  665. "php": ">=7"
  666. },
  667. "type": "library",
  668. "extra": {
  669. "branch-alias": {
  670. "dev-master": "0.4-dev"
  671. },
  672. "laravel": {
  673. "providers": [
  674. "Barryvdh\\Snappy\\ServiceProvider"
  675. ],
  676. "aliases": {
  677. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  678. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  679. }
  680. }
  681. },
  682. "autoload": {
  683. "psr-4": {
  684. "Barryvdh\\Snappy\\": "src/"
  685. }
  686. },
  687. "notification-url": "https://packagist.org/downloads/",
  688. "license": [
  689. "MIT"
  690. ],
  691. "authors": [
  692. {
  693. "name": "Barry vd. Heuvel",
  694. "email": "barryvdh@gmail.com"
  695. }
  696. ],
  697. "description": "Snappy PDF/Image for Laravel",
  698. "keywords": [
  699. "image",
  700. "laravel",
  701. "pdf",
  702. "snappy",
  703. "wkhtmltoimage",
  704. "wkhtmltopdf"
  705. ],
  706. "time": "2019-02-26T20:00:55+00:00"
  707. },
  708. {
  709. "name": "binarytorch/larecipe",
  710. "version": "v2.1.3",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/saleem-hadad/larecipe.git",
  714. "reference": "fef3c74ca3c99524254b78baf49e3ef0fbd20ecc"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/saleem-hadad/larecipe/zipball/fef3c74ca3c99524254b78baf49e3ef0fbd20ecc",
  719. "reference": "fef3c74ca3c99524254b78baf49e3ef0fbd20ecc",
  720. "shasum": "",
  721. "mirrors": [
  722. {
  723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  724. "preferred": true
  725. }
  726. ]
  727. },
  728. "require": {
  729. "erusev/parsedown-extra": "^0.7.1",
  730. "illuminate/support": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  731. "illuminate/view": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  732. "php": ">=7.1.3",
  733. "symfony/dom-crawler": "^4.1"
  734. },
  735. "require-dev": {
  736. "laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  737. "orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0|~3.7.0|~3.8.0",
  738. "phpunit/phpunit": "~7.0|~7.5"
  739. },
  740. "type": "library",
  741. "extra": {
  742. "laravel": {
  743. "providers": [
  744. "BinaryTorch\\LaRecipe\\LaRecipeServiceProvider"
  745. ],
  746. "aliases": {
  747. "LaRecipe": "BinaryTorch\\LaRecipe\\LaRecipe"
  748. }
  749. }
  750. },
  751. "autoload": {
  752. "psr-4": {
  753. "BinaryTorch\\LaRecipe\\": "src/"
  754. }
  755. },
  756. "notification-url": "https://packagist.org/downloads/",
  757. "license": [
  758. "MIT"
  759. ],
  760. "authors": [
  761. {
  762. "name": "Saleem Hadad",
  763. "email": "saleem@binary-torch.com"
  764. }
  765. ],
  766. "description": "Generate gorgeous recipes for your Laravel applications using MarkDown",
  767. "keywords": [
  768. "api",
  769. "docs",
  770. "documentation",
  771. "laravel",
  772. "markdown"
  773. ],
  774. "time": "2019-05-15T04:19:20+00:00"
  775. },
  776. {
  777. "name": "clagiordano/weblibs-configmanager",
  778. "version": "v1.0.6",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  782. "reference": "d1869310b9f57812581ff56cf4b456cbcc0d0516"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/d1869310b9f57812581ff56cf4b456cbcc0d0516",
  787. "reference": "d1869310b9f57812581ff56cf4b456cbcc0d0516",
  788. "shasum": "",
  789. "mirrors": [
  790. {
  791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  792. "preferred": true
  793. }
  794. ]
  795. },
  796. "require": {
  797. "php": ">=5.4"
  798. },
  799. "require-dev": {
  800. "phpunit/phpunit": "*"
  801. },
  802. "type": "library",
  803. "autoload": {
  804. "psr-4": {
  805. "clagiordano\\weblibs\\configmanager\\": "src/"
  806. }
  807. },
  808. "notification-url": "https://packagist.org/downloads/",
  809. "license": [
  810. "LGPL-3.0"
  811. ],
  812. "authors": [
  813. {
  814. "name": "Claudio Giordano",
  815. "email": "claudio.giordano@autistici.org",
  816. "role": "Developer"
  817. }
  818. ],
  819. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  820. "keywords": [
  821. "clagiordano",
  822. "configuration",
  823. "manager",
  824. "tool",
  825. "weblibs"
  826. ],
  827. "time": "2016-08-23T19:11:20+00:00"
  828. },
  829. {
  830. "name": "danielstjules/stringy",
  831. "version": "3.1.0",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/danielstjules/Stringy.git",
  835. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  840. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  841. "shasum": "",
  842. "mirrors": [
  843. {
  844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  845. "preferred": true
  846. }
  847. ]
  848. },
  849. "require": {
  850. "php": ">=5.4.0",
  851. "symfony/polyfill-mbstring": "~1.1"
  852. },
  853. "require-dev": {
  854. "phpunit/phpunit": "~4.0"
  855. },
  856. "type": "library",
  857. "autoload": {
  858. "psr-4": {
  859. "Stringy\\": "src/"
  860. },
  861. "files": [
  862. "src/Create.php"
  863. ]
  864. },
  865. "notification-url": "https://packagist.org/downloads/",
  866. "license": [
  867. "MIT"
  868. ],
  869. "authors": [
  870. {
  871. "name": "Daniel St. Jules",
  872. "email": "danielst.jules@gmail.com",
  873. "homepage": "http://www.danielstjules.com"
  874. }
  875. ],
  876. "description": "A string manipulation library with multibyte support",
  877. "homepage": "https://github.com/danielstjules/Stringy",
  878. "keywords": [
  879. "UTF",
  880. "helpers",
  881. "manipulation",
  882. "methods",
  883. "multibyte",
  884. "string",
  885. "utf-8",
  886. "utility",
  887. "utils"
  888. ],
  889. "time": "2017-06-12T01:10:27+00:00"
  890. },
  891. {
  892. "name": "dnoegel/php-xdg-base-dir",
  893. "version": "0.1",
  894. "source": {
  895. "type": "git",
  896. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  897. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  898. },
  899. "dist": {
  900. "type": "zip",
  901. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  902. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  903. "shasum": "",
  904. "mirrors": [
  905. {
  906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  907. "preferred": true
  908. }
  909. ]
  910. },
  911. "require": {
  912. "php": ">=5.3.2"
  913. },
  914. "require-dev": {
  915. "phpunit/phpunit": "@stable"
  916. },
  917. "type": "project",
  918. "autoload": {
  919. "psr-4": {
  920. "XdgBaseDir\\": "src/"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "description": "implementation of xdg base directory specification for php",
  928. "time": "2014-10-24T07:27:01+00:00"
  929. },
  930. {
  931. "name": "doctrine/cache",
  932. "version": "v1.8.0",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/doctrine/cache.git",
  936. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
  941. "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
  942. "shasum": "",
  943. "mirrors": [
  944. {
  945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  946. "preferred": true
  947. }
  948. ]
  949. },
  950. "require": {
  951. "php": "~7.1"
  952. },
  953. "conflict": {
  954. "doctrine/common": ">2.2,<2.4"
  955. },
  956. "require-dev": {
  957. "alcaeus/mongo-php-adapter": "^1.1",
  958. "doctrine/coding-standard": "^4.0",
  959. "mongodb/mongodb": "^1.1",
  960. "phpunit/phpunit": "^7.0",
  961. "predis/predis": "~1.0"
  962. },
  963. "suggest": {
  964. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  965. },
  966. "type": "library",
  967. "extra": {
  968. "branch-alias": {
  969. "dev-master": "1.8.x-dev"
  970. }
  971. },
  972. "autoload": {
  973. "psr-4": {
  974. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  975. }
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "authors": [
  982. {
  983. "name": "Roman Borschel",
  984. "email": "roman@code-factory.org"
  985. },
  986. {
  987. "name": "Benjamin Eberlei",
  988. "email": "kontakt@beberlei.de"
  989. },
  990. {
  991. "name": "Guilherme Blanco",
  992. "email": "guilhermeblanco@gmail.com"
  993. },
  994. {
  995. "name": "Jonathan Wage",
  996. "email": "jonwage@gmail.com"
  997. },
  998. {
  999. "name": "Johannes Schmitt",
  1000. "email": "schmittjoh@gmail.com"
  1001. }
  1002. ],
  1003. "description": "Caching library offering an object-oriented API for many cache backends",
  1004. "homepage": "https://www.doctrine-project.org",
  1005. "keywords": [
  1006. "cache",
  1007. "caching"
  1008. ],
  1009. "time": "2018-08-21T18:01:43+00:00"
  1010. },
  1011. {
  1012. "name": "doctrine/dbal",
  1013. "version": "v2.9.2",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/doctrine/dbal.git",
  1017. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/doctrine/dbal/zipball/22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  1022. "reference": "22800bd651c1d8d2a9719e2a3dc46d5108ebfcc9",
  1023. "shasum": "",
  1024. "mirrors": [
  1025. {
  1026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1027. "preferred": true
  1028. }
  1029. ]
  1030. },
  1031. "require": {
  1032. "doctrine/cache": "^1.0",
  1033. "doctrine/event-manager": "^1.0",
  1034. "ext-pdo": "*",
  1035. "php": "^7.1"
  1036. },
  1037. "require-dev": {
  1038. "doctrine/coding-standard": "^5.0",
  1039. "jetbrains/phpstorm-stubs": "^2018.1.2",
  1040. "phpstan/phpstan": "^0.10.1",
  1041. "phpunit/phpunit": "^7.4",
  1042. "symfony/console": "^2.0.5|^3.0|^4.0",
  1043. "symfony/phpunit-bridge": "^3.4.5|^4.0.5"
  1044. },
  1045. "suggest": {
  1046. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1047. },
  1048. "bin": [
  1049. "bin/doctrine-dbal"
  1050. ],
  1051. "type": "library",
  1052. "extra": {
  1053. "branch-alias": {
  1054. "dev-master": "2.9.x-dev",
  1055. "dev-develop": "3.0.x-dev"
  1056. }
  1057. },
  1058. "autoload": {
  1059. "psr-4": {
  1060. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1061. }
  1062. },
  1063. "notification-url": "https://packagist.org/downloads/",
  1064. "license": [
  1065. "MIT"
  1066. ],
  1067. "authors": [
  1068. {
  1069. "name": "Roman Borschel",
  1070. "email": "roman@code-factory.org"
  1071. },
  1072. {
  1073. "name": "Benjamin Eberlei",
  1074. "email": "kontakt@beberlei.de"
  1075. },
  1076. {
  1077. "name": "Guilherme Blanco",
  1078. "email": "guilhermeblanco@gmail.com"
  1079. },
  1080. {
  1081. "name": "Jonathan Wage",
  1082. "email": "jonwage@gmail.com"
  1083. }
  1084. ],
  1085. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1086. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1087. "keywords": [
  1088. "abstraction",
  1089. "database",
  1090. "dbal",
  1091. "mysql",
  1092. "persistence",
  1093. "pgsql",
  1094. "php",
  1095. "queryobject"
  1096. ],
  1097. "time": "2018-12-31T03:27:51+00:00"
  1098. },
  1099. {
  1100. "name": "doctrine/event-manager",
  1101. "version": "v1.0.0",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/doctrine/event-manager.git",
  1105. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  1110. "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
  1111. "shasum": "",
  1112. "mirrors": [
  1113. {
  1114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1115. "preferred": true
  1116. }
  1117. ]
  1118. },
  1119. "require": {
  1120. "php": "^7.1"
  1121. },
  1122. "conflict": {
  1123. "doctrine/common": "<2.9@dev"
  1124. },
  1125. "require-dev": {
  1126. "doctrine/coding-standard": "^4.0",
  1127. "phpunit/phpunit": "^7.0"
  1128. },
  1129. "type": "library",
  1130. "extra": {
  1131. "branch-alias": {
  1132. "dev-master": "1.0.x-dev"
  1133. }
  1134. },
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Roman Borschel",
  1147. "email": "roman@code-factory.org"
  1148. },
  1149. {
  1150. "name": "Benjamin Eberlei",
  1151. "email": "kontakt@beberlei.de"
  1152. },
  1153. {
  1154. "name": "Guilherme Blanco",
  1155. "email": "guilhermeblanco@gmail.com"
  1156. },
  1157. {
  1158. "name": "Jonathan Wage",
  1159. "email": "jonwage@gmail.com"
  1160. },
  1161. {
  1162. "name": "Johannes Schmitt",
  1163. "email": "schmittjoh@gmail.com"
  1164. },
  1165. {
  1166. "name": "Marco Pivetta",
  1167. "email": "ocramius@gmail.com"
  1168. }
  1169. ],
  1170. "description": "Doctrine Event Manager component",
  1171. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1172. "keywords": [
  1173. "event",
  1174. "eventdispatcher",
  1175. "eventmanager"
  1176. ],
  1177. "time": "2018-06-11T11:59:03+00:00"
  1178. },
  1179. {
  1180. "name": "doctrine/inflector",
  1181. "version": "v1.3.0",
  1182. "source": {
  1183. "type": "git",
  1184. "url": "https://github.com/doctrine/inflector.git",
  1185. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  1186. },
  1187. "dist": {
  1188. "type": "zip",
  1189. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  1190. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  1191. "shasum": "",
  1192. "mirrors": [
  1193. {
  1194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1195. "preferred": true
  1196. }
  1197. ]
  1198. },
  1199. "require": {
  1200. "php": "^7.1"
  1201. },
  1202. "require-dev": {
  1203. "phpunit/phpunit": "^6.2"
  1204. },
  1205. "type": "library",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-master": "1.3.x-dev"
  1209. }
  1210. },
  1211. "autoload": {
  1212. "psr-4": {
  1213. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1214. }
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "MIT"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Roman Borschel",
  1223. "email": "roman@code-factory.org"
  1224. },
  1225. {
  1226. "name": "Benjamin Eberlei",
  1227. "email": "kontakt@beberlei.de"
  1228. },
  1229. {
  1230. "name": "Guilherme Blanco",
  1231. "email": "guilhermeblanco@gmail.com"
  1232. },
  1233. {
  1234. "name": "Jonathan Wage",
  1235. "email": "jonwage@gmail.com"
  1236. },
  1237. {
  1238. "name": "Johannes Schmitt",
  1239. "email": "schmittjoh@gmail.com"
  1240. }
  1241. ],
  1242. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1243. "homepage": "http://www.doctrine-project.org",
  1244. "keywords": [
  1245. "inflection",
  1246. "pluralize",
  1247. "singularize",
  1248. "string"
  1249. ],
  1250. "time": "2018-01-09T20:05:19+00:00"
  1251. },
  1252. {
  1253. "name": "doctrine/lexer",
  1254. "version": "1.0.1",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/doctrine/lexer.git",
  1258. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1263. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  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. "php": ">=5.3.2"
  1274. },
  1275. "require-dev": {
  1276. "doctrine/coding-standard": "^6.0",
  1277. "phpstan/phpstan": "^0.11.8",
  1278. "phpunit/phpunit": "^8.2"
  1279. },
  1280. "type": "library",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-master": "1.1.x-dev"
  1284. }
  1285. },
  1286. "autoload": {
  1287. "psr-4": {
  1288. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "authors": [
  1296. {
  1297. "name": "Guilherme Blanco",
  1298. "email": "guilhermeblanco@gmail.com"
  1299. },
  1300. {
  1301. "name": "Roman Borschel",
  1302. "email": "roman@code-factory.org"
  1303. },
  1304. {
  1305. "name": "Johannes Schmitt",
  1306. "email": "schmittjoh@gmail.com"
  1307. }
  1308. ],
  1309. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1310. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1311. "keywords": [
  1312. "annotations",
  1313. "docblock",
  1314. "lexer",
  1315. "parser",
  1316. "php"
  1317. ],
  1318. "time": "2019-07-30T19:33:28+00:00"
  1319. },
  1320. {
  1321. "name": "dragonmantank/cron-expression",
  1322. "version": "v2.3.0",
  1323. "source": {
  1324. "type": "git",
  1325. "url": "https://github.com/dragonmantank/cron-expression.git",
  1326. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  1327. },
  1328. "dist": {
  1329. "type": "zip",
  1330. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  1331. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  1332. "shasum": "",
  1333. "mirrors": [
  1334. {
  1335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1336. "preferred": true
  1337. }
  1338. ]
  1339. },
  1340. "require": {
  1341. "php": "^7.0"
  1342. },
  1343. "require-dev": {
  1344. "phpunit/phpunit": "^6.4|^7.0"
  1345. },
  1346. "type": "library",
  1347. "extra": {
  1348. "branch-alias": {
  1349. "dev-master": "2.3-dev"
  1350. }
  1351. },
  1352. "autoload": {
  1353. "psr-4": {
  1354. "Cron\\": "src/Cron/"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Michael Dowling",
  1364. "email": "mtdowling@gmail.com",
  1365. "homepage": "https://github.com/mtdowling"
  1366. },
  1367. {
  1368. "name": "Chris Tankersley",
  1369. "email": "chris@ctankersley.com",
  1370. "homepage": "https://github.com/dragonmantank"
  1371. }
  1372. ],
  1373. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1374. "keywords": [
  1375. "cron",
  1376. "schedule"
  1377. ],
  1378. "time": "2019-03-31T00:38:28+00:00"
  1379. },
  1380. {
  1381. "name": "egulias/email-validator",
  1382. "version": "2.1.11",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/egulias/EmailValidator.git",
  1386. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  1391. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  1392. "shasum": "",
  1393. "mirrors": [
  1394. {
  1395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1396. "preferred": true
  1397. }
  1398. ]
  1399. },
  1400. "require": {
  1401. "doctrine/lexer": "^1.0.1",
  1402. "php": ">= 5.5"
  1403. },
  1404. "require-dev": {
  1405. "dominicsayers/isemail": "dev-master",
  1406. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  1407. "satooshi/php-coveralls": "^1.0.1",
  1408. "symfony/phpunit-bridge": "^4.4@dev"
  1409. },
  1410. "suggest": {
  1411. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1412. },
  1413. "type": "library",
  1414. "extra": {
  1415. "branch-alias": {
  1416. "dev-master": "2.1.x-dev"
  1417. }
  1418. },
  1419. "autoload": {
  1420. "psr-4": {
  1421. "Egulias\\EmailValidator\\": "EmailValidator"
  1422. }
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "MIT"
  1427. ],
  1428. "authors": [
  1429. {
  1430. "name": "Eduardo Gulias Davis"
  1431. }
  1432. ],
  1433. "description": "A library for validating emails against several RFCs",
  1434. "homepage": "https://github.com/egulias/EmailValidator",
  1435. "keywords": [
  1436. "email",
  1437. "emailvalidation",
  1438. "emailvalidator",
  1439. "validation",
  1440. "validator"
  1441. ],
  1442. "time": "2019-08-13T17:33:27+00:00"
  1443. },
  1444. {
  1445. "name": "erusev/parsedown",
  1446. "version": "1.7.3",
  1447. "source": {
  1448. "type": "git",
  1449. "url": "https://github.com/erusev/parsedown.git",
  1450. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  1451. },
  1452. "dist": {
  1453. "type": "zip",
  1454. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  1455. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  1456. "shasum": "",
  1457. "mirrors": [
  1458. {
  1459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1460. "preferred": true
  1461. }
  1462. ]
  1463. },
  1464. "require": {
  1465. "ext-mbstring": "*",
  1466. "php": ">=5.3.0"
  1467. },
  1468. "require-dev": {
  1469. "phpunit/phpunit": "^4.8.35"
  1470. },
  1471. "type": "library",
  1472. "autoload": {
  1473. "psr-0": {
  1474. "Parsedown": ""
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "MIT"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Emanuil Rusev",
  1484. "email": "hello@erusev.com",
  1485. "homepage": "http://erusev.com"
  1486. }
  1487. ],
  1488. "description": "Parser for Markdown.",
  1489. "homepage": "http://parsedown.org",
  1490. "keywords": [
  1491. "markdown",
  1492. "parser"
  1493. ],
  1494. "time": "2019-03-17T18:48:37+00:00"
  1495. },
  1496. {
  1497. "name": "erusev/parsedown-extra",
  1498. "version": "0.7.1",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/erusev/parsedown-extra.git",
  1502. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  1507. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  1508. "shasum": "",
  1509. "mirrors": [
  1510. {
  1511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1512. "preferred": true
  1513. }
  1514. ]
  1515. },
  1516. "require": {
  1517. "erusev/parsedown": "~1.4"
  1518. },
  1519. "type": "library",
  1520. "autoload": {
  1521. "psr-0": {
  1522. "ParsedownExtra": ""
  1523. }
  1524. },
  1525. "notification-url": "https://packagist.org/downloads/",
  1526. "license": [
  1527. "MIT"
  1528. ],
  1529. "authors": [
  1530. {
  1531. "name": "Emanuil Rusev",
  1532. "email": "hello@erusev.com",
  1533. "homepage": "http://erusev.com"
  1534. }
  1535. ],
  1536. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  1537. "homepage": "https://github.com/erusev/parsedown-extra",
  1538. "keywords": [
  1539. "markdown",
  1540. "markdown extra",
  1541. "parsedown",
  1542. "parser"
  1543. ],
  1544. "time": "2015-11-01T10:19:22+00:00"
  1545. },
  1546. {
  1547. "name": "fideloper/proxy",
  1548. "version": "4.2.1",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/fideloper/TrustedProxy.git",
  1552. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  1557. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  1558. "shasum": "",
  1559. "mirrors": [
  1560. {
  1561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1562. "preferred": true
  1563. }
  1564. ]
  1565. },
  1566. "require": {
  1567. "illuminate/contracts": "^5.0|^6.0|^7.0",
  1568. "php": ">=5.4.0"
  1569. },
  1570. "require-dev": {
  1571. "illuminate/http": "^5.0|^6.0|^7.0",
  1572. "mockery/mockery": "^1.0",
  1573. "phpunit/phpunit": "^6.0"
  1574. },
  1575. "type": "library",
  1576. "extra": {
  1577. "laravel": {
  1578. "providers": [
  1579. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1580. ]
  1581. }
  1582. },
  1583. "autoload": {
  1584. "psr-4": {
  1585. "Fideloper\\Proxy\\": "src/"
  1586. }
  1587. },
  1588. "notification-url": "https://packagist.org/downloads/",
  1589. "license": [
  1590. "MIT"
  1591. ],
  1592. "authors": [
  1593. {
  1594. "name": "Chris Fidao",
  1595. "email": "fideloper@gmail.com"
  1596. }
  1597. ],
  1598. "description": "Set trusted proxies for Laravel",
  1599. "keywords": [
  1600. "load balancing",
  1601. "proxy",
  1602. "trusted proxy"
  1603. ],
  1604. "time": "2019-09-03T16:45:42+00:00"
  1605. },
  1606. {
  1607. "name": "guzzlehttp/guzzle",
  1608. "version": "6.3.3",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/guzzle/guzzle.git",
  1612. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1617. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  1618. "shasum": "",
  1619. "mirrors": [
  1620. {
  1621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1622. "preferred": true
  1623. }
  1624. ]
  1625. },
  1626. "require": {
  1627. "guzzlehttp/promises": "^1.0",
  1628. "guzzlehttp/psr7": "^1.4",
  1629. "php": ">=5.5"
  1630. },
  1631. "require-dev": {
  1632. "ext-curl": "*",
  1633. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1634. "psr/log": "^1.0"
  1635. },
  1636. "suggest": {
  1637. "psr/log": "Required for using the Log middleware"
  1638. },
  1639. "type": "library",
  1640. "extra": {
  1641. "branch-alias": {
  1642. "dev-master": "6.3-dev"
  1643. }
  1644. },
  1645. "autoload": {
  1646. "files": [
  1647. "src/functions_include.php"
  1648. ],
  1649. "psr-4": {
  1650. "GuzzleHttp\\": "src/"
  1651. }
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "MIT"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Michael Dowling",
  1660. "email": "mtdowling@gmail.com",
  1661. "homepage": "https://github.com/mtdowling"
  1662. }
  1663. ],
  1664. "description": "Guzzle is a PHP HTTP client library",
  1665. "homepage": "http://guzzlephp.org/",
  1666. "keywords": [
  1667. "client",
  1668. "curl",
  1669. "framework",
  1670. "http",
  1671. "http client",
  1672. "rest",
  1673. "web service"
  1674. ],
  1675. "time": "2018-04-22T15:46:56+00:00"
  1676. },
  1677. {
  1678. "name": "guzzlehttp/promises",
  1679. "version": "v1.3.1",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/guzzle/promises.git",
  1683. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1688. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  1689. "shasum": "",
  1690. "mirrors": [
  1691. {
  1692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1693. "preferred": true
  1694. }
  1695. ]
  1696. },
  1697. "require": {
  1698. "php": ">=5.5.0"
  1699. },
  1700. "require-dev": {
  1701. "phpunit/phpunit": "^4.0"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "1.4-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "psr-4": {
  1711. "GuzzleHttp\\Promise\\": "src/"
  1712. },
  1713. "files": [
  1714. "src/functions_include.php"
  1715. ]
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "MIT"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "Michael Dowling",
  1724. "email": "mtdowling@gmail.com",
  1725. "homepage": "https://github.com/mtdowling"
  1726. }
  1727. ],
  1728. "description": "Guzzle promises library",
  1729. "keywords": [
  1730. "promise"
  1731. ],
  1732. "time": "2016-12-20T10:07:11+00:00"
  1733. },
  1734. {
  1735. "name": "guzzlehttp/psr7",
  1736. "version": "1.6.1",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/guzzle/psr7.git",
  1740. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  1745. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  1746. "shasum": "",
  1747. "mirrors": [
  1748. {
  1749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1750. "preferred": true
  1751. }
  1752. ]
  1753. },
  1754. "require": {
  1755. "php": ">=5.4.0",
  1756. "psr/http-message": "~1.0",
  1757. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1758. },
  1759. "provide": {
  1760. "psr/http-message-implementation": "1.0"
  1761. },
  1762. "require-dev": {
  1763. "ext-zlib": "*",
  1764. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1765. },
  1766. "suggest": {
  1767. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  1768. },
  1769. "type": "library",
  1770. "extra": {
  1771. "branch-alias": {
  1772. "dev-master": "1.6-dev"
  1773. }
  1774. },
  1775. "autoload": {
  1776. "psr-4": {
  1777. "GuzzleHttp\\Psr7\\": "src/"
  1778. },
  1779. "files": [
  1780. "src/functions_include.php"
  1781. ]
  1782. },
  1783. "notification-url": "https://packagist.org/downloads/",
  1784. "license": [
  1785. "MIT"
  1786. ],
  1787. "authors": [
  1788. {
  1789. "name": "Michael Dowling",
  1790. "email": "mtdowling@gmail.com",
  1791. "homepage": "https://github.com/mtdowling"
  1792. },
  1793. {
  1794. "name": "Tobias Schultze",
  1795. "homepage": "https://github.com/Tobion"
  1796. }
  1797. ],
  1798. "description": "PSR-7 message implementation that also provides common utility methods",
  1799. "keywords": [
  1800. "http",
  1801. "message",
  1802. "psr-7",
  1803. "request",
  1804. "response",
  1805. "stream",
  1806. "uri",
  1807. "url"
  1808. ],
  1809. "time": "2019-07-01T23:21:34+00:00"
  1810. },
  1811. {
  1812. "name": "h4cc/wkhtmltopdf-amd64",
  1813. "version": "0.12.4",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://github.com/h4cc/wkhtmltopdf-amd64.git",
  1817. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-amd64/zipball/4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  1822. "reference": "4e2ab2d032a5d7fbe2a741de8b10b8989523c95b",
  1823. "shasum": "",
  1824. "mirrors": [
  1825. {
  1826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1827. "preferred": true
  1828. }
  1829. ]
  1830. },
  1831. "bin": [
  1832. "bin/wkhtmltopdf-amd64"
  1833. ],
  1834. "type": "library",
  1835. "autoload": {
  1836. "psr-4": {
  1837. "h4cc\\WKHTMLToPDF\\": ""
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "LGPL Version 3"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Julius Beckmann",
  1847. "email": "github@h4cc.de"
  1848. }
  1849. ],
  1850. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for amd64 systems.",
  1851. "homepage": "http://wkhtmltopdf.org/",
  1852. "keywords": [
  1853. "binary",
  1854. "convert",
  1855. "pdf",
  1856. "snapshot",
  1857. "thumbnail",
  1858. "wkhtmltopdf"
  1859. ],
  1860. "time": "2018-01-15T06:57:33+00:00"
  1861. },
  1862. {
  1863. "name": "h4cc/wkhtmltopdf-i386",
  1864. "version": "0.12.4",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://github.com/h4cc/wkhtmltopdf-i386.git",
  1868. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://api.github.com/repos/h4cc/wkhtmltopdf-i386/zipball/da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  1873. "reference": "da14486ec8eba1873b026b56126ed02d2f2ae5e3",
  1874. "shasum": "",
  1875. "mirrors": [
  1876. {
  1877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1878. "preferred": true
  1879. }
  1880. ]
  1881. },
  1882. "bin": [
  1883. "bin/wkhtmltopdf-i386"
  1884. ],
  1885. "type": "library",
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "LGPL Version 3"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Julius Beckmann",
  1893. "email": "github@h4cc.de"
  1894. }
  1895. ],
  1896. "description": "Convert html to pdf using webkit (qtwebkit). Static linked linux binary for i386 systems.",
  1897. "homepage": "http://wkhtmltopdf.org/",
  1898. "keywords": [
  1899. "binary",
  1900. "convert",
  1901. "pdf",
  1902. "snapshot",
  1903. "thumbnail",
  1904. "wkhtmltopdf"
  1905. ],
  1906. "time": "2018-01-15T07:18:15+00:00"
  1907. },
  1908. {
  1909. "name": "ixudra/curl",
  1910. "version": "6.16.0",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/ixudra/curl.git",
  1914. "reference": "1ab270e48082ee6e7f32fa72412c2c81eb974516"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://api.github.com/repos/ixudra/curl/zipball/1ab270e48082ee6e7f32fa72412c2c81eb974516",
  1919. "reference": "1ab270e48082ee6e7f32fa72412c2c81eb974516",
  1920. "shasum": "",
  1921. "mirrors": [
  1922. {
  1923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1924. "preferred": true
  1925. }
  1926. ]
  1927. },
  1928. "require": {
  1929. "illuminate/support": ">=4.0",
  1930. "php": ">=5.4.0"
  1931. },
  1932. "type": "library",
  1933. "extra": {
  1934. "laravel": {
  1935. "providers": [
  1936. "Ixudra\\Curl\\CurlServiceProvider"
  1937. ],
  1938. "aliases": {
  1939. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  1940. }
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "Ixudra\\Curl\\": "src/"
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Jan Oris",
  1955. "email": "jan.oris@ixudra.be"
  1956. }
  1957. ],
  1958. "description": "Custom PHP Curl library for the Laravel 5 framework - developed by Ixudra",
  1959. "homepage": "http://ixudra.be",
  1960. "keywords": [
  1961. "Ixudra",
  1962. "curl",
  1963. "laravel"
  1964. ],
  1965. "time": "2017-12-08T14:31:13+00:00"
  1966. },
  1967. {
  1968. "name": "jacobcyl/ali-oss-storage",
  1969. "version": "2.1.0",
  1970. "source": {
  1971. "type": "git",
  1972. "url": "https://github.com/jacobcyl/Aliyun-oss-storage.git",
  1973. "reference": "c0cb9ba1d3faf22a1e04a03602aac90a187b5959"
  1974. },
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://api.github.com/repos/jacobcyl/Aliyun-oss-storage/zipball/c0cb9ba1d3faf22a1e04a03602aac90a187b5959",
  1978. "reference": "c0cb9ba1d3faf22a1e04a03602aac90a187b5959",
  1979. "shasum": "",
  1980. "mirrors": [
  1981. {
  1982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1983. "preferred": true
  1984. }
  1985. ]
  1986. },
  1987. "require": {
  1988. "aliyuncs/oss-sdk-php": "~2.0"
  1989. },
  1990. "type": "library",
  1991. "extra": {
  1992. "laravel": {
  1993. "providers": [
  1994. "Jacobcyl\\AliOSS\\AliOssServiceProvider"
  1995. ]
  1996. }
  1997. },
  1998. "autoload": {
  1999. "psr-4": {
  2000. "Jacobcyl\\AliOSS\\": "src/"
  2001. }
  2002. },
  2003. "notification-url": "https://packagist.org/downloads/",
  2004. "license": [
  2005. "MIT"
  2006. ],
  2007. "authors": [
  2008. {
  2009. "name": "jacobcyl",
  2010. "email": "cyl.jacob@gmail.com"
  2011. }
  2012. ],
  2013. "description": "aliyun oss filesystem storage for laravel 5+",
  2014. "homepage": "http://jacobcyl.github.io/Aliyun-oss-storage/",
  2015. "keywords": [
  2016. "aliyun",
  2017. "filesystems",
  2018. "laravel",
  2019. "oss",
  2020. "storage"
  2021. ],
  2022. "time": "2018-04-02T03:44:01+00:00"
  2023. },
  2024. {
  2025. "name": "jakub-onderka/php-console-color",
  2026. "version": "v0.2",
  2027. "source": {
  2028. "type": "git",
  2029. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2030. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  2031. },
  2032. "dist": {
  2033. "type": "zip",
  2034. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  2035. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  2036. "shasum": "",
  2037. "mirrors": [
  2038. {
  2039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2040. "preferred": true
  2041. }
  2042. ]
  2043. },
  2044. "require": {
  2045. "php": ">=5.4.0"
  2046. },
  2047. "require-dev": {
  2048. "jakub-onderka/php-code-style": "1.0",
  2049. "jakub-onderka/php-parallel-lint": "1.0",
  2050. "jakub-onderka/php-var-dump-check": "0.*",
  2051. "phpunit/phpunit": "~4.3",
  2052. "squizlabs/php_codesniffer": "1.*"
  2053. },
  2054. "type": "library",
  2055. "autoload": {
  2056. "psr-4": {
  2057. "JakubOnderka\\PhpConsoleColor\\": "src/"
  2058. }
  2059. },
  2060. "notification-url": "https://packagist.org/downloads/",
  2061. "license": [
  2062. "BSD-2-Clause"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Jakub Onderka",
  2067. "email": "jakub.onderka@gmail.com"
  2068. }
  2069. ],
  2070. "time": "2018-09-29T17:23:10+00:00"
  2071. },
  2072. {
  2073. "name": "jakub-onderka/php-console-highlighter",
  2074. "version": "v0.4",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2078. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2083. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2084. "shasum": "",
  2085. "mirrors": [
  2086. {
  2087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2088. "preferred": true
  2089. }
  2090. ]
  2091. },
  2092. "require": {
  2093. "ext-tokenizer": "*",
  2094. "jakub-onderka/php-console-color": "~0.2",
  2095. "php": ">=5.4.0"
  2096. },
  2097. "require-dev": {
  2098. "jakub-onderka/php-code-style": "~1.0",
  2099. "jakub-onderka/php-parallel-lint": "~1.0",
  2100. "jakub-onderka/php-var-dump-check": "~0.1",
  2101. "phpunit/phpunit": "~4.0",
  2102. "squizlabs/php_codesniffer": "~1.5"
  2103. },
  2104. "type": "library",
  2105. "autoload": {
  2106. "psr-4": {
  2107. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  2108. }
  2109. },
  2110. "notification-url": "https://packagist.org/downloads/",
  2111. "license": [
  2112. "MIT"
  2113. ],
  2114. "authors": [
  2115. {
  2116. "name": "Jakub Onderka",
  2117. "email": "acci@acci.cz",
  2118. "homepage": "http://www.acci.cz/"
  2119. }
  2120. ],
  2121. "description": "Highlight PHP code in terminal",
  2122. "time": "2018-09-29T18:48:56+00:00"
  2123. },
  2124. {
  2125. "name": "jormin/laravel-ddoc",
  2126. "version": "v1.1.1",
  2127. "source": {
  2128. "type": "git",
  2129. "url": "https://github.com/jormin/laravel-ddoc.git",
  2130. "reference": "0c6cab6c247cbb599bf15fcc6253cbeae48493c4"
  2131. },
  2132. "dist": {
  2133. "type": "zip",
  2134. "url": "https://api.github.com/repos/jormin/laravel-ddoc/zipball/0c6cab6c247cbb599bf15fcc6253cbeae48493c4",
  2135. "reference": "0c6cab6c247cbb599bf15fcc6253cbeae48493c4",
  2136. "shasum": "",
  2137. "mirrors": [
  2138. {
  2139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2140. "preferred": true
  2141. }
  2142. ]
  2143. },
  2144. "require": {
  2145. "barryvdh/laravel-snappy": "^0.4.0",
  2146. "h4cc/wkhtmltopdf-amd64": "0.12.x",
  2147. "h4cc/wkhtmltopdf-i386": "0.12.x",
  2148. "illuminate/support": "^5.0.1",
  2149. "php": "~5.6|~7.0",
  2150. "wemersonjanuario/wkhtmltopdf-windows": "0.12.x"
  2151. },
  2152. "require-dev": {
  2153. "phpunit/phpunit": "~4.0||~5.0",
  2154. "squizlabs/php_codesniffer": "^2.3"
  2155. },
  2156. "type": "library",
  2157. "extra": {
  2158. "branch-alias": {
  2159. "dev-master": "1.0-dev"
  2160. },
  2161. "laravel": {
  2162. "providers": [
  2163. "Jormin\\DDoc\\DDocServiceProvider"
  2164. ]
  2165. }
  2166. },
  2167. "autoload": {
  2168. "psr-4": {
  2169. "Jormin\\DDoc\\": "src"
  2170. }
  2171. },
  2172. "notification-url": "https://packagist.org/downloads/",
  2173. "license": [
  2174. "MIT"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Jormin",
  2179. "email": "jorminxee@gmail.com",
  2180. "homepage": "https://blog.lerzen.com",
  2181. "role": "Developer"
  2182. }
  2183. ],
  2184. "description": "每次开发项目时,总是会被要求提供数据字典,每次手动写文档太累了,所以写了这个扩展,自动读取数据库信息并显示在网页上,支持导出Html和PDF文件。",
  2185. "homepage": "https://github.com/jormin/laravel-ddoc",
  2186. "keywords": [
  2187. "DDoc",
  2188. "Jormin",
  2189. "laravel"
  2190. ],
  2191. "time": "2018-11-26T06:53:32+00:00"
  2192. },
  2193. {
  2194. "name": "kamicloud/laravel-stub-api-larecipe",
  2195. "version": "1.0.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/kamicloud/laravel-stub-api-larecipe.git",
  2199. "reference": "3246ccaabe714db901ff1d6dfa0eaadde730ab34"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/kamicloud/laravel-stub-api-larecipe/zipball/3246ccaabe714db901ff1d6dfa0eaadde730ab34",
  2204. "reference": "3246ccaabe714db901ff1d6dfa0eaadde730ab34",
  2205. "shasum": "",
  2206. "mirrors": [
  2207. {
  2208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2209. "preferred": true
  2210. }
  2211. ]
  2212. },
  2213. "require": {
  2214. "binarytorch/larecipe": "^1.0|^2.0",
  2215. "php": ">=7.1.0"
  2216. },
  2217. "type": "library",
  2218. "extra": {
  2219. "laravel": {
  2220. "providers": [
  2221. "Kamicloud\\LaravelStubApiLarecipe\\ThemeServiceProvider"
  2222. ]
  2223. }
  2224. },
  2225. "autoload": {
  2226. "psr-4": {
  2227. "Kamicloud\\LaravelStubApiLarecipe\\": "src/"
  2228. }
  2229. },
  2230. "notification-url": "https://packagist.org/downloads/",
  2231. "license": [
  2232. "MIT"
  2233. ],
  2234. "description": "A LaRecipe theme.",
  2235. "keywords": [
  2236. "laravel",
  2237. "larecipe"
  2238. ],
  2239. "time": "2019-09-02T07:28:19+00:00"
  2240. },
  2241. {
  2242. "name": "kamicloud/stub-api",
  2243. "version": "v1.1.3",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/kamicloud/stub-api.git",
  2247. "reference": "abbd3343e71335a6410ec0d8af52730f2c65dadb"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/kamicloud/stub-api/zipball/abbd3343e71335a6410ec0d8af52730f2c65dadb",
  2252. "reference": "abbd3343e71335a6410ec0d8af52730f2c65dadb",
  2253. "shasum": "",
  2254. "mirrors": [
  2255. {
  2256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2257. "preferred": true
  2258. }
  2259. ]
  2260. },
  2261. "require": {
  2262. "ext-json": "*",
  2263. "laravel/framework": "5.5.*|5.6.*|5.7.*|5.8.*|6.0.*",
  2264. "nikic/php-parser": "^4.2",
  2265. "php": "^7.1.3"
  2266. },
  2267. "require-dev": {
  2268. "binarytorch/larecipe": "^1.0|^2.0"
  2269. },
  2270. "suggest": {
  2271. "binarytorch/larecipe": "Docs support",
  2272. "kamicloud/laravel-stub-api-larecipe": "Some optimize based on larecipe",
  2273. "laravel/telescope": ""
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "laravel": {
  2278. "providers": [
  2279. "Kamicloud\\StubApi\\GeneratorServiceProvider"
  2280. ]
  2281. }
  2282. },
  2283. "autoload": {
  2284. "psr-4": {
  2285. "Kamicloud\\StubApi\\": "src/main/php/lib/"
  2286. }
  2287. },
  2288. "notification-url": "https://packagist.org/downloads/",
  2289. "license": [
  2290. "MIT"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "kamicloud",
  2295. "email": "cy602939074@qq.com"
  2296. }
  2297. ],
  2298. "description": "API Generator",
  2299. "time": "2019-10-14T11:49:44+00:00"
  2300. },
  2301. {
  2302. "name": "knplabs/knp-snappy",
  2303. "version": "v1.1.0",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/KnpLabs/snappy.git",
  2307. "reference": "ea037298d3c613454da77ecb9588cf0397d695e1"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/ea037298d3c613454da77ecb9588cf0397d695e1",
  2312. "reference": "ea037298d3c613454da77ecb9588cf0397d695e1",
  2313. "shasum": "",
  2314. "mirrors": [
  2315. {
  2316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2317. "preferred": true
  2318. }
  2319. ]
  2320. },
  2321. "require": {
  2322. "php": ">=7.1",
  2323. "psr/log": "^1.0",
  2324. "symfony/process": "~3.4||~4.1"
  2325. },
  2326. "require-dev": {
  2327. "phpunit/phpunit": "~7.4"
  2328. },
  2329. "suggest": {
  2330. "h4cc/wkhtmltoimage-amd64": "Provides wkhtmltoimage-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2331. "h4cc/wkhtmltoimage-i386": "Provides wkhtmltoimage-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2332. "h4cc/wkhtmltopdf-amd64": "Provides wkhtmltopdf-amd64 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2333. "h4cc/wkhtmltopdf-i386": "Provides wkhtmltopdf-i386 binary for Linux-compatible machines, use version `~0.12` as dependency",
  2334. "wemersonjanuario/wkhtmltopdf-windows": "Provides wkhtmltopdf executable for Windows, use version `~0.12` as dependency"
  2335. },
  2336. "type": "library",
  2337. "extra": {
  2338. "branch-alias": {
  2339. "dev-master": "1.x-dev"
  2340. }
  2341. },
  2342. "autoload": {
  2343. "psr-4": {
  2344. "Knp\\Snappy\\": "src/Knp/Snappy"
  2345. }
  2346. },
  2347. "notification-url": "https://packagist.org/downloads/",
  2348. "license": [
  2349. "MIT"
  2350. ],
  2351. "authors": [
  2352. {
  2353. "name": "KnpLabs Team",
  2354. "homepage": "http://knplabs.com"
  2355. },
  2356. {
  2357. "name": "Symfony Community",
  2358. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2359. }
  2360. ],
  2361. "description": "PHP5 library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2362. "homepage": "http://github.com/KnpLabs/snappy",
  2363. "keywords": [
  2364. "knp",
  2365. "knplabs",
  2366. "pdf",
  2367. "snapshot",
  2368. "thumbnail",
  2369. "wkhtmltopdf"
  2370. ],
  2371. "time": "2018-12-14T14:59:37+00:00"
  2372. },
  2373. {
  2374. "name": "kylekatarnls/update-helper",
  2375. "version": "1.2.0",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/kylekatarnls/update-helper.git",
  2379. "reference": "5786fa188e0361b9adf9e8199d7280d1b2db165e"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/5786fa188e0361b9adf9e8199d7280d1b2db165e",
  2384. "reference": "5786fa188e0361b9adf9e8199d7280d1b2db165e",
  2385. "shasum": "",
  2386. "mirrors": [
  2387. {
  2388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2389. "preferred": true
  2390. }
  2391. ]
  2392. },
  2393. "require": {
  2394. "composer-plugin-api": "^1.1.0 || ^2.0.0",
  2395. "php": ">=5.3.0"
  2396. },
  2397. "require-dev": {
  2398. "codeclimate/php-test-reporter": "dev-master",
  2399. "composer/composer": "2.0.x-dev || ^2.0.0-dev",
  2400. "phpunit/phpunit": ">=4.8.35 <6.0"
  2401. },
  2402. "type": "composer-plugin",
  2403. "extra": {
  2404. "class": "UpdateHelper\\ComposerPlugin"
  2405. },
  2406. "autoload": {
  2407. "psr-0": {
  2408. "UpdateHelper\\": "src/"
  2409. }
  2410. },
  2411. "notification-url": "https://packagist.org/downloads/",
  2412. "license": [
  2413. "MIT"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "Kyle",
  2418. "email": "kylekatarnls@gmail.com"
  2419. }
  2420. ],
  2421. "description": "Update helper",
  2422. "time": "2019-07-29T11:03:54+00:00"
  2423. },
  2424. {
  2425. "name": "laravel/framework",
  2426. "version": "v5.7.15",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/laravel/framework.git",
  2430. "reference": "e0dbd6ab143286d81bedf2b34f8820f3d49ea15f"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/laravel/framework/zipball/e0dbd6ab143286d81bedf2b34f8820f3d49ea15f",
  2435. "reference": "e0dbd6ab143286d81bedf2b34f8820f3d49ea15f",
  2436. "shasum": "",
  2437. "mirrors": [
  2438. {
  2439. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2440. "preferred": true
  2441. }
  2442. ]
  2443. },
  2444. "require": {
  2445. "doctrine/inflector": "^1.1",
  2446. "dragonmantank/cron-expression": "^2.0",
  2447. "erusev/parsedown": "^1.7",
  2448. "ext-mbstring": "*",
  2449. "ext-openssl": "*",
  2450. "league/flysystem": "^1.0.8",
  2451. "monolog/monolog": "^1.12",
  2452. "nesbot/carbon": "^1.26.3",
  2453. "opis/closure": "^3.1",
  2454. "php": "^7.1.3",
  2455. "psr/container": "^1.0",
  2456. "psr/simple-cache": "^1.0",
  2457. "ramsey/uuid": "^3.7",
  2458. "swiftmailer/swiftmailer": "^6.0",
  2459. "symfony/console": "^4.1",
  2460. "symfony/debug": "^4.1",
  2461. "symfony/finder": "^4.1",
  2462. "symfony/http-foundation": "^4.1",
  2463. "symfony/http-kernel": "^4.1",
  2464. "symfony/process": "^4.1",
  2465. "symfony/routing": "^4.1",
  2466. "symfony/var-dumper": "^4.1",
  2467. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  2468. "vlucas/phpdotenv": "^2.2"
  2469. },
  2470. "conflict": {
  2471. "tightenco/collect": "<5.5.33"
  2472. },
  2473. "replace": {
  2474. "illuminate/auth": "self.version",
  2475. "illuminate/broadcasting": "self.version",
  2476. "illuminate/bus": "self.version",
  2477. "illuminate/cache": "self.version",
  2478. "illuminate/config": "self.version",
  2479. "illuminate/console": "self.version",
  2480. "illuminate/container": "self.version",
  2481. "illuminate/contracts": "self.version",
  2482. "illuminate/cookie": "self.version",
  2483. "illuminate/database": "self.version",
  2484. "illuminate/encryption": "self.version",
  2485. "illuminate/events": "self.version",
  2486. "illuminate/filesystem": "self.version",
  2487. "illuminate/hashing": "self.version",
  2488. "illuminate/http": "self.version",
  2489. "illuminate/log": "self.version",
  2490. "illuminate/mail": "self.version",
  2491. "illuminate/notifications": "self.version",
  2492. "illuminate/pagination": "self.version",
  2493. "illuminate/pipeline": "self.version",
  2494. "illuminate/queue": "self.version",
  2495. "illuminate/redis": "self.version",
  2496. "illuminate/routing": "self.version",
  2497. "illuminate/session": "self.version",
  2498. "illuminate/support": "self.version",
  2499. "illuminate/translation": "self.version",
  2500. "illuminate/validation": "self.version",
  2501. "illuminate/view": "self.version"
  2502. },
  2503. "require-dev": {
  2504. "aws/aws-sdk-php": "^3.0",
  2505. "doctrine/dbal": "^2.6",
  2506. "filp/whoops": "^2.1.4",
  2507. "guzzlehttp/guzzle": "^6.3",
  2508. "league/flysystem-cached-adapter": "^1.0",
  2509. "mockery/mockery": "^1.0",
  2510. "moontoast/math": "^1.1",
  2511. "orchestra/testbench-core": "3.7.*",
  2512. "pda/pheanstalk": "^3.0",
  2513. "phpunit/phpunit": "^7.0",
  2514. "predis/predis": "^1.1.1",
  2515. "symfony/css-selector": "^4.1",
  2516. "symfony/dom-crawler": "^4.1",
  2517. "true/punycode": "^2.1"
  2518. },
  2519. "suggest": {
  2520. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  2521. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2522. "ext-pcntl": "Required to use all features of the queue worker.",
  2523. "ext-posix": "Required to use all features of the queue worker.",
  2524. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  2525. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  2526. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  2527. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  2528. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2529. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2530. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  2531. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2532. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2533. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  2534. "pda/pheanstalk": "Required to use the beanstalk queue driver (^3.0).",
  2535. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  2536. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  2537. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.1).",
  2538. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.1).",
  2539. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (^1.0)."
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "branch-alias": {
  2544. "dev-master": "5.7-dev"
  2545. }
  2546. },
  2547. "autoload": {
  2548. "files": [
  2549. "src/Illuminate/Foundation/helpers.php",
  2550. "src/Illuminate/Support/helpers.php"
  2551. ],
  2552. "psr-4": {
  2553. "Illuminate\\": "src/Illuminate/"
  2554. }
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Taylor Otwell",
  2563. "email": "taylor@laravel.com"
  2564. }
  2565. ],
  2566. "description": "The Laravel Framework.",
  2567. "homepage": "https://laravel.com",
  2568. "keywords": [
  2569. "framework",
  2570. "laravel"
  2571. ],
  2572. "time": "2018-11-26T14:10:57+00:00"
  2573. },
  2574. {
  2575. "name": "laravel/tinker",
  2576. "version": "v1.0.10",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/laravel/tinker.git",
  2580. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2585. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2586. "shasum": "",
  2587. "mirrors": [
  2588. {
  2589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2590. "preferred": true
  2591. }
  2592. ]
  2593. },
  2594. "require": {
  2595. "illuminate/console": "~5.1|^6.0",
  2596. "illuminate/contracts": "~5.1|^6.0",
  2597. "illuminate/support": "~5.1|^6.0",
  2598. "php": ">=5.5.9",
  2599. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  2600. "symfony/var-dumper": "~3.0|~4.0"
  2601. },
  2602. "require-dev": {
  2603. "phpunit/phpunit": "~4.0|~5.0"
  2604. },
  2605. "suggest": {
  2606. "illuminate/database": "The Illuminate Database package (~5.1)."
  2607. },
  2608. "type": "library",
  2609. "extra": {
  2610. "branch-alias": {
  2611. "dev-master": "1.0-dev"
  2612. },
  2613. "laravel": {
  2614. "providers": [
  2615. "Laravel\\Tinker\\TinkerServiceProvider"
  2616. ]
  2617. }
  2618. },
  2619. "autoload": {
  2620. "psr-4": {
  2621. "Laravel\\Tinker\\": "src/"
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "MIT"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "Taylor Otwell",
  2631. "email": "taylor@laravel.com"
  2632. }
  2633. ],
  2634. "description": "Powerful REPL for the Laravel framework.",
  2635. "keywords": [
  2636. "REPL",
  2637. "Tinker",
  2638. "laravel",
  2639. "psysh"
  2640. ],
  2641. "time": "2019-08-07T15:10:45+00:00"
  2642. },
  2643. {
  2644. "name": "lcobucci/jwt",
  2645. "version": "3.3.1",
  2646. "source": {
  2647. "type": "git",
  2648. "url": "https://github.com/lcobucci/jwt.git",
  2649. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  2650. },
  2651. "dist": {
  2652. "type": "zip",
  2653. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2654. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  2655. "shasum": "",
  2656. "mirrors": [
  2657. {
  2658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2659. "preferred": true
  2660. }
  2661. ]
  2662. },
  2663. "require": {
  2664. "ext-mbstring": "*",
  2665. "ext-openssl": "*",
  2666. "php": "^5.6 || ^7.0"
  2667. },
  2668. "require-dev": {
  2669. "mikey179/vfsstream": "~1.5",
  2670. "phpmd/phpmd": "~2.2",
  2671. "phpunit/php-invoker": "~1.1",
  2672. "phpunit/phpunit": "^5.7 || ^7.3",
  2673. "squizlabs/php_codesniffer": "~2.3"
  2674. },
  2675. "type": "library",
  2676. "extra": {
  2677. "branch-alias": {
  2678. "dev-master": "3.1-dev"
  2679. }
  2680. },
  2681. "autoload": {
  2682. "psr-4": {
  2683. "Lcobucci\\JWT\\": "src"
  2684. }
  2685. },
  2686. "notification-url": "https://packagist.org/downloads/",
  2687. "license": [
  2688. "BSD-3-Clause"
  2689. ],
  2690. "authors": [
  2691. {
  2692. "name": "Luís Otávio Cobucci Oblonczyk",
  2693. "email": "lcobucci@gmail.com",
  2694. "role": "Developer"
  2695. }
  2696. ],
  2697. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2698. "keywords": [
  2699. "JWS",
  2700. "jwt"
  2701. ],
  2702. "time": "2019-05-24T18:30:49+00:00"
  2703. },
  2704. {
  2705. "name": "league/flysystem",
  2706. "version": "1.0.57",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/thephpleague/flysystem.git",
  2710. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  2715. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  2716. "shasum": "",
  2717. "mirrors": [
  2718. {
  2719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2720. "preferred": true
  2721. }
  2722. ]
  2723. },
  2724. "require": {
  2725. "ext-fileinfo": "*",
  2726. "php": ">=5.5.9"
  2727. },
  2728. "conflict": {
  2729. "league/flysystem-sftp": "<1.0.6"
  2730. },
  2731. "require-dev": {
  2732. "phpspec/phpspec": "^3.4",
  2733. "phpunit/phpunit": "^5.7.10"
  2734. },
  2735. "suggest": {
  2736. "ext-fileinfo": "Required for MimeType",
  2737. "ext-ftp": "Allows you to use FTP server storage",
  2738. "ext-openssl": "Allows you to use FTPS server storage",
  2739. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2740. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2741. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2742. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2743. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2744. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2745. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2746. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2747. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2748. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2749. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2750. },
  2751. "type": "library",
  2752. "extra": {
  2753. "branch-alias": {
  2754. "dev-master": "1.1-dev"
  2755. }
  2756. },
  2757. "autoload": {
  2758. "psr-4": {
  2759. "League\\Flysystem\\": "src/"
  2760. }
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Frank de Jonge",
  2769. "email": "info@frenky.net"
  2770. }
  2771. ],
  2772. "description": "Filesystem abstraction: Many filesystems, one API.",
  2773. "keywords": [
  2774. "Cloud Files",
  2775. "WebDAV",
  2776. "abstraction",
  2777. "aws",
  2778. "cloud",
  2779. "copy.com",
  2780. "dropbox",
  2781. "file systems",
  2782. "files",
  2783. "filesystem",
  2784. "filesystems",
  2785. "ftp",
  2786. "rackspace",
  2787. "remote",
  2788. "s3",
  2789. "sftp",
  2790. "storage"
  2791. ],
  2792. "time": "2019-10-16T21:01:05+00:00"
  2793. },
  2794. {
  2795. "name": "maatwebsite/excel",
  2796. "version": "3.1.17",
  2797. "source": {
  2798. "type": "git",
  2799. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2800. "reference": "bd377ad37b285d9bc25c9adca360e4392041dea6"
  2801. },
  2802. "dist": {
  2803. "type": "zip",
  2804. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/bd377ad37b285d9bc25c9adca360e4392041dea6",
  2805. "reference": "bd377ad37b285d9bc25c9adca360e4392041dea6",
  2806. "shasum": "",
  2807. "mirrors": [
  2808. {
  2809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2810. "preferred": true
  2811. }
  2812. ]
  2813. },
  2814. "require": {
  2815. "ext-json": "*",
  2816. "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
  2817. "opis/closure": "^3.1",
  2818. "php": "^7.0",
  2819. "phpoffice/phpspreadsheet": "^1.6"
  2820. },
  2821. "require-dev": {
  2822. "mockery/mockery": "^1.1",
  2823. "orchestra/database": "^4.0",
  2824. "orchestra/testbench": "^4.0",
  2825. "phpunit/phpunit": "^8.0",
  2826. "predis/predis": "^1.1"
  2827. },
  2828. "type": "library",
  2829. "extra": {
  2830. "laravel": {
  2831. "providers": [
  2832. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2833. ],
  2834. "aliases": {
  2835. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2836. }
  2837. }
  2838. },
  2839. "autoload": {
  2840. "psr-4": {
  2841. "Maatwebsite\\Excel\\": "src/"
  2842. }
  2843. },
  2844. "notification-url": "https://packagist.org/downloads/",
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Patrick Brouwers",
  2851. "email": "patrick@maatwebsite.nl"
  2852. }
  2853. ],
  2854. "description": "Supercharged Excel exports and imports in Laravel",
  2855. "keywords": [
  2856. "PHPExcel",
  2857. "batch",
  2858. "csv",
  2859. "excel",
  2860. "export",
  2861. "import",
  2862. "laravel",
  2863. "php",
  2864. "phpspreadsheet"
  2865. ],
  2866. "time": "2019-09-04T19:28:20+00:00"
  2867. },
  2868. {
  2869. "name": "markbaker/complex",
  2870. "version": "1.4.7",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2874. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  2879. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  2880. "shasum": "",
  2881. "mirrors": [
  2882. {
  2883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2884. "preferred": true
  2885. }
  2886. ]
  2887. },
  2888. "require": {
  2889. "php": "^5.6.0|^7.0.0"
  2890. },
  2891. "require-dev": {
  2892. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
  2893. "phpcompatibility/php-compatibility": "^8.0",
  2894. "phpdocumentor/phpdocumentor": "2.*",
  2895. "phploc/phploc": "2.*",
  2896. "phpmd/phpmd": "2.*",
  2897. "phpunit/phpunit": "^4.8.35|^5.4.0",
  2898. "sebastian/phpcpd": "2.*",
  2899. "squizlabs/php_codesniffer": "^3.3.0"
  2900. },
  2901. "type": "library",
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Complex\\": "classes/src/"
  2905. },
  2906. "files": [
  2907. "classes/src/functions/abs.php",
  2908. "classes/src/functions/acos.php",
  2909. "classes/src/functions/acosh.php",
  2910. "classes/src/functions/acot.php",
  2911. "classes/src/functions/acoth.php",
  2912. "classes/src/functions/acsc.php",
  2913. "classes/src/functions/acsch.php",
  2914. "classes/src/functions/argument.php",
  2915. "classes/src/functions/asec.php",
  2916. "classes/src/functions/asech.php",
  2917. "classes/src/functions/asin.php",
  2918. "classes/src/functions/asinh.php",
  2919. "classes/src/functions/atan.php",
  2920. "classes/src/functions/atanh.php",
  2921. "classes/src/functions/conjugate.php",
  2922. "classes/src/functions/cos.php",
  2923. "classes/src/functions/cosh.php",
  2924. "classes/src/functions/cot.php",
  2925. "classes/src/functions/coth.php",
  2926. "classes/src/functions/csc.php",
  2927. "classes/src/functions/csch.php",
  2928. "classes/src/functions/exp.php",
  2929. "classes/src/functions/inverse.php",
  2930. "classes/src/functions/ln.php",
  2931. "classes/src/functions/log2.php",
  2932. "classes/src/functions/log10.php",
  2933. "classes/src/functions/negative.php",
  2934. "classes/src/functions/pow.php",
  2935. "classes/src/functions/rho.php",
  2936. "classes/src/functions/sec.php",
  2937. "classes/src/functions/sech.php",
  2938. "classes/src/functions/sin.php",
  2939. "classes/src/functions/sinh.php",
  2940. "classes/src/functions/sqrt.php",
  2941. "classes/src/functions/tan.php",
  2942. "classes/src/functions/tanh.php",
  2943. "classes/src/functions/theta.php",
  2944. "classes/src/operations/add.php",
  2945. "classes/src/operations/subtract.php",
  2946. "classes/src/operations/multiply.php",
  2947. "classes/src/operations/divideby.php",
  2948. "classes/src/operations/divideinto.php"
  2949. ]
  2950. },
  2951. "notification-url": "https://packagist.org/downloads/",
  2952. "license": [
  2953. "MIT"
  2954. ],
  2955. "authors": [
  2956. {
  2957. "name": "Mark Baker",
  2958. "email": "mark@lange.demon.co.uk"
  2959. }
  2960. ],
  2961. "description": "PHP Class for working with complex numbers",
  2962. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2963. "keywords": [
  2964. "complex",
  2965. "mathematics"
  2966. ],
  2967. "time": "2018-10-13T23:28:42+00:00"
  2968. },
  2969. {
  2970. "name": "markbaker/matrix",
  2971. "version": "1.2.0",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2975. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  2980. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  2981. "shasum": "",
  2982. "mirrors": [
  2983. {
  2984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2985. "preferred": true
  2986. }
  2987. ]
  2988. },
  2989. "require": {
  2990. "php": "^5.6.0|^7.0.0"
  2991. },
  2992. "require-dev": {
  2993. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2994. "phpcompatibility/php-compatibility": "dev-master",
  2995. "phploc/phploc": "^4",
  2996. "phpmd/phpmd": "dev-master",
  2997. "phpunit/phpunit": "^5.7",
  2998. "sebastian/phpcpd": "^3.0",
  2999. "squizlabs/php_codesniffer": "^3.0@dev"
  3000. },
  3001. "type": "library",
  3002. "autoload": {
  3003. "psr-4": {
  3004. "Matrix\\": "classes/src/"
  3005. },
  3006. "files": [
  3007. "classes/src/functions/adjoint.php",
  3008. "classes/src/functions/antidiagonal.php",
  3009. "classes/src/functions/cofactors.php",
  3010. "classes/src/functions/determinant.php",
  3011. "classes/src/functions/diagonal.php",
  3012. "classes/src/functions/identity.php",
  3013. "classes/src/functions/inverse.php",
  3014. "classes/src/functions/minors.php",
  3015. "classes/src/functions/trace.php",
  3016. "classes/src/functions/transpose.php",
  3017. "classes/src/operations/add.php",
  3018. "classes/src/operations/directsum.php",
  3019. "classes/src/operations/subtract.php",
  3020. "classes/src/operations/multiply.php",
  3021. "classes/src/operations/divideby.php",
  3022. "classes/src/operations/divideinto.php"
  3023. ]
  3024. },
  3025. "notification-url": "https://packagist.org/downloads/",
  3026. "license": [
  3027. "MIT"
  3028. ],
  3029. "authors": [
  3030. {
  3031. "name": "Mark Baker",
  3032. "email": "mark@lange.demon.co.uk"
  3033. }
  3034. ],
  3035. "description": "PHP Class for working with matrices",
  3036. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3037. "keywords": [
  3038. "mathematics",
  3039. "matrix",
  3040. "vector"
  3041. ],
  3042. "time": "2019-10-06T11:29:25+00:00"
  3043. },
  3044. {
  3045. "name": "monolog/monolog",
  3046. "version": "1.25.1",
  3047. "source": {
  3048. "type": "git",
  3049. "url": "https://github.com/Seldaek/monolog.git",
  3050. "reference": "70e65a5470a42cfec1a7da00d30edb6e617e8dcf"
  3051. },
  3052. "dist": {
  3053. "type": "zip",
  3054. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/70e65a5470a42cfec1a7da00d30edb6e617e8dcf",
  3055. "reference": "70e65a5470a42cfec1a7da00d30edb6e617e8dcf",
  3056. "shasum": "",
  3057. "mirrors": [
  3058. {
  3059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3060. "preferred": true
  3061. }
  3062. ]
  3063. },
  3064. "require": {
  3065. "php": ">=5.3.0",
  3066. "psr/log": "~1.0"
  3067. },
  3068. "provide": {
  3069. "psr/log-implementation": "1.0.0"
  3070. },
  3071. "require-dev": {
  3072. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3073. "doctrine/couchdb": "~1.0@dev",
  3074. "graylog2/gelf-php": "~1.0",
  3075. "jakub-onderka/php-parallel-lint": "0.9",
  3076. "php-amqplib/php-amqplib": "~2.4",
  3077. "php-console/php-console": "^3.1.3",
  3078. "phpunit/phpunit": "~4.5",
  3079. "phpunit/phpunit-mock-objects": "2.3.0",
  3080. "ruflin/elastica": ">=0.90 <3.0",
  3081. "sentry/sentry": "^0.13",
  3082. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3083. },
  3084. "suggest": {
  3085. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3086. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3087. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3088. "ext-mongo": "Allow sending log messages to a MongoDB server",
  3089. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3090. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  3091. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3092. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3093. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3094. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  3095. "sentry/sentry": "Allow sending log messages to a Sentry server"
  3096. },
  3097. "type": "library",
  3098. "extra": {
  3099. "branch-alias": {
  3100. "dev-master": "2.0.x-dev"
  3101. }
  3102. },
  3103. "autoload": {
  3104. "psr-4": {
  3105. "Monolog\\": "src/Monolog"
  3106. }
  3107. },
  3108. "notification-url": "https://packagist.org/downloads/",
  3109. "license": [
  3110. "MIT"
  3111. ],
  3112. "authors": [
  3113. {
  3114. "name": "Jordi Boggiano",
  3115. "email": "j.boggiano@seld.be",
  3116. "homepage": "http://seld.be"
  3117. }
  3118. ],
  3119. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3120. "homepage": "http://github.com/Seldaek/monolog",
  3121. "keywords": [
  3122. "log",
  3123. "logging",
  3124. "psr-3"
  3125. ],
  3126. "time": "2019-09-06T13:49:17+00:00"
  3127. },
  3128. {
  3129. "name": "mtdowling/jmespath.php",
  3130. "version": "2.4.0",
  3131. "source": {
  3132. "type": "git",
  3133. "url": "https://github.com/jmespath/jmespath.php.git",
  3134. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac"
  3135. },
  3136. "dist": {
  3137. "type": "zip",
  3138. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  3139. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  3140. "shasum": "",
  3141. "mirrors": [
  3142. {
  3143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3144. "preferred": true
  3145. }
  3146. ]
  3147. },
  3148. "require": {
  3149. "php": ">=5.4.0"
  3150. },
  3151. "require-dev": {
  3152. "phpunit/phpunit": "~4.0"
  3153. },
  3154. "bin": [
  3155. "bin/jp.php"
  3156. ],
  3157. "type": "library",
  3158. "extra": {
  3159. "branch-alias": {
  3160. "dev-master": "2.0-dev"
  3161. }
  3162. },
  3163. "autoload": {
  3164. "psr-4": {
  3165. "JmesPath\\": "src/"
  3166. },
  3167. "files": [
  3168. "src/JmesPath.php"
  3169. ]
  3170. },
  3171. "notification-url": "https://packagist.org/downloads/",
  3172. "license": [
  3173. "MIT"
  3174. ],
  3175. "authors": [
  3176. {
  3177. "name": "Michael Dowling",
  3178. "email": "mtdowling@gmail.com",
  3179. "homepage": "https://github.com/mtdowling"
  3180. }
  3181. ],
  3182. "description": "Declaratively specify how to extract elements from a JSON document",
  3183. "keywords": [
  3184. "json",
  3185. "jsonpath"
  3186. ],
  3187. "time": "2016-12-03T22:08:25+00:00"
  3188. },
  3189. {
  3190. "name": "namshi/jose",
  3191. "version": "7.2.3",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/namshi/jose.git",
  3195. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3200. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3201. "shasum": "",
  3202. "mirrors": [
  3203. {
  3204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3205. "preferred": true
  3206. }
  3207. ]
  3208. },
  3209. "require": {
  3210. "ext-date": "*",
  3211. "ext-hash": "*",
  3212. "ext-json": "*",
  3213. "ext-pcre": "*",
  3214. "ext-spl": "*",
  3215. "php": ">=5.5",
  3216. "symfony/polyfill-php56": "^1.0"
  3217. },
  3218. "require-dev": {
  3219. "phpseclib/phpseclib": "^2.0",
  3220. "phpunit/phpunit": "^4.5|^5.0",
  3221. "satooshi/php-coveralls": "^1.0"
  3222. },
  3223. "suggest": {
  3224. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3225. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3226. },
  3227. "type": "library",
  3228. "autoload": {
  3229. "psr-4": {
  3230. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3231. }
  3232. },
  3233. "notification-url": "https://packagist.org/downloads/",
  3234. "license": [
  3235. "MIT"
  3236. ],
  3237. "authors": [
  3238. {
  3239. "name": "Alessandro Nadalin",
  3240. "email": "alessandro.nadalin@gmail.com"
  3241. },
  3242. {
  3243. "name": "Alessandro Cinelli (cirpo)",
  3244. "email": "alessandro.cinelli@gmail.com"
  3245. }
  3246. ],
  3247. "description": "JSON Object Signing and Encryption library for PHP.",
  3248. "keywords": [
  3249. "JSON Web Signature",
  3250. "JSON Web Token",
  3251. "JWS",
  3252. "json",
  3253. "jwt",
  3254. "token"
  3255. ],
  3256. "time": "2016-12-05T07:27:31+00:00"
  3257. },
  3258. {
  3259. "name": "nesbot/carbon",
  3260. "version": "1.39.1",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/briannesbitt/Carbon.git",
  3264. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33",
  3269. "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33",
  3270. "shasum": "",
  3271. "mirrors": [
  3272. {
  3273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3274. "preferred": true
  3275. }
  3276. ]
  3277. },
  3278. "require": {
  3279. "kylekatarnls/update-helper": "^1.1",
  3280. "php": ">=5.3.9",
  3281. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  3282. },
  3283. "require-dev": {
  3284. "composer/composer": "^1.2",
  3285. "friendsofphp/php-cs-fixer": "~2",
  3286. "phpunit/phpunit": "^4.8.35 || ^5.7"
  3287. },
  3288. "bin": [
  3289. "bin/upgrade-carbon"
  3290. ],
  3291. "type": "library",
  3292. "extra": {
  3293. "update-helper": "Carbon\\Upgrade",
  3294. "laravel": {
  3295. "providers": [
  3296. "Carbon\\Laravel\\ServiceProvider"
  3297. ]
  3298. }
  3299. },
  3300. "autoload": {
  3301. "psr-4": {
  3302. "": "src/"
  3303. }
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Brian Nesbitt",
  3312. "email": "brian@nesbot.com",
  3313. "homepage": "http://nesbot.com"
  3314. }
  3315. ],
  3316. "description": "A simple API extension for DateTime.",
  3317. "homepage": "http://carbon.nesbot.com",
  3318. "keywords": [
  3319. "date",
  3320. "datetime",
  3321. "time"
  3322. ],
  3323. "time": "2019-10-14T05:51:36+00:00"
  3324. },
  3325. {
  3326. "name": "nikic/php-parser",
  3327. "version": "v4.2.4",
  3328. "source": {
  3329. "type": "git",
  3330. "url": "https://github.com/nikic/PHP-Parser.git",
  3331. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4"
  3332. },
  3333. "dist": {
  3334. "type": "zip",
  3335. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  3336. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  3337. "shasum": "",
  3338. "mirrors": [
  3339. {
  3340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3341. "preferred": true
  3342. }
  3343. ]
  3344. },
  3345. "require": {
  3346. "ext-tokenizer": "*",
  3347. "php": ">=7.0"
  3348. },
  3349. "require-dev": {
  3350. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  3351. },
  3352. "bin": [
  3353. "bin/php-parse"
  3354. ],
  3355. "type": "library",
  3356. "extra": {
  3357. "branch-alias": {
  3358. "dev-master": "4.2-dev"
  3359. }
  3360. },
  3361. "autoload": {
  3362. "psr-4": {
  3363. "PhpParser\\": "lib/PhpParser"
  3364. }
  3365. },
  3366. "notification-url": "https://packagist.org/downloads/",
  3367. "license": [
  3368. "BSD-3-Clause"
  3369. ],
  3370. "authors": [
  3371. {
  3372. "name": "Nikita Popov"
  3373. }
  3374. ],
  3375. "description": "A PHP parser written in PHP",
  3376. "keywords": [
  3377. "parser",
  3378. "php"
  3379. ],
  3380. "time": "2019-09-01T07:51:21+00:00"
  3381. },
  3382. {
  3383. "name": "opis/closure",
  3384. "version": "3.4.1",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/opis/closure.git",
  3388. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  3393. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  3394. "shasum": "",
  3395. "mirrors": [
  3396. {
  3397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3398. "preferred": true
  3399. }
  3400. ]
  3401. },
  3402. "require": {
  3403. "php": "^5.4 || ^7.0"
  3404. },
  3405. "require-dev": {
  3406. "jeremeamia/superclosure": "^2.0",
  3407. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  3408. },
  3409. "type": "library",
  3410. "extra": {
  3411. "branch-alias": {
  3412. "dev-master": "3.3.x-dev"
  3413. }
  3414. },
  3415. "autoload": {
  3416. "psr-4": {
  3417. "Opis\\Closure\\": "src/"
  3418. },
  3419. "files": [
  3420. "functions.php"
  3421. ]
  3422. },
  3423. "notification-url": "https://packagist.org/downloads/",
  3424. "license": [
  3425. "MIT"
  3426. ],
  3427. "authors": [
  3428. {
  3429. "name": "Marius Sarca",
  3430. "email": "marius.sarca@gmail.com"
  3431. },
  3432. {
  3433. "name": "Sorin Sarca",
  3434. "email": "sarca_sorin@hotmail.com"
  3435. }
  3436. ],
  3437. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3438. "homepage": "https://opis.io/closure",
  3439. "keywords": [
  3440. "anonymous functions",
  3441. "closure",
  3442. "function",
  3443. "serializable",
  3444. "serialization",
  3445. "serialize"
  3446. ],
  3447. "time": "2019-10-19T18:38:51+00:00"
  3448. },
  3449. {
  3450. "name": "paragonie/random_compat",
  3451. "version": "v9.99.99",
  3452. "source": {
  3453. "type": "git",
  3454. "url": "https://github.com/paragonie/random_compat.git",
  3455. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  3456. },
  3457. "dist": {
  3458. "type": "zip",
  3459. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3460. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  3461. "shasum": "",
  3462. "mirrors": [
  3463. {
  3464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3465. "preferred": true
  3466. }
  3467. ]
  3468. },
  3469. "require": {
  3470. "php": "^7"
  3471. },
  3472. "require-dev": {
  3473. "phpunit/phpunit": "4.*|5.*",
  3474. "vimeo/psalm": "^1"
  3475. },
  3476. "suggest": {
  3477. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3478. },
  3479. "type": "library",
  3480. "notification-url": "https://packagist.org/downloads/",
  3481. "license": [
  3482. "MIT"
  3483. ],
  3484. "authors": [
  3485. {
  3486. "name": "Paragon Initiative Enterprises",
  3487. "email": "security@paragonie.com",
  3488. "homepage": "https://paragonie.com"
  3489. }
  3490. ],
  3491. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3492. "keywords": [
  3493. "csprng",
  3494. "polyfill",
  3495. "pseudorandom",
  3496. "random"
  3497. ],
  3498. "time": "2018-07-02T15:55:56+00:00"
  3499. },
  3500. {
  3501. "name": "phpoffice/phpspreadsheet",
  3502. "version": "1.9.0",
  3503. "source": {
  3504. "type": "git",
  3505. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3506. "reference": "8dea03eaf60a349b6097e4bcad11f894668280df"
  3507. },
  3508. "dist": {
  3509. "type": "zip",
  3510. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/8dea03eaf60a349b6097e4bcad11f894668280df",
  3511. "reference": "8dea03eaf60a349b6097e4bcad11f894668280df",
  3512. "shasum": "",
  3513. "mirrors": [
  3514. {
  3515. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3516. "preferred": true
  3517. }
  3518. ]
  3519. },
  3520. "require": {
  3521. "ext-ctype": "*",
  3522. "ext-dom": "*",
  3523. "ext-fileinfo": "*",
  3524. "ext-gd": "*",
  3525. "ext-iconv": "*",
  3526. "ext-libxml": "*",
  3527. "ext-mbstring": "*",
  3528. "ext-simplexml": "*",
  3529. "ext-xml": "*",
  3530. "ext-xmlreader": "*",
  3531. "ext-xmlwriter": "*",
  3532. "ext-zip": "*",
  3533. "ext-zlib": "*",
  3534. "markbaker/complex": "^1.4",
  3535. "markbaker/matrix": "^1.1",
  3536. "php": "^7.1",
  3537. "psr/simple-cache": "^1.0"
  3538. },
  3539. "require-dev": {
  3540. "dompdf/dompdf": "^0.8.0",
  3541. "friendsofphp/php-cs-fixer": "@stable",
  3542. "jpgraph/jpgraph": "^4.0",
  3543. "mpdf/mpdf": "^7.0.0",
  3544. "phpcompatibility/php-compatibility": "^8.0",
  3545. "phpunit/phpunit": "^7.5",
  3546. "squizlabs/php_codesniffer": "^3.3",
  3547. "tecnickcom/tcpdf": "^6.2"
  3548. },
  3549. "suggest": {
  3550. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3551. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3552. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3553. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3554. },
  3555. "type": "library",
  3556. "autoload": {
  3557. "psr-4": {
  3558. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3559. }
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "LGPL-2.1-or-later"
  3564. ],
  3565. "authors": [
  3566. {
  3567. "name": "Maarten Balliauw",
  3568. "homepage": "https://blog.maartenballiauw.be"
  3569. },
  3570. {
  3571. "name": "Mark Baker",
  3572. "homepage": "https://markbakeruk.net"
  3573. },
  3574. {
  3575. "name": "Franck Lefevre",
  3576. "homepage": "https://rootslabs.net"
  3577. },
  3578. {
  3579. "name": "Erik Tilt"
  3580. },
  3581. {
  3582. "name": "Adrien Crivelli"
  3583. }
  3584. ],
  3585. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3586. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3587. "keywords": [
  3588. "OpenXML",
  3589. "excel",
  3590. "gnumeric",
  3591. "ods",
  3592. "php",
  3593. "spreadsheet",
  3594. "xls",
  3595. "xlsx"
  3596. ],
  3597. "time": "2019-08-17T22:24:35+00:00"
  3598. },
  3599. {
  3600. "name": "pocket_be/msy-push-plugin",
  3601. "version": "dev-master",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "http://team.pocketuniversity.cn/Pocket_BE/msy-push-plugin.git",
  3605. "reference": "edba3390f95e2e455e519f7d7082e7c1db6a787a"
  3606. },
  3607. "require": {
  3608. "laravel/framework": "5.5.*|5.6.*|5.7.*|5.8.*"
  3609. },
  3610. "type": "library",
  3611. "autoload": {
  3612. "psr-4": {
  3613. "PocketBE\\MsyPush\\": "src/"
  3614. }
  3615. },
  3616. "authors": [
  3617. {
  3618. "name": "kamicloud",
  3619. "email": "cy602939074@qq.com"
  3620. }
  3621. ],
  3622. "description": "推送服务组件",
  3623. "time": "2019-07-29T02:16:19+00:00"
  3624. },
  3625. {
  3626. "name": "predis/predis",
  3627. "version": "v1.1.1",
  3628. "source": {
  3629. "type": "git",
  3630. "url": "https://github.com/nrk/predis.git",
  3631. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  3632. },
  3633. "dist": {
  3634. "type": "zip",
  3635. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  3636. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  3637. "shasum": "",
  3638. "mirrors": [
  3639. {
  3640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3641. "preferred": true
  3642. }
  3643. ]
  3644. },
  3645. "require": {
  3646. "php": ">=5.3.9"
  3647. },
  3648. "require-dev": {
  3649. "phpunit/phpunit": "~4.8"
  3650. },
  3651. "suggest": {
  3652. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3653. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3654. },
  3655. "type": "library",
  3656. "autoload": {
  3657. "psr-4": {
  3658. "Predis\\": "src/"
  3659. }
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "MIT"
  3664. ],
  3665. "authors": [
  3666. {
  3667. "name": "Daniele Alessandri",
  3668. "email": "suppakilla@gmail.com",
  3669. "homepage": "http://clorophilla.net"
  3670. }
  3671. ],
  3672. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3673. "homepage": "http://github.com/nrk/predis",
  3674. "keywords": [
  3675. "nosql",
  3676. "predis",
  3677. "redis"
  3678. ],
  3679. "time": "2016-06-16T16:22:20+00:00"
  3680. },
  3681. {
  3682. "name": "psr/container",
  3683. "version": "1.0.0",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/php-fig/container.git",
  3687. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3692. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3693. "shasum": "",
  3694. "mirrors": [
  3695. {
  3696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3697. "preferred": true
  3698. }
  3699. ]
  3700. },
  3701. "require": {
  3702. "php": ">=5.3.0"
  3703. },
  3704. "type": "library",
  3705. "extra": {
  3706. "branch-alias": {
  3707. "dev-master": "1.0.x-dev"
  3708. }
  3709. },
  3710. "autoload": {
  3711. "psr-4": {
  3712. "Psr\\Container\\": "src/"
  3713. }
  3714. },
  3715. "notification-url": "https://packagist.org/downloads/",
  3716. "license": [
  3717. "MIT"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "PHP-FIG",
  3722. "homepage": "http://www.php-fig.org/"
  3723. }
  3724. ],
  3725. "description": "Common Container Interface (PHP FIG PSR-11)",
  3726. "homepage": "https://github.com/php-fig/container",
  3727. "keywords": [
  3728. "PSR-11",
  3729. "container",
  3730. "container-interface",
  3731. "container-interop",
  3732. "psr"
  3733. ],
  3734. "time": "2017-02-14T16:28:37+00:00"
  3735. },
  3736. {
  3737. "name": "psr/http-message",
  3738. "version": "1.0.1",
  3739. "source": {
  3740. "type": "git",
  3741. "url": "https://github.com/php-fig/http-message.git",
  3742. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3743. },
  3744. "dist": {
  3745. "type": "zip",
  3746. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3747. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3748. "shasum": "",
  3749. "mirrors": [
  3750. {
  3751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3752. "preferred": true
  3753. }
  3754. ]
  3755. },
  3756. "require": {
  3757. "php": ">=5.3.0"
  3758. },
  3759. "type": "library",
  3760. "extra": {
  3761. "branch-alias": {
  3762. "dev-master": "1.0.x-dev"
  3763. }
  3764. },
  3765. "autoload": {
  3766. "psr-4": {
  3767. "Psr\\Http\\Message\\": "src/"
  3768. }
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "MIT"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "PHP-FIG",
  3777. "homepage": "http://www.php-fig.org/"
  3778. }
  3779. ],
  3780. "description": "Common interface for HTTP messages",
  3781. "homepage": "https://github.com/php-fig/http-message",
  3782. "keywords": [
  3783. "http",
  3784. "http-message",
  3785. "psr",
  3786. "psr-7",
  3787. "request",
  3788. "response"
  3789. ],
  3790. "time": "2016-08-06T14:39:51+00:00"
  3791. },
  3792. {
  3793. "name": "psr/log",
  3794. "version": "1.1.0",
  3795. "source": {
  3796. "type": "git",
  3797. "url": "https://github.com/php-fig/log.git",
  3798. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  3799. },
  3800. "dist": {
  3801. "type": "zip",
  3802. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3803. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  3804. "shasum": "",
  3805. "mirrors": [
  3806. {
  3807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3808. "preferred": true
  3809. }
  3810. ]
  3811. },
  3812. "require": {
  3813. "php": ">=5.3.0"
  3814. },
  3815. "type": "library",
  3816. "extra": {
  3817. "branch-alias": {
  3818. "dev-master": "1.0.x-dev"
  3819. }
  3820. },
  3821. "autoload": {
  3822. "psr-4": {
  3823. "Psr\\Log\\": "Psr/Log/"
  3824. }
  3825. },
  3826. "notification-url": "https://packagist.org/downloads/",
  3827. "license": [
  3828. "MIT"
  3829. ],
  3830. "authors": [
  3831. {
  3832. "name": "PHP-FIG",
  3833. "homepage": "http://www.php-fig.org/"
  3834. }
  3835. ],
  3836. "description": "Common interface for logging libraries",
  3837. "homepage": "https://github.com/php-fig/log",
  3838. "keywords": [
  3839. "log",
  3840. "psr",
  3841. "psr-3"
  3842. ],
  3843. "time": "2018-11-20T15:27:04+00:00"
  3844. },
  3845. {
  3846. "name": "psr/simple-cache",
  3847. "version": "1.0.1",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://github.com/php-fig/simple-cache.git",
  3851. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3856. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3857. "shasum": "",
  3858. "mirrors": [
  3859. {
  3860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3861. "preferred": true
  3862. }
  3863. ]
  3864. },
  3865. "require": {
  3866. "php": ">=5.3.0"
  3867. },
  3868. "type": "library",
  3869. "extra": {
  3870. "branch-alias": {
  3871. "dev-master": "1.0.x-dev"
  3872. }
  3873. },
  3874. "autoload": {
  3875. "psr-4": {
  3876. "Psr\\SimpleCache\\": "src/"
  3877. }
  3878. },
  3879. "notification-url": "https://packagist.org/downloads/",
  3880. "license": [
  3881. "MIT"
  3882. ],
  3883. "authors": [
  3884. {
  3885. "name": "PHP-FIG",
  3886. "homepage": "http://www.php-fig.org/"
  3887. }
  3888. ],
  3889. "description": "Common interfaces for simple caching",
  3890. "keywords": [
  3891. "cache",
  3892. "caching",
  3893. "psr",
  3894. "psr-16",
  3895. "simple-cache"
  3896. ],
  3897. "time": "2017-10-23T01:57:42+00:00"
  3898. },
  3899. {
  3900. "name": "psy/psysh",
  3901. "version": "v0.9.9",
  3902. "source": {
  3903. "type": "git",
  3904. "url": "https://github.com/bobthecow/psysh.git",
  3905. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  3906. },
  3907. "dist": {
  3908. "type": "zip",
  3909. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3910. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  3911. "shasum": "",
  3912. "mirrors": [
  3913. {
  3914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3915. "preferred": true
  3916. }
  3917. ]
  3918. },
  3919. "require": {
  3920. "dnoegel/php-xdg-base-dir": "0.1",
  3921. "ext-json": "*",
  3922. "ext-tokenizer": "*",
  3923. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3924. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  3925. "php": ">=5.4.0",
  3926. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  3927. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  3928. },
  3929. "require-dev": {
  3930. "bamarni/composer-bin-plugin": "^1.2",
  3931. "hoa/console": "~2.15|~3.16",
  3932. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  3933. },
  3934. "suggest": {
  3935. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3936. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3937. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3938. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3939. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3940. },
  3941. "bin": [
  3942. "bin/psysh"
  3943. ],
  3944. "type": "library",
  3945. "extra": {
  3946. "branch-alias": {
  3947. "dev-develop": "0.9.x-dev"
  3948. }
  3949. },
  3950. "autoload": {
  3951. "files": [
  3952. "src/functions.php"
  3953. ],
  3954. "psr-4": {
  3955. "Psy\\": "src/"
  3956. }
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "MIT"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "Justin Hileman",
  3965. "email": "justin@justinhileman.info",
  3966. "homepage": "http://justinhileman.com"
  3967. }
  3968. ],
  3969. "description": "An interactive shell for modern PHP.",
  3970. "homepage": "http://psysh.org",
  3971. "keywords": [
  3972. "REPL",
  3973. "console",
  3974. "interactive",
  3975. "shell"
  3976. ],
  3977. "time": "2018-10-13T15:16:03+00:00"
  3978. },
  3979. {
  3980. "name": "ralouphie/getallheaders",
  3981. "version": "3.0.3",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/ralouphie/getallheaders.git",
  3985. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3990. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3991. "shasum": "",
  3992. "mirrors": [
  3993. {
  3994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3995. "preferred": true
  3996. }
  3997. ]
  3998. },
  3999. "require": {
  4000. "php": ">=5.6"
  4001. },
  4002. "require-dev": {
  4003. "php-coveralls/php-coveralls": "^2.1",
  4004. "phpunit/phpunit": "^5 || ^6.5"
  4005. },
  4006. "type": "library",
  4007. "autoload": {
  4008. "files": [
  4009. "src/getallheaders.php"
  4010. ]
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "MIT"
  4015. ],
  4016. "authors": [
  4017. {
  4018. "name": "Ralph Khattar",
  4019. "email": "ralph.khattar@gmail.com"
  4020. }
  4021. ],
  4022. "description": "A polyfill for getallheaders.",
  4023. "time": "2019-03-08T08:55:37+00:00"
  4024. },
  4025. {
  4026. "name": "ramsey/uuid",
  4027. "version": "3.8.0",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://github.com/ramsey/uuid.git",
  4031. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  4032. },
  4033. "dist": {
  4034. "type": "zip",
  4035. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  4036. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  4037. "shasum": "",
  4038. "mirrors": [
  4039. {
  4040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4041. "preferred": true
  4042. }
  4043. ]
  4044. },
  4045. "require": {
  4046. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  4047. "php": "^5.4 || ^7.0",
  4048. "symfony/polyfill-ctype": "^1.8"
  4049. },
  4050. "replace": {
  4051. "rhumsaa/uuid": "self.version"
  4052. },
  4053. "require-dev": {
  4054. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  4055. "doctrine/annotations": "~1.2.0",
  4056. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  4057. "ircmaxell/random-lib": "^1.1",
  4058. "jakub-onderka/php-parallel-lint": "^0.9.0",
  4059. "mockery/mockery": "^0.9.9",
  4060. "moontoast/math": "^1.1",
  4061. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  4062. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  4063. "squizlabs/php_codesniffer": "^2.3"
  4064. },
  4065. "suggest": {
  4066. "ext-ctype": "Provides support for PHP Ctype functions",
  4067. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  4068. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  4069. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4070. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  4071. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  4072. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4073. },
  4074. "type": "library",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-master": "3.x-dev"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Ramsey\\Uuid\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "authors": [
  4090. {
  4091. "name": "Marijn Huizendveld",
  4092. "email": "marijn.huizendveld@gmail.com"
  4093. },
  4094. {
  4095. "name": "Thibaud Fabre",
  4096. "email": "thibaud@aztech.io"
  4097. },
  4098. {
  4099. "name": "Ben Ramsey",
  4100. "email": "ben@benramsey.com",
  4101. "homepage": "https://benramsey.com"
  4102. }
  4103. ],
  4104. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4105. "homepage": "https://github.com/ramsey/uuid",
  4106. "keywords": [
  4107. "guid",
  4108. "identifier",
  4109. "uuid"
  4110. ],
  4111. "time": "2018-07-19T23:38:55+00:00"
  4112. },
  4113. {
  4114. "name": "sentry/sentry",
  4115. "version": "1.10.0",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/getsentry/sentry-php.git",
  4119. "reference": "b2b8ffe1560b9fb0110b02993594a4b04a511959"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/b2b8ffe1560b9fb0110b02993594a4b04a511959",
  4124. "reference": "b2b8ffe1560b9fb0110b02993594a4b04a511959",
  4125. "shasum": "",
  4126. "mirrors": [
  4127. {
  4128. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4129. "preferred": true
  4130. }
  4131. ]
  4132. },
  4133. "require": {
  4134. "ext-curl": "*",
  4135. "php": "^5.3|^7.0"
  4136. },
  4137. "conflict": {
  4138. "raven/raven": "*"
  4139. },
  4140. "require-dev": {
  4141. "friendsofphp/php-cs-fixer": "^1.8.0",
  4142. "monolog/monolog": "*",
  4143. "phpunit/phpunit": "^4.8.35 || ^5.7"
  4144. },
  4145. "suggest": {
  4146. "ext-hash": "*",
  4147. "ext-json": "*",
  4148. "ext-mbstring": "*",
  4149. "monolog/monolog": "Automatically capture Monolog events as breadcrumbs"
  4150. },
  4151. "bin": [
  4152. "bin/sentry"
  4153. ],
  4154. "type": "library",
  4155. "extra": {
  4156. "branch-alias": {
  4157. "dev-master": "1.10.x-dev"
  4158. }
  4159. },
  4160. "autoload": {
  4161. "psr-0": {
  4162. "Raven_": "lib/"
  4163. }
  4164. },
  4165. "notification-url": "https://packagist.org/downloads/",
  4166. "license": [
  4167. "BSD-3-Clause"
  4168. ],
  4169. "authors": [
  4170. {
  4171. "name": "David Cramer",
  4172. "email": "dcramer@gmail.com"
  4173. }
  4174. ],
  4175. "description": "A PHP client for Sentry (http://getsentry.com)",
  4176. "homepage": "http://getsentry.com",
  4177. "keywords": [
  4178. "log",
  4179. "logging"
  4180. ],
  4181. "time": "2018-11-09T12:27:19+00:00"
  4182. },
  4183. {
  4184. "name": "sentry/sentry-laravel",
  4185. "version": "0.11.0",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/getsentry/sentry-laravel.git",
  4189. "reference": "21329406001006ffa5736ee08222e7ffae9e1dcf"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/21329406001006ffa5736ee08222e7ffae9e1dcf",
  4194. "reference": "21329406001006ffa5736ee08222e7ffae9e1dcf",
  4195. "shasum": "",
  4196. "mirrors": [
  4197. {
  4198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4199. "preferred": true
  4200. }
  4201. ]
  4202. },
  4203. "require": {
  4204. "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
  4205. "php": "^5.4||^7.0",
  4206. "sentry/sentry": "^1.9.0"
  4207. },
  4208. "require-dev": {
  4209. "friendsofphp/php-cs-fixer": "2.7.*",
  4210. "laravel/framework": "5.7.*",
  4211. "orchestra/testbench": "3.7.*",
  4212. "phpunit/phpunit": "7.3.*"
  4213. },
  4214. "type": "library",
  4215. "extra": {
  4216. "branch-alias": {
  4217. "dev-master": "0.11.x-dev"
  4218. },
  4219. "laravel": {
  4220. "providers": [
  4221. "Sentry\\SentryLaravel\\SentryLaravelServiceProvider"
  4222. ],
  4223. "aliases": {
  4224. "Sentry": "Sentry\\SentryLaravel\\SentryFacade"
  4225. }
  4226. }
  4227. },
  4228. "autoload": {
  4229. "psr-0": {
  4230. "Sentry\\SentryLaravel\\": "src/"
  4231. }
  4232. },
  4233. "notification-url": "https://packagist.org/downloads/",
  4234. "license": [
  4235. "Apache-2.0"
  4236. ],
  4237. "authors": [
  4238. {
  4239. "name": "David Cramer",
  4240. "email": "dcramer@gmail.com"
  4241. }
  4242. ],
  4243. "description": "Laravel integration for Sentry (https://sentry.io)",
  4244. "homepage": "https://sentry.io",
  4245. "keywords": [
  4246. "errors",
  4247. "laravel",
  4248. "logging",
  4249. "sentry"
  4250. ],
  4251. "time": "2018-11-01T12:52:14+00:00"
  4252. },
  4253. {
  4254. "name": "simplesoftwareio/simple-qrcode",
  4255. "version": "2.0.0",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4259. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/90b2282dd29be1e52565e9832dc23af41610ea07",
  4264. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07",
  4265. "shasum": "",
  4266. "mirrors": [
  4267. {
  4268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4269. "preferred": true
  4270. }
  4271. ]
  4272. },
  4273. "require": {
  4274. "bacon/bacon-qr-code": "1.0.*",
  4275. "ext-gd": "*",
  4276. "illuminate/support": ">=5.0.0",
  4277. "php": ">=7.0"
  4278. },
  4279. "require-dev": {
  4280. "mockery/mockery": "0.9.*",
  4281. "phpunit/phpunit": "~6"
  4282. },
  4283. "type": "library",
  4284. "extra": {
  4285. "laravel": {
  4286. "providers": [
  4287. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4288. ],
  4289. "aliases": {
  4290. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4291. }
  4292. }
  4293. },
  4294. "autoload": {
  4295. "psr-0": {
  4296. "SimpleSoftwareIO\\QrCode\\": "src"
  4297. }
  4298. },
  4299. "notification-url": "https://packagist.org/downloads/",
  4300. "license": [
  4301. "MIT"
  4302. ],
  4303. "authors": [
  4304. {
  4305. "name": "Simple Software LLC",
  4306. "email": "support@simplesoftware.io"
  4307. }
  4308. ],
  4309. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4310. "homepage": "http://www.simplesoftware.io",
  4311. "keywords": [
  4312. "Simple",
  4313. "generator",
  4314. "laravel",
  4315. "qrcode",
  4316. "wrapper"
  4317. ],
  4318. "time": "2017-11-26T15:27:12+00:00"
  4319. },
  4320. {
  4321. "name": "swiftmailer/swiftmailer",
  4322. "version": "v6.2.1",
  4323. "source": {
  4324. "type": "git",
  4325. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4326. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  4327. },
  4328. "dist": {
  4329. "type": "zip",
  4330. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  4331. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  4332. "shasum": "",
  4333. "mirrors": [
  4334. {
  4335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4336. "preferred": true
  4337. }
  4338. ]
  4339. },
  4340. "require": {
  4341. "egulias/email-validator": "~2.0",
  4342. "php": ">=7.0.0",
  4343. "symfony/polyfill-iconv": "^1.0",
  4344. "symfony/polyfill-intl-idn": "^1.10",
  4345. "symfony/polyfill-mbstring": "^1.0"
  4346. },
  4347. "require-dev": {
  4348. "mockery/mockery": "~0.9.1",
  4349. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  4350. },
  4351. "suggest": {
  4352. "ext-intl": "Needed to support internationalized email addresses",
  4353. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  4354. },
  4355. "type": "library",
  4356. "extra": {
  4357. "branch-alias": {
  4358. "dev-master": "6.2-dev"
  4359. }
  4360. },
  4361. "autoload": {
  4362. "files": [
  4363. "lib/swift_required.php"
  4364. ]
  4365. },
  4366. "notification-url": "https://packagist.org/downloads/",
  4367. "license": [
  4368. "MIT"
  4369. ],
  4370. "authors": [
  4371. {
  4372. "name": "Chris Corbyn"
  4373. },
  4374. {
  4375. "name": "Fabien Potencier",
  4376. "email": "fabien@symfony.com"
  4377. }
  4378. ],
  4379. "description": "Swiftmailer, free feature-rich PHP mailer",
  4380. "homepage": "https://swiftmailer.symfony.com",
  4381. "keywords": [
  4382. "email",
  4383. "mail",
  4384. "mailer"
  4385. ],
  4386. "time": "2019-04-21T09:21:45+00:00"
  4387. },
  4388. {
  4389. "name": "symfony/console",
  4390. "version": "v4.3.5",
  4391. "source": {
  4392. "type": "git",
  4393. "url": "https://github.com/symfony/console.git",
  4394. "reference": "929ddf360d401b958f611d44e726094ab46a7369"
  4395. },
  4396. "dist": {
  4397. "type": "zip",
  4398. "url": "https://api.github.com/repos/symfony/console/zipball/929ddf360d401b958f611d44e726094ab46a7369",
  4399. "reference": "929ddf360d401b958f611d44e726094ab46a7369",
  4400. "shasum": "",
  4401. "mirrors": [
  4402. {
  4403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4404. "preferred": true
  4405. }
  4406. ]
  4407. },
  4408. "require": {
  4409. "php": "^7.1.3",
  4410. "symfony/polyfill-mbstring": "~1.0",
  4411. "symfony/polyfill-php73": "^1.8",
  4412. "symfony/service-contracts": "^1.1"
  4413. },
  4414. "conflict": {
  4415. "symfony/dependency-injection": "<3.4",
  4416. "symfony/event-dispatcher": "<4.3",
  4417. "symfony/process": "<3.3"
  4418. },
  4419. "provide": {
  4420. "psr/log-implementation": "1.0"
  4421. },
  4422. "require-dev": {
  4423. "psr/log": "~1.0",
  4424. "symfony/config": "~3.4|~4.0",
  4425. "symfony/dependency-injection": "~3.4|~4.0",
  4426. "symfony/event-dispatcher": "^4.3",
  4427. "symfony/lock": "~3.4|~4.0",
  4428. "symfony/process": "~3.4|~4.0",
  4429. "symfony/var-dumper": "^4.3"
  4430. },
  4431. "suggest": {
  4432. "psr/log": "For using the console logger",
  4433. "symfony/event-dispatcher": "",
  4434. "symfony/lock": "",
  4435. "symfony/process": ""
  4436. },
  4437. "type": "library",
  4438. "extra": {
  4439. "branch-alias": {
  4440. "dev-master": "4.3-dev"
  4441. }
  4442. },
  4443. "autoload": {
  4444. "psr-4": {
  4445. "Symfony\\Component\\Console\\": ""
  4446. },
  4447. "exclude-from-classmap": [
  4448. "/Tests/"
  4449. ]
  4450. },
  4451. "notification-url": "https://packagist.org/downloads/",
  4452. "license": [
  4453. "MIT"
  4454. ],
  4455. "authors": [
  4456. {
  4457. "name": "Fabien Potencier",
  4458. "email": "fabien@symfony.com"
  4459. },
  4460. {
  4461. "name": "Symfony Community",
  4462. "homepage": "https://symfony.com/contributors"
  4463. }
  4464. ],
  4465. "description": "Symfony Console Component",
  4466. "homepage": "https://symfony.com",
  4467. "time": "2019-10-07T12:36:49+00:00"
  4468. },
  4469. {
  4470. "name": "symfony/css-selector",
  4471. "version": "v4.3.5",
  4472. "source": {
  4473. "type": "git",
  4474. "url": "https://github.com/symfony/css-selector.git",
  4475. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9"
  4476. },
  4477. "dist": {
  4478. "type": "zip",
  4479. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  4480. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  4481. "shasum": "",
  4482. "mirrors": [
  4483. {
  4484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4485. "preferred": true
  4486. }
  4487. ]
  4488. },
  4489. "require": {
  4490. "php": "^7.1.3"
  4491. },
  4492. "type": "library",
  4493. "extra": {
  4494. "branch-alias": {
  4495. "dev-master": "4.3-dev"
  4496. }
  4497. },
  4498. "autoload": {
  4499. "psr-4": {
  4500. "Symfony\\Component\\CssSelector\\": ""
  4501. },
  4502. "exclude-from-classmap": [
  4503. "/Tests/"
  4504. ]
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "MIT"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "Fabien Potencier",
  4513. "email": "fabien@symfony.com"
  4514. },
  4515. {
  4516. "name": "Jean-François Simon",
  4517. "email": "jeanfrancois.simon@sensiolabs.com"
  4518. },
  4519. {
  4520. "name": "Symfony Community",
  4521. "homepage": "https://symfony.com/contributors"
  4522. }
  4523. ],
  4524. "description": "Symfony CssSelector Component",
  4525. "homepage": "https://symfony.com",
  4526. "time": "2019-10-02T08:36:26+00:00"
  4527. },
  4528. {
  4529. "name": "symfony/debug",
  4530. "version": "v4.3.5",
  4531. "source": {
  4532. "type": "git",
  4533. "url": "https://github.com/symfony/debug.git",
  4534. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe"
  4535. },
  4536. "dist": {
  4537. "type": "zip",
  4538. "url": "https://api.github.com/repos/symfony/debug/zipball/cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  4539. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  4540. "shasum": "",
  4541. "mirrors": [
  4542. {
  4543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4544. "preferred": true
  4545. }
  4546. ]
  4547. },
  4548. "require": {
  4549. "php": "^7.1.3",
  4550. "psr/log": "~1.0"
  4551. },
  4552. "conflict": {
  4553. "symfony/http-kernel": "<3.4"
  4554. },
  4555. "require-dev": {
  4556. "symfony/http-kernel": "~3.4|~4.0"
  4557. },
  4558. "type": "library",
  4559. "extra": {
  4560. "branch-alias": {
  4561. "dev-master": "4.3-dev"
  4562. }
  4563. },
  4564. "autoload": {
  4565. "psr-4": {
  4566. "Symfony\\Component\\Debug\\": ""
  4567. },
  4568. "exclude-from-classmap": [
  4569. "/Tests/"
  4570. ]
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Fabien Potencier",
  4579. "email": "fabien@symfony.com"
  4580. },
  4581. {
  4582. "name": "Symfony Community",
  4583. "homepage": "https://symfony.com/contributors"
  4584. }
  4585. ],
  4586. "description": "Symfony Debug Component",
  4587. "homepage": "https://symfony.com",
  4588. "time": "2019-09-19T15:51:53+00:00"
  4589. },
  4590. {
  4591. "name": "symfony/dom-crawler",
  4592. "version": "v4.3.5",
  4593. "source": {
  4594. "type": "git",
  4595. "url": "https://github.com/symfony/dom-crawler.git",
  4596. "reference": "e9f7b4d19d69b133bd638eeddcdc757723b4211f"
  4597. },
  4598. "dist": {
  4599. "type": "zip",
  4600. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/e9f7b4d19d69b133bd638eeddcdc757723b4211f",
  4601. "reference": "e9f7b4d19d69b133bd638eeddcdc757723b4211f",
  4602. "shasum": "",
  4603. "mirrors": [
  4604. {
  4605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4606. "preferred": true
  4607. }
  4608. ]
  4609. },
  4610. "require": {
  4611. "php": "^7.1.3",
  4612. "symfony/polyfill-ctype": "~1.8",
  4613. "symfony/polyfill-mbstring": "~1.0"
  4614. },
  4615. "conflict": {
  4616. "masterminds/html5": "<2.6"
  4617. },
  4618. "require-dev": {
  4619. "masterminds/html5": "^2.6",
  4620. "symfony/css-selector": "~3.4|~4.0"
  4621. },
  4622. "suggest": {
  4623. "symfony/css-selector": ""
  4624. },
  4625. "type": "library",
  4626. "extra": {
  4627. "branch-alias": {
  4628. "dev-master": "4.3-dev"
  4629. }
  4630. },
  4631. "autoload": {
  4632. "psr-4": {
  4633. "Symfony\\Component\\DomCrawler\\": ""
  4634. },
  4635. "exclude-from-classmap": [
  4636. "/Tests/"
  4637. ]
  4638. },
  4639. "notification-url": "https://packagist.org/downloads/",
  4640. "license": [
  4641. "MIT"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "Fabien Potencier",
  4646. "email": "fabien@symfony.com"
  4647. },
  4648. {
  4649. "name": "Symfony Community",
  4650. "homepage": "https://symfony.com/contributors"
  4651. }
  4652. ],
  4653. "description": "Symfony DomCrawler Component",
  4654. "homepage": "https://symfony.com",
  4655. "time": "2019-09-28T21:25:05+00:00"
  4656. },
  4657. {
  4658. "name": "symfony/event-dispatcher",
  4659. "version": "v4.3.5",
  4660. "source": {
  4661. "type": "git",
  4662. "url": "https://github.com/symfony/event-dispatcher.git",
  4663. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807"
  4664. },
  4665. "dist": {
  4666. "type": "zip",
  4667. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6229f58993e5a157f6096fc7145c0717d0be8807",
  4668. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807",
  4669. "shasum": "",
  4670. "mirrors": [
  4671. {
  4672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4673. "preferred": true
  4674. }
  4675. ]
  4676. },
  4677. "require": {
  4678. "php": "^7.1.3",
  4679. "symfony/event-dispatcher-contracts": "^1.1"
  4680. },
  4681. "conflict": {
  4682. "symfony/dependency-injection": "<3.4"
  4683. },
  4684. "provide": {
  4685. "psr/event-dispatcher-implementation": "1.0",
  4686. "symfony/event-dispatcher-implementation": "1.1"
  4687. },
  4688. "require-dev": {
  4689. "psr/log": "~1.0",
  4690. "symfony/config": "~3.4|~4.0",
  4691. "symfony/dependency-injection": "~3.4|~4.0",
  4692. "symfony/expression-language": "~3.4|~4.0",
  4693. "symfony/http-foundation": "^3.4|^4.0",
  4694. "symfony/service-contracts": "^1.1",
  4695. "symfony/stopwatch": "~3.4|~4.0"
  4696. },
  4697. "suggest": {
  4698. "symfony/dependency-injection": "",
  4699. "symfony/http-kernel": ""
  4700. },
  4701. "type": "library",
  4702. "extra": {
  4703. "branch-alias": {
  4704. "dev-master": "4.3-dev"
  4705. }
  4706. },
  4707. "autoload": {
  4708. "psr-4": {
  4709. "Symfony\\Component\\EventDispatcher\\": ""
  4710. },
  4711. "exclude-from-classmap": [
  4712. "/Tests/"
  4713. ]
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "Fabien Potencier",
  4722. "email": "fabien@symfony.com"
  4723. },
  4724. {
  4725. "name": "Symfony Community",
  4726. "homepage": "https://symfony.com/contributors"
  4727. }
  4728. ],
  4729. "description": "Symfony EventDispatcher Component",
  4730. "homepage": "https://symfony.com",
  4731. "time": "2019-10-01T16:40:32+00:00"
  4732. },
  4733. {
  4734. "name": "symfony/event-dispatcher-contracts",
  4735. "version": "v1.1.7",
  4736. "source": {
  4737. "type": "git",
  4738. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4739. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  4740. },
  4741. "dist": {
  4742. "type": "zip",
  4743. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  4744. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  4745. "shasum": "",
  4746. "mirrors": [
  4747. {
  4748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4749. "preferred": true
  4750. }
  4751. ]
  4752. },
  4753. "require": {
  4754. "php": "^7.1.3"
  4755. },
  4756. "suggest": {
  4757. "psr/event-dispatcher": "",
  4758. "symfony/event-dispatcher-implementation": ""
  4759. },
  4760. "type": "library",
  4761. "extra": {
  4762. "branch-alias": {
  4763. "dev-master": "1.1-dev"
  4764. }
  4765. },
  4766. "autoload": {
  4767. "psr-4": {
  4768. "Symfony\\Contracts\\EventDispatcher\\": ""
  4769. }
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "MIT"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Nicolas Grekas",
  4778. "email": "p@tchwork.com"
  4779. },
  4780. {
  4781. "name": "Symfony Community",
  4782. "homepage": "https://symfony.com/contributors"
  4783. }
  4784. ],
  4785. "description": "Generic abstractions related to dispatching event",
  4786. "homepage": "https://symfony.com",
  4787. "keywords": [
  4788. "abstractions",
  4789. "contracts",
  4790. "decoupling",
  4791. "interfaces",
  4792. "interoperability",
  4793. "standards"
  4794. ],
  4795. "time": "2019-09-17T09:54:03+00:00"
  4796. },
  4797. {
  4798. "name": "symfony/finder",
  4799. "version": "v4.3.5",
  4800. "source": {
  4801. "type": "git",
  4802. "url": "https://github.com/symfony/finder.git",
  4803. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1"
  4804. },
  4805. "dist": {
  4806. "type": "zip",
  4807. "url": "https://api.github.com/repos/symfony/finder/zipball/5e575faa95548d0586f6bedaeabec259714e44d1",
  4808. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1",
  4809. "shasum": "",
  4810. "mirrors": [
  4811. {
  4812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4813. "preferred": true
  4814. }
  4815. ]
  4816. },
  4817. "require": {
  4818. "php": "^7.1.3"
  4819. },
  4820. "type": "library",
  4821. "extra": {
  4822. "branch-alias": {
  4823. "dev-master": "4.3-dev"
  4824. }
  4825. },
  4826. "autoload": {
  4827. "psr-4": {
  4828. "Symfony\\Component\\Finder\\": ""
  4829. },
  4830. "exclude-from-classmap": [
  4831. "/Tests/"
  4832. ]
  4833. },
  4834. "notification-url": "https://packagist.org/downloads/",
  4835. "license": [
  4836. "MIT"
  4837. ],
  4838. "authors": [
  4839. {
  4840. "name": "Fabien Potencier",
  4841. "email": "fabien@symfony.com"
  4842. },
  4843. {
  4844. "name": "Symfony Community",
  4845. "homepage": "https://symfony.com/contributors"
  4846. }
  4847. ],
  4848. "description": "Symfony Finder Component",
  4849. "homepage": "https://symfony.com",
  4850. "time": "2019-09-16T11:29:48+00:00"
  4851. },
  4852. {
  4853. "name": "symfony/http-foundation",
  4854. "version": "v4.3.5",
  4855. "source": {
  4856. "type": "git",
  4857. "url": "https://github.com/symfony/http-foundation.git",
  4858. "reference": "76590ced16d4674780863471bae10452b79210a5"
  4859. },
  4860. "dist": {
  4861. "type": "zip",
  4862. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/76590ced16d4674780863471bae10452b79210a5",
  4863. "reference": "76590ced16d4674780863471bae10452b79210a5",
  4864. "shasum": "",
  4865. "mirrors": [
  4866. {
  4867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4868. "preferred": true
  4869. }
  4870. ]
  4871. },
  4872. "require": {
  4873. "php": "^7.1.3",
  4874. "symfony/mime": "^4.3",
  4875. "symfony/polyfill-mbstring": "~1.1"
  4876. },
  4877. "require-dev": {
  4878. "predis/predis": "~1.0",
  4879. "symfony/expression-language": "~3.4|~4.0"
  4880. },
  4881. "type": "library",
  4882. "extra": {
  4883. "branch-alias": {
  4884. "dev-master": "4.3-dev"
  4885. }
  4886. },
  4887. "autoload": {
  4888. "psr-4": {
  4889. "Symfony\\Component\\HttpFoundation\\": ""
  4890. },
  4891. "exclude-from-classmap": [
  4892. "/Tests/"
  4893. ]
  4894. },
  4895. "notification-url": "https://packagist.org/downloads/",
  4896. "license": [
  4897. "MIT"
  4898. ],
  4899. "authors": [
  4900. {
  4901. "name": "Fabien Potencier",
  4902. "email": "fabien@symfony.com"
  4903. },
  4904. {
  4905. "name": "Symfony Community",
  4906. "homepage": "https://symfony.com/contributors"
  4907. }
  4908. ],
  4909. "description": "Symfony HttpFoundation Component",
  4910. "homepage": "https://symfony.com",
  4911. "time": "2019-10-04T19:48:13+00:00"
  4912. },
  4913. {
  4914. "name": "symfony/http-kernel",
  4915. "version": "v4.3.5",
  4916. "source": {
  4917. "type": "git",
  4918. "url": "https://github.com/symfony/http-kernel.git",
  4919. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991"
  4920. },
  4921. "dist": {
  4922. "type": "zip",
  4923. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5f08141850932e8019c01d8988bf3ed6367d2991",
  4924. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991",
  4925. "shasum": "",
  4926. "mirrors": [
  4927. {
  4928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4929. "preferred": true
  4930. }
  4931. ]
  4932. },
  4933. "require": {
  4934. "php": "^7.1.3",
  4935. "psr/log": "~1.0",
  4936. "symfony/debug": "~3.4|~4.0",
  4937. "symfony/event-dispatcher": "^4.3",
  4938. "symfony/http-foundation": "^4.1.1",
  4939. "symfony/polyfill-ctype": "~1.8",
  4940. "symfony/polyfill-php73": "^1.9"
  4941. },
  4942. "conflict": {
  4943. "symfony/browser-kit": "<4.3",
  4944. "symfony/config": "<3.4",
  4945. "symfony/dependency-injection": "<4.3",
  4946. "symfony/translation": "<4.2",
  4947. "symfony/var-dumper": "<4.1.1",
  4948. "twig/twig": "<1.34|<2.4,>=2"
  4949. },
  4950. "provide": {
  4951. "psr/log-implementation": "1.0"
  4952. },
  4953. "require-dev": {
  4954. "psr/cache": "~1.0",
  4955. "symfony/browser-kit": "^4.3",
  4956. "symfony/config": "~3.4|~4.0",
  4957. "symfony/console": "~3.4|~4.0",
  4958. "symfony/css-selector": "~3.4|~4.0",
  4959. "symfony/dependency-injection": "^4.3",
  4960. "symfony/dom-crawler": "~3.4|~4.0",
  4961. "symfony/expression-language": "~3.4|~4.0",
  4962. "symfony/finder": "~3.4|~4.0",
  4963. "symfony/process": "~3.4|~4.0",
  4964. "symfony/routing": "~3.4|~4.0",
  4965. "symfony/stopwatch": "~3.4|~4.0",
  4966. "symfony/templating": "~3.4|~4.0",
  4967. "symfony/translation": "~4.2",
  4968. "symfony/translation-contracts": "^1.1",
  4969. "symfony/var-dumper": "^4.1.1",
  4970. "twig/twig": "^1.34|^2.4"
  4971. },
  4972. "suggest": {
  4973. "symfony/browser-kit": "",
  4974. "symfony/config": "",
  4975. "symfony/console": "",
  4976. "symfony/dependency-injection": "",
  4977. "symfony/var-dumper": ""
  4978. },
  4979. "type": "library",
  4980. "extra": {
  4981. "branch-alias": {
  4982. "dev-master": "4.3-dev"
  4983. }
  4984. },
  4985. "autoload": {
  4986. "psr-4": {
  4987. "Symfony\\Component\\HttpKernel\\": ""
  4988. },
  4989. "exclude-from-classmap": [
  4990. "/Tests/"
  4991. ]
  4992. },
  4993. "notification-url": "https://packagist.org/downloads/",
  4994. "license": [
  4995. "MIT"
  4996. ],
  4997. "authors": [
  4998. {
  4999. "name": "Fabien Potencier",
  5000. "email": "fabien@symfony.com"
  5001. },
  5002. {
  5003. "name": "Symfony Community",
  5004. "homepage": "https://symfony.com/contributors"
  5005. }
  5006. ],
  5007. "description": "Symfony HttpKernel Component",
  5008. "homepage": "https://symfony.com",
  5009. "time": "2019-10-07T15:06:41+00:00"
  5010. },
  5011. {
  5012. "name": "symfony/mime",
  5013. "version": "v4.3.5",
  5014. "source": {
  5015. "type": "git",
  5016. "url": "https://github.com/symfony/mime.git",
  5017. "reference": "32f71570547b91879fdbd9cf50317d556ae86916"
  5018. },
  5019. "dist": {
  5020. "type": "zip",
  5021. "url": "https://api.github.com/repos/symfony/mime/zipball/32f71570547b91879fdbd9cf50317d556ae86916",
  5022. "reference": "32f71570547b91879fdbd9cf50317d556ae86916",
  5023. "shasum": "",
  5024. "mirrors": [
  5025. {
  5026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5027. "preferred": true
  5028. }
  5029. ]
  5030. },
  5031. "require": {
  5032. "php": "^7.1.3",
  5033. "symfony/polyfill-intl-idn": "^1.10",
  5034. "symfony/polyfill-mbstring": "^1.0"
  5035. },
  5036. "require-dev": {
  5037. "egulias/email-validator": "^2.1.10",
  5038. "symfony/dependency-injection": "~3.4|^4.1"
  5039. },
  5040. "type": "library",
  5041. "extra": {
  5042. "branch-alias": {
  5043. "dev-master": "4.3-dev"
  5044. }
  5045. },
  5046. "autoload": {
  5047. "psr-4": {
  5048. "Symfony\\Component\\Mime\\": ""
  5049. },
  5050. "exclude-from-classmap": [
  5051. "/Tests/"
  5052. ]
  5053. },
  5054. "notification-url": "https://packagist.org/downloads/",
  5055. "license": [
  5056. "MIT"
  5057. ],
  5058. "authors": [
  5059. {
  5060. "name": "Fabien Potencier",
  5061. "email": "fabien@symfony.com"
  5062. },
  5063. {
  5064. "name": "Symfony Community",
  5065. "homepage": "https://symfony.com/contributors"
  5066. }
  5067. ],
  5068. "description": "A library to manipulate MIME messages",
  5069. "homepage": "https://symfony.com",
  5070. "keywords": [
  5071. "mime",
  5072. "mime-type"
  5073. ],
  5074. "time": "2019-09-19T17:00:15+00:00"
  5075. },
  5076. {
  5077. "name": "symfony/polyfill-ctype",
  5078. "version": "v1.12.0",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://github.com/symfony/polyfill-ctype.git",
  5082. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  5087. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  5088. "shasum": "",
  5089. "mirrors": [
  5090. {
  5091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5092. "preferred": true
  5093. }
  5094. ]
  5095. },
  5096. "require": {
  5097. "php": ">=5.3.3"
  5098. },
  5099. "suggest": {
  5100. "ext-ctype": "For best performance"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "branch-alias": {
  5105. "dev-master": "1.12-dev"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "psr-4": {
  5110. "Symfony\\Polyfill\\Ctype\\": ""
  5111. },
  5112. "files": [
  5113. "bootstrap.php"
  5114. ]
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Gert de Pagter",
  5123. "email": "BackEndTea@gmail.com"
  5124. },
  5125. {
  5126. "name": "Symfony Community",
  5127. "homepage": "https://symfony.com/contributors"
  5128. }
  5129. ],
  5130. "description": "Symfony polyfill for ctype functions",
  5131. "homepage": "https://symfony.com",
  5132. "keywords": [
  5133. "compatibility",
  5134. "ctype",
  5135. "polyfill",
  5136. "portable"
  5137. ],
  5138. "time": "2019-08-06T08:03:45+00:00"
  5139. },
  5140. {
  5141. "name": "symfony/polyfill-iconv",
  5142. "version": "v1.12.0",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://github.com/symfony/polyfill-iconv.git",
  5146. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  5147. },
  5148. "dist": {
  5149. "type": "zip",
  5150. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  5151. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  5152. "shasum": "",
  5153. "mirrors": [
  5154. {
  5155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5156. "preferred": true
  5157. }
  5158. ]
  5159. },
  5160. "require": {
  5161. "php": ">=5.3.3"
  5162. },
  5163. "suggest": {
  5164. "ext-iconv": "For best performance"
  5165. },
  5166. "type": "library",
  5167. "extra": {
  5168. "branch-alias": {
  5169. "dev-master": "1.12-dev"
  5170. }
  5171. },
  5172. "autoload": {
  5173. "psr-4": {
  5174. "Symfony\\Polyfill\\Iconv\\": ""
  5175. },
  5176. "files": [
  5177. "bootstrap.php"
  5178. ]
  5179. },
  5180. "notification-url": "https://packagist.org/downloads/",
  5181. "license": [
  5182. "MIT"
  5183. ],
  5184. "authors": [
  5185. {
  5186. "name": "Nicolas Grekas",
  5187. "email": "p@tchwork.com"
  5188. },
  5189. {
  5190. "name": "Symfony Community",
  5191. "homepage": "https://symfony.com/contributors"
  5192. }
  5193. ],
  5194. "description": "Symfony polyfill for the Iconv extension",
  5195. "homepage": "https://symfony.com",
  5196. "keywords": [
  5197. "compatibility",
  5198. "iconv",
  5199. "polyfill",
  5200. "portable",
  5201. "shim"
  5202. ],
  5203. "time": "2019-08-06T08:03:45+00:00"
  5204. },
  5205. {
  5206. "name": "symfony/polyfill-intl-idn",
  5207. "version": "v1.12.0",
  5208. "source": {
  5209. "type": "git",
  5210. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5211. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2"
  5212. },
  5213. "dist": {
  5214. "type": "zip",
  5215. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  5216. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  5217. "shasum": "",
  5218. "mirrors": [
  5219. {
  5220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5221. "preferred": true
  5222. }
  5223. ]
  5224. },
  5225. "require": {
  5226. "php": ">=5.3.3",
  5227. "symfony/polyfill-mbstring": "^1.3",
  5228. "symfony/polyfill-php72": "^1.9"
  5229. },
  5230. "suggest": {
  5231. "ext-intl": "For best performance"
  5232. },
  5233. "type": "library",
  5234. "extra": {
  5235. "branch-alias": {
  5236. "dev-master": "1.12-dev"
  5237. }
  5238. },
  5239. "autoload": {
  5240. "psr-4": {
  5241. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5242. },
  5243. "files": [
  5244. "bootstrap.php"
  5245. ]
  5246. },
  5247. "notification-url": "https://packagist.org/downloads/",
  5248. "license": [
  5249. "MIT"
  5250. ],
  5251. "authors": [
  5252. {
  5253. "name": "Laurent Bassin",
  5254. "email": "laurent@bassin.info"
  5255. },
  5256. {
  5257. "name": "Symfony Community",
  5258. "homepage": "https://symfony.com/contributors"
  5259. }
  5260. ],
  5261. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5262. "homepage": "https://symfony.com",
  5263. "keywords": [
  5264. "compatibility",
  5265. "idn",
  5266. "intl",
  5267. "polyfill",
  5268. "portable",
  5269. "shim"
  5270. ],
  5271. "time": "2019-08-06T08:03:45+00:00"
  5272. },
  5273. {
  5274. "name": "symfony/polyfill-mbstring",
  5275. "version": "v1.12.0",
  5276. "source": {
  5277. "type": "git",
  5278. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5279. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  5280. },
  5281. "dist": {
  5282. "type": "zip",
  5283. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  5284. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  5285. "shasum": "",
  5286. "mirrors": [
  5287. {
  5288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5289. "preferred": true
  5290. }
  5291. ]
  5292. },
  5293. "require": {
  5294. "php": ">=5.3.3"
  5295. },
  5296. "suggest": {
  5297. "ext-mbstring": "For best performance"
  5298. },
  5299. "type": "library",
  5300. "extra": {
  5301. "branch-alias": {
  5302. "dev-master": "1.12-dev"
  5303. }
  5304. },
  5305. "autoload": {
  5306. "psr-4": {
  5307. "Symfony\\Polyfill\\Mbstring\\": ""
  5308. },
  5309. "files": [
  5310. "bootstrap.php"
  5311. ]
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Nicolas Grekas",
  5320. "email": "p@tchwork.com"
  5321. },
  5322. {
  5323. "name": "Symfony Community",
  5324. "homepage": "https://symfony.com/contributors"
  5325. }
  5326. ],
  5327. "description": "Symfony polyfill for the Mbstring extension",
  5328. "homepage": "https://symfony.com",
  5329. "keywords": [
  5330. "compatibility",
  5331. "mbstring",
  5332. "polyfill",
  5333. "portable",
  5334. "shim"
  5335. ],
  5336. "time": "2019-08-06T08:03:45+00:00"
  5337. },
  5338. {
  5339. "name": "symfony/polyfill-php56",
  5340. "version": "v1.12.0",
  5341. "source": {
  5342. "type": "git",
  5343. "url": "https://github.com/symfony/polyfill-php56.git",
  5344. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403"
  5345. },
  5346. "dist": {
  5347. "type": "zip",
  5348. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403",
  5349. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403",
  5350. "shasum": "",
  5351. "mirrors": [
  5352. {
  5353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5354. "preferred": true
  5355. }
  5356. ]
  5357. },
  5358. "require": {
  5359. "php": ">=5.3.3",
  5360. "symfony/polyfill-util": "~1.0"
  5361. },
  5362. "type": "library",
  5363. "extra": {
  5364. "branch-alias": {
  5365. "dev-master": "1.12-dev"
  5366. }
  5367. },
  5368. "autoload": {
  5369. "psr-4": {
  5370. "Symfony\\Polyfill\\Php56\\": ""
  5371. },
  5372. "files": [
  5373. "bootstrap.php"
  5374. ]
  5375. },
  5376. "notification-url": "https://packagist.org/downloads/",
  5377. "license": [
  5378. "MIT"
  5379. ],
  5380. "authors": [
  5381. {
  5382. "name": "Nicolas Grekas",
  5383. "email": "p@tchwork.com"
  5384. },
  5385. {
  5386. "name": "Symfony Community",
  5387. "homepage": "https://symfony.com/contributors"
  5388. }
  5389. ],
  5390. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5391. "homepage": "https://symfony.com",
  5392. "keywords": [
  5393. "compatibility",
  5394. "polyfill",
  5395. "portable",
  5396. "shim"
  5397. ],
  5398. "time": "2019-08-06T08:03:45+00:00"
  5399. },
  5400. {
  5401. "name": "symfony/polyfill-php72",
  5402. "version": "v1.12.0",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://github.com/symfony/polyfill-php72.git",
  5406. "reference": "04ce3335667451138df4307d6a9b61565560199e"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e",
  5411. "reference": "04ce3335667451138df4307d6a9b61565560199e",
  5412. "shasum": "",
  5413. "mirrors": [
  5414. {
  5415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5416. "preferred": true
  5417. }
  5418. ]
  5419. },
  5420. "require": {
  5421. "php": ">=5.3.3"
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "branch-alias": {
  5426. "dev-master": "1.12-dev"
  5427. }
  5428. },
  5429. "autoload": {
  5430. "psr-4": {
  5431. "Symfony\\Polyfill\\Php72\\": ""
  5432. },
  5433. "files": [
  5434. "bootstrap.php"
  5435. ]
  5436. },
  5437. "notification-url": "https://packagist.org/downloads/",
  5438. "license": [
  5439. "MIT"
  5440. ],
  5441. "authors": [
  5442. {
  5443. "name": "Nicolas Grekas",
  5444. "email": "p@tchwork.com"
  5445. },
  5446. {
  5447. "name": "Symfony Community",
  5448. "homepage": "https://symfony.com/contributors"
  5449. }
  5450. ],
  5451. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5452. "homepage": "https://symfony.com",
  5453. "keywords": [
  5454. "compatibility",
  5455. "polyfill",
  5456. "portable",
  5457. "shim"
  5458. ],
  5459. "time": "2019-08-06T08:03:45+00:00"
  5460. },
  5461. {
  5462. "name": "symfony/polyfill-php73",
  5463. "version": "v1.12.0",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/symfony/polyfill-php73.git",
  5467. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188",
  5472. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188",
  5473. "shasum": "",
  5474. "mirrors": [
  5475. {
  5476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5477. "preferred": true
  5478. }
  5479. ]
  5480. },
  5481. "require": {
  5482. "php": ">=5.3.3"
  5483. },
  5484. "type": "library",
  5485. "extra": {
  5486. "branch-alias": {
  5487. "dev-master": "1.12-dev"
  5488. }
  5489. },
  5490. "autoload": {
  5491. "psr-4": {
  5492. "Symfony\\Polyfill\\Php73\\": ""
  5493. },
  5494. "files": [
  5495. "bootstrap.php"
  5496. ],
  5497. "classmap": [
  5498. "Resources/stubs"
  5499. ]
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Nicolas Grekas",
  5508. "email": "p@tchwork.com"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5516. "homepage": "https://symfony.com",
  5517. "keywords": [
  5518. "compatibility",
  5519. "polyfill",
  5520. "portable",
  5521. "shim"
  5522. ],
  5523. "time": "2019-08-06T08:03:45+00:00"
  5524. },
  5525. {
  5526. "name": "symfony/polyfill-util",
  5527. "version": "v1.12.0",
  5528. "source": {
  5529. "type": "git",
  5530. "url": "https://github.com/symfony/polyfill-util.git",
  5531. "reference": "4317de1386717b4c22caed7725350a8887ab205c"
  5532. },
  5533. "dist": {
  5534. "type": "zip",
  5535. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c",
  5536. "reference": "4317de1386717b4c22caed7725350a8887ab205c",
  5537. "shasum": "",
  5538. "mirrors": [
  5539. {
  5540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5541. "preferred": true
  5542. }
  5543. ]
  5544. },
  5545. "require": {
  5546. "php": ">=5.3.3"
  5547. },
  5548. "type": "library",
  5549. "extra": {
  5550. "branch-alias": {
  5551. "dev-master": "1.12-dev"
  5552. }
  5553. },
  5554. "autoload": {
  5555. "psr-4": {
  5556. "Symfony\\Polyfill\\Util\\": ""
  5557. }
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "Nicolas Grekas",
  5566. "email": "p@tchwork.com"
  5567. },
  5568. {
  5569. "name": "Symfony Community",
  5570. "homepage": "https://symfony.com/contributors"
  5571. }
  5572. ],
  5573. "description": "Symfony utilities for portability of PHP codes",
  5574. "homepage": "https://symfony.com",
  5575. "keywords": [
  5576. "compat",
  5577. "compatibility",
  5578. "polyfill",
  5579. "shim"
  5580. ],
  5581. "time": "2019-08-06T08:03:45+00:00"
  5582. },
  5583. {
  5584. "name": "symfony/process",
  5585. "version": "v4.3.5",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/symfony/process.git",
  5589. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/symfony/process/zipball/50556892f3cc47d4200bfd1075314139c4c9ff4b",
  5594. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b",
  5595. "shasum": "",
  5596. "mirrors": [
  5597. {
  5598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5599. "preferred": true
  5600. }
  5601. ]
  5602. },
  5603. "require": {
  5604. "php": "^7.1.3"
  5605. },
  5606. "type": "library",
  5607. "extra": {
  5608. "branch-alias": {
  5609. "dev-master": "4.3-dev"
  5610. }
  5611. },
  5612. "autoload": {
  5613. "psr-4": {
  5614. "Symfony\\Component\\Process\\": ""
  5615. },
  5616. "exclude-from-classmap": [
  5617. "/Tests/"
  5618. ]
  5619. },
  5620. "notification-url": "https://packagist.org/downloads/",
  5621. "license": [
  5622. "MIT"
  5623. ],
  5624. "authors": [
  5625. {
  5626. "name": "Fabien Potencier",
  5627. "email": "fabien@symfony.com"
  5628. },
  5629. {
  5630. "name": "Symfony Community",
  5631. "homepage": "https://symfony.com/contributors"
  5632. }
  5633. ],
  5634. "description": "Symfony Process Component",
  5635. "homepage": "https://symfony.com",
  5636. "time": "2019-09-26T21:17:10+00:00"
  5637. },
  5638. {
  5639. "name": "symfony/routing",
  5640. "version": "v4.3.5",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/symfony/routing.git",
  5644. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/symfony/routing/zipball/3b174ef04fe66696524efad1e5f7a6c663d822ea",
  5649. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea",
  5650. "shasum": "",
  5651. "mirrors": [
  5652. {
  5653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5654. "preferred": true
  5655. }
  5656. ]
  5657. },
  5658. "require": {
  5659. "php": "^7.1.3"
  5660. },
  5661. "conflict": {
  5662. "symfony/config": "<4.2",
  5663. "symfony/dependency-injection": "<3.4",
  5664. "symfony/yaml": "<3.4"
  5665. },
  5666. "require-dev": {
  5667. "doctrine/annotations": "~1.2",
  5668. "psr/log": "~1.0",
  5669. "symfony/config": "~4.2",
  5670. "symfony/dependency-injection": "~3.4|~4.0",
  5671. "symfony/expression-language": "~3.4|~4.0",
  5672. "symfony/http-foundation": "~3.4|~4.0",
  5673. "symfony/yaml": "~3.4|~4.0"
  5674. },
  5675. "suggest": {
  5676. "doctrine/annotations": "For using the annotation loader",
  5677. "symfony/config": "For using the all-in-one router or any loader",
  5678. "symfony/expression-language": "For using expression matching",
  5679. "symfony/http-foundation": "For using a Symfony Request object",
  5680. "symfony/yaml": "For using the YAML loader"
  5681. },
  5682. "type": "library",
  5683. "extra": {
  5684. "branch-alias": {
  5685. "dev-master": "4.3-dev"
  5686. }
  5687. },
  5688. "autoload": {
  5689. "psr-4": {
  5690. "Symfony\\Component\\Routing\\": ""
  5691. },
  5692. "exclude-from-classmap": [
  5693. "/Tests/"
  5694. ]
  5695. },
  5696. "notification-url": "https://packagist.org/downloads/",
  5697. "license": [
  5698. "MIT"
  5699. ],
  5700. "authors": [
  5701. {
  5702. "name": "Fabien Potencier",
  5703. "email": "fabien@symfony.com"
  5704. },
  5705. {
  5706. "name": "Symfony Community",
  5707. "homepage": "https://symfony.com/contributors"
  5708. }
  5709. ],
  5710. "description": "Symfony Routing Component",
  5711. "homepage": "https://symfony.com",
  5712. "keywords": [
  5713. "router",
  5714. "routing",
  5715. "uri",
  5716. "url"
  5717. ],
  5718. "time": "2019-10-04T20:57:10+00:00"
  5719. },
  5720. {
  5721. "name": "symfony/service-contracts",
  5722. "version": "v1.1.7",
  5723. "source": {
  5724. "type": "git",
  5725. "url": "https://github.com/symfony/service-contracts.git",
  5726. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0"
  5727. },
  5728. "dist": {
  5729. "type": "zip",
  5730. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  5731. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  5732. "shasum": "",
  5733. "mirrors": [
  5734. {
  5735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5736. "preferred": true
  5737. }
  5738. ]
  5739. },
  5740. "require": {
  5741. "php": "^7.1.3",
  5742. "psr/container": "^1.0"
  5743. },
  5744. "suggest": {
  5745. "symfony/service-implementation": ""
  5746. },
  5747. "type": "library",
  5748. "extra": {
  5749. "branch-alias": {
  5750. "dev-master": "1.1-dev"
  5751. }
  5752. },
  5753. "autoload": {
  5754. "psr-4": {
  5755. "Symfony\\Contracts\\Service\\": ""
  5756. }
  5757. },
  5758. "notification-url": "https://packagist.org/downloads/",
  5759. "license": [
  5760. "MIT"
  5761. ],
  5762. "authors": [
  5763. {
  5764. "name": "Nicolas Grekas",
  5765. "email": "p@tchwork.com"
  5766. },
  5767. {
  5768. "name": "Symfony Community",
  5769. "homepage": "https://symfony.com/contributors"
  5770. }
  5771. ],
  5772. "description": "Generic abstractions related to writing services",
  5773. "homepage": "https://symfony.com",
  5774. "keywords": [
  5775. "abstractions",
  5776. "contracts",
  5777. "decoupling",
  5778. "interfaces",
  5779. "interoperability",
  5780. "standards"
  5781. ],
  5782. "time": "2019-09-17T11:12:18+00:00"
  5783. },
  5784. {
  5785. "name": "symfony/translation",
  5786. "version": "v4.3.5",
  5787. "source": {
  5788. "type": "git",
  5789. "url": "https://github.com/symfony/translation.git",
  5790. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f"
  5791. },
  5792. "dist": {
  5793. "type": "zip",
  5794. "url": "https://api.github.com/repos/symfony/translation/zipball/fe6193b066c457c144333c06aaa869a2d42a167f",
  5795. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f",
  5796. "shasum": "",
  5797. "mirrors": [
  5798. {
  5799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5800. "preferred": true
  5801. }
  5802. ]
  5803. },
  5804. "require": {
  5805. "php": "^7.1.3",
  5806. "symfony/polyfill-mbstring": "~1.0",
  5807. "symfony/translation-contracts": "^1.1.6"
  5808. },
  5809. "conflict": {
  5810. "symfony/config": "<3.4",
  5811. "symfony/dependency-injection": "<3.4",
  5812. "symfony/yaml": "<3.4"
  5813. },
  5814. "provide": {
  5815. "symfony/translation-implementation": "1.0"
  5816. },
  5817. "require-dev": {
  5818. "psr/log": "~1.0",
  5819. "symfony/config": "~3.4|~4.0",
  5820. "symfony/console": "~3.4|~4.0",
  5821. "symfony/dependency-injection": "~3.4|~4.0",
  5822. "symfony/finder": "~2.8|~3.0|~4.0",
  5823. "symfony/http-kernel": "~3.4|~4.0",
  5824. "symfony/intl": "~3.4|~4.0",
  5825. "symfony/service-contracts": "^1.1.2",
  5826. "symfony/var-dumper": "~3.4|~4.0",
  5827. "symfony/yaml": "~3.4|~4.0"
  5828. },
  5829. "suggest": {
  5830. "psr/log-implementation": "To use logging capability in translator",
  5831. "symfony/config": "",
  5832. "symfony/yaml": ""
  5833. },
  5834. "type": "library",
  5835. "extra": {
  5836. "branch-alias": {
  5837. "dev-master": "4.3-dev"
  5838. }
  5839. },
  5840. "autoload": {
  5841. "psr-4": {
  5842. "Symfony\\Component\\Translation\\": ""
  5843. },
  5844. "exclude-from-classmap": [
  5845. "/Tests/"
  5846. ]
  5847. },
  5848. "notification-url": "https://packagist.org/downloads/",
  5849. "license": [
  5850. "MIT"
  5851. ],
  5852. "authors": [
  5853. {
  5854. "name": "Fabien Potencier",
  5855. "email": "fabien@symfony.com"
  5856. },
  5857. {
  5858. "name": "Symfony Community",
  5859. "homepage": "https://symfony.com/contributors"
  5860. }
  5861. ],
  5862. "description": "Symfony Translation Component",
  5863. "homepage": "https://symfony.com",
  5864. "time": "2019-09-27T14:37:39+00:00"
  5865. },
  5866. {
  5867. "name": "symfony/translation-contracts",
  5868. "version": "v1.1.7",
  5869. "source": {
  5870. "type": "git",
  5871. "url": "https://github.com/symfony/translation-contracts.git",
  5872. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6"
  5873. },
  5874. "dist": {
  5875. "type": "zip",
  5876. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/364518c132c95642e530d9b2d217acbc2ccac3e6",
  5877. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6",
  5878. "shasum": "",
  5879. "mirrors": [
  5880. {
  5881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5882. "preferred": true
  5883. }
  5884. ]
  5885. },
  5886. "require": {
  5887. "php": "^7.1.3"
  5888. },
  5889. "suggest": {
  5890. "symfony/translation-implementation": ""
  5891. },
  5892. "type": "library",
  5893. "extra": {
  5894. "branch-alias": {
  5895. "dev-master": "1.1-dev"
  5896. }
  5897. },
  5898. "autoload": {
  5899. "psr-4": {
  5900. "Symfony\\Contracts\\Translation\\": ""
  5901. }
  5902. },
  5903. "notification-url": "https://packagist.org/downloads/",
  5904. "license": [
  5905. "MIT"
  5906. ],
  5907. "authors": [
  5908. {
  5909. "name": "Nicolas Grekas",
  5910. "email": "p@tchwork.com"
  5911. },
  5912. {
  5913. "name": "Symfony Community",
  5914. "homepage": "https://symfony.com/contributors"
  5915. }
  5916. ],
  5917. "description": "Generic abstractions related to translation",
  5918. "homepage": "https://symfony.com",
  5919. "keywords": [
  5920. "abstractions",
  5921. "contracts",
  5922. "decoupling",
  5923. "interfaces",
  5924. "interoperability",
  5925. "standards"
  5926. ],
  5927. "time": "2019-09-17T11:12:18+00:00"
  5928. },
  5929. {
  5930. "name": "symfony/var-dumper",
  5931. "version": "v4.3.5",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/symfony/var-dumper.git",
  5935. "reference": "bde8957fc415fdc6964f33916a3755737744ff05"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/bde8957fc415fdc6964f33916a3755737744ff05",
  5940. "reference": "bde8957fc415fdc6964f33916a3755737744ff05",
  5941. "shasum": "",
  5942. "mirrors": [
  5943. {
  5944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5945. "preferred": true
  5946. }
  5947. ]
  5948. },
  5949. "require": {
  5950. "php": "^7.1.3",
  5951. "symfony/polyfill-mbstring": "~1.0",
  5952. "symfony/polyfill-php72": "~1.5"
  5953. },
  5954. "conflict": {
  5955. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5956. "symfony/console": "<3.4"
  5957. },
  5958. "require-dev": {
  5959. "ext-iconv": "*",
  5960. "symfony/console": "~3.4|~4.0",
  5961. "symfony/process": "~3.4|~4.0",
  5962. "twig/twig": "~1.34|~2.4"
  5963. },
  5964. "suggest": {
  5965. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5966. "ext-intl": "To show region name in time zone dump",
  5967. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5968. },
  5969. "bin": [
  5970. "Resources/bin/var-dump-server"
  5971. ],
  5972. "type": "library",
  5973. "extra": {
  5974. "branch-alias": {
  5975. "dev-master": "4.3-dev"
  5976. }
  5977. },
  5978. "autoload": {
  5979. "files": [
  5980. "Resources/functions/dump.php"
  5981. ],
  5982. "psr-4": {
  5983. "Symfony\\Component\\VarDumper\\": ""
  5984. },
  5985. "exclude-from-classmap": [
  5986. "/Tests/"
  5987. ]
  5988. },
  5989. "notification-url": "https://packagist.org/downloads/",
  5990. "license": [
  5991. "MIT"
  5992. ],
  5993. "authors": [
  5994. {
  5995. "name": "Nicolas Grekas",
  5996. "email": "p@tchwork.com"
  5997. },
  5998. {
  5999. "name": "Symfony Community",
  6000. "homepage": "https://symfony.com/contributors"
  6001. }
  6002. ],
  6003. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6004. "homepage": "https://symfony.com",
  6005. "keywords": [
  6006. "debug",
  6007. "dump"
  6008. ],
  6009. "time": "2019-10-04T19:48:13+00:00"
  6010. },
  6011. {
  6012. "name": "tencent/tls-sig-api",
  6013. "version": "v1.0",
  6014. "source": {
  6015. "type": "git",
  6016. "url": "https://github.com/tencentyun/tls-sig-api-php.git",
  6017. "reference": "e145b68c9aaf2a650e9bfb20d7889c95c5c7e064"
  6018. },
  6019. "dist": {
  6020. "type": "zip",
  6021. "url": "https://api.github.com/repos/tencentyun/tls-sig-api-php/zipball/e145b68c9aaf2a650e9bfb20d7889c95c5c7e064",
  6022. "reference": "e145b68c9aaf2a650e9bfb20d7889c95c5c7e064",
  6023. "shasum": "",
  6024. "mirrors": [
  6025. {
  6026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6027. "preferred": true
  6028. }
  6029. ]
  6030. },
  6031. "require-dev": {
  6032. "phpunit/phpunit": "^4"
  6033. },
  6034. "type": "library",
  6035. "autoload": {
  6036. "psr-4": {
  6037. "Tencent\\": "src/"
  6038. }
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "okhowang(王沛文)",
  6047. "email": "okhowang@tencent.com"
  6048. }
  6049. ],
  6050. "time": "2018-04-10T08:57:14+00:00"
  6051. },
  6052. {
  6053. "name": "tencentcloud/tencentcloud-sdk-php",
  6054. "version": "3.0.83",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  6058. "reference": "11d1d13146a8f56a7922239e751f84b8dee4f931"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/11d1d13146a8f56a7922239e751f84b8dee4f931",
  6063. "reference": "11d1d13146a8f56a7922239e751f84b8dee4f931",
  6064. "shasum": "",
  6065. "mirrors": [
  6066. {
  6067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6068. "preferred": true
  6069. }
  6070. ]
  6071. },
  6072. "require": {
  6073. "guzzlehttp/guzzle": "^6.3",
  6074. "guzzlehttp/psr7": "^1.4",
  6075. "php": ">=5.6.33"
  6076. },
  6077. "type": "library",
  6078. "autoload": {
  6079. "classmap": [
  6080. "src/QcloudApi/QcloudApi.php"
  6081. ],
  6082. "psr-4": {
  6083. "TencentCloud\\": "./src/TencentCloud"
  6084. }
  6085. },
  6086. "notification-url": "https://packagist.org/downloads/",
  6087. "license": [
  6088. "Apache-2.0"
  6089. ],
  6090. "authors": [
  6091. {
  6092. "name": "coolli",
  6093. "role": "Developer",
  6094. "email": "tencentcloudapi@tencent.com",
  6095. "homepage": "https://cloud.tencent.com/document/sdk/PHP"
  6096. }
  6097. ],
  6098. "description": "TencentCloudApi php sdk",
  6099. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  6100. "time": "2019-08-16T16:34:15+00:00"
  6101. },
  6102. {
  6103. "name": "tijsverkoyen/css-to-inline-styles",
  6104. "version": "2.2.1",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6108. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  6113. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  6114. "shasum": "",
  6115. "mirrors": [
  6116. {
  6117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6118. "preferred": true
  6119. }
  6120. ]
  6121. },
  6122. "require": {
  6123. "php": "^5.5 || ^7.0",
  6124. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  6125. },
  6126. "require-dev": {
  6127. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  6128. },
  6129. "type": "library",
  6130. "extra": {
  6131. "branch-alias": {
  6132. "dev-master": "2.2.x-dev"
  6133. }
  6134. },
  6135. "autoload": {
  6136. "psr-4": {
  6137. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6138. }
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "BSD-3-Clause"
  6143. ],
  6144. "authors": [
  6145. {
  6146. "name": "Tijs Verkoyen",
  6147. "email": "css_to_inline_styles@verkoyen.eu",
  6148. "role": "Developer"
  6149. }
  6150. ],
  6151. "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.",
  6152. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6153. "time": "2017-11-27T11:13:29+00:00"
  6154. },
  6155. {
  6156. "name": "tymon/jwt-auth",
  6157. "version": "dev-develop",
  6158. "source": {
  6159. "type": "git",
  6160. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6161. "reference": "103739700dc0358039a33b5bc91247570bb83529"
  6162. },
  6163. "dist": {
  6164. "type": "zip",
  6165. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/103739700dc0358039a33b5bc91247570bb83529",
  6166. "reference": "103739700dc0358039a33b5bc91247570bb83529",
  6167. "shasum": "",
  6168. "mirrors": [
  6169. {
  6170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6171. "preferred": true
  6172. }
  6173. ]
  6174. },
  6175. "require": {
  6176. "illuminate/auth": "^5.1|^6",
  6177. "illuminate/contracts": "^5.1|^6",
  6178. "illuminate/http": "^5.1|^6",
  6179. "illuminate/support": "^5.1|^6",
  6180. "lcobucci/jwt": "^3.2",
  6181. "namshi/jose": "^7.0",
  6182. "nesbot/carbon": "^1.0|^2.0",
  6183. "php": "^5.5.9|^7.0"
  6184. },
  6185. "require-dev": {
  6186. "cartalyst/sentinel": "^2|^3",
  6187. "illuminate/console": "^5.1|^6",
  6188. "illuminate/database": "^5.1|^6",
  6189. "illuminate/routing": "^5.1|^6",
  6190. "mockery/mockery": ">=0.9.9",
  6191. "phpunit/phpunit": "~4.8|~6.0"
  6192. },
  6193. "type": "library",
  6194. "extra": {
  6195. "branch-alias": {
  6196. "dev-develop": "1.0-dev"
  6197. },
  6198. "laravel": {
  6199. "aliases": {
  6200. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6201. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6202. },
  6203. "providers": [
  6204. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6205. ]
  6206. }
  6207. },
  6208. "autoload": {
  6209. "psr-4": {
  6210. "Tymon\\JWTAuth\\": "src/"
  6211. }
  6212. },
  6213. "notification-url": "https://packagist.org/downloads/",
  6214. "license": [
  6215. "MIT"
  6216. ],
  6217. "authors": [
  6218. {
  6219. "name": "Sean Tymon",
  6220. "email": "tymon148@gmail.com",
  6221. "homepage": "https://tymon.xyz",
  6222. "role": "Developer"
  6223. }
  6224. ],
  6225. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6226. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6227. "keywords": [
  6228. "Authentication",
  6229. "JSON Web Token",
  6230. "auth",
  6231. "jwt",
  6232. "laravel"
  6233. ],
  6234. "time": "2019-09-09T03:33:47+00:00"
  6235. },
  6236. {
  6237. "name": "vlucas/phpdotenv",
  6238. "version": "v2.6.1",
  6239. "source": {
  6240. "type": "git",
  6241. "url": "https://github.com/vlucas/phpdotenv.git",
  6242. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  6243. },
  6244. "dist": {
  6245. "type": "zip",
  6246. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  6247. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  6248. "shasum": "",
  6249. "mirrors": [
  6250. {
  6251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6252. "preferred": true
  6253. }
  6254. ]
  6255. },
  6256. "require": {
  6257. "php": ">=5.3.9",
  6258. "symfony/polyfill-ctype": "^1.9"
  6259. },
  6260. "require-dev": {
  6261. "phpunit/phpunit": "^4.8.35 || ^5.0"
  6262. },
  6263. "type": "library",
  6264. "extra": {
  6265. "branch-alias": {
  6266. "dev-master": "2.6-dev"
  6267. }
  6268. },
  6269. "autoload": {
  6270. "psr-4": {
  6271. "Dotenv\\": "src/"
  6272. }
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "BSD-3-Clause"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Vance Lucas",
  6281. "email": "vance@vancelucas.com",
  6282. "homepage": "http://www.vancelucas.com"
  6283. }
  6284. ],
  6285. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6286. "keywords": [
  6287. "dotenv",
  6288. "env",
  6289. "environment"
  6290. ],
  6291. "time": "2019-01-29T11:11:52+00:00"
  6292. },
  6293. {
  6294. "name": "wemersonjanuario/wkhtmltopdf-windows",
  6295. "version": "0.12.2.3",
  6296. "source": {
  6297. "type": "git",
  6298. "url": "https://github.com/wemersonjanuario/wkhtmltopdf-windows.git",
  6299. "reference": "90fcd3487cad5931287742113c449b926e9e48d8"
  6300. },
  6301. "dist": {
  6302. "type": "zip",
  6303. "url": "https://api.github.com/repos/wemersonjanuario/wkhtmltopdf-windows/zipball/90fcd3487cad5931287742113c449b926e9e48d8",
  6304. "reference": "90fcd3487cad5931287742113c449b926e9e48d8",
  6305. "shasum": "",
  6306. "mirrors": [
  6307. {
  6308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6309. "preferred": true
  6310. }
  6311. ]
  6312. },
  6313. "suggest": {
  6314. "h4cc/wkhtmltopdf-amd64": "*",
  6315. "h4cc/wkhtmltopdf-i386": "*",
  6316. "wemersonjanuario/laravelpdf": "1.0.*"
  6317. },
  6318. "bin": [
  6319. "bin/32bit/wkhtmltopdf.exe",
  6320. "bin/32bit/wkhtmltoimage.exe",
  6321. "bin/64bit/wkhtmltopdf.exe",
  6322. "bin/64bit/wkhtmltoimage.exe"
  6323. ],
  6324. "type": "library",
  6325. "notification-url": "https://packagist.org/downloads/",
  6326. "license": [
  6327. "LGPL Version 3"
  6328. ],
  6329. "authors": [
  6330. {
  6331. "name": "Wemerson Januario",
  6332. "email": "wemerson.januario@gmail.com",
  6333. "homepage": "http://wemersonjanuario.com.br"
  6334. }
  6335. ],
  6336. "description": "Convert html to pdf using webkit (qtwebkit). Static linked windows binary for 32 bit and 64 bit systems.",
  6337. "homepage": "http://wkhtmltopdf.org/",
  6338. "keywords": [
  6339. "binary",
  6340. "convert",
  6341. "htmltoimage",
  6342. "htmltopdf",
  6343. "pdf",
  6344. "snapshot",
  6345. "thumbnail",
  6346. "wkhtmltopdf"
  6347. ],
  6348. "time": "2015-06-30T20:19:22+00:00"
  6349. }
  6350. ],
  6351. "packages-dev": [
  6352. {
  6353. "name": "barryvdh/laravel-ide-helper",
  6354. "version": "v2.6.5",
  6355. "source": {
  6356. "type": "git",
  6357. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  6358. "reference": "8740a9a158d3dd5cfc706a9d4cc1bf7a518f99f3"
  6359. },
  6360. "dist": {
  6361. "type": "zip",
  6362. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/8740a9a158d3dd5cfc706a9d4cc1bf7a518f99f3",
  6363. "reference": "8740a9a158d3dd5cfc706a9d4cc1bf7a518f99f3",
  6364. "shasum": "",
  6365. "mirrors": [
  6366. {
  6367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6368. "preferred": true
  6369. }
  6370. ]
  6371. },
  6372. "require": {
  6373. "barryvdh/reflection-docblock": "^2.0.6",
  6374. "composer/composer": "^1.6",
  6375. "doctrine/dbal": "~2.3",
  6376. "illuminate/console": "^5.5|^6",
  6377. "illuminate/filesystem": "^5.5|^6",
  6378. "illuminate/support": "^5.5|^6",
  6379. "php": ">=7"
  6380. },
  6381. "require-dev": {
  6382. "illuminate/config": "^5.5|^6",
  6383. "illuminate/view": "^5.5|^6",
  6384. "phpro/grumphp": "^0.14",
  6385. "phpunit/phpunit": "4.*",
  6386. "scrutinizer/ocular": "~1.1",
  6387. "squizlabs/php_codesniffer": "^3"
  6388. },
  6389. "type": "library",
  6390. "extra": {
  6391. "branch-alias": {
  6392. "dev-master": "2.6-dev"
  6393. },
  6394. "laravel": {
  6395. "providers": [
  6396. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  6397. ]
  6398. }
  6399. },
  6400. "autoload": {
  6401. "psr-4": {
  6402. "Barryvdh\\LaravelIdeHelper\\": "src"
  6403. }
  6404. },
  6405. "notification-url": "https://packagist.org/downloads/",
  6406. "license": [
  6407. "MIT"
  6408. ],
  6409. "authors": [
  6410. {
  6411. "name": "Barry vd. Heuvel",
  6412. "email": "barryvdh@gmail.com"
  6413. }
  6414. ],
  6415. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  6416. "keywords": [
  6417. "autocomplete",
  6418. "codeintel",
  6419. "helper",
  6420. "ide",
  6421. "laravel",
  6422. "netbeans",
  6423. "phpdoc",
  6424. "phpstorm",
  6425. "sublime"
  6426. ],
  6427. "time": "2019-09-08T09:56:38+00:00"
  6428. },
  6429. {
  6430. "name": "barryvdh/reflection-docblock",
  6431. "version": "v2.0.6",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  6435. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6440. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6441. "shasum": "",
  6442. "mirrors": [
  6443. {
  6444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6445. "preferred": true
  6446. }
  6447. ]
  6448. },
  6449. "require": {
  6450. "php": ">=5.3.3"
  6451. },
  6452. "require-dev": {
  6453. "phpunit/phpunit": "~4.0,<4.5"
  6454. },
  6455. "suggest": {
  6456. "dflydev/markdown": "~1.0",
  6457. "erusev/parsedown": "~1.0"
  6458. },
  6459. "type": "library",
  6460. "extra": {
  6461. "branch-alias": {
  6462. "dev-master": "2.0.x-dev"
  6463. }
  6464. },
  6465. "autoload": {
  6466. "psr-0": {
  6467. "Barryvdh": [
  6468. "src/"
  6469. ]
  6470. }
  6471. },
  6472. "notification-url": "https://packagist.org/downloads/",
  6473. "license": [
  6474. "MIT"
  6475. ],
  6476. "authors": [
  6477. {
  6478. "name": "Mike van Riel",
  6479. "email": "mike.vanriel@naenius.com"
  6480. }
  6481. ],
  6482. "time": "2018-12-13T10:34:14+00:00"
  6483. },
  6484. {
  6485. "name": "beyondcode/laravel-dump-server",
  6486. "version": "1.3.0",
  6487. "source": {
  6488. "type": "git",
  6489. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  6490. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a"
  6491. },
  6492. "dist": {
  6493. "type": "zip",
  6494. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  6495. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  6496. "shasum": "",
  6497. "mirrors": [
  6498. {
  6499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6500. "preferred": true
  6501. }
  6502. ]
  6503. },
  6504. "require": {
  6505. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  6506. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  6507. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  6508. "php": "^7.1",
  6509. "symfony/var-dumper": "^4.1.1"
  6510. },
  6511. "require-dev": {
  6512. "larapack/dd": "^1.0",
  6513. "phpunit/phpunit": "^7.0"
  6514. },
  6515. "type": "library",
  6516. "extra": {
  6517. "laravel": {
  6518. "providers": [
  6519. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  6520. ]
  6521. }
  6522. },
  6523. "autoload": {
  6524. "psr-4": {
  6525. "BeyondCode\\DumpServer\\": "src"
  6526. },
  6527. "files": [
  6528. "helpers.php"
  6529. ]
  6530. },
  6531. "notification-url": "https://packagist.org/downloads/",
  6532. "license": [
  6533. "MIT"
  6534. ],
  6535. "authors": [
  6536. {
  6537. "name": "Marcel Pociot",
  6538. "email": "marcel@beyondco.de",
  6539. "homepage": "https://beyondco.de",
  6540. "role": "Developer"
  6541. }
  6542. ],
  6543. "description": "Symfony Var-Dump Server for Laravel",
  6544. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  6545. "keywords": [
  6546. "beyondcode",
  6547. "laravel-dump-server"
  6548. ],
  6549. "time": "2019-08-11T13:17:40+00:00"
  6550. },
  6551. {
  6552. "name": "composer/ca-bundle",
  6553. "version": "1.2.4",
  6554. "source": {
  6555. "type": "git",
  6556. "url": "https://github.com/composer/ca-bundle.git",
  6557. "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527"
  6558. },
  6559. "dist": {
  6560. "type": "zip",
  6561. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/10bb96592168a0f8e8f6dcde3532d9fa50b0b527",
  6562. "reference": "10bb96592168a0f8e8f6dcde3532d9fa50b0b527",
  6563. "shasum": "",
  6564. "mirrors": [
  6565. {
  6566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6567. "preferred": true
  6568. }
  6569. ]
  6570. },
  6571. "require": {
  6572. "ext-openssl": "*",
  6573. "ext-pcre": "*",
  6574. "php": "^5.3.2 || ^7.0 || ^8.0"
  6575. },
  6576. "require-dev": {
  6577. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  6578. "psr/log": "^1.0",
  6579. "symfony/process": "^2.5 || ^3.0 || ^4.0"
  6580. },
  6581. "type": "library",
  6582. "extra": {
  6583. "branch-alias": {
  6584. "dev-master": "1.x-dev"
  6585. }
  6586. },
  6587. "autoload": {
  6588. "psr-4": {
  6589. "Composer\\CaBundle\\": "src"
  6590. }
  6591. },
  6592. "notification-url": "https://packagist.org/downloads/",
  6593. "license": [
  6594. "MIT"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "Jordi Boggiano",
  6599. "email": "j.boggiano@seld.be",
  6600. "homepage": "http://seld.be"
  6601. }
  6602. ],
  6603. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  6604. "keywords": [
  6605. "cabundle",
  6606. "cacert",
  6607. "certificate",
  6608. "ssl",
  6609. "tls"
  6610. ],
  6611. "time": "2019-08-30T08:44:50+00:00"
  6612. },
  6613. {
  6614. "name": "composer/composer",
  6615. "version": "1.9.0",
  6616. "source": {
  6617. "type": "git",
  6618. "url": "https://github.com/composer/composer.git",
  6619. "reference": "314aa57fdcfc942065996f59fb73a8b3f74f3fa5"
  6620. },
  6621. "dist": {
  6622. "type": "zip",
  6623. "url": "https://api.github.com/repos/composer/composer/zipball/314aa57fdcfc942065996f59fb73a8b3f74f3fa5",
  6624. "reference": "314aa57fdcfc942065996f59fb73a8b3f74f3fa5",
  6625. "shasum": "",
  6626. "mirrors": [
  6627. {
  6628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6629. "preferred": true
  6630. }
  6631. ]
  6632. },
  6633. "require": {
  6634. "composer/ca-bundle": "^1.0",
  6635. "composer/semver": "^1.0",
  6636. "composer/spdx-licenses": "^1.2",
  6637. "composer/xdebug-handler": "^1.1",
  6638. "justinrainbow/json-schema": "^3.0 || ^4.0 || ^5.0",
  6639. "php": "^5.3.2 || ^7.0",
  6640. "psr/log": "^1.0",
  6641. "seld/jsonlint": "^1.4",
  6642. "seld/phar-utils": "^1.0",
  6643. "symfony/console": "^2.7 || ^3.0 || ^4.0",
  6644. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0",
  6645. "symfony/finder": "^2.7 || ^3.0 || ^4.0",
  6646. "symfony/process": "^2.7 || ^3.0 || ^4.0"
  6647. },
  6648. "conflict": {
  6649. "symfony/console": "2.8.38"
  6650. },
  6651. "require-dev": {
  6652. "phpunit/phpunit": "^4.8.35 || ^5.7",
  6653. "phpunit/phpunit-mock-objects": "^2.3 || ^3.0"
  6654. },
  6655. "suggest": {
  6656. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  6657. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  6658. "ext-zlib": "Allow gzip compression of HTTP requests"
  6659. },
  6660. "bin": [
  6661. "bin/composer"
  6662. ],
  6663. "type": "library",
  6664. "extra": {
  6665. "branch-alias": {
  6666. "dev-master": "1.9-dev"
  6667. }
  6668. },
  6669. "autoload": {
  6670. "psr-4": {
  6671. "Composer\\": "src/Composer"
  6672. }
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "MIT"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "Nils Adermann",
  6681. "email": "naderman@naderman.de",
  6682. "homepage": "http://www.naderman.de"
  6683. },
  6684. {
  6685. "name": "Jordi Boggiano",
  6686. "email": "j.boggiano@seld.be",
  6687. "homepage": "http://seld.be"
  6688. }
  6689. ],
  6690. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  6691. "homepage": "https://getcomposer.org/",
  6692. "keywords": [
  6693. "autoload",
  6694. "dependency",
  6695. "package"
  6696. ],
  6697. "time": "2019-08-02T18:55:33+00:00"
  6698. },
  6699. {
  6700. "name": "composer/semver",
  6701. "version": "1.5.0",
  6702. "source": {
  6703. "type": "git",
  6704. "url": "https://github.com/composer/semver.git",
  6705. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  6706. },
  6707. "dist": {
  6708. "type": "zip",
  6709. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  6710. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  6711. "shasum": "",
  6712. "mirrors": [
  6713. {
  6714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6715. "preferred": true
  6716. }
  6717. ]
  6718. },
  6719. "require": {
  6720. "php": "^5.3.2 || ^7.0"
  6721. },
  6722. "require-dev": {
  6723. "phpunit/phpunit": "^4.5 || ^5.0.5",
  6724. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  6725. },
  6726. "type": "library",
  6727. "extra": {
  6728. "branch-alias": {
  6729. "dev-master": "1.x-dev"
  6730. }
  6731. },
  6732. "autoload": {
  6733. "psr-4": {
  6734. "Composer\\Semver\\": "src"
  6735. }
  6736. },
  6737. "notification-url": "https://packagist.org/downloads/",
  6738. "license": [
  6739. "MIT"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "Nils Adermann",
  6744. "email": "naderman@naderman.de",
  6745. "homepage": "http://www.naderman.de"
  6746. },
  6747. {
  6748. "name": "Jordi Boggiano",
  6749. "email": "j.boggiano@seld.be",
  6750. "homepage": "http://seld.be"
  6751. },
  6752. {
  6753. "name": "Rob Bast",
  6754. "email": "rob.bast@gmail.com",
  6755. "homepage": "http://robbast.nl"
  6756. }
  6757. ],
  6758. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6759. "keywords": [
  6760. "semantic",
  6761. "semver",
  6762. "validation",
  6763. "versioning"
  6764. ],
  6765. "time": "2019-03-19T17:25:45+00:00"
  6766. },
  6767. {
  6768. "name": "composer/spdx-licenses",
  6769. "version": "1.5.2",
  6770. "source": {
  6771. "type": "git",
  6772. "url": "https://github.com/composer/spdx-licenses.git",
  6773. "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5"
  6774. },
  6775. "dist": {
  6776. "type": "zip",
  6777. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/7ac1e6aec371357df067f8a688c3d6974df68fa5",
  6778. "reference": "7ac1e6aec371357df067f8a688c3d6974df68fa5",
  6779. "shasum": "",
  6780. "mirrors": [
  6781. {
  6782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6783. "preferred": true
  6784. }
  6785. ]
  6786. },
  6787. "require": {
  6788. "php": "^5.3.2 || ^7.0 || ^8.0"
  6789. },
  6790. "require-dev": {
  6791. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  6792. },
  6793. "type": "library",
  6794. "extra": {
  6795. "branch-alias": {
  6796. "dev-master": "1.x-dev"
  6797. }
  6798. },
  6799. "autoload": {
  6800. "psr-4": {
  6801. "Composer\\Spdx\\": "src"
  6802. }
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "MIT"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Nils Adermann",
  6811. "email": "naderman@naderman.de",
  6812. "homepage": "http://www.naderman.de"
  6813. },
  6814. {
  6815. "name": "Jordi Boggiano",
  6816. "email": "j.boggiano@seld.be",
  6817. "homepage": "http://seld.be"
  6818. },
  6819. {
  6820. "name": "Rob Bast",
  6821. "email": "rob.bast@gmail.com",
  6822. "homepage": "http://robbast.nl"
  6823. }
  6824. ],
  6825. "description": "SPDX licenses list and validation library.",
  6826. "keywords": [
  6827. "license",
  6828. "spdx",
  6829. "validator"
  6830. ],
  6831. "time": "2019-07-29T10:31:59+00:00"
  6832. },
  6833. {
  6834. "name": "composer/xdebug-handler",
  6835. "version": "1.3.3",
  6836. "source": {
  6837. "type": "git",
  6838. "url": "https://github.com/composer/xdebug-handler.git",
  6839. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f"
  6840. },
  6841. "dist": {
  6842. "type": "zip",
  6843. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/46867cbf8ca9fb8d60c506895449eb799db1184f",
  6844. "reference": "46867cbf8ca9fb8d60c506895449eb799db1184f",
  6845. "shasum": "",
  6846. "mirrors": [
  6847. {
  6848. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6849. "preferred": true
  6850. }
  6851. ]
  6852. },
  6853. "require": {
  6854. "php": "^5.3.2 || ^7.0",
  6855. "psr/log": "^1.0"
  6856. },
  6857. "require-dev": {
  6858. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  6859. },
  6860. "type": "library",
  6861. "autoload": {
  6862. "psr-4": {
  6863. "Composer\\XdebugHandler\\": "src"
  6864. }
  6865. },
  6866. "notification-url": "https://packagist.org/downloads/",
  6867. "license": [
  6868. "MIT"
  6869. ],
  6870. "authors": [
  6871. {
  6872. "name": "John Stevenson",
  6873. "email": "john-stevenson@blueyonder.co.uk"
  6874. }
  6875. ],
  6876. "description": "Restarts a process without xdebug.",
  6877. "keywords": [
  6878. "Xdebug",
  6879. "performance"
  6880. ],
  6881. "time": "2019-05-27T17:52:04+00:00"
  6882. },
  6883. {
  6884. "name": "doctrine/collections",
  6885. "version": "v1.6.2",
  6886. "source": {
  6887. "type": "git",
  6888. "url": "https://github.com/doctrine/collections.git",
  6889. "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be"
  6890. },
  6891. "dist": {
  6892. "type": "zip",
  6893. "url": "https://api.github.com/repos/doctrine/collections/zipball/c5e0bc17b1620e97c968ac409acbff28b8b850be",
  6894. "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be",
  6895. "shasum": "",
  6896. "mirrors": [
  6897. {
  6898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6899. "preferred": true
  6900. }
  6901. ]
  6902. },
  6903. "require": {
  6904. "php": "^7.1.3"
  6905. },
  6906. "require-dev": {
  6907. "doctrine/coding-standard": "^6.0",
  6908. "phpstan/phpstan-shim": "^0.9.2",
  6909. "phpunit/phpunit": "^7.0",
  6910. "vimeo/psalm": "^3.2.2"
  6911. },
  6912. "type": "library",
  6913. "extra": {
  6914. "branch-alias": {
  6915. "dev-master": "1.6.x-dev"
  6916. }
  6917. },
  6918. "autoload": {
  6919. "psr-4": {
  6920. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  6921. }
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "license": [
  6925. "MIT"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Roman Borschel",
  6930. "email": "roman@code-factory.org"
  6931. },
  6932. {
  6933. "name": "Benjamin Eberlei",
  6934. "email": "kontakt@beberlei.de"
  6935. },
  6936. {
  6937. "name": "Guilherme Blanco",
  6938. "email": "guilhermeblanco@gmail.com"
  6939. },
  6940. {
  6941. "name": "Jonathan Wage",
  6942. "email": "jonwage@gmail.com"
  6943. },
  6944. {
  6945. "name": "Johannes Schmitt",
  6946. "email": "schmittjoh@gmail.com"
  6947. }
  6948. ],
  6949. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  6950. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  6951. "keywords": [
  6952. "array",
  6953. "collections",
  6954. "iterators",
  6955. "php"
  6956. ],
  6957. "time": "2019-06-09T13:48:14+00:00"
  6958. },
  6959. {
  6960. "name": "doctrine/instantiator",
  6961. "version": "1.2.0",
  6962. "source": {
  6963. "type": "git",
  6964. "url": "https://github.com/doctrine/instantiator.git",
  6965. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  6966. },
  6967. "dist": {
  6968. "type": "zip",
  6969. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  6970. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  6971. "shasum": "",
  6972. "mirrors": [
  6973. {
  6974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6975. "preferred": true
  6976. }
  6977. ]
  6978. },
  6979. "require": {
  6980. "php": "^7.1"
  6981. },
  6982. "require-dev": {
  6983. "doctrine/coding-standard": "^6.0",
  6984. "ext-pdo": "*",
  6985. "ext-phar": "*",
  6986. "phpbench/phpbench": "^0.13",
  6987. "phpstan/phpstan-phpunit": "^0.11",
  6988. "phpstan/phpstan-shim": "^0.11",
  6989. "phpunit/phpunit": "^7.0"
  6990. },
  6991. "type": "library",
  6992. "extra": {
  6993. "branch-alias": {
  6994. "dev-master": "1.2.x-dev"
  6995. }
  6996. },
  6997. "autoload": {
  6998. "psr-4": {
  6999. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7000. }
  7001. },
  7002. "notification-url": "https://packagist.org/downloads/",
  7003. "license": [
  7004. "MIT"
  7005. ],
  7006. "authors": [
  7007. {
  7008. "name": "Marco Pivetta",
  7009. "email": "ocramius@gmail.com",
  7010. "homepage": "http://ocramius.github.com/"
  7011. }
  7012. ],
  7013. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7014. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7015. "keywords": [
  7016. "constructor",
  7017. "instantiate"
  7018. ],
  7019. "time": "2019-03-17T17:37:11+00:00"
  7020. },
  7021. {
  7022. "name": "filp/whoops",
  7023. "version": "2.5.0",
  7024. "source": {
  7025. "type": "git",
  7026. "url": "https://github.com/filp/whoops.git",
  7027. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96"
  7028. },
  7029. "dist": {
  7030. "type": "zip",
  7031. "url": "https://api.github.com/repos/filp/whoops/zipball/cde50e6720a39fdacb240159d3eea6865d51fd96",
  7032. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96",
  7033. "shasum": "",
  7034. "mirrors": [
  7035. {
  7036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7037. "preferred": true
  7038. }
  7039. ]
  7040. },
  7041. "require": {
  7042. "php": "^5.5.9 || ^7.0",
  7043. "psr/log": "^1.0.1"
  7044. },
  7045. "require-dev": {
  7046. "mockery/mockery": "^0.9 || ^1.0",
  7047. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7048. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  7049. },
  7050. "suggest": {
  7051. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7052. "whoops/soap": "Formats errors as SOAP responses"
  7053. },
  7054. "type": "library",
  7055. "extra": {
  7056. "branch-alias": {
  7057. "dev-master": "2.2-dev"
  7058. }
  7059. },
  7060. "autoload": {
  7061. "psr-4": {
  7062. "Whoops\\": "src/Whoops/"
  7063. }
  7064. },
  7065. "notification-url": "https://packagist.org/downloads/",
  7066. "license": [
  7067. "MIT"
  7068. ],
  7069. "authors": [
  7070. {
  7071. "name": "Filipe Dobreira",
  7072. "homepage": "https://github.com/filp",
  7073. "role": "Developer"
  7074. }
  7075. ],
  7076. "description": "php error handling for cool kids",
  7077. "homepage": "https://filp.github.io/whoops/",
  7078. "keywords": [
  7079. "error",
  7080. "exception",
  7081. "handling",
  7082. "library",
  7083. "throwable",
  7084. "whoops"
  7085. ],
  7086. "time": "2019-08-07T09:00:00+00:00"
  7087. },
  7088. {
  7089. "name": "fzaninotto/faker",
  7090. "version": "v1.8.0",
  7091. "source": {
  7092. "type": "git",
  7093. "url": "https://github.com/fzaninotto/Faker.git",
  7094. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  7095. },
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  7099. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  7100. "shasum": "",
  7101. "mirrors": [
  7102. {
  7103. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7104. "preferred": true
  7105. }
  7106. ]
  7107. },
  7108. "require": {
  7109. "php": "^5.3.3 || ^7.0"
  7110. },
  7111. "require-dev": {
  7112. "ext-intl": "*",
  7113. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7114. "squizlabs/php_codesniffer": "^1.5"
  7115. },
  7116. "type": "library",
  7117. "extra": {
  7118. "branch-alias": {
  7119. "dev-master": "1.8-dev"
  7120. }
  7121. },
  7122. "autoload": {
  7123. "psr-4": {
  7124. "Faker\\": "src/Faker/"
  7125. }
  7126. },
  7127. "notification-url": "https://packagist.org/downloads/",
  7128. "license": [
  7129. "MIT"
  7130. ],
  7131. "authors": [
  7132. {
  7133. "name": "François Zaninotto"
  7134. }
  7135. ],
  7136. "description": "Faker is a PHP library that generates fake data for you.",
  7137. "keywords": [
  7138. "data",
  7139. "faker",
  7140. "fixtures"
  7141. ],
  7142. "time": "2018-07-12T10:23:15+00:00"
  7143. },
  7144. {
  7145. "name": "gitonomy/gitlib",
  7146. "version": "v1.1.0",
  7147. "source": {
  7148. "type": "git",
  7149. "url": "https://github.com/gitonomy/gitlib.git",
  7150. "reference": "49e599915eae04b734f31e6e88f773d32d921e2e"
  7151. },
  7152. "dist": {
  7153. "type": "zip",
  7154. "url": "https://api.github.com/repos/gitonomy/gitlib/zipball/49e599915eae04b734f31e6e88f773d32d921e2e",
  7155. "reference": "49e599915eae04b734f31e6e88f773d32d921e2e",
  7156. "shasum": "",
  7157. "mirrors": [
  7158. {
  7159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7160. "preferred": true
  7161. }
  7162. ]
  7163. },
  7164. "require": {
  7165. "php": "^5.6 || ^7.0",
  7166. "symfony/process": "^3.4|^4.0"
  7167. },
  7168. "require-dev": {
  7169. "phpunit/phpunit": "^5.7|^6.5",
  7170. "psr/log": "^1.0"
  7171. },
  7172. "suggest": {
  7173. "psr/log": "Required to use loggers for reporting of execution"
  7174. },
  7175. "type": "library",
  7176. "extra": {
  7177. "branch-alias": {
  7178. "dev-master": "1.1-dev"
  7179. }
  7180. },
  7181. "autoload": {
  7182. "psr-4": {
  7183. "Gitonomy\\Git\\": "src/Gitonomy/Git/"
  7184. }
  7185. },
  7186. "notification-url": "https://packagist.org/downloads/",
  7187. "license": [
  7188. "MIT"
  7189. ],
  7190. "authors": [
  7191. {
  7192. "name": "Alexandre Salomé",
  7193. "email": "alexandre.salome@gmail.com",
  7194. "homepage": "http://alexandre-salome.fr"
  7195. },
  7196. {
  7197. "name": "Julien DIDIER",
  7198. "email": "genzo.wm@gmail.com",
  7199. "homepage": "http://www.jdidier.net"
  7200. }
  7201. ],
  7202. "description": "Library for accessing git",
  7203. "homepage": "http://gitonomy.com",
  7204. "time": "2019-06-23T09:49:01+00:00"
  7205. },
  7206. {
  7207. "name": "hamcrest/hamcrest-php",
  7208. "version": "v2.0.0",
  7209. "source": {
  7210. "type": "git",
  7211. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7212. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  7213. },
  7214. "dist": {
  7215. "type": "zip",
  7216. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  7217. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  7218. "shasum": "",
  7219. "mirrors": [
  7220. {
  7221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7222. "preferred": true
  7223. }
  7224. ]
  7225. },
  7226. "require": {
  7227. "php": "^5.3|^7.0"
  7228. },
  7229. "replace": {
  7230. "cordoval/hamcrest-php": "*",
  7231. "davedevelopment/hamcrest-php": "*",
  7232. "kodova/hamcrest-php": "*"
  7233. },
  7234. "require-dev": {
  7235. "phpunit/php-file-iterator": "1.3.3",
  7236. "phpunit/phpunit": "~4.0",
  7237. "satooshi/php-coveralls": "^1.0"
  7238. },
  7239. "type": "library",
  7240. "extra": {
  7241. "branch-alias": {
  7242. "dev-master": "2.0-dev"
  7243. }
  7244. },
  7245. "autoload": {
  7246. "classmap": [
  7247. "hamcrest"
  7248. ]
  7249. },
  7250. "notification-url": "https://packagist.org/downloads/",
  7251. "license": [
  7252. "BSD"
  7253. ],
  7254. "description": "This is the PHP port of Hamcrest Matchers",
  7255. "keywords": [
  7256. "test"
  7257. ],
  7258. "time": "2016-01-20T08:20:44+00:00"
  7259. },
  7260. {
  7261. "name": "jean85/pretty-package-versions",
  7262. "version": "1.2",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/Jean85/pretty-package-versions.git",
  7266. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  7271. "reference": "75c7effcf3f77501d0e0caa75111aff4daa0dd48",
  7272. "shasum": "",
  7273. "mirrors": [
  7274. {
  7275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7276. "preferred": true
  7277. }
  7278. ]
  7279. },
  7280. "require": {
  7281. "ocramius/package-versions": "^1.2.0",
  7282. "php": "^7.0"
  7283. },
  7284. "require-dev": {
  7285. "phpunit/phpunit": "^6.0"
  7286. },
  7287. "type": "library",
  7288. "extra": {
  7289. "branch-alias": {
  7290. "dev-master": "1.x-dev"
  7291. }
  7292. },
  7293. "autoload": {
  7294. "psr-4": {
  7295. "Jean85\\": "src/"
  7296. }
  7297. },
  7298. "notification-url": "https://packagist.org/downloads/",
  7299. "license": [
  7300. "MIT"
  7301. ],
  7302. "authors": [
  7303. {
  7304. "name": "Alessandro Lai",
  7305. "email": "alessandro.lai85@gmail.com"
  7306. }
  7307. ],
  7308. "description": "A wrapper for ocramius/package-versions to get pretty versions strings",
  7309. "keywords": [
  7310. "composer",
  7311. "package",
  7312. "release",
  7313. "versions"
  7314. ],
  7315. "time": "2018-06-13T13:22:40+00:00"
  7316. },
  7317. {
  7318. "name": "justinrainbow/json-schema",
  7319. "version": "5.2.9",
  7320. "source": {
  7321. "type": "git",
  7322. "url": "https://github.com/justinrainbow/json-schema.git",
  7323. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  7324. },
  7325. "dist": {
  7326. "type": "zip",
  7327. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  7328. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  7329. "shasum": "",
  7330. "mirrors": [
  7331. {
  7332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7333. "preferred": true
  7334. }
  7335. ]
  7336. },
  7337. "require": {
  7338. "php": ">=5.3.3"
  7339. },
  7340. "require-dev": {
  7341. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7342. "json-schema/json-schema-test-suite": "1.2.0",
  7343. "phpunit/phpunit": "^4.8.35"
  7344. },
  7345. "bin": [
  7346. "bin/validate-json"
  7347. ],
  7348. "type": "library",
  7349. "extra": {
  7350. "branch-alias": {
  7351. "dev-master": "5.0.x-dev"
  7352. }
  7353. },
  7354. "autoload": {
  7355. "psr-4": {
  7356. "JsonSchema\\": "src/JsonSchema/"
  7357. }
  7358. },
  7359. "notification-url": "https://packagist.org/downloads/",
  7360. "license": [
  7361. "MIT"
  7362. ],
  7363. "authors": [
  7364. {
  7365. "name": "Bruno Prieto Reis",
  7366. "email": "bruno.p.reis@gmail.com"
  7367. },
  7368. {
  7369. "name": "Justin Rainbow",
  7370. "email": "justin.rainbow@gmail.com"
  7371. },
  7372. {
  7373. "name": "Igor Wiedler",
  7374. "email": "igor@wiedler.ch"
  7375. },
  7376. {
  7377. "name": "Robert Schönthal",
  7378. "email": "seroscho@googlemail.com"
  7379. }
  7380. ],
  7381. "description": "A library to validate a json schema.",
  7382. "homepage": "https://github.com/justinrainbow/json-schema",
  7383. "keywords": [
  7384. "json",
  7385. "schema"
  7386. ],
  7387. "time": "2019-09-25T14:49:45+00:00"
  7388. },
  7389. {
  7390. "name": "mockery/mockery",
  7391. "version": "1.2.4",
  7392. "source": {
  7393. "type": "git",
  7394. "url": "https://github.com/mockery/mockery.git",
  7395. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405"
  7396. },
  7397. "dist": {
  7398. "type": "zip",
  7399. "url": "https://api.github.com/repos/mockery/mockery/zipball/b3453f75fd23d9fd41685f2148f4abeacabc6405",
  7400. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405",
  7401. "shasum": "",
  7402. "mirrors": [
  7403. {
  7404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7405. "preferred": true
  7406. }
  7407. ]
  7408. },
  7409. "require": {
  7410. "hamcrest/hamcrest-php": "~2.0",
  7411. "lib-pcre": ">=7.0",
  7412. "php": ">=5.6.0"
  7413. },
  7414. "require-dev": {
  7415. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  7416. },
  7417. "type": "library",
  7418. "extra": {
  7419. "branch-alias": {
  7420. "dev-master": "1.2.x-dev"
  7421. }
  7422. },
  7423. "autoload": {
  7424. "psr-0": {
  7425. "Mockery": "library/"
  7426. }
  7427. },
  7428. "notification-url": "https://packagist.org/downloads/",
  7429. "license": [
  7430. "BSD-3-Clause"
  7431. ],
  7432. "authors": [
  7433. {
  7434. "name": "Pádraic Brady",
  7435. "email": "padraic.brady@gmail.com",
  7436. "homepage": "http://blog.astrumfutura.com"
  7437. },
  7438. {
  7439. "name": "Dave Marshall",
  7440. "email": "dave.marshall@atstsolutions.co.uk",
  7441. "homepage": "http://davedevelopment.co.uk"
  7442. }
  7443. ],
  7444. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7445. "homepage": "https://github.com/mockery/mockery",
  7446. "keywords": [
  7447. "BDD",
  7448. "TDD",
  7449. "library",
  7450. "mock",
  7451. "mock objects",
  7452. "mockery",
  7453. "stub",
  7454. "test",
  7455. "test double",
  7456. "testing"
  7457. ],
  7458. "time": "2019-09-30T08:30:27+00:00"
  7459. },
  7460. {
  7461. "name": "myclabs/deep-copy",
  7462. "version": "1.9.3",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/myclabs/DeepCopy.git",
  7466. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea",
  7471. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea",
  7472. "shasum": "",
  7473. "mirrors": [
  7474. {
  7475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7476. "preferred": true
  7477. }
  7478. ]
  7479. },
  7480. "require": {
  7481. "php": "^7.1"
  7482. },
  7483. "replace": {
  7484. "myclabs/deep-copy": "self.version"
  7485. },
  7486. "require-dev": {
  7487. "doctrine/collections": "^1.0",
  7488. "doctrine/common": "^2.6",
  7489. "phpunit/phpunit": "^7.1"
  7490. },
  7491. "type": "library",
  7492. "autoload": {
  7493. "psr-4": {
  7494. "DeepCopy\\": "src/DeepCopy/"
  7495. },
  7496. "files": [
  7497. "src/DeepCopy/deep_copy.php"
  7498. ]
  7499. },
  7500. "notification-url": "https://packagist.org/downloads/",
  7501. "license": [
  7502. "MIT"
  7503. ],
  7504. "description": "Create deep copies (clones) of your objects",
  7505. "keywords": [
  7506. "clone",
  7507. "copy",
  7508. "duplicate",
  7509. "object",
  7510. "object graph"
  7511. ],
  7512. "time": "2019-08-09T12:45:53+00:00"
  7513. },
  7514. {
  7515. "name": "nette/bootstrap",
  7516. "version": "v3.0.0",
  7517. "source": {
  7518. "type": "git",
  7519. "url": "https://github.com/nette/bootstrap.git",
  7520. "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3"
  7521. },
  7522. "dist": {
  7523. "type": "zip",
  7524. "url": "https://api.github.com/repos/nette/bootstrap/zipball/e1075af05c211915e03e0c86542f3ba5433df4a3",
  7525. "reference": "e1075af05c211915e03e0c86542f3ba5433df4a3",
  7526. "shasum": "",
  7527. "mirrors": [
  7528. {
  7529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7530. "preferred": true
  7531. }
  7532. ]
  7533. },
  7534. "require": {
  7535. "nette/di": "^3.0",
  7536. "nette/utils": "^3.0",
  7537. "php": ">=7.1"
  7538. },
  7539. "require-dev": {
  7540. "latte/latte": "^2.2",
  7541. "nette/application": "^3.0",
  7542. "nette/caching": "^3.0",
  7543. "nette/database": "^3.0",
  7544. "nette/forms": "^3.0",
  7545. "nette/http": "^3.0",
  7546. "nette/mail": "^3.0",
  7547. "nette/robot-loader": "^3.0",
  7548. "nette/safe-stream": "^2.2",
  7549. "nette/security": "^3.0",
  7550. "nette/tester": "^2.0",
  7551. "tracy/tracy": "^2.6"
  7552. },
  7553. "suggest": {
  7554. "nette/robot-loader": "to use Configurator::createRobotLoader()",
  7555. "tracy/tracy": "to use Configurator::enableTracy()"
  7556. },
  7557. "type": "library",
  7558. "extra": {
  7559. "branch-alias": {
  7560. "dev-master": "3.0-dev"
  7561. }
  7562. },
  7563. "autoload": {
  7564. "classmap": [
  7565. "src/"
  7566. ]
  7567. },
  7568. "notification-url": "https://packagist.org/downloads/",
  7569. "license": [
  7570. "BSD-3-Clause",
  7571. "GPL-2.0",
  7572. "GPL-3.0"
  7573. ],
  7574. "authors": [
  7575. {
  7576. "name": "David Grudl",
  7577. "homepage": "https://davidgrudl.com"
  7578. },
  7579. {
  7580. "name": "Nette Community",
  7581. "homepage": "https://nette.org/contributors"
  7582. }
  7583. ],
  7584. "description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.",
  7585. "homepage": "https://nette.org",
  7586. "keywords": [
  7587. "bootstrapping",
  7588. "configurator",
  7589. "nette"
  7590. ],
  7591. "time": "2019-03-26T12:59:07+00:00"
  7592. },
  7593. {
  7594. "name": "nette/di",
  7595. "version": "v3.0.1",
  7596. "source": {
  7597. "type": "git",
  7598. "url": "https://github.com/nette/di.git",
  7599. "reference": "4aff517a1c6bb5c36fa09733d4cea089f529de6d"
  7600. },
  7601. "dist": {
  7602. "type": "zip",
  7603. "url": "https://api.github.com/repos/nette/di/zipball/4aff517a1c6bb5c36fa09733d4cea089f529de6d",
  7604. "reference": "4aff517a1c6bb5c36fa09733d4cea089f529de6d",
  7605. "shasum": "",
  7606. "mirrors": [
  7607. {
  7608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7609. "preferred": true
  7610. }
  7611. ]
  7612. },
  7613. "require": {
  7614. "ext-tokenizer": "*",
  7615. "nette/neon": "^3.0",
  7616. "nette/php-generator": "^3.2.2",
  7617. "nette/robot-loader": "^3.2",
  7618. "nette/schema": "^1.0",
  7619. "nette/utils": "^3.0",
  7620. "php": ">=7.1"
  7621. },
  7622. "conflict": {
  7623. "nette/bootstrap": "<3.0"
  7624. },
  7625. "require-dev": {
  7626. "nette/tester": "^2.2",
  7627. "tracy/tracy": "^2.3"
  7628. },
  7629. "type": "library",
  7630. "extra": {
  7631. "branch-alias": {
  7632. "dev-master": "3.0-dev"
  7633. }
  7634. },
  7635. "autoload": {
  7636. "classmap": [
  7637. "src/"
  7638. ],
  7639. "files": [
  7640. "src/compatibility.php"
  7641. ]
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "BSD-3-Clause",
  7646. "GPL-2.0",
  7647. "GPL-3.0"
  7648. ],
  7649. "authors": [
  7650. {
  7651. "name": "David Grudl",
  7652. "homepage": "https://davidgrudl.com"
  7653. },
  7654. {
  7655. "name": "Nette Community",
  7656. "homepage": "https://nette.org/contributors"
  7657. }
  7658. ],
  7659. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.",
  7660. "homepage": "https://nette.org",
  7661. "keywords": [
  7662. "compiled",
  7663. "di",
  7664. "dic",
  7665. "factory",
  7666. "ioc",
  7667. "nette",
  7668. "static"
  7669. ],
  7670. "time": "2019-08-07T12:11:33+00:00"
  7671. },
  7672. {
  7673. "name": "nette/finder",
  7674. "version": "v2.5.1",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/nette/finder.git",
  7678. "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/nette/finder/zipball/14164e1ddd69e9c5f627ff82a10874b3f5bba5fe",
  7683. "reference": "14164e1ddd69e9c5f627ff82a10874b3f5bba5fe",
  7684. "shasum": "",
  7685. "mirrors": [
  7686. {
  7687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7688. "preferred": true
  7689. }
  7690. ]
  7691. },
  7692. "require": {
  7693. "nette/utils": "^2.4 || ~3.0.0",
  7694. "php": ">=7.1"
  7695. },
  7696. "conflict": {
  7697. "nette/nette": "<2.2"
  7698. },
  7699. "require-dev": {
  7700. "nette/tester": "^2.0",
  7701. "tracy/tracy": "^2.3"
  7702. },
  7703. "type": "library",
  7704. "extra": {
  7705. "branch-alias": {
  7706. "dev-master": "2.5-dev"
  7707. }
  7708. },
  7709. "autoload": {
  7710. "classmap": [
  7711. "src/"
  7712. ]
  7713. },
  7714. "notification-url": "https://packagist.org/downloads/",
  7715. "license": [
  7716. "BSD-3-Clause",
  7717. "GPL-2.0",
  7718. "GPL-3.0"
  7719. ],
  7720. "authors": [
  7721. {
  7722. "name": "David Grudl",
  7723. "homepage": "https://davidgrudl.com"
  7724. },
  7725. {
  7726. "name": "Nette Community",
  7727. "homepage": "https://nette.org/contributors"
  7728. }
  7729. ],
  7730. "description": "🔍 Nette Finder: find files and directories with an intuitive API.",
  7731. "homepage": "https://nette.org",
  7732. "keywords": [
  7733. "filesystem",
  7734. "glob",
  7735. "iterator",
  7736. "nette"
  7737. ],
  7738. "time": "2019-07-11T18:02:17+00:00"
  7739. },
  7740. {
  7741. "name": "nette/neon",
  7742. "version": "v3.0.0",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/nette/neon.git",
  7746. "reference": "cbff32059cbdd8720deccf9e9eace6ee516f02eb"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/nette/neon/zipball/cbff32059cbdd8720deccf9e9eace6ee516f02eb",
  7751. "reference": "cbff32059cbdd8720deccf9e9eace6ee516f02eb",
  7752. "shasum": "",
  7753. "mirrors": [
  7754. {
  7755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7756. "preferred": true
  7757. }
  7758. ]
  7759. },
  7760. "require": {
  7761. "ext-iconv": "*",
  7762. "ext-json": "*",
  7763. "php": ">=7.0"
  7764. },
  7765. "require-dev": {
  7766. "nette/tester": "^2.0",
  7767. "tracy/tracy": "^2.3"
  7768. },
  7769. "type": "library",
  7770. "extra": {
  7771. "branch-alias": {
  7772. "dev-master": "3.0-dev"
  7773. }
  7774. },
  7775. "autoload": {
  7776. "classmap": [
  7777. "src/"
  7778. ]
  7779. },
  7780. "notification-url": "https://packagist.org/downloads/",
  7781. "license": [
  7782. "BSD-3-Clause",
  7783. "GPL-2.0",
  7784. "GPL-3.0"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "David Grudl",
  7789. "homepage": "https://davidgrudl.com"
  7790. },
  7791. {
  7792. "name": "Nette Community",
  7793. "homepage": "https://nette.org/contributors"
  7794. }
  7795. ],
  7796. "description": "? Nette NEON: encodes and decodes NEON file format.",
  7797. "homepage": "http://ne-on.org",
  7798. "keywords": [
  7799. "export",
  7800. "import",
  7801. "neon",
  7802. "nette",
  7803. "yaml"
  7804. ],
  7805. "time": "2019-02-05T21:30:40+00:00"
  7806. },
  7807. {
  7808. "name": "nette/php-generator",
  7809. "version": "v3.2.3",
  7810. "source": {
  7811. "type": "git",
  7812. "url": "https://github.com/nette/php-generator.git",
  7813. "reference": "aea6e81437bb238e5f0e5b5ce06337433908e63b"
  7814. },
  7815. "dist": {
  7816. "type": "zip",
  7817. "url": "https://api.github.com/repos/nette/php-generator/zipball/aea6e81437bb238e5f0e5b5ce06337433908e63b",
  7818. "reference": "aea6e81437bb238e5f0e5b5ce06337433908e63b",
  7819. "shasum": "",
  7820. "mirrors": [
  7821. {
  7822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7823. "preferred": true
  7824. }
  7825. ]
  7826. },
  7827. "require": {
  7828. "nette/utils": "^2.4.2 || ~3.0.0",
  7829. "php": ">=7.1"
  7830. },
  7831. "require-dev": {
  7832. "nette/tester": "^2.0",
  7833. "tracy/tracy": "^2.3"
  7834. },
  7835. "type": "library",
  7836. "extra": {
  7837. "branch-alias": {
  7838. "dev-master": "3.2-dev"
  7839. }
  7840. },
  7841. "autoload": {
  7842. "classmap": [
  7843. "src/"
  7844. ]
  7845. },
  7846. "notification-url": "https://packagist.org/downloads/",
  7847. "license": [
  7848. "BSD-3-Clause",
  7849. "GPL-2.0",
  7850. "GPL-3.0"
  7851. ],
  7852. "authors": [
  7853. {
  7854. "name": "David Grudl",
  7855. "homepage": "https://davidgrudl.com"
  7856. },
  7857. {
  7858. "name": "Nette Community",
  7859. "homepage": "https://nette.org/contributors"
  7860. }
  7861. ],
  7862. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.3 features.",
  7863. "homepage": "https://nette.org",
  7864. "keywords": [
  7865. "code",
  7866. "nette",
  7867. "php",
  7868. "scaffolding"
  7869. ],
  7870. "time": "2019-07-05T13:01:56+00:00"
  7871. },
  7872. {
  7873. "name": "nette/robot-loader",
  7874. "version": "v3.2.0",
  7875. "source": {
  7876. "type": "git",
  7877. "url": "https://github.com/nette/robot-loader.git",
  7878. "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c"
  7879. },
  7880. "dist": {
  7881. "type": "zip",
  7882. "url": "https://api.github.com/repos/nette/robot-loader/zipball/0712a0e39ae7956d6a94c0ab6ad41aa842544b5c",
  7883. "reference": "0712a0e39ae7956d6a94c0ab6ad41aa842544b5c",
  7884. "shasum": "",
  7885. "mirrors": [
  7886. {
  7887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7888. "preferred": true
  7889. }
  7890. ]
  7891. },
  7892. "require": {
  7893. "ext-tokenizer": "*",
  7894. "nette/finder": "^2.5",
  7895. "nette/utils": "^3.0",
  7896. "php": ">=7.1"
  7897. },
  7898. "require-dev": {
  7899. "nette/tester": "^2.0",
  7900. "tracy/tracy": "^2.3"
  7901. },
  7902. "type": "library",
  7903. "extra": {
  7904. "branch-alias": {
  7905. "dev-master": "3.2-dev"
  7906. }
  7907. },
  7908. "autoload": {
  7909. "classmap": [
  7910. "src/"
  7911. ]
  7912. },
  7913. "notification-url": "https://packagist.org/downloads/",
  7914. "license": [
  7915. "BSD-3-Clause",
  7916. "GPL-2.0",
  7917. "GPL-3.0"
  7918. ],
  7919. "authors": [
  7920. {
  7921. "name": "David Grudl",
  7922. "homepage": "https://davidgrudl.com"
  7923. },
  7924. {
  7925. "name": "Nette Community",
  7926. "homepage": "https://nette.org/contributors"
  7927. }
  7928. ],
  7929. "description": "? Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
  7930. "homepage": "https://nette.org",
  7931. "keywords": [
  7932. "autoload",
  7933. "class",
  7934. "interface",
  7935. "nette",
  7936. "trait"
  7937. ],
  7938. "time": "2019-03-08T21:57:24+00:00"
  7939. },
  7940. {
  7941. "name": "nette/schema",
  7942. "version": "v1.0.0",
  7943. "source": {
  7944. "type": "git",
  7945. "url": "https://github.com/nette/schema.git",
  7946. "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d"
  7947. },
  7948. "dist": {
  7949. "type": "zip",
  7950. "url": "https://api.github.com/repos/nette/schema/zipball/6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d",
  7951. "reference": "6241d8d4da39e825dd6cb5bfbe4242912f4d7e4d",
  7952. "shasum": "",
  7953. "mirrors": [
  7954. {
  7955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7956. "preferred": true
  7957. }
  7958. ]
  7959. },
  7960. "require": {
  7961. "nette/utils": "^3.0.1",
  7962. "php": ">=7.1"
  7963. },
  7964. "require-dev": {
  7965. "nette/tester": "^2.2",
  7966. "tracy/tracy": "^2.3"
  7967. },
  7968. "type": "library",
  7969. "extra": {
  7970. "branch-alias": {
  7971. "dev-master": "1.0-dev"
  7972. }
  7973. },
  7974. "autoload": {
  7975. "classmap": [
  7976. "src/"
  7977. ]
  7978. },
  7979. "notification-url": "https://packagist.org/downloads/",
  7980. "license": [
  7981. "BSD-3-Clause",
  7982. "GPL-2.0",
  7983. "GPL-3.0"
  7984. ],
  7985. "authors": [
  7986. {
  7987. "name": "David Grudl",
  7988. "homepage": "https://davidgrudl.com"
  7989. },
  7990. {
  7991. "name": "Nette Community",
  7992. "homepage": "https://nette.org/contributors"
  7993. }
  7994. ],
  7995. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  7996. "homepage": "https://nette.org",
  7997. "keywords": [
  7998. "config",
  7999. "nette"
  8000. ],
  8001. "time": "2019-04-03T15:53:25+00:00"
  8002. },
  8003. {
  8004. "name": "nette/utils",
  8005. "version": "v3.0.1",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/nette/utils.git",
  8009. "reference": "bd961f49b211997202bda1d0fbc410905be370d4"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/nette/utils/zipball/bd961f49b211997202bda1d0fbc410905be370d4",
  8014. "reference": "bd961f49b211997202bda1d0fbc410905be370d4",
  8015. "shasum": "",
  8016. "mirrors": [
  8017. {
  8018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8019. "preferred": true
  8020. }
  8021. ]
  8022. },
  8023. "require": {
  8024. "php": ">=7.1"
  8025. },
  8026. "require-dev": {
  8027. "nette/tester": "~2.0",
  8028. "tracy/tracy": "^2.3"
  8029. },
  8030. "suggest": {
  8031. "ext-gd": "to use Image",
  8032. "ext-iconv": "to use Strings::webalize() and toAscii()",
  8033. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  8034. "ext-json": "to use Nette\\Utils\\Json",
  8035. "ext-mbstring": "to use Strings::lower() etc...",
  8036. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  8037. },
  8038. "type": "library",
  8039. "extra": {
  8040. "branch-alias": {
  8041. "dev-master": "3.0-dev"
  8042. }
  8043. },
  8044. "autoload": {
  8045. "classmap": [
  8046. "src/"
  8047. ]
  8048. },
  8049. "notification-url": "https://packagist.org/downloads/",
  8050. "license": [
  8051. "BSD-3-Clause",
  8052. "GPL-2.0",
  8053. "GPL-3.0"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "David Grudl",
  8058. "homepage": "https://davidgrudl.com"
  8059. },
  8060. {
  8061. "name": "Nette Community",
  8062. "homepage": "https://nette.org/contributors"
  8063. }
  8064. ],
  8065. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  8066. "homepage": "https://nette.org",
  8067. "keywords": [
  8068. "array",
  8069. "core",
  8070. "datetime",
  8071. "images",
  8072. "json",
  8073. "nette",
  8074. "paginator",
  8075. "password",
  8076. "slugify",
  8077. "string",
  8078. "unicode",
  8079. "utf-8",
  8080. "utility",
  8081. "validation"
  8082. ],
  8083. "time": "2019-03-22T01:00:30+00:00"
  8084. },
  8085. {
  8086. "name": "nunomaduro/collision",
  8087. "version": "v2.1.1",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://github.com/nunomaduro/collision.git",
  8091. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  8096. "reference": "b5feb0c0d92978ec7169232ce5d70d6da6b29f63",
  8097. "shasum": "",
  8098. "mirrors": [
  8099. {
  8100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8101. "preferred": true
  8102. }
  8103. ]
  8104. },
  8105. "require": {
  8106. "filp/whoops": "^2.1.4",
  8107. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8108. "php": "^7.1",
  8109. "symfony/console": "~2.8|~3.3|~4.0"
  8110. },
  8111. "require-dev": {
  8112. "laravel/framework": "5.7.*",
  8113. "nunomaduro/larastan": "^0.3.0",
  8114. "phpstan/phpstan": "^0.10",
  8115. "phpunit/phpunit": "~7.3"
  8116. },
  8117. "type": "library",
  8118. "extra": {
  8119. "laravel": {
  8120. "providers": [
  8121. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8122. ]
  8123. }
  8124. },
  8125. "autoload": {
  8126. "psr-4": {
  8127. "NunoMaduro\\Collision\\": "src/"
  8128. }
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "MIT"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Nuno Maduro",
  8137. "email": "enunomaduro@gmail.com"
  8138. }
  8139. ],
  8140. "description": "Cli error handling for console/command-line PHP applications.",
  8141. "keywords": [
  8142. "artisan",
  8143. "cli",
  8144. "command-line",
  8145. "console",
  8146. "error",
  8147. "handling",
  8148. "laravel",
  8149. "laravel-zero",
  8150. "php",
  8151. "symfony"
  8152. ],
  8153. "time": "2018-11-21T21:40:54+00:00"
  8154. },
  8155. {
  8156. "name": "nunomaduro/larastan",
  8157. "version": "v0.4.2",
  8158. "source": {
  8159. "type": "git",
  8160. "url": "https://github.com/nunomaduro/larastan.git",
  8161. "reference": "c66d4f3cfcfe0c041c40b38227de1b9a5a106f6c"
  8162. },
  8163. "dist": {
  8164. "type": "zip",
  8165. "url": "https://api.github.com/repos/nunomaduro/larastan/zipball/c66d4f3cfcfe0c041c40b38227de1b9a5a106f6c",
  8166. "reference": "c66d4f3cfcfe0c041c40b38227de1b9a5a106f6c",
  8167. "shasum": "",
  8168. "mirrors": [
  8169. {
  8170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8171. "preferred": true
  8172. }
  8173. ]
  8174. },
  8175. "require": {
  8176. "composer/composer": "^1.0",
  8177. "ext-json": "*",
  8178. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  8179. "illuminate/container": "5.6.*|5.7.*|5.8.*|^6.0",
  8180. "illuminate/contracts": "5.6.*|5.7.*|5.8.*|^6.0",
  8181. "illuminate/database": "5.6.*|5.7.*|5.8.*|^6.0",
  8182. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  8183. "illuminate/pipeline": "5.6.*|5.7.*|5.8.*|^6.0",
  8184. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  8185. "mockery/mockery": "^1.0|0.9.*",
  8186. "php": "^7.1.3",
  8187. "phpstan/phpstan": "^0.11.15",
  8188. "symfony/process": "^4.2"
  8189. },
  8190. "require-dev": {
  8191. "orchestra/testbench": "^3.8",
  8192. "phpunit/phpunit": "^7.3 || ^8.2"
  8193. },
  8194. "suggest": {
  8195. "orchestra/testbench": "^3.6"
  8196. },
  8197. "type": "phpstan-extension",
  8198. "extra": {
  8199. "laravel": {
  8200. "providers": [
  8201. "NunoMaduro\\Larastan\\LarastanServiceProvider"
  8202. ]
  8203. },
  8204. "phpstan": {
  8205. "includes": [
  8206. "extension.neon"
  8207. ]
  8208. }
  8209. },
  8210. "autoload": {
  8211. "psr-4": {
  8212. "NunoMaduro\\Larastan\\": "src/"
  8213. }
  8214. },
  8215. "notification-url": "https://packagist.org/downloads/",
  8216. "license": [
  8217. "MIT"
  8218. ],
  8219. "authors": [
  8220. {
  8221. "name": "Nuno Maduro",
  8222. "email": "enunomaduro@gmail.com"
  8223. }
  8224. ],
  8225. "description": "Larastan - Discover bugs in your code without running it. A phpstan/phpstan wrapper for Laravel",
  8226. "keywords": [
  8227. "PHPStan",
  8228. "code analyse",
  8229. "code analysis",
  8230. "larastan",
  8231. "laravel",
  8232. "package",
  8233. "php",
  8234. "static analysis"
  8235. ],
  8236. "time": "2019-10-16T12:45:23+00:00"
  8237. },
  8238. {
  8239. "name": "ocramius/package-versions",
  8240. "version": "1.4.0",
  8241. "source": {
  8242. "type": "git",
  8243. "url": "https://github.com/Ocramius/PackageVersions.git",
  8244. "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb"
  8245. },
  8246. "dist": {
  8247. "type": "zip",
  8248. "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
  8249. "reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb",
  8250. "shasum": "",
  8251. "mirrors": [
  8252. {
  8253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8254. "preferred": true
  8255. }
  8256. ]
  8257. },
  8258. "require": {
  8259. "composer-plugin-api": "^1.0.0",
  8260. "php": "^7.1.0"
  8261. },
  8262. "require-dev": {
  8263. "composer/composer": "^1.6.3",
  8264. "doctrine/coding-standard": "^5.0.1",
  8265. "ext-zip": "*",
  8266. "infection/infection": "^0.7.1",
  8267. "phpunit/phpunit": "^7.0.0"
  8268. },
  8269. "type": "composer-plugin",
  8270. "extra": {
  8271. "class": "PackageVersions\\Installer",
  8272. "branch-alias": {
  8273. "dev-master": "2.0.x-dev"
  8274. }
  8275. },
  8276. "autoload": {
  8277. "psr-4": {
  8278. "PackageVersions\\": "src/PackageVersions"
  8279. }
  8280. },
  8281. "notification-url": "https://packagist.org/downloads/",
  8282. "license": [
  8283. "MIT"
  8284. ],
  8285. "authors": [
  8286. {
  8287. "name": "Marco Pivetta",
  8288. "email": "ocramius@gmail.com"
  8289. }
  8290. ],
  8291. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  8292. "time": "2019-02-21T12:16:21+00:00"
  8293. },
  8294. {
  8295. "name": "pdepend/pdepend",
  8296. "version": "2.5.2",
  8297. "source": {
  8298. "type": "git",
  8299. "url": "https://github.com/pdepend/pdepend.git",
  8300. "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239"
  8301. },
  8302. "dist": {
  8303. "type": "zip",
  8304. "url": "https://api.github.com/repos/pdepend/pdepend/zipball/9daf26d0368d4a12bed1cacae1a9f3a6f0adf239",
  8305. "reference": "9daf26d0368d4a12bed1cacae1a9f3a6f0adf239",
  8306. "shasum": "",
  8307. "mirrors": [
  8308. {
  8309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8310. "preferred": true
  8311. }
  8312. ]
  8313. },
  8314. "require": {
  8315. "php": ">=5.3.7",
  8316. "symfony/config": "^2.3.0|^3|^4",
  8317. "symfony/dependency-injection": "^2.3.0|^3|^4",
  8318. "symfony/filesystem": "^2.3.0|^3|^4"
  8319. },
  8320. "require-dev": {
  8321. "phpunit/phpunit": "^4.8|^5.7",
  8322. "squizlabs/php_codesniffer": "^2.0.0"
  8323. },
  8324. "bin": [
  8325. "src/bin/pdepend"
  8326. ],
  8327. "type": "library",
  8328. "autoload": {
  8329. "psr-4": {
  8330. "PDepend\\": "src/main/php/PDepend"
  8331. }
  8332. },
  8333. "notification-url": "https://packagist.org/downloads/",
  8334. "license": [
  8335. "BSD-3-Clause"
  8336. ],
  8337. "description": "Official version of pdepend to be handled with Composer",
  8338. "time": "2017-12-13T13:21:38+00:00"
  8339. },
  8340. {
  8341. "name": "phar-io/manifest",
  8342. "version": "1.0.3",
  8343. "source": {
  8344. "type": "git",
  8345. "url": "https://github.com/phar-io/manifest.git",
  8346. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  8347. },
  8348. "dist": {
  8349. "type": "zip",
  8350. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8351. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8352. "shasum": "",
  8353. "mirrors": [
  8354. {
  8355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8356. "preferred": true
  8357. }
  8358. ]
  8359. },
  8360. "require": {
  8361. "ext-dom": "*",
  8362. "ext-phar": "*",
  8363. "phar-io/version": "^2.0",
  8364. "php": "^5.6 || ^7.0"
  8365. },
  8366. "type": "library",
  8367. "extra": {
  8368. "branch-alias": {
  8369. "dev-master": "1.0.x-dev"
  8370. }
  8371. },
  8372. "autoload": {
  8373. "classmap": [
  8374. "src/"
  8375. ]
  8376. },
  8377. "notification-url": "https://packagist.org/downloads/",
  8378. "license": [
  8379. "BSD-3-Clause"
  8380. ],
  8381. "authors": [
  8382. {
  8383. "name": "Arne Blankerts",
  8384. "email": "arne@blankerts.de",
  8385. "role": "Developer"
  8386. },
  8387. {
  8388. "name": "Sebastian Heuer",
  8389. "email": "sebastian@phpeople.de",
  8390. "role": "Developer"
  8391. },
  8392. {
  8393. "name": "Sebastian Bergmann",
  8394. "email": "sebastian@phpunit.de",
  8395. "role": "Developer"
  8396. }
  8397. ],
  8398. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8399. "time": "2018-07-08T19:23:20+00:00"
  8400. },
  8401. {
  8402. "name": "phar-io/version",
  8403. "version": "2.0.1",
  8404. "source": {
  8405. "type": "git",
  8406. "url": "https://github.com/phar-io/version.git",
  8407. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  8408. },
  8409. "dist": {
  8410. "type": "zip",
  8411. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8412. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8413. "shasum": "",
  8414. "mirrors": [
  8415. {
  8416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8417. "preferred": true
  8418. }
  8419. ]
  8420. },
  8421. "require": {
  8422. "php": "^5.6 || ^7.0"
  8423. },
  8424. "type": "library",
  8425. "autoload": {
  8426. "classmap": [
  8427. "src/"
  8428. ]
  8429. },
  8430. "notification-url": "https://packagist.org/downloads/",
  8431. "license": [
  8432. "BSD-3-Clause"
  8433. ],
  8434. "authors": [
  8435. {
  8436. "name": "Arne Blankerts",
  8437. "email": "arne@blankerts.de",
  8438. "role": "Developer"
  8439. },
  8440. {
  8441. "name": "Sebastian Heuer",
  8442. "email": "sebastian@phpeople.de",
  8443. "role": "Developer"
  8444. },
  8445. {
  8446. "name": "Sebastian Bergmann",
  8447. "email": "sebastian@phpunit.de",
  8448. "role": "Developer"
  8449. }
  8450. ],
  8451. "description": "Library for handling version information and constraints",
  8452. "time": "2018-07-08T19:19:57+00:00"
  8453. },
  8454. {
  8455. "name": "phpdocumentor/reflection-common",
  8456. "version": "2.0.0",
  8457. "source": {
  8458. "type": "git",
  8459. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8460. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  8461. },
  8462. "dist": {
  8463. "type": "zip",
  8464. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  8465. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  8466. "shasum": "",
  8467. "mirrors": [
  8468. {
  8469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8470. "preferred": true
  8471. }
  8472. ]
  8473. },
  8474. "require": {
  8475. "php": ">=7.1"
  8476. },
  8477. "require-dev": {
  8478. "phpunit/phpunit": "~6"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "branch-alias": {
  8483. "dev-master": "2.x-dev"
  8484. }
  8485. },
  8486. "autoload": {
  8487. "psr-4": {
  8488. "phpDocumentor\\Reflection\\": "src/"
  8489. }
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "MIT"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "Jaap van Otterdijk",
  8498. "email": "opensource@ijaap.nl"
  8499. }
  8500. ],
  8501. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8502. "homepage": "http://www.phpdoc.org",
  8503. "keywords": [
  8504. "FQSEN",
  8505. "phpDocumentor",
  8506. "phpdoc",
  8507. "reflection",
  8508. "static analysis"
  8509. ],
  8510. "time": "2018-08-07T13:53:10+00:00"
  8511. },
  8512. {
  8513. "name": "phpdocumentor/reflection-docblock",
  8514. "version": "4.3.2",
  8515. "source": {
  8516. "type": "git",
  8517. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8518. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  8519. },
  8520. "dist": {
  8521. "type": "zip",
  8522. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  8523. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  8524. "shasum": "",
  8525. "mirrors": [
  8526. {
  8527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8528. "preferred": true
  8529. }
  8530. ]
  8531. },
  8532. "require": {
  8533. "php": "^7.0",
  8534. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  8535. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  8536. "webmozart/assert": "^1.0"
  8537. },
  8538. "require-dev": {
  8539. "doctrine/instantiator": "^1.0.5",
  8540. "mockery/mockery": "^1.0",
  8541. "phpunit/phpunit": "^6.4"
  8542. },
  8543. "type": "library",
  8544. "extra": {
  8545. "branch-alias": {
  8546. "dev-master": "4.x-dev"
  8547. }
  8548. },
  8549. "autoload": {
  8550. "psr-4": {
  8551. "phpDocumentor\\Reflection\\": [
  8552. "src/"
  8553. ]
  8554. }
  8555. },
  8556. "notification-url": "https://packagist.org/downloads/",
  8557. "license": [
  8558. "MIT"
  8559. ],
  8560. "authors": [
  8561. {
  8562. "name": "Mike van Riel",
  8563. "email": "me@mikevanriel.com"
  8564. }
  8565. ],
  8566. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8567. "time": "2019-09-12T14:27:41+00:00"
  8568. },
  8569. {
  8570. "name": "phpdocumentor/type-resolver",
  8571. "version": "1.0.1",
  8572. "source": {
  8573. "type": "git",
  8574. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8575. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  8576. },
  8577. "dist": {
  8578. "type": "zip",
  8579. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  8580. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  8581. "shasum": "",
  8582. "mirrors": [
  8583. {
  8584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8585. "preferred": true
  8586. }
  8587. ]
  8588. },
  8589. "require": {
  8590. "php": "^7.1",
  8591. "phpdocumentor/reflection-common": "^2.0"
  8592. },
  8593. "require-dev": {
  8594. "ext-tokenizer": "^7.1",
  8595. "mockery/mockery": "~1",
  8596. "phpunit/phpunit": "^7.0"
  8597. },
  8598. "type": "library",
  8599. "extra": {
  8600. "branch-alias": {
  8601. "dev-master": "1.x-dev"
  8602. }
  8603. },
  8604. "autoload": {
  8605. "psr-4": {
  8606. "phpDocumentor\\Reflection\\": "src"
  8607. }
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "MIT"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Mike van Riel",
  8616. "email": "me@mikevanriel.com"
  8617. }
  8618. ],
  8619. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8620. "time": "2019-08-22T18:11:29+00:00"
  8621. },
  8622. {
  8623. "name": "phpmd/phpmd",
  8624. "version": "2.7.0",
  8625. "source": {
  8626. "type": "git",
  8627. "url": "https://github.com/phpmd/phpmd.git",
  8628. "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c"
  8629. },
  8630. "dist": {
  8631. "type": "zip",
  8632. "url": "https://api.github.com/repos/phpmd/phpmd/zipball/a05a999c644f4bc9a204846017db7bb7809fbe4c",
  8633. "reference": "a05a999c644f4bc9a204846017db7bb7809fbe4c",
  8634. "shasum": "",
  8635. "mirrors": [
  8636. {
  8637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8638. "preferred": true
  8639. }
  8640. ]
  8641. },
  8642. "require": {
  8643. "ext-xml": "*",
  8644. "pdepend/pdepend": "^2.5",
  8645. "php": ">=5.3.9"
  8646. },
  8647. "require-dev": {
  8648. "gregwar/rst": "^1.0",
  8649. "mikey179/vfsstream": "^1.6.4",
  8650. "phpunit/phpunit": "^4.8.36 || ^5.7.27",
  8651. "squizlabs/php_codesniffer": "^2.0"
  8652. },
  8653. "bin": [
  8654. "src/bin/phpmd"
  8655. ],
  8656. "type": "library",
  8657. "autoload": {
  8658. "psr-0": {
  8659. "PHPMD\\": "src/main/php"
  8660. }
  8661. },
  8662. "notification-url": "https://packagist.org/downloads/",
  8663. "license": [
  8664. "BSD-3-Clause"
  8665. ],
  8666. "authors": [
  8667. {
  8668. "name": "Manuel Pichler",
  8669. "email": "github@manuel-pichler.de",
  8670. "homepage": "https://github.com/manuelpichler",
  8671. "role": "Project Founder"
  8672. },
  8673. {
  8674. "name": "Marc Würth",
  8675. "email": "ravage@bluewin.ch",
  8676. "homepage": "https://github.com/ravage84",
  8677. "role": "Project Maintainer"
  8678. },
  8679. {
  8680. "name": "Other contributors",
  8681. "homepage": "https://github.com/phpmd/phpmd/graphs/contributors",
  8682. "role": "Contributors"
  8683. }
  8684. ],
  8685. "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.",
  8686. "homepage": "https://phpmd.org/",
  8687. "keywords": [
  8688. "mess detection",
  8689. "mess detector",
  8690. "pdepend",
  8691. "phpmd",
  8692. "pmd"
  8693. ],
  8694. "time": "2019-07-30T21:13:32+00:00"
  8695. },
  8696. {
  8697. "name": "phpro/grumphp",
  8698. "version": "v0.15.2",
  8699. "source": {
  8700. "type": "git",
  8701. "url": "https://github.com/phpro/grumphp.git",
  8702. "reference": "c153840bead6fbed370d35cc84c63dca33de0ca4"
  8703. },
  8704. "dist": {
  8705. "type": "zip",
  8706. "url": "https://api.github.com/repos/phpro/grumphp/zipball/c153840bead6fbed370d35cc84c63dca33de0ca4",
  8707. "reference": "c153840bead6fbed370d35cc84c63dca33de0ca4",
  8708. "shasum": "",
  8709. "mirrors": [
  8710. {
  8711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8712. "preferred": true
  8713. }
  8714. ]
  8715. },
  8716. "require": {
  8717. "composer-plugin-api": "~1.0",
  8718. "composer/composer": "^1.0",
  8719. "doctrine/collections": "~1.2",
  8720. "gitonomy/gitlib": "^1.0.3",
  8721. "monolog/monolog": "~1.16",
  8722. "php": ">=7.0",
  8723. "seld/jsonlint": "~1.1",
  8724. "symfony/config": "~3.4|~4.0",
  8725. "symfony/console": "~3.4|~4.0",
  8726. "symfony/dependency-injection": "~3.4|~4.0",
  8727. "symfony/event-dispatcher": "~3.4|~4.0",
  8728. "symfony/filesystem": "~3.4|~4.0",
  8729. "symfony/finder": "~3.4|~4.0",
  8730. "symfony/options-resolver": "~3.4|~4.0",
  8731. "symfony/process": "~3.4|~4.0",
  8732. "symfony/yaml": "~3.4|~4.0"
  8733. },
  8734. "require-dev": {
  8735. "friendsofphp/php-cs-fixer": "~2",
  8736. "jakub-onderka/php-parallel-lint": "^0.9.2",
  8737. "nikic/php-parser": "~2.1",
  8738. "phpspec/phpspec": "^3.2.2",
  8739. "phpspec/prophecy": "^1.6.2",
  8740. "phpunit/phpunit": "^6.5|^7.0",
  8741. "sebastian/comparator": "^2.1",
  8742. "sebastian/diff": "^2.0",
  8743. "sebastian/exporter": "^3.1",
  8744. "sensiolabs/security-checker": "^5.0",
  8745. "squizlabs/php_codesniffer": "~2.9"
  8746. },
  8747. "suggest": {
  8748. "allocine/twigcs": "Lets GrumPHP check Twig coding standard.",
  8749. "atoum/atoum": "Lets GrumPHP run your unit tests.",
  8750. "behat/behat": "Lets GrumPHP validate your project features.",
  8751. "brianium/paratest": "Lets GrumPHP run PHPUnit in parallel.",
  8752. "codeception/codeception": "Lets GrumPHP run your project's full stack tests",
  8753. "codegyre/robo": "Lets GrumPHP run your automated PHP tasks.",
  8754. "designsecurity/progpilot": "Lets GrumPHP be sure that there are no vulnerabilities in your code.",
  8755. "doctrine/orm": "Lets GrumPHP validate your Doctrine mapping files.",
  8756. "friendsofphp/php-cs-fixer": "Lets GrumPHP automatically fix your codestyle.",
  8757. "infection/infection": "Lets GrumPHP evaluate the quality your unit tests",
  8758. "jakub-onderka/php-parallel-lint": "Lets GrumPHP quickly lint your entire code base.",
  8759. "localheinz/composer-normalize": "Lets GrumPHP tidy and normalize your composer.json file.",
  8760. "maglnet/composer-require-checker": "Lets GrumPHP analyze composer dependencies.",
  8761. "malukenho/kawaii-gherkin": "Lets GrumPHP lint your Gherkin files.",
  8762. "nikic/php-parser": "Lets GrumPHP run static analyses through your PHP files.",
  8763. "phan/phan": "Lets GrumPHP unleash a static analyzer on your code",
  8764. "phing/phing": "Lets GrumPHP run your automated PHP tasks.",
  8765. "phpmd/phpmd": "Lets GrumPHP sort out the mess in your code",
  8766. "phpspec/phpspec": "Lets GrumPHP spec your code.",
  8767. "phpstan/phpstan": "Lets GrumPHP discover bugs in your code without running it.",
  8768. "phpunit/phpunit": "Lets GrumPHP run your unit tests.",
  8769. "povils/phpmnd": "Lets GrumPHP help you detect magic numbers in PHP code.",
  8770. "roave/security-advisories": "Lets GrumPHP be sure that there are no known security issues.",
  8771. "sebastian/phpcpd": "Lets GrumPHP find duplicated code.",
  8772. "sensiolabs/security-checker": "Lets GrumPHP be sure that there are no known security issues.",
  8773. "squizlabs/php_codesniffer": "Lets GrumPHP sniff on your code.",
  8774. "sstalle/php7cc": "Lets GrumPHP check PHP 5.3 - 5.6 code compatibility with PHP 7.",
  8775. "symfony/phpunit-bridge": "Lets GrumPHP run your unit tests with the phpunit-bridge of Symfony.",
  8776. "symplify/easycodingstandard": "Lets GrumPHP check coding standard.",
  8777. "vimeo/psalm": "Lets GrumPHP discover errors in your code without running it."
  8778. },
  8779. "bin": [
  8780. "bin/grumphp"
  8781. ],
  8782. "type": "composer-plugin",
  8783. "extra": {
  8784. "class": "GrumPHP\\Composer\\GrumPHPPlugin"
  8785. },
  8786. "autoload": {
  8787. "psr-4": {
  8788. "GrumPHP\\": "src"
  8789. }
  8790. },
  8791. "notification-url": "https://packagist.org/downloads/",
  8792. "license": [
  8793. "MIT"
  8794. ],
  8795. "authors": [
  8796. {
  8797. "name": "Toon Verwerft",
  8798. "email": "toon.verwerft@phpro.be"
  8799. },
  8800. {
  8801. "name": "Community",
  8802. "homepage": "https://github.com/phpro/grumphp/graphs/contributors"
  8803. }
  8804. ],
  8805. "description": "A composer plugin that enables source code quality checks.",
  8806. "time": "2019-05-17T11:56:59+00:00"
  8807. },
  8808. {
  8809. "name": "phpspec/prophecy",
  8810. "version": "1.9.0",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/phpspec/prophecy.git",
  8814. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  8819. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  8820. "shasum": "",
  8821. "mirrors": [
  8822. {
  8823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8824. "preferred": true
  8825. }
  8826. ]
  8827. },
  8828. "require": {
  8829. "doctrine/instantiator": "^1.0.2",
  8830. "php": "^5.3|^7.0",
  8831. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  8832. "sebastian/comparator": "^1.1|^2.0|^3.0",
  8833. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  8834. },
  8835. "require-dev": {
  8836. "phpspec/phpspec": "^2.5|^3.2",
  8837. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  8838. },
  8839. "type": "library",
  8840. "extra": {
  8841. "branch-alias": {
  8842. "dev-master": "1.8.x-dev"
  8843. }
  8844. },
  8845. "autoload": {
  8846. "psr-4": {
  8847. "Prophecy\\": "src/Prophecy"
  8848. }
  8849. },
  8850. "notification-url": "https://packagist.org/downloads/",
  8851. "license": [
  8852. "MIT"
  8853. ],
  8854. "authors": [
  8855. {
  8856. "name": "Konstantin Kudryashov",
  8857. "email": "ever.zet@gmail.com",
  8858. "homepage": "http://everzet.com"
  8859. },
  8860. {
  8861. "name": "Marcello Duarte",
  8862. "email": "marcello.duarte@gmail.com"
  8863. }
  8864. ],
  8865. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8866. "homepage": "https://github.com/phpspec/prophecy",
  8867. "keywords": [
  8868. "Double",
  8869. "Dummy",
  8870. "fake",
  8871. "mock",
  8872. "spy",
  8873. "stub"
  8874. ],
  8875. "time": "2019-10-03T11:07:50+00:00"
  8876. },
  8877. {
  8878. "name": "phpstan/phpdoc-parser",
  8879. "version": "0.3.5",
  8880. "source": {
  8881. "type": "git",
  8882. "url": "https://github.com/phpstan/phpdoc-parser.git",
  8883. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4"
  8884. },
  8885. "dist": {
  8886. "type": "zip",
  8887. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  8888. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  8889. "shasum": "",
  8890. "mirrors": [
  8891. {
  8892. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8893. "preferred": true
  8894. }
  8895. ]
  8896. },
  8897. "require": {
  8898. "php": "~7.1"
  8899. },
  8900. "require-dev": {
  8901. "consistence/coding-standard": "^3.5",
  8902. "jakub-onderka/php-parallel-lint": "^0.9.2",
  8903. "phing/phing": "^2.16.0",
  8904. "phpstan/phpstan": "^0.10",
  8905. "phpunit/phpunit": "^6.3",
  8906. "slevomat/coding-standard": "^4.7.2",
  8907. "squizlabs/php_codesniffer": "^3.3.2",
  8908. "symfony/process": "^3.4 || ^4.0"
  8909. },
  8910. "type": "library",
  8911. "extra": {
  8912. "branch-alias": {
  8913. "dev-master": "0.3-dev"
  8914. }
  8915. },
  8916. "autoload": {
  8917. "psr-4": {
  8918. "PHPStan\\PhpDocParser\\": [
  8919. "src/"
  8920. ]
  8921. }
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "license": [
  8925. "MIT"
  8926. ],
  8927. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  8928. "time": "2019-06-07T19:13:52+00:00"
  8929. },
  8930. {
  8931. "name": "phpstan/phpstan",
  8932. "version": "0.11.17",
  8933. "source": {
  8934. "type": "git",
  8935. "url": "https://github.com/phpstan/phpstan.git",
  8936. "reference": "4e8ea97406bcf8eb58f670489e80b1f86e43d3b1"
  8937. },
  8938. "dist": {
  8939. "type": "zip",
  8940. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/4e8ea97406bcf8eb58f670489e80b1f86e43d3b1",
  8941. "reference": "4e8ea97406bcf8eb58f670489e80b1f86e43d3b1",
  8942. "shasum": "",
  8943. "mirrors": [
  8944. {
  8945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8946. "preferred": true
  8947. }
  8948. ]
  8949. },
  8950. "require": {
  8951. "composer/xdebug-handler": "^1.3.0",
  8952. "jean85/pretty-package-versions": "^1.0.3",
  8953. "nette/bootstrap": "^2.4 || ^3.0",
  8954. "nette/di": "^2.4.7 || ^3.0",
  8955. "nette/neon": "^2.4.3 || ^3.0",
  8956. "nette/robot-loader": "^3.0.1",
  8957. "nette/schema": "^1.0",
  8958. "nette/utils": "^2.4.5 || ^3.0",
  8959. "nikic/php-parser": "^4.2.3",
  8960. "php": "~7.1",
  8961. "phpstan/phpdoc-parser": "^0.3.5",
  8962. "symfony/console": "~3.2 || ~4.0",
  8963. "symfony/finder": "~3.2 || ~4.0"
  8964. },
  8965. "conflict": {
  8966. "symfony/console": "3.4.16 || 4.1.5"
  8967. },
  8968. "require-dev": {
  8969. "brianium/paratest": "^2.0 || ^3.0",
  8970. "consistence/coding-standard": "^3.5",
  8971. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  8972. "ext-intl": "*",
  8973. "ext-mysqli": "*",
  8974. "ext-simplexml": "*",
  8975. "ext-soap": "*",
  8976. "ext-zip": "*",
  8977. "jakub-onderka/php-parallel-lint": "^1.0",
  8978. "localheinz/composer-normalize": "^1.1.0",
  8979. "phing/phing": "^2.16.0",
  8980. "phpstan/phpstan-deprecation-rules": "^0.11",
  8981. "phpstan/phpstan-php-parser": "^0.11",
  8982. "phpstan/phpstan-phpunit": "^0.11",
  8983. "phpstan/phpstan-strict-rules": "^0.11",
  8984. "phpunit/phpunit": "^7.5.14 || ^8.0",
  8985. "slevomat/coding-standard": "^4.7.2",
  8986. "squizlabs/php_codesniffer": "^3.3.2"
  8987. },
  8988. "bin": [
  8989. "bin/phpstan"
  8990. ],
  8991. "type": "library",
  8992. "extra": {
  8993. "branch-alias": {
  8994. "dev-master": "0.11-dev"
  8995. }
  8996. },
  8997. "autoload": {
  8998. "psr-4": {
  8999. "PHPStan\\": [
  9000. "src/"
  9001. ]
  9002. }
  9003. },
  9004. "notification-url": "https://packagist.org/downloads/",
  9005. "license": [
  9006. "MIT"
  9007. ],
  9008. "description": "PHPStan - PHP Static Analysis Tool",
  9009. "time": "2019-10-19T20:02:55+00:00"
  9010. },
  9011. {
  9012. "name": "phpunit/php-code-coverage",
  9013. "version": "6.1.4",
  9014. "source": {
  9015. "type": "git",
  9016. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9017. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  9018. },
  9019. "dist": {
  9020. "type": "zip",
  9021. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  9022. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  9023. "shasum": "",
  9024. "mirrors": [
  9025. {
  9026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9027. "preferred": true
  9028. }
  9029. ]
  9030. },
  9031. "require": {
  9032. "ext-dom": "*",
  9033. "ext-xmlwriter": "*",
  9034. "php": "^7.1",
  9035. "phpunit/php-file-iterator": "^2.0",
  9036. "phpunit/php-text-template": "^1.2.1",
  9037. "phpunit/php-token-stream": "^3.0",
  9038. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9039. "sebastian/environment": "^3.1 || ^4.0",
  9040. "sebastian/version": "^2.0.1",
  9041. "theseer/tokenizer": "^1.1"
  9042. },
  9043. "require-dev": {
  9044. "phpunit/phpunit": "^7.0"
  9045. },
  9046. "suggest": {
  9047. "ext-xdebug": "^2.6.0"
  9048. },
  9049. "type": "library",
  9050. "extra": {
  9051. "branch-alias": {
  9052. "dev-master": "6.1-dev"
  9053. }
  9054. },
  9055. "autoload": {
  9056. "classmap": [
  9057. "src/"
  9058. ]
  9059. },
  9060. "notification-url": "https://packagist.org/downloads/",
  9061. "license": [
  9062. "BSD-3-Clause"
  9063. ],
  9064. "authors": [
  9065. {
  9066. "name": "Sebastian Bergmann",
  9067. "email": "sebastian@phpunit.de",
  9068. "role": "lead"
  9069. }
  9070. ],
  9071. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9072. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9073. "keywords": [
  9074. "coverage",
  9075. "testing",
  9076. "xunit"
  9077. ],
  9078. "time": "2018-10-31T16:06:48+00:00"
  9079. },
  9080. {
  9081. "name": "phpunit/php-file-iterator",
  9082. "version": "2.0.2",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9086. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  9091. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  9092. "shasum": "",
  9093. "mirrors": [
  9094. {
  9095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9096. "preferred": true
  9097. }
  9098. ]
  9099. },
  9100. "require": {
  9101. "php": "^7.1"
  9102. },
  9103. "require-dev": {
  9104. "phpunit/phpunit": "^7.1"
  9105. },
  9106. "type": "library",
  9107. "extra": {
  9108. "branch-alias": {
  9109. "dev-master": "2.0.x-dev"
  9110. }
  9111. },
  9112. "autoload": {
  9113. "classmap": [
  9114. "src/"
  9115. ]
  9116. },
  9117. "notification-url": "https://packagist.org/downloads/",
  9118. "license": [
  9119. "BSD-3-Clause"
  9120. ],
  9121. "authors": [
  9122. {
  9123. "name": "Sebastian Bergmann",
  9124. "email": "sebastian@phpunit.de",
  9125. "role": "lead"
  9126. }
  9127. ],
  9128. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9129. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9130. "keywords": [
  9131. "filesystem",
  9132. "iterator"
  9133. ],
  9134. "time": "2018-09-13T20:33:42+00:00"
  9135. },
  9136. {
  9137. "name": "phpunit/php-text-template",
  9138. "version": "1.2.1",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9142. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9147. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9148. "shasum": "",
  9149. "mirrors": [
  9150. {
  9151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9152. "preferred": true
  9153. }
  9154. ]
  9155. },
  9156. "require": {
  9157. "php": ">=5.3.3"
  9158. },
  9159. "type": "library",
  9160. "autoload": {
  9161. "classmap": [
  9162. "src/"
  9163. ]
  9164. },
  9165. "notification-url": "https://packagist.org/downloads/",
  9166. "license": [
  9167. "BSD-3-Clause"
  9168. ],
  9169. "authors": [
  9170. {
  9171. "name": "Sebastian Bergmann",
  9172. "role": "lead",
  9173. "email": "sebastian@phpunit.de"
  9174. }
  9175. ],
  9176. "description": "Simple template engine.",
  9177. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9178. "keywords": [
  9179. "template"
  9180. ],
  9181. "time": "2015-06-21T13:50:34+00:00"
  9182. },
  9183. {
  9184. "name": "phpunit/php-timer",
  9185. "version": "2.1.2",
  9186. "source": {
  9187. "type": "git",
  9188. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9189. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  9190. },
  9191. "dist": {
  9192. "type": "zip",
  9193. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  9194. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  9195. "shasum": "",
  9196. "mirrors": [
  9197. {
  9198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9199. "preferred": true
  9200. }
  9201. ]
  9202. },
  9203. "require": {
  9204. "php": "^7.1"
  9205. },
  9206. "require-dev": {
  9207. "phpunit/phpunit": "^7.0"
  9208. },
  9209. "type": "library",
  9210. "extra": {
  9211. "branch-alias": {
  9212. "dev-master": "2.1-dev"
  9213. }
  9214. },
  9215. "autoload": {
  9216. "classmap": [
  9217. "src/"
  9218. ]
  9219. },
  9220. "notification-url": "https://packagist.org/downloads/",
  9221. "license": [
  9222. "BSD-3-Clause"
  9223. ],
  9224. "authors": [
  9225. {
  9226. "name": "Sebastian Bergmann",
  9227. "email": "sebastian@phpunit.de",
  9228. "role": "lead"
  9229. }
  9230. ],
  9231. "description": "Utility class for timing",
  9232. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9233. "keywords": [
  9234. "timer"
  9235. ],
  9236. "time": "2019-06-07T04:22:29+00:00"
  9237. },
  9238. {
  9239. "name": "phpunit/php-token-stream",
  9240. "version": "3.1.1",
  9241. "source": {
  9242. "type": "git",
  9243. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9244. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  9245. },
  9246. "dist": {
  9247. "type": "zip",
  9248. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  9249. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  9250. "shasum": "",
  9251. "mirrors": [
  9252. {
  9253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9254. "preferred": true
  9255. }
  9256. ]
  9257. },
  9258. "require": {
  9259. "ext-tokenizer": "*",
  9260. "php": "^7.1"
  9261. },
  9262. "require-dev": {
  9263. "phpunit/phpunit": "^7.0"
  9264. },
  9265. "type": "library",
  9266. "extra": {
  9267. "branch-alias": {
  9268. "dev-master": "3.1-dev"
  9269. }
  9270. },
  9271. "autoload": {
  9272. "classmap": [
  9273. "src/"
  9274. ]
  9275. },
  9276. "notification-url": "https://packagist.org/downloads/",
  9277. "license": [
  9278. "BSD-3-Clause"
  9279. ],
  9280. "authors": [
  9281. {
  9282. "name": "Sebastian Bergmann",
  9283. "email": "sebastian@phpunit.de"
  9284. }
  9285. ],
  9286. "description": "Wrapper around PHP's tokenizer extension.",
  9287. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9288. "keywords": [
  9289. "tokenizer"
  9290. ],
  9291. "time": "2019-09-17T06:23:10+00:00"
  9292. },
  9293. {
  9294. "name": "phpunit/phpunit",
  9295. "version": "7.5.16",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9299. "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/316afa6888d2562e04aeb67ea7f2017a0eb41661",
  9304. "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661",
  9305. "shasum": "",
  9306. "mirrors": [
  9307. {
  9308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9309. "preferred": true
  9310. }
  9311. ]
  9312. },
  9313. "require": {
  9314. "doctrine/instantiator": "^1.1",
  9315. "ext-dom": "*",
  9316. "ext-json": "*",
  9317. "ext-libxml": "*",
  9318. "ext-mbstring": "*",
  9319. "ext-xml": "*",
  9320. "myclabs/deep-copy": "^1.7",
  9321. "phar-io/manifest": "^1.0.2",
  9322. "phar-io/version": "^2.0",
  9323. "php": "^7.1",
  9324. "phpspec/prophecy": "^1.7",
  9325. "phpunit/php-code-coverage": "^6.0.7",
  9326. "phpunit/php-file-iterator": "^2.0.1",
  9327. "phpunit/php-text-template": "^1.2.1",
  9328. "phpunit/php-timer": "^2.1",
  9329. "sebastian/comparator": "^3.0",
  9330. "sebastian/diff": "^3.0",
  9331. "sebastian/environment": "^4.0",
  9332. "sebastian/exporter": "^3.1",
  9333. "sebastian/global-state": "^2.0",
  9334. "sebastian/object-enumerator": "^3.0.3",
  9335. "sebastian/resource-operations": "^2.0",
  9336. "sebastian/version": "^2.0.1"
  9337. },
  9338. "conflict": {
  9339. "phpunit/phpunit-mock-objects": "*"
  9340. },
  9341. "require-dev": {
  9342. "ext-pdo": "*"
  9343. },
  9344. "suggest": {
  9345. "ext-soap": "*",
  9346. "ext-xdebug": "*",
  9347. "phpunit/php-invoker": "^2.0"
  9348. },
  9349. "bin": [
  9350. "phpunit"
  9351. ],
  9352. "type": "library",
  9353. "extra": {
  9354. "branch-alias": {
  9355. "dev-master": "7.5-dev"
  9356. }
  9357. },
  9358. "autoload": {
  9359. "classmap": [
  9360. "src/"
  9361. ]
  9362. },
  9363. "notification-url": "https://packagist.org/downloads/",
  9364. "license": [
  9365. "BSD-3-Clause"
  9366. ],
  9367. "authors": [
  9368. {
  9369. "name": "Sebastian Bergmann",
  9370. "email": "sebastian@phpunit.de",
  9371. "role": "lead"
  9372. }
  9373. ],
  9374. "description": "The PHP Unit Testing framework.",
  9375. "homepage": "https://phpunit.de/",
  9376. "keywords": [
  9377. "phpunit",
  9378. "testing",
  9379. "xunit"
  9380. ],
  9381. "time": "2019-09-14T09:08:39+00:00"
  9382. },
  9383. {
  9384. "name": "sebastian/code-unit-reverse-lookup",
  9385. "version": "1.0.1",
  9386. "source": {
  9387. "type": "git",
  9388. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9389. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  9390. },
  9391. "dist": {
  9392. "type": "zip",
  9393. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9394. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9395. "shasum": "",
  9396. "mirrors": [
  9397. {
  9398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9399. "preferred": true
  9400. }
  9401. ]
  9402. },
  9403. "require": {
  9404. "php": "^5.6 || ^7.0"
  9405. },
  9406. "require-dev": {
  9407. "phpunit/phpunit": "^5.7 || ^6.0"
  9408. },
  9409. "type": "library",
  9410. "extra": {
  9411. "branch-alias": {
  9412. "dev-master": "1.0.x-dev"
  9413. }
  9414. },
  9415. "autoload": {
  9416. "classmap": [
  9417. "src/"
  9418. ]
  9419. },
  9420. "notification-url": "https://packagist.org/downloads/",
  9421. "license": [
  9422. "BSD-3-Clause"
  9423. ],
  9424. "authors": [
  9425. {
  9426. "name": "Sebastian Bergmann",
  9427. "email": "sebastian@phpunit.de"
  9428. }
  9429. ],
  9430. "description": "Looks up which function or method a line of code belongs to",
  9431. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9432. "time": "2017-03-04T06:30:41+00:00"
  9433. },
  9434. {
  9435. "name": "sebastian/comparator",
  9436. "version": "3.0.2",
  9437. "source": {
  9438. "type": "git",
  9439. "url": "https://github.com/sebastianbergmann/comparator.git",
  9440. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  9441. },
  9442. "dist": {
  9443. "type": "zip",
  9444. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9445. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9446. "shasum": "",
  9447. "mirrors": [
  9448. {
  9449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9450. "preferred": true
  9451. }
  9452. ]
  9453. },
  9454. "require": {
  9455. "php": "^7.1",
  9456. "sebastian/diff": "^3.0",
  9457. "sebastian/exporter": "^3.1"
  9458. },
  9459. "require-dev": {
  9460. "phpunit/phpunit": "^7.1"
  9461. },
  9462. "type": "library",
  9463. "extra": {
  9464. "branch-alias": {
  9465. "dev-master": "3.0-dev"
  9466. }
  9467. },
  9468. "autoload": {
  9469. "classmap": [
  9470. "src/"
  9471. ]
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "BSD-3-Clause"
  9476. ],
  9477. "authors": [
  9478. {
  9479. "name": "Jeff Welch",
  9480. "email": "whatthejeff@gmail.com"
  9481. },
  9482. {
  9483. "name": "Volker Dusch",
  9484. "email": "github@wallbash.com"
  9485. },
  9486. {
  9487. "name": "Bernhard Schussek",
  9488. "email": "bschussek@2bepublished.at"
  9489. },
  9490. {
  9491. "name": "Sebastian Bergmann",
  9492. "email": "sebastian@phpunit.de"
  9493. }
  9494. ],
  9495. "description": "Provides the functionality to compare PHP values for equality",
  9496. "homepage": "https://github.com/sebastianbergmann/comparator",
  9497. "keywords": [
  9498. "comparator",
  9499. "compare",
  9500. "equality"
  9501. ],
  9502. "time": "2018-07-12T15:12:46+00:00"
  9503. },
  9504. {
  9505. "name": "sebastian/diff",
  9506. "version": "3.0.2",
  9507. "source": {
  9508. "type": "git",
  9509. "url": "https://github.com/sebastianbergmann/diff.git",
  9510. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  9511. },
  9512. "dist": {
  9513. "type": "zip",
  9514. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9515. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9516. "shasum": "",
  9517. "mirrors": [
  9518. {
  9519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9520. "preferred": true
  9521. }
  9522. ]
  9523. },
  9524. "require": {
  9525. "php": "^7.1"
  9526. },
  9527. "require-dev": {
  9528. "phpunit/phpunit": "^7.5 || ^8.0",
  9529. "symfony/process": "^2 || ^3.3 || ^4"
  9530. },
  9531. "type": "library",
  9532. "extra": {
  9533. "branch-alias": {
  9534. "dev-master": "3.0-dev"
  9535. }
  9536. },
  9537. "autoload": {
  9538. "classmap": [
  9539. "src/"
  9540. ]
  9541. },
  9542. "notification-url": "https://packagist.org/downloads/",
  9543. "license": [
  9544. "BSD-3-Clause"
  9545. ],
  9546. "authors": [
  9547. {
  9548. "name": "Kore Nordmann",
  9549. "email": "mail@kore-nordmann.de"
  9550. },
  9551. {
  9552. "name": "Sebastian Bergmann",
  9553. "email": "sebastian@phpunit.de"
  9554. }
  9555. ],
  9556. "description": "Diff implementation",
  9557. "homepage": "https://github.com/sebastianbergmann/diff",
  9558. "keywords": [
  9559. "diff",
  9560. "udiff",
  9561. "unidiff",
  9562. "unified diff"
  9563. ],
  9564. "time": "2019-02-04T06:01:07+00:00"
  9565. },
  9566. {
  9567. "name": "sebastian/environment",
  9568. "version": "4.2.2",
  9569. "source": {
  9570. "type": "git",
  9571. "url": "https://github.com/sebastianbergmann/environment.git",
  9572. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404"
  9573. },
  9574. "dist": {
  9575. "type": "zip",
  9576. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  9577. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  9578. "shasum": "",
  9579. "mirrors": [
  9580. {
  9581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9582. "preferred": true
  9583. }
  9584. ]
  9585. },
  9586. "require": {
  9587. "php": "^7.1"
  9588. },
  9589. "require-dev": {
  9590. "phpunit/phpunit": "^7.5"
  9591. },
  9592. "suggest": {
  9593. "ext-posix": "*"
  9594. },
  9595. "type": "library",
  9596. "extra": {
  9597. "branch-alias": {
  9598. "dev-master": "4.2-dev"
  9599. }
  9600. },
  9601. "autoload": {
  9602. "classmap": [
  9603. "src/"
  9604. ]
  9605. },
  9606. "notification-url": "https://packagist.org/downloads/",
  9607. "license": [
  9608. "BSD-3-Clause"
  9609. ],
  9610. "authors": [
  9611. {
  9612. "name": "Sebastian Bergmann",
  9613. "email": "sebastian@phpunit.de"
  9614. }
  9615. ],
  9616. "description": "Provides functionality to handle HHVM/PHP environments",
  9617. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9618. "keywords": [
  9619. "Xdebug",
  9620. "environment",
  9621. "hhvm"
  9622. ],
  9623. "time": "2019-05-05T09:05:15+00:00"
  9624. },
  9625. {
  9626. "name": "sebastian/exporter",
  9627. "version": "3.1.2",
  9628. "source": {
  9629. "type": "git",
  9630. "url": "https://github.com/sebastianbergmann/exporter.git",
  9631. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  9632. },
  9633. "dist": {
  9634. "type": "zip",
  9635. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9636. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9637. "shasum": "",
  9638. "mirrors": [
  9639. {
  9640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9641. "preferred": true
  9642. }
  9643. ]
  9644. },
  9645. "require": {
  9646. "php": "^7.0",
  9647. "sebastian/recursion-context": "^3.0"
  9648. },
  9649. "require-dev": {
  9650. "ext-mbstring": "*",
  9651. "phpunit/phpunit": "^6.0"
  9652. },
  9653. "type": "library",
  9654. "extra": {
  9655. "branch-alias": {
  9656. "dev-master": "3.1.x-dev"
  9657. }
  9658. },
  9659. "autoload": {
  9660. "classmap": [
  9661. "src/"
  9662. ]
  9663. },
  9664. "notification-url": "https://packagist.org/downloads/",
  9665. "license": [
  9666. "BSD-3-Clause"
  9667. ],
  9668. "authors": [
  9669. {
  9670. "name": "Sebastian Bergmann",
  9671. "email": "sebastian@phpunit.de"
  9672. },
  9673. {
  9674. "name": "Jeff Welch",
  9675. "email": "whatthejeff@gmail.com"
  9676. },
  9677. {
  9678. "name": "Volker Dusch",
  9679. "email": "github@wallbash.com"
  9680. },
  9681. {
  9682. "name": "Adam Harvey",
  9683. "email": "aharvey@php.net"
  9684. },
  9685. {
  9686. "name": "Bernhard Schussek",
  9687. "email": "bschussek@gmail.com"
  9688. }
  9689. ],
  9690. "description": "Provides the functionality to export PHP variables for visualization",
  9691. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9692. "keywords": [
  9693. "export",
  9694. "exporter"
  9695. ],
  9696. "time": "2019-09-14T09:02:43+00:00"
  9697. },
  9698. {
  9699. "name": "sebastian/global-state",
  9700. "version": "2.0.0",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/sebastianbergmann/global-state.git",
  9704. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  9709. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  9710. "shasum": "",
  9711. "mirrors": [
  9712. {
  9713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9714. "preferred": true
  9715. }
  9716. ]
  9717. },
  9718. "require": {
  9719. "php": "^7.0"
  9720. },
  9721. "require-dev": {
  9722. "phpunit/phpunit": "^6.0"
  9723. },
  9724. "suggest": {
  9725. "ext-uopz": "*"
  9726. },
  9727. "type": "library",
  9728. "extra": {
  9729. "branch-alias": {
  9730. "dev-master": "2.0-dev"
  9731. }
  9732. },
  9733. "autoload": {
  9734. "classmap": [
  9735. "src/"
  9736. ]
  9737. },
  9738. "notification-url": "https://packagist.org/downloads/",
  9739. "license": [
  9740. "BSD-3-Clause"
  9741. ],
  9742. "authors": [
  9743. {
  9744. "name": "Sebastian Bergmann",
  9745. "email": "sebastian@phpunit.de"
  9746. }
  9747. ],
  9748. "description": "Snapshotting of global state",
  9749. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9750. "keywords": [
  9751. "global state"
  9752. ],
  9753. "time": "2017-04-27T15:39:26+00:00"
  9754. },
  9755. {
  9756. "name": "sebastian/object-enumerator",
  9757. "version": "3.0.3",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9761. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9766. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9767. "shasum": "",
  9768. "mirrors": [
  9769. {
  9770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9771. "preferred": true
  9772. }
  9773. ]
  9774. },
  9775. "require": {
  9776. "php": "^7.0",
  9777. "sebastian/object-reflector": "^1.1.1",
  9778. "sebastian/recursion-context": "^3.0"
  9779. },
  9780. "require-dev": {
  9781. "phpunit/phpunit": "^6.0"
  9782. },
  9783. "type": "library",
  9784. "extra": {
  9785. "branch-alias": {
  9786. "dev-master": "3.0.x-dev"
  9787. }
  9788. },
  9789. "autoload": {
  9790. "classmap": [
  9791. "src/"
  9792. ]
  9793. },
  9794. "notification-url": "https://packagist.org/downloads/",
  9795. "license": [
  9796. "BSD-3-Clause"
  9797. ],
  9798. "authors": [
  9799. {
  9800. "name": "Sebastian Bergmann",
  9801. "email": "sebastian@phpunit.de"
  9802. }
  9803. ],
  9804. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9805. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9806. "time": "2017-08-03T12:35:26+00:00"
  9807. },
  9808. {
  9809. "name": "sebastian/object-reflector",
  9810. "version": "1.1.1",
  9811. "source": {
  9812. "type": "git",
  9813. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9814. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9815. },
  9816. "dist": {
  9817. "type": "zip",
  9818. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9819. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9820. "shasum": "",
  9821. "mirrors": [
  9822. {
  9823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9824. "preferred": true
  9825. }
  9826. ]
  9827. },
  9828. "require": {
  9829. "php": "^7.0"
  9830. },
  9831. "require-dev": {
  9832. "phpunit/phpunit": "^6.0"
  9833. },
  9834. "type": "library",
  9835. "extra": {
  9836. "branch-alias": {
  9837. "dev-master": "1.1-dev"
  9838. }
  9839. },
  9840. "autoload": {
  9841. "classmap": [
  9842. "src/"
  9843. ]
  9844. },
  9845. "notification-url": "https://packagist.org/downloads/",
  9846. "license": [
  9847. "BSD-3-Clause"
  9848. ],
  9849. "authors": [
  9850. {
  9851. "name": "Sebastian Bergmann",
  9852. "email": "sebastian@phpunit.de"
  9853. }
  9854. ],
  9855. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9856. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9857. "time": "2017-03-29T09:07:27+00:00"
  9858. },
  9859. {
  9860. "name": "sebastian/recursion-context",
  9861. "version": "3.0.0",
  9862. "source": {
  9863. "type": "git",
  9864. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9865. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  9866. },
  9867. "dist": {
  9868. "type": "zip",
  9869. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9870. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9871. "shasum": "",
  9872. "mirrors": [
  9873. {
  9874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9875. "preferred": true
  9876. }
  9877. ]
  9878. },
  9879. "require": {
  9880. "php": "^7.0"
  9881. },
  9882. "require-dev": {
  9883. "phpunit/phpunit": "^6.0"
  9884. },
  9885. "type": "library",
  9886. "extra": {
  9887. "branch-alias": {
  9888. "dev-master": "3.0.x-dev"
  9889. }
  9890. },
  9891. "autoload": {
  9892. "classmap": [
  9893. "src/"
  9894. ]
  9895. },
  9896. "notification-url": "https://packagist.org/downloads/",
  9897. "license": [
  9898. "BSD-3-Clause"
  9899. ],
  9900. "authors": [
  9901. {
  9902. "name": "Jeff Welch",
  9903. "email": "whatthejeff@gmail.com"
  9904. },
  9905. {
  9906. "name": "Sebastian Bergmann",
  9907. "email": "sebastian@phpunit.de"
  9908. },
  9909. {
  9910. "name": "Adam Harvey",
  9911. "email": "aharvey@php.net"
  9912. }
  9913. ],
  9914. "description": "Provides functionality to recursively process PHP variables",
  9915. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9916. "time": "2017-03-03T06:23:57+00:00"
  9917. },
  9918. {
  9919. "name": "sebastian/resource-operations",
  9920. "version": "2.0.1",
  9921. "source": {
  9922. "type": "git",
  9923. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9924. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  9925. },
  9926. "dist": {
  9927. "type": "zip",
  9928. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9929. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9930. "shasum": "",
  9931. "mirrors": [
  9932. {
  9933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9934. "preferred": true
  9935. }
  9936. ]
  9937. },
  9938. "require": {
  9939. "php": "^7.1"
  9940. },
  9941. "type": "library",
  9942. "extra": {
  9943. "branch-alias": {
  9944. "dev-master": "2.0-dev"
  9945. }
  9946. },
  9947. "autoload": {
  9948. "classmap": [
  9949. "src/"
  9950. ]
  9951. },
  9952. "notification-url": "https://packagist.org/downloads/",
  9953. "license": [
  9954. "BSD-3-Clause"
  9955. ],
  9956. "authors": [
  9957. {
  9958. "name": "Sebastian Bergmann",
  9959. "email": "sebastian@phpunit.de"
  9960. }
  9961. ],
  9962. "description": "Provides a list of PHP built-in functions that operate on resources",
  9963. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9964. "time": "2018-10-04T04:07:39+00:00"
  9965. },
  9966. {
  9967. "name": "sebastian/version",
  9968. "version": "2.0.1",
  9969. "source": {
  9970. "type": "git",
  9971. "url": "https://github.com/sebastianbergmann/version.git",
  9972. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9973. },
  9974. "dist": {
  9975. "type": "zip",
  9976. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9977. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9978. "shasum": "",
  9979. "mirrors": [
  9980. {
  9981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9982. "preferred": true
  9983. }
  9984. ]
  9985. },
  9986. "require": {
  9987. "php": ">=5.6"
  9988. },
  9989. "type": "library",
  9990. "extra": {
  9991. "branch-alias": {
  9992. "dev-master": "2.0.x-dev"
  9993. }
  9994. },
  9995. "autoload": {
  9996. "classmap": [
  9997. "src/"
  9998. ]
  9999. },
  10000. "notification-url": "https://packagist.org/downloads/",
  10001. "license": [
  10002. "BSD-3-Clause"
  10003. ],
  10004. "authors": [
  10005. {
  10006. "name": "Sebastian Bergmann",
  10007. "role": "lead",
  10008. "email": "sebastian@phpunit.de"
  10009. }
  10010. ],
  10011. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10012. "homepage": "https://github.com/sebastianbergmann/version",
  10013. "time": "2016-10-03T07:35:21+00:00"
  10014. },
  10015. {
  10016. "name": "seld/jsonlint",
  10017. "version": "1.7.1",
  10018. "source": {
  10019. "type": "git",
  10020. "url": "https://github.com/Seldaek/jsonlint.git",
  10021. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38"
  10022. },
  10023. "dist": {
  10024. "type": "zip",
  10025. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/d15f59a67ff805a44c50ea0516d2341740f81a38",
  10026. "reference": "d15f59a67ff805a44c50ea0516d2341740f81a38",
  10027. "shasum": "",
  10028. "mirrors": [
  10029. {
  10030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10031. "preferred": true
  10032. }
  10033. ]
  10034. },
  10035. "require": {
  10036. "php": "^5.3 || ^7.0"
  10037. },
  10038. "require-dev": {
  10039. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10040. },
  10041. "bin": [
  10042. "bin/jsonlint"
  10043. ],
  10044. "type": "library",
  10045. "autoload": {
  10046. "psr-4": {
  10047. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10048. }
  10049. },
  10050. "notification-url": "https://packagist.org/downloads/",
  10051. "license": [
  10052. "MIT"
  10053. ],
  10054. "authors": [
  10055. {
  10056. "name": "Jordi Boggiano",
  10057. "email": "j.boggiano@seld.be",
  10058. "homepage": "http://seld.be"
  10059. }
  10060. ],
  10061. "description": "JSON Linter",
  10062. "keywords": [
  10063. "json",
  10064. "linter",
  10065. "parser",
  10066. "validator"
  10067. ],
  10068. "time": "2018-01-24T12:46:19+00:00"
  10069. },
  10070. {
  10071. "name": "seld/phar-utils",
  10072. "version": "1.0.1",
  10073. "source": {
  10074. "type": "git",
  10075. "url": "https://github.com/Seldaek/phar-utils.git",
  10076. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a"
  10077. },
  10078. "dist": {
  10079. "type": "zip",
  10080. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/7009b5139491975ef6486545a39f3e6dad5ac30a",
  10081. "reference": "7009b5139491975ef6486545a39f3e6dad5ac30a",
  10082. "shasum": "",
  10083. "mirrors": [
  10084. {
  10085. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10086. "preferred": true
  10087. }
  10088. ]
  10089. },
  10090. "require": {
  10091. "php": ">=5.3"
  10092. },
  10093. "type": "library",
  10094. "extra": {
  10095. "branch-alias": {
  10096. "dev-master": "1.x-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "psr-4": {
  10101. "Seld\\PharUtils\\": "src/"
  10102. }
  10103. },
  10104. "notification-url": "https://packagist.org/downloads/",
  10105. "license": [
  10106. "MIT"
  10107. ],
  10108. "authors": [
  10109. {
  10110. "name": "Jordi Boggiano",
  10111. "email": "j.boggiano@seld.be"
  10112. }
  10113. ],
  10114. "description": "PHAR file format utilities, for when PHP phars you up",
  10115. "keywords": [
  10116. "phra"
  10117. ],
  10118. "time": "2015-10-13T18:44:15+00:00"
  10119. },
  10120. {
  10121. "name": "squizlabs/php_codesniffer",
  10122. "version": "3.5.1",
  10123. "source": {
  10124. "type": "git",
  10125. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  10126. "reference": "82cd0f854ceca17731d6d019c7098e3755c45060"
  10127. },
  10128. "dist": {
  10129. "type": "zip",
  10130. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/82cd0f854ceca17731d6d019c7098e3755c45060",
  10131. "reference": "82cd0f854ceca17731d6d019c7098e3755c45060",
  10132. "shasum": "",
  10133. "mirrors": [
  10134. {
  10135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10136. "preferred": true
  10137. }
  10138. ]
  10139. },
  10140. "require": {
  10141. "ext-simplexml": "*",
  10142. "ext-tokenizer": "*",
  10143. "ext-xmlwriter": "*",
  10144. "php": ">=5.4.0"
  10145. },
  10146. "require-dev": {
  10147. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  10148. },
  10149. "bin": [
  10150. "bin/phpcs",
  10151. "bin/phpcbf"
  10152. ],
  10153. "type": "library",
  10154. "extra": {
  10155. "branch-alias": {
  10156. "dev-master": "3.x-dev"
  10157. }
  10158. },
  10159. "notification-url": "https://packagist.org/downloads/",
  10160. "license": [
  10161. "BSD-3-Clause"
  10162. ],
  10163. "authors": [
  10164. {
  10165. "name": "Greg Sherwood",
  10166. "role": "lead"
  10167. }
  10168. ],
  10169. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  10170. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  10171. "keywords": [
  10172. "phpcs",
  10173. "standards"
  10174. ],
  10175. "time": "2019-10-16T21:14:26+00:00"
  10176. },
  10177. {
  10178. "name": "symfony/config",
  10179. "version": "v4.3.5",
  10180. "source": {
  10181. "type": "git",
  10182. "url": "https://github.com/symfony/config.git",
  10183. "reference": "0acb26407a9e1a64a275142f0ae5e36436342720"
  10184. },
  10185. "dist": {
  10186. "type": "zip",
  10187. "url": "https://api.github.com/repos/symfony/config/zipball/0acb26407a9e1a64a275142f0ae5e36436342720",
  10188. "reference": "0acb26407a9e1a64a275142f0ae5e36436342720",
  10189. "shasum": "",
  10190. "mirrors": [
  10191. {
  10192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10193. "preferred": true
  10194. }
  10195. ]
  10196. },
  10197. "require": {
  10198. "php": "^7.1.3",
  10199. "symfony/filesystem": "~3.4|~4.0",
  10200. "symfony/polyfill-ctype": "~1.8"
  10201. },
  10202. "conflict": {
  10203. "symfony/finder": "<3.4"
  10204. },
  10205. "require-dev": {
  10206. "symfony/dependency-injection": "~3.4|~4.0",
  10207. "symfony/event-dispatcher": "~3.4|~4.0",
  10208. "symfony/finder": "~3.4|~4.0",
  10209. "symfony/messenger": "~4.1",
  10210. "symfony/yaml": "~3.4|~4.0"
  10211. },
  10212. "suggest": {
  10213. "symfony/yaml": "To use the yaml reference dumper"
  10214. },
  10215. "type": "library",
  10216. "extra": {
  10217. "branch-alias": {
  10218. "dev-master": "4.3-dev"
  10219. }
  10220. },
  10221. "autoload": {
  10222. "psr-4": {
  10223. "Symfony\\Component\\Config\\": ""
  10224. },
  10225. "exclude-from-classmap": [
  10226. "/Tests/"
  10227. ]
  10228. },
  10229. "notification-url": "https://packagist.org/downloads/",
  10230. "license": [
  10231. "MIT"
  10232. ],
  10233. "authors": [
  10234. {
  10235. "name": "Fabien Potencier",
  10236. "email": "fabien@symfony.com"
  10237. },
  10238. {
  10239. "name": "Symfony Community",
  10240. "homepage": "https://symfony.com/contributors"
  10241. }
  10242. ],
  10243. "description": "Symfony Config Component",
  10244. "homepage": "https://symfony.com",
  10245. "time": "2019-09-19T15:51:53+00:00"
  10246. },
  10247. {
  10248. "name": "symfony/dependency-injection",
  10249. "version": "v4.3.5",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/symfony/dependency-injection.git",
  10253. "reference": "e1e0762a814b957a1092bff75a550db49724d05b"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e1e0762a814b957a1092bff75a550db49724d05b",
  10258. "reference": "e1e0762a814b957a1092bff75a550db49724d05b",
  10259. "shasum": "",
  10260. "mirrors": [
  10261. {
  10262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10263. "preferred": true
  10264. }
  10265. ]
  10266. },
  10267. "require": {
  10268. "php": "^7.1.3",
  10269. "psr/container": "^1.0",
  10270. "symfony/service-contracts": "^1.1.6"
  10271. },
  10272. "conflict": {
  10273. "symfony/config": "<4.3",
  10274. "symfony/finder": "<3.4",
  10275. "symfony/proxy-manager-bridge": "<3.4",
  10276. "symfony/yaml": "<3.4"
  10277. },
  10278. "provide": {
  10279. "psr/container-implementation": "1.0",
  10280. "symfony/service-implementation": "1.0"
  10281. },
  10282. "require-dev": {
  10283. "symfony/config": "^4.3",
  10284. "symfony/expression-language": "~3.4|~4.0",
  10285. "symfony/yaml": "~3.4|~4.0"
  10286. },
  10287. "suggest": {
  10288. "symfony/config": "",
  10289. "symfony/expression-language": "For using expressions in service container configuration",
  10290. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  10291. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  10292. "symfony/yaml": ""
  10293. },
  10294. "type": "library",
  10295. "extra": {
  10296. "branch-alias": {
  10297. "dev-master": "4.3-dev"
  10298. }
  10299. },
  10300. "autoload": {
  10301. "psr-4": {
  10302. "Symfony\\Component\\DependencyInjection\\": ""
  10303. },
  10304. "exclude-from-classmap": [
  10305. "/Tests/"
  10306. ]
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "MIT"
  10311. ],
  10312. "authors": [
  10313. {
  10314. "name": "Fabien Potencier",
  10315. "email": "fabien@symfony.com"
  10316. },
  10317. {
  10318. "name": "Symfony Community",
  10319. "homepage": "https://symfony.com/contributors"
  10320. }
  10321. ],
  10322. "description": "Symfony DependencyInjection Component",
  10323. "homepage": "https://symfony.com",
  10324. "time": "2019-10-02T12:58:58+00:00"
  10325. },
  10326. {
  10327. "name": "symfony/filesystem",
  10328. "version": "v4.3.5",
  10329. "source": {
  10330. "type": "git",
  10331. "url": "https://github.com/symfony/filesystem.git",
  10332. "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263"
  10333. },
  10334. "dist": {
  10335. "type": "zip",
  10336. "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263",
  10337. "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263",
  10338. "shasum": "",
  10339. "mirrors": [
  10340. {
  10341. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10342. "preferred": true
  10343. }
  10344. ]
  10345. },
  10346. "require": {
  10347. "php": "^7.1.3",
  10348. "symfony/polyfill-ctype": "~1.8"
  10349. },
  10350. "type": "library",
  10351. "extra": {
  10352. "branch-alias": {
  10353. "dev-master": "4.3-dev"
  10354. }
  10355. },
  10356. "autoload": {
  10357. "psr-4": {
  10358. "Symfony\\Component\\Filesystem\\": ""
  10359. },
  10360. "exclude-from-classmap": [
  10361. "/Tests/"
  10362. ]
  10363. },
  10364. "notification-url": "https://packagist.org/downloads/",
  10365. "license": [
  10366. "MIT"
  10367. ],
  10368. "authors": [
  10369. {
  10370. "name": "Fabien Potencier",
  10371. "email": "fabien@symfony.com"
  10372. },
  10373. {
  10374. "name": "Symfony Community",
  10375. "homepage": "https://symfony.com/contributors"
  10376. }
  10377. ],
  10378. "description": "Symfony Filesystem Component",
  10379. "homepage": "https://symfony.com",
  10380. "time": "2019-08-20T14:07:54+00:00"
  10381. },
  10382. {
  10383. "name": "symfony/options-resolver",
  10384. "version": "v4.3.5",
  10385. "source": {
  10386. "type": "git",
  10387. "url": "https://github.com/symfony/options-resolver.git",
  10388. "reference": "81c2e120522a42f623233968244baebd6b36cb6a"
  10389. },
  10390. "dist": {
  10391. "type": "zip",
  10392. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/81c2e120522a42f623233968244baebd6b36cb6a",
  10393. "reference": "81c2e120522a42f623233968244baebd6b36cb6a",
  10394. "shasum": "",
  10395. "mirrors": [
  10396. {
  10397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10398. "preferred": true
  10399. }
  10400. ]
  10401. },
  10402. "require": {
  10403. "php": "^7.1.3"
  10404. },
  10405. "type": "library",
  10406. "extra": {
  10407. "branch-alias": {
  10408. "dev-master": "4.3-dev"
  10409. }
  10410. },
  10411. "autoload": {
  10412. "psr-4": {
  10413. "Symfony\\Component\\OptionsResolver\\": ""
  10414. },
  10415. "exclude-from-classmap": [
  10416. "/Tests/"
  10417. ]
  10418. },
  10419. "notification-url": "https://packagist.org/downloads/",
  10420. "license": [
  10421. "MIT"
  10422. ],
  10423. "authors": [
  10424. {
  10425. "name": "Fabien Potencier",
  10426. "email": "fabien@symfony.com"
  10427. },
  10428. {
  10429. "name": "Symfony Community",
  10430. "homepage": "https://symfony.com/contributors"
  10431. }
  10432. ],
  10433. "description": "Symfony OptionsResolver Component",
  10434. "homepage": "https://symfony.com",
  10435. "keywords": [
  10436. "config",
  10437. "configuration",
  10438. "options"
  10439. ],
  10440. "time": "2019-08-08T09:29:19+00:00"
  10441. },
  10442. {
  10443. "name": "symfony/thanks",
  10444. "version": "v1.1.0",
  10445. "source": {
  10446. "type": "git",
  10447. "url": "https://github.com/symfony/thanks.git",
  10448. "reference": "9474a631b52737c623b6aeba22f00bbc003251da"
  10449. },
  10450. "dist": {
  10451. "type": "zip",
  10452. "url": "https://api.github.com/repos/symfony/thanks/zipball/9474a631b52737c623b6aeba22f00bbc003251da",
  10453. "reference": "9474a631b52737c623b6aeba22f00bbc003251da",
  10454. "shasum": "",
  10455. "mirrors": [
  10456. {
  10457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10458. "preferred": true
  10459. }
  10460. ]
  10461. },
  10462. "require": {
  10463. "composer-plugin-api": "^1.0",
  10464. "php": "^5.5.9|^7.0.0"
  10465. },
  10466. "type": "composer-plugin",
  10467. "extra": {
  10468. "branch-alias": {
  10469. "dev-master": "1.0-dev"
  10470. },
  10471. "class": "Symfony\\Thanks\\Thanks"
  10472. },
  10473. "autoload": {
  10474. "psr-4": {
  10475. "Symfony\\Thanks\\": "src"
  10476. }
  10477. },
  10478. "notification-url": "https://packagist.org/downloads/",
  10479. "license": [
  10480. "MIT"
  10481. ],
  10482. "authors": [
  10483. {
  10484. "name": "Nicolas Grekas",
  10485. "email": "p@tchwork.com"
  10486. }
  10487. ],
  10488. "description": "Give thanks (in the form of a GitHub ⭐) to your fellow PHP package maintainers (not limited to Symfony components)!",
  10489. "time": "2018-08-24T14:08:13+00:00"
  10490. },
  10491. {
  10492. "name": "symfony/yaml",
  10493. "version": "v4.3.5",
  10494. "source": {
  10495. "type": "git",
  10496. "url": "https://github.com/symfony/yaml.git",
  10497. "reference": "41e16350a2a1c7383c4735aa2f9fce74cf3d1178"
  10498. },
  10499. "dist": {
  10500. "type": "zip",
  10501. "url": "https://api.github.com/repos/symfony/yaml/zipball/41e16350a2a1c7383c4735aa2f9fce74cf3d1178",
  10502. "reference": "41e16350a2a1c7383c4735aa2f9fce74cf3d1178",
  10503. "shasum": "",
  10504. "mirrors": [
  10505. {
  10506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10507. "preferred": true
  10508. }
  10509. ]
  10510. },
  10511. "require": {
  10512. "php": "^7.1.3",
  10513. "symfony/polyfill-ctype": "~1.8"
  10514. },
  10515. "conflict": {
  10516. "symfony/console": "<3.4"
  10517. },
  10518. "require-dev": {
  10519. "symfony/console": "~3.4|~4.0"
  10520. },
  10521. "suggest": {
  10522. "symfony/console": "For validating YAML files using the lint command"
  10523. },
  10524. "type": "library",
  10525. "extra": {
  10526. "branch-alias": {
  10527. "dev-master": "4.3-dev"
  10528. }
  10529. },
  10530. "autoload": {
  10531. "psr-4": {
  10532. "Symfony\\Component\\Yaml\\": ""
  10533. },
  10534. "exclude-from-classmap": [
  10535. "/Tests/"
  10536. ]
  10537. },
  10538. "notification-url": "https://packagist.org/downloads/",
  10539. "license": [
  10540. "MIT"
  10541. ],
  10542. "authors": [
  10543. {
  10544. "name": "Fabien Potencier",
  10545. "email": "fabien@symfony.com"
  10546. },
  10547. {
  10548. "name": "Symfony Community",
  10549. "homepage": "https://symfony.com/contributors"
  10550. }
  10551. ],
  10552. "description": "Symfony Yaml Component",
  10553. "homepage": "https://symfony.com",
  10554. "time": "2019-09-11T15:41:19+00:00"
  10555. },
  10556. {
  10557. "name": "theseer/tokenizer",
  10558. "version": "1.1.3",
  10559. "source": {
  10560. "type": "git",
  10561. "url": "https://github.com/theseer/tokenizer.git",
  10562. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  10563. },
  10564. "dist": {
  10565. "type": "zip",
  10566. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10567. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10568. "shasum": "",
  10569. "mirrors": [
  10570. {
  10571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10572. "preferred": true
  10573. }
  10574. ]
  10575. },
  10576. "require": {
  10577. "ext-dom": "*",
  10578. "ext-tokenizer": "*",
  10579. "ext-xmlwriter": "*",
  10580. "php": "^7.0"
  10581. },
  10582. "type": "library",
  10583. "autoload": {
  10584. "classmap": [
  10585. "src/"
  10586. ]
  10587. },
  10588. "notification-url": "https://packagist.org/downloads/",
  10589. "license": [
  10590. "BSD-3-Clause"
  10591. ],
  10592. "authors": [
  10593. {
  10594. "name": "Arne Blankerts",
  10595. "email": "arne@blankerts.de",
  10596. "role": "Developer"
  10597. }
  10598. ],
  10599. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10600. "time": "2019-06-13T22:48:21+00:00"
  10601. },
  10602. {
  10603. "name": "webmozart/assert",
  10604. "version": "1.5.0",
  10605. "source": {
  10606. "type": "git",
  10607. "url": "https://github.com/webmozart/assert.git",
  10608. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  10609. },
  10610. "dist": {
  10611. "type": "zip",
  10612. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  10613. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  10614. "shasum": "",
  10615. "mirrors": [
  10616. {
  10617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10618. "preferred": true
  10619. }
  10620. ]
  10621. },
  10622. "require": {
  10623. "php": "^5.3.3 || ^7.0",
  10624. "symfony/polyfill-ctype": "^1.8"
  10625. },
  10626. "require-dev": {
  10627. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10628. },
  10629. "type": "library",
  10630. "extra": {
  10631. "branch-alias": {
  10632. "dev-master": "1.3-dev"
  10633. }
  10634. },
  10635. "autoload": {
  10636. "psr-4": {
  10637. "Webmozart\\Assert\\": "src/"
  10638. }
  10639. },
  10640. "notification-url": "https://packagist.org/downloads/",
  10641. "license": [
  10642. "MIT"
  10643. ],
  10644. "authors": [
  10645. {
  10646. "name": "Bernhard Schussek",
  10647. "email": "bschussek@gmail.com"
  10648. }
  10649. ],
  10650. "description": "Assertions to validate method input/output with nice error messages.",
  10651. "keywords": [
  10652. "assert",
  10653. "check",
  10654. "validate"
  10655. ],
  10656. "time": "2019-08-24T08:43:50+00:00"
  10657. },
  10658. {
  10659. "name": "xethron/laravel-4-generators",
  10660. "version": "3.1.1",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/Xethron/Laravel-4-Generators.git",
  10664. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/Xethron/Laravel-4-Generators/zipball/526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  10669. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  10670. "shasum": "",
  10671. "mirrors": [
  10672. {
  10673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10674. "preferred": true
  10675. }
  10676. ]
  10677. },
  10678. "require": {
  10679. "illuminate/support": "~5.0",
  10680. "php": ">=5.4.0"
  10681. },
  10682. "require-dev": {
  10683. "behat/behat": "~2.5.1",
  10684. "behat/mink": "~1.5.0",
  10685. "behat/mink-extension": "~1.2.0",
  10686. "behat/mink-goutte-driver": "~1.0.9",
  10687. "behat/mink-selenium2-driver": "~1.1.1",
  10688. "phpspec/phpspec": "~2.0",
  10689. "phpunit/phpunit": "~3.7"
  10690. },
  10691. "type": "library",
  10692. "autoload": {
  10693. "psr-0": {
  10694. "Way\\Generators": "src/"
  10695. }
  10696. },
  10697. "notification-url": "https://packagist.org/downloads/",
  10698. "license": [
  10699. "MIT"
  10700. ],
  10701. "authors": [
  10702. {
  10703. "name": "Jeffrey Way",
  10704. "email": "jeffrey@jeffrey-way.com"
  10705. }
  10706. ],
  10707. "description": "Rapidly generate resources, migrations, models, and much more.",
  10708. "time": "2017-02-23T11:20:49+00:00"
  10709. },
  10710. {
  10711. "name": "xethron/migrations-generator",
  10712. "version": "v2.0.2",
  10713. "source": {
  10714. "type": "git",
  10715. "url": "https://github.com/Xethron/migrations-generator.git",
  10716. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b"
  10717. },
  10718. "dist": {
  10719. "type": "zip",
  10720. "url": "https://api.github.com/repos/Xethron/migrations-generator/zipball/a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  10721. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  10722. "shasum": "",
  10723. "mirrors": [
  10724. {
  10725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10726. "preferred": true
  10727. }
  10728. ]
  10729. },
  10730. "require": {
  10731. "doctrine/dbal": "~2.4",
  10732. "illuminate/support": ">=4.1",
  10733. "php": ">=5.4.0",
  10734. "xethron/laravel-4-generators": "~3.1.0"
  10735. },
  10736. "require-dev": {
  10737. "illuminate/cache": ">=4.1.0",
  10738. "illuminate/console": ">=4.1.0",
  10739. "mockery/mockery": ">=0.9.0",
  10740. "phpunit/phpunit": ">=4.0.0"
  10741. },
  10742. "type": "library",
  10743. "extra": {
  10744. "laravel": {
  10745. "providers": [
  10746. "Way\\Generators\\GeneratorsServiceProvider",
  10747. "Xethron\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
  10748. ]
  10749. }
  10750. },
  10751. "autoload": {
  10752. "psr-0": {
  10753. "Xethron\\MigrationsGenerator": "src/"
  10754. }
  10755. },
  10756. "notification-url": "https://packagist.org/downloads/",
  10757. "license": [
  10758. "MIT"
  10759. ],
  10760. "authors": [
  10761. {
  10762. "name": "Bernhard Breytenbach",
  10763. "email": "bernhard@coffeecode.co.za"
  10764. }
  10765. ],
  10766. "description": "Generates Laravel Migrations from an existing database",
  10767. "keywords": [
  10768. "artisan",
  10769. "generator",
  10770. "laravel",
  10771. "migration",
  10772. "migrations"
  10773. ],
  10774. "time": "2017-09-19T17:31:57+00:00"
  10775. }
  10776. ],
  10777. "aliases": [],
  10778. "minimum-stability": "dev",
  10779. "stability-flags": {
  10780. "pocket_be/msy-push-plugin": 20,
  10781. "tymon/jwt-auth": 20
  10782. },
  10783. "prefer-stable": true,
  10784. "prefer-lowest": false,
  10785. "platform": {
  10786. "php": "^7.1.3",
  10787. "ext-json": "*",
  10788. "ext-openssl": "*",
  10789. "ext-zlib": "*"
  10790. },
  10791. "platform-dev": []
  10792. }