composer.lock 308 KB

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