composer.lock 205 KB

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