composer.lock 305 KB

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