composer.lock 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
  5. "This file is @generated automatically"
  6. ],
  7. "hash": "0cb8aa148eb3bf0a631ea82aa1efec18",
  8. "content-hash": "fd4f5cbfac79cf78bf6324bb69096e50",
  9. "packages": [
  10. {
  11. "name": "aws/aws-sdk-php",
  12. "version": "3.22.7",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/aws/aws-sdk-php.git",
  16. "reference": "eea83aaac2b6c86f72a5c85c54d1839b70d4fd21"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/eea83aaac2b6c86f72a5c85c54d1839b70d4fd21",
  21. "reference": "eea83aaac2b6c86f72a5c85c54d1839b70d4fd21",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "guzzlehttp/guzzle": "^5.3.1|^6.2.1",
  26. "guzzlehttp/promises": "~1.0",
  27. "guzzlehttp/psr7": "~1.3.1",
  28. "mtdowling/jmespath.php": "~2.2",
  29. "php": ">=5.5"
  30. },
  31. "require-dev": {
  32. "andrewsville/php-token-reflection": "^1.4",
  33. "aws/aws-php-sns-message-validator": "~1.0",
  34. "behat/behat": "~3.0",
  35. "doctrine/cache": "~1.4",
  36. "ext-dom": "*",
  37. "ext-json": "*",
  38. "ext-openssl": "*",
  39. "ext-pcre": "*",
  40. "ext-simplexml": "*",
  41. "ext-spl": "*",
  42. "nette/neon": "^2.3",
  43. "phpunit/phpunit": "~4.0|~5.0",
  44. "psr/cache": "^1.0"
  45. },
  46. "suggest": {
  47. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  48. "doctrine/cache": "To use the DoctrineCacheAdapter",
  49. "ext-curl": "To send requests using cURL",
  50. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages"
  51. },
  52. "type": "library",
  53. "extra": {
  54. "branch-alias": {
  55. "dev-master": "3.0-dev"
  56. }
  57. },
  58. "autoload": {
  59. "psr-4": {
  60. "Aws\\": "src/"
  61. },
  62. "files": [
  63. "src/functions.php"
  64. ]
  65. },
  66. "notification-url": "https://packagist.org/downloads/",
  67. "license": [
  68. "Apache-2.0"
  69. ],
  70. "authors": [
  71. {
  72. "name": "Amazon Web Services",
  73. "homepage": "http://aws.amazon.com"
  74. }
  75. ],
  76. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  77. "homepage": "http://aws.amazon.com/sdkforphp",
  78. "keywords": [
  79. "amazon",
  80. "aws",
  81. "cloud",
  82. "dynamodb",
  83. "ec2",
  84. "glacier",
  85. "s3",
  86. "sdk"
  87. ],
  88. "time": "2017-02-17 20:09:40"
  89. },
  90. {
  91. "name": "cloudxns/cloud-xns-api-sdk-php",
  92. "version": "dev-master",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/CloudXNS/CloudXNS-API-SDK-PHP.git",
  96. "reference": "8e270167b957e66b1c67939018bee82d68d9d2ac"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/CloudXNS/CloudXNS-API-SDK-PHP/zipball/8e270167b957e66b1c67939018bee82d68d9d2ac",
  101. "reference": "8e270167b957e66b1c67939018bee82d68d9d2ac",
  102. "shasum": ""
  103. },
  104. "require-dev": {
  105. "guzzlehttp/guzzle": "~5.0"
  106. },
  107. "type": "library",
  108. "autoload": {
  109. "psr-4": {
  110. "CloudXNS\\": "src/"
  111. }
  112. },
  113. "notification-url": "https://packagist.org/downloads/",
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "CloudXNS",
  120. "email": "[email protected]"
  121. }
  122. ],
  123. "description": "CloudXNS SDK FILES",
  124. "homepage": "https://www.cloudxns.net/",
  125. "time": "2016-01-27 02:39:42"
  126. },
  127. {
  128. "name": "container-interop/container-interop",
  129. "version": "1.2.0",
  130. "source": {
  131. "type": "git",
  132. "url": "https://github.com/container-interop/container-interop.git",
  133. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  134. },
  135. "dist": {
  136. "type": "zip",
  137. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  138. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  139. "shasum": ""
  140. },
  141. "require": {
  142. "psr/container": "^1.0"
  143. },
  144. "type": "library",
  145. "autoload": {
  146. "psr-4": {
  147. "Interop\\Container\\": "src/Interop/Container/"
  148. }
  149. },
  150. "notification-url": "https://packagist.org/downloads/",
  151. "license": [
  152. "MIT"
  153. ],
  154. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  155. "homepage": "https://github.com/container-interop/container-interop",
  156. "time": "2017-02-14 19:40:03"
  157. },
  158. {
  159. "name": "doctrine/inflector",
  160. "version": "dev-master",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/doctrine/inflector.git",
  164. "reference": "803a2ed9fea02f9ca47cd45395089fe78769a392"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/doctrine/inflector/zipball/803a2ed9fea02f9ca47cd45395089fe78769a392",
  169. "reference": "803a2ed9fea02f9ca47cd45395089fe78769a392",
  170. "shasum": ""
  171. },
  172. "require": {
  173. "php": ">=5.3.2"
  174. },
  175. "require-dev": {
  176. "phpunit/phpunit": "4.*"
  177. },
  178. "type": "library",
  179. "extra": {
  180. "branch-alias": {
  181. "dev-master": "1.1.x-dev"
  182. }
  183. },
  184. "autoload": {
  185. "psr-0": {
  186. "Doctrine\\Common\\Inflector\\": "lib/"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Roman Borschel",
  196. "email": "[email protected]"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "[email protected]"
  201. },
  202. {
  203. "name": "Guilherme Blanco",
  204. "email": "[email protected]"
  205. },
  206. {
  207. "name": "Jonathan Wage",
  208. "email": "[email protected]"
  209. },
  210. {
  211. "name": "Johannes Schmitt",
  212. "email": "[email protected]"
  213. }
  214. ],
  215. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  216. "homepage": "http://www.doctrine-project.org",
  217. "keywords": [
  218. "inflection",
  219. "pluralize",
  220. "singularize",
  221. "string"
  222. ],
  223. "time": "2016-05-12 17:23:41"
  224. },
  225. {
  226. "name": "esdeathlove/datatables",
  227. "version": "1.6.8",
  228. "source": {
  229. "type": "git",
  230. "url": "https://github.com/esdeathlove/datatables.git",
  231. "reference": "13a222abd2ee1a1be114b70cca6a8753e90348a8"
  232. },
  233. "dist": {
  234. "type": "zip",
  235. "url": "https://api.github.com/repos/esdeathlove/datatables/zipball/13a222abd2ee1a1be114b70cca6a8753e90348a8",
  236. "reference": "13a222abd2ee1a1be114b70cca6a8753e90348a8",
  237. "shasum": ""
  238. },
  239. "require-dev": {
  240. "phpspec/phpspec": "~2.0"
  241. },
  242. "type": "library",
  243. "autoload": {
  244. "psr-4": {
  245. "Ozdemir\\Datatables\\": "src/"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "authors": [
  253. {
  254. "name": "Yusuf Özdemir",
  255. "email": "[email protected]"
  256. }
  257. ],
  258. "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
  259. "time": "2017-02-19 00:35:03"
  260. },
  261. {
  262. "name": "filp/whoops",
  263. "version": "2.1.5",
  264. "source": {
  265. "type": "git",
  266. "url": "https://github.com/filp/whoops.git",
  267. "reference": "2abce9d956589122c6443d6265f01cf7e9388e3c"
  268. },
  269. "dist": {
  270. "type": "zip",
  271. "url": "https://api.github.com/repos/filp/whoops/zipball/2abce9d956589122c6443d6265f01cf7e9388e3c",
  272. "reference": "2abce9d956589122c6443d6265f01cf7e9388e3c",
  273. "shasum": ""
  274. },
  275. "require": {
  276. "php": "^5.5.9 || ^7.0"
  277. },
  278. "require-dev": {
  279. "mockery/mockery": "0.9.*",
  280. "phpunit/phpunit": "^4.8 || ^5.0",
  281. "symfony/var-dumper": "^2.6 || ^3.0"
  282. },
  283. "suggest": {
  284. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  285. "whoops/soap": "Formats errors as SOAP responses"
  286. },
  287. "type": "library",
  288. "extra": {
  289. "branch-alias": {
  290. "dev-master": "2.0-dev"
  291. }
  292. },
  293. "autoload": {
  294. "psr-4": {
  295. "Whoops\\": "src/Whoops/"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "MIT"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Filipe Dobreira",
  305. "homepage": "https://github.com/filp",
  306. "role": "Developer"
  307. }
  308. ],
  309. "description": "php error handling for cool kids",
  310. "homepage": "https://filp.github.io/whoops/",
  311. "keywords": [
  312. "error",
  313. "exception",
  314. "handling",
  315. "library",
  316. "whoops",
  317. "zf2"
  318. ],
  319. "time": "2016-12-26 16:13:31"
  320. },
  321. {
  322. "name": "firebase/php-jwt",
  323. "version": "v3.0.0",
  324. "source": {
  325. "type": "git",
  326. "url": "https://github.com/firebase/php-jwt.git",
  327. "reference": "fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1"
  328. },
  329. "dist": {
  330. "type": "zip",
  331. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1",
  332. "reference": "fa8a06e96526eb7c0eeaa47e4f39be59d21f16e1",
  333. "shasum": ""
  334. },
  335. "require": {
  336. "php": ">=5.3.0"
  337. },
  338. "type": "library",
  339. "autoload": {
  340. "psr-4": {
  341. "Firebase\\JWT\\": "src"
  342. }
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "BSD-3-Clause"
  347. ],
  348. "authors": [
  349. {
  350. "name": "Neuman Vong",
  351. "email": "[email protected]",
  352. "role": "Developer"
  353. },
  354. {
  355. "name": "Anant Narayanan",
  356. "email": "[email protected]",
  357. "role": "Developer"
  358. }
  359. ],
  360. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  361. "homepage": "https://github.com/firebase/php-jwt",
  362. "time": "2015-07-22 18:31:08"
  363. },
  364. {
  365. "name": "gregwar/captcha",
  366. "version": "v1.1.1",
  367. "source": {
  368. "type": "git",
  369. "url": "https://github.com/Gregwar/Captcha.git",
  370. "reference": "1240ab993ca713680573b2d4166900da5f758623"
  371. },
  372. "dist": {
  373. "type": "zip",
  374. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/1240ab993ca713680573b2d4166900da5f758623",
  375. "reference": "1240ab993ca713680573b2d4166900da5f758623",
  376. "shasum": ""
  377. },
  378. "require": {
  379. "ext-gd": "*",
  380. "php": ">=5.3.0"
  381. },
  382. "type": "captcha",
  383. "autoload": {
  384. "psr-4": {
  385. "Gregwar\\Captcha\\": "/"
  386. }
  387. },
  388. "notification-url": "https://packagist.org/downloads/",
  389. "license": [
  390. "MIT"
  391. ],
  392. "authors": [
  393. {
  394. "name": "Grégoire Passault",
  395. "email": "[email protected]",
  396. "homepage": "http://www.gregwar.com/"
  397. },
  398. {
  399. "name": "Jeremy Livingston",
  400. "email": "[email protected]"
  401. }
  402. ],
  403. "description": "Captcha generator",
  404. "homepage": "https://github.com/Gregwar/Captcha",
  405. "keywords": [
  406. "bot",
  407. "captcha",
  408. "spam"
  409. ],
  410. "time": "2015-09-11 15:23:20"
  411. },
  412. {
  413. "name": "guzzle/guzzle",
  414. "version": "dev-master",
  415. "source": {
  416. "type": "git",
  417. "url": "https://github.com/guzzle/guzzle3.git",
  418. "reference": "f7778ed85e3db90009d79725afd6c3a82dab32fe"
  419. },
  420. "dist": {
  421. "type": "zip",
  422. "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/f7778ed85e3db90009d79725afd6c3a82dab32fe",
  423. "reference": "f7778ed85e3db90009d79725afd6c3a82dab32fe",
  424. "shasum": ""
  425. },
  426. "require": {
  427. "ext-curl": "*",
  428. "php": ">=5.3.3",
  429. "symfony/event-dispatcher": "~2.1"
  430. },
  431. "replace": {
  432. "guzzle/batch": "self.version",
  433. "guzzle/cache": "self.version",
  434. "guzzle/common": "self.version",
  435. "guzzle/http": "self.version",
  436. "guzzle/inflection": "self.version",
  437. "guzzle/iterator": "self.version",
  438. "guzzle/log": "self.version",
  439. "guzzle/parser": "self.version",
  440. "guzzle/plugin": "self.version",
  441. "guzzle/plugin-async": "self.version",
  442. "guzzle/plugin-backoff": "self.version",
  443. "guzzle/plugin-cache": "self.version",
  444. "guzzle/plugin-cookie": "self.version",
  445. "guzzle/plugin-curlauth": "self.version",
  446. "guzzle/plugin-error-response": "self.version",
  447. "guzzle/plugin-history": "self.version",
  448. "guzzle/plugin-log": "self.version",
  449. "guzzle/plugin-md5": "self.version",
  450. "guzzle/plugin-mock": "self.version",
  451. "guzzle/plugin-oauth": "self.version",
  452. "guzzle/service": "self.version",
  453. "guzzle/stream": "self.version"
  454. },
  455. "require-dev": {
  456. "doctrine/cache": "~1.3",
  457. "monolog/monolog": "~1.0",
  458. "phpunit/phpunit": "3.7.*",
  459. "psr/log": "~1.0",
  460. "symfony/class-loader": "~2.1",
  461. "zendframework/zend-cache": "2.*,<2.3",
  462. "zendframework/zend-log": "2.*,<2.3"
  463. },
  464. "suggest": {
  465. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  466. },
  467. "type": "library",
  468. "extra": {
  469. "branch-alias": {
  470. "dev-master": "3.9-dev"
  471. }
  472. },
  473. "autoload": {
  474. "psr-0": {
  475. "Guzzle": "src/",
  476. "Guzzle\\Tests": "tests/"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Michael Dowling",
  486. "email": "[email protected]",
  487. "homepage": "https://github.com/mtdowling"
  488. },
  489. {
  490. "name": "Guzzle Community",
  491. "homepage": "https://github.com/guzzle/guzzle/contributors"
  492. }
  493. ],
  494. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  495. "homepage": "http://guzzlephp.org/",
  496. "keywords": [
  497. "client",
  498. "curl",
  499. "framework",
  500. "http",
  501. "http client",
  502. "rest",
  503. "web service"
  504. ],
  505. "abandoned": "guzzlehttp/guzzle",
  506. "time": "2016-10-26 18:22:07"
  507. },
  508. {
  509. "name": "guzzlehttp/guzzle",
  510. "version": "5.3.x-dev",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/guzzle/guzzle.git",
  514. "reference": "fc66319d0027509c3a83166314dfc813fa25ffcc"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fc66319d0027509c3a83166314dfc813fa25ffcc",
  519. "reference": "fc66319d0027509c3a83166314dfc813fa25ffcc",
  520. "shasum": ""
  521. },
  522. "require": {
  523. "guzzlehttp/ringphp": "^1.1",
  524. "php": ">=5.4.0",
  525. "react/promise": "^2.2"
  526. },
  527. "require-dev": {
  528. "ext-curl": "*",
  529. "phpunit/phpunit": "^4.0"
  530. },
  531. "type": "library",
  532. "autoload": {
  533. "psr-4": {
  534. "GuzzleHttp\\": "src/"
  535. }
  536. },
  537. "notification-url": "https://packagist.org/downloads/",
  538. "license": [
  539. "MIT"
  540. ],
  541. "authors": [
  542. {
  543. "name": "Michael Dowling",
  544. "email": "[email protected]",
  545. "homepage": "https://github.com/mtdowling"
  546. }
  547. ],
  548. "description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
  549. "homepage": "http://guzzlephp.org/",
  550. "keywords": [
  551. "client",
  552. "curl",
  553. "framework",
  554. "http",
  555. "http client",
  556. "rest",
  557. "web service"
  558. ],
  559. "time": "2017-01-05 06:25:03"
  560. },
  561. {
  562. "name": "guzzlehttp/promises",
  563. "version": "dev-master",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/guzzle/promises.git",
  567. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  572. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "php": ">=5.5.0"
  577. },
  578. "require-dev": {
  579. "phpunit/phpunit": "^4.0"
  580. },
  581. "type": "library",
  582. "extra": {
  583. "branch-alias": {
  584. "dev-master": "1.4-dev"
  585. }
  586. },
  587. "autoload": {
  588. "psr-4": {
  589. "GuzzleHttp\\Promise\\": "src/"
  590. },
  591. "files": [
  592. "src/functions_include.php"
  593. ]
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Michael Dowling",
  602. "email": "[email protected]",
  603. "homepage": "https://github.com/mtdowling"
  604. }
  605. ],
  606. "description": "Guzzle promises library",
  607. "keywords": [
  608. "promise"
  609. ],
  610. "time": "2016-12-20 10:07:11"
  611. },
  612. {
  613. "name": "guzzlehttp/psr7",
  614. "version": "1.3.1",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/guzzle/psr7.git",
  618. "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/guzzle/psr7/zipball/5c6447c9df362e8f8093bda8f5d8873fe5c7f65b",
  623. "reference": "5c6447c9df362e8f8093bda8f5d8873fe5c7f65b",
  624. "shasum": ""
  625. },
  626. "require": {
  627. "php": ">=5.4.0",
  628. "psr/http-message": "~1.0"
  629. },
  630. "provide": {
  631. "psr/http-message-implementation": "1.0"
  632. },
  633. "require-dev": {
  634. "phpunit/phpunit": "~4.0"
  635. },
  636. "type": "library",
  637. "extra": {
  638. "branch-alias": {
  639. "dev-master": "1.4-dev"
  640. }
  641. },
  642. "autoload": {
  643. "psr-4": {
  644. "GuzzleHttp\\Psr7\\": "src/"
  645. },
  646. "files": [
  647. "src/functions_include.php"
  648. ]
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "authors": [
  655. {
  656. "name": "Michael Dowling",
  657. "email": "[email protected]",
  658. "homepage": "https://github.com/mtdowling"
  659. }
  660. ],
  661. "description": "PSR-7 message implementation",
  662. "keywords": [
  663. "http",
  664. "message",
  665. "stream",
  666. "uri"
  667. ],
  668. "time": "2016-06-24 23:00:38"
  669. },
  670. {
  671. "name": "guzzlehttp/ringphp",
  672. "version": "dev-master",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/guzzle/RingPHP.git",
  676. "reference": "4c8fe4c48a0fb7cc5e41ef529e43fecd6da4d539"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/4c8fe4c48a0fb7cc5e41ef529e43fecd6da4d539",
  681. "reference": "4c8fe4c48a0fb7cc5e41ef529e43fecd6da4d539",
  682. "shasum": ""
  683. },
  684. "require": {
  685. "guzzlehttp/streams": "~3.0",
  686. "php": ">=5.4.0",
  687. "react/promise": "~2.0"
  688. },
  689. "require-dev": {
  690. "ext-curl": "*",
  691. "phpunit/phpunit": "~4.0"
  692. },
  693. "suggest": {
  694. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "branch-alias": {
  699. "dev-master": "1.1-dev"
  700. }
  701. },
  702. "autoload": {
  703. "psr-4": {
  704. "GuzzleHttp\\Ring\\": "src/"
  705. }
  706. },
  707. "notification-url": "https://packagist.org/downloads/",
  708. "license": [
  709. "MIT"
  710. ],
  711. "authors": [
  712. {
  713. "name": "Michael Dowling",
  714. "email": "[email protected]",
  715. "homepage": "https://github.com/mtdowling"
  716. }
  717. ],
  718. "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
  719. "time": "2017-01-13 20:44:38"
  720. },
  721. {
  722. "name": "guzzlehttp/streams",
  723. "version": "dev-master",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/guzzle/streams.git",
  727. "reference": "d99a261c616210618ab94fd319cb17eda458cc3e"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/guzzle/streams/zipball/d99a261c616210618ab94fd319cb17eda458cc3e",
  732. "reference": "d99a261c616210618ab94fd319cb17eda458cc3e",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "php": ">=5.4.0"
  737. },
  738. "require-dev": {
  739. "phpunit/phpunit": "~4.0"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "branch-alias": {
  744. "dev-master": "3.0-dev"
  745. }
  746. },
  747. "autoload": {
  748. "psr-4": {
  749. "GuzzleHttp\\Stream\\": "src/"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "MIT"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Michael Dowling",
  759. "email": "[email protected]",
  760. "homepage": "https://github.com/mtdowling"
  761. }
  762. ],
  763. "description": "Provides a simple abstraction over streams of data",
  764. "homepage": "http://guzzlephp.org/",
  765. "keywords": [
  766. "Guzzle",
  767. "stream"
  768. ],
  769. "time": "2016-04-13 16:32:01"
  770. },
  771. {
  772. "name": "illuminate/container",
  773. "version": "5.2.x-dev",
  774. "source": {
  775. "type": "git",
  776. "url": "https://github.com/illuminate/container.git",
  777. "reference": "5139cebc8293b6820b91aef6f4b4e18bde33c9b2"
  778. },
  779. "dist": {
  780. "type": "zip",
  781. "url": "https://api.github.com/repos/illuminate/container/zipball/5139cebc8293b6820b91aef6f4b4e18bde33c9b2",
  782. "reference": "5139cebc8293b6820b91aef6f4b4e18bde33c9b2",
  783. "shasum": ""
  784. },
  785. "require": {
  786. "illuminate/contracts": "5.2.*",
  787. "php": ">=5.5.9"
  788. },
  789. "type": "library",
  790. "extra": {
  791. "branch-alias": {
  792. "dev-master": "5.2-dev"
  793. }
  794. },
  795. "autoload": {
  796. "psr-4": {
  797. "Illuminate\\Container\\": ""
  798. }
  799. },
  800. "notification-url": "https://packagist.org/downloads/",
  801. "license": [
  802. "MIT"
  803. ],
  804. "authors": [
  805. {
  806. "name": "Taylor Otwell",
  807. "email": "[email protected]"
  808. }
  809. ],
  810. "description": "The Illuminate Container package.",
  811. "homepage": "http://laravel.com",
  812. "time": "2016-08-01 13:49:14"
  813. },
  814. {
  815. "name": "illuminate/contracts",
  816. "version": "5.2.x-dev",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/illuminate/contracts.git",
  820. "reference": "22bde7b048a33c702d9737fc1446234fff9b1363"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/illuminate/contracts/zipball/22bde7b048a33c702d9737fc1446234fff9b1363",
  825. "reference": "22bde7b048a33c702d9737fc1446234fff9b1363",
  826. "shasum": ""
  827. },
  828. "require": {
  829. "php": ">=5.5.9"
  830. },
  831. "type": "library",
  832. "extra": {
  833. "branch-alias": {
  834. "dev-master": "5.2-dev"
  835. }
  836. },
  837. "autoload": {
  838. "psr-4": {
  839. "Illuminate\\Contracts\\": ""
  840. }
  841. },
  842. "notification-url": "https://packagist.org/downloads/",
  843. "license": [
  844. "MIT"
  845. ],
  846. "authors": [
  847. {
  848. "name": "Taylor Otwell",
  849. "email": "[email protected]"
  850. }
  851. ],
  852. "description": "The Illuminate Contracts package.",
  853. "homepage": "http://laravel.com",
  854. "time": "2016-08-08 11:46:08"
  855. },
  856. {
  857. "name": "illuminate/database",
  858. "version": "5.2.x-dev",
  859. "source": {
  860. "type": "git",
  861. "url": "https://github.com/illuminate/database.git",
  862. "reference": "ab112b5cfd33020752d91ce8106b9f9420393fbd"
  863. },
  864. "dist": {
  865. "type": "zip",
  866. "url": "https://api.github.com/repos/illuminate/database/zipball/ab112b5cfd33020752d91ce8106b9f9420393fbd",
  867. "reference": "ab112b5cfd33020752d91ce8106b9f9420393fbd",
  868. "shasum": ""
  869. },
  870. "require": {
  871. "illuminate/container": "5.2.*",
  872. "illuminate/contracts": "5.2.*",
  873. "illuminate/support": "5.2.*",
  874. "nesbot/carbon": "~1.20",
  875. "php": ">=5.5.9"
  876. },
  877. "suggest": {
  878. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
  879. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  880. "illuminate/console": "Required to use the database commands (5.2.*).",
  881. "illuminate/events": "Required to use the observers with Eloquent (5.2.*).",
  882. "illuminate/filesystem": "Required to use the migrations (5.2.*).",
  883. "illuminate/pagination": "Required to paginate the result set (5.2.*)."
  884. },
  885. "type": "library",
  886. "extra": {
  887. "branch-alias": {
  888. "dev-master": "5.2-dev"
  889. }
  890. },
  891. "autoload": {
  892. "psr-4": {
  893. "Illuminate\\Database\\": ""
  894. }
  895. },
  896. "notification-url": "https://packagist.org/downloads/",
  897. "license": [
  898. "MIT"
  899. ],
  900. "authors": [
  901. {
  902. "name": "Taylor Otwell",
  903. "email": "[email protected]"
  904. }
  905. ],
  906. "description": "The Illuminate Database package.",
  907. "homepage": "http://laravel.com",
  908. "keywords": [
  909. "database",
  910. "laravel",
  911. "orm",
  912. "sql"
  913. ],
  914. "time": "2016-12-06 15:27:14"
  915. },
  916. {
  917. "name": "illuminate/pagination",
  918. "version": "5.2.x-dev",
  919. "source": {
  920. "type": "git",
  921. "url": "https://github.com/illuminate/pagination.git",
  922. "reference": "a4450887251f443a1243ef537d98ce5bbea6b193"
  923. },
  924. "dist": {
  925. "type": "zip",
  926. "url": "https://api.github.com/repos/illuminate/pagination/zipball/a4450887251f443a1243ef537d98ce5bbea6b193",
  927. "reference": "a4450887251f443a1243ef537d98ce5bbea6b193",
  928. "shasum": ""
  929. },
  930. "require": {
  931. "illuminate/contracts": "5.2.*",
  932. "illuminate/support": "5.2.*",
  933. "php": ">=5.5.9"
  934. },
  935. "type": "library",
  936. "extra": {
  937. "branch-alias": {
  938. "dev-master": "5.2-dev"
  939. }
  940. },
  941. "autoload": {
  942. "psr-4": {
  943. "Illuminate\\Pagination\\": ""
  944. }
  945. },
  946. "notification-url": "https://packagist.org/downloads/",
  947. "license": [
  948. "MIT"
  949. ],
  950. "authors": [
  951. {
  952. "name": "Taylor Otwell",
  953. "email": "[email protected]"
  954. }
  955. ],
  956. "description": "The Illuminate Pagination package.",
  957. "homepage": "http://laravel.com",
  958. "time": "2016-08-01 13:49:14"
  959. },
  960. {
  961. "name": "illuminate/support",
  962. "version": "v5.2.21",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/illuminate/support.git",
  966. "reference": "6749fab3f3d38d8b15427536a8e7bbdc57497c9e"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/illuminate/support/zipball/6749fab3f3d38d8b15427536a8e7bbdc57497c9e",
  971. "reference": "6749fab3f3d38d8b15427536a8e7bbdc57497c9e",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "doctrine/inflector": "~1.0",
  976. "ext-mbstring": "*",
  977. "illuminate/contracts": "5.2.*",
  978. "php": ">=5.5.9"
  979. },
  980. "suggest": {
  981. "illuminate/filesystem": "Required to use the composer class (5.2.*).",
  982. "jeremeamia/superclosure": "Required to be able to serialize closures (~2.2).",
  983. "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (~1.1).",
  984. "symfony/polyfill-php56": "Required to use the hash_equals function on PHP 5.5 (~1.0).",
  985. "symfony/process": "Required to use the composer class (2.8.*|3.0.*).",
  986. "symfony/var-dumper": "Improves the dd function (2.8.*|3.0.*)."
  987. },
  988. "type": "library",
  989. "extra": {
  990. "branch-alias": {
  991. "dev-master": "5.2-dev"
  992. }
  993. },
  994. "autoload": {
  995. "psr-4": {
  996. "Illuminate\\Support\\": ""
  997. },
  998. "files": [
  999. "helpers.php"
  1000. ]
  1001. },
  1002. "notification-url": "https://packagist.org/downloads/",
  1003. "license": [
  1004. "MIT"
  1005. ],
  1006. "authors": [
  1007. {
  1008. "name": "Taylor Otwell",
  1009. "email": "[email protected]"
  1010. }
  1011. ],
  1012. "description": "The Illuminate Support package.",
  1013. "homepage": "http://laravel.com",
  1014. "time": "2016-02-22 20:29:02"
  1015. },
  1016. {
  1017. "name": "ircmaxell/password-compat",
  1018. "version": "1.0.x-dev",
  1019. "source": {
  1020. "type": "git",
  1021. "url": "https://github.com/ircmaxell/password_compat.git",
  1022. "reference": "9b99377557a33a4129c9194e60a97a685fab21e0"
  1023. },
  1024. "dist": {
  1025. "type": "zip",
  1026. "url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/9b99377557a33a4129c9194e60a97a685fab21e0",
  1027. "reference": "9b99377557a33a4129c9194e60a97a685fab21e0",
  1028. "shasum": ""
  1029. },
  1030. "require-dev": {
  1031. "phpunit/phpunit": "4.*"
  1032. },
  1033. "type": "library",
  1034. "autoload": {
  1035. "files": [
  1036. "lib/password.php"
  1037. ]
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Anthony Ferrara",
  1046. "email": "[email protected]",
  1047. "homepage": "http://blog.ircmaxell.com"
  1048. }
  1049. ],
  1050. "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
  1051. "homepage": "https://github.com/ircmaxell/password_compat",
  1052. "keywords": [
  1053. "hashing",
  1054. "password"
  1055. ],
  1056. "time": "2014-11-20 19:18:42"
  1057. },
  1058. {
  1059. "name": "mailgun/mailgun-php",
  1060. "version": "v1.7.2",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/mailgun/mailgun-php.git",
  1064. "reference": "45ec0c8f3a2a6554b4987e97889f44991e4f75b4"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/45ec0c8f3a2a6554b4987e97889f44991e4f75b4",
  1069. "reference": "45ec0c8f3a2a6554b4987e97889f44991e4f75b4",
  1070. "shasum": ""
  1071. },
  1072. "require": {
  1073. "guzzle/guzzle": "<4.0,>=3.8"
  1074. },
  1075. "require-dev": {
  1076. "phpunit/phpunit": "3.7.*"
  1077. },
  1078. "type": "library",
  1079. "autoload": {
  1080. "psr-0": {
  1081. "Mailgun\\Tests": "tests/",
  1082. "Mailgun": "src/"
  1083. }
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "MIT"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "Travis Swientek",
  1092. "email": "[email protected]"
  1093. }
  1094. ],
  1095. "description": "The Mailgun SDK provides methods for all API functions.",
  1096. "time": "2014-11-19 22:31:03"
  1097. },
  1098. {
  1099. "name": "mtdowling/jmespath.php",
  1100. "version": "2.4.0",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/jmespath/jmespath.php.git",
  1104. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  1109. "reference": "adcc9531682cf87dfda21e1fd5d0e7a41d292fac",
  1110. "shasum": ""
  1111. },
  1112. "require": {
  1113. "php": ">=5.4.0"
  1114. },
  1115. "require-dev": {
  1116. "phpunit/phpunit": "~4.0"
  1117. },
  1118. "bin": [
  1119. "bin/jp.php"
  1120. ],
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "2.0-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "JmesPath\\": "src/"
  1130. },
  1131. "files": [
  1132. "src/JmesPath.php"
  1133. ]
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Michael Dowling",
  1142. "email": "[email protected]",
  1143. "homepage": "https://github.com/mtdowling"
  1144. }
  1145. ],
  1146. "description": "Declaratively specify how to extract elements from a JSON document",
  1147. "keywords": [
  1148. "json",
  1149. "jsonpath"
  1150. ],
  1151. "time": "2016-12-03 22:08:25"
  1152. },
  1153. {
  1154. "name": "nesbot/carbon",
  1155. "version": "dev-master",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/briannesbitt/Carbon.git",
  1159. "reference": "926aee5ab38c2868816aa760f862a85ad01cb61a"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/926aee5ab38c2868816aa760f862a85ad01cb61a",
  1164. "reference": "926aee5ab38c2868816aa760f862a85ad01cb61a",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "php": ">=5.3.0",
  1169. "symfony/translation": "~2.6 || ~3.0"
  1170. },
  1171. "require-dev": {
  1172. "friendsofphp/php-cs-fixer": "~2",
  1173. "phpunit/phpunit": "~4.0 || ~5.0"
  1174. },
  1175. "type": "library",
  1176. "extra": {
  1177. "branch-alias": {
  1178. "dev-master": "1.23-dev"
  1179. }
  1180. },
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Carbon\\": "src/Carbon/"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Brian Nesbitt",
  1193. "email": "[email protected]",
  1194. "homepage": "http://nesbot.com"
  1195. }
  1196. ],
  1197. "description": "A simple API extension for DateTime.",
  1198. "homepage": "http://carbon.nesbot.com",
  1199. "keywords": [
  1200. "date",
  1201. "datetime",
  1202. "time"
  1203. ],
  1204. "time": "2017-02-06 22:02:47"
  1205. },
  1206. {
  1207. "name": "nikic/fast-route",
  1208. "version": "v1.2.0",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/nikic/FastRoute.git",
  1212. "reference": "b5f95749071c82a8e0f58586987627054400cdf6"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/b5f95749071c82a8e0f58586987627054400cdf6",
  1217. "reference": "b5f95749071c82a8e0f58586987627054400cdf6",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "php": ">=5.4.0"
  1222. },
  1223. "type": "library",
  1224. "autoload": {
  1225. "psr-4": {
  1226. "FastRoute\\": "src/"
  1227. },
  1228. "files": [
  1229. "src/functions.php"
  1230. ]
  1231. },
  1232. "notification-url": "https://packagist.org/downloads/",
  1233. "license": [
  1234. "BSD-3-Clause"
  1235. ],
  1236. "authors": [
  1237. {
  1238. "name": "Nikita Popov",
  1239. "email": "[email protected]"
  1240. }
  1241. ],
  1242. "description": "Fast request router for PHP",
  1243. "keywords": [
  1244. "router",
  1245. "routing"
  1246. ],
  1247. "time": "2017-01-19 11:35:12"
  1248. },
  1249. {
  1250. "name": "paragonie/random_compat",
  1251. "version": "v2.0.4",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/paragonie/random_compat.git",
  1255. "reference": "a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e",
  1260. "reference": "a9b97968bcde1c4de2a5ec6cbd06a0f6c919b46e",
  1261. "shasum": ""
  1262. },
  1263. "require": {
  1264. "php": ">=5.2.0"
  1265. },
  1266. "require-dev": {
  1267. "phpunit/phpunit": "4.*|5.*"
  1268. },
  1269. "suggest": {
  1270. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1271. },
  1272. "type": "library",
  1273. "autoload": {
  1274. "files": [
  1275. "lib/random.php"
  1276. ]
  1277. },
  1278. "notification-url": "https://packagist.org/downloads/",
  1279. "license": [
  1280. "MIT"
  1281. ],
  1282. "authors": [
  1283. {
  1284. "name": "Paragon Initiative Enterprises",
  1285. "email": "[email protected]",
  1286. "homepage": "https://paragonie.com"
  1287. }
  1288. ],
  1289. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1290. "keywords": [
  1291. "csprng",
  1292. "pseudorandom",
  1293. "random"
  1294. ],
  1295. "time": "2016-11-07 23:38:38"
  1296. },
  1297. {
  1298. "name": "paymentwall/paymentwall-php",
  1299. "version": "2.2.0",
  1300. "source": {
  1301. "type": "git",
  1302. "url": "https://github.com/paymentwall/paymentwall-php.git",
  1303. "reference": "4f082c9a6a28973e149308822aae34baf253851b"
  1304. },
  1305. "dist": {
  1306. "type": "zip",
  1307. "url": "https://api.github.com/repos/paymentwall/paymentwall-php/zipball/4f082c9a6a28973e149308822aae34baf253851b",
  1308. "reference": "4f082c9a6a28973e149308822aae34baf253851b",
  1309. "shasum": ""
  1310. },
  1311. "require": {
  1312. "ext-curl": "*",
  1313. "ext-json": "*",
  1314. "php": ">=5.2"
  1315. },
  1316. "require-dev": {
  1317. "behat/behat": "2.4.*@stable"
  1318. },
  1319. "type": "library",
  1320. "autoload": {
  1321. "classmap": [
  1322. "lib/Paymentwall/"
  1323. ]
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "MIT"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "Paymentwall Team",
  1332. "email": "[email protected]"
  1333. }
  1334. ],
  1335. "description": "Paymentwall PHP Library. Paymentwall is the leading digital payments platform for globally monetizing digital goods and services.",
  1336. "homepage": "https://www.paymentwall.com/?source=gh",
  1337. "keywords": [
  1338. "alternative payments",
  1339. "api",
  1340. "carrier billing",
  1341. "credit cards",
  1342. "monetization",
  1343. "payment processing",
  1344. "payments",
  1345. "paymentwall",
  1346. "recurring billing"
  1347. ],
  1348. "time": "2016-07-01 12:06:30"
  1349. },
  1350. {
  1351. "name": "phpmailer/phpmailer",
  1352. "version": "v5.2.22",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1356. "reference": "b18cb98131bd83103ccb26a888fdfe3177b8a663"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/b18cb98131bd83103ccb26a888fdfe3177b8a663",
  1361. "reference": "b18cb98131bd83103ccb26a888fdfe3177b8a663",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "php": ">=5.0.0"
  1366. },
  1367. "require-dev": {
  1368. "phpdocumentor/phpdocumentor": "*",
  1369. "phpunit/phpunit": "4.7.*"
  1370. },
  1371. "suggest": {
  1372. "league/oauth2-google": "Needed for Google XOAUTH2 authentication"
  1373. },
  1374. "type": "library",
  1375. "autoload": {
  1376. "classmap": [
  1377. "class.phpmailer.php",
  1378. "class.phpmaileroauth.php",
  1379. "class.phpmaileroauthgoogle.php",
  1380. "class.smtp.php",
  1381. "class.pop3.php",
  1382. "extras/EasyPeasyICS.php",
  1383. "extras/ntlm_sasl_client.php"
  1384. ]
  1385. },
  1386. "notification-url": "https://packagist.org/downloads/",
  1387. "license": [
  1388. "LGPL-2.1"
  1389. ],
  1390. "authors": [
  1391. {
  1392. "name": "Jim Jagielski",
  1393. "email": "[email protected]"
  1394. },
  1395. {
  1396. "name": "Marcus Bointon",
  1397. "email": "[email protected]"
  1398. },
  1399. {
  1400. "name": "Andy Prevost",
  1401. "email": "[email protected]"
  1402. },
  1403. {
  1404. "name": "Brent R. Matzelle"
  1405. }
  1406. ],
  1407. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1408. "time": "2017-01-09 09:33:47"
  1409. },
  1410. {
  1411. "name": "pimple/pimple",
  1412. "version": "dev-master",
  1413. "source": {
  1414. "type": "git",
  1415. "url": "https://github.com/silexphp/Pimple.git",
  1416. "reference": "ac03ac93edb0ac6d2aced595ee00577ebc6ff480"
  1417. },
  1418. "dist": {
  1419. "type": "zip",
  1420. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/ac03ac93edb0ac6d2aced595ee00577ebc6ff480",
  1421. "reference": "ac03ac93edb0ac6d2aced595ee00577ebc6ff480",
  1422. "shasum": ""
  1423. },
  1424. "require": {
  1425. "php": ">=5.3.0"
  1426. },
  1427. "type": "library",
  1428. "extra": {
  1429. "branch-alias": {
  1430. "dev-master": "3.0.x-dev"
  1431. }
  1432. },
  1433. "autoload": {
  1434. "psr-0": {
  1435. "Pimple": "src/"
  1436. }
  1437. },
  1438. "notification-url": "https://packagist.org/downloads/",
  1439. "license": [
  1440. "MIT"
  1441. ],
  1442. "authors": [
  1443. {
  1444. "name": "Fabien Potencier",
  1445. "email": "[email protected]"
  1446. }
  1447. ],
  1448. "description": "Pimple, a simple Dependency Injection Container",
  1449. "homepage": "http://pimple.sensiolabs.org",
  1450. "keywords": [
  1451. "container",
  1452. "dependency injection"
  1453. ],
  1454. "time": "2017-01-02 20:35:07"
  1455. },
  1456. {
  1457. "name": "predis/predis",
  1458. "version": "v1.1.x-dev",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/nrk/predis.git",
  1462. "reference": "98ec0cc27efc1efab32b369962f97e29ecc0464a"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/nrk/predis/zipball/98ec0cc27efc1efab32b369962f97e29ecc0464a",
  1467. "reference": "98ec0cc27efc1efab32b369962f97e29ecc0464a",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "php": ">=5.3.9"
  1472. },
  1473. "require-dev": {
  1474. "phpunit/phpunit": "~4.8"
  1475. },
  1476. "suggest": {
  1477. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  1478. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  1479. },
  1480. "type": "library",
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Predis\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Daniele Alessandri",
  1493. "email": "[email protected]",
  1494. "homepage": "http://clorophilla.net"
  1495. }
  1496. ],
  1497. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  1498. "homepage": "http://github.com/nrk/predis",
  1499. "keywords": [
  1500. "nosql",
  1501. "predis",
  1502. "redis"
  1503. ],
  1504. "time": "2016-11-22 14:32:30"
  1505. },
  1506. {
  1507. "name": "psr/container",
  1508. "version": "dev-master",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/php-fig/container.git",
  1512. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1517. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "php": ">=5.3.0"
  1522. },
  1523. "type": "library",
  1524. "extra": {
  1525. "branch-alias": {
  1526. "dev-master": "1.0.x-dev"
  1527. }
  1528. },
  1529. "autoload": {
  1530. "psr-4": {
  1531. "Psr\\Container\\": "src/"
  1532. }
  1533. },
  1534. "notification-url": "https://packagist.org/downloads/",
  1535. "license": [
  1536. "MIT"
  1537. ],
  1538. "authors": [
  1539. {
  1540. "name": "PHP-FIG",
  1541. "homepage": "http://www.php-fig.org/"
  1542. }
  1543. ],
  1544. "description": "Common Container Interface (PHP FIG PSR-11)",
  1545. "homepage": "https://github.com/php-fig/container",
  1546. "keywords": [
  1547. "PSR-11",
  1548. "container",
  1549. "container-interface",
  1550. "container-interop",
  1551. "psr"
  1552. ],
  1553. "time": "2017-02-14 16:28:37"
  1554. },
  1555. {
  1556. "name": "psr/http-message",
  1557. "version": "dev-master",
  1558. "source": {
  1559. "type": "git",
  1560. "url": "https://github.com/php-fig/http-message.git",
  1561. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1562. },
  1563. "dist": {
  1564. "type": "zip",
  1565. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1566. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1567. "shasum": ""
  1568. },
  1569. "require": {
  1570. "php": ">=5.3.0"
  1571. },
  1572. "type": "library",
  1573. "extra": {
  1574. "branch-alias": {
  1575. "dev-master": "1.0.x-dev"
  1576. }
  1577. },
  1578. "autoload": {
  1579. "psr-4": {
  1580. "Psr\\Http\\Message\\": "src/"
  1581. }
  1582. },
  1583. "notification-url": "https://packagist.org/downloads/",
  1584. "license": [
  1585. "MIT"
  1586. ],
  1587. "authors": [
  1588. {
  1589. "name": "PHP-FIG",
  1590. "homepage": "http://www.php-fig.org/"
  1591. }
  1592. ],
  1593. "description": "Common interface for HTTP messages",
  1594. "homepage": "https://github.com/php-fig/http-message",
  1595. "keywords": [
  1596. "http",
  1597. "http-message",
  1598. "psr",
  1599. "psr-7",
  1600. "request",
  1601. "response"
  1602. ],
  1603. "time": "2016-08-06 14:39:51"
  1604. },
  1605. {
  1606. "name": "react/promise",
  1607. "version": "2.x-dev",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/reactphp/promise.git",
  1611. "reference": "2760f3898b7e931aa71153852dcd48a75c9b95db"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/reactphp/promise/zipball/2760f3898b7e931aa71153852dcd48a75c9b95db",
  1616. "reference": "2760f3898b7e931aa71153852dcd48a75c9b95db",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": ">=5.4.0"
  1621. },
  1622. "type": "library",
  1623. "autoload": {
  1624. "psr-4": {
  1625. "React\\Promise\\": "src/"
  1626. },
  1627. "files": [
  1628. "src/functions_include.php"
  1629. ]
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "authors": [
  1636. {
  1637. "name": "Jan Sorgalla",
  1638. "email": "[email protected]"
  1639. }
  1640. ],
  1641. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  1642. "keywords": [
  1643. "promise",
  1644. "promises"
  1645. ],
  1646. "time": "2016-12-22 14:09:01"
  1647. },
  1648. {
  1649. "name": "sendgrid/php-http-client",
  1650. "version": "3.5.1",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/sendgrid/php-http-client.git",
  1654. "reference": "3c4c35eafd364ebcfdbb0a37f655417beed8ee0f"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/3c4c35eafd364ebcfdbb0a37f655417beed8ee0f",
  1659. "reference": "3c4c35eafd364ebcfdbb0a37f655417beed8ee0f",
  1660. "shasum": ""
  1661. },
  1662. "require": {
  1663. "php": ">=5.6"
  1664. },
  1665. "require-dev": {
  1666. "phpunit/phpunit": "~4.4",
  1667. "squizlabs/php_codesniffer": "~2.0"
  1668. },
  1669. "type": "library",
  1670. "autoload": {
  1671. "psr-4": {
  1672. "SendGrid\\": "lib/"
  1673. }
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Matt Bernier",
  1682. "email": "[email protected]"
  1683. },
  1684. {
  1685. "name": "Elmer Thomas",
  1686. "email": "[email protected]"
  1687. }
  1688. ],
  1689. "description": "HTTP REST client, simplified for PHP",
  1690. "homepage": "http://github.com/sendgrid/php-http-client",
  1691. "keywords": [
  1692. "api",
  1693. "fluent",
  1694. "http",
  1695. "rest",
  1696. "sendgrid"
  1697. ],
  1698. "time": "2016-11-17 22:45:31"
  1699. },
  1700. {
  1701. "name": "sendgrid/sendgrid",
  1702. "version": "5.1.2",
  1703. "source": {
  1704. "type": "git",
  1705. "url": "https://github.com/sendgrid/sendgrid-php.git",
  1706. "reference": "46f85e69ec6a36d4674e7131e442fbecdaa5d183"
  1707. },
  1708. "dist": {
  1709. "type": "zip",
  1710. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/46f85e69ec6a36d4674e7131e442fbecdaa5d183",
  1711. "reference": "46f85e69ec6a36d4674e7131e442fbecdaa5d183",
  1712. "shasum": ""
  1713. },
  1714. "require": {
  1715. "php": ">=5.6",
  1716. "sendgrid/php-http-client": "~3.5"
  1717. },
  1718. "replace": {
  1719. "sendgrid/sendgrid-php": "*"
  1720. },
  1721. "require-dev": {
  1722. "phpunit/phpunit": "4.*",
  1723. "squizlabs/php_codesniffer": "2.*"
  1724. },
  1725. "type": "library",
  1726. "autoload": {
  1727. "files": [
  1728. "lib/SendGrid.php",
  1729. "lib/helpers/mail/Mail.php"
  1730. ]
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
  1737. "homepage": "http://github.com/sendgrid/sendgrid-php",
  1738. "keywords": [
  1739. "email",
  1740. "grid",
  1741. "send",
  1742. "sendgrid"
  1743. ],
  1744. "time": "2016-11-17 23:05:01"
  1745. },
  1746. {
  1747. "name": "slim/csrf",
  1748. "version": "dev-master",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/slimphp/Slim-Csrf.git",
  1752. "reference": "96f2019d2626d71985dc0ca41948f49c3454f4d1"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/slimphp/Slim-Csrf/zipball/96f2019d2626d71985dc0ca41948f49c3454f4d1",
  1757. "reference": "96f2019d2626d71985dc0ca41948f49c3454f4d1",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "paragonie/random_compat": "^1.1|^2.0",
  1762. "php": ">=5.5.0",
  1763. "psr/http-message": "^1.0"
  1764. },
  1765. "require-dev": {
  1766. "phpunit/phpunit": "^4.0",
  1767. "slim/slim": "~3.0"
  1768. },
  1769. "type": "library",
  1770. "autoload": {
  1771. "psr-4": {
  1772. "Slim\\Csrf\\": "src"
  1773. }
  1774. },
  1775. "notification-url": "https://packagist.org/downloads/",
  1776. "license": [
  1777. "MIT"
  1778. ],
  1779. "authors": [
  1780. {
  1781. "name": "Josh Lockhart",
  1782. "email": "[email protected]",
  1783. "homepage": "http://joshlockhart.com"
  1784. }
  1785. ],
  1786. "description": "Slim Framework 3 CSRF protection middleware",
  1787. "homepage": "http://slimframework.com",
  1788. "keywords": [
  1789. "csrf",
  1790. "framework",
  1791. "middleware",
  1792. "slim"
  1793. ],
  1794. "time": "2016-12-20 20:45:43"
  1795. },
  1796. {
  1797. "name": "slim/slim",
  1798. "version": "4.x-dev",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/slimphp/Slim.git",
  1802. "reference": "5abbab075ac7675a715d42d425d4b17112659df0"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/slimphp/Slim/zipball/5abbab075ac7675a715d42d425d4b17112659df0",
  1807. "reference": "5abbab075ac7675a715d42d425d4b17112659df0",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "container-interop/container-interop": "^1.1",
  1812. "nikic/fast-route": "^1.0",
  1813. "php": ">=5.5.0",
  1814. "pimple/pimple": "^3.0",
  1815. "psr/http-message": "^1.0"
  1816. },
  1817. "provide": {
  1818. "psr/http-message-implementation": "1.0"
  1819. },
  1820. "require-dev": {
  1821. "phpunit/phpunit": "^4.0",
  1822. "squizlabs/php_codesniffer": "^2.5"
  1823. },
  1824. "type": "library",
  1825. "autoload": {
  1826. "psr-4": {
  1827. "Slim\\": "Slim"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Rob Allen",
  1837. "email": "[email protected]",
  1838. "homepage": "http://akrabat.com"
  1839. },
  1840. {
  1841. "name": "Josh Lockhart",
  1842. "email": "[email protected]",
  1843. "homepage": "https://joshlockhart.com"
  1844. },
  1845. {
  1846. "name": "Gabriel Manricks",
  1847. "email": "[email protected]",
  1848. "homepage": "http://gabrielmanricks.com"
  1849. },
  1850. {
  1851. "name": "Andrew Smith",
  1852. "email": "[email protected]",
  1853. "homepage": "http://silentworks.co.uk"
  1854. }
  1855. ],
  1856. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  1857. "homepage": "https://slimframework.com",
  1858. "keywords": [
  1859. "api",
  1860. "framework",
  1861. "micro",
  1862. "router"
  1863. ],
  1864. "time": "2017-02-06 09:10:37"
  1865. },
  1866. {
  1867. "name": "slim/twig-view",
  1868. "version": "1.2.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/slimphp/Twig-View.git",
  1872. "reference": "5f9d42133491772ea924ebcef11a6da2b236e33b"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/slimphp/Twig-View/zipball/5f9d42133491772ea924ebcef11a6da2b236e33b",
  1877. "reference": "5f9d42133491772ea924ebcef11a6da2b236e33b",
  1878. "shasum": ""
  1879. },
  1880. "require": {
  1881. "php": ">=5.4.0",
  1882. "pimple/pimple": "~3.0",
  1883. "twig/twig": "~1.18"
  1884. },
  1885. "require-dev": {
  1886. "phpunit/phpunit": "*",
  1887. "psr/http-message": "~0.8"
  1888. },
  1889. "type": "library",
  1890. "autoload": {
  1891. "psr-4": {
  1892. "Slim\\Views\\": "src"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Josh Lockhart",
  1902. "email": "[email protected]",
  1903. "homepage": "http://joshlockhart.com"
  1904. }
  1905. ],
  1906. "description": "Slim Framework view helper built on top of the Twig templating component",
  1907. "homepage": "http://slimframework.com",
  1908. "keywords": [
  1909. "framework",
  1910. "slim",
  1911. "template",
  1912. "twig",
  1913. "view"
  1914. ],
  1915. "time": "2015-07-11 13:57:28"
  1916. },
  1917. {
  1918. "name": "smarty/smarty",
  1919. "version": "dev-master",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/smarty-php/smarty.git",
  1923. "reference": "c7d42e4a327c402897dd587871434888fde1e7a9"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/c7d42e4a327c402897dd587871434888fde1e7a9",
  1928. "reference": "c7d42e4a327c402897dd587871434888fde1e7a9",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": ">=5.2"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-master": "3.1.x-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "files": [
  1942. "libs/bootstrap.php"
  1943. ]
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "LGPL-3.0"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "Monte Ohrt",
  1952. "email": "[email protected]"
  1953. },
  1954. {
  1955. "name": "Uwe Tews",
  1956. "email": "[email protected]"
  1957. },
  1958. {
  1959. "name": "Rodney Rehm",
  1960. "email": "[email protected]"
  1961. }
  1962. ],
  1963. "description": "Smarty - the compiling PHP template engine",
  1964. "homepage": "http://www.smarty.net",
  1965. "keywords": [
  1966. "templating"
  1967. ],
  1968. "time": "2016-12-14 21:57:25"
  1969. },
  1970. {
  1971. "name": "symfony/event-dispatcher",
  1972. "version": "2.8.x-dev",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/symfony/event-dispatcher.git",
  1976. "reference": "3178c0e247b81da8a0265b460ac23bec6d2e6627"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3178c0e247b81da8a0265b460ac23bec6d2e6627",
  1981. "reference": "3178c0e247b81da8a0265b460ac23bec6d2e6627",
  1982. "shasum": ""
  1983. },
  1984. "require": {
  1985. "php": ">=5.3.9"
  1986. },
  1987. "require-dev": {
  1988. "psr/log": "~1.0",
  1989. "symfony/config": "^2.0.5|~3.0.0",
  1990. "symfony/dependency-injection": "~2.6|~3.0.0",
  1991. "symfony/expression-language": "~2.6|~3.0.0",
  1992. "symfony/stopwatch": "~2.3|~3.0.0"
  1993. },
  1994. "suggest": {
  1995. "symfony/dependency-injection": "",
  1996. "symfony/http-kernel": ""
  1997. },
  1998. "type": "library",
  1999. "extra": {
  2000. "branch-alias": {
  2001. "dev-master": "2.8-dev"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Symfony\\Component\\EventDispatcher\\": ""
  2007. },
  2008. "exclude-from-classmap": [
  2009. "/Tests/"
  2010. ]
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "MIT"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Fabien Potencier",
  2019. "email": "[email protected]"
  2020. },
  2021. {
  2022. "name": "Symfony Community",
  2023. "homepage": "https://symfony.com/contributors"
  2024. }
  2025. ],
  2026. "description": "Symfony EventDispatcher Component",
  2027. "homepage": "https://symfony.com",
  2028. "time": "2017-02-18 19:13:35"
  2029. },
  2030. {
  2031. "name": "symfony/intl",
  2032. "version": "dev-master",
  2033. "source": {
  2034. "type": "git",
  2035. "url": "https://github.com/symfony/intl.git",
  2036. "reference": "d45cacfbb4952d2537e5c7cb5617172386b090e6"
  2037. },
  2038. "dist": {
  2039. "type": "zip",
  2040. "url": "https://api.github.com/repos/symfony/intl/zipball/d45cacfbb4952d2537e5c7cb5617172386b090e6",
  2041. "reference": "d45cacfbb4952d2537e5c7cb5617172386b090e6",
  2042. "shasum": ""
  2043. },
  2044. "require": {
  2045. "php": ">=5.5.9",
  2046. "symfony/polyfill-intl-icu": "~1.0"
  2047. },
  2048. "require-dev": {
  2049. "symfony/filesystem": "~2.8|~3.0"
  2050. },
  2051. "suggest": {
  2052. "ext-intl": "to use the component with locales other than \"en\""
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "branch-alias": {
  2057. "dev-master": "3.3-dev"
  2058. }
  2059. },
  2060. "autoload": {
  2061. "psr-4": {
  2062. "Symfony\\Component\\Intl\\": ""
  2063. },
  2064. "classmap": [
  2065. "Resources/stubs"
  2066. ],
  2067. "exclude-from-classmap": [
  2068. "/Tests/"
  2069. ]
  2070. },
  2071. "notification-url": "https://packagist.org/downloads/",
  2072. "license": [
  2073. "MIT"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Bernhard Schussek",
  2078. "email": "[email protected]"
  2079. },
  2080. {
  2081. "name": "Eriksen Costa",
  2082. "email": "[email protected]"
  2083. },
  2084. {
  2085. "name": "Igor Wiedler",
  2086. "email": "[email protected]"
  2087. },
  2088. {
  2089. "name": "Symfony Community",
  2090. "homepage": "https://symfony.com/contributors"
  2091. }
  2092. ],
  2093. "description": "A PHP replacement layer for the C intl extension that includes additional data from the ICU library.",
  2094. "homepage": "https://symfony.com",
  2095. "keywords": [
  2096. "i18n",
  2097. "icu",
  2098. "internationalization",
  2099. "intl",
  2100. "l10n",
  2101. "localization"
  2102. ],
  2103. "time": "2017-02-18 17:35:19"
  2104. },
  2105. {
  2106. "name": "symfony/polyfill",
  2107. "version": "v1.2.0",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://github.com/symfony/polyfill.git",
  2111. "reference": "ee2c9c2576fdd4a42b024260a1906a9888770c34"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://api.github.com/repos/symfony/polyfill/zipball/ee2c9c2576fdd4a42b024260a1906a9888770c34",
  2116. "reference": "ee2c9c2576fdd4a42b024260a1906a9888770c34",
  2117. "shasum": ""
  2118. },
  2119. "require": {
  2120. "ircmaxell/password-compat": "~1.0",
  2121. "paragonie/random_compat": "~1.0|~2.0",
  2122. "php": ">=5.3.3",
  2123. "symfony/intl": "~2.3|~3.0"
  2124. },
  2125. "replace": {
  2126. "symfony/polyfill-apcu": "self.version",
  2127. "symfony/polyfill-iconv": "self.version",
  2128. "symfony/polyfill-intl-grapheme": "self.version",
  2129. "symfony/polyfill-intl-icu": "self.version",
  2130. "symfony/polyfill-intl-normalizer": "self.version",
  2131. "symfony/polyfill-mbstring": "self.version",
  2132. "symfony/polyfill-php54": "self.version",
  2133. "symfony/polyfill-php55": "self.version",
  2134. "symfony/polyfill-php56": "self.version",
  2135. "symfony/polyfill-php70": "self.version",
  2136. "symfony/polyfill-util": "self.version",
  2137. "symfony/polyfill-xml": "self.version"
  2138. },
  2139. "type": "library",
  2140. "extra": {
  2141. "branch-alias": {
  2142. "dev-master": "1.2-dev"
  2143. }
  2144. },
  2145. "autoload": {
  2146. "psr-4": {
  2147. "Symfony\\Polyfill\\": "src/"
  2148. },
  2149. "files": [
  2150. "src/Apcu/bootstrap.php",
  2151. "src/Php54/bootstrap.php",
  2152. "src/Php55/bootstrap.php",
  2153. "src/Php56/bootstrap.php",
  2154. "src/Php70/bootstrap.php",
  2155. "src/Iconv/bootstrap.php",
  2156. "src/Intl/Grapheme/bootstrap.php",
  2157. "src/Intl/Icu/bootstrap.php",
  2158. "src/Intl/Normalizer/bootstrap.php",
  2159. "src/Mbstring/bootstrap.php",
  2160. "src/Xml/bootstrap.php"
  2161. ],
  2162. "classmap": [
  2163. "src/Intl/Normalizer/Resources/stubs",
  2164. "src/Php70/Resources/stubs",
  2165. "src/Php54/Resources/stubs"
  2166. ]
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "Nicolas Grekas",
  2175. "email": "[email protected]"
  2176. },
  2177. {
  2178. "name": "Symfony Community",
  2179. "homepage": "https://symfony.com/contributors"
  2180. }
  2181. ],
  2182. "description": "Symfony polyfills backporting features to lower PHP versions",
  2183. "homepage": "https://symfony.com",
  2184. "keywords": [
  2185. "compat",
  2186. "compatibility",
  2187. "polyfill",
  2188. "shim"
  2189. ],
  2190. "time": "2016-05-18 14:27:53"
  2191. },
  2192. {
  2193. "name": "symfony/translation",
  2194. "version": "dev-master",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/symfony/translation.git",
  2198. "reference": "9492b28dc4092ff952c26b8195aaad45526468b0"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/symfony/translation/zipball/9492b28dc4092ff952c26b8195aaad45526468b0",
  2203. "reference": "9492b28dc4092ff952c26b8195aaad45526468b0",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "php": ">=5.5.9",
  2208. "symfony/polyfill-mbstring": "~1.0"
  2209. },
  2210. "conflict": {
  2211. "symfony/config": "<2.8"
  2212. },
  2213. "require-dev": {
  2214. "psr/log": "~1.0",
  2215. "symfony/config": "~2.8|~3.0",
  2216. "symfony/intl": "~2.8|~3.0",
  2217. "symfony/yaml": "~2.8|~3.0"
  2218. },
  2219. "suggest": {
  2220. "psr/log": "To use logging capability in translator",
  2221. "symfony/config": "",
  2222. "symfony/yaml": ""
  2223. },
  2224. "type": "library",
  2225. "extra": {
  2226. "branch-alias": {
  2227. "dev-master": "3.3-dev"
  2228. }
  2229. },
  2230. "autoload": {
  2231. "psr-4": {
  2232. "Symfony\\Component\\Translation\\": ""
  2233. },
  2234. "exclude-from-classmap": [
  2235. "/Tests/"
  2236. ]
  2237. },
  2238. "notification-url": "https://packagist.org/downloads/",
  2239. "license": [
  2240. "MIT"
  2241. ],
  2242. "authors": [
  2243. {
  2244. "name": "Fabien Potencier",
  2245. "email": "[email protected]"
  2246. },
  2247. {
  2248. "name": "Symfony Community",
  2249. "homepage": "https://symfony.com/contributors"
  2250. }
  2251. ],
  2252. "description": "Symfony Translation Component",
  2253. "homepage": "https://symfony.com",
  2254. "time": "2017-02-18 17:35:19"
  2255. },
  2256. {
  2257. "name": "telegram-bot/api",
  2258. "version": "2.2.6",
  2259. "source": {
  2260. "type": "git",
  2261. "url": "https://github.com/TelegramBot/Api.git",
  2262. "reference": "fd6927584ba77eb8d54c42ae912c387c8d9f5314"
  2263. },
  2264. "dist": {
  2265. "type": "zip",
  2266. "url": "https://api.github.com/repos/TelegramBot/Api/zipball/fd6927584ba77eb8d54c42ae912c387c8d9f5314",
  2267. "reference": "fd6927584ba77eb8d54c42ae912c387c8d9f5314",
  2268. "shasum": ""
  2269. },
  2270. "require": {
  2271. "php": ">=5.5.0"
  2272. },
  2273. "require-dev": {
  2274. "codeception/codeception": "*",
  2275. "phpunit/phpunit": "4.*",
  2276. "squizlabs/php_codesniffer": "2.*"
  2277. },
  2278. "type": "library",
  2279. "extra": {
  2280. "branch-alias": {
  2281. "dev-master": "1.0-dev"
  2282. }
  2283. },
  2284. "autoload": {
  2285. "psr-4": {
  2286. "TelegramBot\\Api\\": "src"
  2287. }
  2288. },
  2289. "notification-url": "https://packagist.org/downloads/",
  2290. "license": [
  2291. "MIT"
  2292. ],
  2293. "authors": [
  2294. {
  2295. "name": "Ilya Gusev",
  2296. "email": "[email protected]",
  2297. "homepage": "https://php-cat.com",
  2298. "role": "Developer"
  2299. }
  2300. ],
  2301. "description": "PHP Wrapper for Telegram Bot API",
  2302. "homepage": "https://github.com/TelegramBot/Api",
  2303. "keywords": [
  2304. "bot",
  2305. "bot api",
  2306. "php",
  2307. "telegram"
  2308. ],
  2309. "time": "2016-12-12 11:36:44"
  2310. },
  2311. {
  2312. "name": "twig/twig",
  2313. "version": "1.x-dev",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/twigphp/Twig.git",
  2317. "reference": "b6a16a21f93dc80a48cb140c32d3beb44458d9c3"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/twigphp/Twig/zipball/b6a16a21f93dc80a48cb140c32d3beb44458d9c3",
  2322. "reference": "b6a16a21f93dc80a48cb140c32d3beb44458d9c3",
  2323. "shasum": ""
  2324. },
  2325. "require": {
  2326. "php": ">=5.2.7"
  2327. },
  2328. "require-dev": {
  2329. "psr/container": "^1.0",
  2330. "symfony/debug": "~2.7",
  2331. "symfony/phpunit-bridge": "~3.2"
  2332. },
  2333. "type": "library",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-master": "1.32-dev"
  2337. }
  2338. },
  2339. "autoload": {
  2340. "psr-0": {
  2341. "Twig_": "lib/"
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "BSD-3-Clause"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Fabien Potencier",
  2351. "email": "[email protected]",
  2352. "homepage": "http://fabien.potencier.org",
  2353. "role": "Lead Developer"
  2354. },
  2355. {
  2356. "name": "Armin Ronacher",
  2357. "email": "[email protected]",
  2358. "role": "Project Founder"
  2359. },
  2360. {
  2361. "name": "Twig Team",
  2362. "homepage": "http://twig.sensiolabs.org/contributors",
  2363. "role": "Contributors"
  2364. }
  2365. ],
  2366. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2367. "homepage": "http://twig.sensiolabs.org",
  2368. "keywords": [
  2369. "templating"
  2370. ],
  2371. "time": "2017-02-17 19:29:51"
  2372. },
  2373. {
  2374. "name": "vlucas/phpdotenv",
  2375. "version": "dev-master",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/vlucas/phpdotenv.git",
  2379. "reference": "7ac2c1cef304f5bd5a8d40750fbcbdd49333b9e5"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/7ac2c1cef304f5bd5a8d40750fbcbdd49333b9e5",
  2384. "reference": "7ac2c1cef304f5bd5a8d40750fbcbdd49333b9e5",
  2385. "shasum": ""
  2386. },
  2387. "require": {
  2388. "php": ">=5.3.9"
  2389. },
  2390. "require-dev": {
  2391. "phpunit/phpunit": "^4.8 || ^5.0"
  2392. },
  2393. "type": "library",
  2394. "extra": {
  2395. "branch-alias": {
  2396. "dev-master": "2.4-dev"
  2397. }
  2398. },
  2399. "autoload": {
  2400. "psr-4": {
  2401. "Dotenv\\": "src/"
  2402. }
  2403. },
  2404. "notification-url": "https://packagist.org/downloads/",
  2405. "license": [
  2406. "BSD-3-Clause-Attribution"
  2407. ],
  2408. "authors": [
  2409. {
  2410. "name": "Vance Lucas",
  2411. "email": "[email protected]",
  2412. "homepage": "http://www.vancelucas.com"
  2413. }
  2414. ],
  2415. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2416. "keywords": [
  2417. "dotenv",
  2418. "env",
  2419. "environment"
  2420. ],
  2421. "time": "2017-02-03 22:05:04"
  2422. },
  2423. {
  2424. "name": "voku/anti-xss",
  2425. "version": "1.2.14",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/voku/anti-xss.git",
  2429. "reference": "d4c9a93197b89b51b1aca616fda574017e29ed0d"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/voku/anti-xss/zipball/d4c9a93197b89b51b1aca616fda574017e29ed0d",
  2434. "reference": "d4c9a93197b89b51b1aca616fda574017e29ed0d",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "php": ">=5.3.0",
  2439. "voku/portable-utf8": "~2.1"
  2440. },
  2441. "require-dev": {
  2442. "phpunit/phpunit": "~4.0"
  2443. },
  2444. "type": "library",
  2445. "extra": {
  2446. "branch-alias": {
  2447. "dev-master": "1.0.x-dev"
  2448. }
  2449. },
  2450. "autoload": {
  2451. "psr-4": {
  2452. "voku\\helper\\": "src/voku/helper/"
  2453. }
  2454. },
  2455. "notification-url": "https://packagist.org/downloads/",
  2456. "license": [
  2457. "MIT"
  2458. ],
  2459. "authors": [
  2460. {
  2461. "name": "EllisLab Dev Team",
  2462. "homepage": "http://ellislab.com/"
  2463. },
  2464. {
  2465. "name": "Lars Moelleken",
  2466. "email": "[email protected]",
  2467. "homepage": "http://www.moelleken.org/"
  2468. }
  2469. ],
  2470. "description": "anti xss-library",
  2471. "homepage": "https://github.com/voku/anti-xss",
  2472. "keywords": [
  2473. "anti-xss",
  2474. "clean",
  2475. "security",
  2476. "xss"
  2477. ],
  2478. "time": "2016-06-01 23:57:07"
  2479. },
  2480. {
  2481. "name": "voku/portable-utf8",
  2482. "version": "2.1.24",
  2483. "source": {
  2484. "type": "git",
  2485. "url": "https://github.com/voku/portable-utf8.git",
  2486. "reference": "17c394be13374b196d4691c54c5f3ffccca253cf"
  2487. },
  2488. "dist": {
  2489. "type": "zip",
  2490. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/17c394be13374b196d4691c54c5f3ffccca253cf",
  2491. "reference": "17c394be13374b196d4691c54c5f3ffccca253cf",
  2492. "shasum": ""
  2493. },
  2494. "require": {
  2495. "php": ">=5.3.0",
  2496. "symfony/polyfill": "1.2.*@dev"
  2497. },
  2498. "require-dev": {
  2499. "phpunit/phpunit": "~4.0"
  2500. },
  2501. "suggest": {
  2502. "ext-iconv": "Use iconv for best performance",
  2503. "ext-intl": "Use Intl for best performance",
  2504. "ext-mbstring": "Use Mbstring for best performance"
  2505. },
  2506. "type": "library",
  2507. "extra": {
  2508. "branch-alias": {
  2509. "dev-master": "2.1.x-dev"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "psr-4": {
  2514. "voku\\": "src/voku/"
  2515. },
  2516. "files": [
  2517. "bootstrap.php"
  2518. ]
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "(Apache-2.0 or GPL-2.0)"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Hamid Sarfraz",
  2527. "homepage": "http://pageconfig.com/"
  2528. },
  2529. {
  2530. "name": "Lars Moelleken",
  2531. "homepage": "http://www.moelleken.org/"
  2532. },
  2533. {
  2534. "name": "Nicolas Grekas",
  2535. "email": "[email protected]"
  2536. }
  2537. ],
  2538. "description": "Portable UTF-8 library with polyfill / shim for Iconv, Intl, Mbstring, Normalizrer etc.",
  2539. "homepage": "https://github.com/voku/portable-utf8",
  2540. "keywords": [
  2541. "UTF",
  2542. "clean",
  2543. "php",
  2544. "unicode",
  2545. "utf-8",
  2546. "utf8"
  2547. ],
  2548. "time": "2016-06-29 23:42:06"
  2549. },
  2550. {
  2551. "name": "zeuxisoo/slim-whoops",
  2552. "version": "0.5.2",
  2553. "source": {
  2554. "type": "git",
  2555. "url": "https://github.com/zeuxisoo/php-slim-whoops.git",
  2556. "reference": "888bf2f6403ee9d7fac22fe52a8b4baacea72ef6"
  2557. },
  2558. "dist": {
  2559. "type": "zip",
  2560. "url": "https://api.github.com/repos/zeuxisoo/php-slim-whoops/zipball/888bf2f6403ee9d7fac22fe52a8b4baacea72ef6",
  2561. "reference": "888bf2f6403ee9d7fac22fe52a8b4baacea72ef6",
  2562. "shasum": ""
  2563. },
  2564. "require": {
  2565. "filp/whoops": "2.1.*",
  2566. "php": ">=5.5.0"
  2567. },
  2568. "require-dev": {
  2569. "phpunit/phpunit": "4.8.*",
  2570. "slim/slim": "3.6.*",
  2571. "slim/twig-view": "2.1.*"
  2572. },
  2573. "type": "library",
  2574. "autoload": {
  2575. "psr-0": {
  2576. "Zeuxisoo\\Whoops\\Provider\\Slim": "src/"
  2577. }
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "BSD-2-Clause"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Zeuxis Lo",
  2586. "email": "[email protected]",
  2587. "homepage": "http://www.not.im/",
  2588. "role": "Developer"
  2589. }
  2590. ],
  2591. "description": "PHP whoops error on slim framework",
  2592. "homepage": "https://github.com/zeuxisoo/php-slim-whoops/",
  2593. "keywords": [
  2594. "error",
  2595. "exception",
  2596. "slim",
  2597. "whoops"
  2598. ],
  2599. "time": "2017-01-09 05:24:59"
  2600. }
  2601. ],
  2602. "packages-dev": [
  2603. {
  2604. "name": "khanamiryan/qrcode-detector-decoder",
  2605. "version": "dev-master",
  2606. "source": {
  2607. "type": "git",
  2608. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  2609. "reference": "96d5f80680b04803c4f1b69d6e01735e876b80c7"
  2610. },
  2611. "dist": {
  2612. "type": "zip",
  2613. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/96d5f80680b04803c4f1b69d6e01735e876b80c7",
  2614. "reference": "96d5f80680b04803c4f1b69d6e01735e876b80c7",
  2615. "shasum": ""
  2616. },
  2617. "require": {
  2618. "php": "^5.6|^7.0"
  2619. },
  2620. "require-dev": {
  2621. "phpunit/phpunit": "^5.7"
  2622. },
  2623. "type": "library",
  2624. "autoload": {
  2625. "classmap": [
  2626. "lib/"
  2627. ],
  2628. "files": [
  2629. "lib/common/customFunctions.php"
  2630. ]
  2631. },
  2632. "notification-url": "https://packagist.org/downloads/",
  2633. "license": [
  2634. "MIT"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "Ashot Khanamiryan",
  2639. "email": "[email protected]",
  2640. "homepage": "https://github.com/khanamiryan",
  2641. "role": "Developer"
  2642. }
  2643. ],
  2644. "description": "QR code decoder / reader",
  2645. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder",
  2646. "keywords": [
  2647. "barcode",
  2648. "qr",
  2649. "zxing"
  2650. ],
  2651. "time": "2017-01-13 09:11:46"
  2652. }
  2653. ],
  2654. "aliases": [],
  2655. "minimum-stability": "dev",
  2656. "stability-flags": [],
  2657. "prefer-stable": false,
  2658. "prefer-lowest": false,
  2659. "platform": [],
  2660. "platform-dev": []
  2661. }