composer.lock 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  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": "4da9c5f6bf259094ae254925aa6b8f24",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "hamcrest/hamcrest-php",
  12. "version": "v1.2.2",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/hamcrest/hamcrest-php.git",
  16. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c",
  21. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": ">=5.3.2"
  26. },
  27. "replace": {
  28. "cordoval/hamcrest-php": "*",
  29. "davedevelopment/hamcrest-php": "*",
  30. "kodova/hamcrest-php": "*"
  31. },
  32. "require-dev": {
  33. "phpunit/php-file-iterator": "1.3.3",
  34. "satooshi/php-coveralls": "dev-master"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "classmap": [
  39. "hamcrest"
  40. ],
  41. "files": [
  42. "hamcrest/Hamcrest.php"
  43. ]
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "BSD"
  48. ],
  49. "description": "This is the PHP port of Hamcrest Matchers",
  50. "keywords": [
  51. "test"
  52. ],
  53. "time": "2015-05-11 14:41:42"
  54. },
  55. {
  56. "name": "mockery/mockery",
  57. "version": "0.9.4",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/padraic/mockery.git",
  61. "reference": "70bba85e4aabc9449626651f48b9018ede04f86b"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/padraic/mockery/zipball/70bba85e4aabc9449626651f48b9018ede04f86b",
  66. "reference": "70bba85e4aabc9449626651f48b9018ede04f86b",
  67. "shasum": ""
  68. },
  69. "require": {
  70. "hamcrest/hamcrest-php": "~1.1",
  71. "lib-pcre": ">=7.0",
  72. "php": ">=5.3.2"
  73. },
  74. "require-dev": {
  75. "phpunit/phpunit": "~4.0"
  76. },
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "0.9.x-dev"
  81. }
  82. },
  83. "autoload": {
  84. "psr-0": {
  85. "Mockery": "library/"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "BSD-3-Clause"
  91. ],
  92. "authors": [
  93. {
  94. "name": "Pádraic Brady",
  95. "email": "padraic.brady@gmail.com",
  96. "homepage": "http://blog.astrumfutura.com"
  97. },
  98. {
  99. "name": "Dave Marshall",
  100. "email": "dave.marshall@atstsolutions.co.uk",
  101. "homepage": "http://davedevelopment.co.uk"
  102. }
  103. ],
  104. "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
  105. "homepage": "http://github.com/padraic/mockery",
  106. "keywords": [
  107. "BDD",
  108. "TDD",
  109. "library",
  110. "mock",
  111. "mock objects",
  112. "mockery",
  113. "stub",
  114. "test",
  115. "test double",
  116. "testing"
  117. ],
  118. "time": "2015-04-02 19:54:00"
  119. },
  120. {
  121. "name": "phpunit/php-code-coverage",
  122. "version": "1.2.18",
  123. "source": {
  124. "type": "git",
  125. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  126. "reference": "fe2466802556d3fe4e4d1d58ffd3ccfd0a19be0b"
  127. },
  128. "dist": {
  129. "type": "zip",
  130. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/fe2466802556d3fe4e4d1d58ffd3ccfd0a19be0b",
  131. "reference": "fe2466802556d3fe4e4d1d58ffd3ccfd0a19be0b",
  132. "shasum": ""
  133. },
  134. "require": {
  135. "php": ">=5.3.3",
  136. "phpunit/php-file-iterator": ">=1.3.0@stable",
  137. "phpunit/php-text-template": ">=1.2.0@stable",
  138. "phpunit/php-token-stream": ">=1.1.3,<1.3.0"
  139. },
  140. "require-dev": {
  141. "phpunit/phpunit": "3.7.*@dev"
  142. },
  143. "suggest": {
  144. "ext-dom": "*",
  145. "ext-xdebug": ">=2.0.5"
  146. },
  147. "type": "library",
  148. "extra": {
  149. "branch-alias": {
  150. "dev-master": "1.2.x-dev"
  151. }
  152. },
  153. "autoload": {
  154. "classmap": [
  155. "PHP/"
  156. ]
  157. },
  158. "notification-url": "https://packagist.org/downloads/",
  159. "include-path": [
  160. ""
  161. ],
  162. "license": [
  163. "BSD-3-Clause"
  164. ],
  165. "authors": [
  166. {
  167. "name": "Sebastian Bergmann",
  168. "email": "sb@sebastian-bergmann.de",
  169. "role": "lead"
  170. }
  171. ],
  172. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  173. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  174. "keywords": [
  175. "coverage",
  176. "testing",
  177. "xunit"
  178. ],
  179. "time": "2014-09-02 10:13:14"
  180. },
  181. {
  182. "name": "phpunit/php-file-iterator",
  183. "version": "1.4.0",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  187. "reference": "a923bb15680d0089e2316f7a4af8f437046e96bb"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a923bb15680d0089e2316f7a4af8f437046e96bb",
  192. "reference": "a923bb15680d0089e2316f7a4af8f437046e96bb",
  193. "shasum": ""
  194. },
  195. "require": {
  196. "php": ">=5.3.3"
  197. },
  198. "type": "library",
  199. "extra": {
  200. "branch-alias": {
  201. "dev-master": "1.4.x-dev"
  202. }
  203. },
  204. "autoload": {
  205. "classmap": [
  206. "src/"
  207. ]
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "BSD-3-Clause"
  212. ],
  213. "authors": [
  214. {
  215. "name": "Sebastian Bergmann",
  216. "email": "sb@sebastian-bergmann.de",
  217. "role": "lead"
  218. }
  219. ],
  220. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  221. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  222. "keywords": [
  223. "filesystem",
  224. "iterator"
  225. ],
  226. "time": "2015-04-02 05:19:05"
  227. },
  228. {
  229. "name": "phpunit/php-text-template",
  230. "version": "1.2.1",
  231. "source": {
  232. "type": "git",
  233. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  234. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  235. },
  236. "dist": {
  237. "type": "zip",
  238. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  239. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  240. "shasum": ""
  241. },
  242. "require": {
  243. "php": ">=5.3.3"
  244. },
  245. "type": "library",
  246. "autoload": {
  247. "classmap": [
  248. "src/"
  249. ]
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "BSD-3-Clause"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Sebastian Bergmann",
  258. "email": "sebastian@phpunit.de",
  259. "role": "lead"
  260. }
  261. ],
  262. "description": "Simple template engine.",
  263. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  264. "keywords": [
  265. "template"
  266. ],
  267. "time": "2015-06-21 13:50:34"
  268. },
  269. {
  270. "name": "phpunit/php-timer",
  271. "version": "1.0.6",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/sebastianbergmann/php-timer.git",
  275. "reference": "83fe1bdc5d47658b727595c14da140da92b3d66d"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/83fe1bdc5d47658b727595c14da140da92b3d66d",
  280. "reference": "83fe1bdc5d47658b727595c14da140da92b3d66d",
  281. "shasum": ""
  282. },
  283. "require": {
  284. "php": ">=5.3.3"
  285. },
  286. "type": "library",
  287. "autoload": {
  288. "classmap": [
  289. "src/"
  290. ]
  291. },
  292. "notification-url": "https://packagist.org/downloads/",
  293. "license": [
  294. "BSD-3-Clause"
  295. ],
  296. "authors": [
  297. {
  298. "name": "Sebastian Bergmann",
  299. "email": "sb@sebastian-bergmann.de",
  300. "role": "lead"
  301. }
  302. ],
  303. "description": "Utility class for timing",
  304. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  305. "keywords": [
  306. "timer"
  307. ],
  308. "time": "2015-06-13 07:35:30"
  309. },
  310. {
  311. "name": "phpunit/php-token-stream",
  312. "version": "1.2.2",
  313. "source": {
  314. "type": "git",
  315. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  316. "reference": "ad4e1e23ae01b483c16f600ff1bebec184588e32"
  317. },
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/ad4e1e23ae01b483c16f600ff1bebec184588e32",
  321. "reference": "ad4e1e23ae01b483c16f600ff1bebec184588e32",
  322. "shasum": ""
  323. },
  324. "require": {
  325. "ext-tokenizer": "*",
  326. "php": ">=5.3.3"
  327. },
  328. "type": "library",
  329. "extra": {
  330. "branch-alias": {
  331. "dev-master": "1.2-dev"
  332. }
  333. },
  334. "autoload": {
  335. "classmap": [
  336. "PHP/"
  337. ]
  338. },
  339. "notification-url": "https://packagist.org/downloads/",
  340. "include-path": [
  341. ""
  342. ],
  343. "license": [
  344. "BSD-3-Clause"
  345. ],
  346. "authors": [
  347. {
  348. "name": "Sebastian Bergmann",
  349. "email": "sb@sebastian-bergmann.de",
  350. "role": "lead"
  351. }
  352. ],
  353. "description": "Wrapper around PHP's tokenizer extension.",
  354. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  355. "keywords": [
  356. "tokenizer"
  357. ],
  358. "time": "2014-03-03 05:10:30"
  359. },
  360. {
  361. "name": "phpunit/phpunit",
  362. "version": "3.7.38",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/sebastianbergmann/phpunit.git",
  366. "reference": "38709dc22d519a3d1be46849868aa2ddf822bcf6"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/38709dc22d519a3d1be46849868aa2ddf822bcf6",
  371. "reference": "38709dc22d519a3d1be46849868aa2ddf822bcf6",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "ext-ctype": "*",
  376. "ext-dom": "*",
  377. "ext-json": "*",
  378. "ext-pcre": "*",
  379. "ext-reflection": "*",
  380. "ext-spl": "*",
  381. "php": ">=5.3.3",
  382. "phpunit/php-code-coverage": "~1.2",
  383. "phpunit/php-file-iterator": "~1.3",
  384. "phpunit/php-text-template": "~1.1",
  385. "phpunit/php-timer": "~1.0",
  386. "phpunit/phpunit-mock-objects": "~1.2",
  387. "symfony/yaml": "~2.0"
  388. },
  389. "require-dev": {
  390. "pear-pear.php.net/pear": "1.9.4"
  391. },
  392. "suggest": {
  393. "phpunit/php-invoker": "~1.1"
  394. },
  395. "bin": [
  396. "composer/bin/phpunit"
  397. ],
  398. "type": "library",
  399. "extra": {
  400. "branch-alias": {
  401. "dev-master": "3.7.x-dev"
  402. }
  403. },
  404. "autoload": {
  405. "classmap": [
  406. "PHPUnit/"
  407. ]
  408. },
  409. "notification-url": "https://packagist.org/downloads/",
  410. "include-path": [
  411. "",
  412. "../../symfony/yaml/"
  413. ],
  414. "license": [
  415. "BSD-3-Clause"
  416. ],
  417. "authors": [
  418. {
  419. "name": "Sebastian Bergmann",
  420. "email": "sebastian@phpunit.de",
  421. "role": "lead"
  422. }
  423. ],
  424. "description": "The PHP Unit Testing framework.",
  425. "homepage": "http://www.phpunit.de/",
  426. "keywords": [
  427. "phpunit",
  428. "testing",
  429. "xunit"
  430. ],
  431. "time": "2014-10-17 09:04:17"
  432. },
  433. {
  434. "name": "phpunit/phpunit-mock-objects",
  435. "version": "1.2.3",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  439. "reference": "5794e3c5c5ba0fb037b11d8151add2a07fa82875"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/5794e3c5c5ba0fb037b11d8151add2a07fa82875",
  444. "reference": "5794e3c5c5ba0fb037b11d8151add2a07fa82875",
  445. "shasum": ""
  446. },
  447. "require": {
  448. "php": ">=5.3.3",
  449. "phpunit/php-text-template": ">=1.1.1@stable"
  450. },
  451. "suggest": {
  452. "ext-soap": "*"
  453. },
  454. "type": "library",
  455. "autoload": {
  456. "classmap": [
  457. "PHPUnit/"
  458. ]
  459. },
  460. "notification-url": "https://packagist.org/downloads/",
  461. "include-path": [
  462. ""
  463. ],
  464. "license": [
  465. "BSD-3-Clause"
  466. ],
  467. "authors": [
  468. {
  469. "name": "Sebastian Bergmann",
  470. "email": "sb@sebastian-bergmann.de",
  471. "role": "lead"
  472. }
  473. ],
  474. "description": "Mock Object library for PHPUnit",
  475. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  476. "keywords": [
  477. "mock",
  478. "xunit"
  479. ],
  480. "time": "2013-01-13 10:24:48"
  481. },
  482. {
  483. "name": "symfony/dependency-injection",
  484. "version": "v2.7.1",
  485. "source": {
  486. "type": "git",
  487. "url": "https://github.com/symfony/DependencyInjection.git",
  488. "reference": "1a409e52a38ec891de0a7a61a191d1c62080b69d"
  489. },
  490. "dist": {
  491. "type": "zip",
  492. "url": "https://api.github.com/repos/symfony/DependencyInjection/zipball/1a409e52a38ec891de0a7a61a191d1c62080b69d",
  493. "reference": "1a409e52a38ec891de0a7a61a191d1c62080b69d",
  494. "shasum": ""
  495. },
  496. "require": {
  497. "php": ">=5.3.9"
  498. },
  499. "conflict": {
  500. "symfony/expression-language": "<2.6"
  501. },
  502. "require-dev": {
  503. "symfony/config": "~2.2",
  504. "symfony/expression-language": "~2.6",
  505. "symfony/phpunit-bridge": "~2.7",
  506. "symfony/yaml": "~2.1"
  507. },
  508. "suggest": {
  509. "symfony/config": "",
  510. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  511. "symfony/yaml": ""
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-master": "2.7-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Symfony\\Component\\DependencyInjection\\": ""
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Fabien Potencier",
  531. "email": "fabien@symfony.com"
  532. },
  533. {
  534. "name": "Symfony Community",
  535. "homepage": "https://symfony.com/contributors"
  536. }
  537. ],
  538. "description": "Symfony DependencyInjection Component",
  539. "homepage": "https://symfony.com",
  540. "time": "2015-06-11 19:13:11"
  541. },
  542. {
  543. "name": "symfony/yaml",
  544. "version": "v2.7.1",
  545. "source": {
  546. "type": "git",
  547. "url": "https://github.com/symfony/Yaml.git",
  548. "reference": "9808e75c609a14f6db02f70fccf4ca4aab53c160"
  549. },
  550. "dist": {
  551. "type": "zip",
  552. "url": "https://api.github.com/repos/symfony/Yaml/zipball/9808e75c609a14f6db02f70fccf4ca4aab53c160",
  553. "reference": "9808e75c609a14f6db02f70fccf4ca4aab53c160",
  554. "shasum": ""
  555. },
  556. "require": {
  557. "php": ">=5.3.9"
  558. },
  559. "require-dev": {
  560. "symfony/phpunit-bridge": "~2.7"
  561. },
  562. "type": "library",
  563. "extra": {
  564. "branch-alias": {
  565. "dev-master": "2.7-dev"
  566. }
  567. },
  568. "autoload": {
  569. "psr-4": {
  570. "Symfony\\Component\\Yaml\\": ""
  571. }
  572. },
  573. "notification-url": "https://packagist.org/downloads/",
  574. "license": [
  575. "MIT"
  576. ],
  577. "authors": [
  578. {
  579. "name": "Fabien Potencier",
  580. "email": "fabien@symfony.com"
  581. },
  582. {
  583. "name": "Symfony Community",
  584. "homepage": "https://symfony.com/contributors"
  585. }
  586. ],
  587. "description": "Symfony Yaml Component",
  588. "homepage": "https://symfony.com",
  589. "time": "2015-06-10 15:30:22"
  590. }
  591. ],
  592. "aliases": [],
  593. "minimum-stability": "stable",
  594. "stability-flags": [],
  595. "prefer-stable": false,
  596. "prefer-lowest": false,
  597. "platform": [],
  598. "platform-dev": []
  599. }