composer.lock 230 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "b26c6fcc20aceef97955333e739346c7",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "1.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  20. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-iconv": "*",
  31. "php": "^5.4|^7.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8"
  35. },
  36. "suggest": {
  37. "ext-gd": "to generate QR code images"
  38. },
  39. "type": "library",
  40. "autoload": {
  41. "psr-0": {
  42. "BaconQrCode": "src/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "BSD-2-Clause"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Ben Scholzen 'DASPRiD'",
  52. "email": "mail@dasprids.de",
  53. "homepage": "http://www.dasprids.de",
  54. "role": "Developer"
  55. }
  56. ],
  57. "description": "BaconQrCode is a QR code generator for PHP.",
  58. "homepage": "https://github.com/Bacon/BaconQrCode",
  59. "time": "2017-10-17T09:59:25+00:00"
  60. },
  61. {
  62. "name": "dnoegel/php-xdg-base-dir",
  63. "version": "0.1",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  67. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  72. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  73. "shasum": "",
  74. "mirrors": [
  75. {
  76. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  77. "preferred": true
  78. }
  79. ]
  80. },
  81. "require": {
  82. "php": ">=5.3.2"
  83. },
  84. "require-dev": {
  85. "phpunit/phpunit": "@stable"
  86. },
  87. "type": "project",
  88. "autoload": {
  89. "psr-4": {
  90. "XdgBaseDir\\": "src/"
  91. }
  92. },
  93. "notification-url": "https://packagist.org/downloads/",
  94. "license": [
  95. "MIT"
  96. ],
  97. "description": "implementation of xdg base directory specification for php",
  98. "time": "2014-10-24T07:27:01+00:00"
  99. },
  100. {
  101. "name": "doctrine/annotations",
  102. "version": "v1.4.0",
  103. "source": {
  104. "type": "git",
  105. "url": "https://github.com/doctrine/annotations.git",
  106. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  107. },
  108. "dist": {
  109. "type": "zip",
  110. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  111. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  112. "shasum": "",
  113. "mirrors": [
  114. {
  115. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  116. "preferred": true
  117. }
  118. ]
  119. },
  120. "require": {
  121. "doctrine/lexer": "1.*",
  122. "php": "^5.6 || ^7.0"
  123. },
  124. "require-dev": {
  125. "doctrine/cache": "1.*",
  126. "phpunit/phpunit": "^5.7"
  127. },
  128. "type": "library",
  129. "extra": {
  130. "branch-alias": {
  131. "dev-master": "1.4.x-dev"
  132. }
  133. },
  134. "autoload": {
  135. "psr-4": {
  136. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "authors": [
  144. {
  145. "name": "Roman Borschel",
  146. "email": "roman@code-factory.org"
  147. },
  148. {
  149. "name": "Benjamin Eberlei",
  150. "email": "kontakt@beberlei.de"
  151. },
  152. {
  153. "name": "Guilherme Blanco",
  154. "email": "guilhermeblanco@gmail.com"
  155. },
  156. {
  157. "name": "Jonathan Wage",
  158. "email": "jonwage@gmail.com"
  159. },
  160. {
  161. "name": "Johannes Schmitt",
  162. "email": "schmittjoh@gmail.com"
  163. }
  164. ],
  165. "description": "Docblock Annotations Parser",
  166. "homepage": "http://www.doctrine-project.org",
  167. "keywords": [
  168. "annotations",
  169. "docblock",
  170. "parser"
  171. ],
  172. "time": "2017-02-24T16:22:25+00:00"
  173. },
  174. {
  175. "name": "doctrine/cache",
  176. "version": "v1.6.2",
  177. "source": {
  178. "type": "git",
  179. "url": "https://github.com/doctrine/cache.git",
  180. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  181. },
  182. "dist": {
  183. "type": "zip",
  184. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  185. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  186. "shasum": "",
  187. "mirrors": [
  188. {
  189. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  190. "preferred": true
  191. }
  192. ]
  193. },
  194. "require": {
  195. "php": "~5.5|~7.0"
  196. },
  197. "conflict": {
  198. "doctrine/common": ">2.2,<2.4"
  199. },
  200. "require-dev": {
  201. "phpunit/phpunit": "~4.8|~5.0",
  202. "predis/predis": "~1.0",
  203. "satooshi/php-coveralls": "~0.6"
  204. },
  205. "type": "library",
  206. "extra": {
  207. "branch-alias": {
  208. "dev-master": "1.6.x-dev"
  209. }
  210. },
  211. "autoload": {
  212. "psr-4": {
  213. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  214. }
  215. },
  216. "notification-url": "https://packagist.org/downloads/",
  217. "license": [
  218. "MIT"
  219. ],
  220. "authors": [
  221. {
  222. "name": "Roman Borschel",
  223. "email": "roman@code-factory.org"
  224. },
  225. {
  226. "name": "Benjamin Eberlei",
  227. "email": "kontakt@beberlei.de"
  228. },
  229. {
  230. "name": "Guilherme Blanco",
  231. "email": "guilhermeblanco@gmail.com"
  232. },
  233. {
  234. "name": "Jonathan Wage",
  235. "email": "jonwage@gmail.com"
  236. },
  237. {
  238. "name": "Johannes Schmitt",
  239. "email": "schmittjoh@gmail.com"
  240. }
  241. ],
  242. "description": "Caching library offering an object-oriented API for many cache backends",
  243. "homepage": "http://www.doctrine-project.org",
  244. "keywords": [
  245. "cache",
  246. "caching"
  247. ],
  248. "time": "2017-07-22T12:49:21+00:00"
  249. },
  250. {
  251. "name": "doctrine/collections",
  252. "version": "v1.4.0",
  253. "source": {
  254. "type": "git",
  255. "url": "https://github.com/doctrine/collections.git",
  256. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  257. },
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  261. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  262. "shasum": "",
  263. "mirrors": [
  264. {
  265. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  266. "preferred": true
  267. }
  268. ]
  269. },
  270. "require": {
  271. "php": "^5.6 || ^7.0"
  272. },
  273. "require-dev": {
  274. "doctrine/coding-standard": "~0.1@dev",
  275. "phpunit/phpunit": "^5.7"
  276. },
  277. "type": "library",
  278. "extra": {
  279. "branch-alias": {
  280. "dev-master": "1.3.x-dev"
  281. }
  282. },
  283. "autoload": {
  284. "psr-0": {
  285. "Doctrine\\Common\\Collections\\": "lib/"
  286. }
  287. },
  288. "notification-url": "https://packagist.org/downloads/",
  289. "license": [
  290. "MIT"
  291. ],
  292. "authors": [
  293. {
  294. "name": "Roman Borschel",
  295. "email": "roman@code-factory.org"
  296. },
  297. {
  298. "name": "Benjamin Eberlei",
  299. "email": "kontakt@beberlei.de"
  300. },
  301. {
  302. "name": "Guilherme Blanco",
  303. "email": "guilhermeblanco@gmail.com"
  304. },
  305. {
  306. "name": "Jonathan Wage",
  307. "email": "jonwage@gmail.com"
  308. },
  309. {
  310. "name": "Johannes Schmitt",
  311. "email": "schmittjoh@gmail.com"
  312. }
  313. ],
  314. "description": "Collections Abstraction library",
  315. "homepage": "http://www.doctrine-project.org",
  316. "keywords": [
  317. "array",
  318. "collections",
  319. "iterator"
  320. ],
  321. "time": "2017-01-03T10:49:41+00:00"
  322. },
  323. {
  324. "name": "doctrine/common",
  325. "version": "v2.7.3",
  326. "source": {
  327. "type": "git",
  328. "url": "https://github.com/doctrine/common.git",
  329. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  330. },
  331. "dist": {
  332. "type": "zip",
  333. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  334. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  335. "shasum": "",
  336. "mirrors": [
  337. {
  338. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  339. "preferred": true
  340. }
  341. ]
  342. },
  343. "require": {
  344. "doctrine/annotations": "1.*",
  345. "doctrine/cache": "1.*",
  346. "doctrine/collections": "1.*",
  347. "doctrine/inflector": "1.*",
  348. "doctrine/lexer": "1.*",
  349. "php": "~5.6|~7.0"
  350. },
  351. "require-dev": {
  352. "phpunit/phpunit": "^5.4.6"
  353. },
  354. "type": "library",
  355. "extra": {
  356. "branch-alias": {
  357. "dev-master": "2.7.x-dev"
  358. }
  359. },
  360. "autoload": {
  361. "psr-4": {
  362. "Doctrine\\Common\\": "lib/Doctrine/Common"
  363. }
  364. },
  365. "notification-url": "https://packagist.org/downloads/",
  366. "license": [
  367. "MIT"
  368. ],
  369. "authors": [
  370. {
  371. "name": "Roman Borschel",
  372. "email": "roman@code-factory.org"
  373. },
  374. {
  375. "name": "Benjamin Eberlei",
  376. "email": "kontakt@beberlei.de"
  377. },
  378. {
  379. "name": "Guilherme Blanco",
  380. "email": "guilhermeblanco@gmail.com"
  381. },
  382. {
  383. "name": "Jonathan Wage",
  384. "email": "jonwage@gmail.com"
  385. },
  386. {
  387. "name": "Johannes Schmitt",
  388. "email": "schmittjoh@gmail.com"
  389. }
  390. ],
  391. "description": "Common Library for Doctrine projects",
  392. "homepage": "http://www.doctrine-project.org",
  393. "keywords": [
  394. "annotations",
  395. "collections",
  396. "eventmanager",
  397. "persistence",
  398. "spl"
  399. ],
  400. "time": "2017-07-22T08:35:12+00:00"
  401. },
  402. {
  403. "name": "doctrine/dbal",
  404. "version": "v2.5.13",
  405. "source": {
  406. "type": "git",
  407. "url": "https://github.com/doctrine/dbal.git",
  408. "reference": "729340d8d1eec8f01bff708e12e449a3415af873"
  409. },
  410. "dist": {
  411. "type": "zip",
  412. "url": "https://api.github.com/repos/doctrine/dbal/zipball/729340d8d1eec8f01bff708e12e449a3415af873",
  413. "reference": "729340d8d1eec8f01bff708e12e449a3415af873",
  414. "shasum": "",
  415. "mirrors": [
  416. {
  417. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  418. "preferred": true
  419. }
  420. ]
  421. },
  422. "require": {
  423. "doctrine/common": ">=2.4,<2.8-dev",
  424. "php": ">=5.3.2"
  425. },
  426. "require-dev": {
  427. "phpunit/phpunit": "4.*",
  428. "symfony/console": "2.*||^3.0"
  429. },
  430. "suggest": {
  431. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  432. },
  433. "bin": [
  434. "bin/doctrine-dbal"
  435. ],
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-master": "2.5.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-0": {
  444. "Doctrine\\DBAL\\": "lib/"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Roman Borschel",
  454. "email": "roman@code-factory.org"
  455. },
  456. {
  457. "name": "Benjamin Eberlei",
  458. "email": "kontakt@beberlei.de"
  459. },
  460. {
  461. "name": "Guilherme Blanco",
  462. "email": "guilhermeblanco@gmail.com"
  463. },
  464. {
  465. "name": "Jonathan Wage",
  466. "email": "jonwage@gmail.com"
  467. }
  468. ],
  469. "description": "Database Abstraction Layer",
  470. "homepage": "http://www.doctrine-project.org",
  471. "keywords": [
  472. "database",
  473. "dbal",
  474. "persistence",
  475. "queryobject"
  476. ],
  477. "time": "2017-07-22T20:44:48+00:00"
  478. },
  479. {
  480. "name": "doctrine/inflector",
  481. "version": "v1.2.0",
  482. "source": {
  483. "type": "git",
  484. "url": "https://github.com/doctrine/inflector.git",
  485. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  486. },
  487. "dist": {
  488. "type": "zip",
  489. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  490. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  491. "shasum": "",
  492. "mirrors": [
  493. {
  494. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  495. "preferred": true
  496. }
  497. ]
  498. },
  499. "require": {
  500. "php": "^7.0"
  501. },
  502. "require-dev": {
  503. "phpunit/phpunit": "^6.2"
  504. },
  505. "type": "library",
  506. "extra": {
  507. "branch-alias": {
  508. "dev-master": "1.2.x-dev"
  509. }
  510. },
  511. "autoload": {
  512. "psr-4": {
  513. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  514. }
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "MIT"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Roman Borschel",
  523. "email": "roman@code-factory.org"
  524. },
  525. {
  526. "name": "Benjamin Eberlei",
  527. "email": "kontakt@beberlei.de"
  528. },
  529. {
  530. "name": "Guilherme Blanco",
  531. "email": "guilhermeblanco@gmail.com"
  532. },
  533. {
  534. "name": "Jonathan Wage",
  535. "email": "jonwage@gmail.com"
  536. },
  537. {
  538. "name": "Johannes Schmitt",
  539. "email": "schmittjoh@gmail.com"
  540. }
  541. ],
  542. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  543. "homepage": "http://www.doctrine-project.org",
  544. "keywords": [
  545. "inflection",
  546. "pluralize",
  547. "singularize",
  548. "string"
  549. ],
  550. "time": "2017-07-22T12:18:28+00:00"
  551. },
  552. {
  553. "name": "doctrine/lexer",
  554. "version": "v1.0.1",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/doctrine/lexer.git",
  558. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  563. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  564. "shasum": "",
  565. "mirrors": [
  566. {
  567. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  568. "preferred": true
  569. }
  570. ]
  571. },
  572. "require": {
  573. "php": ">=5.3.2"
  574. },
  575. "type": "library",
  576. "extra": {
  577. "branch-alias": {
  578. "dev-master": "1.0.x-dev"
  579. }
  580. },
  581. "autoload": {
  582. "psr-0": {
  583. "Doctrine\\Common\\Lexer\\": "lib/"
  584. }
  585. },
  586. "notification-url": "https://packagist.org/downloads/",
  587. "license": [
  588. "MIT"
  589. ],
  590. "authors": [
  591. {
  592. "name": "Roman Borschel",
  593. "email": "roman@code-factory.org"
  594. },
  595. {
  596. "name": "Guilherme Blanco",
  597. "email": "guilhermeblanco@gmail.com"
  598. },
  599. {
  600. "name": "Johannes Schmitt",
  601. "email": "schmittjoh@gmail.com"
  602. }
  603. ],
  604. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  605. "homepage": "http://www.doctrine-project.org",
  606. "keywords": [
  607. "lexer",
  608. "parser"
  609. ],
  610. "time": "2014-09-09T13:34:57+00:00"
  611. },
  612. {
  613. "name": "egulias/email-validator",
  614. "version": "2.1.7",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/egulias/EmailValidator.git",
  618. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  623. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  624. "shasum": "",
  625. "mirrors": [
  626. {
  627. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  628. "preferred": true
  629. }
  630. ]
  631. },
  632. "require": {
  633. "doctrine/lexer": "^1.0.1",
  634. "php": ">= 5.5"
  635. },
  636. "require-dev": {
  637. "dominicsayers/isemail": "dev-master",
  638. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  639. "satooshi/php-coveralls": "^1.0.1"
  640. },
  641. "suggest": {
  642. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  643. },
  644. "type": "library",
  645. "extra": {
  646. "branch-alias": {
  647. "dev-master": "2.0.x-dev"
  648. }
  649. },
  650. "autoload": {
  651. "psr-4": {
  652. "Egulias\\EmailValidator\\": "EmailValidator"
  653. }
  654. },
  655. "notification-url": "https://packagist.org/downloads/",
  656. "license": [
  657. "MIT"
  658. ],
  659. "authors": [
  660. {
  661. "name": "Eduardo Gulias Davis"
  662. }
  663. ],
  664. "description": "A library for validating emails against several RFCs",
  665. "homepage": "https://github.com/egulias/EmailValidator",
  666. "keywords": [
  667. "email",
  668. "emailvalidation",
  669. "emailvalidator",
  670. "validation",
  671. "validator"
  672. ],
  673. "time": "2018-12-04T22:38:24+00:00"
  674. },
  675. {
  676. "name": "erusev/parsedown",
  677. "version": "1.7.3",
  678. "source": {
  679. "type": "git",
  680. "url": "https://github.com/erusev/parsedown.git",
  681. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  682. },
  683. "dist": {
  684. "type": "zip",
  685. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  686. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  687. "shasum": "",
  688. "mirrors": [
  689. {
  690. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  691. "preferred": true
  692. }
  693. ]
  694. },
  695. "require": {
  696. "ext-mbstring": "*",
  697. "php": ">=5.3.0"
  698. },
  699. "require-dev": {
  700. "phpunit/phpunit": "^4.8.35"
  701. },
  702. "type": "library",
  703. "autoload": {
  704. "psr-0": {
  705. "Parsedown": ""
  706. }
  707. },
  708. "notification-url": "https://packagist.org/downloads/",
  709. "license": [
  710. "MIT"
  711. ],
  712. "authors": [
  713. {
  714. "name": "Emanuil Rusev",
  715. "email": "hello@erusev.com",
  716. "homepage": "http://erusev.com"
  717. }
  718. ],
  719. "description": "Parser for Markdown.",
  720. "homepage": "http://parsedown.org",
  721. "keywords": [
  722. "markdown",
  723. "parser"
  724. ],
  725. "time": "2019-03-17T18:48:37+00:00"
  726. },
  727. {
  728. "name": "fideloper/proxy",
  729. "version": "3.3.4",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/fideloper/TrustedProxy.git",
  733. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f",
  738. "reference": "9cdf6f118af58d89764249bbcc7bb260c132924f",
  739. "shasum": "",
  740. "mirrors": [
  741. {
  742. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  743. "preferred": true
  744. }
  745. ]
  746. },
  747. "require": {
  748. "illuminate/contracts": "~5.0",
  749. "php": ">=5.4.0"
  750. },
  751. "require-dev": {
  752. "illuminate/http": "~5.0",
  753. "mockery/mockery": "~0.9.3",
  754. "phpunit/phpunit": "^5.7"
  755. },
  756. "type": "library",
  757. "extra": {
  758. "branch-alias": {
  759. "dev-master": "3.3-dev"
  760. },
  761. "laravel": {
  762. "providers": [
  763. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  764. ]
  765. }
  766. },
  767. "autoload": {
  768. "psr-4": {
  769. "Fideloper\\Proxy\\": "src/"
  770. }
  771. },
  772. "notification-url": "https://packagist.org/downloads/",
  773. "license": [
  774. "MIT"
  775. ],
  776. "authors": [
  777. {
  778. "name": "Chris Fidao",
  779. "email": "fideloper@gmail.com"
  780. }
  781. ],
  782. "description": "Set trusted proxies for Laravel",
  783. "keywords": [
  784. "load balancing",
  785. "proxy",
  786. "trusted proxy"
  787. ],
  788. "time": "2017-06-15T17:19:42+00:00"
  789. },
  790. {
  791. "name": "guzzlehttp/guzzle",
  792. "version": "6.3.3",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/guzzle/guzzle.git",
  796. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  801. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  802. "shasum": "",
  803. "mirrors": [
  804. {
  805. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  806. "preferred": true
  807. }
  808. ]
  809. },
  810. "require": {
  811. "guzzlehttp/promises": "^1.0",
  812. "guzzlehttp/psr7": "^1.4",
  813. "php": ">=5.5"
  814. },
  815. "require-dev": {
  816. "ext-curl": "*",
  817. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  818. "psr/log": "^1.0"
  819. },
  820. "suggest": {
  821. "psr/log": "Required for using the Log middleware"
  822. },
  823. "type": "library",
  824. "extra": {
  825. "branch-alias": {
  826. "dev-master": "6.3-dev"
  827. }
  828. },
  829. "autoload": {
  830. "files": [
  831. "src/functions_include.php"
  832. ],
  833. "psr-4": {
  834. "GuzzleHttp\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Michael Dowling",
  844. "email": "mtdowling@gmail.com",
  845. "homepage": "https://github.com/mtdowling"
  846. }
  847. ],
  848. "description": "Guzzle is a PHP HTTP client library",
  849. "homepage": "http://guzzlephp.org/",
  850. "keywords": [
  851. "client",
  852. "curl",
  853. "framework",
  854. "http",
  855. "http client",
  856. "rest",
  857. "web service"
  858. ],
  859. "time": "2018-04-22T15:46:56+00:00"
  860. },
  861. {
  862. "name": "guzzlehttp/promises",
  863. "version": "v1.3.1",
  864. "source": {
  865. "type": "git",
  866. "url": "https://github.com/guzzle/promises.git",
  867. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  868. },
  869. "dist": {
  870. "type": "zip",
  871. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  872. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  873. "shasum": "",
  874. "mirrors": [
  875. {
  876. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  877. "preferred": true
  878. }
  879. ]
  880. },
  881. "require": {
  882. "php": ">=5.5.0"
  883. },
  884. "require-dev": {
  885. "phpunit/phpunit": "^4.0"
  886. },
  887. "type": "library",
  888. "extra": {
  889. "branch-alias": {
  890. "dev-master": "1.4-dev"
  891. }
  892. },
  893. "autoload": {
  894. "psr-4": {
  895. "GuzzleHttp\\Promise\\": "src/"
  896. },
  897. "files": [
  898. "src/functions_include.php"
  899. ]
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Michael Dowling",
  908. "email": "mtdowling@gmail.com",
  909. "homepage": "https://github.com/mtdowling"
  910. }
  911. ],
  912. "description": "Guzzle promises library",
  913. "keywords": [
  914. "promise"
  915. ],
  916. "time": "2016-12-20T10:07:11+00:00"
  917. },
  918. {
  919. "name": "guzzlehttp/psr7",
  920. "version": "1.5.2",
  921. "source": {
  922. "type": "git",
  923. "url": "https://github.com/guzzle/psr7.git",
  924. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  925. },
  926. "dist": {
  927. "type": "zip",
  928. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  929. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  930. "shasum": "",
  931. "mirrors": [
  932. {
  933. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  934. "preferred": true
  935. }
  936. ]
  937. },
  938. "require": {
  939. "php": ">=5.4.0",
  940. "psr/http-message": "~1.0",
  941. "ralouphie/getallheaders": "^2.0.5"
  942. },
  943. "provide": {
  944. "psr/http-message-implementation": "1.0"
  945. },
  946. "require-dev": {
  947. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  948. },
  949. "type": "library",
  950. "extra": {
  951. "branch-alias": {
  952. "dev-master": "1.5-dev"
  953. }
  954. },
  955. "autoload": {
  956. "psr-4": {
  957. "GuzzleHttp\\Psr7\\": "src/"
  958. },
  959. "files": [
  960. "src/functions_include.php"
  961. ]
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "authors": [
  968. {
  969. "name": "Michael Dowling",
  970. "email": "mtdowling@gmail.com",
  971. "homepage": "https://github.com/mtdowling"
  972. },
  973. {
  974. "name": "Tobias Schultze",
  975. "homepage": "https://github.com/Tobion"
  976. }
  977. ],
  978. "description": "PSR-7 message implementation that also provides common utility methods",
  979. "keywords": [
  980. "http",
  981. "message",
  982. "psr-7",
  983. "request",
  984. "response",
  985. "stream",
  986. "uri",
  987. "url"
  988. ],
  989. "time": "2018-12-04T20:46:45+00:00"
  990. },
  991. {
  992. "name": "intervention/image",
  993. "version": "2.4.2",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/Intervention/image.git",
  997. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
  1002. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
  1003. "shasum": "",
  1004. "mirrors": [
  1005. {
  1006. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1007. "preferred": true
  1008. }
  1009. ]
  1010. },
  1011. "require": {
  1012. "ext-fileinfo": "*",
  1013. "guzzlehttp/psr7": "~1.1",
  1014. "php": ">=5.4.0"
  1015. },
  1016. "require-dev": {
  1017. "mockery/mockery": "~0.9.2",
  1018. "phpunit/phpunit": "^4.8 || ^5.7"
  1019. },
  1020. "suggest": {
  1021. "ext-gd": "to use GD library based image processing.",
  1022. "ext-imagick": "to use Imagick based image processing.",
  1023. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "branch-alias": {
  1028. "dev-master": "2.4-dev"
  1029. },
  1030. "laravel": {
  1031. "providers": [
  1032. "Intervention\\Image\\ImageServiceProvider"
  1033. ],
  1034. "aliases": {
  1035. "Image": "Intervention\\Image\\Facades\\Image"
  1036. }
  1037. }
  1038. },
  1039. "autoload": {
  1040. "psr-4": {
  1041. "Intervention\\Image\\": "src/Intervention/Image"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "Oliver Vogel",
  1051. "email": "oliver@olivervogel.com",
  1052. "homepage": "http://olivervogel.com/"
  1053. }
  1054. ],
  1055. "description": "Image handling and manipulation library with support for Laravel integration",
  1056. "homepage": "http://image.intervention.io/",
  1057. "keywords": [
  1058. "gd",
  1059. "image",
  1060. "imagick",
  1061. "laravel",
  1062. "thumbnail",
  1063. "watermark"
  1064. ],
  1065. "time": "2018-05-29T14:19:03+00:00"
  1066. },
  1067. {
  1068. "name": "jakub-onderka/php-console-color",
  1069. "version": "v0.2",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  1073. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  1078. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  1079. "shasum": "",
  1080. "mirrors": [
  1081. {
  1082. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1083. "preferred": true
  1084. }
  1085. ]
  1086. },
  1087. "require": {
  1088. "php": ">=5.4.0"
  1089. },
  1090. "require-dev": {
  1091. "jakub-onderka/php-code-style": "1.0",
  1092. "jakub-onderka/php-parallel-lint": "1.0",
  1093. "jakub-onderka/php-var-dump-check": "0.*",
  1094. "phpunit/phpunit": "~4.3",
  1095. "squizlabs/php_codesniffer": "1.*"
  1096. },
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "JakubOnderka\\PhpConsoleColor\\": "src/"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "BSD-2-Clause"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Jakub Onderka",
  1110. "email": "jakub.onderka@gmail.com"
  1111. }
  1112. ],
  1113. "time": "2018-09-29T17:23:10+00:00"
  1114. },
  1115. {
  1116. "name": "jakub-onderka/php-console-highlighter",
  1117. "version": "v0.4",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  1121. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1126. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  1127. "shasum": "",
  1128. "mirrors": [
  1129. {
  1130. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1131. "preferred": true
  1132. }
  1133. ]
  1134. },
  1135. "require": {
  1136. "ext-tokenizer": "*",
  1137. "jakub-onderka/php-console-color": "~0.2",
  1138. "php": ">=5.4.0"
  1139. },
  1140. "require-dev": {
  1141. "jakub-onderka/php-code-style": "~1.0",
  1142. "jakub-onderka/php-parallel-lint": "~1.0",
  1143. "jakub-onderka/php-var-dump-check": "~0.1",
  1144. "phpunit/phpunit": "~4.0",
  1145. "squizlabs/php_codesniffer": "~1.5"
  1146. },
  1147. "type": "library",
  1148. "autoload": {
  1149. "psr-4": {
  1150. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Jakub Onderka",
  1160. "email": "acci@acci.cz",
  1161. "homepage": "http://www.acci.cz/"
  1162. }
  1163. ],
  1164. "description": "Highlight PHP code in terminal",
  1165. "time": "2018-09-29T18:48:56+00:00"
  1166. },
  1167. {
  1168. "name": "laravel/framework",
  1169. "version": "v5.5.45",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/laravel/framework.git",
  1173. "reference": "52c79ecf54b6168a54730ccb6c4c9f3561732a80"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/laravel/framework/zipball/52c79ecf54b6168a54730ccb6c4c9f3561732a80",
  1178. "reference": "52c79ecf54b6168a54730ccb6c4c9f3561732a80",
  1179. "shasum": "",
  1180. "mirrors": [
  1181. {
  1182. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1183. "preferred": true
  1184. }
  1185. ]
  1186. },
  1187. "require": {
  1188. "doctrine/inflector": "~1.1",
  1189. "erusev/parsedown": "~1.7",
  1190. "ext-mbstring": "*",
  1191. "ext-openssl": "*",
  1192. "league/flysystem": "^1.0.8",
  1193. "monolog/monolog": "~1.12",
  1194. "mtdowling/cron-expression": "~1.0",
  1195. "nesbot/carbon": "^1.26.0",
  1196. "php": ">=7.0",
  1197. "psr/container": "~1.0",
  1198. "psr/simple-cache": "^1.0",
  1199. "ramsey/uuid": "~3.0",
  1200. "swiftmailer/swiftmailer": "~6.0",
  1201. "symfony/console": "~3.3",
  1202. "symfony/debug": "~3.3",
  1203. "symfony/finder": "~3.3",
  1204. "symfony/http-foundation": "~3.3",
  1205. "symfony/http-kernel": "~3.3",
  1206. "symfony/process": "~3.3",
  1207. "symfony/routing": "~3.3",
  1208. "symfony/var-dumper": "~3.3",
  1209. "tijsverkoyen/css-to-inline-styles": "~2.2",
  1210. "vlucas/phpdotenv": "~2.2"
  1211. },
  1212. "replace": {
  1213. "illuminate/auth": "self.version",
  1214. "illuminate/broadcasting": "self.version",
  1215. "illuminate/bus": "self.version",
  1216. "illuminate/cache": "self.version",
  1217. "illuminate/config": "self.version",
  1218. "illuminate/console": "self.version",
  1219. "illuminate/container": "self.version",
  1220. "illuminate/contracts": "self.version",
  1221. "illuminate/cookie": "self.version",
  1222. "illuminate/database": "self.version",
  1223. "illuminate/encryption": "self.version",
  1224. "illuminate/events": "self.version",
  1225. "illuminate/filesystem": "self.version",
  1226. "illuminate/hashing": "self.version",
  1227. "illuminate/http": "self.version",
  1228. "illuminate/log": "self.version",
  1229. "illuminate/mail": "self.version",
  1230. "illuminate/notifications": "self.version",
  1231. "illuminate/pagination": "self.version",
  1232. "illuminate/pipeline": "self.version",
  1233. "illuminate/queue": "self.version",
  1234. "illuminate/redis": "self.version",
  1235. "illuminate/routing": "self.version",
  1236. "illuminate/session": "self.version",
  1237. "illuminate/support": "self.version",
  1238. "illuminate/translation": "self.version",
  1239. "illuminate/validation": "self.version",
  1240. "illuminate/view": "self.version",
  1241. "tightenco/collect": "<5.5.33"
  1242. },
  1243. "require-dev": {
  1244. "aws/aws-sdk-php": "~3.0",
  1245. "doctrine/dbal": "~2.5",
  1246. "filp/whoops": "^2.1.4",
  1247. "mockery/mockery": "~1.0",
  1248. "orchestra/testbench-core": "3.5.*",
  1249. "pda/pheanstalk": "~3.0",
  1250. "phpunit/phpunit": "~6.0",
  1251. "predis/predis": "^1.1.1",
  1252. "symfony/css-selector": "~3.3",
  1253. "symfony/dom-crawler": "~3.3"
  1254. },
  1255. "suggest": {
  1256. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  1257. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).",
  1258. "ext-pcntl": "Required to use all features of the queue worker.",
  1259. "ext-posix": "Required to use all features of the queue worker.",
  1260. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  1261. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).",
  1262. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  1263. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  1264. "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
  1265. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  1266. "nexmo/client": "Required to use the Nexmo transport (~1.0).",
  1267. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  1268. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  1269. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
  1270. "symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).",
  1271. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).",
  1272. "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
  1273. },
  1274. "type": "library",
  1275. "extra": {
  1276. "branch-alias": {
  1277. "dev-master": "5.5-dev"
  1278. }
  1279. },
  1280. "autoload": {
  1281. "files": [
  1282. "src/Illuminate/Foundation/helpers.php",
  1283. "src/Illuminate/Support/helpers.php"
  1284. ],
  1285. "psr-4": {
  1286. "Illuminate\\": "src/Illuminate/"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "Taylor Otwell",
  1296. "email": "taylor@laravel.com"
  1297. }
  1298. ],
  1299. "description": "The Laravel Framework.",
  1300. "homepage": "https://laravel.com",
  1301. "keywords": [
  1302. "framework",
  1303. "laravel"
  1304. ],
  1305. "time": "2019-01-28T20:53:19+00:00"
  1306. },
  1307. {
  1308. "name": "laravel/tinker",
  1309. "version": "v1.0.8",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/laravel/tinker.git",
  1313. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  1318. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  1319. "shasum": "",
  1320. "mirrors": [
  1321. {
  1322. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1323. "preferred": true
  1324. }
  1325. ]
  1326. },
  1327. "require": {
  1328. "illuminate/console": "~5.1",
  1329. "illuminate/contracts": "~5.1",
  1330. "illuminate/support": "~5.1",
  1331. "php": ">=5.5.9",
  1332. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1333. "symfony/var-dumper": "~3.0|~4.0"
  1334. },
  1335. "require-dev": {
  1336. "phpunit/phpunit": "~4.0|~5.0"
  1337. },
  1338. "suggest": {
  1339. "illuminate/database": "The Illuminate Database package (~5.1)."
  1340. },
  1341. "type": "library",
  1342. "extra": {
  1343. "branch-alias": {
  1344. "dev-master": "1.0-dev"
  1345. },
  1346. "laravel": {
  1347. "providers": [
  1348. "Laravel\\Tinker\\TinkerServiceProvider"
  1349. ]
  1350. }
  1351. },
  1352. "autoload": {
  1353. "psr-4": {
  1354. "Laravel\\Tinker\\": "src/"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Taylor Otwell",
  1364. "email": "taylor@laravel.com"
  1365. }
  1366. ],
  1367. "description": "Powerful REPL for the Laravel framework.",
  1368. "keywords": [
  1369. "REPL",
  1370. "Tinker",
  1371. "laravel",
  1372. "psysh"
  1373. ],
  1374. "time": "2018-10-12T19:39:35+00:00"
  1375. },
  1376. {
  1377. "name": "lcobucci/jwt",
  1378. "version": "3.2.5",
  1379. "source": {
  1380. "type": "git",
  1381. "url": "https://github.com/lcobucci/jwt.git",
  1382. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b"
  1383. },
  1384. "dist": {
  1385. "type": "zip",
  1386. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/82be04b4753f8b7693b62852b7eab30f97524f9b",
  1387. "reference": "82be04b4753f8b7693b62852b7eab30f97524f9b",
  1388. "shasum": "",
  1389. "mirrors": [
  1390. {
  1391. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1392. "preferred": true
  1393. }
  1394. ]
  1395. },
  1396. "require": {
  1397. "ext-openssl": "*",
  1398. "php": ">=5.5"
  1399. },
  1400. "require-dev": {
  1401. "mdanter/ecc": "~0.3.1",
  1402. "mikey179/vfsstream": "~1.5",
  1403. "phpmd/phpmd": "~2.2",
  1404. "phpunit/php-invoker": "~1.1",
  1405. "phpunit/phpunit": "~4.5",
  1406. "squizlabs/php_codesniffer": "~2.3"
  1407. },
  1408. "suggest": {
  1409. "mdanter/ecc": "Required to use Elliptic Curves based algorithms."
  1410. },
  1411. "type": "library",
  1412. "extra": {
  1413. "branch-alias": {
  1414. "dev-master": "3.1-dev"
  1415. }
  1416. },
  1417. "autoload": {
  1418. "psr-4": {
  1419. "Lcobucci\\JWT\\": "src"
  1420. }
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "BSD-3-Clause"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "Luís Otávio Cobucci Oblonczyk",
  1429. "email": "lcobucci@gmail.com",
  1430. "role": "Developer"
  1431. }
  1432. ],
  1433. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1434. "keywords": [
  1435. "JWS",
  1436. "jwt"
  1437. ],
  1438. "time": "2018-11-11T12:22:26+00:00"
  1439. },
  1440. {
  1441. "name": "league/flysystem",
  1442. "version": "1.0.51",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/thephpleague/flysystem.git",
  1446. "reference": "755ba7bf3fb9031e6581d091db84d78275874396"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/755ba7bf3fb9031e6581d091db84d78275874396",
  1451. "reference": "755ba7bf3fb9031e6581d091db84d78275874396",
  1452. "shasum": "",
  1453. "mirrors": [
  1454. {
  1455. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1456. "preferred": true
  1457. }
  1458. ]
  1459. },
  1460. "require": {
  1461. "ext-fileinfo": "*",
  1462. "php": ">=5.5.9"
  1463. },
  1464. "conflict": {
  1465. "league/flysystem-sftp": "<1.0.6"
  1466. },
  1467. "require-dev": {
  1468. "phpspec/phpspec": "^3.4",
  1469. "phpunit/phpunit": "^5.7.10"
  1470. },
  1471. "suggest": {
  1472. "ext-fileinfo": "Required for MimeType",
  1473. "ext-ftp": "Allows you to use FTP server storage",
  1474. "ext-openssl": "Allows you to use FTPS server storage",
  1475. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1476. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1477. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1478. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1479. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1480. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1481. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1482. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1483. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1484. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1485. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1486. },
  1487. "type": "library",
  1488. "extra": {
  1489. "branch-alias": {
  1490. "dev-master": "1.1-dev"
  1491. }
  1492. },
  1493. "autoload": {
  1494. "psr-4": {
  1495. "League\\Flysystem\\": "src/"
  1496. }
  1497. },
  1498. "notification-url": "https://packagist.org/downloads/",
  1499. "license": [
  1500. "MIT"
  1501. ],
  1502. "authors": [
  1503. {
  1504. "name": "Frank de Jonge",
  1505. "email": "info@frenky.net"
  1506. }
  1507. ],
  1508. "description": "Filesystem abstraction: Many filesystems, one API.",
  1509. "keywords": [
  1510. "Cloud Files",
  1511. "WebDAV",
  1512. "abstraction",
  1513. "aws",
  1514. "cloud",
  1515. "copy.com",
  1516. "dropbox",
  1517. "file systems",
  1518. "files",
  1519. "filesystem",
  1520. "filesystems",
  1521. "ftp",
  1522. "rackspace",
  1523. "remote",
  1524. "s3",
  1525. "sftp",
  1526. "storage"
  1527. ],
  1528. "time": "2019-03-30T13:22:34+00:00"
  1529. },
  1530. {
  1531. "name": "mews/captcha",
  1532. "version": "2.2.9",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/mewebstudio/captcha.git",
  1536. "reference": "77ee353db8d92c001b411a0afbb7b3ccb71500b0"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/77ee353db8d92c001b411a0afbb7b3ccb71500b0",
  1541. "reference": "77ee353db8d92c001b411a0afbb7b3ccb71500b0",
  1542. "shasum": "",
  1543. "mirrors": [
  1544. {
  1545. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1546. "preferred": true
  1547. }
  1548. ]
  1549. },
  1550. "require": {
  1551. "ext-gd": "*",
  1552. "illuminate/config": "~5.0",
  1553. "illuminate/filesystem": "~5.0",
  1554. "illuminate/hashing": "~5.0",
  1555. "illuminate/support": "~5.0",
  1556. "intervention/image": "~2.2",
  1557. "php": ">=5.4"
  1558. },
  1559. "require-dev": {
  1560. "mockery/mockery": "0.9.*",
  1561. "phpunit/phpunit": "~4.1"
  1562. },
  1563. "type": "package",
  1564. "extra": {
  1565. "laravel": {
  1566. "providers": [
  1567. "Mews\\Captcha\\CaptchaServiceProvider"
  1568. ],
  1569. "aliases": {
  1570. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  1571. }
  1572. }
  1573. },
  1574. "autoload": {
  1575. "psr-4": {
  1576. "Mews\\Captcha\\": "src/"
  1577. },
  1578. "files": [
  1579. "src/helpers.php"
  1580. ]
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Muharrem ERİN",
  1589. "email": "me@mewebstudio.com",
  1590. "homepage": "https://github.com/mewebstudio",
  1591. "role": "Developer"
  1592. }
  1593. ],
  1594. "description": "Laravel 5 Captcha Package",
  1595. "homepage": "https://github.com/mewebstudio/captcha",
  1596. "keywords": [
  1597. "captcha",
  1598. "laravel5 Captcha",
  1599. "laravel5 Security"
  1600. ],
  1601. "time": "2019-04-19T12:35:00+00:00"
  1602. },
  1603. {
  1604. "name": "monolog/monolog",
  1605. "version": "1.24.0",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/Seldaek/monolog.git",
  1609. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1614. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  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.3.0",
  1625. "psr/log": "~1.0"
  1626. },
  1627. "provide": {
  1628. "psr/log-implementation": "1.0.0"
  1629. },
  1630. "require-dev": {
  1631. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1632. "doctrine/couchdb": "~1.0@dev",
  1633. "graylog2/gelf-php": "~1.0",
  1634. "jakub-onderka/php-parallel-lint": "0.9",
  1635. "php-amqplib/php-amqplib": "~2.4",
  1636. "php-console/php-console": "^3.1.3",
  1637. "phpunit/phpunit": "~4.5",
  1638. "phpunit/phpunit-mock-objects": "2.3.0",
  1639. "ruflin/elastica": ">=0.90 <3.0",
  1640. "sentry/sentry": "^0.13",
  1641. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1642. },
  1643. "suggest": {
  1644. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1645. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1646. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1647. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1648. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1649. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1650. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1651. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1652. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1653. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1654. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1655. },
  1656. "type": "library",
  1657. "extra": {
  1658. "branch-alias": {
  1659. "dev-master": "2.0.x-dev"
  1660. }
  1661. },
  1662. "autoload": {
  1663. "psr-4": {
  1664. "Monolog\\": "src/Monolog"
  1665. }
  1666. },
  1667. "notification-url": "https://packagist.org/downloads/",
  1668. "license": [
  1669. "MIT"
  1670. ],
  1671. "authors": [
  1672. {
  1673. "name": "Jordi Boggiano",
  1674. "email": "j.boggiano@seld.be",
  1675. "homepage": "http://seld.be"
  1676. }
  1677. ],
  1678. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1679. "homepage": "http://github.com/Seldaek/monolog",
  1680. "keywords": [
  1681. "log",
  1682. "logging",
  1683. "psr-3"
  1684. ],
  1685. "time": "2018-11-05T09:00:11+00:00"
  1686. },
  1687. {
  1688. "name": "mtdowling/cron-expression",
  1689. "version": "v1.2.1",
  1690. "source": {
  1691. "type": "git",
  1692. "url": "https://github.com/mtdowling/cron-expression.git",
  1693. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  1694. },
  1695. "dist": {
  1696. "type": "zip",
  1697. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  1698. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  1699. "shasum": "",
  1700. "mirrors": [
  1701. {
  1702. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1703. "preferred": true
  1704. }
  1705. ]
  1706. },
  1707. "require": {
  1708. "php": ">=5.3.2"
  1709. },
  1710. "require-dev": {
  1711. "phpunit/phpunit": "~4.0|~5.0"
  1712. },
  1713. "type": "library",
  1714. "autoload": {
  1715. "psr-4": {
  1716. "Cron\\": "src/Cron/"
  1717. }
  1718. },
  1719. "notification-url": "https://packagist.org/downloads/",
  1720. "license": [
  1721. "MIT"
  1722. ],
  1723. "authors": [
  1724. {
  1725. "name": "Michael Dowling",
  1726. "email": "mtdowling@gmail.com",
  1727. "homepage": "https://github.com/mtdowling"
  1728. }
  1729. ],
  1730. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1731. "keywords": [
  1732. "cron",
  1733. "schedule"
  1734. ],
  1735. "time": "2017-01-23T04:29:33+00:00"
  1736. },
  1737. {
  1738. "name": "namshi/jose",
  1739. "version": "7.2.3",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/namshi/jose.git",
  1743. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  1748. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  1749. "shasum": "",
  1750. "mirrors": [
  1751. {
  1752. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1753. "preferred": true
  1754. }
  1755. ]
  1756. },
  1757. "require": {
  1758. "ext-date": "*",
  1759. "ext-hash": "*",
  1760. "ext-json": "*",
  1761. "ext-pcre": "*",
  1762. "ext-spl": "*",
  1763. "php": ">=5.5",
  1764. "symfony/polyfill-php56": "^1.0"
  1765. },
  1766. "require-dev": {
  1767. "phpseclib/phpseclib": "^2.0",
  1768. "phpunit/phpunit": "^4.5|^5.0",
  1769. "satooshi/php-coveralls": "^1.0"
  1770. },
  1771. "suggest": {
  1772. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  1773. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  1774. },
  1775. "type": "library",
  1776. "autoload": {
  1777. "psr-4": {
  1778. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  1779. }
  1780. },
  1781. "notification-url": "https://packagist.org/downloads/",
  1782. "license": [
  1783. "MIT"
  1784. ],
  1785. "authors": [
  1786. {
  1787. "name": "Alessandro Nadalin",
  1788. "email": "alessandro.nadalin@gmail.com"
  1789. },
  1790. {
  1791. "name": "Alessandro Cinelli (cirpo)",
  1792. "email": "alessandro.cinelli@gmail.com"
  1793. }
  1794. ],
  1795. "description": "JSON Object Signing and Encryption library for PHP.",
  1796. "keywords": [
  1797. "JSON Web Signature",
  1798. "JSON Web Token",
  1799. "JWS",
  1800. "json",
  1801. "jwt",
  1802. "token"
  1803. ],
  1804. "time": "2016-12-05T07:27:31+00:00"
  1805. },
  1806. {
  1807. "name": "nesbot/carbon",
  1808. "version": "1.37.1",
  1809. "source": {
  1810. "type": "git",
  1811. "url": "https://github.com/briannesbitt/Carbon.git",
  1812. "reference": "5be4fdf97076a685b23efdedfc2b73ad0c5eab70"
  1813. },
  1814. "dist": {
  1815. "type": "zip",
  1816. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/5be4fdf97076a685b23efdedfc2b73ad0c5eab70",
  1817. "reference": "5be4fdf97076a685b23efdedfc2b73ad0c5eab70",
  1818. "shasum": "",
  1819. "mirrors": [
  1820. {
  1821. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1822. "preferred": true
  1823. }
  1824. ]
  1825. },
  1826. "require": {
  1827. "php": ">=5.3.9",
  1828. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  1829. },
  1830. "require-dev": {
  1831. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1832. },
  1833. "suggest": {
  1834. "friendsofphp/php-cs-fixer": "Needed for the `composer phpcs` command. Allow to automatically fix code style.",
  1835. "phpstan/phpstan": "Needed for the `composer phpstan` command. Allow to detect potential errors."
  1836. },
  1837. "type": "library",
  1838. "extra": {
  1839. "laravel": {
  1840. "providers": [
  1841. "Carbon\\Laravel\\ServiceProvider"
  1842. ]
  1843. }
  1844. },
  1845. "autoload": {
  1846. "psr-4": {
  1847. "": "src/"
  1848. }
  1849. },
  1850. "notification-url": "https://packagist.org/downloads/",
  1851. "license": [
  1852. "MIT"
  1853. ],
  1854. "authors": [
  1855. {
  1856. "name": "Brian Nesbitt",
  1857. "email": "brian@nesbot.com",
  1858. "homepage": "http://nesbot.com"
  1859. }
  1860. ],
  1861. "description": "A simple API extension for DateTime.",
  1862. "homepage": "http://carbon.nesbot.com",
  1863. "keywords": [
  1864. "date",
  1865. "datetime",
  1866. "time"
  1867. ],
  1868. "time": "2019-04-19T10:27:42+00:00"
  1869. },
  1870. {
  1871. "name": "nikic/php-parser",
  1872. "version": "v4.2.1",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://github.com/nikic/PHP-Parser.git",
  1876. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  1881. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  1882. "shasum": "",
  1883. "mirrors": [
  1884. {
  1885. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1886. "preferred": true
  1887. }
  1888. ]
  1889. },
  1890. "require": {
  1891. "ext-tokenizer": "*",
  1892. "php": ">=7.0"
  1893. },
  1894. "require-dev": {
  1895. "phpunit/phpunit": "^6.5 || ^7.0"
  1896. },
  1897. "bin": [
  1898. "bin/php-parse"
  1899. ],
  1900. "type": "library",
  1901. "extra": {
  1902. "branch-alias": {
  1903. "dev-master": "4.2-dev"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "PhpParser\\": "lib/PhpParser"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "BSD-3-Clause"
  1914. ],
  1915. "authors": [
  1916. {
  1917. "name": "Nikita Popov"
  1918. }
  1919. ],
  1920. "description": "A PHP parser written in PHP",
  1921. "keywords": [
  1922. "parser",
  1923. "php"
  1924. ],
  1925. "time": "2019-02-16T20:54:15+00:00"
  1926. },
  1927. {
  1928. "name": "orangehill/iseed",
  1929. "version": "v2.6.1",
  1930. "source": {
  1931. "type": "git",
  1932. "url": "https://github.com/orangehill/iseed.git",
  1933. "reference": "360ba1314e1dc950438bbb8006fc220de47dca00"
  1934. },
  1935. "dist": {
  1936. "type": "zip",
  1937. "url": "https://api.github.com/repos/orangehill/iseed/zipball/360ba1314e1dc950438bbb8006fc220de47dca00",
  1938. "reference": "360ba1314e1dc950438bbb8006fc220de47dca00",
  1939. "shasum": "",
  1940. "mirrors": [
  1941. {
  1942. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1943. "preferred": true
  1944. }
  1945. ]
  1946. },
  1947. "require": {
  1948. "illuminate/support": "^5.3.8",
  1949. "php": ">=5.4.0"
  1950. },
  1951. "require-dev": {
  1952. "illuminate/filesystem": "5.x",
  1953. "laravel/framework": "^5.3.8",
  1954. "mockery/mockery": "dev-master",
  1955. "phpunit/phpunit": "^5.7"
  1956. },
  1957. "type": "library",
  1958. "extra": {
  1959. "laravel": {
  1960. "providers": [
  1961. "Orangehill\\Iseed\\IseedServiceProvider"
  1962. ]
  1963. }
  1964. },
  1965. "autoload": {
  1966. "psr-0": {
  1967. "Orangehill\\Iseed": "src/"
  1968. },
  1969. "classmap": [
  1970. "src/Orangehill/Iseed/Exceptions.php"
  1971. ]
  1972. },
  1973. "notification-url": "https://packagist.org/downloads/",
  1974. "license": [
  1975. "BSD-2-Clause"
  1976. ],
  1977. "authors": [
  1978. {
  1979. "name": "Tihomir Opacic",
  1980. "email": "tihomir.opacic@orangehilldev.com"
  1981. }
  1982. ],
  1983. "description": "Generate a new Laravel database seed file based on data from the existing database table.",
  1984. "keywords": [
  1985. "artisan",
  1986. "generators",
  1987. "laravel",
  1988. "seed"
  1989. ],
  1990. "time": "2018-12-07T08:06:29+00:00"
  1991. },
  1992. {
  1993. "name": "paragonie/random_compat",
  1994. "version": "v9.99.99",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/paragonie/random_compat.git",
  1998. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2003. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2004. "shasum": "",
  2005. "mirrors": [
  2006. {
  2007. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2008. "preferred": true
  2009. }
  2010. ]
  2011. },
  2012. "require": {
  2013. "php": "^7"
  2014. },
  2015. "require-dev": {
  2016. "phpunit/phpunit": "4.*|5.*",
  2017. "vimeo/psalm": "^1"
  2018. },
  2019. "suggest": {
  2020. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2021. },
  2022. "type": "library",
  2023. "notification-url": "https://packagist.org/downloads/",
  2024. "license": [
  2025. "MIT"
  2026. ],
  2027. "authors": [
  2028. {
  2029. "name": "Paragon Initiative Enterprises",
  2030. "email": "security@paragonie.com",
  2031. "homepage": "https://paragonie.com"
  2032. }
  2033. ],
  2034. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2035. "keywords": [
  2036. "csprng",
  2037. "polyfill",
  2038. "pseudorandom",
  2039. "random"
  2040. ],
  2041. "time": "2018-07-02T15:55:56+00:00"
  2042. },
  2043. {
  2044. "name": "psr/container",
  2045. "version": "1.0.0",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/php-fig/container.git",
  2049. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2054. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2055. "shasum": "",
  2056. "mirrors": [
  2057. {
  2058. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2059. "preferred": true
  2060. }
  2061. ]
  2062. },
  2063. "require": {
  2064. "php": ">=5.3.0"
  2065. },
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-master": "1.0.x-dev"
  2070. }
  2071. },
  2072. "autoload": {
  2073. "psr-4": {
  2074. "Psr\\Container\\": "src/"
  2075. }
  2076. },
  2077. "notification-url": "https://packagist.org/downloads/",
  2078. "license": [
  2079. "MIT"
  2080. ],
  2081. "authors": [
  2082. {
  2083. "name": "PHP-FIG",
  2084. "homepage": "http://www.php-fig.org/"
  2085. }
  2086. ],
  2087. "description": "Common Container Interface (PHP FIG PSR-11)",
  2088. "homepage": "https://github.com/php-fig/container",
  2089. "keywords": [
  2090. "PSR-11",
  2091. "container",
  2092. "container-interface",
  2093. "container-interop",
  2094. "psr"
  2095. ],
  2096. "time": "2017-02-14T16:28:37+00:00"
  2097. },
  2098. {
  2099. "name": "psr/http-message",
  2100. "version": "1.0.1",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/php-fig/http-message.git",
  2104. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2109. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2110. "shasum": "",
  2111. "mirrors": [
  2112. {
  2113. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2114. "preferred": true
  2115. }
  2116. ]
  2117. },
  2118. "require": {
  2119. "php": ">=5.3.0"
  2120. },
  2121. "type": "library",
  2122. "extra": {
  2123. "branch-alias": {
  2124. "dev-master": "1.0.x-dev"
  2125. }
  2126. },
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Psr\\Http\\Message\\": "src/"
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "PHP-FIG",
  2139. "homepage": "http://www.php-fig.org/"
  2140. }
  2141. ],
  2142. "description": "Common interface for HTTP messages",
  2143. "homepage": "https://github.com/php-fig/http-message",
  2144. "keywords": [
  2145. "http",
  2146. "http-message",
  2147. "psr",
  2148. "psr-7",
  2149. "request",
  2150. "response"
  2151. ],
  2152. "time": "2016-08-06T14:39:51+00:00"
  2153. },
  2154. {
  2155. "name": "psr/log",
  2156. "version": "1.1.0",
  2157. "source": {
  2158. "type": "git",
  2159. "url": "https://github.com/php-fig/log.git",
  2160. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  2161. },
  2162. "dist": {
  2163. "type": "zip",
  2164. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2165. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2166. "shasum": "",
  2167. "mirrors": [
  2168. {
  2169. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2170. "preferred": true
  2171. }
  2172. ]
  2173. },
  2174. "require": {
  2175. "php": ">=5.3.0"
  2176. },
  2177. "type": "library",
  2178. "extra": {
  2179. "branch-alias": {
  2180. "dev-master": "1.0.x-dev"
  2181. }
  2182. },
  2183. "autoload": {
  2184. "psr-4": {
  2185. "Psr\\Log\\": "Psr/Log/"
  2186. }
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "PHP-FIG",
  2195. "homepage": "http://www.php-fig.org/"
  2196. }
  2197. ],
  2198. "description": "Common interface for logging libraries",
  2199. "homepage": "https://github.com/php-fig/log",
  2200. "keywords": [
  2201. "log",
  2202. "psr",
  2203. "psr-3"
  2204. ],
  2205. "time": "2018-11-20T15:27:04+00:00"
  2206. },
  2207. {
  2208. "name": "psr/simple-cache",
  2209. "version": "1.0.1",
  2210. "source": {
  2211. "type": "git",
  2212. "url": "https://github.com/php-fig/simple-cache.git",
  2213. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2214. },
  2215. "dist": {
  2216. "type": "zip",
  2217. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2218. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2219. "shasum": "",
  2220. "mirrors": [
  2221. {
  2222. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2223. "preferred": true
  2224. }
  2225. ]
  2226. },
  2227. "require": {
  2228. "php": ">=5.3.0"
  2229. },
  2230. "type": "library",
  2231. "extra": {
  2232. "branch-alias": {
  2233. "dev-master": "1.0.x-dev"
  2234. }
  2235. },
  2236. "autoload": {
  2237. "psr-4": {
  2238. "Psr\\SimpleCache\\": "src/"
  2239. }
  2240. },
  2241. "notification-url": "https://packagist.org/downloads/",
  2242. "license": [
  2243. "MIT"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "PHP-FIG",
  2248. "homepage": "http://www.php-fig.org/"
  2249. }
  2250. ],
  2251. "description": "Common interfaces for simple caching",
  2252. "keywords": [
  2253. "cache",
  2254. "caching",
  2255. "psr",
  2256. "psr-16",
  2257. "simple-cache"
  2258. ],
  2259. "time": "2017-10-23T01:57:42+00:00"
  2260. },
  2261. {
  2262. "name": "psy/psysh",
  2263. "version": "v0.9.9",
  2264. "source": {
  2265. "type": "git",
  2266. "url": "https://github.com/bobthecow/psysh.git",
  2267. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  2268. },
  2269. "dist": {
  2270. "type": "zip",
  2271. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2272. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2273. "shasum": "",
  2274. "mirrors": [
  2275. {
  2276. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2277. "preferred": true
  2278. }
  2279. ]
  2280. },
  2281. "require": {
  2282. "dnoegel/php-xdg-base-dir": "0.1",
  2283. "ext-json": "*",
  2284. "ext-tokenizer": "*",
  2285. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2286. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2287. "php": ">=5.4.0",
  2288. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2289. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2290. },
  2291. "require-dev": {
  2292. "bamarni/composer-bin-plugin": "^1.2",
  2293. "hoa/console": "~2.15|~3.16",
  2294. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2295. },
  2296. "suggest": {
  2297. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2298. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2299. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2300. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2301. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2302. },
  2303. "bin": [
  2304. "bin/psysh"
  2305. ],
  2306. "type": "library",
  2307. "extra": {
  2308. "branch-alias": {
  2309. "dev-develop": "0.9.x-dev"
  2310. }
  2311. },
  2312. "autoload": {
  2313. "files": [
  2314. "src/functions.php"
  2315. ],
  2316. "psr-4": {
  2317. "Psy\\": "src/"
  2318. }
  2319. },
  2320. "notification-url": "https://packagist.org/downloads/",
  2321. "license": [
  2322. "MIT"
  2323. ],
  2324. "authors": [
  2325. {
  2326. "name": "Justin Hileman",
  2327. "email": "justin@justinhileman.info",
  2328. "homepage": "http://justinhileman.com"
  2329. }
  2330. ],
  2331. "description": "An interactive shell for modern PHP.",
  2332. "homepage": "http://psysh.org",
  2333. "keywords": [
  2334. "REPL",
  2335. "console",
  2336. "interactive",
  2337. "shell"
  2338. ],
  2339. "time": "2018-10-13T15:16:03+00:00"
  2340. },
  2341. {
  2342. "name": "qiniu/php-sdk",
  2343. "version": "v7.2.7",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/qiniu/php-sdk.git",
  2347. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  2352. "reference": "88d11a5857ebc6871204e9be6ceec54bf5f381e6",
  2353. "shasum": "",
  2354. "mirrors": [
  2355. {
  2356. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2357. "preferred": true
  2358. }
  2359. ]
  2360. },
  2361. "require": {
  2362. "php": ">=5.3.3"
  2363. },
  2364. "require-dev": {
  2365. "phpunit/phpunit": "~4.0",
  2366. "squizlabs/php_codesniffer": "~2.3"
  2367. },
  2368. "type": "library",
  2369. "autoload": {
  2370. "psr-4": {
  2371. "Qiniu\\": "src/Qiniu"
  2372. },
  2373. "files": [
  2374. "src/Qiniu/functions.php"
  2375. ]
  2376. },
  2377. "notification-url": "https://packagist.org/downloads/",
  2378. "license": [
  2379. "MIT"
  2380. ],
  2381. "authors": [
  2382. {
  2383. "name": "Qiniu",
  2384. "email": "sdk@qiniu.com",
  2385. "homepage": "http://www.qiniu.com"
  2386. }
  2387. ],
  2388. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2389. "homepage": "http://developer.qiniu.com/",
  2390. "keywords": [
  2391. "cloud",
  2392. "qiniu",
  2393. "sdk",
  2394. "storage"
  2395. ],
  2396. "time": "2018-11-06T13:34:32+00:00"
  2397. },
  2398. {
  2399. "name": "ralouphie/getallheaders",
  2400. "version": "2.0.5",
  2401. "source": {
  2402. "type": "git",
  2403. "url": "https://github.com/ralouphie/getallheaders.git",
  2404. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  2405. },
  2406. "dist": {
  2407. "type": "zip",
  2408. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2409. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2410. "shasum": "",
  2411. "mirrors": [
  2412. {
  2413. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2414. "preferred": true
  2415. }
  2416. ]
  2417. },
  2418. "require": {
  2419. "php": ">=5.3"
  2420. },
  2421. "require-dev": {
  2422. "phpunit/phpunit": "~3.7.0",
  2423. "satooshi/php-coveralls": ">=1.0"
  2424. },
  2425. "type": "library",
  2426. "autoload": {
  2427. "files": [
  2428. "src/getallheaders.php"
  2429. ]
  2430. },
  2431. "notification-url": "https://packagist.org/downloads/",
  2432. "license": [
  2433. "MIT"
  2434. ],
  2435. "authors": [
  2436. {
  2437. "name": "Ralph Khattar",
  2438. "email": "ralph.khattar@gmail.com"
  2439. }
  2440. ],
  2441. "description": "A polyfill for getallheaders.",
  2442. "time": "2016-02-11T07:05:27+00:00"
  2443. },
  2444. {
  2445. "name": "ramsey/uuid",
  2446. "version": "3.8.0",
  2447. "source": {
  2448. "type": "git",
  2449. "url": "https://github.com/ramsey/uuid.git",
  2450. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  2451. },
  2452. "dist": {
  2453. "type": "zip",
  2454. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2455. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2456. "shasum": "",
  2457. "mirrors": [
  2458. {
  2459. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2460. "preferred": true
  2461. }
  2462. ]
  2463. },
  2464. "require": {
  2465. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  2466. "php": "^5.4 || ^7.0",
  2467. "symfony/polyfill-ctype": "^1.8"
  2468. },
  2469. "replace": {
  2470. "rhumsaa/uuid": "self.version"
  2471. },
  2472. "require-dev": {
  2473. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2474. "doctrine/annotations": "~1.2.0",
  2475. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  2476. "ircmaxell/random-lib": "^1.1",
  2477. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2478. "mockery/mockery": "^0.9.9",
  2479. "moontoast/math": "^1.1",
  2480. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  2481. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  2482. "squizlabs/php_codesniffer": "^2.3"
  2483. },
  2484. "suggest": {
  2485. "ext-ctype": "Provides support for PHP Ctype functions",
  2486. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2487. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2488. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2489. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2490. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2491. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2492. },
  2493. "type": "library",
  2494. "extra": {
  2495. "branch-alias": {
  2496. "dev-master": "3.x-dev"
  2497. }
  2498. },
  2499. "autoload": {
  2500. "psr-4": {
  2501. "Ramsey\\Uuid\\": "src/"
  2502. }
  2503. },
  2504. "notification-url": "https://packagist.org/downloads/",
  2505. "license": [
  2506. "MIT"
  2507. ],
  2508. "authors": [
  2509. {
  2510. "name": "Marijn Huizendveld",
  2511. "email": "marijn.huizendveld@gmail.com"
  2512. },
  2513. {
  2514. "name": "Thibaud Fabre",
  2515. "email": "thibaud@aztech.io"
  2516. },
  2517. {
  2518. "name": "Ben Ramsey",
  2519. "email": "ben@benramsey.com",
  2520. "homepage": "https://benramsey.com"
  2521. }
  2522. ],
  2523. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2524. "homepage": "https://github.com/ramsey/uuid",
  2525. "keywords": [
  2526. "guid",
  2527. "identifier",
  2528. "uuid"
  2529. ],
  2530. "time": "2018-07-19T23:38:55+00:00"
  2531. },
  2532. {
  2533. "name": "simplesoftwareio/simple-qrcode",
  2534. "version": "2.0.0",
  2535. "source": {
  2536. "type": "git",
  2537. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  2538. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07"
  2539. },
  2540. "dist": {
  2541. "type": "zip",
  2542. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/90b2282dd29be1e52565e9832dc23af41610ea07",
  2543. "reference": "90b2282dd29be1e52565e9832dc23af41610ea07",
  2544. "shasum": "",
  2545. "mirrors": [
  2546. {
  2547. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2548. "preferred": true
  2549. }
  2550. ]
  2551. },
  2552. "require": {
  2553. "bacon/bacon-qr-code": "1.0.*",
  2554. "ext-gd": "*",
  2555. "illuminate/support": ">=5.0.0",
  2556. "php": ">=7.0"
  2557. },
  2558. "require-dev": {
  2559. "mockery/mockery": "0.9.*",
  2560. "phpunit/phpunit": "~6"
  2561. },
  2562. "type": "library",
  2563. "extra": {
  2564. "laravel": {
  2565. "providers": [
  2566. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  2567. ],
  2568. "aliases": {
  2569. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  2570. }
  2571. }
  2572. },
  2573. "autoload": {
  2574. "psr-0": {
  2575. "SimpleSoftwareIO\\QrCode\\": "src"
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Simple Software LLC",
  2585. "email": "support@simplesoftware.io"
  2586. }
  2587. ],
  2588. "description": "Simple QrCode is a QR code generator made for Laravel.",
  2589. "homepage": "http://www.simplesoftware.io",
  2590. "keywords": [
  2591. "Simple",
  2592. "generator",
  2593. "laravel",
  2594. "qrcode",
  2595. "wrapper"
  2596. ],
  2597. "time": "2017-11-26T15:27:12+00:00"
  2598. },
  2599. {
  2600. "name": "spatie/laravel-permission",
  2601. "version": "2.37.0",
  2602. "source": {
  2603. "type": "git",
  2604. "url": "https://github.com/spatie/laravel-permission.git",
  2605. "reference": "81dbe9d372d70c255b66a2727a235076509f8d45"
  2606. },
  2607. "dist": {
  2608. "type": "zip",
  2609. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/81dbe9d372d70c255b66a2727a235076509f8d45",
  2610. "reference": "81dbe9d372d70c255b66a2727a235076509f8d45",
  2611. "shasum": "",
  2612. "mirrors": [
  2613. {
  2614. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2615. "preferred": true
  2616. }
  2617. ]
  2618. },
  2619. "require": {
  2620. "illuminate/auth": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2621. "illuminate/container": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2622. "illuminate/contracts": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2623. "illuminate/database": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
  2624. "php": ">=7.0"
  2625. },
  2626. "require-dev": {
  2627. "orchestra/testbench": "~3.4.2|~3.5.0|~3.6.0|~3.7.0",
  2628. "phpunit/phpunit": "^5.7|6.2|^7.0",
  2629. "predis/predis": "^1.1"
  2630. },
  2631. "type": "library",
  2632. "extra": {
  2633. "laravel": {
  2634. "providers": [
  2635. "Spatie\\Permission\\PermissionServiceProvider"
  2636. ]
  2637. }
  2638. },
  2639. "autoload": {
  2640. "psr-4": {
  2641. "Spatie\\Permission\\": "src"
  2642. },
  2643. "files": [
  2644. "src/helpers.php"
  2645. ]
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "authors": [
  2652. {
  2653. "name": "Freek Van der Herten",
  2654. "email": "freek@spatie.be",
  2655. "homepage": "https://spatie.be",
  2656. "role": "Developer"
  2657. }
  2658. ],
  2659. "description": "Permission handling for Laravel 5.4 and up",
  2660. "homepage": "https://github.com/spatie/laravel-permission",
  2661. "keywords": [
  2662. "acl",
  2663. "laravel",
  2664. "permission",
  2665. "security",
  2666. "spatie"
  2667. ],
  2668. "time": "2019-04-09T12:45:17+00:00"
  2669. },
  2670. {
  2671. "name": "stevenyangecho/laravel-u-editor",
  2672. "version": "v1.4.2",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/stevenyangecho/laravel-u-editor.git",
  2676. "reference": "e8612da55f5a7ec1acf76cc2d03e3504ccb3bff9"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/stevenyangecho/laravel-u-editor/zipball/e8612da55f5a7ec1acf76cc2d03e3504ccb3bff9",
  2681. "reference": "e8612da55f5a7ec1acf76cc2d03e3504ccb3bff9",
  2682. "shasum": "",
  2683. "mirrors": [
  2684. {
  2685. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2686. "preferred": true
  2687. }
  2688. ]
  2689. },
  2690. "require": {
  2691. "ext-fileinfo": "*",
  2692. "illuminate/support": "5.*",
  2693. "php": ">=5.4.0",
  2694. "qiniu/php-sdk": "7.*"
  2695. },
  2696. "type": "library",
  2697. "autoload": {
  2698. "psr-4": {
  2699. "Stevenyangecho\\UEditor\\": "src/"
  2700. }
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Steven Yang",
  2709. "email": "yqmking@163.com"
  2710. }
  2711. ],
  2712. "description": "UEditor for laravel5. Support i18n. UEditor is a Rich Text Web Editor From Baidu.",
  2713. "keywords": [
  2714. "laravel",
  2715. "laravel-u-editor",
  2716. "laravel5 web text editor",
  2717. "steven yang",
  2718. "stevenyangecho",
  2719. "ueditor"
  2720. ],
  2721. "time": "2017-06-21T06:29:09+00:00"
  2722. },
  2723. {
  2724. "name": "swiftmailer/swiftmailer",
  2725. "version": "v6.2.1",
  2726. "source": {
  2727. "type": "git",
  2728. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2729. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  2730. },
  2731. "dist": {
  2732. "type": "zip",
  2733. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2734. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2735. "shasum": "",
  2736. "mirrors": [
  2737. {
  2738. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2739. "preferred": true
  2740. }
  2741. ]
  2742. },
  2743. "require": {
  2744. "egulias/email-validator": "~2.0",
  2745. "php": ">=7.0.0",
  2746. "symfony/polyfill-iconv": "^1.0",
  2747. "symfony/polyfill-intl-idn": "^1.10",
  2748. "symfony/polyfill-mbstring": "^1.0"
  2749. },
  2750. "require-dev": {
  2751. "mockery/mockery": "~0.9.1",
  2752. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2753. },
  2754. "suggest": {
  2755. "ext-intl": "Needed to support internationalized email addresses",
  2756. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2757. },
  2758. "type": "library",
  2759. "extra": {
  2760. "branch-alias": {
  2761. "dev-master": "6.2-dev"
  2762. }
  2763. },
  2764. "autoload": {
  2765. "files": [
  2766. "lib/swift_required.php"
  2767. ]
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Chris Corbyn"
  2776. },
  2777. {
  2778. "name": "Fabien Potencier",
  2779. "email": "fabien@symfony.com"
  2780. }
  2781. ],
  2782. "description": "Swiftmailer, free feature-rich PHP mailer",
  2783. "homepage": "https://swiftmailer.symfony.com",
  2784. "keywords": [
  2785. "email",
  2786. "mail",
  2787. "mailer"
  2788. ],
  2789. "time": "2019-04-21T09:21:45+00:00"
  2790. },
  2791. {
  2792. "name": "symfony/console",
  2793. "version": "v3.4.27",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/symfony/console.git",
  2797. "reference": "15a9104356436cb26e08adab97706654799d31d8"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/symfony/console/zipball/15a9104356436cb26e08adab97706654799d31d8",
  2802. "reference": "15a9104356436cb26e08adab97706654799d31d8",
  2803. "shasum": "",
  2804. "mirrors": [
  2805. {
  2806. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2807. "preferred": true
  2808. }
  2809. ]
  2810. },
  2811. "require": {
  2812. "php": "^5.5.9|>=7.0.8",
  2813. "symfony/debug": "~2.8|~3.0|~4.0",
  2814. "symfony/polyfill-mbstring": "~1.0"
  2815. },
  2816. "conflict": {
  2817. "symfony/dependency-injection": "<3.4",
  2818. "symfony/process": "<3.3"
  2819. },
  2820. "provide": {
  2821. "psr/log-implementation": "1.0"
  2822. },
  2823. "require-dev": {
  2824. "psr/log": "~1.0",
  2825. "symfony/config": "~3.3|~4.0",
  2826. "symfony/dependency-injection": "~3.4|~4.0",
  2827. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  2828. "symfony/lock": "~3.4|~4.0",
  2829. "symfony/process": "~3.3|~4.0"
  2830. },
  2831. "suggest": {
  2832. "psr/log": "For using the console logger",
  2833. "symfony/event-dispatcher": "",
  2834. "symfony/lock": "",
  2835. "symfony/process": ""
  2836. },
  2837. "type": "library",
  2838. "extra": {
  2839. "branch-alias": {
  2840. "dev-master": "3.4-dev"
  2841. }
  2842. },
  2843. "autoload": {
  2844. "psr-4": {
  2845. "Symfony\\Component\\Console\\": ""
  2846. },
  2847. "exclude-from-classmap": [
  2848. "/Tests/"
  2849. ]
  2850. },
  2851. "notification-url": "https://packagist.org/downloads/",
  2852. "license": [
  2853. "MIT"
  2854. ],
  2855. "authors": [
  2856. {
  2857. "name": "Fabien Potencier",
  2858. "email": "fabien@symfony.com"
  2859. },
  2860. {
  2861. "name": "Symfony Community",
  2862. "homepage": "https://symfony.com/contributors"
  2863. }
  2864. ],
  2865. "description": "Symfony Console Component",
  2866. "homepage": "https://symfony.com",
  2867. "time": "2019-04-08T09:29:13+00:00"
  2868. },
  2869. {
  2870. "name": "symfony/css-selector",
  2871. "version": "v3.4.27",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/symfony/css-selector.git",
  2875. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  2880. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  2881. "shasum": "",
  2882. "mirrors": [
  2883. {
  2884. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2885. "preferred": true
  2886. }
  2887. ]
  2888. },
  2889. "require": {
  2890. "php": "^5.5.9|>=7.0.8"
  2891. },
  2892. "type": "library",
  2893. "extra": {
  2894. "branch-alias": {
  2895. "dev-master": "3.4-dev"
  2896. }
  2897. },
  2898. "autoload": {
  2899. "psr-4": {
  2900. "Symfony\\Component\\CssSelector\\": ""
  2901. },
  2902. "exclude-from-classmap": [
  2903. "/Tests/"
  2904. ]
  2905. },
  2906. "notification-url": "https://packagist.org/downloads/",
  2907. "license": [
  2908. "MIT"
  2909. ],
  2910. "authors": [
  2911. {
  2912. "name": "Jean-François Simon",
  2913. "email": "jeanfrancois.simon@sensiolabs.com"
  2914. },
  2915. {
  2916. "name": "Fabien Potencier",
  2917. "email": "fabien@symfony.com"
  2918. },
  2919. {
  2920. "name": "Symfony Community",
  2921. "homepage": "https://symfony.com/contributors"
  2922. }
  2923. ],
  2924. "description": "Symfony CssSelector Component",
  2925. "homepage": "https://symfony.com",
  2926. "time": "2019-01-16T09:39:14+00:00"
  2927. },
  2928. {
  2929. "name": "symfony/debug",
  2930. "version": "v3.4.27",
  2931. "source": {
  2932. "type": "git",
  2933. "url": "https://github.com/symfony/debug.git",
  2934. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9"
  2935. },
  2936. "dist": {
  2937. "type": "zip",
  2938. "url": "https://api.github.com/repos/symfony/debug/zipball/681afbb26488903c5ac15e63734f1d8ac430c9b9",
  2939. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9",
  2940. "shasum": "",
  2941. "mirrors": [
  2942. {
  2943. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2944. "preferred": true
  2945. }
  2946. ]
  2947. },
  2948. "require": {
  2949. "php": "^5.5.9|>=7.0.8",
  2950. "psr/log": "~1.0"
  2951. },
  2952. "conflict": {
  2953. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  2954. },
  2955. "require-dev": {
  2956. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  2957. },
  2958. "type": "library",
  2959. "extra": {
  2960. "branch-alias": {
  2961. "dev-master": "3.4-dev"
  2962. }
  2963. },
  2964. "autoload": {
  2965. "psr-4": {
  2966. "Symfony\\Component\\Debug\\": ""
  2967. },
  2968. "exclude-from-classmap": [
  2969. "/Tests/"
  2970. ]
  2971. },
  2972. "notification-url": "https://packagist.org/downloads/",
  2973. "license": [
  2974. "MIT"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "Fabien Potencier",
  2979. "email": "fabien@symfony.com"
  2980. },
  2981. {
  2982. "name": "Symfony Community",
  2983. "homepage": "https://symfony.com/contributors"
  2984. }
  2985. ],
  2986. "description": "Symfony Debug Component",
  2987. "homepage": "https://symfony.com",
  2988. "time": "2019-04-11T09:48:14+00:00"
  2989. },
  2990. {
  2991. "name": "symfony/event-dispatcher",
  2992. "version": "v3.4.27",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/symfony/event-dispatcher.git",
  2996. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a088aafcefb4eef2520a290ed82e4374092a6dff",
  3001. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff",
  3002. "shasum": "",
  3003. "mirrors": [
  3004. {
  3005. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3006. "preferred": true
  3007. }
  3008. ]
  3009. },
  3010. "require": {
  3011. "php": "^5.5.9|>=7.0.8"
  3012. },
  3013. "conflict": {
  3014. "symfony/dependency-injection": "<3.3"
  3015. },
  3016. "require-dev": {
  3017. "psr/log": "~1.0",
  3018. "symfony/config": "~2.8|~3.0|~4.0",
  3019. "symfony/dependency-injection": "~3.3|~4.0",
  3020. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3021. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  3022. },
  3023. "suggest": {
  3024. "symfony/dependency-injection": "",
  3025. "symfony/http-kernel": ""
  3026. },
  3027. "type": "library",
  3028. "extra": {
  3029. "branch-alias": {
  3030. "dev-master": "3.4-dev"
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "Symfony\\Component\\EventDispatcher\\": ""
  3036. },
  3037. "exclude-from-classmap": [
  3038. "/Tests/"
  3039. ]
  3040. },
  3041. "notification-url": "https://packagist.org/downloads/",
  3042. "license": [
  3043. "MIT"
  3044. ],
  3045. "authors": [
  3046. {
  3047. "name": "Fabien Potencier",
  3048. "email": "fabien@symfony.com"
  3049. },
  3050. {
  3051. "name": "Symfony Community",
  3052. "homepage": "https://symfony.com/contributors"
  3053. }
  3054. ],
  3055. "description": "Symfony EventDispatcher Component",
  3056. "homepage": "https://symfony.com",
  3057. "time": "2019-04-02T08:51:52+00:00"
  3058. },
  3059. {
  3060. "name": "symfony/finder",
  3061. "version": "v3.4.27",
  3062. "source": {
  3063. "type": "git",
  3064. "url": "https://github.com/symfony/finder.git",
  3065. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98"
  3066. },
  3067. "dist": {
  3068. "type": "zip",
  3069. "url": "https://api.github.com/repos/symfony/finder/zipball/61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  3070. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  3071. "shasum": "",
  3072. "mirrors": [
  3073. {
  3074. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3075. "preferred": true
  3076. }
  3077. ]
  3078. },
  3079. "require": {
  3080. "php": "^5.5.9|>=7.0.8"
  3081. },
  3082. "type": "library",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-master": "3.4-dev"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Symfony\\Component\\Finder\\": ""
  3091. },
  3092. "exclude-from-classmap": [
  3093. "/Tests/"
  3094. ]
  3095. },
  3096. "notification-url": "https://packagist.org/downloads/",
  3097. "license": [
  3098. "MIT"
  3099. ],
  3100. "authors": [
  3101. {
  3102. "name": "Fabien Potencier",
  3103. "email": "fabien@symfony.com"
  3104. },
  3105. {
  3106. "name": "Symfony Community",
  3107. "homepage": "https://symfony.com/contributors"
  3108. }
  3109. ],
  3110. "description": "Symfony Finder Component",
  3111. "homepage": "https://symfony.com",
  3112. "time": "2019-04-02T19:54:57+00:00"
  3113. },
  3114. {
  3115. "name": "symfony/http-foundation",
  3116. "version": "v3.4.27",
  3117. "source": {
  3118. "type": "git",
  3119. "url": "https://github.com/symfony/http-foundation.git",
  3120. "reference": "fa02215233be8de1c2b44617088192f9e8db3512"
  3121. },
  3122. "dist": {
  3123. "type": "zip",
  3124. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fa02215233be8de1c2b44617088192f9e8db3512",
  3125. "reference": "fa02215233be8de1c2b44617088192f9e8db3512",
  3126. "shasum": "",
  3127. "mirrors": [
  3128. {
  3129. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3130. "preferred": true
  3131. }
  3132. ]
  3133. },
  3134. "require": {
  3135. "php": "^5.5.9|>=7.0.8",
  3136. "symfony/polyfill-mbstring": "~1.1",
  3137. "symfony/polyfill-php70": "~1.6"
  3138. },
  3139. "require-dev": {
  3140. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3141. },
  3142. "type": "library",
  3143. "extra": {
  3144. "branch-alias": {
  3145. "dev-master": "3.4-dev"
  3146. }
  3147. },
  3148. "autoload": {
  3149. "psr-4": {
  3150. "Symfony\\Component\\HttpFoundation\\": ""
  3151. },
  3152. "exclude-from-classmap": [
  3153. "/Tests/"
  3154. ]
  3155. },
  3156. "notification-url": "https://packagist.org/downloads/",
  3157. "license": [
  3158. "MIT"
  3159. ],
  3160. "authors": [
  3161. {
  3162. "name": "Fabien Potencier",
  3163. "email": "fabien@symfony.com"
  3164. },
  3165. {
  3166. "name": "Symfony Community",
  3167. "homepage": "https://symfony.com/contributors"
  3168. }
  3169. ],
  3170. "description": "Symfony HttpFoundation Component",
  3171. "homepage": "https://symfony.com",
  3172. "time": "2019-05-01T08:04:33+00:00"
  3173. },
  3174. {
  3175. "name": "symfony/http-kernel",
  3176. "version": "v3.4.27",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://github.com/symfony/http-kernel.git",
  3180. "reference": "586046f5adc6a08eaebbe4519ef18ad52f54e453"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/586046f5adc6a08eaebbe4519ef18ad52f54e453",
  3185. "reference": "586046f5adc6a08eaebbe4519ef18ad52f54e453",
  3186. "shasum": "",
  3187. "mirrors": [
  3188. {
  3189. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3190. "preferred": true
  3191. }
  3192. ]
  3193. },
  3194. "require": {
  3195. "php": "^5.5.9|>=7.0.8",
  3196. "psr/log": "~1.0",
  3197. "symfony/debug": "^3.3.3|~4.0",
  3198. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  3199. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  3200. "symfony/polyfill-ctype": "~1.8"
  3201. },
  3202. "conflict": {
  3203. "symfony/config": "<2.8",
  3204. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  3205. "symfony/var-dumper": "<3.3",
  3206. "twig/twig": "<1.34|<2.4,>=2"
  3207. },
  3208. "provide": {
  3209. "psr/log-implementation": "1.0"
  3210. },
  3211. "require-dev": {
  3212. "psr/cache": "~1.0",
  3213. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  3214. "symfony/class-loader": "~2.8|~3.0",
  3215. "symfony/config": "~2.8|~3.0|~4.0",
  3216. "symfony/console": "~2.8|~3.0|~4.0",
  3217. "symfony/css-selector": "~2.8|~3.0|~4.0",
  3218. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  3219. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  3220. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3221. "symfony/finder": "~2.8|~3.0|~4.0",
  3222. "symfony/process": "~2.8|~3.0|~4.0",
  3223. "symfony/routing": "~3.4|~4.0",
  3224. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  3225. "symfony/templating": "~2.8|~3.0|~4.0",
  3226. "symfony/translation": "~2.8|~3.0|~4.0",
  3227. "symfony/var-dumper": "~3.3|~4.0"
  3228. },
  3229. "suggest": {
  3230. "symfony/browser-kit": "",
  3231. "symfony/config": "",
  3232. "symfony/console": "",
  3233. "symfony/dependency-injection": "",
  3234. "symfony/finder": "",
  3235. "symfony/var-dumper": ""
  3236. },
  3237. "type": "library",
  3238. "extra": {
  3239. "branch-alias": {
  3240. "dev-master": "3.4-dev"
  3241. }
  3242. },
  3243. "autoload": {
  3244. "psr-4": {
  3245. "Symfony\\Component\\HttpKernel\\": ""
  3246. },
  3247. "exclude-from-classmap": [
  3248. "/Tests/"
  3249. ]
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "Fabien Potencier",
  3258. "email": "fabien@symfony.com"
  3259. },
  3260. {
  3261. "name": "Symfony Community",
  3262. "homepage": "https://symfony.com/contributors"
  3263. }
  3264. ],
  3265. "description": "Symfony HttpKernel Component",
  3266. "homepage": "https://symfony.com",
  3267. "time": "2019-05-01T13:03:24+00:00"
  3268. },
  3269. {
  3270. "name": "symfony/polyfill-ctype",
  3271. "version": "v1.11.0",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://github.com/symfony/polyfill-ctype.git",
  3275. "reference": "82ebae02209c21113908c229e9883c419720738a"
  3276. },
  3277. "dist": {
  3278. "type": "zip",
  3279. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  3280. "reference": "82ebae02209c21113908c229e9883c419720738a",
  3281. "shasum": "",
  3282. "mirrors": [
  3283. {
  3284. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3285. "preferred": true
  3286. }
  3287. ]
  3288. },
  3289. "require": {
  3290. "php": ">=5.3.3"
  3291. },
  3292. "suggest": {
  3293. "ext-ctype": "For best performance"
  3294. },
  3295. "type": "library",
  3296. "extra": {
  3297. "branch-alias": {
  3298. "dev-master": "1.11-dev"
  3299. }
  3300. },
  3301. "autoload": {
  3302. "psr-4": {
  3303. "Symfony\\Polyfill\\Ctype\\": ""
  3304. },
  3305. "files": [
  3306. "bootstrap.php"
  3307. ]
  3308. },
  3309. "notification-url": "https://packagist.org/downloads/",
  3310. "license": [
  3311. "MIT"
  3312. ],
  3313. "authors": [
  3314. {
  3315. "name": "Symfony Community",
  3316. "homepage": "https://symfony.com/contributors"
  3317. },
  3318. {
  3319. "name": "Gert de Pagter",
  3320. "email": "BackEndTea@gmail.com"
  3321. }
  3322. ],
  3323. "description": "Symfony polyfill for ctype functions",
  3324. "homepage": "https://symfony.com",
  3325. "keywords": [
  3326. "compatibility",
  3327. "ctype",
  3328. "polyfill",
  3329. "portable"
  3330. ],
  3331. "time": "2019-02-06T07:57:58+00:00"
  3332. },
  3333. {
  3334. "name": "symfony/polyfill-iconv",
  3335. "version": "v1.11.0",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/symfony/polyfill-iconv.git",
  3339. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  3344. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  3345. "shasum": "",
  3346. "mirrors": [
  3347. {
  3348. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3349. "preferred": true
  3350. }
  3351. ]
  3352. },
  3353. "require": {
  3354. "php": ">=5.3.3"
  3355. },
  3356. "suggest": {
  3357. "ext-iconv": "For best performance"
  3358. },
  3359. "type": "library",
  3360. "extra": {
  3361. "branch-alias": {
  3362. "dev-master": "1.11-dev"
  3363. }
  3364. },
  3365. "autoload": {
  3366. "psr-4": {
  3367. "Symfony\\Polyfill\\Iconv\\": ""
  3368. },
  3369. "files": [
  3370. "bootstrap.php"
  3371. ]
  3372. },
  3373. "notification-url": "https://packagist.org/downloads/",
  3374. "license": [
  3375. "MIT"
  3376. ],
  3377. "authors": [
  3378. {
  3379. "name": "Nicolas Grekas",
  3380. "email": "p@tchwork.com"
  3381. },
  3382. {
  3383. "name": "Symfony Community",
  3384. "homepage": "https://symfony.com/contributors"
  3385. }
  3386. ],
  3387. "description": "Symfony polyfill for the Iconv extension",
  3388. "homepage": "https://symfony.com",
  3389. "keywords": [
  3390. "compatibility",
  3391. "iconv",
  3392. "polyfill",
  3393. "portable",
  3394. "shim"
  3395. ],
  3396. "time": "2019-02-06T07:57:58+00:00"
  3397. },
  3398. {
  3399. "name": "symfony/polyfill-intl-idn",
  3400. "version": "v1.11.0",
  3401. "source": {
  3402. "type": "git",
  3403. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3404. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  3405. },
  3406. "dist": {
  3407. "type": "zip",
  3408. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  3409. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  3410. "shasum": "",
  3411. "mirrors": [
  3412. {
  3413. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3414. "preferred": true
  3415. }
  3416. ]
  3417. },
  3418. "require": {
  3419. "php": ">=5.3.3",
  3420. "symfony/polyfill-mbstring": "^1.3",
  3421. "symfony/polyfill-php72": "^1.9"
  3422. },
  3423. "suggest": {
  3424. "ext-intl": "For best performance"
  3425. },
  3426. "type": "library",
  3427. "extra": {
  3428. "branch-alias": {
  3429. "dev-master": "1.9-dev"
  3430. }
  3431. },
  3432. "autoload": {
  3433. "psr-4": {
  3434. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3435. },
  3436. "files": [
  3437. "bootstrap.php"
  3438. ]
  3439. },
  3440. "notification-url": "https://packagist.org/downloads/",
  3441. "license": [
  3442. "MIT"
  3443. ],
  3444. "authors": [
  3445. {
  3446. "name": "Symfony Community",
  3447. "homepage": "https://symfony.com/contributors"
  3448. },
  3449. {
  3450. "name": "Laurent Bassin",
  3451. "email": "laurent@bassin.info"
  3452. }
  3453. ],
  3454. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3455. "homepage": "https://symfony.com",
  3456. "keywords": [
  3457. "compatibility",
  3458. "idn",
  3459. "intl",
  3460. "polyfill",
  3461. "portable",
  3462. "shim"
  3463. ],
  3464. "time": "2019-03-04T13:44:35+00:00"
  3465. },
  3466. {
  3467. "name": "symfony/polyfill-mbstring",
  3468. "version": "v1.11.0",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3472. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  3477. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  3478. "shasum": "",
  3479. "mirrors": [
  3480. {
  3481. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3482. "preferred": true
  3483. }
  3484. ]
  3485. },
  3486. "require": {
  3487. "php": ">=5.3.3"
  3488. },
  3489. "suggest": {
  3490. "ext-mbstring": "For best performance"
  3491. },
  3492. "type": "library",
  3493. "extra": {
  3494. "branch-alias": {
  3495. "dev-master": "1.11-dev"
  3496. }
  3497. },
  3498. "autoload": {
  3499. "psr-4": {
  3500. "Symfony\\Polyfill\\Mbstring\\": ""
  3501. },
  3502. "files": [
  3503. "bootstrap.php"
  3504. ]
  3505. },
  3506. "notification-url": "https://packagist.org/downloads/",
  3507. "license": [
  3508. "MIT"
  3509. ],
  3510. "authors": [
  3511. {
  3512. "name": "Nicolas Grekas",
  3513. "email": "p@tchwork.com"
  3514. },
  3515. {
  3516. "name": "Symfony Community",
  3517. "homepage": "https://symfony.com/contributors"
  3518. }
  3519. ],
  3520. "description": "Symfony polyfill for the Mbstring extension",
  3521. "homepage": "https://symfony.com",
  3522. "keywords": [
  3523. "compatibility",
  3524. "mbstring",
  3525. "polyfill",
  3526. "portable",
  3527. "shim"
  3528. ],
  3529. "time": "2019-02-06T07:57:58+00:00"
  3530. },
  3531. {
  3532. "name": "symfony/polyfill-php56",
  3533. "version": "v1.11.0",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/symfony/polyfill-php56.git",
  3537. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  3542. "reference": "f4dddbc5c3471e1b700a147a20ae17cdb72dbe42",
  3543. "shasum": "",
  3544. "mirrors": [
  3545. {
  3546. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3547. "preferred": true
  3548. }
  3549. ]
  3550. },
  3551. "require": {
  3552. "php": ">=5.3.3",
  3553. "symfony/polyfill-util": "~1.0"
  3554. },
  3555. "type": "library",
  3556. "extra": {
  3557. "branch-alias": {
  3558. "dev-master": "1.11-dev"
  3559. }
  3560. },
  3561. "autoload": {
  3562. "psr-4": {
  3563. "Symfony\\Polyfill\\Php56\\": ""
  3564. },
  3565. "files": [
  3566. "bootstrap.php"
  3567. ]
  3568. },
  3569. "notification-url": "https://packagist.org/downloads/",
  3570. "license": [
  3571. "MIT"
  3572. ],
  3573. "authors": [
  3574. {
  3575. "name": "Nicolas Grekas",
  3576. "email": "p@tchwork.com"
  3577. },
  3578. {
  3579. "name": "Symfony Community",
  3580. "homepage": "https://symfony.com/contributors"
  3581. }
  3582. ],
  3583. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3584. "homepage": "https://symfony.com",
  3585. "keywords": [
  3586. "compatibility",
  3587. "polyfill",
  3588. "portable",
  3589. "shim"
  3590. ],
  3591. "time": "2019-02-06T07:57:58+00:00"
  3592. },
  3593. {
  3594. "name": "symfony/polyfill-php70",
  3595. "version": "v1.11.0",
  3596. "source": {
  3597. "type": "git",
  3598. "url": "https://github.com/symfony/polyfill-php70.git",
  3599. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  3600. },
  3601. "dist": {
  3602. "type": "zip",
  3603. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  3604. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  3605. "shasum": "",
  3606. "mirrors": [
  3607. {
  3608. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3609. "preferred": true
  3610. }
  3611. ]
  3612. },
  3613. "require": {
  3614. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  3615. "php": ">=5.3.3"
  3616. },
  3617. "type": "library",
  3618. "extra": {
  3619. "branch-alias": {
  3620. "dev-master": "1.11-dev"
  3621. }
  3622. },
  3623. "autoload": {
  3624. "psr-4": {
  3625. "Symfony\\Polyfill\\Php70\\": ""
  3626. },
  3627. "files": [
  3628. "bootstrap.php"
  3629. ],
  3630. "classmap": [
  3631. "Resources/stubs"
  3632. ]
  3633. },
  3634. "notification-url": "https://packagist.org/downloads/",
  3635. "license": [
  3636. "MIT"
  3637. ],
  3638. "authors": [
  3639. {
  3640. "name": "Nicolas Grekas",
  3641. "email": "p@tchwork.com"
  3642. },
  3643. {
  3644. "name": "Symfony Community",
  3645. "homepage": "https://symfony.com/contributors"
  3646. }
  3647. ],
  3648. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3649. "homepage": "https://symfony.com",
  3650. "keywords": [
  3651. "compatibility",
  3652. "polyfill",
  3653. "portable",
  3654. "shim"
  3655. ],
  3656. "time": "2019-02-06T07:57:58+00:00"
  3657. },
  3658. {
  3659. "name": "symfony/polyfill-php72",
  3660. "version": "v1.11.0",
  3661. "source": {
  3662. "type": "git",
  3663. "url": "https://github.com/symfony/polyfill-php72.git",
  3664. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  3665. },
  3666. "dist": {
  3667. "type": "zip",
  3668. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  3669. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  3670. "shasum": "",
  3671. "mirrors": [
  3672. {
  3673. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3674. "preferred": true
  3675. }
  3676. ]
  3677. },
  3678. "require": {
  3679. "php": ">=5.3.3"
  3680. },
  3681. "type": "library",
  3682. "extra": {
  3683. "branch-alias": {
  3684. "dev-master": "1.11-dev"
  3685. }
  3686. },
  3687. "autoload": {
  3688. "psr-4": {
  3689. "Symfony\\Polyfill\\Php72\\": ""
  3690. },
  3691. "files": [
  3692. "bootstrap.php"
  3693. ]
  3694. },
  3695. "notification-url": "https://packagist.org/downloads/",
  3696. "license": [
  3697. "MIT"
  3698. ],
  3699. "authors": [
  3700. {
  3701. "name": "Nicolas Grekas",
  3702. "email": "p@tchwork.com"
  3703. },
  3704. {
  3705. "name": "Symfony Community",
  3706. "homepage": "https://symfony.com/contributors"
  3707. }
  3708. ],
  3709. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3710. "homepage": "https://symfony.com",
  3711. "keywords": [
  3712. "compatibility",
  3713. "polyfill",
  3714. "portable",
  3715. "shim"
  3716. ],
  3717. "time": "2019-02-06T07:57:58+00:00"
  3718. },
  3719. {
  3720. "name": "symfony/polyfill-util",
  3721. "version": "v1.11.0",
  3722. "source": {
  3723. "type": "git",
  3724. "url": "https://github.com/symfony/polyfill-util.git",
  3725. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897"
  3726. },
  3727. "dist": {
  3728. "type": "zip",
  3729. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/b46c6cae28a3106735323f00a0c38eccf2328897",
  3730. "reference": "b46c6cae28a3106735323f00a0c38eccf2328897",
  3731. "shasum": "",
  3732. "mirrors": [
  3733. {
  3734. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3735. "preferred": true
  3736. }
  3737. ]
  3738. },
  3739. "require": {
  3740. "php": ">=5.3.3"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-master": "1.11-dev"
  3746. }
  3747. },
  3748. "autoload": {
  3749. "psr-4": {
  3750. "Symfony\\Polyfill\\Util\\": ""
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "MIT"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "Nicolas Grekas",
  3760. "email": "p@tchwork.com"
  3761. },
  3762. {
  3763. "name": "Symfony Community",
  3764. "homepage": "https://symfony.com/contributors"
  3765. }
  3766. ],
  3767. "description": "Symfony utilities for portability of PHP codes",
  3768. "homepage": "https://symfony.com",
  3769. "keywords": [
  3770. "compat",
  3771. "compatibility",
  3772. "polyfill",
  3773. "shim"
  3774. ],
  3775. "time": "2019-02-08T14:16:39+00:00"
  3776. },
  3777. {
  3778. "name": "symfony/process",
  3779. "version": "v3.4.27",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/symfony/process.git",
  3783. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/symfony/process/zipball/a9c4dfbf653023b668c282e4e02609d131f4057a",
  3788. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a",
  3789. "shasum": "",
  3790. "mirrors": [
  3791. {
  3792. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3793. "preferred": true
  3794. }
  3795. ]
  3796. },
  3797. "require": {
  3798. "php": "^5.5.9|>=7.0.8"
  3799. },
  3800. "type": "library",
  3801. "extra": {
  3802. "branch-alias": {
  3803. "dev-master": "3.4-dev"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "psr-4": {
  3808. "Symfony\\Component\\Process\\": ""
  3809. },
  3810. "exclude-from-classmap": [
  3811. "/Tests/"
  3812. ]
  3813. },
  3814. "notification-url": "https://packagist.org/downloads/",
  3815. "license": [
  3816. "MIT"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "Fabien Potencier",
  3821. "email": "fabien@symfony.com"
  3822. },
  3823. {
  3824. "name": "Symfony Community",
  3825. "homepage": "https://symfony.com/contributors"
  3826. }
  3827. ],
  3828. "description": "Symfony Process Component",
  3829. "homepage": "https://symfony.com",
  3830. "time": "2019-04-08T16:15:54+00:00"
  3831. },
  3832. {
  3833. "name": "symfony/routing",
  3834. "version": "v3.4.27",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://github.com/symfony/routing.git",
  3838. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://api.github.com/repos/symfony/routing/zipball/ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  3843. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  3844. "shasum": "",
  3845. "mirrors": [
  3846. {
  3847. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3848. "preferred": true
  3849. }
  3850. ]
  3851. },
  3852. "require": {
  3853. "php": "^5.5.9|>=7.0.8"
  3854. },
  3855. "conflict": {
  3856. "symfony/config": "<3.3.1",
  3857. "symfony/dependency-injection": "<3.3",
  3858. "symfony/yaml": "<3.4"
  3859. },
  3860. "require-dev": {
  3861. "doctrine/annotations": "~1.0",
  3862. "psr/log": "~1.0",
  3863. "symfony/config": "^3.3.1|~4.0",
  3864. "symfony/dependency-injection": "~3.3|~4.0",
  3865. "symfony/expression-language": "~2.8|~3.0|~4.0",
  3866. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  3867. "symfony/yaml": "~3.4|~4.0"
  3868. },
  3869. "suggest": {
  3870. "doctrine/annotations": "For using the annotation loader",
  3871. "symfony/config": "For using the all-in-one router or any loader",
  3872. "symfony/expression-language": "For using expression matching",
  3873. "symfony/http-foundation": "For using a Symfony Request object",
  3874. "symfony/yaml": "For using the YAML loader"
  3875. },
  3876. "type": "library",
  3877. "extra": {
  3878. "branch-alias": {
  3879. "dev-master": "3.4-dev"
  3880. }
  3881. },
  3882. "autoload": {
  3883. "psr-4": {
  3884. "Symfony\\Component\\Routing\\": ""
  3885. },
  3886. "exclude-from-classmap": [
  3887. "/Tests/"
  3888. ]
  3889. },
  3890. "notification-url": "https://packagist.org/downloads/",
  3891. "license": [
  3892. "MIT"
  3893. ],
  3894. "authors": [
  3895. {
  3896. "name": "Fabien Potencier",
  3897. "email": "fabien@symfony.com"
  3898. },
  3899. {
  3900. "name": "Symfony Community",
  3901. "homepage": "https://symfony.com/contributors"
  3902. }
  3903. ],
  3904. "description": "Symfony Routing Component",
  3905. "homepage": "https://symfony.com",
  3906. "keywords": [
  3907. "router",
  3908. "routing",
  3909. "uri",
  3910. "url"
  3911. ],
  3912. "time": "2019-03-29T21:58:42+00:00"
  3913. },
  3914. {
  3915. "name": "symfony/translation",
  3916. "version": "v3.4.27",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/symfony/translation.git",
  3920. "reference": "301a5d627220a1c4ee522813b0028653af6c4f54"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/symfony/translation/zipball/301a5d627220a1c4ee522813b0028653af6c4f54",
  3925. "reference": "301a5d627220a1c4ee522813b0028653af6c4f54",
  3926. "shasum": "",
  3927. "mirrors": [
  3928. {
  3929. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3930. "preferred": true
  3931. }
  3932. ]
  3933. },
  3934. "require": {
  3935. "php": "^5.5.9|>=7.0.8",
  3936. "symfony/polyfill-mbstring": "~1.0"
  3937. },
  3938. "conflict": {
  3939. "symfony/config": "<2.8",
  3940. "symfony/dependency-injection": "<3.4",
  3941. "symfony/yaml": "<3.4"
  3942. },
  3943. "require-dev": {
  3944. "psr/log": "~1.0",
  3945. "symfony/config": "~2.8|~3.0|~4.0",
  3946. "symfony/dependency-injection": "~3.4|~4.0",
  3947. "symfony/finder": "~2.8|~3.0|~4.0",
  3948. "symfony/http-kernel": "~3.4|~4.0",
  3949. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  3950. "symfony/var-dumper": "~3.4|~4.0",
  3951. "symfony/yaml": "~3.4|~4.0"
  3952. },
  3953. "suggest": {
  3954. "psr/log-implementation": "To use logging capability in translator",
  3955. "symfony/config": "",
  3956. "symfony/yaml": ""
  3957. },
  3958. "type": "library",
  3959. "extra": {
  3960. "branch-alias": {
  3961. "dev-master": "3.4-dev"
  3962. }
  3963. },
  3964. "autoload": {
  3965. "psr-4": {
  3966. "Symfony\\Component\\Translation\\": ""
  3967. },
  3968. "exclude-from-classmap": [
  3969. "/Tests/"
  3970. ]
  3971. },
  3972. "notification-url": "https://packagist.org/downloads/",
  3973. "license": [
  3974. "MIT"
  3975. ],
  3976. "authors": [
  3977. {
  3978. "name": "Fabien Potencier",
  3979. "email": "fabien@symfony.com"
  3980. },
  3981. {
  3982. "name": "Symfony Community",
  3983. "homepage": "https://symfony.com/contributors"
  3984. }
  3985. ],
  3986. "description": "Symfony Translation Component",
  3987. "homepage": "https://symfony.com",
  3988. "time": "2019-05-01T11:10:09+00:00"
  3989. },
  3990. {
  3991. "name": "symfony/var-dumper",
  3992. "version": "v3.4.27",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/symfony/var-dumper.git",
  3996. "reference": "ca5fef348a0440411bbca0f9ec14e9a11625bd6a"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ca5fef348a0440411bbca0f9ec14e9a11625bd6a",
  4001. "reference": "ca5fef348a0440411bbca0f9ec14e9a11625bd6a",
  4002. "shasum": "",
  4003. "mirrors": [
  4004. {
  4005. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4006. "preferred": true
  4007. }
  4008. ]
  4009. },
  4010. "require": {
  4011. "php": "^5.5.9|>=7.0.8",
  4012. "symfony/polyfill-mbstring": "~1.0"
  4013. },
  4014. "conflict": {
  4015. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  4016. },
  4017. "require-dev": {
  4018. "ext-iconv": "*",
  4019. "twig/twig": "~1.34|~2.4"
  4020. },
  4021. "suggest": {
  4022. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4023. "ext-intl": "To show region name in time zone dump",
  4024. "ext-symfony_debug": ""
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-master": "3.4-dev"
  4030. }
  4031. },
  4032. "autoload": {
  4033. "files": [
  4034. "Resources/functions/dump.php"
  4035. ],
  4036. "psr-4": {
  4037. "Symfony\\Component\\VarDumper\\": ""
  4038. },
  4039. "exclude-from-classmap": [
  4040. "/Tests/"
  4041. ]
  4042. },
  4043. "notification-url": "https://packagist.org/downloads/",
  4044. "license": [
  4045. "MIT"
  4046. ],
  4047. "authors": [
  4048. {
  4049. "name": "Nicolas Grekas",
  4050. "email": "p@tchwork.com"
  4051. },
  4052. {
  4053. "name": "Symfony Community",
  4054. "homepage": "https://symfony.com/contributors"
  4055. }
  4056. ],
  4057. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4058. "homepage": "https://symfony.com",
  4059. "keywords": [
  4060. "debug",
  4061. "dump"
  4062. ],
  4063. "time": "2019-05-01T09:52:10+00:00"
  4064. },
  4065. {
  4066. "name": "tijsverkoyen/css-to-inline-styles",
  4067. "version": "2.2.1",
  4068. "source": {
  4069. "type": "git",
  4070. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4071. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  4072. },
  4073. "dist": {
  4074. "type": "zip",
  4075. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4076. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4077. "shasum": "",
  4078. "mirrors": [
  4079. {
  4080. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4081. "preferred": true
  4082. }
  4083. ]
  4084. },
  4085. "require": {
  4086. "php": "^5.5 || ^7.0",
  4087. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  4088. },
  4089. "require-dev": {
  4090. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4091. },
  4092. "type": "library",
  4093. "extra": {
  4094. "branch-alias": {
  4095. "dev-master": "2.2.x-dev"
  4096. }
  4097. },
  4098. "autoload": {
  4099. "psr-4": {
  4100. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4101. }
  4102. },
  4103. "notification-url": "https://packagist.org/downloads/",
  4104. "license": [
  4105. "BSD-3-Clause"
  4106. ],
  4107. "authors": [
  4108. {
  4109. "name": "Tijs Verkoyen",
  4110. "email": "css_to_inline_styles@verkoyen.eu",
  4111. "role": "Developer"
  4112. }
  4113. ],
  4114. "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.",
  4115. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4116. "time": "2017-11-27T11:13:29+00:00"
  4117. },
  4118. {
  4119. "name": "tymon/jwt-auth",
  4120. "version": "dev-develop",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/tymondesigns/jwt-auth.git",
  4124. "reference": "63698d304554e5d0bc3eb481cc260a9fc900e151"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/63698d304554e5d0bc3eb481cc260a9fc900e151",
  4129. "reference": "63698d304554e5d0bc3eb481cc260a9fc900e151",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "illuminate/auth": "^5.1",
  4140. "illuminate/contracts": "^5.1",
  4141. "illuminate/http": "^5.1",
  4142. "illuminate/support": "^5.1",
  4143. "lcobucci/jwt": "^3.2",
  4144. "namshi/jose": "^7.0",
  4145. "nesbot/carbon": "^1.0 || ^2.0",
  4146. "php": "^5.5.9 || ^7.0"
  4147. },
  4148. "require-dev": {
  4149. "cartalyst/sentinel": "2.0.*",
  4150. "illuminate/console": "^5.1",
  4151. "illuminate/database": "^5.1",
  4152. "illuminate/routing": "^5.1",
  4153. "mockery/mockery": ">=0.9.9",
  4154. "phpunit/phpunit": "~4.8 || ~6.0"
  4155. },
  4156. "type": "library",
  4157. "extra": {
  4158. "branch-alias": {
  4159. "dev-develop": "1.0-dev"
  4160. },
  4161. "laravel": {
  4162. "aliases": {
  4163. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  4164. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  4165. },
  4166. "providers": [
  4167. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  4168. ]
  4169. }
  4170. },
  4171. "autoload": {
  4172. "psr-4": {
  4173. "Tymon\\JWTAuth\\": "src/"
  4174. }
  4175. },
  4176. "notification-url": "https://packagist.org/downloads/",
  4177. "license": [
  4178. "MIT"
  4179. ],
  4180. "authors": [
  4181. {
  4182. "name": "Sean Tymon",
  4183. "email": "tymon148@gmail.com",
  4184. "homepage": "https://tymon.xyz",
  4185. "role": "Developer"
  4186. }
  4187. ],
  4188. "description": "JSON Web Token Authentication for Laravel and Lumen",
  4189. "homepage": "https://github.com/tymondesigns/jwt-auth",
  4190. "keywords": [
  4191. "Authentication",
  4192. "JSON Web Token",
  4193. "auth",
  4194. "jwt",
  4195. "laravel"
  4196. ],
  4197. "time": "2019-03-14T20:29:20+00:00"
  4198. },
  4199. {
  4200. "name": "vlucas/phpdotenv",
  4201. "version": "v2.6.1",
  4202. "source": {
  4203. "type": "git",
  4204. "url": "https://github.com/vlucas/phpdotenv.git",
  4205. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  4206. },
  4207. "dist": {
  4208. "type": "zip",
  4209. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  4210. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  4211. "shasum": "",
  4212. "mirrors": [
  4213. {
  4214. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4215. "preferred": true
  4216. }
  4217. ]
  4218. },
  4219. "require": {
  4220. "php": ">=5.3.9",
  4221. "symfony/polyfill-ctype": "^1.9"
  4222. },
  4223. "require-dev": {
  4224. "phpunit/phpunit": "^4.8.35 || ^5.0"
  4225. },
  4226. "type": "library",
  4227. "extra": {
  4228. "branch-alias": {
  4229. "dev-master": "2.6-dev"
  4230. }
  4231. },
  4232. "autoload": {
  4233. "psr-4": {
  4234. "Dotenv\\": "src/"
  4235. }
  4236. },
  4237. "notification-url": "https://packagist.org/downloads/",
  4238. "license": [
  4239. "BSD-3-Clause"
  4240. ],
  4241. "authors": [
  4242. {
  4243. "name": "Vance Lucas",
  4244. "email": "vance@vancelucas.com",
  4245. "homepage": "http://www.vancelucas.com"
  4246. }
  4247. ],
  4248. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4249. "keywords": [
  4250. "dotenv",
  4251. "env",
  4252. "environment"
  4253. ],
  4254. "time": "2019-01-29T11:11:52+00:00"
  4255. },
  4256. {
  4257. "name": "xethron/laravel-4-generators",
  4258. "version": "3.1.1",
  4259. "source": {
  4260. "type": "git",
  4261. "url": "https://github.com/Xethron/Laravel-4-Generators.git",
  4262. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859"
  4263. },
  4264. "dist": {
  4265. "type": "zip",
  4266. "url": "https://api.github.com/repos/Xethron/Laravel-4-Generators/zipball/526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  4267. "reference": "526f0a07d8ae44e365a20b1bf64c9956acd2a859",
  4268. "shasum": "",
  4269. "mirrors": [
  4270. {
  4271. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4272. "preferred": true
  4273. }
  4274. ]
  4275. },
  4276. "require": {
  4277. "illuminate/support": "~5.0",
  4278. "php": ">=5.4.0"
  4279. },
  4280. "require-dev": {
  4281. "behat/behat": "~2.5.1",
  4282. "behat/mink": "~1.5.0",
  4283. "behat/mink-extension": "~1.2.0",
  4284. "behat/mink-goutte-driver": "~1.0.9",
  4285. "behat/mink-selenium2-driver": "~1.1.1",
  4286. "phpspec/phpspec": "~2.0",
  4287. "phpunit/phpunit": "~3.7"
  4288. },
  4289. "type": "library",
  4290. "autoload": {
  4291. "psr-0": {
  4292. "Way\\Generators": "src/"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "authors": [
  4300. {
  4301. "name": "Jeffrey Way",
  4302. "email": "jeffrey@jeffrey-way.com"
  4303. }
  4304. ],
  4305. "description": "Rapidly generate resources, migrations, models, and much more.",
  4306. "time": "2017-02-23T11:20:49+00:00"
  4307. },
  4308. {
  4309. "name": "xethron/migrations-generator",
  4310. "version": "v2.0.2",
  4311. "source": {
  4312. "type": "git",
  4313. "url": "https://github.com/Xethron/migrations-generator.git",
  4314. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b"
  4315. },
  4316. "dist": {
  4317. "type": "zip",
  4318. "url": "https://api.github.com/repos/Xethron/migrations-generator/zipball/a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  4319. "reference": "a05bd7319ed808fcc3125212e37d30ccbe0d2b8b",
  4320. "shasum": "",
  4321. "mirrors": [
  4322. {
  4323. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4324. "preferred": true
  4325. }
  4326. ]
  4327. },
  4328. "require": {
  4329. "doctrine/dbal": "~2.4",
  4330. "illuminate/support": ">=4.1",
  4331. "php": ">=5.4.0",
  4332. "xethron/laravel-4-generators": "~3.1.0"
  4333. },
  4334. "require-dev": {
  4335. "illuminate/cache": ">=4.1.0",
  4336. "illuminate/console": ">=4.1.0",
  4337. "mockery/mockery": ">=0.9.0",
  4338. "phpunit/phpunit": ">=4.0.0"
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "laravel": {
  4343. "providers": [
  4344. "Way\\Generators\\GeneratorsServiceProvider",
  4345. "Xethron\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
  4346. ]
  4347. }
  4348. },
  4349. "autoload": {
  4350. "psr-0": {
  4351. "Xethron\\MigrationsGenerator": "src/"
  4352. }
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "MIT"
  4357. ],
  4358. "authors": [
  4359. {
  4360. "name": "Bernhard Breytenbach",
  4361. "email": "bernhard@coffeecode.co.za"
  4362. }
  4363. ],
  4364. "description": "Generates Laravel Migrations from an existing database",
  4365. "keywords": [
  4366. "artisan",
  4367. "generator",
  4368. "laravel",
  4369. "migration",
  4370. "migrations"
  4371. ],
  4372. "time": "2017-09-19T17:31:57+00:00"
  4373. },
  4374. {
  4375. "name": "yansongda/laravel-pay",
  4376. "version": "v2.0.2",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/yansongda/laravel-pay.git",
  4380. "reference": "7b2574a62a22e5d777df222f0280c8ea158e5f66"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/yansongda/laravel-pay/zipball/7b2574a62a22e5d777df222f0280c8ea158e5f66",
  4385. "reference": "7b2574a62a22e5d777df222f0280c8ea158e5f66",
  4386. "shasum": "",
  4387. "mirrors": [
  4388. {
  4389. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4390. "preferred": true
  4391. }
  4392. ]
  4393. },
  4394. "require": {
  4395. "illuminate/support": "^5.1",
  4396. "yansongda/pay": "^2.0"
  4397. },
  4398. "type": "library",
  4399. "extra": {
  4400. "laravel": {
  4401. "providers": [
  4402. "Yansongda\\LaravelPay\\PayServiceProvider"
  4403. ],
  4404. "aliases": {
  4405. "Pay": "Yansongda\\LaravelPay\\Facades\\Pay"
  4406. }
  4407. }
  4408. },
  4409. "autoload": {
  4410. "psr-4": {
  4411. "Yansongda\\LaravelPay\\": "src"
  4412. }
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "yansongda",
  4421. "email": "me@yansongda.cn"
  4422. }
  4423. ],
  4424. "description": "专注 Alipay 和 WeChat 的 laravel 支付扩展包",
  4425. "keywords": [
  4426. "alipay",
  4427. "laravel",
  4428. "package",
  4429. "pay",
  4430. "wechat"
  4431. ],
  4432. "time": "2018-09-03T09:09:08+00:00"
  4433. },
  4434. {
  4435. "name": "yansongda/pay",
  4436. "version": "v2.7.6",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/yansongda/pay.git",
  4440. "reference": "65bceb75476d321a6b6f318bae59ac77ea6e8779"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/yansongda/pay/zipball/65bceb75476d321a6b6f318bae59ac77ea6e8779",
  4445. "reference": "65bceb75476d321a6b6f318bae59ac77ea6e8779",
  4446. "shasum": "",
  4447. "mirrors": [
  4448. {
  4449. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4450. "preferred": true
  4451. }
  4452. ]
  4453. },
  4454. "require": {
  4455. "ext-openssl": "*",
  4456. "ext-simplexml": "*",
  4457. "monolog/monolog": "^1.23",
  4458. "php": ">=7.0",
  4459. "symfony/event-dispatcher": "^3.0|^4.0",
  4460. "symfony/http-foundation": "^3.0|^4.0",
  4461. "yansongda/supports": "^1.8"
  4462. },
  4463. "require-dev": {
  4464. "mockery/mockery": "^1.2",
  4465. "phpunit/phpunit": "^6.2"
  4466. },
  4467. "type": "library",
  4468. "autoload": {
  4469. "psr-4": {
  4470. "Yansongda\\Pay\\": "src"
  4471. }
  4472. },
  4473. "notification-url": "https://packagist.org/downloads/",
  4474. "license": [
  4475. "MIT"
  4476. ],
  4477. "authors": [
  4478. {
  4479. "name": "yansongda",
  4480. "email": "me@yansongda.cn"
  4481. }
  4482. ],
  4483. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  4484. "keywords": [
  4485. "alipay",
  4486. "pay",
  4487. "wechat"
  4488. ],
  4489. "time": "2019-05-06T02:31:48+00:00"
  4490. },
  4491. {
  4492. "name": "yansongda/supports",
  4493. "version": "v1.8.9",
  4494. "source": {
  4495. "type": "git",
  4496. "url": "https://github.com/yansongda/supports.git",
  4497. "reference": "27d2692005af9900bc6aa4390bc9bd4a3d6a1fdd"
  4498. },
  4499. "dist": {
  4500. "type": "zip",
  4501. "url": "https://api.github.com/repos/yansongda/supports/zipball/27d2692005af9900bc6aa4390bc9bd4a3d6a1fdd",
  4502. "reference": "27d2692005af9900bc6aa4390bc9bd4a3d6a1fdd",
  4503. "shasum": "",
  4504. "mirrors": [
  4505. {
  4506. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4507. "preferred": true
  4508. }
  4509. ]
  4510. },
  4511. "require": {
  4512. "guzzlehttp/guzzle": "^6.2",
  4513. "monolog/monolog": "^1.23",
  4514. "php": ">=5.5"
  4515. },
  4516. "type": "library",
  4517. "autoload": {
  4518. "psr-4": {
  4519. "Yansongda\\Supports\\": "src/"
  4520. }
  4521. },
  4522. "notification-url": "https://packagist.org/downloads/",
  4523. "license": [
  4524. "MIT"
  4525. ],
  4526. "authors": [
  4527. {
  4528. "name": "yansongda",
  4529. "email": "me@yansongda.cn"
  4530. }
  4531. ],
  4532. "description": "common components",
  4533. "keywords": [
  4534. "Guzzle",
  4535. "array",
  4536. "collection",
  4537. "config",
  4538. "http",
  4539. "support"
  4540. ],
  4541. "time": "2019-05-06T09:29:58+00:00"
  4542. },
  4543. {
  4544. "name": "zgldh/qiniu-laravel-storage",
  4545. "version": "v0.9.4",
  4546. "source": {
  4547. "type": "git",
  4548. "url": "https://github.com/zgldh/qiniu-laravel-storage.git",
  4549. "reference": "671bb4702d4a4d17bc2ba038311b843f7c18aa9c"
  4550. },
  4551. "dist": {
  4552. "type": "zip",
  4553. "url": "https://api.github.com/repos/zgldh/qiniu-laravel-storage/zipball/671bb4702d4a4d17bc2ba038311b843f7c18aa9c",
  4554. "reference": "671bb4702d4a4d17bc2ba038311b843f7c18aa9c",
  4555. "shasum": "",
  4556. "mirrors": [
  4557. {
  4558. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4559. "preferred": true
  4560. }
  4561. ]
  4562. },
  4563. "require": {
  4564. "league/flysystem": "^1.0",
  4565. "php": ">=5.3.3",
  4566. "qiniu/php-sdk": "^7.2"
  4567. },
  4568. "type": "library",
  4569. "extra": {
  4570. "laravel": {
  4571. "providers": [
  4572. "zgldh\\QiniuStorage\\QiniuFilesystemServiceProvider"
  4573. ]
  4574. }
  4575. },
  4576. "autoload": {
  4577. "psr-4": {
  4578. "zgldh\\QiniuStorage\\": "src/"
  4579. }
  4580. },
  4581. "notification-url": "https://packagist.org/downloads/",
  4582. "license": [
  4583. "MIT"
  4584. ],
  4585. "authors": [
  4586. {
  4587. "name": "zgldh",
  4588. "email": "zgldh@hotmail.com",
  4589. "role": "Original Developer"
  4590. },
  4591. {
  4592. "name": "abcsun",
  4593. "email": "chenglongsun_nj@163.com",
  4594. "homepage": "http://github.com/abcsun",
  4595. "role": "Developer"
  4596. }
  4597. ],
  4598. "description": "Qiniu Resource (Cloud) Storage SDK for Laravel 5",
  4599. "keywords": [
  4600. "cloud",
  4601. "laravel",
  4602. "qiniu",
  4603. "sdk",
  4604. "storage"
  4605. ],
  4606. "time": "2018-09-03T04:05:13+00:00"
  4607. }
  4608. ],
  4609. "packages-dev": [
  4610. {
  4611. "name": "doctrine/instantiator",
  4612. "version": "1.0.5",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/doctrine/instantiator.git",
  4616. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  4621. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  4622. "shasum": "",
  4623. "mirrors": [
  4624. {
  4625. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4626. "preferred": true
  4627. }
  4628. ]
  4629. },
  4630. "require": {
  4631. "php": ">=5.3,<8.0-DEV"
  4632. },
  4633. "require-dev": {
  4634. "athletic/athletic": "~0.1.8",
  4635. "ext-pdo": "*",
  4636. "ext-phar": "*",
  4637. "phpunit/phpunit": "~4.0",
  4638. "squizlabs/php_codesniffer": "~2.0"
  4639. },
  4640. "type": "library",
  4641. "extra": {
  4642. "branch-alias": {
  4643. "dev-master": "1.0.x-dev"
  4644. }
  4645. },
  4646. "autoload": {
  4647. "psr-4": {
  4648. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4649. }
  4650. },
  4651. "notification-url": "https://packagist.org/downloads/",
  4652. "license": [
  4653. "MIT"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "Marco Pivetta",
  4658. "email": "ocramius@gmail.com",
  4659. "homepage": "http://ocramius.github.com/"
  4660. }
  4661. ],
  4662. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4663. "homepage": "https://github.com/doctrine/instantiator",
  4664. "keywords": [
  4665. "constructor",
  4666. "instantiate"
  4667. ],
  4668. "time": "2015-06-14T21:17:01+00:00"
  4669. },
  4670. {
  4671. "name": "filp/whoops",
  4672. "version": "2.3.1",
  4673. "source": {
  4674. "type": "git",
  4675. "url": "https://github.com/filp/whoops.git",
  4676. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  4677. },
  4678. "dist": {
  4679. "type": "zip",
  4680. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  4681. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  4682. "shasum": "",
  4683. "mirrors": [
  4684. {
  4685. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4686. "preferred": true
  4687. }
  4688. ]
  4689. },
  4690. "require": {
  4691. "php": "^5.5.9 || ^7.0",
  4692. "psr/log": "^1.0.1"
  4693. },
  4694. "require-dev": {
  4695. "mockery/mockery": "^0.9 || ^1.0",
  4696. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4697. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  4698. },
  4699. "suggest": {
  4700. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4701. "whoops/soap": "Formats errors as SOAP responses"
  4702. },
  4703. "type": "library",
  4704. "extra": {
  4705. "branch-alias": {
  4706. "dev-master": "2.2-dev"
  4707. }
  4708. },
  4709. "autoload": {
  4710. "psr-4": {
  4711. "Whoops\\": "src/Whoops/"
  4712. }
  4713. },
  4714. "notification-url": "https://packagist.org/downloads/",
  4715. "license": [
  4716. "MIT"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Filipe Dobreira",
  4721. "homepage": "https://github.com/filp",
  4722. "role": "Developer"
  4723. }
  4724. ],
  4725. "description": "php error handling for cool kids",
  4726. "homepage": "https://filp.github.io/whoops/",
  4727. "keywords": [
  4728. "error",
  4729. "exception",
  4730. "handling",
  4731. "library",
  4732. "throwable",
  4733. "whoops"
  4734. ],
  4735. "time": "2018-10-23T09:00:00+00:00"
  4736. },
  4737. {
  4738. "name": "fzaninotto/faker",
  4739. "version": "v1.8.0",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://github.com/fzaninotto/Faker.git",
  4743. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  4748. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  4749. "shasum": "",
  4750. "mirrors": [
  4751. {
  4752. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4753. "preferred": true
  4754. }
  4755. ]
  4756. },
  4757. "require": {
  4758. "php": "^5.3.3 || ^7.0"
  4759. },
  4760. "require-dev": {
  4761. "ext-intl": "*",
  4762. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4763. "squizlabs/php_codesniffer": "^1.5"
  4764. },
  4765. "type": "library",
  4766. "extra": {
  4767. "branch-alias": {
  4768. "dev-master": "1.8-dev"
  4769. }
  4770. },
  4771. "autoload": {
  4772. "psr-4": {
  4773. "Faker\\": "src/Faker/"
  4774. }
  4775. },
  4776. "notification-url": "https://packagist.org/downloads/",
  4777. "license": [
  4778. "MIT"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "François Zaninotto"
  4783. }
  4784. ],
  4785. "description": "Faker is a PHP library that generates fake data for you.",
  4786. "keywords": [
  4787. "data",
  4788. "faker",
  4789. "fixtures"
  4790. ],
  4791. "time": "2018-07-12T10:23:15+00:00"
  4792. },
  4793. {
  4794. "name": "hamcrest/hamcrest-php",
  4795. "version": "v2.0.0",
  4796. "source": {
  4797. "type": "git",
  4798. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4799. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  4800. },
  4801. "dist": {
  4802. "type": "zip",
  4803. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4804. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4805. "shasum": "",
  4806. "mirrors": [
  4807. {
  4808. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4809. "preferred": true
  4810. }
  4811. ]
  4812. },
  4813. "require": {
  4814. "php": "^5.3|^7.0"
  4815. },
  4816. "replace": {
  4817. "cordoval/hamcrest-php": "*",
  4818. "davedevelopment/hamcrest-php": "*",
  4819. "kodova/hamcrest-php": "*"
  4820. },
  4821. "require-dev": {
  4822. "phpunit/php-file-iterator": "1.3.3",
  4823. "phpunit/phpunit": "~4.0",
  4824. "satooshi/php-coveralls": "^1.0"
  4825. },
  4826. "type": "library",
  4827. "extra": {
  4828. "branch-alias": {
  4829. "dev-master": "2.0-dev"
  4830. }
  4831. },
  4832. "autoload": {
  4833. "classmap": [
  4834. "hamcrest"
  4835. ]
  4836. },
  4837. "notification-url": "https://packagist.org/downloads/",
  4838. "license": [
  4839. "BSD"
  4840. ],
  4841. "description": "This is the PHP port of Hamcrest Matchers",
  4842. "keywords": [
  4843. "test"
  4844. ],
  4845. "time": "2016-01-20T08:20:44+00:00"
  4846. },
  4847. {
  4848. "name": "mockery/mockery",
  4849. "version": "1.2.2",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/mockery/mockery.git",
  4853. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/mockery/mockery/zipball/0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  4858. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  4859. "shasum": "",
  4860. "mirrors": [
  4861. {
  4862. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4863. "preferred": true
  4864. }
  4865. ]
  4866. },
  4867. "require": {
  4868. "hamcrest/hamcrest-php": "~2.0",
  4869. "lib-pcre": ">=7.0",
  4870. "php": ">=5.6.0"
  4871. },
  4872. "require-dev": {
  4873. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  4874. },
  4875. "type": "library",
  4876. "extra": {
  4877. "branch-alias": {
  4878. "dev-master": "1.0.x-dev"
  4879. }
  4880. },
  4881. "autoload": {
  4882. "psr-0": {
  4883. "Mockery": "library/"
  4884. }
  4885. },
  4886. "notification-url": "https://packagist.org/downloads/",
  4887. "license": [
  4888. "BSD-3-Clause"
  4889. ],
  4890. "authors": [
  4891. {
  4892. "name": "Pádraic Brady",
  4893. "email": "padraic.brady@gmail.com",
  4894. "homepage": "http://blog.astrumfutura.com"
  4895. },
  4896. {
  4897. "name": "Dave Marshall",
  4898. "email": "dave.marshall@atstsolutions.co.uk",
  4899. "homepage": "http://davedevelopment.co.uk"
  4900. }
  4901. ],
  4902. "description": "Mockery is a simple yet flexible PHP mock object framework",
  4903. "homepage": "https://github.com/mockery/mockery",
  4904. "keywords": [
  4905. "BDD",
  4906. "TDD",
  4907. "library",
  4908. "mock",
  4909. "mock objects",
  4910. "mockery",
  4911. "stub",
  4912. "test",
  4913. "test double",
  4914. "testing"
  4915. ],
  4916. "time": "2019-02-13T09:37:52+00:00"
  4917. },
  4918. {
  4919. "name": "myclabs/deep-copy",
  4920. "version": "1.7.0",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/myclabs/DeepCopy.git",
  4924. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  4929. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  4930. "shasum": "",
  4931. "mirrors": [
  4932. {
  4933. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4934. "preferred": true
  4935. }
  4936. ]
  4937. },
  4938. "require": {
  4939. "php": "^5.6 || ^7.0"
  4940. },
  4941. "require-dev": {
  4942. "doctrine/collections": "^1.0",
  4943. "doctrine/common": "^2.6",
  4944. "phpunit/phpunit": "^4.1"
  4945. },
  4946. "type": "library",
  4947. "autoload": {
  4948. "psr-4": {
  4949. "DeepCopy\\": "src/DeepCopy/"
  4950. },
  4951. "files": [
  4952. "src/DeepCopy/deep_copy.php"
  4953. ]
  4954. },
  4955. "notification-url": "https://packagist.org/downloads/",
  4956. "license": [
  4957. "MIT"
  4958. ],
  4959. "description": "Create deep copies (clones) of your objects",
  4960. "keywords": [
  4961. "clone",
  4962. "copy",
  4963. "duplicate",
  4964. "object",
  4965. "object graph"
  4966. ],
  4967. "time": "2017-10-19T19:58:43+00:00"
  4968. },
  4969. {
  4970. "name": "phar-io/manifest",
  4971. "version": "1.0.1",
  4972. "source": {
  4973. "type": "git",
  4974. "url": "https://github.com/phar-io/manifest.git",
  4975. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  4976. },
  4977. "dist": {
  4978. "type": "zip",
  4979. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  4980. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  4981. "shasum": "",
  4982. "mirrors": [
  4983. {
  4984. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4985. "preferred": true
  4986. }
  4987. ]
  4988. },
  4989. "require": {
  4990. "ext-dom": "*",
  4991. "ext-phar": "*",
  4992. "phar-io/version": "^1.0.1",
  4993. "php": "^5.6 || ^7.0"
  4994. },
  4995. "type": "library",
  4996. "extra": {
  4997. "branch-alias": {
  4998. "dev-master": "1.0.x-dev"
  4999. }
  5000. },
  5001. "autoload": {
  5002. "classmap": [
  5003. "src/"
  5004. ]
  5005. },
  5006. "notification-url": "https://packagist.org/downloads/",
  5007. "license": [
  5008. "BSD-3-Clause"
  5009. ],
  5010. "authors": [
  5011. {
  5012. "name": "Arne Blankerts",
  5013. "email": "arne@blankerts.de",
  5014. "role": "Developer"
  5015. },
  5016. {
  5017. "name": "Sebastian Heuer",
  5018. "email": "sebastian@phpeople.de",
  5019. "role": "Developer"
  5020. },
  5021. {
  5022. "name": "Sebastian Bergmann",
  5023. "email": "sebastian@phpunit.de",
  5024. "role": "Developer"
  5025. }
  5026. ],
  5027. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5028. "time": "2017-03-05T18:14:27+00:00"
  5029. },
  5030. {
  5031. "name": "phar-io/version",
  5032. "version": "1.0.1",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://github.com/phar-io/version.git",
  5036. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  5041. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  5042. "shasum": "",
  5043. "mirrors": [
  5044. {
  5045. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5046. "preferred": true
  5047. }
  5048. ]
  5049. },
  5050. "require": {
  5051. "php": "^5.6 || ^7.0"
  5052. },
  5053. "type": "library",
  5054. "autoload": {
  5055. "classmap": [
  5056. "src/"
  5057. ]
  5058. },
  5059. "notification-url": "https://packagist.org/downloads/",
  5060. "license": [
  5061. "BSD-3-Clause"
  5062. ],
  5063. "authors": [
  5064. {
  5065. "name": "Arne Blankerts",
  5066. "email": "arne@blankerts.de",
  5067. "role": "Developer"
  5068. },
  5069. {
  5070. "name": "Sebastian Heuer",
  5071. "email": "sebastian@phpeople.de",
  5072. "role": "Developer"
  5073. },
  5074. {
  5075. "name": "Sebastian Bergmann",
  5076. "email": "sebastian@phpunit.de",
  5077. "role": "Developer"
  5078. }
  5079. ],
  5080. "description": "Library for handling version information and constraints",
  5081. "time": "2017-03-05T17:38:23+00:00"
  5082. },
  5083. {
  5084. "name": "phpdocumentor/reflection-common",
  5085. "version": "1.0.1",
  5086. "source": {
  5087. "type": "git",
  5088. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5089. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  5090. },
  5091. "dist": {
  5092. "type": "zip",
  5093. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5094. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  5095. "shasum": "",
  5096. "mirrors": [
  5097. {
  5098. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5099. "preferred": true
  5100. }
  5101. ]
  5102. },
  5103. "require": {
  5104. "php": ">=5.5"
  5105. },
  5106. "require-dev": {
  5107. "phpunit/phpunit": "^4.6"
  5108. },
  5109. "type": "library",
  5110. "extra": {
  5111. "branch-alias": {
  5112. "dev-master": "1.0.x-dev"
  5113. }
  5114. },
  5115. "autoload": {
  5116. "psr-4": {
  5117. "phpDocumentor\\Reflection\\": [
  5118. "src"
  5119. ]
  5120. }
  5121. },
  5122. "notification-url": "https://packagist.org/downloads/",
  5123. "license": [
  5124. "MIT"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "Jaap van Otterdijk",
  5129. "email": "opensource@ijaap.nl"
  5130. }
  5131. ],
  5132. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5133. "homepage": "http://www.phpdoc.org",
  5134. "keywords": [
  5135. "FQSEN",
  5136. "phpDocumentor",
  5137. "phpdoc",
  5138. "reflection",
  5139. "static analysis"
  5140. ],
  5141. "time": "2017-09-11T18:02:19+00:00"
  5142. },
  5143. {
  5144. "name": "phpdocumentor/reflection-docblock",
  5145. "version": "4.3.1",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5149. "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c",
  5154. "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c",
  5155. "shasum": "",
  5156. "mirrors": [
  5157. {
  5158. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5159. "preferred": true
  5160. }
  5161. ]
  5162. },
  5163. "require": {
  5164. "php": "^7.0",
  5165. "phpdocumentor/reflection-common": "^1.0.0",
  5166. "phpdocumentor/type-resolver": "^0.4.0",
  5167. "webmozart/assert": "^1.0"
  5168. },
  5169. "require-dev": {
  5170. "doctrine/instantiator": "~1.0.5",
  5171. "mockery/mockery": "^1.0",
  5172. "phpunit/phpunit": "^6.4"
  5173. },
  5174. "type": "library",
  5175. "extra": {
  5176. "branch-alias": {
  5177. "dev-master": "4.x-dev"
  5178. }
  5179. },
  5180. "autoload": {
  5181. "psr-4": {
  5182. "phpDocumentor\\Reflection\\": [
  5183. "src/"
  5184. ]
  5185. }
  5186. },
  5187. "notification-url": "https://packagist.org/downloads/",
  5188. "license": [
  5189. "MIT"
  5190. ],
  5191. "authors": [
  5192. {
  5193. "name": "Mike van Riel",
  5194. "email": "me@mikevanriel.com"
  5195. }
  5196. ],
  5197. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5198. "time": "2019-04-30T17:48:53+00:00"
  5199. },
  5200. {
  5201. "name": "phpdocumentor/type-resolver",
  5202. "version": "0.4.0",
  5203. "source": {
  5204. "type": "git",
  5205. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5206. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  5207. },
  5208. "dist": {
  5209. "type": "zip",
  5210. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  5211. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  5212. "shasum": "",
  5213. "mirrors": [
  5214. {
  5215. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5216. "preferred": true
  5217. }
  5218. ]
  5219. },
  5220. "require": {
  5221. "php": "^5.5 || ^7.0",
  5222. "phpdocumentor/reflection-common": "^1.0"
  5223. },
  5224. "require-dev": {
  5225. "mockery/mockery": "^0.9.4",
  5226. "phpunit/phpunit": "^5.2||^4.8.24"
  5227. },
  5228. "type": "library",
  5229. "extra": {
  5230. "branch-alias": {
  5231. "dev-master": "1.0.x-dev"
  5232. }
  5233. },
  5234. "autoload": {
  5235. "psr-4": {
  5236. "phpDocumentor\\Reflection\\": [
  5237. "src/"
  5238. ]
  5239. }
  5240. },
  5241. "notification-url": "https://packagist.org/downloads/",
  5242. "license": [
  5243. "MIT"
  5244. ],
  5245. "authors": [
  5246. {
  5247. "name": "Mike van Riel",
  5248. "email": "me@mikevanriel.com"
  5249. }
  5250. ],
  5251. "time": "2017-07-14T14:27:02+00:00"
  5252. },
  5253. {
  5254. "name": "phpspec/prophecy",
  5255. "version": "1.8.0",
  5256. "source": {
  5257. "type": "git",
  5258. "url": "https://github.com/phpspec/prophecy.git",
  5259. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  5260. },
  5261. "dist": {
  5262. "type": "zip",
  5263. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5264. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  5265. "shasum": "",
  5266. "mirrors": [
  5267. {
  5268. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5269. "preferred": true
  5270. }
  5271. ]
  5272. },
  5273. "require": {
  5274. "doctrine/instantiator": "^1.0.2",
  5275. "php": "^5.3|^7.0",
  5276. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  5277. "sebastian/comparator": "^1.1|^2.0|^3.0",
  5278. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5279. },
  5280. "require-dev": {
  5281. "phpspec/phpspec": "^2.5|^3.2",
  5282. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5283. },
  5284. "type": "library",
  5285. "extra": {
  5286. "branch-alias": {
  5287. "dev-master": "1.8.x-dev"
  5288. }
  5289. },
  5290. "autoload": {
  5291. "psr-0": {
  5292. "Prophecy\\": "src/"
  5293. }
  5294. },
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "MIT"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Konstantin Kudryashov",
  5302. "email": "ever.zet@gmail.com",
  5303. "homepage": "http://everzet.com"
  5304. },
  5305. {
  5306. "name": "Marcello Duarte",
  5307. "email": "marcello.duarte@gmail.com"
  5308. }
  5309. ],
  5310. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5311. "homepage": "https://github.com/phpspec/prophecy",
  5312. "keywords": [
  5313. "Double",
  5314. "Dummy",
  5315. "fake",
  5316. "mock",
  5317. "spy",
  5318. "stub"
  5319. ],
  5320. "time": "2018-08-05T17:53:17+00:00"
  5321. },
  5322. {
  5323. "name": "phpunit/php-code-coverage",
  5324. "version": "5.3.2",
  5325. "source": {
  5326. "type": "git",
  5327. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5328. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  5329. },
  5330. "dist": {
  5331. "type": "zip",
  5332. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  5333. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  5334. "shasum": "",
  5335. "mirrors": [
  5336. {
  5337. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5338. "preferred": true
  5339. }
  5340. ]
  5341. },
  5342. "require": {
  5343. "ext-dom": "*",
  5344. "ext-xmlwriter": "*",
  5345. "php": "^7.0",
  5346. "phpunit/php-file-iterator": "^1.4.2",
  5347. "phpunit/php-text-template": "^1.2.1",
  5348. "phpunit/php-token-stream": "^2.0.1",
  5349. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5350. "sebastian/environment": "^3.0",
  5351. "sebastian/version": "^2.0.1",
  5352. "theseer/tokenizer": "^1.1"
  5353. },
  5354. "require-dev": {
  5355. "phpunit/phpunit": "^6.0"
  5356. },
  5357. "suggest": {
  5358. "ext-xdebug": "^2.5.5"
  5359. },
  5360. "type": "library",
  5361. "extra": {
  5362. "branch-alias": {
  5363. "dev-master": "5.3.x-dev"
  5364. }
  5365. },
  5366. "autoload": {
  5367. "classmap": [
  5368. "src/"
  5369. ]
  5370. },
  5371. "notification-url": "https://packagist.org/downloads/",
  5372. "license": [
  5373. "BSD-3-Clause"
  5374. ],
  5375. "authors": [
  5376. {
  5377. "name": "Sebastian Bergmann",
  5378. "email": "sebastian@phpunit.de",
  5379. "role": "lead"
  5380. }
  5381. ],
  5382. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5383. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5384. "keywords": [
  5385. "coverage",
  5386. "testing",
  5387. "xunit"
  5388. ],
  5389. "time": "2018-04-06T15:36:58+00:00"
  5390. },
  5391. {
  5392. "name": "phpunit/php-file-iterator",
  5393. "version": "1.4.5",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5397. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5402. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  5403. "shasum": "",
  5404. "mirrors": [
  5405. {
  5406. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5407. "preferred": true
  5408. }
  5409. ]
  5410. },
  5411. "require": {
  5412. "php": ">=5.3.3"
  5413. },
  5414. "type": "library",
  5415. "extra": {
  5416. "branch-alias": {
  5417. "dev-master": "1.4.x-dev"
  5418. }
  5419. },
  5420. "autoload": {
  5421. "classmap": [
  5422. "src/"
  5423. ]
  5424. },
  5425. "notification-url": "https://packagist.org/downloads/",
  5426. "license": [
  5427. "BSD-3-Clause"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "Sebastian Bergmann",
  5432. "email": "sb@sebastian-bergmann.de",
  5433. "role": "lead"
  5434. }
  5435. ],
  5436. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5437. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5438. "keywords": [
  5439. "filesystem",
  5440. "iterator"
  5441. ],
  5442. "time": "2017-11-27T13:52:08+00:00"
  5443. },
  5444. {
  5445. "name": "phpunit/php-text-template",
  5446. "version": "1.2.1",
  5447. "source": {
  5448. "type": "git",
  5449. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5450. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5451. },
  5452. "dist": {
  5453. "type": "zip",
  5454. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5455. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5456. "shasum": "",
  5457. "mirrors": [
  5458. {
  5459. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5460. "preferred": true
  5461. }
  5462. ]
  5463. },
  5464. "require": {
  5465. "php": ">=5.3.3"
  5466. },
  5467. "type": "library",
  5468. "autoload": {
  5469. "classmap": [
  5470. "src/"
  5471. ]
  5472. },
  5473. "notification-url": "https://packagist.org/downloads/",
  5474. "license": [
  5475. "BSD-3-Clause"
  5476. ],
  5477. "authors": [
  5478. {
  5479. "name": "Sebastian Bergmann",
  5480. "email": "sebastian@phpunit.de",
  5481. "role": "lead"
  5482. }
  5483. ],
  5484. "description": "Simple template engine.",
  5485. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5486. "keywords": [
  5487. "template"
  5488. ],
  5489. "time": "2015-06-21T13:50:34+00:00"
  5490. },
  5491. {
  5492. "name": "phpunit/php-timer",
  5493. "version": "1.0.9",
  5494. "source": {
  5495. "type": "git",
  5496. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5497. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  5498. },
  5499. "dist": {
  5500. "type": "zip",
  5501. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5502. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  5503. "shasum": "",
  5504. "mirrors": [
  5505. {
  5506. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5507. "preferred": true
  5508. }
  5509. ]
  5510. },
  5511. "require": {
  5512. "php": "^5.3.3 || ^7.0"
  5513. },
  5514. "require-dev": {
  5515. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5516. },
  5517. "type": "library",
  5518. "extra": {
  5519. "branch-alias": {
  5520. "dev-master": "1.0-dev"
  5521. }
  5522. },
  5523. "autoload": {
  5524. "classmap": [
  5525. "src/"
  5526. ]
  5527. },
  5528. "notification-url": "https://packagist.org/downloads/",
  5529. "license": [
  5530. "BSD-3-Clause"
  5531. ],
  5532. "authors": [
  5533. {
  5534. "name": "Sebastian Bergmann",
  5535. "email": "sb@sebastian-bergmann.de",
  5536. "role": "lead"
  5537. }
  5538. ],
  5539. "description": "Utility class for timing",
  5540. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5541. "keywords": [
  5542. "timer"
  5543. ],
  5544. "time": "2017-02-26T11:10:40+00:00"
  5545. },
  5546. {
  5547. "name": "phpunit/php-token-stream",
  5548. "version": "2.0.2",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5552. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  5557. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  5558. "shasum": "",
  5559. "mirrors": [
  5560. {
  5561. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5562. "preferred": true
  5563. }
  5564. ]
  5565. },
  5566. "require": {
  5567. "ext-tokenizer": "*",
  5568. "php": "^7.0"
  5569. },
  5570. "require-dev": {
  5571. "phpunit/phpunit": "^6.2.4"
  5572. },
  5573. "type": "library",
  5574. "extra": {
  5575. "branch-alias": {
  5576. "dev-master": "2.0-dev"
  5577. }
  5578. },
  5579. "autoload": {
  5580. "classmap": [
  5581. "src/"
  5582. ]
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "BSD-3-Clause"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Sebastian Bergmann",
  5591. "email": "sebastian@phpunit.de"
  5592. }
  5593. ],
  5594. "description": "Wrapper around PHP's tokenizer extension.",
  5595. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5596. "keywords": [
  5597. "tokenizer"
  5598. ],
  5599. "time": "2017-11-27T05:48:46+00:00"
  5600. },
  5601. {
  5602. "name": "phpunit/phpunit",
  5603. "version": "6.5.14",
  5604. "source": {
  5605. "type": "git",
  5606. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5607. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  5608. },
  5609. "dist": {
  5610. "type": "zip",
  5611. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  5612. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  5613. "shasum": "",
  5614. "mirrors": [
  5615. {
  5616. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5617. "preferred": true
  5618. }
  5619. ]
  5620. },
  5621. "require": {
  5622. "ext-dom": "*",
  5623. "ext-json": "*",
  5624. "ext-libxml": "*",
  5625. "ext-mbstring": "*",
  5626. "ext-xml": "*",
  5627. "myclabs/deep-copy": "^1.6.1",
  5628. "phar-io/manifest": "^1.0.1",
  5629. "phar-io/version": "^1.0",
  5630. "php": "^7.0",
  5631. "phpspec/prophecy": "^1.7",
  5632. "phpunit/php-code-coverage": "^5.3",
  5633. "phpunit/php-file-iterator": "^1.4.3",
  5634. "phpunit/php-text-template": "^1.2.1",
  5635. "phpunit/php-timer": "^1.0.9",
  5636. "phpunit/phpunit-mock-objects": "^5.0.9",
  5637. "sebastian/comparator": "^2.1",
  5638. "sebastian/diff": "^2.0",
  5639. "sebastian/environment": "^3.1",
  5640. "sebastian/exporter": "^3.1",
  5641. "sebastian/global-state": "^2.0",
  5642. "sebastian/object-enumerator": "^3.0.3",
  5643. "sebastian/resource-operations": "^1.0",
  5644. "sebastian/version": "^2.0.1"
  5645. },
  5646. "conflict": {
  5647. "phpdocumentor/reflection-docblock": "3.0.2",
  5648. "phpunit/dbunit": "<3.0"
  5649. },
  5650. "require-dev": {
  5651. "ext-pdo": "*"
  5652. },
  5653. "suggest": {
  5654. "ext-xdebug": "*",
  5655. "phpunit/php-invoker": "^1.1"
  5656. },
  5657. "bin": [
  5658. "phpunit"
  5659. ],
  5660. "type": "library",
  5661. "extra": {
  5662. "branch-alias": {
  5663. "dev-master": "6.5.x-dev"
  5664. }
  5665. },
  5666. "autoload": {
  5667. "classmap": [
  5668. "src/"
  5669. ]
  5670. },
  5671. "notification-url": "https://packagist.org/downloads/",
  5672. "license": [
  5673. "BSD-3-Clause"
  5674. ],
  5675. "authors": [
  5676. {
  5677. "name": "Sebastian Bergmann",
  5678. "email": "sebastian@phpunit.de",
  5679. "role": "lead"
  5680. }
  5681. ],
  5682. "description": "The PHP Unit Testing framework.",
  5683. "homepage": "https://phpunit.de/",
  5684. "keywords": [
  5685. "phpunit",
  5686. "testing",
  5687. "xunit"
  5688. ],
  5689. "time": "2019-02-01T05:22:47+00:00"
  5690. },
  5691. {
  5692. "name": "phpunit/phpunit-mock-objects",
  5693. "version": "5.0.10",
  5694. "source": {
  5695. "type": "git",
  5696. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  5697. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  5698. },
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  5702. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  5703. "shasum": "",
  5704. "mirrors": [
  5705. {
  5706. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5707. "preferred": true
  5708. }
  5709. ]
  5710. },
  5711. "require": {
  5712. "doctrine/instantiator": "^1.0.5",
  5713. "php": "^7.0",
  5714. "phpunit/php-text-template": "^1.2.1",
  5715. "sebastian/exporter": "^3.1"
  5716. },
  5717. "conflict": {
  5718. "phpunit/phpunit": "<6.0"
  5719. },
  5720. "require-dev": {
  5721. "phpunit/phpunit": "^6.5.11"
  5722. },
  5723. "suggest": {
  5724. "ext-soap": "*"
  5725. },
  5726. "type": "library",
  5727. "extra": {
  5728. "branch-alias": {
  5729. "dev-master": "5.0.x-dev"
  5730. }
  5731. },
  5732. "autoload": {
  5733. "classmap": [
  5734. "src/"
  5735. ]
  5736. },
  5737. "notification-url": "https://packagist.org/downloads/",
  5738. "license": [
  5739. "BSD-3-Clause"
  5740. ],
  5741. "authors": [
  5742. {
  5743. "name": "Sebastian Bergmann",
  5744. "email": "sebastian@phpunit.de",
  5745. "role": "lead"
  5746. }
  5747. ],
  5748. "description": "Mock Object library for PHPUnit",
  5749. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  5750. "keywords": [
  5751. "mock",
  5752. "xunit"
  5753. ],
  5754. "abandoned": true,
  5755. "time": "2018-08-09T05:50:03+00:00"
  5756. },
  5757. {
  5758. "name": "sebastian/code-unit-reverse-lookup",
  5759. "version": "1.0.1",
  5760. "source": {
  5761. "type": "git",
  5762. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5763. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5764. },
  5765. "dist": {
  5766. "type": "zip",
  5767. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5768. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5769. "shasum": "",
  5770. "mirrors": [
  5771. {
  5772. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5773. "preferred": true
  5774. }
  5775. ]
  5776. },
  5777. "require": {
  5778. "php": "^5.6 || ^7.0"
  5779. },
  5780. "require-dev": {
  5781. "phpunit/phpunit": "^5.7 || ^6.0"
  5782. },
  5783. "type": "library",
  5784. "extra": {
  5785. "branch-alias": {
  5786. "dev-master": "1.0.x-dev"
  5787. }
  5788. },
  5789. "autoload": {
  5790. "classmap": [
  5791. "src/"
  5792. ]
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "BSD-3-Clause"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Sebastian Bergmann",
  5801. "email": "sebastian@phpunit.de"
  5802. }
  5803. ],
  5804. "description": "Looks up which function or method a line of code belongs to",
  5805. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5806. "time": "2017-03-04T06:30:41+00:00"
  5807. },
  5808. {
  5809. "name": "sebastian/comparator",
  5810. "version": "2.1.3",
  5811. "source": {
  5812. "type": "git",
  5813. "url": "https://github.com/sebastianbergmann/comparator.git",
  5814. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  5815. },
  5816. "dist": {
  5817. "type": "zip",
  5818. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  5819. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  5820. "shasum": "",
  5821. "mirrors": [
  5822. {
  5823. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5824. "preferred": true
  5825. }
  5826. ]
  5827. },
  5828. "require": {
  5829. "php": "^7.0",
  5830. "sebastian/diff": "^2.0 || ^3.0",
  5831. "sebastian/exporter": "^3.1"
  5832. },
  5833. "require-dev": {
  5834. "phpunit/phpunit": "^6.4"
  5835. },
  5836. "type": "library",
  5837. "extra": {
  5838. "branch-alias": {
  5839. "dev-master": "2.1.x-dev"
  5840. }
  5841. },
  5842. "autoload": {
  5843. "classmap": [
  5844. "src/"
  5845. ]
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "BSD-3-Clause"
  5850. ],
  5851. "authors": [
  5852. {
  5853. "name": "Jeff Welch",
  5854. "email": "whatthejeff@gmail.com"
  5855. },
  5856. {
  5857. "name": "Volker Dusch",
  5858. "email": "github@wallbash.com"
  5859. },
  5860. {
  5861. "name": "Bernhard Schussek",
  5862. "email": "bschussek@2bepublished.at"
  5863. },
  5864. {
  5865. "name": "Sebastian Bergmann",
  5866. "email": "sebastian@phpunit.de"
  5867. }
  5868. ],
  5869. "description": "Provides the functionality to compare PHP values for equality",
  5870. "homepage": "https://github.com/sebastianbergmann/comparator",
  5871. "keywords": [
  5872. "comparator",
  5873. "compare",
  5874. "equality"
  5875. ],
  5876. "time": "2018-02-01T13:46:46+00:00"
  5877. },
  5878. {
  5879. "name": "sebastian/diff",
  5880. "version": "2.0.1",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/sebastianbergmann/diff.git",
  5884. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  5889. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  5890. "shasum": "",
  5891. "mirrors": [
  5892. {
  5893. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5894. "preferred": true
  5895. }
  5896. ]
  5897. },
  5898. "require": {
  5899. "php": "^7.0"
  5900. },
  5901. "require-dev": {
  5902. "phpunit/phpunit": "^6.2"
  5903. },
  5904. "type": "library",
  5905. "extra": {
  5906. "branch-alias": {
  5907. "dev-master": "2.0-dev"
  5908. }
  5909. },
  5910. "autoload": {
  5911. "classmap": [
  5912. "src/"
  5913. ]
  5914. },
  5915. "notification-url": "https://packagist.org/downloads/",
  5916. "license": [
  5917. "BSD-3-Clause"
  5918. ],
  5919. "authors": [
  5920. {
  5921. "name": "Kore Nordmann",
  5922. "email": "mail@kore-nordmann.de"
  5923. },
  5924. {
  5925. "name": "Sebastian Bergmann",
  5926. "email": "sebastian@phpunit.de"
  5927. }
  5928. ],
  5929. "description": "Diff implementation",
  5930. "homepage": "https://github.com/sebastianbergmann/diff",
  5931. "keywords": [
  5932. "diff"
  5933. ],
  5934. "time": "2017-08-03T08:09:46+00:00"
  5935. },
  5936. {
  5937. "name": "sebastian/environment",
  5938. "version": "3.1.0",
  5939. "source": {
  5940. "type": "git",
  5941. "url": "https://github.com/sebastianbergmann/environment.git",
  5942. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  5943. },
  5944. "dist": {
  5945. "type": "zip",
  5946. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  5947. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  5948. "shasum": "",
  5949. "mirrors": [
  5950. {
  5951. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5952. "preferred": true
  5953. }
  5954. ]
  5955. },
  5956. "require": {
  5957. "php": "^7.0"
  5958. },
  5959. "require-dev": {
  5960. "phpunit/phpunit": "^6.1"
  5961. },
  5962. "type": "library",
  5963. "extra": {
  5964. "branch-alias": {
  5965. "dev-master": "3.1.x-dev"
  5966. }
  5967. },
  5968. "autoload": {
  5969. "classmap": [
  5970. "src/"
  5971. ]
  5972. },
  5973. "notification-url": "https://packagist.org/downloads/",
  5974. "license": [
  5975. "BSD-3-Clause"
  5976. ],
  5977. "authors": [
  5978. {
  5979. "name": "Sebastian Bergmann",
  5980. "email": "sebastian@phpunit.de"
  5981. }
  5982. ],
  5983. "description": "Provides functionality to handle HHVM/PHP environments",
  5984. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5985. "keywords": [
  5986. "Xdebug",
  5987. "environment",
  5988. "hhvm"
  5989. ],
  5990. "time": "2017-07-01T08:51:00+00:00"
  5991. },
  5992. {
  5993. "name": "sebastian/exporter",
  5994. "version": "3.1.0",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/sebastianbergmann/exporter.git",
  5998. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  6003. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  6004. "shasum": "",
  6005. "mirrors": [
  6006. {
  6007. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6008. "preferred": true
  6009. }
  6010. ]
  6011. },
  6012. "require": {
  6013. "php": "^7.0",
  6014. "sebastian/recursion-context": "^3.0"
  6015. },
  6016. "require-dev": {
  6017. "ext-mbstring": "*",
  6018. "phpunit/phpunit": "^6.0"
  6019. },
  6020. "type": "library",
  6021. "extra": {
  6022. "branch-alias": {
  6023. "dev-master": "3.1.x-dev"
  6024. }
  6025. },
  6026. "autoload": {
  6027. "classmap": [
  6028. "src/"
  6029. ]
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "BSD-3-Clause"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Jeff Welch",
  6038. "email": "whatthejeff@gmail.com"
  6039. },
  6040. {
  6041. "name": "Volker Dusch",
  6042. "email": "github@wallbash.com"
  6043. },
  6044. {
  6045. "name": "Bernhard Schussek",
  6046. "email": "bschussek@2bepublished.at"
  6047. },
  6048. {
  6049. "name": "Sebastian Bergmann",
  6050. "email": "sebastian@phpunit.de"
  6051. },
  6052. {
  6053. "name": "Adam Harvey",
  6054. "email": "aharvey@php.net"
  6055. }
  6056. ],
  6057. "description": "Provides the functionality to export PHP variables for visualization",
  6058. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6059. "keywords": [
  6060. "export",
  6061. "exporter"
  6062. ],
  6063. "time": "2017-04-03T13:19:02+00:00"
  6064. },
  6065. {
  6066. "name": "sebastian/global-state",
  6067. "version": "2.0.0",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/sebastianbergmann/global-state.git",
  6071. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6076. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6077. "shasum": "",
  6078. "mirrors": [
  6079. {
  6080. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6081. "preferred": true
  6082. }
  6083. ]
  6084. },
  6085. "require": {
  6086. "php": "^7.0"
  6087. },
  6088. "require-dev": {
  6089. "phpunit/phpunit": "^6.0"
  6090. },
  6091. "suggest": {
  6092. "ext-uopz": "*"
  6093. },
  6094. "type": "library",
  6095. "extra": {
  6096. "branch-alias": {
  6097. "dev-master": "2.0-dev"
  6098. }
  6099. },
  6100. "autoload": {
  6101. "classmap": [
  6102. "src/"
  6103. ]
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "BSD-3-Clause"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Sebastian Bergmann",
  6112. "email": "sebastian@phpunit.de"
  6113. }
  6114. ],
  6115. "description": "Snapshotting of global state",
  6116. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6117. "keywords": [
  6118. "global state"
  6119. ],
  6120. "time": "2017-04-27T15:39:26+00:00"
  6121. },
  6122. {
  6123. "name": "sebastian/object-enumerator",
  6124. "version": "3.0.3",
  6125. "source": {
  6126. "type": "git",
  6127. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6128. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6129. },
  6130. "dist": {
  6131. "type": "zip",
  6132. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6133. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6134. "shasum": "",
  6135. "mirrors": [
  6136. {
  6137. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6138. "preferred": true
  6139. }
  6140. ]
  6141. },
  6142. "require": {
  6143. "php": "^7.0",
  6144. "sebastian/object-reflector": "^1.1.1",
  6145. "sebastian/recursion-context": "^3.0"
  6146. },
  6147. "require-dev": {
  6148. "phpunit/phpunit": "^6.0"
  6149. },
  6150. "type": "library",
  6151. "extra": {
  6152. "branch-alias": {
  6153. "dev-master": "3.0.x-dev"
  6154. }
  6155. },
  6156. "autoload": {
  6157. "classmap": [
  6158. "src/"
  6159. ]
  6160. },
  6161. "notification-url": "https://packagist.org/downloads/",
  6162. "license": [
  6163. "BSD-3-Clause"
  6164. ],
  6165. "authors": [
  6166. {
  6167. "name": "Sebastian Bergmann",
  6168. "email": "sebastian@phpunit.de"
  6169. }
  6170. ],
  6171. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6172. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6173. "time": "2017-08-03T12:35:26+00:00"
  6174. },
  6175. {
  6176. "name": "sebastian/object-reflector",
  6177. "version": "1.1.1",
  6178. "source": {
  6179. "type": "git",
  6180. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6181. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6182. },
  6183. "dist": {
  6184. "type": "zip",
  6185. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6186. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6187. "shasum": "",
  6188. "mirrors": [
  6189. {
  6190. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6191. "preferred": true
  6192. }
  6193. ]
  6194. },
  6195. "require": {
  6196. "php": "^7.0"
  6197. },
  6198. "require-dev": {
  6199. "phpunit/phpunit": "^6.0"
  6200. },
  6201. "type": "library",
  6202. "extra": {
  6203. "branch-alias": {
  6204. "dev-master": "1.1-dev"
  6205. }
  6206. },
  6207. "autoload": {
  6208. "classmap": [
  6209. "src/"
  6210. ]
  6211. },
  6212. "notification-url": "https://packagist.org/downloads/",
  6213. "license": [
  6214. "BSD-3-Clause"
  6215. ],
  6216. "authors": [
  6217. {
  6218. "name": "Sebastian Bergmann",
  6219. "email": "sebastian@phpunit.de"
  6220. }
  6221. ],
  6222. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6223. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6224. "time": "2017-03-29T09:07:27+00:00"
  6225. },
  6226. {
  6227. "name": "sebastian/recursion-context",
  6228. "version": "3.0.0",
  6229. "source": {
  6230. "type": "git",
  6231. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6232. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6233. },
  6234. "dist": {
  6235. "type": "zip",
  6236. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6237. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6238. "shasum": "",
  6239. "mirrors": [
  6240. {
  6241. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6242. "preferred": true
  6243. }
  6244. ]
  6245. },
  6246. "require": {
  6247. "php": "^7.0"
  6248. },
  6249. "require-dev": {
  6250. "phpunit/phpunit": "^6.0"
  6251. },
  6252. "type": "library",
  6253. "extra": {
  6254. "branch-alias": {
  6255. "dev-master": "3.0.x-dev"
  6256. }
  6257. },
  6258. "autoload": {
  6259. "classmap": [
  6260. "src/"
  6261. ]
  6262. },
  6263. "notification-url": "https://packagist.org/downloads/",
  6264. "license": [
  6265. "BSD-3-Clause"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "Jeff Welch",
  6270. "email": "whatthejeff@gmail.com"
  6271. },
  6272. {
  6273. "name": "Sebastian Bergmann",
  6274. "email": "sebastian@phpunit.de"
  6275. },
  6276. {
  6277. "name": "Adam Harvey",
  6278. "email": "aharvey@php.net"
  6279. }
  6280. ],
  6281. "description": "Provides functionality to recursively process PHP variables",
  6282. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6283. "time": "2017-03-03T06:23:57+00:00"
  6284. },
  6285. {
  6286. "name": "sebastian/resource-operations",
  6287. "version": "1.0.0",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6291. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6296. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  6297. "shasum": "",
  6298. "mirrors": [
  6299. {
  6300. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6301. "preferred": true
  6302. }
  6303. ]
  6304. },
  6305. "require": {
  6306. "php": ">=5.6.0"
  6307. },
  6308. "type": "library",
  6309. "extra": {
  6310. "branch-alias": {
  6311. "dev-master": "1.0.x-dev"
  6312. }
  6313. },
  6314. "autoload": {
  6315. "classmap": [
  6316. "src/"
  6317. ]
  6318. },
  6319. "notification-url": "https://packagist.org/downloads/",
  6320. "license": [
  6321. "BSD-3-Clause"
  6322. ],
  6323. "authors": [
  6324. {
  6325. "name": "Sebastian Bergmann",
  6326. "email": "sebastian@phpunit.de"
  6327. }
  6328. ],
  6329. "description": "Provides a list of PHP built-in functions that operate on resources",
  6330. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6331. "time": "2015-07-28T20:34:47+00:00"
  6332. },
  6333. {
  6334. "name": "sebastian/version",
  6335. "version": "2.0.1",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/sebastianbergmann/version.git",
  6339. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6344. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6345. "shasum": "",
  6346. "mirrors": [
  6347. {
  6348. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6349. "preferred": true
  6350. }
  6351. ]
  6352. },
  6353. "require": {
  6354. "php": ">=5.6"
  6355. },
  6356. "type": "library",
  6357. "extra": {
  6358. "branch-alias": {
  6359. "dev-master": "2.0.x-dev"
  6360. }
  6361. },
  6362. "autoload": {
  6363. "classmap": [
  6364. "src/"
  6365. ]
  6366. },
  6367. "notification-url": "https://packagist.org/downloads/",
  6368. "license": [
  6369. "BSD-3-Clause"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Sebastian Bergmann",
  6374. "email": "sebastian@phpunit.de",
  6375. "role": "lead"
  6376. }
  6377. ],
  6378. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6379. "homepage": "https://github.com/sebastianbergmann/version",
  6380. "time": "2016-10-03T07:35:21+00:00"
  6381. },
  6382. {
  6383. "name": "symfony/thanks",
  6384. "version": "v1.1.0",
  6385. "source": {
  6386. "type": "git",
  6387. "url": "https://github.com/symfony/thanks.git",
  6388. "reference": "9474a631b52737c623b6aeba22f00bbc003251da"
  6389. },
  6390. "dist": {
  6391. "type": "zip",
  6392. "url": "https://api.github.com/repos/symfony/thanks/zipball/9474a631b52737c623b6aeba22f00bbc003251da",
  6393. "reference": "9474a631b52737c623b6aeba22f00bbc003251da",
  6394. "shasum": "",
  6395. "mirrors": [
  6396. {
  6397. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6398. "preferred": true
  6399. }
  6400. ]
  6401. },
  6402. "require": {
  6403. "composer-plugin-api": "^1.0",
  6404. "php": "^5.5.9|^7.0.0"
  6405. },
  6406. "type": "composer-plugin",
  6407. "extra": {
  6408. "branch-alias": {
  6409. "dev-master": "1.0-dev"
  6410. },
  6411. "class": "Symfony\\Thanks\\Thanks"
  6412. },
  6413. "autoload": {
  6414. "psr-4": {
  6415. "Symfony\\Thanks\\": "src"
  6416. }
  6417. },
  6418. "notification-url": "https://packagist.org/downloads/",
  6419. "license": [
  6420. "MIT"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "Nicolas Grekas",
  6425. "email": "p@tchwork.com"
  6426. }
  6427. ],
  6428. "description": "Give thanks (in the form of a GitHub ⭐) to your fellow PHP package maintainers (not limited to Symfony components)!",
  6429. "time": "2018-08-24T14:08:13+00:00"
  6430. },
  6431. {
  6432. "name": "theseer/tokenizer",
  6433. "version": "1.1.2",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://github.com/theseer/tokenizer.git",
  6437. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  6442. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  6443. "shasum": "",
  6444. "mirrors": [
  6445. {
  6446. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6447. "preferred": true
  6448. }
  6449. ]
  6450. },
  6451. "require": {
  6452. "ext-dom": "*",
  6453. "ext-tokenizer": "*",
  6454. "ext-xmlwriter": "*",
  6455. "php": "^7.0"
  6456. },
  6457. "type": "library",
  6458. "autoload": {
  6459. "classmap": [
  6460. "src/"
  6461. ]
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "BSD-3-Clause"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "Arne Blankerts",
  6470. "email": "arne@blankerts.de",
  6471. "role": "Developer"
  6472. }
  6473. ],
  6474. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6475. "time": "2019-04-04T09:56:43+00:00"
  6476. },
  6477. {
  6478. "name": "webmozart/assert",
  6479. "version": "1.4.0",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/webmozart/assert.git",
  6483. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  6488. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  6489. "shasum": "",
  6490. "mirrors": [
  6491. {
  6492. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  6493. "preferred": true
  6494. }
  6495. ]
  6496. },
  6497. "require": {
  6498. "php": "^5.3.3 || ^7.0",
  6499. "symfony/polyfill-ctype": "^1.8"
  6500. },
  6501. "require-dev": {
  6502. "phpunit/phpunit": "^4.6",
  6503. "sebastian/version": "^1.0.1"
  6504. },
  6505. "type": "library",
  6506. "extra": {
  6507. "branch-alias": {
  6508. "dev-master": "1.3-dev"
  6509. }
  6510. },
  6511. "autoload": {
  6512. "psr-4": {
  6513. "Webmozart\\Assert\\": "src/"
  6514. }
  6515. },
  6516. "notification-url": "https://packagist.org/downloads/",
  6517. "license": [
  6518. "MIT"
  6519. ],
  6520. "authors": [
  6521. {
  6522. "name": "Bernhard Schussek",
  6523. "email": "bschussek@gmail.com"
  6524. }
  6525. ],
  6526. "description": "Assertions to validate method input/output with nice error messages.",
  6527. "keywords": [
  6528. "assert",
  6529. "check",
  6530. "validate"
  6531. ],
  6532. "time": "2018-12-25T11:19:39+00:00"
  6533. }
  6534. ],
  6535. "aliases": [],
  6536. "minimum-stability": "stable",
  6537. "stability-flags": {
  6538. "tymon/jwt-auth": 20
  6539. },
  6540. "prefer-stable": false,
  6541. "prefer-lowest": false,
  6542. "platform": {
  6543. "php": ">=7.0.0"
  6544. },
  6545. "platform-dev": []
  6546. }