composer.lock 141KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074
  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": "1b8a7661a5fe696c7685775ba092dd39",
  8. "packages": [
  9. {
  10. "name": "doctrine/inflector",
  11. "version": "v1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/inflector.git",
  15. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://files.phpcomposer.com/files/doctrine/inflector/5527a48b7313d15261292c149e55e26eae771b0a.zip",
  20. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.1"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^6.2"
  28. },
  29. "type": "library",
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "1.3.x-dev"
  33. }
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Roman Borschel",
  47. "email": "roman@code-factory.org"
  48. },
  49. {
  50. "name": "Benjamin Eberlei",
  51. "email": "kontakt@beberlei.de"
  52. },
  53. {
  54. "name": "Guilherme Blanco",
  55. "email": "guilhermeblanco@gmail.com"
  56. },
  57. {
  58. "name": "Jonathan Wage",
  59. "email": "jonwage@gmail.com"
  60. },
  61. {
  62. "name": "Johannes Schmitt",
  63. "email": "schmittjoh@gmail.com"
  64. }
  65. ],
  66. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  67. "homepage": "http://www.doctrine-project.org",
  68. "keywords": [
  69. "inflection",
  70. "pluralize",
  71. "singularize",
  72. "string"
  73. ],
  74. "time": "2018-01-09T20:05:19+00:00"
  75. },
  76. {
  77. "name": "dragonmantank/cron-expression",
  78. "version": "v2.2.0",
  79. "source": {
  80. "type": "git",
  81. "url": "https://github.com/dragonmantank/cron-expression.git",
  82. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5"
  83. },
  84. "dist": {
  85. "type": "zip",
  86. "url": "https://files.phpcomposer.com/files/dragonmantank/cron-expression/92a2c3768d50e21a1f26a53cb795ce72806266c5.zip",
  87. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5",
  88. "shasum": ""
  89. },
  90. "require": {
  91. "php": ">=7.0.0"
  92. },
  93. "require-dev": {
  94. "phpunit/phpunit": "~6.4"
  95. },
  96. "type": "library",
  97. "autoload": {
  98. "psr-4": {
  99. "Cron\\": "src/Cron/"
  100. }
  101. },
  102. "notification-url": "https://packagist.org/downloads/",
  103. "license": [
  104. "MIT"
  105. ],
  106. "authors": [
  107. {
  108. "name": "Michael Dowling",
  109. "email": "mtdowling@gmail.com",
  110. "homepage": "https://github.com/mtdowling"
  111. },
  112. {
  113. "name": "Chris Tankersley",
  114. "email": "chris@ctankersley.com",
  115. "homepage": "https://github.com/dragonmantank"
  116. }
  117. ],
  118. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  119. "keywords": [
  120. "cron",
  121. "schedule"
  122. ],
  123. "time": "2018-06-06T03:12:17+00:00"
  124. },
  125. {
  126. "name": "illuminate/auth",
  127. "version": "v5.6.25",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/illuminate/auth.git",
  131. "reference": "526e356960466f1808ace22b9625755c72c1dfd4"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://files.phpcomposer.com/files/illuminate/auth/526e356960466f1808ace22b9625755c72c1dfd4.zip",
  136. "reference": "526e356960466f1808ace22b9625755c72c1dfd4",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "illuminate/contracts": "5.6.*",
  141. "illuminate/http": "5.6.*",
  142. "illuminate/queue": "5.6.*",
  143. "illuminate/support": "5.6.*",
  144. "php": "^7.1.3"
  145. },
  146. "suggest": {
  147. "illuminate/console": "Required to use the auth:clear-resets command (5.6.*).",
  148. "illuminate/queue": "Required to fire login / logout events (5.6.*).",
  149. "illuminate/session": "Required to use the session based guard (5.6.*)."
  150. },
  151. "type": "library",
  152. "extra": {
  153. "branch-alias": {
  154. "dev-master": "5.6-dev"
  155. }
  156. },
  157. "autoload": {
  158. "psr-4": {
  159. "Illuminate\\Auth\\": ""
  160. }
  161. },
  162. "notification-url": "https://packagist.org/downloads/",
  163. "license": [
  164. "MIT"
  165. ],
  166. "authors": [
  167. {
  168. "name": "Taylor Otwell",
  169. "email": "taylor@laravel.com"
  170. }
  171. ],
  172. "description": "The Illuminate Auth package.",
  173. "homepage": "https://laravel.com",
  174. "time": "2018-06-12T14:14:13+00:00"
  175. },
  176. {
  177. "name": "illuminate/broadcasting",
  178. "version": "v5.6.25",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/illuminate/broadcasting.git",
  182. "reference": "be19509edbf0827a38769ad57f0fb162879bf2ae"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://files.phpcomposer.com/files/illuminate/broadcasting/be19509edbf0827a38769ad57f0fb162879bf2ae.zip",
  187. "reference": "be19509edbf0827a38769ad57f0fb162879bf2ae",
  188. "shasum": ""
  189. },
  190. "require": {
  191. "illuminate/bus": "5.6.*",
  192. "illuminate/contracts": "5.6.*",
  193. "illuminate/queue": "5.6.*",
  194. "illuminate/support": "5.6.*",
  195. "php": "^7.1.3",
  196. "psr/log": "~1.0"
  197. },
  198. "suggest": {
  199. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0)."
  200. },
  201. "type": "library",
  202. "extra": {
  203. "branch-alias": {
  204. "dev-master": "5.6-dev"
  205. }
  206. },
  207. "autoload": {
  208. "psr-4": {
  209. "Illuminate\\Broadcasting\\": ""
  210. }
  211. },
  212. "notification-url": "https://packagist.org/downloads/",
  213. "license": [
  214. "MIT"
  215. ],
  216. "authors": [
  217. {
  218. "name": "Taylor Otwell",
  219. "email": "taylor@laravel.com"
  220. }
  221. ],
  222. "description": "The Illuminate Broadcasting package.",
  223. "homepage": "https://laravel.com",
  224. "time": "2018-04-26T13:18:21+00:00"
  225. },
  226. {
  227. "name": "illuminate/bus",
  228. "version": "v5.6.25",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/illuminate/bus.git",
  232. "reference": "8702a90ae06fabf080cb2cfffda3efaeae0e417a"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://files.phpcomposer.com/files/illuminate/bus/8702a90ae06fabf080cb2cfffda3efaeae0e417a.zip",
  237. "reference": "8702a90ae06fabf080cb2cfffda3efaeae0e417a",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "illuminate/contracts": "5.6.*",
  242. "illuminate/pipeline": "5.6.*",
  243. "illuminate/support": "5.6.*",
  244. "php": "^7.1.3"
  245. },
  246. "type": "library",
  247. "extra": {
  248. "branch-alias": {
  249. "dev-master": "5.6-dev"
  250. }
  251. },
  252. "autoload": {
  253. "psr-4": {
  254. "Illuminate\\Bus\\": ""
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "MIT"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Taylor Otwell",
  264. "email": "taylor@laravel.com"
  265. }
  266. ],
  267. "description": "The Illuminate Bus package.",
  268. "homepage": "https://laravel.com",
  269. "time": "2017-12-14T13:30:55+00:00"
  270. },
  271. {
  272. "name": "illuminate/cache",
  273. "version": "v5.6.25",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/illuminate/cache.git",
  277. "reference": "989b7a22fe9a623ca3d3befecb1962ee414fdeea"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://files.phpcomposer.com/files/illuminate/cache/989b7a22fe9a623ca3d3befecb1962ee414fdeea.zip",
  282. "reference": "989b7a22fe9a623ca3d3befecb1962ee414fdeea",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "illuminate/contracts": "5.6.*",
  287. "illuminate/support": "5.6.*",
  288. "php": "^7.1.3"
  289. },
  290. "suggest": {
  291. "illuminate/database": "Required to use the database cache driver (5.6.*).",
  292. "illuminate/filesystem": "Required to use the file cache driver (5.6.*).",
  293. "illuminate/redis": "Required to use the redis cache driver (5.6.*)."
  294. },
  295. "type": "library",
  296. "extra": {
  297. "branch-alias": {
  298. "dev-master": "5.6-dev"
  299. }
  300. },
  301. "autoload": {
  302. "psr-4": {
  303. "Illuminate\\Cache\\": ""
  304. }
  305. },
  306. "notification-url": "https://packagist.org/downloads/",
  307. "license": [
  308. "MIT"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Taylor Otwell",
  313. "email": "taylor@laravel.com"
  314. }
  315. ],
  316. "description": "The Illuminate Cache package.",
  317. "homepage": "https://laravel.com",
  318. "time": "2018-06-06T13:24:24+00:00"
  319. },
  320. {
  321. "name": "illuminate/config",
  322. "version": "v5.6.25",
  323. "source": {
  324. "type": "git",
  325. "url": "https://github.com/illuminate/config.git",
  326. "reference": "e8158dff3189deed846c84c66c60fa68c21ee579"
  327. },
  328. "dist": {
  329. "type": "zip",
  330. "url": "https://files.phpcomposer.com/files/illuminate/config/e8158dff3189deed846c84c66c60fa68c21ee579.zip",
  331. "reference": "e8158dff3189deed846c84c66c60fa68c21ee579",
  332. "shasum": ""
  333. },
  334. "require": {
  335. "illuminate/contracts": "5.6.*",
  336. "illuminate/support": "5.6.*",
  337. "php": "^7.1.3"
  338. },
  339. "type": "library",
  340. "extra": {
  341. "branch-alias": {
  342. "dev-master": "5.6-dev"
  343. }
  344. },
  345. "autoload": {
  346. "psr-4": {
  347. "Illuminate\\Config\\": ""
  348. }
  349. },
  350. "notification-url": "https://packagist.org/downloads/",
  351. "license": [
  352. "MIT"
  353. ],
  354. "authors": [
  355. {
  356. "name": "Taylor Otwell",
  357. "email": "taylor@laravel.com"
  358. }
  359. ],
  360. "description": "The Illuminate Config package.",
  361. "homepage": "https://laravel.com",
  362. "time": "2017-11-07T20:23:51+00:00"
  363. },
  364. {
  365. "name": "illuminate/console",
  366. "version": "v5.6.24",
  367. "source": {
  368. "type": "git",
  369. "url": "https://github.com/illuminate/console.git",
  370. "reference": "7e4725f3badd6d9f57bd12240077dd223d2ced21"
  371. },
  372. "dist": {
  373. "type": "zip",
  374. "url": "https://files.phpcomposer.com/files/illuminate/console/7e4725f3badd6d9f57bd12240077dd223d2ced21.zip",
  375. "reference": "7e4725f3badd6d9f57bd12240077dd223d2ced21",
  376. "shasum": ""
  377. },
  378. "require": {
  379. "illuminate/contracts": "5.6.*",
  380. "illuminate/support": "5.6.*",
  381. "php": "^7.1.3",
  382. "symfony/console": "~4.0"
  383. },
  384. "suggest": {
  385. "dragonmantank/cron-expression": "Required to use scheduling component (~2.0).",
  386. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (~6.0).",
  387. "symfony/process": "Required to use scheduling component (~4.0)."
  388. },
  389. "type": "library",
  390. "extra": {
  391. "branch-alias": {
  392. "dev-master": "5.6-dev"
  393. }
  394. },
  395. "autoload": {
  396. "psr-4": {
  397. "Illuminate\\Console\\": ""
  398. }
  399. },
  400. "notification-url": "https://packagist.org/downloads/",
  401. "license": [
  402. "MIT"
  403. ],
  404. "authors": [
  405. {
  406. "name": "Taylor Otwell",
  407. "email": "taylor@laravel.com"
  408. }
  409. ],
  410. "description": "The Illuminate Console package.",
  411. "homepage": "https://laravel.com",
  412. "time": "2018-06-04T13:58:00+00:00"
  413. },
  414. {
  415. "name": "illuminate/container",
  416. "version": "v5.6.25",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/illuminate/container.git",
  420. "reference": "1f0757cae8749400aeda730f6438a081fc3c082d"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://files.phpcomposer.com/files/illuminate/container/1f0757cae8749400aeda730f6438a081fc3c082d.zip",
  425. "reference": "1f0757cae8749400aeda730f6438a081fc3c082d",
  426. "shasum": ""
  427. },
  428. "require": {
  429. "illuminate/contracts": "5.6.*",
  430. "php": "^7.1.3",
  431. "psr/container": "~1.0"
  432. },
  433. "type": "library",
  434. "extra": {
  435. "branch-alias": {
  436. "dev-master": "5.6-dev"
  437. }
  438. },
  439. "autoload": {
  440. "psr-4": {
  441. "Illuminate\\Container\\": ""
  442. }
  443. },
  444. "notification-url": "https://packagist.org/downloads/",
  445. "license": [
  446. "MIT"
  447. ],
  448. "authors": [
  449. {
  450. "name": "Taylor Otwell",
  451. "email": "taylor@laravel.com"
  452. }
  453. ],
  454. "description": "The Illuminate Container package.",
  455. "homepage": "https://laravel.com",
  456. "time": "2018-05-24T13:16:56+00:00"
  457. },
  458. {
  459. "name": "illuminate/contracts",
  460. "version": "v5.6.25",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/illuminate/contracts.git",
  464. "reference": "3dc639feabe0f302f574157a782ede323881a944"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://files.phpcomposer.com/files/illuminate/contracts/3dc639feabe0f302f574157a782ede323881a944.zip",
  469. "reference": "3dc639feabe0f302f574157a782ede323881a944",
  470. "shasum": ""
  471. },
  472. "require": {
  473. "php": "^7.1.3",
  474. "psr/container": "~1.0",
  475. "psr/simple-cache": "~1.0"
  476. },
  477. "type": "library",
  478. "extra": {
  479. "branch-alias": {
  480. "dev-master": "5.6-dev"
  481. }
  482. },
  483. "autoload": {
  484. "psr-4": {
  485. "Illuminate\\Contracts\\": ""
  486. }
  487. },
  488. "notification-url": "https://packagist.org/downloads/",
  489. "license": [
  490. "MIT"
  491. ],
  492. "authors": [
  493. {
  494. "name": "Taylor Otwell",
  495. "email": "taylor@laravel.com"
  496. }
  497. ],
  498. "description": "The Illuminate Contracts package.",
  499. "homepage": "https://laravel.com",
  500. "time": "2018-05-11T23:38:58+00:00"
  501. },
  502. {
  503. "name": "illuminate/database",
  504. "version": "v5.6.25",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/illuminate/database.git",
  508. "reference": "747a8896392cf4e7af151a71324222392c6a3631"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://files.phpcomposer.com/files/illuminate/database/747a8896392cf4e7af151a71324222392c6a3631.zip",
  513. "reference": "747a8896392cf4e7af151a71324222392c6a3631",
  514. "shasum": ""
  515. },
  516. "require": {
  517. "illuminate/container": "5.6.*",
  518. "illuminate/contracts": "5.6.*",
  519. "illuminate/support": "5.6.*",
  520. "php": "^7.1.3"
  521. },
  522. "suggest": {
  523. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.6).",
  524. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  525. "illuminate/console": "Required to use the database commands (5.6.*).",
  526. "illuminate/events": "Required to use the observers with Eloquent (5.6.*).",
  527. "illuminate/filesystem": "Required to use the migrations (5.6.*).",
  528. "illuminate/pagination": "Required to paginate the result set (5.6.*)."
  529. },
  530. "type": "library",
  531. "extra": {
  532. "branch-alias": {
  533. "dev-master": "5.6-dev"
  534. }
  535. },
  536. "autoload": {
  537. "psr-4": {
  538. "Illuminate\\Database\\": ""
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Taylor Otwell",
  548. "email": "taylor@laravel.com"
  549. }
  550. ],
  551. "description": "The Illuminate Database package.",
  552. "homepage": "https://laravel.com",
  553. "keywords": [
  554. "database",
  555. "laravel",
  556. "orm",
  557. "sql"
  558. ],
  559. "time": "2018-06-12T14:27:22+00:00"
  560. },
  561. {
  562. "name": "illuminate/encryption",
  563. "version": "v5.6.25",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/illuminate/encryption.git",
  567. "reference": "c80b1da6a0412bd74bd56dc80f6126f561631b05"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://files.phpcomposer.com/files/illuminate/encryption/c80b1da6a0412bd74bd56dc80f6126f561631b05.zip",
  572. "reference": "c80b1da6a0412bd74bd56dc80f6126f561631b05",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "ext-mbstring": "*",
  577. "ext-openssl": "*",
  578. "illuminate/contracts": "5.6.*",
  579. "illuminate/support": "5.6.*",
  580. "php": "^7.1.3"
  581. },
  582. "type": "library",
  583. "extra": {
  584. "branch-alias": {
  585. "dev-master": "5.6-dev"
  586. }
  587. },
  588. "autoload": {
  589. "psr-4": {
  590. "Illuminate\\Encryption\\": ""
  591. }
  592. },
  593. "notification-url": "https://packagist.org/downloads/",
  594. "license": [
  595. "MIT"
  596. ],
  597. "authors": [
  598. {
  599. "name": "Taylor Otwell",
  600. "email": "taylor@laravel.com"
  601. }
  602. ],
  603. "description": "The Illuminate Encryption package.",
  604. "homepage": "https://laravel.com",
  605. "time": "2018-03-30T13:24:57+00:00"
  606. },
  607. {
  608. "name": "illuminate/events",
  609. "version": "v5.6.25",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/illuminate/events.git",
  613. "reference": "b6e73ed40478cef2ef98d5ddb27f333291606cea"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://files.phpcomposer.com/files/illuminate/events/b6e73ed40478cef2ef98d5ddb27f333291606cea.zip",
  618. "reference": "b6e73ed40478cef2ef98d5ddb27f333291606cea",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "illuminate/container": "5.6.*",
  623. "illuminate/contracts": "5.6.*",
  624. "illuminate/support": "5.6.*",
  625. "php": "^7.1.3"
  626. },
  627. "type": "library",
  628. "extra": {
  629. "branch-alias": {
  630. "dev-master": "5.6-dev"
  631. }
  632. },
  633. "autoload": {
  634. "psr-4": {
  635. "Illuminate\\Events\\": ""
  636. }
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "MIT"
  641. ],
  642. "authors": [
  643. {
  644. "name": "Taylor Otwell",
  645. "email": "taylor@laravel.com"
  646. }
  647. ],
  648. "description": "The Illuminate Events package.",
  649. "homepage": "https://laravel.com",
  650. "time": "2018-02-26T19:00:55+00:00"
  651. },
  652. {
  653. "name": "illuminate/filesystem",
  654. "version": "v5.6.25",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/illuminate/filesystem.git",
  658. "reference": "f94613a292fb6ba4ed040317ee6d119af364f577"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://files.phpcomposer.com/files/illuminate/filesystem/f94613a292fb6ba4ed040317ee6d119af364f577.zip",
  663. "reference": "f94613a292fb6ba4ed040317ee6d119af364f577",
  664. "shasum": ""
  665. },
  666. "require": {
  667. "illuminate/contracts": "5.6.*",
  668. "illuminate/support": "5.6.*",
  669. "php": "^7.1.3",
  670. "symfony/finder": "~4.0"
  671. },
  672. "suggest": {
  673. "league/flysystem": "Required to use the Flysystem local and FTP drivers (~1.0).",
  674. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  675. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (~1.0).",
  676. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  677. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (~1.0)."
  678. },
  679. "type": "library",
  680. "extra": {
  681. "branch-alias": {
  682. "dev-master": "5.6-dev"
  683. }
  684. },
  685. "autoload": {
  686. "psr-4": {
  687. "Illuminate\\Filesystem\\": ""
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Taylor Otwell",
  697. "email": "taylor@laravel.com"
  698. }
  699. ],
  700. "description": "The Illuminate Filesystem package.",
  701. "homepage": "https://laravel.com",
  702. "time": "2018-06-07T19:01:13+00:00"
  703. },
  704. {
  705. "name": "illuminate/hashing",
  706. "version": "v5.6.25",
  707. "source": {
  708. "type": "git",
  709. "url": "https://github.com/illuminate/hashing.git",
  710. "reference": "5a7bc5f4df461866cabdb27a55f53894cce53ac8"
  711. },
  712. "dist": {
  713. "type": "zip",
  714. "url": "https://files.phpcomposer.com/files/illuminate/hashing/5a7bc5f4df461866cabdb27a55f53894cce53ac8.zip",
  715. "reference": "5a7bc5f4df461866cabdb27a55f53894cce53ac8",
  716. "shasum": ""
  717. },
  718. "require": {
  719. "illuminate/contracts": "5.6.*",
  720. "illuminate/support": "5.6.*",
  721. "php": "^7.1.3"
  722. },
  723. "type": "library",
  724. "extra": {
  725. "branch-alias": {
  726. "dev-master": "5.6-dev"
  727. }
  728. },
  729. "autoload": {
  730. "psr-4": {
  731. "Illuminate\\Hashing\\": ""
  732. }
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "MIT"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Taylor Otwell",
  741. "email": "taylor@laravel.com"
  742. }
  743. ],
  744. "description": "The Illuminate Hashing package.",
  745. "homepage": "https://laravel.com",
  746. "time": "2018-06-06T13:20:05+00:00"
  747. },
  748. {
  749. "name": "illuminate/http",
  750. "version": "v5.6.25",
  751. "source": {
  752. "type": "git",
  753. "url": "https://github.com/illuminate/http.git",
  754. "reference": "88f713b54d184304f56d693c546093ba1e45a3e3"
  755. },
  756. "dist": {
  757. "type": "zip",
  758. "url": "https://files.phpcomposer.com/files/illuminate/http/88f713b54d184304f56d693c546093ba1e45a3e3.zip",
  759. "reference": "88f713b54d184304f56d693c546093ba1e45a3e3",
  760. "shasum": ""
  761. },
  762. "require": {
  763. "illuminate/session": "5.6.*",
  764. "illuminate/support": "5.6.*",
  765. "php": "^7.1.3",
  766. "symfony/http-foundation": "~4.0",
  767. "symfony/http-kernel": "~4.0"
  768. },
  769. "type": "library",
  770. "extra": {
  771. "branch-alias": {
  772. "dev-master": "5.6-dev"
  773. }
  774. },
  775. "autoload": {
  776. "psr-4": {
  777. "Illuminate\\Http\\": ""
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "MIT"
  783. ],
  784. "authors": [
  785. {
  786. "name": "Taylor Otwell",
  787. "email": "taylor@laravel.com"
  788. }
  789. ],
  790. "description": "The Illuminate Http package.",
  791. "homepage": "https://laravel.com",
  792. "time": "2018-05-24T16:11:06+00:00"
  793. },
  794. {
  795. "name": "illuminate/log",
  796. "version": "v5.6.25",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/illuminate/log.git",
  800. "reference": "a3afef094b27ac7290bfdeac2c9215ee0da30159"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://files.phpcomposer.com/files/illuminate/log/a3afef094b27ac7290bfdeac2c9215ee0da30159.zip",
  805. "reference": "a3afef094b27ac7290bfdeac2c9215ee0da30159",
  806. "shasum": ""
  807. },
  808. "require": {
  809. "illuminate/contracts": "5.6.*",
  810. "illuminate/support": "5.6.*",
  811. "monolog/monolog": "~1.11",
  812. "php": "^7.1.3"
  813. },
  814. "type": "library",
  815. "extra": {
  816. "branch-alias": {
  817. "dev-master": "5.6-dev"
  818. }
  819. },
  820. "autoload": {
  821. "psr-4": {
  822. "Illuminate\\Log\\": ""
  823. }
  824. },
  825. "notification-url": "https://packagist.org/downloads/",
  826. "license": [
  827. "MIT"
  828. ],
  829. "authors": [
  830. {
  831. "name": "Taylor Otwell",
  832. "email": "taylor@laravel.com"
  833. }
  834. ],
  835. "description": "The Illuminate Log package.",
  836. "homepage": "https://laravel.com",
  837. "time": "2018-06-07T13:33:23+00:00"
  838. },
  839. {
  840. "name": "illuminate/pagination",
  841. "version": "v5.6.25",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/illuminate/pagination.git",
  845. "reference": "ee3177bd380ea2be7c0330d8ef8b0ab858be8947"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://files.phpcomposer.com/files/illuminate/pagination/ee3177bd380ea2be7c0330d8ef8b0ab858be8947.zip",
  850. "reference": "ee3177bd380ea2be7c0330d8ef8b0ab858be8947",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "illuminate/contracts": "5.6.*",
  855. "illuminate/support": "5.6.*",
  856. "php": "^7.1.3"
  857. },
  858. "type": "library",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "5.6-dev"
  862. }
  863. },
  864. "autoload": {
  865. "psr-4": {
  866. "Illuminate\\Pagination\\": ""
  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 Pagination package.",
  880. "homepage": "https://laravel.com",
  881. "time": "2018-05-06T14:22:45+00:00"
  882. },
  883. {
  884. "name": "illuminate/pipeline",
  885. "version": "v5.6.25",
  886. "source": {
  887. "type": "git",
  888. "url": "https://github.com/illuminate/pipeline.git",
  889. "reference": "07b12156ad6d429d9f0ea179b2ed1e918372023e"
  890. },
  891. "dist": {
  892. "type": "zip",
  893. "url": "https://files.phpcomposer.com/files/illuminate/pipeline/07b12156ad6d429d9f0ea179b2ed1e918372023e.zip",
  894. "reference": "07b12156ad6d429d9f0ea179b2ed1e918372023e",
  895. "shasum": ""
  896. },
  897. "require": {
  898. "illuminate/contracts": "5.6.*",
  899. "illuminate/support": "5.6.*",
  900. "php": "^7.1.3"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "branch-alias": {
  905. "dev-master": "5.6-dev"
  906. }
  907. },
  908. "autoload": {
  909. "psr-4": {
  910. "Illuminate\\Pipeline\\": ""
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Taylor Otwell",
  920. "email": "taylor@laravel.com"
  921. }
  922. ],
  923. "description": "The Illuminate Pipeline package.",
  924. "homepage": "https://laravel.com",
  925. "time": "2018-05-14T13:08:37+00:00"
  926. },
  927. {
  928. "name": "illuminate/queue",
  929. "version": "v5.6.25",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/illuminate/queue.git",
  933. "reference": "667bbc163528443fecfb7e9ceb98e3607817dd04"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://files.phpcomposer.com/files/illuminate/queue/667bbc163528443fecfb7e9ceb98e3607817dd04.zip",
  938. "reference": "667bbc163528443fecfb7e9ceb98e3607817dd04",
  939. "shasum": ""
  940. },
  941. "require": {
  942. "illuminate/console": "5.6.*",
  943. "illuminate/container": "5.6.*",
  944. "illuminate/contracts": "5.6.*",
  945. "illuminate/database": "5.6.*",
  946. "illuminate/filesystem": "5.6.*",
  947. "illuminate/support": "5.6.*",
  948. "php": "^7.1.3",
  949. "symfony/debug": "~4.0",
  950. "symfony/process": "~4.0"
  951. },
  952. "suggest": {
  953. "aws/aws-sdk-php": "Required to use the SQS queue driver (~3.0).",
  954. "ext-pcntl": "Required to use all features of the queue worker.",
  955. "ext-posix": "Required to use all features of the queue worker.",
  956. "illuminate/redis": "Required to use the Redis queue driver (5.6.*).",
  957. "pda/pheanstalk": "Required to use the Beanstalk queue driver (~3.0)."
  958. },
  959. "type": "library",
  960. "extra": {
  961. "branch-alias": {
  962. "dev-master": "5.6-dev"
  963. }
  964. },
  965. "autoload": {
  966. "psr-4": {
  967. "Illuminate\\Queue\\": ""
  968. }
  969. },
  970. "notification-url": "https://packagist.org/downloads/",
  971. "license": [
  972. "MIT"
  973. ],
  974. "authors": [
  975. {
  976. "name": "Taylor Otwell",
  977. "email": "taylor@laravel.com"
  978. }
  979. ],
  980. "description": "The Illuminate Queue package.",
  981. "homepage": "https://laravel.com",
  982. "time": "2018-03-31T14:14:19+00:00"
  983. },
  984. {
  985. "name": "illuminate/redis",
  986. "version": "v5.6.23",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/illuminate/redis.git",
  990. "reference": "0bbf5608e3c7b7f5d8c3ac9351355dc71185ad32"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://files.phpcomposer.com/files/illuminate/redis/0bbf5608e3c7b7f5d8c3ac9351355dc71185ad32.zip",
  995. "reference": "0bbf5608e3c7b7f5d8c3ac9351355dc71185ad32",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "illuminate/contracts": "5.6.*",
  1000. "illuminate/support": "5.6.*",
  1001. "php": "^7.1.3",
  1002. "predis/predis": "~1.0"
  1003. },
  1004. "type": "library",
  1005. "extra": {
  1006. "branch-alias": {
  1007. "dev-master": "5.6-dev"
  1008. }
  1009. },
  1010. "autoload": {
  1011. "psr-4": {
  1012. "Illuminate\\Redis\\": ""
  1013. }
  1014. },
  1015. "notification-url": "https://packagist.org/downloads/",
  1016. "license": [
  1017. "MIT"
  1018. ],
  1019. "authors": [
  1020. {
  1021. "name": "Taylor Otwell",
  1022. "email": "taylor@laravel.com"
  1023. }
  1024. ],
  1025. "description": "The Illuminate Redis package.",
  1026. "homepage": "https://laravel.com",
  1027. "time": "2018-05-22T14:42:23+00:00"
  1028. },
  1029. {
  1030. "name": "illuminate/session",
  1031. "version": "v5.6.25",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/illuminate/session.git",
  1035. "reference": "90bb5857fb64e269d8d331f02f820555ee471f64"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://files.phpcomposer.com/files/illuminate/session/90bb5857fb64e269d8d331f02f820555ee471f64.zip",
  1040. "reference": "90bb5857fb64e269d8d331f02f820555ee471f64",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "illuminate/contracts": "5.6.*",
  1045. "illuminate/filesystem": "5.6.*",
  1046. "illuminate/support": "5.6.*",
  1047. "php": "^7.1.3",
  1048. "symfony/finder": "~4.0",
  1049. "symfony/http-foundation": "~4.0"
  1050. },
  1051. "suggest": {
  1052. "illuminate/console": "Required to use the session:table command (5.6.*)."
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "branch-alias": {
  1057. "dev-master": "5.6-dev"
  1058. }
  1059. },
  1060. "autoload": {
  1061. "psr-4": {
  1062. "Illuminate\\Session\\": ""
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "MIT"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Taylor Otwell",
  1072. "email": "taylor@laravel.com"
  1073. }
  1074. ],
  1075. "description": "The Illuminate Session package.",
  1076. "homepage": "https://laravel.com",
  1077. "time": "2018-03-06T14:29:02+00:00"
  1078. },
  1079. {
  1080. "name": "illuminate/support",
  1081. "version": "v5.6.25",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/illuminate/support.git",
  1085. "reference": "192a3c3690a90467974f547ff648899679a4243c"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://files.phpcomposer.com/files/illuminate/support/192a3c3690a90467974f547ff648899679a4243c.zip",
  1090. "reference": "192a3c3690a90467974f547ff648899679a4243c",
  1091. "shasum": ""
  1092. },
  1093. "require": {
  1094. "doctrine/inflector": "~1.1",
  1095. "ext-mbstring": "*",
  1096. "illuminate/contracts": "5.6.*",
  1097. "nesbot/carbon": "^1.24.1",
  1098. "php": "^7.1.3"
  1099. },
  1100. "conflict": {
  1101. "tightenco/collect": "<5.5.33"
  1102. },
  1103. "suggest": {
  1104. "illuminate/filesystem": "Required to use the composer class (5.6.*).",
  1105. "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
  1106. "symfony/process": "Required to use the composer class (~4.0).",
  1107. "symfony/var-dumper": "Required to use the dd function (~4.0)."
  1108. },
  1109. "type": "library",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-master": "5.6-dev"
  1113. }
  1114. },
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Illuminate\\Support\\": ""
  1118. },
  1119. "files": [
  1120. "helpers.php"
  1121. ]
  1122. },
  1123. "notification-url": "https://packagist.org/downloads/",
  1124. "license": [
  1125. "MIT"
  1126. ],
  1127. "authors": [
  1128. {
  1129. "name": "Taylor Otwell",
  1130. "email": "taylor@laravel.com"
  1131. }
  1132. ],
  1133. "description": "The Illuminate Support package.",
  1134. "homepage": "https://laravel.com",
  1135. "time": "2018-06-12T14:37:15+00:00"
  1136. },
  1137. {
  1138. "name": "illuminate/translation",
  1139. "version": "v5.6.25",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/illuminate/translation.git",
  1143. "reference": "add5b215599e6e02ec2568d67216aa012443b8d7"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://files.phpcomposer.com/files/illuminate/translation/add5b215599e6e02ec2568d67216aa012443b8d7.zip",
  1148. "reference": "add5b215599e6e02ec2568d67216aa012443b8d7",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "illuminate/contracts": "5.6.*",
  1153. "illuminate/filesystem": "5.6.*",
  1154. "illuminate/support": "5.6.*",
  1155. "php": "^7.1.3"
  1156. },
  1157. "type": "library",
  1158. "extra": {
  1159. "branch-alias": {
  1160. "dev-master": "5.6-dev"
  1161. }
  1162. },
  1163. "autoload": {
  1164. "psr-4": {
  1165. "Illuminate\\Translation\\": ""
  1166. }
  1167. },
  1168. "notification-url": "https://packagist.org/downloads/",
  1169. "license": [
  1170. "MIT"
  1171. ],
  1172. "authors": [
  1173. {
  1174. "name": "Taylor Otwell",
  1175. "email": "taylor@laravel.com"
  1176. }
  1177. ],
  1178. "description": "The Illuminate Translation package.",
  1179. "homepage": "https://laravel.com",
  1180. "time": "2018-05-28T12:54:39+00:00"
  1181. },
  1182. {
  1183. "name": "illuminate/validation",
  1184. "version": "v5.6.25",
  1185. "source": {
  1186. "type": "git",
  1187. "url": "https://github.com/illuminate/validation.git",
  1188. "reference": "3060d057d2647f91fab9ffda2cff958e2e5c4eb2"
  1189. },
  1190. "dist": {
  1191. "type": "zip",
  1192. "url": "https://files.phpcomposer.com/files/illuminate/validation/3060d057d2647f91fab9ffda2cff958e2e5c4eb2.zip",
  1193. "reference": "3060d057d2647f91fab9ffda2cff958e2e5c4eb2",
  1194. "shasum": ""
  1195. },
  1196. "require": {
  1197. "illuminate/container": "5.6.*",
  1198. "illuminate/contracts": "5.6.*",
  1199. "illuminate/support": "5.6.*",
  1200. "illuminate/translation": "5.6.*",
  1201. "php": "^7.1.3",
  1202. "symfony/http-foundation": "~4.0"
  1203. },
  1204. "suggest": {
  1205. "illuminate/database": "Required to use the database presence verifier (5.6.*)."
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "5.6-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-4": {
  1215. "Illuminate\\Validation\\": ""
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Taylor Otwell",
  1225. "email": "taylor@laravel.com"
  1226. }
  1227. ],
  1228. "description": "The Illuminate Validation package.",
  1229. "homepage": "https://laravel.com",
  1230. "time": "2018-05-30T13:37:00+00:00"
  1231. },
  1232. {
  1233. "name": "illuminate/view",
  1234. "version": "v5.6.25",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/illuminate/view.git",
  1238. "reference": "fd4f501d8e7aadd962cdfdb2e9d15587b2612291"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://files.phpcomposer.com/files/illuminate/view/fd4f501d8e7aadd962cdfdb2e9d15587b2612291.zip",
  1243. "reference": "fd4f501d8e7aadd962cdfdb2e9d15587b2612291",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "illuminate/container": "5.6.*",
  1248. "illuminate/contracts": "5.6.*",
  1249. "illuminate/events": "5.6.*",
  1250. "illuminate/filesystem": "5.6.*",
  1251. "illuminate/support": "5.6.*",
  1252. "php": "^7.1.3",
  1253. "symfony/debug": "~4.0"
  1254. },
  1255. "type": "library",
  1256. "extra": {
  1257. "branch-alias": {
  1258. "dev-master": "5.6-dev"
  1259. }
  1260. },
  1261. "autoload": {
  1262. "psr-4": {
  1263. "Illuminate\\View\\": ""
  1264. }
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "MIT"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Taylor Otwell",
  1273. "email": "taylor@laravel.com"
  1274. }
  1275. ],
  1276. "description": "The Illuminate View package.",
  1277. "homepage": "https://laravel.com",
  1278. "time": "2018-06-06T13:28:32+00:00"
  1279. },
  1280. {
  1281. "name": "laravel/lumen-framework",
  1282. "version": "v5.6.3",
  1283. "source": {
  1284. "type": "git",
  1285. "url": "https://github.com/laravel/lumen-framework.git",
  1286. "reference": "ada8052dc09642d24792fb0019252c8287494e6c"
  1287. },
  1288. "dist": {
  1289. "type": "zip",
  1290. "url": "https://files.phpcomposer.com/files/laravel/lumen-framework/ada8052dc09642d24792fb0019252c8287494e6c.zip",
  1291. "reference": "ada8052dc09642d24792fb0019252c8287494e6c",
  1292. "shasum": ""
  1293. },
  1294. "require": {
  1295. "dragonmantank/cron-expression": "~2.0",
  1296. "illuminate/auth": "5.6.*",
  1297. "illuminate/broadcasting": "5.6.*",
  1298. "illuminate/bus": "5.6.*",
  1299. "illuminate/cache": "5.6.*",
  1300. "illuminate/config": "5.6.*",
  1301. "illuminate/container": "5.6.*",
  1302. "illuminate/contracts": "5.6.*",
  1303. "illuminate/database": "5.6.*",
  1304. "illuminate/encryption": "5.6.*",
  1305. "illuminate/events": "5.6.*",
  1306. "illuminate/filesystem": "5.6.*",
  1307. "illuminate/hashing": "5.6.*",
  1308. "illuminate/http": "5.6.*",
  1309. "illuminate/log": "5.6.*",
  1310. "illuminate/pagination": "5.6.*",
  1311. "illuminate/pipeline": "5.6.*",
  1312. "illuminate/queue": "5.6.*",
  1313. "illuminate/support": "5.6.*",
  1314. "illuminate/translation": "5.6.*",
  1315. "illuminate/validation": "5.6.*",
  1316. "illuminate/view": "5.6.*",
  1317. "nikic/fast-route": "~1.2",
  1318. "php": "^7.1.3",
  1319. "symfony/http-foundation": "~4.0",
  1320. "symfony/http-kernel": "~4.0"
  1321. },
  1322. "require-dev": {
  1323. "mockery/mockery": "~1.0",
  1324. "phpunit/phpunit": "~6.0"
  1325. },
  1326. "suggest": {
  1327. "laravel/tinker": "Required to use the tinker console command (~1.0).",
  1328. "vlucas/phpdotenv": "Required to use .env files (~2.2)."
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "branch-alias": {
  1333. "dev-master": "5.6-dev"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Laravel\\Lumen\\": "src/"
  1339. },
  1340. "files": [
  1341. "src/helpers.php"
  1342. ]
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Taylor Otwell",
  1351. "email": "taylorotwell@gmail.com"
  1352. }
  1353. ],
  1354. "description": "The Laravel Lumen Framework.",
  1355. "homepage": "https://lumen.laravel.com",
  1356. "keywords": [
  1357. "framework",
  1358. "laravel",
  1359. "lumen"
  1360. ],
  1361. "time": "2018-03-27T16:21:45+00:00"
  1362. },
  1363. {
  1364. "name": "monolog/monolog",
  1365. "version": "1.23.0",
  1366. "source": {
  1367. "type": "git",
  1368. "url": "https://github.com/Seldaek/monolog.git",
  1369. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4"
  1370. },
  1371. "dist": {
  1372. "type": "zip",
  1373. "url": "https://files.phpcomposer.com/files/Seldaek/monolog/fd8c787753b3a2ad11bc60c063cff1358a32a3b4.zip",
  1374. "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4",
  1375. "shasum": ""
  1376. },
  1377. "require": {
  1378. "php": ">=5.3.0",
  1379. "psr/log": "~1.0"
  1380. },
  1381. "provide": {
  1382. "psr/log-implementation": "1.0.0"
  1383. },
  1384. "require-dev": {
  1385. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1386. "doctrine/couchdb": "~1.0@dev",
  1387. "graylog2/gelf-php": "~1.0",
  1388. "jakub-onderka/php-parallel-lint": "0.9",
  1389. "php-amqplib/php-amqplib": "~2.4",
  1390. "php-console/php-console": "^3.1.3",
  1391. "phpunit/phpunit": "~4.5",
  1392. "phpunit/phpunit-mock-objects": "2.3.0",
  1393. "ruflin/elastica": ">=0.90 <3.0",
  1394. "sentry/sentry": "^0.13",
  1395. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1396. },
  1397. "suggest": {
  1398. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1399. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1400. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1401. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1402. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1403. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1404. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1405. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1406. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1407. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1408. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-master": "2.0.x-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Monolog\\": "src/Monolog"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Jordi Boggiano",
  1428. "email": "j.boggiano@seld.be",
  1429. "homepage": "http://seld.be"
  1430. }
  1431. ],
  1432. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1433. "homepage": "http://github.com/Seldaek/monolog",
  1434. "keywords": [
  1435. "log",
  1436. "logging",
  1437. "psr-3"
  1438. ],
  1439. "time": "2017-06-19T01:22:40+00:00"
  1440. },
  1441. {
  1442. "name": "nesbot/carbon",
  1443. "version": "1.29.2",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/briannesbitt/Carbon.git",
  1447. "reference": "ed6aa898982f441ccc9b2acdec51490f2bc5d337"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://files.phpcomposer.com/files/briannesbitt/Carbon/ed6aa898982f441ccc9b2acdec51490f2bc5d337.zip",
  1452. "reference": "ed6aa898982f441ccc9b2acdec51490f2bc5d337",
  1453. "shasum": ""
  1454. },
  1455. "require": {
  1456. "php": ">=5.3.9",
  1457. "symfony/translation": "~2.6 || ~3.0 || ~4.0"
  1458. },
  1459. "require-dev": {
  1460. "friendsofphp/php-cs-fixer": "~2",
  1461. "phpunit/phpunit": "^4.8.35 || ^5.7"
  1462. },
  1463. "type": "library",
  1464. "autoload": {
  1465. "psr-4": {
  1466. "": "src/"
  1467. }
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "MIT"
  1472. ],
  1473. "authors": [
  1474. {
  1475. "name": "Brian Nesbitt",
  1476. "email": "brian@nesbot.com",
  1477. "homepage": "http://nesbot.com"
  1478. }
  1479. ],
  1480. "description": "A simple API extension for DateTime.",
  1481. "homepage": "http://carbon.nesbot.com",
  1482. "keywords": [
  1483. "date",
  1484. "datetime",
  1485. "time"
  1486. ],
  1487. "time": "2018-05-29T15:23:46+00:00"
  1488. },
  1489. {
  1490. "name": "nikic/fast-route",
  1491. "version": "v1.3.0",
  1492. "source": {
  1493. "type": "git",
  1494. "url": "https://github.com/nikic/FastRoute.git",
  1495. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1496. },
  1497. "dist": {
  1498. "type": "zip",
  1499. "url": "https://files.phpcomposer.com/files/nikic/FastRoute/181d480e08d9476e61381e04a71b34dc0432e812.zip",
  1500. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1501. "shasum": ""
  1502. },
  1503. "require": {
  1504. "php": ">=5.4.0"
  1505. },
  1506. "require-dev": {
  1507. "phpunit/phpunit": "^4.8.35|~5.7"
  1508. },
  1509. "type": "library",
  1510. "autoload": {
  1511. "psr-4": {
  1512. "FastRoute\\": "src/"
  1513. },
  1514. "files": [
  1515. "src/functions.php"
  1516. ]
  1517. },
  1518. "notification-url": "https://packagist.org/downloads/",
  1519. "license": [
  1520. "BSD-3-Clause"
  1521. ],
  1522. "authors": [
  1523. {
  1524. "name": "Nikita Popov",
  1525. "email": "nikic@php.net"
  1526. }
  1527. ],
  1528. "description": "Fast request router for PHP",
  1529. "keywords": [
  1530. "router",
  1531. "routing"
  1532. ],
  1533. "time": "2018-02-13T20:26:39+00:00"
  1534. },
  1535. {
  1536. "name": "predis/predis",
  1537. "version": "v1.1.1",
  1538. "source": {
  1539. "type": "git",
  1540. "url": "https://github.com/nrk/predis.git",
  1541. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  1542. },
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://files.phpcomposer.com/files/nrk/predis/f0210e38881631afeafb56ab43405a92cafd9fd1.zip",
  1546. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  1547. "shasum": ""
  1548. },
  1549. "require": {
  1550. "php": ">=5.3.9"
  1551. },
  1552. "require-dev": {
  1553. "phpunit/phpunit": "~4.8"
  1554. },
  1555. "suggest": {
  1556. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1557. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1558. },
  1559. "type": "library",
  1560. "autoload": {
  1561. "psr-4": {
  1562. "Predis\\": "src/"
  1563. }
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Daniele Alessandri",
  1572. "email": "suppakilla@gmail.com",
  1573. "homepage": "http://clorophilla.net"
  1574. }
  1575. ],
  1576. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  1577. "homepage": "http://github.com/nrk/predis",
  1578. "keywords": [
  1579. "nosql",
  1580. "predis",
  1581. "redis"
  1582. ],
  1583. "time": "2016-06-16T16:22:20+00:00"
  1584. },
  1585. {
  1586. "name": "psr/container",
  1587. "version": "1.0.0",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/php-fig/container.git",
  1591. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://files.phpcomposer.com/files/php-fig/container/b7ce3b176482dbbc1245ebf52b181af44c2cf55f.zip",
  1596. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "php": ">=5.3.0"
  1601. },
  1602. "type": "library",
  1603. "extra": {
  1604. "branch-alias": {
  1605. "dev-master": "1.0.x-dev"
  1606. }
  1607. },
  1608. "autoload": {
  1609. "psr-4": {
  1610. "Psr\\Container\\": "src/"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "PHP-FIG",
  1620. "homepage": "http://www.php-fig.org/"
  1621. }
  1622. ],
  1623. "description": "Common Container Interface (PHP FIG PSR-11)",
  1624. "homepage": "https://github.com/php-fig/container",
  1625. "keywords": [
  1626. "PSR-11",
  1627. "container",
  1628. "container-interface",
  1629. "container-interop",
  1630. "psr"
  1631. ],
  1632. "time": "2017-02-14T16:28:37+00:00"
  1633. },
  1634. {
  1635. "name": "psr/log",
  1636. "version": "1.0.2",
  1637. "source": {
  1638. "type": "git",
  1639. "url": "https://github.com/php-fig/log.git",
  1640. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  1641. },
  1642. "dist": {
  1643. "type": "zip",
  1644. "url": "https://files.phpcomposer.com/files/php-fig/log/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d.zip",
  1645. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  1646. "shasum": ""
  1647. },
  1648. "require": {
  1649. "php": ">=5.3.0"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "1.0.x-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "psr-4": {
  1659. "Psr\\Log\\": "Psr/Log/"
  1660. }
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "MIT"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "PHP-FIG",
  1669. "homepage": "http://www.php-fig.org/"
  1670. }
  1671. ],
  1672. "description": "Common interface for logging libraries",
  1673. "homepage": "https://github.com/php-fig/log",
  1674. "keywords": [
  1675. "log",
  1676. "psr",
  1677. "psr-3"
  1678. ],
  1679. "time": "2016-10-10T12:19:37+00:00"
  1680. },
  1681. {
  1682. "name": "psr/simple-cache",
  1683. "version": "1.0.1",
  1684. "source": {
  1685. "type": "git",
  1686. "url": "https://github.com/php-fig/simple-cache.git",
  1687. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1688. },
  1689. "dist": {
  1690. "type": "zip",
  1691. "url": "https://files.phpcomposer.com/files/php-fig/simple-cache/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b.zip",
  1692. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1693. "shasum": ""
  1694. },
  1695. "require": {
  1696. "php": ">=5.3.0"
  1697. },
  1698. "type": "library",
  1699. "extra": {
  1700. "branch-alias": {
  1701. "dev-master": "1.0.x-dev"
  1702. }
  1703. },
  1704. "autoload": {
  1705. "psr-4": {
  1706. "Psr\\SimpleCache\\": "src/"
  1707. }
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "MIT"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "PHP-FIG",
  1716. "homepage": "http://www.php-fig.org/"
  1717. }
  1718. ],
  1719. "description": "Common interfaces for simple caching",
  1720. "keywords": [
  1721. "cache",
  1722. "caching",
  1723. "psr",
  1724. "psr-16",
  1725. "simple-cache"
  1726. ],
  1727. "time": "2017-10-23T01:57:42+00:00"
  1728. },
  1729. {
  1730. "name": "qiniu/php-sdk",
  1731. "version": "v7.2.6",
  1732. "source": {
  1733. "type": "git",
  1734. "url": "https://github.com/qiniu/php-sdk.git",
  1735. "reference": "305ce1c1c0c71f794661fe45a96facf61ef96c5d"
  1736. },
  1737. "dist": {
  1738. "type": "zip",
  1739. "url": "https://files.phpcomposer.com/files/qiniu/php-sdk/305ce1c1c0c71f794661fe45a96facf61ef96c5d.zip",
  1740. "reference": "305ce1c1c0c71f794661fe45a96facf61ef96c5d",
  1741. "shasum": ""
  1742. },
  1743. "require": {
  1744. "php": ">=5.3.3"
  1745. },
  1746. "require-dev": {
  1747. "phpunit/phpunit": "~4.0",
  1748. "squizlabs/php_codesniffer": "~2.3"
  1749. },
  1750. "type": "library",
  1751. "autoload": {
  1752. "psr-4": {
  1753. "Qiniu\\": "src/Qiniu"
  1754. },
  1755. "files": [
  1756. "src/Qiniu/functions.php"
  1757. ]
  1758. },
  1759. "notification-url": "https://packagist.org/downloads/",
  1760. "license": [
  1761. "MIT"
  1762. ],
  1763. "authors": [
  1764. {
  1765. "name": "Qiniu",
  1766. "email": "sdk@qiniu.com",
  1767. "homepage": "http://www.qiniu.com"
  1768. }
  1769. ],
  1770. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  1771. "homepage": "http://developer.qiniu.com/",
  1772. "keywords": [
  1773. "cloud",
  1774. "qiniu",
  1775. "sdk",
  1776. "storage"
  1777. ],
  1778. "time": "2018-05-18T04:37:29+00:00"
  1779. },
  1780. {
  1781. "name": "symfony/console",
  1782. "version": "v4.1.0",
  1783. "source": {
  1784. "type": "git",
  1785. "url": "https://github.com/symfony/console.git",
  1786. "reference": "2d5d973bf9933d46802b01010bd25c800c87c242"
  1787. },
  1788. "dist": {
  1789. "type": "zip",
  1790. "url": "https://files.phpcomposer.com/files/symfony/console/2d5d973bf9933d46802b01010bd25c800c87c242.zip",
  1791. "reference": "2d5d973bf9933d46802b01010bd25c800c87c242",
  1792. "shasum": ""
  1793. },
  1794. "require": {
  1795. "php": "^7.1.3",
  1796. "symfony/polyfill-mbstring": "~1.0"
  1797. },
  1798. "conflict": {
  1799. "symfony/dependency-injection": "<3.4",
  1800. "symfony/process": "<3.3"
  1801. },
  1802. "require-dev": {
  1803. "psr/log": "~1.0",
  1804. "symfony/config": "~3.4|~4.0",
  1805. "symfony/dependency-injection": "~3.4|~4.0",
  1806. "symfony/event-dispatcher": "~3.4|~4.0",
  1807. "symfony/lock": "~3.4|~4.0",
  1808. "symfony/process": "~3.4|~4.0"
  1809. },
  1810. "suggest": {
  1811. "psr/log-implementation": "For using the console logger",
  1812. "symfony/event-dispatcher": "",
  1813. "symfony/lock": "",
  1814. "symfony/process": ""
  1815. },
  1816. "type": "library",
  1817. "extra": {
  1818. "branch-alias": {
  1819. "dev-master": "4.1-dev"
  1820. }
  1821. },
  1822. "autoload": {
  1823. "psr-4": {
  1824. "Symfony\\Component\\Console\\": ""
  1825. },
  1826. "exclude-from-classmap": [
  1827. "/Tests/"
  1828. ]
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Fabien Potencier",
  1837. "email": "fabien@symfony.com"
  1838. },
  1839. {
  1840. "name": "Symfony Community",
  1841. "homepage": "https://symfony.com/contributors"
  1842. }
  1843. ],
  1844. "description": "Symfony Console Component",
  1845. "homepage": "https://symfony.com",
  1846. "time": "2018-05-30T07:26:09+00:00"
  1847. },
  1848. {
  1849. "name": "symfony/debug",
  1850. "version": "v4.1.0",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/symfony/debug.git",
  1854. "reference": "449f8b00b28ab6e6912c3e6b920406143b27193b"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://files.phpcomposer.com/files/symfony/debug/449f8b00b28ab6e6912c3e6b920406143b27193b.zip",
  1859. "reference": "449f8b00b28ab6e6912c3e6b920406143b27193b",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "php": "^7.1.3",
  1864. "psr/log": "~1.0"
  1865. },
  1866. "conflict": {
  1867. "symfony/http-kernel": "<3.4"
  1868. },
  1869. "require-dev": {
  1870. "symfony/http-kernel": "~3.4|~4.0"
  1871. },
  1872. "type": "library",
  1873. "extra": {
  1874. "branch-alias": {
  1875. "dev-master": "4.1-dev"
  1876. }
  1877. },
  1878. "autoload": {
  1879. "psr-4": {
  1880. "Symfony\\Component\\Debug\\": ""
  1881. },
  1882. "exclude-from-classmap": [
  1883. "/Tests/"
  1884. ]
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Fabien Potencier",
  1893. "email": "fabien@symfony.com"
  1894. },
  1895. {
  1896. "name": "Symfony Community",
  1897. "homepage": "https://symfony.com/contributors"
  1898. }
  1899. ],
  1900. "description": "Symfony Debug Component",
  1901. "homepage": "https://symfony.com",
  1902. "time": "2018-05-16T14:33:22+00:00"
  1903. },
  1904. {
  1905. "name": "symfony/event-dispatcher",
  1906. "version": "v4.1.0",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/symfony/event-dispatcher.git",
  1910. "reference": "2391ed210a239868e7256eb6921b1bd83f3087b5"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://files.phpcomposer.com/files/symfony/event-dispatcher/2391ed210a239868e7256eb6921b1bd83f3087b5.zip",
  1915. "reference": "2391ed210a239868e7256eb6921b1bd83f3087b5",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "php": "^7.1.3"
  1920. },
  1921. "conflict": {
  1922. "symfony/dependency-injection": "<3.4"
  1923. },
  1924. "require-dev": {
  1925. "psr/log": "~1.0",
  1926. "symfony/config": "~3.4|~4.0",
  1927. "symfony/dependency-injection": "~3.4|~4.0",
  1928. "symfony/expression-language": "~3.4|~4.0",
  1929. "symfony/stopwatch": "~3.4|~4.0"
  1930. },
  1931. "suggest": {
  1932. "symfony/dependency-injection": "",
  1933. "symfony/http-kernel": ""
  1934. },
  1935. "type": "library",
  1936. "extra": {
  1937. "branch-alias": {
  1938. "dev-master": "4.1-dev"
  1939. }
  1940. },
  1941. "autoload": {
  1942. "psr-4": {
  1943. "Symfony\\Component\\EventDispatcher\\": ""
  1944. },
  1945. "exclude-from-classmap": [
  1946. "/Tests/"
  1947. ]
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "Fabien Potencier",
  1956. "email": "fabien@symfony.com"
  1957. },
  1958. {
  1959. "name": "Symfony Community",
  1960. "homepage": "https://symfony.com/contributors"
  1961. }
  1962. ],
  1963. "description": "Symfony EventDispatcher Component",
  1964. "homepage": "https://symfony.com",
  1965. "time": "2018-04-06T07:35:57+00:00"
  1966. },
  1967. {
  1968. "name": "symfony/finder",
  1969. "version": "v4.1.0",
  1970. "source": {
  1971. "type": "git",
  1972. "url": "https://github.com/symfony/finder.git",
  1973. "reference": "087e2ee0d74464a4c6baac4e90417db7477dc238"
  1974. },
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://files.phpcomposer.com/files/symfony/finder/087e2ee0d74464a4c6baac4e90417db7477dc238.zip",
  1978. "reference": "087e2ee0d74464a4c6baac4e90417db7477dc238",
  1979. "shasum": ""
  1980. },
  1981. "require": {
  1982. "php": "^7.1.3"
  1983. },
  1984. "type": "library",
  1985. "extra": {
  1986. "branch-alias": {
  1987. "dev-master": "4.1-dev"
  1988. }
  1989. },
  1990. "autoload": {
  1991. "psr-4": {
  1992. "Symfony\\Component\\Finder\\": ""
  1993. },
  1994. "exclude-from-classmap": [
  1995. "/Tests/"
  1996. ]
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "authors": [
  2003. {
  2004. "name": "Fabien Potencier",
  2005. "email": "fabien@symfony.com"
  2006. },
  2007. {
  2008. "name": "Symfony Community",
  2009. "homepage": "https://symfony.com/contributors"
  2010. }
  2011. ],
  2012. "description": "Symfony Finder Component",
  2013. "homepage": "https://symfony.com",
  2014. "time": "2018-05-16T14:33:22+00:00"
  2015. },
  2016. {
  2017. "name": "symfony/http-foundation",
  2018. "version": "v4.1.0",
  2019. "source": {
  2020. "type": "git",
  2021. "url": "https://github.com/symfony/http-foundation.git",
  2022. "reference": "a916c88390fb861ee21f12a92b107d51bb68af99"
  2023. },
  2024. "dist": {
  2025. "type": "zip",
  2026. "url": "https://files.phpcomposer.com/files/symfony/http-foundation/a916c88390fb861ee21f12a92b107d51bb68af99.zip",
  2027. "reference": "a916c88390fb861ee21f12a92b107d51bb68af99",
  2028. "shasum": ""
  2029. },
  2030. "require": {
  2031. "php": "^7.1.3",
  2032. "symfony/polyfill-mbstring": "~1.1"
  2033. },
  2034. "require-dev": {
  2035. "predis/predis": "~1.0",
  2036. "symfony/expression-language": "~3.4|~4.0"
  2037. },
  2038. "type": "library",
  2039. "extra": {
  2040. "branch-alias": {
  2041. "dev-master": "4.1-dev"
  2042. }
  2043. },
  2044. "autoload": {
  2045. "psr-4": {
  2046. "Symfony\\Component\\HttpFoundation\\": ""
  2047. },
  2048. "exclude-from-classmap": [
  2049. "/Tests/"
  2050. ]
  2051. },
  2052. "notification-url": "https://packagist.org/downloads/",
  2053. "license": [
  2054. "MIT"
  2055. ],
  2056. "authors": [
  2057. {
  2058. "name": "Fabien Potencier",
  2059. "email": "fabien@symfony.com"
  2060. },
  2061. {
  2062. "name": "Symfony Community",
  2063. "homepage": "https://symfony.com/contributors"
  2064. }
  2065. ],
  2066. "description": "Symfony HttpFoundation Component",
  2067. "homepage": "https://symfony.com",
  2068. "time": "2018-05-25T14:55:38+00:00"
  2069. },
  2070. {
  2071. "name": "symfony/http-kernel",
  2072. "version": "v4.1.0",
  2073. "source": {
  2074. "type": "git",
  2075. "url": "https://github.com/symfony/http-kernel.git",
  2076. "reference": "b5ab9d4cdbfd369083744b6b5dfbf454e31e5f90"
  2077. },
  2078. "dist": {
  2079. "type": "zip",
  2080. "url": "https://files.phpcomposer.com/files/symfony/http-kernel/b5ab9d4cdbfd369083744b6b5dfbf454e31e5f90.zip",
  2081. "reference": "b5ab9d4cdbfd369083744b6b5dfbf454e31e5f90",
  2082. "shasum": ""
  2083. },
  2084. "require": {
  2085. "php": "^7.1.3",
  2086. "psr/log": "~1.0",
  2087. "symfony/debug": "~3.4|~4.0",
  2088. "symfony/event-dispatcher": "~4.1",
  2089. "symfony/http-foundation": "~4.1",
  2090. "symfony/polyfill-ctype": "~1.8"
  2091. },
  2092. "conflict": {
  2093. "symfony/config": "<3.4",
  2094. "symfony/dependency-injection": "<4.1",
  2095. "symfony/var-dumper": "<4.1",
  2096. "twig/twig": "<1.34|<2.4,>=2"
  2097. },
  2098. "provide": {
  2099. "psr/log-implementation": "1.0"
  2100. },
  2101. "require-dev": {
  2102. "psr/cache": "~1.0",
  2103. "symfony/browser-kit": "~3.4|~4.0",
  2104. "symfony/config": "~3.4|~4.0",
  2105. "symfony/console": "~3.4|~4.0",
  2106. "symfony/css-selector": "~3.4|~4.0",
  2107. "symfony/dependency-injection": "^4.1",
  2108. "symfony/dom-crawler": "~3.4|~4.0",
  2109. "symfony/expression-language": "~3.4|~4.0",
  2110. "symfony/finder": "~3.4|~4.0",
  2111. "symfony/process": "~3.4|~4.0",
  2112. "symfony/routing": "~3.4|~4.0",
  2113. "symfony/stopwatch": "~3.4|~4.0",
  2114. "symfony/templating": "~3.4|~4.0",
  2115. "symfony/translation": "~3.4|~4.0",
  2116. "symfony/var-dumper": "~4.1"
  2117. },
  2118. "suggest": {
  2119. "symfony/browser-kit": "",
  2120. "symfony/config": "",
  2121. "symfony/console": "",
  2122. "symfony/dependency-injection": "",
  2123. "symfony/var-dumper": ""
  2124. },
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "4.1-dev"
  2129. }
  2130. },
  2131. "autoload": {
  2132. "psr-4": {
  2133. "Symfony\\Component\\HttpKernel\\": ""
  2134. },
  2135. "exclude-from-classmap": [
  2136. "/Tests/"
  2137. ]
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "MIT"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "Fabien Potencier",
  2146. "email": "fabien@symfony.com"
  2147. },
  2148. {
  2149. "name": "Symfony Community",
  2150. "homepage": "https://symfony.com/contributors"
  2151. }
  2152. ],
  2153. "description": "Symfony HttpKernel Component",
  2154. "homepage": "https://symfony.com",
  2155. "time": "2018-05-30T12:52:34+00:00"
  2156. },
  2157. {
  2158. "name": "symfony/polyfill-ctype",
  2159. "version": "v1.8.0",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/symfony/polyfill-ctype.git",
  2163. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://files.phpcomposer.com/files/symfony/polyfill-ctype/7cc359f1b7b80fc25ed7796be7d96adc9b354bae.zip",
  2168. "reference": "7cc359f1b7b80fc25ed7796be7d96adc9b354bae",
  2169. "shasum": ""
  2170. },
  2171. "require": {
  2172. "php": ">=5.3.3"
  2173. },
  2174. "type": "library",
  2175. "extra": {
  2176. "branch-alias": {
  2177. "dev-master": "1.8-dev"
  2178. }
  2179. },
  2180. "autoload": {
  2181. "psr-4": {
  2182. "Symfony\\Polyfill\\Ctype\\": ""
  2183. },
  2184. "files": [
  2185. "bootstrap.php"
  2186. ]
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "Symfony Community",
  2195. "homepage": "https://symfony.com/contributors"
  2196. },
  2197. {
  2198. "name": "Gert de Pagter",
  2199. "email": "BackEndTea@gmail.com"
  2200. }
  2201. ],
  2202. "description": "Symfony polyfill for ctype functions",
  2203. "homepage": "https://symfony.com",
  2204. "keywords": [
  2205. "compatibility",
  2206. "ctype",
  2207. "polyfill",
  2208. "portable"
  2209. ],
  2210. "time": "2018-04-30T19:57:29+00:00"
  2211. },
  2212. {
  2213. "name": "symfony/polyfill-mbstring",
  2214. "version": "v1.8.0",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2218. "reference": "3296adf6a6454a050679cde90f95350ad604b171"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://files.phpcomposer.com/files/symfony/polyfill-mbstring/3296adf6a6454a050679cde90f95350ad604b171.zip",
  2223. "reference": "3296adf6a6454a050679cde90f95350ad604b171",
  2224. "shasum": ""
  2225. },
  2226. "require": {
  2227. "php": ">=5.3.3"
  2228. },
  2229. "suggest": {
  2230. "ext-mbstring": "For best performance"
  2231. },
  2232. "type": "library",
  2233. "extra": {
  2234. "branch-alias": {
  2235. "dev-master": "1.8-dev"
  2236. }
  2237. },
  2238. "autoload": {
  2239. "psr-4": {
  2240. "Symfony\\Polyfill\\Mbstring\\": ""
  2241. },
  2242. "files": [
  2243. "bootstrap.php"
  2244. ]
  2245. },
  2246. "notification-url": "https://packagist.org/downloads/",
  2247. "license": [
  2248. "MIT"
  2249. ],
  2250. "authors": [
  2251. {
  2252. "name": "Nicolas Grekas",
  2253. "email": "p@tchwork.com"
  2254. },
  2255. {
  2256. "name": "Symfony Community",
  2257. "homepage": "https://symfony.com/contributors"
  2258. }
  2259. ],
  2260. "description": "Symfony polyfill for the Mbstring extension",
  2261. "homepage": "https://symfony.com",
  2262. "keywords": [
  2263. "compatibility",
  2264. "mbstring",
  2265. "polyfill",
  2266. "portable",
  2267. "shim"
  2268. ],
  2269. "time": "2018-04-26T10:06:28+00:00"
  2270. },
  2271. {
  2272. "name": "symfony/process",
  2273. "version": "v4.1.0",
  2274. "source": {
  2275. "type": "git",
  2276. "url": "https://github.com/symfony/process.git",
  2277. "reference": "73445bd33b0d337c060eef9652b94df72b6b3434"
  2278. },
  2279. "dist": {
  2280. "type": "zip",
  2281. "url": "https://files.phpcomposer.com/files/symfony/process/73445bd33b0d337c060eef9652b94df72b6b3434.zip",
  2282. "reference": "73445bd33b0d337c060eef9652b94df72b6b3434",
  2283. "shasum": ""
  2284. },
  2285. "require": {
  2286. "php": "^7.1.3"
  2287. },
  2288. "type": "library",
  2289. "extra": {
  2290. "branch-alias": {
  2291. "dev-master": "4.1-dev"
  2292. }
  2293. },
  2294. "autoload": {
  2295. "psr-4": {
  2296. "Symfony\\Component\\Process\\": ""
  2297. },
  2298. "exclude-from-classmap": [
  2299. "/Tests/"
  2300. ]
  2301. },
  2302. "notification-url": "https://packagist.org/downloads/",
  2303. "license": [
  2304. "MIT"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "Fabien Potencier",
  2309. "email": "fabien@symfony.com"
  2310. },
  2311. {
  2312. "name": "Symfony Community",
  2313. "homepage": "https://symfony.com/contributors"
  2314. }
  2315. ],
  2316. "description": "Symfony Process Component",
  2317. "homepage": "https://symfony.com",
  2318. "time": "2018-05-30T07:26:09+00:00"
  2319. },
  2320. {
  2321. "name": "symfony/translation",
  2322. "version": "v4.1.0",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/symfony/translation.git",
  2326. "reference": "16328f5b217cebc8dd4adfe4aeeaa8c377581f5a"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://files.phpcomposer.com/files/symfony/translation/16328f5b217cebc8dd4adfe4aeeaa8c377581f5a.zip",
  2331. "reference": "16328f5b217cebc8dd4adfe4aeeaa8c377581f5a",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "php": "^7.1.3",
  2336. "symfony/polyfill-mbstring": "~1.0"
  2337. },
  2338. "conflict": {
  2339. "symfony/config": "<3.4",
  2340. "symfony/dependency-injection": "<3.4",
  2341. "symfony/yaml": "<3.4"
  2342. },
  2343. "require-dev": {
  2344. "psr/log": "~1.0",
  2345. "symfony/config": "~3.4|~4.0",
  2346. "symfony/console": "~3.4|~4.0",
  2347. "symfony/dependency-injection": "~3.4|~4.0",
  2348. "symfony/finder": "~2.8|~3.0|~4.0",
  2349. "symfony/intl": "~3.4|~4.0",
  2350. "symfony/yaml": "~3.4|~4.0"
  2351. },
  2352. "suggest": {
  2353. "psr/log-implementation": "To use logging capability in translator",
  2354. "symfony/config": "",
  2355. "symfony/yaml": ""
  2356. },
  2357. "type": "library",
  2358. "extra": {
  2359. "branch-alias": {
  2360. "dev-master": "4.1-dev"
  2361. }
  2362. },
  2363. "autoload": {
  2364. "psr-4": {
  2365. "Symfony\\Component\\Translation\\": ""
  2366. },
  2367. "exclude-from-classmap": [
  2368. "/Tests/"
  2369. ]
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Fabien Potencier",
  2378. "email": "fabien@symfony.com"
  2379. },
  2380. {
  2381. "name": "Symfony Community",
  2382. "homepage": "https://symfony.com/contributors"
  2383. }
  2384. ],
  2385. "description": "Symfony Translation Component",
  2386. "homepage": "https://symfony.com",
  2387. "time": "2018-05-30T07:26:09+00:00"
  2388. },
  2389. {
  2390. "name": "vlucas/phpdotenv",
  2391. "version": "v2.4.0",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/vlucas/phpdotenv.git",
  2395. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://files.phpcomposer.com/files/vlucas/phpdotenv/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c.zip",
  2400. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "php": ">=5.3.9"
  2405. },
  2406. "require-dev": {
  2407. "phpunit/phpunit": "^4.8 || ^5.0"
  2408. },
  2409. "type": "library",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-master": "2.4-dev"
  2413. }
  2414. },
  2415. "autoload": {
  2416. "psr-4": {
  2417. "Dotenv\\": "src/"
  2418. }
  2419. },
  2420. "notification-url": "https://packagist.org/downloads/",
  2421. "license": [
  2422. "BSD-3-Clause-Attribution"
  2423. ],
  2424. "authors": [
  2425. {
  2426. "name": "Vance Lucas",
  2427. "email": "vance@vancelucas.com",
  2428. "homepage": "http://www.vancelucas.com"
  2429. }
  2430. ],
  2431. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2432. "keywords": [
  2433. "dotenv",
  2434. "env",
  2435. "environment"
  2436. ],
  2437. "time": "2016-09-01T10:05:43+00:00"
  2438. }
  2439. ],
  2440. "packages-dev": [
  2441. {
  2442. "name": "doctrine/instantiator",
  2443. "version": "1.1.0",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/doctrine/instantiator.git",
  2447. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://files.phpcomposer.com/files/doctrine/instantiator/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda.zip",
  2452. "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": "^7.1"
  2457. },
  2458. "require-dev": {
  2459. "athletic/athletic": "~0.1.8",
  2460. "ext-pdo": "*",
  2461. "ext-phar": "*",
  2462. "phpunit/phpunit": "^6.2.3",
  2463. "squizlabs/php_codesniffer": "^3.0.2"
  2464. },
  2465. "type": "library",
  2466. "extra": {
  2467. "branch-alias": {
  2468. "dev-master": "1.2.x-dev"
  2469. }
  2470. },
  2471. "autoload": {
  2472. "psr-4": {
  2473. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2474. }
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Marco Pivetta",
  2483. "email": "ocramius@gmail.com",
  2484. "homepage": "http://ocramius.github.com/"
  2485. }
  2486. ],
  2487. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2488. "homepage": "https://github.com/doctrine/instantiator",
  2489. "keywords": [
  2490. "constructor",
  2491. "instantiate"
  2492. ],
  2493. "time": "2017-07-22T11:58:36+00:00"
  2494. },
  2495. {
  2496. "name": "fzaninotto/faker",
  2497. "version": "v1.7.1",
  2498. "source": {
  2499. "type": "git",
  2500. "url": "https://github.com/fzaninotto/Faker.git",
  2501. "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d"
  2502. },
  2503. "dist": {
  2504. "type": "zip",
  2505. "url": "https://files.phpcomposer.com/files/fzaninotto/Faker/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d.zip",
  2506. "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d",
  2507. "shasum": ""
  2508. },
  2509. "require": {
  2510. "php": "^5.3.3 || ^7.0"
  2511. },
  2512. "require-dev": {
  2513. "ext-intl": "*",
  2514. "phpunit/phpunit": "^4.0 || ^5.0",
  2515. "squizlabs/php_codesniffer": "^1.5"
  2516. },
  2517. "type": "library",
  2518. "extra": {
  2519. "branch-alias": {
  2520. "dev-master": "1.8-dev"
  2521. }
  2522. },
  2523. "autoload": {
  2524. "psr-4": {
  2525. "Faker\\": "src/Faker/"
  2526. }
  2527. },
  2528. "notification-url": "https://packagist.org/downloads/",
  2529. "license": [
  2530. "MIT"
  2531. ],
  2532. "authors": [
  2533. {
  2534. "name": "François Zaninotto"
  2535. }
  2536. ],
  2537. "description": "Faker is a PHP library that generates fake data for you.",
  2538. "keywords": [
  2539. "data",
  2540. "faker",
  2541. "fixtures"
  2542. ],
  2543. "time": "2017-08-15T16:48:10+00:00"
  2544. },
  2545. {
  2546. "name": "hamcrest/hamcrest-php",
  2547. "version": "v2.0.0",
  2548. "source": {
  2549. "type": "git",
  2550. "url": "https://github.com/hamcrest/hamcrest-php.git",
  2551. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  2552. },
  2553. "dist": {
  2554. "type": "zip",
  2555. "url": "https://files.phpcomposer.com/files/hamcrest/hamcrest-php/776503d3a8e85d4f9a1148614f95b7a608b046ad.zip",
  2556. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  2557. "shasum": ""
  2558. },
  2559. "require": {
  2560. "php": "^5.3|^7.0"
  2561. },
  2562. "replace": {
  2563. "cordoval/hamcrest-php": "*",
  2564. "davedevelopment/hamcrest-php": "*",
  2565. "kodova/hamcrest-php": "*"
  2566. },
  2567. "require-dev": {
  2568. "phpunit/php-file-iterator": "1.3.3",
  2569. "phpunit/phpunit": "~4.0",
  2570. "satooshi/php-coveralls": "^1.0"
  2571. },
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-master": "2.0-dev"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "classmap": [
  2580. "hamcrest"
  2581. ]
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "BSD"
  2586. ],
  2587. "description": "This is the PHP port of Hamcrest Matchers",
  2588. "keywords": [
  2589. "test"
  2590. ],
  2591. "time": "2016-01-20T08:20:44+00:00"
  2592. },
  2593. {
  2594. "name": "mockery/mockery",
  2595. "version": "1.1.0",
  2596. "source": {
  2597. "type": "git",
  2598. "url": "https://github.com/mockery/mockery.git",
  2599. "reference": "99e29d3596b16dabe4982548527d5ddf90232e99"
  2600. },
  2601. "dist": {
  2602. "type": "zip",
  2603. "url": "https://files.phpcomposer.com/files/mockery/mockery/99e29d3596b16dabe4982548527d5ddf90232e99.zip",
  2604. "reference": "99e29d3596b16dabe4982548527d5ddf90232e99",
  2605. "shasum": ""
  2606. },
  2607. "require": {
  2608. "hamcrest/hamcrest-php": "~2.0",
  2609. "lib-pcre": ">=7.0",
  2610. "php": ">=5.6.0"
  2611. },
  2612. "require-dev": {
  2613. "phpdocumentor/phpdocumentor": "^2.9",
  2614. "phpunit/phpunit": "~5.7.10|~6.5"
  2615. },
  2616. "type": "library",
  2617. "extra": {
  2618. "branch-alias": {
  2619. "dev-master": "1.0.x-dev"
  2620. }
  2621. },
  2622. "autoload": {
  2623. "psr-0": {
  2624. "Mockery": "library/"
  2625. }
  2626. },
  2627. "notification-url": "https://packagist.org/downloads/",
  2628. "license": [
  2629. "BSD-3-Clause"
  2630. ],
  2631. "authors": [
  2632. {
  2633. "name": "Pádraic Brady",
  2634. "email": "padraic.brady@gmail.com",
  2635. "homepage": "http://blog.astrumfutura.com"
  2636. },
  2637. {
  2638. "name": "Dave Marshall",
  2639. "email": "dave.marshall@atstsolutions.co.uk",
  2640. "homepage": "http://davedevelopment.co.uk"
  2641. }
  2642. ],
  2643. "description": "Mockery is a simple yet flexible PHP mock object framework",
  2644. "homepage": "https://github.com/mockery/mockery",
  2645. "keywords": [
  2646. "BDD",
  2647. "TDD",
  2648. "library",
  2649. "mock",
  2650. "mock objects",
  2651. "mockery",
  2652. "stub",
  2653. "test",
  2654. "test double",
  2655. "testing"
  2656. ],
  2657. "time": "2018-05-08T08:54:48+00:00"
  2658. },
  2659. {
  2660. "name": "myclabs/deep-copy",
  2661. "version": "1.8.1",
  2662. "source": {
  2663. "type": "git",
  2664. "url": "https://github.com/myclabs/DeepCopy.git",
  2665. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  2666. },
  2667. "dist": {
  2668. "type": "zip",
  2669. "url": "https://files.phpcomposer.com/files/myclabs/DeepCopy/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8.zip",
  2670. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  2671. "shasum": ""
  2672. },
  2673. "require": {
  2674. "php": "^7.1"
  2675. },
  2676. "replace": {
  2677. "myclabs/deep-copy": "self.version"
  2678. },
  2679. "require-dev": {
  2680. "doctrine/collections": "^1.0",
  2681. "doctrine/common": "^2.6",
  2682. "phpunit/phpunit": "^7.1"
  2683. },
  2684. "type": "library",
  2685. "autoload": {
  2686. "psr-4": {
  2687. "DeepCopy\\": "src/DeepCopy/"
  2688. },
  2689. "files": [
  2690. "src/DeepCopy/deep_copy.php"
  2691. ]
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "description": "Create deep copies (clones) of your objects",
  2698. "keywords": [
  2699. "clone",
  2700. "copy",
  2701. "duplicate",
  2702. "object",
  2703. "object graph"
  2704. ],
  2705. "time": "2018-06-11T23:09:50+00:00"
  2706. },
  2707. {
  2708. "name": "phar-io/manifest",
  2709. "version": "1.0.1",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://github.com/phar-io/manifest.git",
  2713. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://files.phpcomposer.com/files/phar-io/manifest/2df402786ab5368a0169091f61a7c1e0eb6852d0.zip",
  2718. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  2719. "shasum": ""
  2720. },
  2721. "require": {
  2722. "ext-dom": "*",
  2723. "ext-phar": "*",
  2724. "phar-io/version": "^1.0.1",
  2725. "php": "^5.6 || ^7.0"
  2726. },
  2727. "type": "library",
  2728. "extra": {
  2729. "branch-alias": {
  2730. "dev-master": "1.0.x-dev"
  2731. }
  2732. },
  2733. "autoload": {
  2734. "classmap": [
  2735. "src/"
  2736. ]
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "BSD-3-Clause"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "Arne Blankerts",
  2745. "email": "arne@blankerts.de",
  2746. "role": "Developer"
  2747. },
  2748. {
  2749. "name": "Sebastian Heuer",
  2750. "email": "sebastian@phpeople.de",
  2751. "role": "Developer"
  2752. },
  2753. {
  2754. "name": "Sebastian Bergmann",
  2755. "email": "sebastian@phpunit.de",
  2756. "role": "Developer"
  2757. }
  2758. ],
  2759. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2760. "time": "2017-03-05T18:14:27+00:00"
  2761. },
  2762. {
  2763. "name": "phar-io/version",
  2764. "version": "1.0.1",
  2765. "source": {
  2766. "type": "git",
  2767. "url": "https://github.com/phar-io/version.git",
  2768. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  2769. },
  2770. "dist": {
  2771. "type": "zip",
  2772. "url": "https://files.phpcomposer.com/files/phar-io/version/a70c0ced4be299a63d32fa96d9281d03e94041df.zip",
  2773. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  2774. "shasum": ""
  2775. },
  2776. "require": {
  2777. "php": "^5.6 || ^7.0"
  2778. },
  2779. "type": "library",
  2780. "autoload": {
  2781. "classmap": [
  2782. "src/"
  2783. ]
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "BSD-3-Clause"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Arne Blankerts",
  2792. "email": "arne@blankerts.de",
  2793. "role": "Developer"
  2794. },
  2795. {
  2796. "name": "Sebastian Heuer",
  2797. "email": "sebastian@phpeople.de",
  2798. "role": "Developer"
  2799. },
  2800. {
  2801. "name": "Sebastian Bergmann",
  2802. "email": "sebastian@phpunit.de",
  2803. "role": "Developer"
  2804. }
  2805. ],
  2806. "description": "Library for handling version information and constraints",
  2807. "time": "2017-03-05T17:38:23+00:00"
  2808. },
  2809. {
  2810. "name": "phpdocumentor/reflection-common",
  2811. "version": "1.0.1",
  2812. "source": {
  2813. "type": "git",
  2814. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2815. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  2816. },
  2817. "dist": {
  2818. "type": "zip",
  2819. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionCommon/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6.zip",
  2820. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  2821. "shasum": ""
  2822. },
  2823. "require": {
  2824. "php": ">=5.5"
  2825. },
  2826. "require-dev": {
  2827. "phpunit/phpunit": "^4.6"
  2828. },
  2829. "type": "library",
  2830. "extra": {
  2831. "branch-alias": {
  2832. "dev-master": "1.0.x-dev"
  2833. }
  2834. },
  2835. "autoload": {
  2836. "psr-4": {
  2837. "phpDocumentor\\Reflection\\": [
  2838. "src"
  2839. ]
  2840. }
  2841. },
  2842. "notification-url": "https://packagist.org/downloads/",
  2843. "license": [
  2844. "MIT"
  2845. ],
  2846. "authors": [
  2847. {
  2848. "name": "Jaap van Otterdijk",
  2849. "email": "opensource@ijaap.nl"
  2850. }
  2851. ],
  2852. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2853. "homepage": "http://www.phpdoc.org",
  2854. "keywords": [
  2855. "FQSEN",
  2856. "phpDocumentor",
  2857. "phpdoc",
  2858. "reflection",
  2859. "static analysis"
  2860. ],
  2861. "time": "2017-09-11T18:02:19+00:00"
  2862. },
  2863. {
  2864. "name": "phpdocumentor/reflection-docblock",
  2865. "version": "4.3.0",
  2866. "source": {
  2867. "type": "git",
  2868. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2869. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  2870. },
  2871. "dist": {
  2872. "type": "zip",
  2873. "url": "https://files.phpcomposer.com/files/phpDocumentor/ReflectionDocBlock/94fd0001232e47129dd3504189fa1c7225010d08.zip",
  2874. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  2875. "shasum": ""
  2876. },
  2877. "require": {
  2878. "php": "^7.0",
  2879. "phpdocumentor/reflection-common": "^1.0.0",
  2880. "phpdocumentor/type-resolver": "^0.4.0",
  2881. "webmozart/assert": "^1.0"
  2882. },
  2883. "require-dev": {
  2884. "doctrine/instantiator": "~1.0.5",
  2885. "mockery/mockery": "^1.0",
  2886. "phpunit/phpunit": "^6.4"
  2887. },
  2888. "type": "library",
  2889. "extra": {
  2890. "branch-alias": {
  2891. "dev-master": "4.x-dev"
  2892. }
  2893. },
  2894. "autoload": {
  2895. "psr-4": {
  2896. "phpDocumentor\\Reflection\\": [
  2897. "src/"
  2898. ]
  2899. }
  2900. },
  2901. "notification-url": "https://packagist.org/downloads/",
  2902. "license": [
  2903. "MIT"
  2904. ],
  2905. "authors": [
  2906. {
  2907. "name": "Mike van Riel",
  2908. "email": "me@mikevanriel.com"
  2909. }
  2910. ],
  2911. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2912. "time": "2017-11-30T07:14:17+00:00"
  2913. },
  2914. {
  2915. "name": "phpdocumentor/type-resolver",
  2916. "version": "0.4.0",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2920. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://files.phpcomposer.com/files/phpDocumentor/TypeResolver/9c977708995954784726e25d0cd1dddf4e65b0f7.zip",
  2925. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "php": "^5.5 || ^7.0",
  2930. "phpdocumentor/reflection-common": "^1.0"
  2931. },
  2932. "require-dev": {
  2933. "mockery/mockery": "^0.9.4",
  2934. "phpunit/phpunit": "^5.2||^4.8.24"
  2935. },
  2936. "type": "library",
  2937. "extra": {
  2938. "branch-alias": {
  2939. "dev-master": "1.0.x-dev"
  2940. }
  2941. },
  2942. "autoload": {
  2943. "psr-4": {
  2944. "phpDocumentor\\Reflection\\": [
  2945. "src/"
  2946. ]
  2947. }
  2948. },
  2949. "notification-url": "https://packagist.org/downloads/",
  2950. "license": [
  2951. "MIT"
  2952. ],
  2953. "authors": [
  2954. {
  2955. "name": "Mike van Riel",
  2956. "email": "me@mikevanriel.com"
  2957. }
  2958. ],
  2959. "time": "2017-07-14T14:27:02+00:00"
  2960. },
  2961. {
  2962. "name": "phpspec/prophecy",
  2963. "version": "1.7.6",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/phpspec/prophecy.git",
  2967. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://files.phpcomposer.com/files/phpspec/prophecy/33a7e3c4fda54e912ff6338c48823bd5c0f0b712.zip",
  2972. "reference": "33a7e3c4fda54e912ff6338c48823bd5c0f0b712",
  2973. "shasum": ""
  2974. },
  2975. "require": {
  2976. "doctrine/instantiator": "^1.0.2",
  2977. "php": "^5.3|^7.0",
  2978. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  2979. "sebastian/comparator": "^1.1|^2.0|^3.0",
  2980. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  2981. },
  2982. "require-dev": {
  2983. "phpspec/phpspec": "^2.5|^3.2",
  2984. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5"
  2985. },
  2986. "type": "library",
  2987. "extra": {
  2988. "branch-alias": {
  2989. "dev-master": "1.7.x-dev"
  2990. }
  2991. },
  2992. "autoload": {
  2993. "psr-0": {
  2994. "Prophecy\\": "src/"
  2995. }
  2996. },
  2997. "notification-url": "https://packagist.org/downloads/",
  2998. "license": [
  2999. "MIT"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "Konstantin Kudryashov",
  3004. "email": "ever.zet@gmail.com",
  3005. "homepage": "http://everzet.com"
  3006. },
  3007. {
  3008. "name": "Marcello Duarte",
  3009. "email": "marcello.duarte@gmail.com"
  3010. }
  3011. ],
  3012. "description": "Highly opinionated mocking framework for PHP 5.3+",
  3013. "homepage": "https://github.com/phpspec/prophecy",
  3014. "keywords": [
  3015. "Double",
  3016. "Dummy",
  3017. "fake",
  3018. "mock",
  3019. "spy",
  3020. "stub"
  3021. ],
  3022. "time": "2018-04-18T13:57:24+00:00"
  3023. },
  3024. {
  3025. "name": "phpunit/php-code-coverage",
  3026. "version": "5.3.2",
  3027. "source": {
  3028. "type": "git",
  3029. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3030. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  3031. },
  3032. "dist": {
  3033. "type": "zip",
  3034. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-code-coverage/c89677919c5dd6d3b3852f230a663118762218ac.zip",
  3035. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  3036. "shasum": ""
  3037. },
  3038. "require": {
  3039. "ext-dom": "*",
  3040. "ext-xmlwriter": "*",
  3041. "php": "^7.0",
  3042. "phpunit/php-file-iterator": "^1.4.2",
  3043. "phpunit/php-text-template": "^1.2.1",
  3044. "phpunit/php-token-stream": "^2.0.1",
  3045. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  3046. "sebastian/environment": "^3.0",
  3047. "sebastian/version": "^2.0.1",
  3048. "theseer/tokenizer": "^1.1"
  3049. },
  3050. "require-dev": {
  3051. "phpunit/phpunit": "^6.0"
  3052. },
  3053. "suggest": {
  3054. "ext-xdebug": "^2.5.5"
  3055. },
  3056. "type": "library",
  3057. "extra": {
  3058. "branch-alias": {
  3059. "dev-master": "5.3.x-dev"
  3060. }
  3061. },
  3062. "autoload": {
  3063. "classmap": [
  3064. "src/"
  3065. ]
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "BSD-3-Clause"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "Sebastian Bergmann",
  3074. "email": "sebastian@phpunit.de",
  3075. "role": "lead"
  3076. }
  3077. ],
  3078. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3079. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3080. "keywords": [
  3081. "coverage",
  3082. "testing",
  3083. "xunit"
  3084. ],
  3085. "time": "2018-04-06T15:36:58+00:00"
  3086. },
  3087. {
  3088. "name": "phpunit/php-file-iterator",
  3089. "version": "1.4.5",
  3090. "source": {
  3091. "type": "git",
  3092. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3093. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  3094. },
  3095. "dist": {
  3096. "type": "zip",
  3097. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-file-iterator/730b01bc3e867237eaac355e06a36b85dd93a8b4.zip",
  3098. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  3099. "shasum": ""
  3100. },
  3101. "require": {
  3102. "php": ">=5.3.3"
  3103. },
  3104. "type": "library",
  3105. "extra": {
  3106. "branch-alias": {
  3107. "dev-master": "1.4.x-dev"
  3108. }
  3109. },
  3110. "autoload": {
  3111. "classmap": [
  3112. "src/"
  3113. ]
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "BSD-3-Clause"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "Sebastian Bergmann",
  3122. "email": "sb@sebastian-bergmann.de",
  3123. "role": "lead"
  3124. }
  3125. ],
  3126. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3127. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3128. "keywords": [
  3129. "filesystem",
  3130. "iterator"
  3131. ],
  3132. "time": "2017-11-27T13:52:08+00:00"
  3133. },
  3134. {
  3135. "name": "phpunit/php-text-template",
  3136. "version": "1.2.1",
  3137. "source": {
  3138. "type": "git",
  3139. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3140. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3141. },
  3142. "dist": {
  3143. "type": "zip",
  3144. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-text-template/31f8b717e51d9a2afca6c9f046f5d69fc27c8686.zip",
  3145. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3146. "shasum": ""
  3147. },
  3148. "require": {
  3149. "php": ">=5.3.3"
  3150. },
  3151. "type": "library",
  3152. "autoload": {
  3153. "classmap": [
  3154. "src/"
  3155. ]
  3156. },
  3157. "notification-url": "https://packagist.org/downloads/",
  3158. "license": [
  3159. "BSD-3-Clause"
  3160. ],
  3161. "authors": [
  3162. {
  3163. "name": "Sebastian Bergmann",
  3164. "email": "sebastian@phpunit.de",
  3165. "role": "lead"
  3166. }
  3167. ],
  3168. "description": "Simple template engine.",
  3169. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3170. "keywords": [
  3171. "template"
  3172. ],
  3173. "time": "2015-06-21T13:50:34+00:00"
  3174. },
  3175. {
  3176. "name": "phpunit/php-timer",
  3177. "version": "1.0.9",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3181. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-timer/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f.zip",
  3186. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  3187. "shasum": ""
  3188. },
  3189. "require": {
  3190. "php": "^5.3.3 || ^7.0"
  3191. },
  3192. "require-dev": {
  3193. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3194. },
  3195. "type": "library",
  3196. "extra": {
  3197. "branch-alias": {
  3198. "dev-master": "1.0-dev"
  3199. }
  3200. },
  3201. "autoload": {
  3202. "classmap": [
  3203. "src/"
  3204. ]
  3205. },
  3206. "notification-url": "https://packagist.org/downloads/",
  3207. "license": [
  3208. "BSD-3-Clause"
  3209. ],
  3210. "authors": [
  3211. {
  3212. "name": "Sebastian Bergmann",
  3213. "email": "sb@sebastian-bergmann.de",
  3214. "role": "lead"
  3215. }
  3216. ],
  3217. "description": "Utility class for timing",
  3218. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3219. "keywords": [
  3220. "timer"
  3221. ],
  3222. "time": "2017-02-26T11:10:40+00:00"
  3223. },
  3224. {
  3225. "name": "phpunit/php-token-stream",
  3226. "version": "2.0.2",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3230. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://files.phpcomposer.com/files/sebastianbergmann/php-token-stream/791198a2c6254db10131eecfe8c06670700904db.zip",
  3235. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  3236. "shasum": ""
  3237. },
  3238. "require": {
  3239. "ext-tokenizer": "*",
  3240. "php": "^7.0"
  3241. },
  3242. "require-dev": {
  3243. "phpunit/phpunit": "^6.2.4"
  3244. },
  3245. "type": "library",
  3246. "extra": {
  3247. "branch-alias": {
  3248. "dev-master": "2.0-dev"
  3249. }
  3250. },
  3251. "autoload": {
  3252. "classmap": [
  3253. "src/"
  3254. ]
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "BSD-3-Clause"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "Sebastian Bergmann",
  3263. "email": "sebastian@phpunit.de"
  3264. }
  3265. ],
  3266. "description": "Wrapper around PHP's tokenizer extension.",
  3267. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3268. "keywords": [
  3269. "tokenizer"
  3270. ],
  3271. "time": "2017-11-27T05:48:46+00:00"
  3272. },
  3273. {
  3274. "name": "phpunit/phpunit",
  3275. "version": "6.5.8",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3279. "reference": "4f21a3c6b97c42952fd5c2837bb354ec0199b97b"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit/4f21a3c6b97c42952fd5c2837bb354ec0199b97b.zip",
  3284. "reference": "4f21a3c6b97c42952fd5c2837bb354ec0199b97b",
  3285. "shasum": ""
  3286. },
  3287. "require": {
  3288. "ext-dom": "*",
  3289. "ext-json": "*",
  3290. "ext-libxml": "*",
  3291. "ext-mbstring": "*",
  3292. "ext-xml": "*",
  3293. "myclabs/deep-copy": "^1.6.1",
  3294. "phar-io/manifest": "^1.0.1",
  3295. "phar-io/version": "^1.0",
  3296. "php": "^7.0",
  3297. "phpspec/prophecy": "^1.7",
  3298. "phpunit/php-code-coverage": "^5.3",
  3299. "phpunit/php-file-iterator": "^1.4.3",
  3300. "phpunit/php-text-template": "^1.2.1",
  3301. "phpunit/php-timer": "^1.0.9",
  3302. "phpunit/phpunit-mock-objects": "^5.0.5",
  3303. "sebastian/comparator": "^2.1",
  3304. "sebastian/diff": "^2.0",
  3305. "sebastian/environment": "^3.1",
  3306. "sebastian/exporter": "^3.1",
  3307. "sebastian/global-state": "^2.0",
  3308. "sebastian/object-enumerator": "^3.0.3",
  3309. "sebastian/resource-operations": "^1.0",
  3310. "sebastian/version": "^2.0.1"
  3311. },
  3312. "conflict": {
  3313. "phpdocumentor/reflection-docblock": "3.0.2",
  3314. "phpunit/dbunit": "<3.0"
  3315. },
  3316. "require-dev": {
  3317. "ext-pdo": "*"
  3318. },
  3319. "suggest": {
  3320. "ext-xdebug": "*",
  3321. "phpunit/php-invoker": "^1.1"
  3322. },
  3323. "bin": [
  3324. "phpunit"
  3325. ],
  3326. "type": "library",
  3327. "extra": {
  3328. "branch-alias": {
  3329. "dev-master": "6.5.x-dev"
  3330. }
  3331. },
  3332. "autoload": {
  3333. "classmap": [
  3334. "src/"
  3335. ]
  3336. },
  3337. "notification-url": "https://packagist.org/downloads/",
  3338. "license": [
  3339. "BSD-3-Clause"
  3340. ],
  3341. "authors": [
  3342. {
  3343. "name": "Sebastian Bergmann",
  3344. "email": "sebastian@phpunit.de",
  3345. "role": "lead"
  3346. }
  3347. ],
  3348. "description": "The PHP Unit Testing framework.",
  3349. "homepage": "https://phpunit.de/",
  3350. "keywords": [
  3351. "phpunit",
  3352. "testing",
  3353. "xunit"
  3354. ],
  3355. "time": "2018-04-10T11:38:34+00:00"
  3356. },
  3357. {
  3358. "name": "phpunit/phpunit-mock-objects",
  3359. "version": "5.0.7",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  3363. "reference": "3eaf040f20154d27d6da59ca2c6e28ac8fd56dce"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://files.phpcomposer.com/files/sebastianbergmann/phpunit-mock-objects/3eaf040f20154d27d6da59ca2c6e28ac8fd56dce.zip",
  3368. "reference": "3eaf040f20154d27d6da59ca2c6e28ac8fd56dce",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "doctrine/instantiator": "^1.0.5",
  3373. "php": "^7.0",
  3374. "phpunit/php-text-template": "^1.2.1",
  3375. "sebastian/exporter": "^3.1"
  3376. },
  3377. "conflict": {
  3378. "phpunit/phpunit": "<6.0"
  3379. },
  3380. "require-dev": {
  3381. "phpunit/phpunit": "^6.5"
  3382. },
  3383. "suggest": {
  3384. "ext-soap": "*"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "branch-alias": {
  3389. "dev-master": "5.0.x-dev"
  3390. }
  3391. },
  3392. "autoload": {
  3393. "classmap": [
  3394. "src/"
  3395. ]
  3396. },
  3397. "notification-url": "https://packagist.org/downloads/",
  3398. "license": [
  3399. "BSD-3-Clause"
  3400. ],
  3401. "authors": [
  3402. {
  3403. "name": "Sebastian Bergmann",
  3404. "email": "sebastian@phpunit.de",
  3405. "role": "lead"
  3406. }
  3407. ],
  3408. "description": "Mock Object library for PHPUnit",
  3409. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  3410. "keywords": [
  3411. "mock",
  3412. "xunit"
  3413. ],
  3414. "time": "2018-05-29T13:50:43+00:00"
  3415. },
  3416. {
  3417. "name": "sebastian/code-unit-reverse-lookup",
  3418. "version": "1.0.1",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3422. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://files.phpcomposer.com/files/sebastianbergmann/code-unit-reverse-lookup/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18.zip",
  3427. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "php": "^5.6 || ^7.0"
  3432. },
  3433. "require-dev": {
  3434. "phpunit/phpunit": "^5.7 || ^6.0"
  3435. },
  3436. "type": "library",
  3437. "extra": {
  3438. "branch-alias": {
  3439. "dev-master": "1.0.x-dev"
  3440. }
  3441. },
  3442. "autoload": {
  3443. "classmap": [
  3444. "src/"
  3445. ]
  3446. },
  3447. "notification-url": "https://packagist.org/downloads/",
  3448. "license": [
  3449. "BSD-3-Clause"
  3450. ],
  3451. "authors": [
  3452. {
  3453. "name": "Sebastian Bergmann",
  3454. "email": "sebastian@phpunit.de"
  3455. }
  3456. ],
  3457. "description": "Looks up which function or method a line of code belongs to",
  3458. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3459. "time": "2017-03-04T06:30:41+00:00"
  3460. },
  3461. {
  3462. "name": "sebastian/comparator",
  3463. "version": "2.1.3",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/sebastianbergmann/comparator.git",
  3467. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://files.phpcomposer.com/files/sebastianbergmann/comparator/34369daee48eafb2651bea869b4b15d75ccc35f9.zip",
  3472. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "php": "^7.0",
  3477. "sebastian/diff": "^2.0 || ^3.0",
  3478. "sebastian/exporter": "^3.1"
  3479. },
  3480. "require-dev": {
  3481. "phpunit/phpunit": "^6.4"
  3482. },
  3483. "type": "library",
  3484. "extra": {
  3485. "branch-alias": {
  3486. "dev-master": "2.1.x-dev"
  3487. }
  3488. },
  3489. "autoload": {
  3490. "classmap": [
  3491. "src/"
  3492. ]
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "BSD-3-Clause"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "Jeff Welch",
  3501. "email": "whatthejeff@gmail.com"
  3502. },
  3503. {
  3504. "name": "Volker Dusch",
  3505. "email": "github@wallbash.com"
  3506. },
  3507. {
  3508. "name": "Bernhard Schussek",
  3509. "email": "bschussek@2bepublished.at"
  3510. },
  3511. {
  3512. "name": "Sebastian Bergmann",
  3513. "email": "sebastian@phpunit.de"
  3514. }
  3515. ],
  3516. "description": "Provides the functionality to compare PHP values for equality",
  3517. "homepage": "https://github.com/sebastianbergmann/comparator",
  3518. "keywords": [
  3519. "comparator",
  3520. "compare",
  3521. "equality"
  3522. ],
  3523. "time": "2018-02-01T13:46:46+00:00"
  3524. },
  3525. {
  3526. "name": "sebastian/diff",
  3527. "version": "2.0.1",
  3528. "source": {
  3529. "type": "git",
  3530. "url": "https://github.com/sebastianbergmann/diff.git",
  3531. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  3532. },
  3533. "dist": {
  3534. "type": "zip",
  3535. "url": "https://files.phpcomposer.com/files/sebastianbergmann/diff/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd.zip",
  3536. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  3537. "shasum": ""
  3538. },
  3539. "require": {
  3540. "php": "^7.0"
  3541. },
  3542. "require-dev": {
  3543. "phpunit/phpunit": "^6.2"
  3544. },
  3545. "type": "library",
  3546. "extra": {
  3547. "branch-alias": {
  3548. "dev-master": "2.0-dev"
  3549. }
  3550. },
  3551. "autoload": {
  3552. "classmap": [
  3553. "src/"
  3554. ]
  3555. },
  3556. "notification-url": "https://packagist.org/downloads/",
  3557. "license": [
  3558. "BSD-3-Clause"
  3559. ],
  3560. "authors": [
  3561. {
  3562. "name": "Kore Nordmann",
  3563. "email": "mail@kore-nordmann.de"
  3564. },
  3565. {
  3566. "name": "Sebastian Bergmann",
  3567. "email": "sebastian@phpunit.de"
  3568. }
  3569. ],
  3570. "description": "Diff implementation",
  3571. "homepage": "https://github.com/sebastianbergmann/diff",
  3572. "keywords": [
  3573. "diff"
  3574. ],
  3575. "time": "2017-08-03T08:09:46+00:00"
  3576. },
  3577. {
  3578. "name": "sebastian/environment",
  3579. "version": "3.1.0",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/sebastianbergmann/environment.git",
  3583. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://files.phpcomposer.com/files/sebastianbergmann/environment/cd0871b3975fb7fc44d11314fd1ee20925fce4f5.zip",
  3588. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  3589. "shasum": ""
  3590. },
  3591. "require": {
  3592. "php": "^7.0"
  3593. },
  3594. "require-dev": {
  3595. "phpunit/phpunit": "^6.1"
  3596. },
  3597. "type": "library",
  3598. "extra": {
  3599. "branch-alias": {
  3600. "dev-master": "3.1.x-dev"
  3601. }
  3602. },
  3603. "autoload": {
  3604. "classmap": [
  3605. "src/"
  3606. ]
  3607. },
  3608. "notification-url": "https://packagist.org/downloads/",
  3609. "license": [
  3610. "BSD-3-Clause"
  3611. ],
  3612. "authors": [
  3613. {
  3614. "name": "Sebastian Bergmann",
  3615. "email": "sebastian@phpunit.de"
  3616. }
  3617. ],
  3618. "description": "Provides functionality to handle HHVM/PHP environments",
  3619. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3620. "keywords": [
  3621. "Xdebug",
  3622. "environment",
  3623. "hhvm"
  3624. ],
  3625. "time": "2017-07-01T08:51:00+00:00"
  3626. },
  3627. {
  3628. "name": "sebastian/exporter",
  3629. "version": "3.1.0",
  3630. "source": {
  3631. "type": "git",
  3632. "url": "https://github.com/sebastianbergmann/exporter.git",
  3633. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  3634. },
  3635. "dist": {
  3636. "type": "zip",
  3637. "url": "https://files.phpcomposer.com/files/sebastianbergmann/exporter/234199f4528de6d12aaa58b612e98f7d36adb937.zip",
  3638. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  3639. "shasum": ""
  3640. },
  3641. "require": {
  3642. "php": "^7.0",
  3643. "sebastian/recursion-context": "^3.0"
  3644. },
  3645. "require-dev": {
  3646. "ext-mbstring": "*",
  3647. "phpunit/phpunit": "^6.0"
  3648. },
  3649. "type": "library",
  3650. "extra": {
  3651. "branch-alias": {
  3652. "dev-master": "3.1.x-dev"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "classmap": [
  3657. "src/"
  3658. ]
  3659. },
  3660. "notification-url": "https://packagist.org/downloads/",
  3661. "license": [
  3662. "BSD-3-Clause"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "Jeff Welch",
  3667. "email": "whatthejeff@gmail.com"
  3668. },
  3669. {
  3670. "name": "Volker Dusch",
  3671. "email": "github@wallbash.com"
  3672. },
  3673. {
  3674. "name": "Bernhard Schussek",
  3675. "email": "bschussek@2bepublished.at"
  3676. },
  3677. {
  3678. "name": "Sebastian Bergmann",
  3679. "email": "sebastian@phpunit.de"
  3680. },
  3681. {
  3682. "name": "Adam Harvey",
  3683. "email": "aharvey@php.net"
  3684. }
  3685. ],
  3686. "description": "Provides the functionality to export PHP variables for visualization",
  3687. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3688. "keywords": [
  3689. "export",
  3690. "exporter"
  3691. ],
  3692. "time": "2017-04-03T13:19:02+00:00"
  3693. },
  3694. {
  3695. "name": "sebastian/global-state",
  3696. "version": "2.0.0",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://github.com/sebastianbergmann/global-state.git",
  3700. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://files.phpcomposer.com/files/sebastianbergmann/global-state/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4.zip",
  3705. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3706. "shasum": ""
  3707. },
  3708. "require": {
  3709. "php": "^7.0"
  3710. },
  3711. "require-dev": {
  3712. "phpunit/phpunit": "^6.0"
  3713. },
  3714. "suggest": {
  3715. "ext-uopz": "*"
  3716. },
  3717. "type": "library",
  3718. "extra": {
  3719. "branch-alias": {
  3720. "dev-master": "2.0-dev"
  3721. }
  3722. },
  3723. "autoload": {
  3724. "classmap": [
  3725. "src/"
  3726. ]
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "BSD-3-Clause"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Sebastian Bergmann",
  3735. "email": "sebastian@phpunit.de"
  3736. }
  3737. ],
  3738. "description": "Snapshotting of global state",
  3739. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3740. "keywords": [
  3741. "global state"
  3742. ],
  3743. "time": "2017-04-27T15:39:26+00:00"
  3744. },
  3745. {
  3746. "name": "sebastian/object-enumerator",
  3747. "version": "3.0.3",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3751. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://files.phpcomposer.com/files/sebastianbergmann/object-enumerator/7cfd9e65d11ffb5af41198476395774d4c8a84c5.zip",
  3756. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3757. "shasum": ""
  3758. },
  3759. "require": {
  3760. "php": "^7.0",
  3761. "sebastian/object-reflector": "^1.1.1",
  3762. "sebastian/recursion-context": "^3.0"
  3763. },
  3764. "require-dev": {
  3765. "phpunit/phpunit": "^6.0"
  3766. },
  3767. "type": "library",
  3768. "extra": {
  3769. "branch-alias": {
  3770. "dev-master": "3.0.x-dev"
  3771. }
  3772. },
  3773. "autoload": {
  3774. "classmap": [
  3775. "src/"
  3776. ]
  3777. },
  3778. "notification-url": "https://packagist.org/downloads/",
  3779. "license": [
  3780. "BSD-3-Clause"
  3781. ],
  3782. "authors": [
  3783. {
  3784. "name": "Sebastian Bergmann",
  3785. "email": "sebastian@phpunit.de"
  3786. }
  3787. ],
  3788. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3789. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3790. "time": "2017-08-03T12:35:26+00:00"
  3791. },
  3792. {
  3793. "name": "sebastian/object-reflector",
  3794. "version": "1.1.1",
  3795. "source": {
  3796. "type": "git",
  3797. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3798. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  3799. },
  3800. "dist": {
  3801. "type": "zip",
  3802. "url": "https://files.phpcomposer.com/files/sebastianbergmann/object-reflector/773f97c67f28de00d397be301821b06708fca0be.zip",
  3803. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  3804. "shasum": ""
  3805. },
  3806. "require": {
  3807. "php": "^7.0"
  3808. },
  3809. "require-dev": {
  3810. "phpunit/phpunit": "^6.0"
  3811. },
  3812. "type": "library",
  3813. "extra": {
  3814. "branch-alias": {
  3815. "dev-master": "1.1-dev"
  3816. }
  3817. },
  3818. "autoload": {
  3819. "classmap": [
  3820. "src/"
  3821. ]
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "BSD-3-Clause"
  3826. ],
  3827. "authors": [
  3828. {
  3829. "name": "Sebastian Bergmann",
  3830. "email": "sebastian@phpunit.de"
  3831. }
  3832. ],
  3833. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3834. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3835. "time": "2017-03-29T09:07:27+00:00"
  3836. },
  3837. {
  3838. "name": "sebastian/recursion-context",
  3839. "version": "3.0.0",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3843. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://files.phpcomposer.com/files/sebastianbergmann/recursion-context/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8.zip",
  3848. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "php": "^7.0"
  3853. },
  3854. "require-dev": {
  3855. "phpunit/phpunit": "^6.0"
  3856. },
  3857. "type": "library",
  3858. "extra": {
  3859. "branch-alias": {
  3860. "dev-master": "3.0.x-dev"
  3861. }
  3862. },
  3863. "autoload": {
  3864. "classmap": [
  3865. "src/"
  3866. ]
  3867. },
  3868. "notification-url": "https://packagist.org/downloads/",
  3869. "license": [
  3870. "BSD-3-Clause"
  3871. ],
  3872. "authors": [
  3873. {
  3874. "name": "Jeff Welch",
  3875. "email": "whatthejeff@gmail.com"
  3876. },
  3877. {
  3878. "name": "Sebastian Bergmann",
  3879. "email": "sebastian@phpunit.de"
  3880. },
  3881. {
  3882. "name": "Adam Harvey",
  3883. "email": "aharvey@php.net"
  3884. }
  3885. ],
  3886. "description": "Provides functionality to recursively process PHP variables",
  3887. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3888. "time": "2017-03-03T06:23:57+00:00"
  3889. },
  3890. {
  3891. "name": "sebastian/resource-operations",
  3892. "version": "1.0.0",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3896. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://files.phpcomposer.com/files/sebastianbergmann/resource-operations/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52.zip",
  3901. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  3902. "shasum": ""
  3903. },
  3904. "require": {
  3905. "php": ">=5.6.0"
  3906. },
  3907. "type": "library",
  3908. "extra": {
  3909. "branch-alias": {
  3910. "dev-master": "1.0.x-dev"
  3911. }
  3912. },
  3913. "autoload": {
  3914. "classmap": [
  3915. "src/"
  3916. ]
  3917. },
  3918. "notification-url": "https://packagist.org/downloads/",
  3919. "license": [
  3920. "BSD-3-Clause"
  3921. ],
  3922. "authors": [
  3923. {
  3924. "name": "Sebastian Bergmann",
  3925. "email": "sebastian@phpunit.de"
  3926. }
  3927. ],
  3928. "description": "Provides a list of PHP built-in functions that operate on resources",
  3929. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3930. "time": "2015-07-28T20:34:47+00:00"
  3931. },
  3932. {
  3933. "name": "sebastian/version",
  3934. "version": "2.0.1",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://github.com/sebastianbergmann/version.git",
  3938. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://files.phpcomposer.com/files/sebastianbergmann/version/99732be0ddb3361e16ad77b68ba41efc8e979019.zip",
  3943. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3944. "shasum": ""
  3945. },
  3946. "require": {
  3947. "php": ">=5.6"
  3948. },
  3949. "type": "library",
  3950. "extra": {
  3951. "branch-alias": {
  3952. "dev-master": "2.0.x-dev"
  3953. }
  3954. },
  3955. "autoload": {
  3956. "classmap": [
  3957. "src/"
  3958. ]
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "license": [
  3962. "BSD-3-Clause"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "Sebastian Bergmann",
  3967. "email": "sebastian@phpunit.de",
  3968. "role": "lead"
  3969. }
  3970. ],
  3971. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3972. "homepage": "https://github.com/sebastianbergmann/version",
  3973. "time": "2016-10-03T07:35:21+00:00"
  3974. },
  3975. {
  3976. "name": "theseer/tokenizer",
  3977. "version": "1.1.0",
  3978. "source": {
  3979. "type": "git",
  3980. "url": "https://github.com/theseer/tokenizer.git",
  3981. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  3982. },
  3983. "dist": {
  3984. "type": "zip",
  3985. "url": "https://files.phpcomposer.com/files/theseer/tokenizer/cb2f008f3f05af2893a87208fe6a6c4985483f8b.zip",
  3986. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  3987. "shasum": ""
  3988. },
  3989. "require": {
  3990. "ext-dom": "*",
  3991. "ext-tokenizer": "*",
  3992. "ext-xmlwriter": "*",
  3993. "php": "^7.0"
  3994. },
  3995. "type": "library",
  3996. "autoload": {
  3997. "classmap": [
  3998. "src/"
  3999. ]
  4000. },
  4001. "notification-url": "https://packagist.org/downloads/",
  4002. "license": [
  4003. "BSD-3-Clause"
  4004. ],
  4005. "authors": [
  4006. {
  4007. "name": "Arne Blankerts",
  4008. "email": "arne@blankerts.de",
  4009. "role": "Developer"
  4010. }
  4011. ],
  4012. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4013. "time": "2017-04-07T12:08:54+00:00"
  4014. },
  4015. {
  4016. "name": "webmozart/assert",
  4017. "version": "1.3.0",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://github.com/webmozart/assert.git",
  4021. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://files.phpcomposer.com/files/webmozart/assert/0df1908962e7a3071564e857d86874dad1ef204a.zip",
  4026. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  4027. "shasum": ""
  4028. },
  4029. "require": {
  4030. "php": "^5.3.3 || ^7.0"
  4031. },
  4032. "require-dev": {
  4033. "phpunit/phpunit": "^4.6",
  4034. "sebastian/version": "^1.0.1"
  4035. },
  4036. "type": "library",
  4037. "extra": {
  4038. "branch-alias": {
  4039. "dev-master": "1.3-dev"
  4040. }
  4041. },
  4042. "autoload": {
  4043. "psr-4": {
  4044. "Webmozart\\Assert\\": "src/"
  4045. }
  4046. },
  4047. "notification-url": "https://packagist.org/downloads/",
  4048. "license": [
  4049. "MIT"
  4050. ],
  4051. "authors": [
  4052. {
  4053. "name": "Bernhard Schussek",
  4054. "email": "bschussek@gmail.com"
  4055. }
  4056. ],
  4057. "description": "Assertions to validate method input/output with nice error messages.",
  4058. "keywords": [
  4059. "assert",
  4060. "check",
  4061. "validate"
  4062. ],
  4063. "time": "2018-01-29T19:49:41+00:00"
  4064. }
  4065. ],
  4066. "aliases": [],
  4067. "minimum-stability": "dev",
  4068. "stability-flags": [],
  4069. "prefer-stable": true,
  4070. "prefer-lowest": false,
  4071. "platform": [],
  4072. "platform-dev": []
  4073. }