composer.lock 226 KB

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