guard-codeception 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +9 -4
  3. data/README.md +19 -9
  4. data/Rakefile +5 -0
  5. data/guard-codeception.gemspec +1 -1
  6. data/lib/guard/codeception.rb +10 -22
  7. data/lib/guard/codeception/runner.rb +44 -0
  8. data/lib/guard/codeception/version.rb +1 -1
  9. data/spec/fixtures/codeception/codeception.yml +18 -0
  10. data/spec/fixtures/codeception/composer.json +18 -0
  11. data/spec/fixtures/codeception/composer.lock +1545 -0
  12. data/spec/fixtures/codeception/index.php +1 -0
  13. data/spec/fixtures/codeception/tests/_bootstrap.php +2 -0
  14. data/spec/fixtures/codeception/tests/_data/dump.sql +1 -0
  15. data/spec/fixtures/codeception/tests/_helpers/CodeHelper.php +8 -0
  16. data/spec/fixtures/codeception/tests/_helpers/TestHelper.php +8 -0
  17. data/spec/fixtures/codeception/tests/_helpers/WebHelper.php +8 -0
  18. data/spec/fixtures/codeception/tests/_log/acceptance-2013-12-28 +19 -0
  19. data/spec/fixtures/codeception/tests/_log/indexCept.php.page.fail.html +1 -0
  20. data/spec/fixtures/codeception/tests/acceptance.suite.yml +18 -0
  21. data/spec/fixtures/codeception/tests/acceptance/WebGuy.php +2061 -0
  22. data/spec/fixtures/codeception/tests/acceptance/_bootstrap.php +2 -0
  23. data/spec/fixtures/codeception/tests/acceptance/indexCept.php +5 -0
  24. data/spec/fixtures/codeception/tests/functional.suite.yml +11 -0
  25. data/spec/fixtures/codeception/tests/functional/TestGuy.php +460 -0
  26. data/spec/fixtures/codeception/tests/functional/_bootstrap.php +2 -0
  27. data/spec/fixtures/codeception/tests/unit.suite.yml +8 -0
  28. data/spec/fixtures/codeception/tests/unit/CodeGuy.php +47 -0
  29. data/spec/fixtures/codeception/tests/unit/_bootstrap.php +2 -0
  30. data/spec/fixtures/results/codeception_failure +29 -0
  31. data/spec/fixtures/results/codeception_success +17 -0
  32. data/spec/guard/codeception/runner_spec.rb +59 -0
  33. data/spec/guard/codeception_spec.rb +32 -14
  34. metadata +66 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f8bec541b520a1e99154badd3b10185ff1663ca1
4
- data.tar.gz: 4ad19063128933364a7dfe7ec11af275024ac413
3
+ metadata.gz: 0112040cdc13cc5a5c184fa9a7923ea8f42cd639
4
+ data.tar.gz: 84baffc58e9b884f57132c0ede6165bcaabcfb64
5
5
  SHA512:
6
- metadata.gz: cd08783dcc5882c830b0211c1bc1fbc4c756efefd8fc78250681652a48180e18c12612baba88f3be977aa705741b273991c2ba1cf6afc2a3a27caa59091c04d4
7
- data.tar.gz: 45b438af08c61f52666847bc25f8007ead7a7cf3243c514d2dba502db97afb4b64d4b0b50a3fb95d083a6c47f9b78d889a34e92e1b2fd48395602fe819dc0a4f
6
+ metadata.gz: f65d1eff3e67a9f770ee276c475f6ef8f7afbfb5d2a7ffeca3d6472a85637589fdb180af5f0f3727ec1e8e4b8b9ef60ef71c9b7fc1079a75b5dbb5522a015556
7
+ data.tar.gz: 266016584245b48433bcc05dcfc53619e437edcbfaa8dcfec20262ebbb4b89bf9045976b1739ee8f942784fa04c96695750e2773ff59d3305352a0a48b1e5c97
data/.travis.yml CHANGED
@@ -1,9 +1,14 @@
1
1
  rvm:
2
- - 1.8.7
3
- - 1.9.2
4
2
  - 1.9.3
5
- - ree
6
- - rbx
3
+ - 2.0.0
4
+ - 2.1.0
5
+ before_script:
6
+ - echo "yes" | sudo add-apt-repository ppa:ondrej/php5
7
+ - sudo apt-get update
8
+ - sudo apt-get install php5 php5-curl
9
+ - cd spec/fixtures/codeception
10
+ - curl -sS https://getcomposer.org/installer | php
11
+ - php composer.phar install --dev
7
12
  notifications:
8
13
  email:
9
14
  - colby@taplaboratories.com.au
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # TODO:
2
2
  - 100% code coverage
3
3
 
4
- # Guard::Codeception
4
+ # Guard::Codeception [![Build Status](https://travis-ci.org/colby-swandale/guard-codeception.png?branch=master)](https://travis-ci.org/colby-swandale/guard-codeception)
5
5
 
6
6
  Guard::Codeception is an extension to the [guard gem](http://guardgem.org/) for the [codeception](http://codeception.com/) testing framework
7
7
 
@@ -27,17 +27,27 @@ end
27
27
  The following options can be passed to Guard::Codeception
28
28
 
29
29
  ```ruby
30
- :suites => [:acceptence, :custom_suite] # run only specified suites
31
- # default: [:acceptance, :functional, :unit]
30
+ # run only specified suites default: [:acceptance, :functional, :unit]
31
+ :suites => [:acceptence, :custom_suite]
32
32
 
33
- :groups => [:foo, :bar] # run specific test group
34
- # default: []
33
+ # run specific test group default: []
34
+ :groups => [:foo, :bar]
35
35
 
36
- :debug => false # enable codeception debug mode
37
- # default: false
36
+ # enable codeception debug mode default: false
37
+ :debug => false
38
38
 
39
- :test_on_start => false # run tests when guard starts
40
- # default: false
39
+ # run tests when guard starts default: false
40
+ :test_on_start => false
41
+
42
+ # path to codecept default 'codecept'
43
+ # if codecept is not avaliable via the PATH you can
44
+ # define the path to codecept here. ie: installing codeception
45
+ # via composer would be :codecept => 'vendor/bin/codecept'
46
+ :codecept => '/path/to/codecept'
47
+
48
+ # extra cli you wish to pass to codeceeption
49
+ # ie: config, json or xml output
50
+ :cli => false
41
51
  ```
42
52
 
43
53
  ## Usage
data/Rakefile CHANGED
@@ -1 +1,6 @@
1
1
  require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ['colby@taplaboratories.com.au']
11
11
  spec.description = %q{Guard gem for codeception}
12
12
  spec.summary = %q{guard-codeception automatically runs codeception on file changes}
13
- spec.homepage = 'http://www.taplaboratories.com.au/guard-codeception'
13
+ spec.homepage = 'https://github.com/colby-swandale/guard-codeception'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -4,11 +4,15 @@ require 'guard/plugin'
4
4
  module Guard
5
5
  class Codeception < Plugin
6
6
 
7
+ autoload :Runner, 'guard/codeception/runner'
8
+
7
9
  DEFAULT_OPTIONS = {
8
10
  :test_on_start => false,
9
- :suites => [:acceptance, :functional, :unit],
10
- :debug => false,
11
- :groups => []
11
+ :suites => [:acceptance, :functional, :unit],
12
+ :debug => false,
13
+ :groups => [],
14
+ :codecept => 'codecept',
15
+ :cli => false
12
16
  }
13
17
 
14
18
  def initialize(options = {})
@@ -17,31 +21,15 @@ module Guard
17
21
  end
18
22
 
19
23
  def start
20
- puts run if options[:test_on_start]
24
+ run if options[:test_on_start]
21
25
  end
22
26
 
23
27
  def run_on_change(paths)
24
- puts run
28
+ run
25
29
  end
26
30
 
27
31
  def run
28
- cmd = []
29
- cmd << "vendor/bin/codecept"
30
- cmd << "run"
31
- cmd << options[:suites].join(',')
32
- cmd << '-g ' + options[:groups].join(' -g ') if !options[:groups].empty?
33
- cmd << '--debug' if options[:debug]
34
-
35
- status = execute make(cmd)
36
- status
37
- end
38
-
39
- def make(cmd_parts)
40
- cmd_parts.join ' '
41
- end
42
-
43
- def execute(cmd)
44
- system cmd
32
+ Runner.run options
45
33
  end
46
34
  end
47
35
  end
@@ -0,0 +1,44 @@
1
+ module Guard
2
+ class Codeception
3
+
4
+ module Runner
5
+
6
+ class << self
7
+
8
+ def run(options = {})
9
+ UI.info 'Starting Tests'
10
+
11
+ if !codeception_exists? options[:codecept]
12
+ UI.error 'codecept isnt\'t avaliable, have you installed codeception?'
13
+ return false
14
+ end
15
+
16
+ cmd = []
17
+ cmd << options[:codecept]
18
+ cmd << 'run'
19
+ cmd << options[:suites].join(',')
20
+ cmd << '-g ' + options[:groups].join(' -g ') if !options[:groups].empty?
21
+ cmd << '--debug' if options[:debug]
22
+ cmd << options[:cli] if options[:cli]
23
+
24
+ UI.info execute make(cmd)
25
+ end
26
+
27
+ def codeception_exists?(codecept_path)
28
+ %x(#{codecept_path} --version)
29
+ true
30
+ rescue Errno::ENOENT
31
+ false
32
+ end
33
+
34
+ def make(cmd_parts)
35
+ cmd_parts.join ' '
36
+ end
37
+
38
+ def execute(cmd)
39
+ return %x(#{cmd})
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module CodeceptionVersion
3
- VERSION = "1.0.0"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
@@ -0,0 +1,18 @@
1
+ paths:
2
+ tests: tests
3
+ log: tests/_log
4
+ data: tests/_data
5
+ helpers: tests/_helpers
6
+ settings:
7
+ bootstrap: _bootstrap.php
8
+ suite_class: \PHPUnit_Framework_TestSuite
9
+ colors: true
10
+ memory_limit: 1024M
11
+ log: true
12
+ modules:
13
+ config:
14
+ Db:
15
+ dsn: ''
16
+ user: ''
17
+ password: ''
18
+ dump: tests/_data/dump.sql
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "colby-swandale/guard-codeception",
3
+ "description": "codeception test project for guard-codeception",
4
+ "require-dev": {
5
+ "codeception/codeception": "1.7.*"
6
+ },
7
+ "license": "MIT",
8
+ "authors": [
9
+ {
10
+ "name": "Colby Swandale",
11
+ "email": "colby@taplaboratories.com.au"
12
+ }
13
+ ],
14
+ "minimum-stability": "dev",
15
+ "require": {
16
+
17
+ }
18
+ }
@@ -0,0 +1,1545 @@
1
+ {
2
+ "_readme": [
3
+ "This file locks the dependencies of your project to a known state",
4
+ "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file"
5
+ ],
6
+ "hash": "9a44485c6bae89bfd32e2aec836f18cf",
7
+ "packages": [
8
+
9
+ ],
10
+ "packages-dev": [
11
+ {
12
+ "name": "behat/mink",
13
+ "version": "dev-develop",
14
+ "source": {
15
+ "type": "git",
16
+ "url": "https://github.com/Behat/Mink.git",
17
+ "reference": "ffa0363fba5a130e1964343124ca761a3c69c838"
18
+ },
19
+ "dist": {
20
+ "type": "zip",
21
+ "url": "https://api.github.com/repos/Behat/Mink/zipball/ffa0363fba5a130e1964343124ca761a3c69c838",
22
+ "reference": "ffa0363fba5a130e1964343124ca761a3c69c838",
23
+ "shasum": ""
24
+ },
25
+ "require": {
26
+ "php": ">=5.3.1",
27
+ "symfony/css-selector": "~2.0"
28
+ },
29
+ "suggest": {
30
+ "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
31
+ "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
32
+ "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
33
+ "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)"
34
+ },
35
+ "type": "library",
36
+ "extra": {
37
+ "branch-alias": {
38
+ "dev-develop": "1.5.x-dev"
39
+ }
40
+ },
41
+ "autoload": {
42
+ "psr-0": {
43
+ "Behat\\Mink": "src/"
44
+ }
45
+ },
46
+ "notification-url": "https://packagist.org/downloads/",
47
+ "license": [
48
+ "MIT"
49
+ ],
50
+ "authors": [
51
+ {
52
+ "name": "Konstantin Kudryashov",
53
+ "email": "ever.zet@gmail.com",
54
+ "homepage": "http://everzet.com"
55
+ }
56
+ ],
57
+ "description": "Web acceptance testing framework for PHP 5.3",
58
+ "homepage": "http://mink.behat.org/",
59
+ "keywords": [
60
+ "browser",
61
+ "testing",
62
+ "web"
63
+ ],
64
+ "time": "2013-12-27 10:08:43"
65
+ },
66
+ {
67
+ "name": "behat/mink-browserkit-driver",
68
+ "version": "dev-master",
69
+ "source": {
70
+ "type": "git",
71
+ "url": "https://github.com/Behat/MinkBrowserKitDriver.git",
72
+ "reference": "c4e94b1413d0eabf533ea46f1d47e0aeffed90f4"
73
+ },
74
+ "dist": {
75
+ "type": "zip",
76
+ "url": "https://api.github.com/repos/Behat/MinkBrowserKitDriver/zipball/c4e94b1413d0eabf533ea46f1d47e0aeffed90f4",
77
+ "reference": "c4e94b1413d0eabf533ea46f1d47e0aeffed90f4",
78
+ "shasum": ""
79
+ },
80
+ "require": {
81
+ "behat/mink": "~1.5.0@dev",
82
+ "php": ">=5.3.1",
83
+ "symfony/browser-kit": "~2.0",
84
+ "symfony/dom-crawler": "~2.0"
85
+ },
86
+ "require-dev": {
87
+ "silex/silex": "@dev"
88
+ },
89
+ "type": "mink-driver",
90
+ "extra": {
91
+ "branch-alias": {
92
+ "dev-master": "1.1.x-dev"
93
+ }
94
+ },
95
+ "autoload": {
96
+ "psr-0": {
97
+ "Behat\\Mink\\Driver": "src/"
98
+ }
99
+ },
100
+ "notification-url": "https://packagist.org/downloads/",
101
+ "license": [
102
+ "MIT"
103
+ ],
104
+ "authors": [
105
+ {
106
+ "name": "Konstantin Kudryashov",
107
+ "email": "ever.zet@gmail.com",
108
+ "homepage": "http://everzet.com"
109
+ }
110
+ ],
111
+ "description": "Symfony2 BrowserKit driver for Mink framework",
112
+ "homepage": "http://mink.behat.org/",
113
+ "keywords": [
114
+ "Mink",
115
+ "Symfony2",
116
+ "browser",
117
+ "testing"
118
+ ],
119
+ "time": "2013-12-27 10:08:33"
120
+ },
121
+ {
122
+ "name": "behat/mink-goutte-driver",
123
+ "version": "dev-master",
124
+ "source": {
125
+ "type": "git",
126
+ "url": "https://github.com/Behat/MinkGoutteDriver.git",
127
+ "reference": "fd078a2ae55025a24f6dd58b37001c760aac78fe"
128
+ },
129
+ "dist": {
130
+ "type": "zip",
131
+ "url": "https://api.github.com/repos/Behat/MinkGoutteDriver/zipball/fd078a2ae55025a24f6dd58b37001c760aac78fe",
132
+ "reference": "fd078a2ae55025a24f6dd58b37001c760aac78fe",
133
+ "shasum": ""
134
+ },
135
+ "require": {
136
+ "behat/mink": "~1.5.0@dev",
137
+ "behat/mink-browserkit-driver": "~1.1@dev",
138
+ "fabpot/goutte": "~1.0",
139
+ "php": ">=5.3.1"
140
+ },
141
+ "type": "mink-driver",
142
+ "extra": {
143
+ "branch-alias": {
144
+ "dev-master": "1.0.x-dev"
145
+ }
146
+ },
147
+ "autoload": {
148
+ "psr-0": {
149
+ "Behat\\Mink\\Driver": "src/"
150
+ }
151
+ },
152
+ "notification-url": "https://packagist.org/downloads/",
153
+ "license": [
154
+ "MIT"
155
+ ],
156
+ "authors": [
157
+ {
158
+ "name": "Konstantin Kudryashov",
159
+ "email": "ever.zet@gmail.com",
160
+ "homepage": "http://everzet.com"
161
+ }
162
+ ],
163
+ "description": "Goutte driver for Mink framework",
164
+ "homepage": "http://mink.behat.org/",
165
+ "keywords": [
166
+ "browser",
167
+ "goutte",
168
+ "headless",
169
+ "testing"
170
+ ],
171
+ "time": "2013-12-27 10:08:53"
172
+ },
173
+ {
174
+ "name": "behat/mink-selenium2-driver",
175
+ "version": "dev-master",
176
+ "source": {
177
+ "type": "git",
178
+ "url": "https://github.com/Behat/MinkSelenium2Driver.git",
179
+ "reference": "d97f184aa1ebefe44c0f091ff39204ea7ef21f52"
180
+ },
181
+ "dist": {
182
+ "type": "zip",
183
+ "url": "https://api.github.com/repos/Behat/MinkSelenium2Driver/zipball/d97f184aa1ebefe44c0f091ff39204ea7ef21f52",
184
+ "reference": "d97f184aa1ebefe44c0f091ff39204ea7ef21f52",
185
+ "shasum": ""
186
+ },
187
+ "require": {
188
+ "behat/mink": "~1.5.0@dev",
189
+ "instaclick/php-webdriver": "~1.1",
190
+ "php": ">=5.3.1"
191
+ },
192
+ "type": "mink-driver",
193
+ "extra": {
194
+ "branch-alias": {
195
+ "dev-master": "1.1.x-dev"
196
+ }
197
+ },
198
+ "autoload": {
199
+ "psr-0": {
200
+ "Behat\\Mink\\Driver": "src/"
201
+ }
202
+ },
203
+ "notification-url": "https://packagist.org/downloads/",
204
+ "license": [
205
+ "MIT"
206
+ ],
207
+ "authors": [
208
+ {
209
+ "name": "Konstantin Kudryashov",
210
+ "email": "ever.zet@gmail.com",
211
+ "homepage": "http://everzet.com"
212
+ },
213
+ {
214
+ "name": "Pete Otaqui",
215
+ "email": "pete@otaqui.com",
216
+ "homepage": "https://github.com/pete-otaqui"
217
+ }
218
+ ],
219
+ "description": "Selenium2 (WebDriver) driver for Mink framework",
220
+ "homepage": "http://mink.behat.org/",
221
+ "keywords": [
222
+ "ajax",
223
+ "browser",
224
+ "javascript",
225
+ "selenium",
226
+ "testing",
227
+ "webdriver"
228
+ ],
229
+ "time": "2013-12-27 10:09:11"
230
+ },
231
+ {
232
+ "name": "codeception/codeception",
233
+ "version": "1.7.x-dev",
234
+ "source": {
235
+ "type": "git",
236
+ "url": "https://github.com/Codeception/Codeception.git",
237
+ "reference": "0117a58554a68d74904236d2355ce9a00cbef929"
238
+ },
239
+ "dist": {
240
+ "type": "zip",
241
+ "url": "https://api.github.com/repos/Codeception/Codeception/zipball/0117a58554a68d74904236d2355ce9a00cbef929",
242
+ "reference": "0117a58554a68d74904236d2355ce9a00cbef929",
243
+ "shasum": ""
244
+ },
245
+ "require": {
246
+ "behat/mink": "1.5.*",
247
+ "behat/mink-goutte-driver": "1.0.*",
248
+ "behat/mink-selenium2-driver": "1.1.*",
249
+ "facebook/webdriver": "< 0.3",
250
+ "monolog/monolog": "*",
251
+ "php": ">=5.3.3",
252
+ "phpunit/phpunit": "3.7.*",
253
+ "symfony/console": "~2.3",
254
+ "symfony/event-dispatcher": "~2.3",
255
+ "symfony/finder": "~2.3",
256
+ "symfony/yaml": "~2.3"
257
+ },
258
+ "require-dev": {
259
+ "behat/mink-selenium-driver": "1.1.*",
260
+ "behat/mink-zombie-driver": "1.1.*",
261
+ "facebook/php-sdk": "3.*",
262
+ "videlalvaro/php-amqplib": "*"
263
+ },
264
+ "bin": [
265
+ "codecept"
266
+ ],
267
+ "type": "library",
268
+ "autoload": {
269
+ "psr-0": {
270
+ "Codeception": "src"
271
+ }
272
+ },
273
+ "notification-url": "https://packagist.org/downloads/",
274
+ "license": [
275
+ "MIT"
276
+ ],
277
+ "authors": [
278
+ {
279
+ "name": "Michael Bodnarchuk",
280
+ "email": "davert@mail.ua",
281
+ "homepage": "http://codegyre.com"
282
+ }
283
+ ],
284
+ "description": "BDD-style testing framework",
285
+ "homepage": "http://codeception.com/",
286
+ "keywords": [
287
+ "BDD",
288
+ "TDD",
289
+ "acceptance testing",
290
+ "functional testing",
291
+ "unit testing"
292
+ ],
293
+ "time": "2013-12-26 21:14:11"
294
+ },
295
+ {
296
+ "name": "fabpot/goutte",
297
+ "version": "dev-master",
298
+ "source": {
299
+ "type": "git",
300
+ "url": "https://github.com/fabpot/Goutte.git",
301
+ "reference": "7c3221bbbeecbec9aa5c04cd7cc10e9684de0eb4"
302
+ },
303
+ "dist": {
304
+ "type": "zip",
305
+ "url": "https://api.github.com/repos/fabpot/Goutte/zipball/7c3221bbbeecbec9aa5c04cd7cc10e9684de0eb4",
306
+ "reference": "7c3221bbbeecbec9aa5c04cd7cc10e9684de0eb4",
307
+ "shasum": ""
308
+ },
309
+ "require": {
310
+ "ext-curl": "*",
311
+ "guzzle/http": ">=3.0.5,<3.8-dev",
312
+ "php": ">=5.3.0",
313
+ "symfony/browser-kit": "~2.1",
314
+ "symfony/css-selector": "~2.1",
315
+ "symfony/dom-crawler": "~2.1",
316
+ "symfony/finder": "~2.1",
317
+ "symfony/process": "~2.1"
318
+ },
319
+ "require-dev": {
320
+ "guzzle/plugin-history": ">=3.0.5,<3.8-dev",
321
+ "guzzle/plugin-mock": ">=3.0.5,<3.8-dev"
322
+ },
323
+ "type": "application",
324
+ "extra": {
325
+ "branch-alias": {
326
+ "dev-master": "1.0-dev"
327
+ }
328
+ },
329
+ "autoload": {
330
+ "psr-0": {
331
+ "Goutte": "."
332
+ }
333
+ },
334
+ "notification-url": "https://packagist.org/downloads/",
335
+ "license": [
336
+ "MIT"
337
+ ],
338
+ "authors": [
339
+ {
340
+ "name": "Fabien Potencier",
341
+ "email": "fabien@symfony.com"
342
+ }
343
+ ],
344
+ "description": "A simple PHP Web Scraper",
345
+ "homepage": "https://github.com/fabpot/Goutte",
346
+ "keywords": [
347
+ "scraper"
348
+ ],
349
+ "time": "2013-11-21 05:56:19"
350
+ },
351
+ {
352
+ "name": "facebook/webdriver",
353
+ "version": "v0.2.1",
354
+ "source": {
355
+ "type": "git",
356
+ "url": "https://github.com/facebook/php-webdriver.git",
357
+ "reference": "36bf555115da4cb03b131b4c04b681a75acd47d1"
358
+ },
359
+ "dist": {
360
+ "type": "zip",
361
+ "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/36bf555115da4cb03b131b4c04b681a75acd47d1",
362
+ "reference": "36bf555115da4cb03b131b4c04b681a75acd47d1",
363
+ "shasum": ""
364
+ },
365
+ "require": {
366
+ "php": ">=5.4.20"
367
+ },
368
+ "type": "library",
369
+ "autoload": {
370
+ "classmap": [
371
+ "lib/"
372
+ ]
373
+ },
374
+ "notification-url": "https://packagist.org/downloads/",
375
+ "license": [
376
+ "Apache-2.0"
377
+ ],
378
+ "description": "A php client for WebDriver",
379
+ "homepage": "https://github.com/facebook/php-webdriver",
380
+ "time": "2013-10-15 05:25:07"
381
+ },
382
+ {
383
+ "name": "guzzle/common",
384
+ "version": "dev-master",
385
+ "target-dir": "Guzzle/Common",
386
+ "source": {
387
+ "type": "git",
388
+ "url": "https://github.com/guzzle/common.git",
389
+ "reference": "eb4e34cac1b18583f0ee74bf6a9dda96bd771a1e"
390
+ },
391
+ "dist": {
392
+ "type": "zip",
393
+ "url": "https://api.github.com/repos/guzzle/common/zipball/eb4e34cac1b18583f0ee74bf6a9dda96bd771a1e",
394
+ "reference": "eb4e34cac1b18583f0ee74bf6a9dda96bd771a1e",
395
+ "shasum": ""
396
+ },
397
+ "require": {
398
+ "php": ">=5.3.2",
399
+ "symfony/event-dispatcher": ">=2.1"
400
+ },
401
+ "type": "library",
402
+ "extra": {
403
+ "branch-alias": {
404
+ "dev-master": "3.7-dev"
405
+ }
406
+ },
407
+ "autoload": {
408
+ "psr-0": {
409
+ "Guzzle\\Common": ""
410
+ }
411
+ },
412
+ "notification-url": "https://packagist.org/downloads/",
413
+ "license": [
414
+ "MIT"
415
+ ],
416
+ "description": "Common libraries used by Guzzle",
417
+ "homepage": "http://guzzlephp.org/",
418
+ "keywords": [
419
+ "collection",
420
+ "common",
421
+ "event",
422
+ "exception"
423
+ ],
424
+ "time": "2013-12-05 23:39:20"
425
+ },
426
+ {
427
+ "name": "guzzle/http",
428
+ "version": "dev-master",
429
+ "target-dir": "Guzzle/Http",
430
+ "source": {
431
+ "type": "git",
432
+ "url": "https://github.com/guzzle/http.git",
433
+ "reference": "b497e6b6a5a85751ae0c6858d677f7c4857dd171"
434
+ },
435
+ "dist": {
436
+ "type": "zip",
437
+ "url": "https://api.github.com/repos/guzzle/http/zipball/b497e6b6a5a85751ae0c6858d677f7c4857dd171",
438
+ "reference": "b497e6b6a5a85751ae0c6858d677f7c4857dd171",
439
+ "shasum": ""
440
+ },
441
+ "require": {
442
+ "guzzle/common": "self.version",
443
+ "guzzle/parser": "self.version",
444
+ "guzzle/stream": "self.version",
445
+ "php": ">=5.3.2"
446
+ },
447
+ "suggest": {
448
+ "ext-curl": "*"
449
+ },
450
+ "type": "library",
451
+ "extra": {
452
+ "branch-alias": {
453
+ "dev-master": "3.7-dev"
454
+ }
455
+ },
456
+ "autoload": {
457
+ "psr-0": {
458
+ "Guzzle\\Http": ""
459
+ }
460
+ },
461
+ "notification-url": "https://packagist.org/downloads/",
462
+ "license": [
463
+ "MIT"
464
+ ],
465
+ "authors": [
466
+ {
467
+ "name": "Michael Dowling",
468
+ "email": "mtdowling@gmail.com",
469
+ "homepage": "https://github.com/mtdowling"
470
+ }
471
+ ],
472
+ "description": "HTTP libraries used by Guzzle",
473
+ "homepage": "http://guzzlephp.org/",
474
+ "keywords": [
475
+ "Guzzle",
476
+ "client",
477
+ "curl",
478
+ "http",
479
+ "http client"
480
+ ],
481
+ "time": "2013-12-04 22:21:25"
482
+ },
483
+ {
484
+ "name": "guzzle/parser",
485
+ "version": "dev-master",
486
+ "target-dir": "Guzzle/Parser",
487
+ "source": {
488
+ "type": "git",
489
+ "url": "https://github.com/guzzle/parser.git",
490
+ "reference": "77cae6425bc3466e1e47bdf6d2eebc15a092dbcc"
491
+ },
492
+ "dist": {
493
+ "type": "zip",
494
+ "url": "https://api.github.com/repos/guzzle/parser/zipball/77cae6425bc3466e1e47bdf6d2eebc15a092dbcc",
495
+ "reference": "77cae6425bc3466e1e47bdf6d2eebc15a092dbcc",
496
+ "shasum": ""
497
+ },
498
+ "require": {
499
+ "php": ">=5.3.2"
500
+ },
501
+ "type": "library",
502
+ "extra": {
503
+ "branch-alias": {
504
+ "dev-master": "3.7-dev"
505
+ }
506
+ },
507
+ "autoload": {
508
+ "psr-0": {
509
+ "Guzzle\\Parser": ""
510
+ }
511
+ },
512
+ "notification-url": "https://packagist.org/downloads/",
513
+ "license": [
514
+ "MIT"
515
+ ],
516
+ "description": "Interchangeable parsers used by Guzzle",
517
+ "homepage": "http://guzzlephp.org/",
518
+ "keywords": [
519
+ "URI Template",
520
+ "cookie",
521
+ "http",
522
+ "message",
523
+ "url"
524
+ ],
525
+ "time": "2013-10-24 00:04:09"
526
+ },
527
+ {
528
+ "name": "guzzle/stream",
529
+ "version": "dev-master",
530
+ "target-dir": "Guzzle/Stream",
531
+ "source": {
532
+ "type": "git",
533
+ "url": "https://github.com/guzzle/stream.git",
534
+ "reference": "a86111d9ac7db31d65a053c825869409fe8fc83f"
535
+ },
536
+ "dist": {
537
+ "type": "zip",
538
+ "url": "https://api.github.com/repos/guzzle/stream/zipball/a86111d9ac7db31d65a053c825869409fe8fc83f",
539
+ "reference": "a86111d9ac7db31d65a053c825869409fe8fc83f",
540
+ "shasum": ""
541
+ },
542
+ "require": {
543
+ "guzzle/common": "self.version",
544
+ "php": ">=5.3.2"
545
+ },
546
+ "suggest": {
547
+ "guzzle/http": "To convert Guzzle request objects to PHP streams"
548
+ },
549
+ "type": "library",
550
+ "extra": {
551
+ "branch-alias": {
552
+ "dev-master": "3.7-dev"
553
+ }
554
+ },
555
+ "autoload": {
556
+ "psr-0": {
557
+ "Guzzle\\Stream": ""
558
+ }
559
+ },
560
+ "notification-url": "https://packagist.org/downloads/",
561
+ "license": [
562
+ "MIT"
563
+ ],
564
+ "authors": [
565
+ {
566
+ "name": "Michael Dowling",
567
+ "email": "mtdowling@gmail.com",
568
+ "homepage": "https://github.com/mtdowling"
569
+ }
570
+ ],
571
+ "description": "Guzzle stream wrapper component",
572
+ "homepage": "http://guzzlephp.org/",
573
+ "keywords": [
574
+ "Guzzle",
575
+ "component",
576
+ "stream"
577
+ ],
578
+ "time": "2013-07-30 22:07:23"
579
+ },
580
+ {
581
+ "name": "instaclick/php-webdriver",
582
+ "version": "1.2",
583
+ "source": {
584
+ "type": "git",
585
+ "url": "https://github.com/instaclick/php-webdriver.git",
586
+ "reference": "4e43ece4e3ad1c0601791bb9b376f24f51632ef5"
587
+ },
588
+ "dist": {
589
+ "type": "zip",
590
+ "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/4e43ece4e3ad1c0601791bb9b376f24f51632ef5",
591
+ "reference": "4e43ece4e3ad1c0601791bb9b376f24f51632ef5",
592
+ "shasum": ""
593
+ },
594
+ "require": {
595
+ "ext-curl": "*",
596
+ "php": ">=5.3.2"
597
+ },
598
+ "bin": [
599
+ "bin/webunit"
600
+ ],
601
+ "type": "library",
602
+ "extra": {
603
+ "branch-alias": {
604
+ "dev-master": "1.0.x-dev"
605
+ }
606
+ },
607
+ "autoload": {
608
+ "psr-0": {
609
+ "WebDriver": "lib/"
610
+ }
611
+ },
612
+ "notification-url": "https://packagist.org/downloads/",
613
+ "license": [
614
+ "Apache-2.0"
615
+ ],
616
+ "authors": [
617
+ {
618
+ "name": "Justin Bishop",
619
+ "email": "jubishop@gmail.com",
620
+ "role": "Developer"
621
+ },
622
+ {
623
+ "name": "Anthon Pang",
624
+ "email": "apang@softwaredevelopment.ca",
625
+ "role": "Fork Maintainer"
626
+ }
627
+ ],
628
+ "description": "PHP WebDriver for Selenium 2",
629
+ "homepage": "http://instaclick.com/",
630
+ "keywords": [
631
+ "browser",
632
+ "selenium",
633
+ "webdriver",
634
+ "webtest"
635
+ ],
636
+ "time": "2013-11-27 16:39:54"
637
+ },
638
+ {
639
+ "name": "monolog/monolog",
640
+ "version": "dev-master",
641
+ "source": {
642
+ "type": "git",
643
+ "url": "https://github.com/Seldaek/monolog.git",
644
+ "reference": "e92cb54c24e990c505be1b4af82e962d55d092df"
645
+ },
646
+ "dist": {
647
+ "type": "zip",
648
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e92cb54c24e990c505be1b4af82e962d55d092df",
649
+ "reference": "e92cb54c24e990c505be1b4af82e962d55d092df",
650
+ "shasum": ""
651
+ },
652
+ "require": {
653
+ "php": ">=5.3.0",
654
+ "psr/log": "~1.0"
655
+ },
656
+ "require-dev": {
657
+ "aws/aws-sdk-php": "~2.4.8",
658
+ "doctrine/couchdb": "dev-master",
659
+ "mlehner/gelf-php": "1.0.*",
660
+ "phpunit/phpunit": "~3.7.0",
661
+ "raven/raven": "0.5.*",
662
+ "ruflin/elastica": "0.90.*"
663
+ },
664
+ "suggest": {
665
+ "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
666
+ "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
667
+ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
668
+ "ext-mongo": "Allow sending log messages to a MongoDB server",
669
+ "mlehner/gelf-php": "Allow sending log messages to a GrayLog2 server",
670
+ "raven/raven": "Allow sending log messages to a Sentry server",
671
+ "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
672
+ },
673
+ "type": "library",
674
+ "extra": {
675
+ "branch-alias": {
676
+ "dev-master": "1.7.x-dev"
677
+ }
678
+ },
679
+ "autoload": {
680
+ "psr-0": {
681
+ "Monolog": "src/"
682
+ }
683
+ },
684
+ "notification-url": "https://packagist.org/downloads/",
685
+ "license": [
686
+ "MIT"
687
+ ],
688
+ "authors": [
689
+ {
690
+ "name": "Jordi Boggiano",
691
+ "email": "j.boggiano@seld.be",
692
+ "homepage": "http://seld.be",
693
+ "role": "Developer"
694
+ }
695
+ ],
696
+ "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
697
+ "homepage": "http://github.com/Seldaek/monolog",
698
+ "keywords": [
699
+ "log",
700
+ "logging",
701
+ "psr-3"
702
+ ],
703
+ "time": "2013-12-26 13:24:17"
704
+ },
705
+ {
706
+ "name": "phpunit/php-code-coverage",
707
+ "version": "1.2.x-dev",
708
+ "source": {
709
+ "type": "git",
710
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
711
+ "reference": "10c5b2c8b72a801eaad0031cd6a6a3686909c5a9"
712
+ },
713
+ "dist": {
714
+ "type": "zip",
715
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/10c5b2c8b72a801eaad0031cd6a6a3686909c5a9",
716
+ "reference": "10c5b2c8b72a801eaad0031cd6a6a3686909c5a9",
717
+ "shasum": ""
718
+ },
719
+ "require": {
720
+ "php": ">=5.3.3",
721
+ "phpunit/php-file-iterator": ">=1.3.0@stable",
722
+ "phpunit/php-text-template": ">=1.1.1@stable",
723
+ "phpunit/php-token-stream": ">=1.1.3@stable"
724
+ },
725
+ "require-dev": {
726
+ "phpunit/phpunit": "3.7.*@dev"
727
+ },
728
+ "suggest": {
729
+ "ext-dom": "*",
730
+ "ext-xdebug": ">=2.0.5"
731
+ },
732
+ "type": "library",
733
+ "extra": {
734
+ "branch-alias": {
735
+ "dev-master": "1.2.x-dev"
736
+ }
737
+ },
738
+ "autoload": {
739
+ "classmap": [
740
+ "PHP/"
741
+ ]
742
+ },
743
+ "notification-url": "https://packagist.org/downloads/",
744
+ "include-path": [
745
+ ""
746
+ ],
747
+ "license": [
748
+ "BSD-3-Clause"
749
+ ],
750
+ "authors": [
751
+ {
752
+ "name": "Sebastian Bergmann",
753
+ "email": "sb@sebastian-bergmann.de",
754
+ "role": "lead"
755
+ }
756
+ ],
757
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
758
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
759
+ "keywords": [
760
+ "coverage",
761
+ "testing",
762
+ "xunit"
763
+ ],
764
+ "time": "2013-11-01 09:17:11"
765
+ },
766
+ {
767
+ "name": "phpunit/php-file-iterator",
768
+ "version": "dev-master",
769
+ "source": {
770
+ "type": "git",
771
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
772
+ "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb"
773
+ },
774
+ "dist": {
775
+ "type": "zip",
776
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/acd690379117b042d1c8af1fafd61bde001bf6bb",
777
+ "reference": "acd690379117b042d1c8af1fafd61bde001bf6bb",
778
+ "shasum": ""
779
+ },
780
+ "require": {
781
+ "php": ">=5.3.3"
782
+ },
783
+ "type": "library",
784
+ "autoload": {
785
+ "classmap": [
786
+ "File/"
787
+ ]
788
+ },
789
+ "notification-url": "https://packagist.org/downloads/",
790
+ "include-path": [
791
+ ""
792
+ ],
793
+ "license": [
794
+ "BSD-3-Clause"
795
+ ],
796
+ "authors": [
797
+ {
798
+ "name": "Sebastian Bergmann",
799
+ "email": "sb@sebastian-bergmann.de",
800
+ "role": "lead"
801
+ }
802
+ ],
803
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
804
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
805
+ "keywords": [
806
+ "filesystem",
807
+ "iterator"
808
+ ],
809
+ "time": "2013-10-10 15:34:57"
810
+ },
811
+ {
812
+ "name": "phpunit/php-text-template",
813
+ "version": "dev-master",
814
+ "source": {
815
+ "type": "git",
816
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
817
+ "reference": "1eeef106193d2f8c539728e566bb4793071a9e18"
818
+ },
819
+ "dist": {
820
+ "type": "zip",
821
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/1eeef106193d2f8c539728e566bb4793071a9e18",
822
+ "reference": "1eeef106193d2f8c539728e566bb4793071a9e18",
823
+ "shasum": ""
824
+ },
825
+ "require": {
826
+ "php": ">=5.3.3"
827
+ },
828
+ "type": "library",
829
+ "autoload": {
830
+ "classmap": [
831
+ "Text/"
832
+ ]
833
+ },
834
+ "notification-url": "https://packagist.org/downloads/",
835
+ "include-path": [
836
+ ""
837
+ ],
838
+ "license": [
839
+ "BSD-3-Clause"
840
+ ],
841
+ "authors": [
842
+ {
843
+ "name": "Sebastian Bergmann",
844
+ "email": "sb@sebastian-bergmann.de",
845
+ "role": "lead"
846
+ }
847
+ ],
848
+ "description": "Simple template engine.",
849
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
850
+ "keywords": [
851
+ "template"
852
+ ],
853
+ "time": "2013-01-07 10:56:17"
854
+ },
855
+ {
856
+ "name": "phpunit/php-timer",
857
+ "version": "dev-master",
858
+ "source": {
859
+ "type": "git",
860
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
861
+ "reference": "19689d4354b295ee3d8c54b4f42c3efb69cbc17c"
862
+ },
863
+ "dist": {
864
+ "type": "zip",
865
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/19689d4354b295ee3d8c54b4f42c3efb69cbc17c",
866
+ "reference": "19689d4354b295ee3d8c54b4f42c3efb69cbc17c",
867
+ "shasum": ""
868
+ },
869
+ "require": {
870
+ "php": ">=5.3.3"
871
+ },
872
+ "type": "library",
873
+ "autoload": {
874
+ "classmap": [
875
+ "PHP/"
876
+ ]
877
+ },
878
+ "notification-url": "https://packagist.org/downloads/",
879
+ "include-path": [
880
+ ""
881
+ ],
882
+ "license": [
883
+ "BSD-3-Clause"
884
+ ],
885
+ "authors": [
886
+ {
887
+ "name": "Sebastian Bergmann",
888
+ "email": "sb@sebastian-bergmann.de",
889
+ "role": "lead"
890
+ }
891
+ ],
892
+ "description": "Utility class for timing",
893
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
894
+ "keywords": [
895
+ "timer"
896
+ ],
897
+ "time": "2013-08-02 07:42:54"
898
+ },
899
+ {
900
+ "name": "phpunit/php-token-stream",
901
+ "version": "dev-master",
902
+ "source": {
903
+ "type": "git",
904
+ "url": "https://github.com/sebastianbergmann/php-token-stream.git",
905
+ "reference": "292f4d5772dad5a12775be69f4a8dd663b20f103"
906
+ },
907
+ "dist": {
908
+ "type": "zip",
909
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/292f4d5772dad5a12775be69f4a8dd663b20f103",
910
+ "reference": "292f4d5772dad5a12775be69f4a8dd663b20f103",
911
+ "shasum": ""
912
+ },
913
+ "require": {
914
+ "ext-tokenizer": "*",
915
+ "php": ">=5.3.3"
916
+ },
917
+ "type": "library",
918
+ "extra": {
919
+ "branch-alias": {
920
+ "dev-master": "1.2-dev"
921
+ }
922
+ },
923
+ "autoload": {
924
+ "classmap": [
925
+ "PHP/"
926
+ ]
927
+ },
928
+ "notification-url": "https://packagist.org/downloads/",
929
+ "include-path": [
930
+ ""
931
+ ],
932
+ "license": [
933
+ "BSD-3-Clause"
934
+ ],
935
+ "authors": [
936
+ {
937
+ "name": "Sebastian Bergmann",
938
+ "email": "sb@sebastian-bergmann.de",
939
+ "role": "lead"
940
+ }
941
+ ],
942
+ "description": "Wrapper around PHP's tokenizer extension.",
943
+ "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
944
+ "keywords": [
945
+ "tokenizer"
946
+ ],
947
+ "time": "2013-10-21 14:03:39"
948
+ },
949
+ {
950
+ "name": "phpunit/phpunit",
951
+ "version": "3.7.x-dev",
952
+ "source": {
953
+ "type": "git",
954
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
955
+ "reference": "aa4789d63dc5fd8f2036e5867b94e481b201c807"
956
+ },
957
+ "dist": {
958
+ "type": "zip",
959
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/aa4789d63dc5fd8f2036e5867b94e481b201c807",
960
+ "reference": "aa4789d63dc5fd8f2036e5867b94e481b201c807",
961
+ "shasum": ""
962
+ },
963
+ "require": {
964
+ "ext-dom": "*",
965
+ "ext-pcre": "*",
966
+ "ext-reflection": "*",
967
+ "ext-spl": "*",
968
+ "php": ">=5.3.3",
969
+ "phpunit/php-code-coverage": "~1.2.1",
970
+ "phpunit/php-file-iterator": ">=1.3.1",
971
+ "phpunit/php-text-template": ">=1.1.1",
972
+ "phpunit/php-timer": ">=1.0.4",
973
+ "phpunit/phpunit-mock-objects": "~1.2.0",
974
+ "symfony/yaml": "~2.0"
975
+ },
976
+ "require-dev": {
977
+ "pear-pear/pear": "1.9.4"
978
+ },
979
+ "suggest": {
980
+ "ext-json": "*",
981
+ "ext-simplexml": "*",
982
+ "ext-tokenizer": "*",
983
+ "phpunit/php-invoker": ">=1.1.0,<1.2.0"
984
+ },
985
+ "bin": [
986
+ "composer/bin/phpunit"
987
+ ],
988
+ "type": "library",
989
+ "extra": {
990
+ "branch-alias": {
991
+ "dev-master": "3.7.x-dev"
992
+ }
993
+ },
994
+ "autoload": {
995
+ "classmap": [
996
+ "PHPUnit/"
997
+ ]
998
+ },
999
+ "notification-url": "https://packagist.org/downloads/",
1000
+ "include-path": [
1001
+ "",
1002
+ "../../symfony/yaml/"
1003
+ ],
1004
+ "license": [
1005
+ "BSD-3-Clause"
1006
+ ],
1007
+ "authors": [
1008
+ {
1009
+ "name": "Sebastian Bergmann",
1010
+ "email": "sebastian@phpunit.de",
1011
+ "role": "lead"
1012
+ }
1013
+ ],
1014
+ "description": "The PHP Unit Testing framework.",
1015
+ "homepage": "http://www.phpunit.de/",
1016
+ "keywords": [
1017
+ "phpunit",
1018
+ "testing",
1019
+ "xunit"
1020
+ ],
1021
+ "time": "2013-12-13 21:26:49"
1022
+ },
1023
+ {
1024
+ "name": "phpunit/phpunit-mock-objects",
1025
+ "version": "1.2.x-dev",
1026
+ "source": {
1027
+ "type": "git",
1028
+ "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
1029
+ "reference": "3e40f3b3f18c044a24688fe406440d7fd537744a"
1030
+ },
1031
+ "dist": {
1032
+ "type": "zip",
1033
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/3e40f3b3f18c044a24688fe406440d7fd537744a",
1034
+ "reference": "3e40f3b3f18c044a24688fe406440d7fd537744a",
1035
+ "shasum": ""
1036
+ },
1037
+ "require": {
1038
+ "php": ">=5.3.3",
1039
+ "phpunit/php-text-template": ">=1.1.1@stable"
1040
+ },
1041
+ "require-dev": {
1042
+ "pear-pear/pear": "1.9.4",
1043
+ "phpunit/phpunit": "3.7.*@dev"
1044
+ },
1045
+ "suggest": {
1046
+ "ext-soap": "*"
1047
+ },
1048
+ "type": "library",
1049
+ "extra": {
1050
+ "branch-alias": {
1051
+ "dev-master": "1.2.x-dev"
1052
+ }
1053
+ },
1054
+ "autoload": {
1055
+ "classmap": [
1056
+ "PHPUnit/"
1057
+ ]
1058
+ },
1059
+ "notification-url": "https://packagist.org/downloads/",
1060
+ "include-path": [
1061
+ ""
1062
+ ],
1063
+ "license": [
1064
+ "BSD-3-Clause"
1065
+ ],
1066
+ "authors": [
1067
+ {
1068
+ "name": "Sebastian Bergmann",
1069
+ "email": "sb@sebastian-bergmann.de",
1070
+ "role": "lead"
1071
+ }
1072
+ ],
1073
+ "description": "Mock Object library for PHPUnit",
1074
+ "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
1075
+ "keywords": [
1076
+ "mock",
1077
+ "xunit"
1078
+ ],
1079
+ "time": "2013-07-23 04:42:59"
1080
+ },
1081
+ {
1082
+ "name": "psr/log",
1083
+ "version": "dev-master",
1084
+ "source": {
1085
+ "type": "git",
1086
+ "url": "https://github.com/php-fig/log.git",
1087
+ "reference": "65f363ac44058796a8e1428cf41e6d92d8a75ddc"
1088
+ },
1089
+ "dist": {
1090
+ "type": "zip",
1091
+ "url": "https://api.github.com/repos/php-fig/log/zipball/65f363ac44058796a8e1428cf41e6d92d8a75ddc",
1092
+ "reference": "65f363ac44058796a8e1428cf41e6d92d8a75ddc",
1093
+ "shasum": ""
1094
+ },
1095
+ "type": "library",
1096
+ "extra": {
1097
+ "branch-alias": {
1098
+ "dev-master": "1.0.x-dev"
1099
+ }
1100
+ },
1101
+ "autoload": {
1102
+ "psr-0": {
1103
+ "Psr\\Log\\": ""
1104
+ }
1105
+ },
1106
+ "notification-url": "https://packagist.org/downloads/",
1107
+ "license": [
1108
+ "MIT"
1109
+ ],
1110
+ "authors": [
1111
+ {
1112
+ "name": "PHP-FIG",
1113
+ "homepage": "http://www.php-fig.org/"
1114
+ }
1115
+ ],
1116
+ "description": "Common interface for logging libraries",
1117
+ "keywords": [
1118
+ "log",
1119
+ "psr",
1120
+ "psr-3"
1121
+ ],
1122
+ "time": "2013-12-25 11:17:50"
1123
+ },
1124
+ {
1125
+ "name": "symfony/browser-kit",
1126
+ "version": "dev-master",
1127
+ "target-dir": "Symfony/Component/BrowserKit",
1128
+ "source": {
1129
+ "type": "git",
1130
+ "url": "https://github.com/symfony/BrowserKit.git",
1131
+ "reference": "861519d1a6375974f97cad72540710e0e18f4595"
1132
+ },
1133
+ "dist": {
1134
+ "type": "zip",
1135
+ "url": "https://api.github.com/repos/symfony/BrowserKit/zipball/861519d1a6375974f97cad72540710e0e18f4595",
1136
+ "reference": "861519d1a6375974f97cad72540710e0e18f4595",
1137
+ "shasum": ""
1138
+ },
1139
+ "require": {
1140
+ "php": ">=5.3.3",
1141
+ "symfony/dom-crawler": "~2.0"
1142
+ },
1143
+ "require-dev": {
1144
+ "symfony/css-selector": "~2.0",
1145
+ "symfony/process": "~2.0"
1146
+ },
1147
+ "suggest": {
1148
+ "symfony/process": ""
1149
+ },
1150
+ "type": "library",
1151
+ "extra": {
1152
+ "branch-alias": {
1153
+ "dev-master": "2.5-dev"
1154
+ }
1155
+ },
1156
+ "autoload": {
1157
+ "psr-0": {
1158
+ "Symfony\\Component\\BrowserKit\\": ""
1159
+ }
1160
+ },
1161
+ "notification-url": "https://packagist.org/downloads/",
1162
+ "license": [
1163
+ "MIT"
1164
+ ],
1165
+ "authors": [
1166
+ {
1167
+ "name": "Fabien Potencier",
1168
+ "email": "fabien@symfony.com"
1169
+ },
1170
+ {
1171
+ "name": "Symfony Community",
1172
+ "homepage": "http://symfony.com/contributors"
1173
+ }
1174
+ ],
1175
+ "description": "Symfony BrowserKit Component",
1176
+ "homepage": "http://symfony.com",
1177
+ "time": "2013-12-26 07:59:17"
1178
+ },
1179
+ {
1180
+ "name": "symfony/console",
1181
+ "version": "dev-master",
1182
+ "target-dir": "Symfony/Component/Console",
1183
+ "source": {
1184
+ "type": "git",
1185
+ "url": "https://github.com/symfony/Console.git",
1186
+ "reference": "eded85f92af004e594f8a1df9fbd3ae6f1ba5cd7"
1187
+ },
1188
+ "dist": {
1189
+ "type": "zip",
1190
+ "url": "https://api.github.com/repos/symfony/Console/zipball/eded85f92af004e594f8a1df9fbd3ae6f1ba5cd7",
1191
+ "reference": "eded85f92af004e594f8a1df9fbd3ae6f1ba5cd7",
1192
+ "shasum": ""
1193
+ },
1194
+ "require": {
1195
+ "php": ">=5.3.3"
1196
+ },
1197
+ "require-dev": {
1198
+ "symfony/event-dispatcher": "~2.1"
1199
+ },
1200
+ "suggest": {
1201
+ "symfony/event-dispatcher": ""
1202
+ },
1203
+ "type": "library",
1204
+ "extra": {
1205
+ "branch-alias": {
1206
+ "dev-master": "2.5-dev"
1207
+ }
1208
+ },
1209
+ "autoload": {
1210
+ "psr-0": {
1211
+ "Symfony\\Component\\Console\\": ""
1212
+ }
1213
+ },
1214
+ "notification-url": "https://packagist.org/downloads/",
1215
+ "license": [
1216
+ "MIT"
1217
+ ],
1218
+ "authors": [
1219
+ {
1220
+ "name": "Fabien Potencier",
1221
+ "email": "fabien@symfony.com"
1222
+ },
1223
+ {
1224
+ "name": "Symfony Community",
1225
+ "homepage": "http://symfony.com/contributors"
1226
+ }
1227
+ ],
1228
+ "description": "Symfony Console Component",
1229
+ "homepage": "http://symfony.com",
1230
+ "time": "2013-12-26 07:59:17"
1231
+ },
1232
+ {
1233
+ "name": "symfony/css-selector",
1234
+ "version": "dev-master",
1235
+ "target-dir": "Symfony/Component/CssSelector",
1236
+ "source": {
1237
+ "type": "git",
1238
+ "url": "https://github.com/symfony/CssSelector.git",
1239
+ "reference": "1513e7b4c1f4f8e937a6bc30159793014c0abdb9"
1240
+ },
1241
+ "dist": {
1242
+ "type": "zip",
1243
+ "url": "https://api.github.com/repos/symfony/CssSelector/zipball/1513e7b4c1f4f8e937a6bc30159793014c0abdb9",
1244
+ "reference": "1513e7b4c1f4f8e937a6bc30159793014c0abdb9",
1245
+ "shasum": ""
1246
+ },
1247
+ "require": {
1248
+ "php": ">=5.3.3"
1249
+ },
1250
+ "type": "library",
1251
+ "extra": {
1252
+ "branch-alias": {
1253
+ "dev-master": "2.5-dev"
1254
+ }
1255
+ },
1256
+ "autoload": {
1257
+ "psr-0": {
1258
+ "Symfony\\Component\\CssSelector\\": ""
1259
+ }
1260
+ },
1261
+ "notification-url": "https://packagist.org/downloads/",
1262
+ "license": [
1263
+ "MIT"
1264
+ ],
1265
+ "authors": [
1266
+ {
1267
+ "name": "Fabien Potencier",
1268
+ "email": "fabien@symfony.com"
1269
+ },
1270
+ {
1271
+ "name": "Symfony Community",
1272
+ "homepage": "http://symfony.com/contributors"
1273
+ },
1274
+ {
1275
+ "name": "Jean-François Simon",
1276
+ "email": "jeanfrancois.simon@sensiolabs.com"
1277
+ }
1278
+ ],
1279
+ "description": "Symfony CssSelector Component",
1280
+ "homepage": "http://symfony.com",
1281
+ "time": "2013-11-24 20:17:07"
1282
+ },
1283
+ {
1284
+ "name": "symfony/dom-crawler",
1285
+ "version": "dev-master",
1286
+ "target-dir": "Symfony/Component/DomCrawler",
1287
+ "source": {
1288
+ "type": "git",
1289
+ "url": "https://github.com/symfony/DomCrawler.git",
1290
+ "reference": "0210b8ab56377df771940163ea3b07c3d4a7e0bc"
1291
+ },
1292
+ "dist": {
1293
+ "type": "zip",
1294
+ "url": "https://api.github.com/repos/symfony/DomCrawler/zipball/0210b8ab56377df771940163ea3b07c3d4a7e0bc",
1295
+ "reference": "0210b8ab56377df771940163ea3b07c3d4a7e0bc",
1296
+ "shasum": ""
1297
+ },
1298
+ "require": {
1299
+ "php": ">=5.3.3"
1300
+ },
1301
+ "require-dev": {
1302
+ "symfony/css-selector": "~2.0"
1303
+ },
1304
+ "suggest": {
1305
+ "symfony/css-selector": ""
1306
+ },
1307
+ "type": "library",
1308
+ "extra": {
1309
+ "branch-alias": {
1310
+ "dev-master": "2.5-dev"
1311
+ }
1312
+ },
1313
+ "autoload": {
1314
+ "psr-0": {
1315
+ "Symfony\\Component\\DomCrawler\\": ""
1316
+ }
1317
+ },
1318
+ "notification-url": "https://packagist.org/downloads/",
1319
+ "license": [
1320
+ "MIT"
1321
+ ],
1322
+ "authors": [
1323
+ {
1324
+ "name": "Fabien Potencier",
1325
+ "email": "fabien@symfony.com"
1326
+ },
1327
+ {
1328
+ "name": "Symfony Community",
1329
+ "homepage": "http://symfony.com/contributors"
1330
+ }
1331
+ ],
1332
+ "description": "Symfony DomCrawler Component",
1333
+ "homepage": "http://symfony.com",
1334
+ "time": "2013-12-26 07:59:17"
1335
+ },
1336
+ {
1337
+ "name": "symfony/event-dispatcher",
1338
+ "version": "dev-master",
1339
+ "target-dir": "Symfony/Component/EventDispatcher",
1340
+ "source": {
1341
+ "type": "git",
1342
+ "url": "https://github.com/symfony/EventDispatcher.git",
1343
+ "reference": "bdab22742ef40a9c5a6d000da19a7691f7efbb59"
1344
+ },
1345
+ "dist": {
1346
+ "type": "zip",
1347
+ "url": "https://api.github.com/repos/symfony/EventDispatcher/zipball/bdab22742ef40a9c5a6d000da19a7691f7efbb59",
1348
+ "reference": "bdab22742ef40a9c5a6d000da19a7691f7efbb59",
1349
+ "shasum": ""
1350
+ },
1351
+ "require": {
1352
+ "php": ">=5.3.3"
1353
+ },
1354
+ "require-dev": {
1355
+ "symfony/dependency-injection": "~2.0"
1356
+ },
1357
+ "suggest": {
1358
+ "symfony/dependency-injection": "",
1359
+ "symfony/http-kernel": ""
1360
+ },
1361
+ "type": "library",
1362
+ "extra": {
1363
+ "branch-alias": {
1364
+ "dev-master": "2.5-dev"
1365
+ }
1366
+ },
1367
+ "autoload": {
1368
+ "psr-0": {
1369
+ "Symfony\\Component\\EventDispatcher\\": ""
1370
+ }
1371
+ },
1372
+ "notification-url": "https://packagist.org/downloads/",
1373
+ "license": [
1374
+ "MIT"
1375
+ ],
1376
+ "authors": [
1377
+ {
1378
+ "name": "Fabien Potencier",
1379
+ "email": "fabien@symfony.com"
1380
+ },
1381
+ {
1382
+ "name": "Symfony Community",
1383
+ "homepage": "http://symfony.com/contributors"
1384
+ }
1385
+ ],
1386
+ "description": "Symfony EventDispatcher Component",
1387
+ "homepage": "http://symfony.com",
1388
+ "time": "2013-12-18 17:16:40"
1389
+ },
1390
+ {
1391
+ "name": "symfony/finder",
1392
+ "version": "dev-master",
1393
+ "target-dir": "Symfony/Component/Finder",
1394
+ "source": {
1395
+ "type": "git",
1396
+ "url": "https://github.com/symfony/Finder.git",
1397
+ "reference": "46881af03b48e942001e8e9450c2c4ccaeccfc8d"
1398
+ },
1399
+ "dist": {
1400
+ "type": "zip",
1401
+ "url": "https://api.github.com/repos/symfony/Finder/zipball/46881af03b48e942001e8e9450c2c4ccaeccfc8d",
1402
+ "reference": "46881af03b48e942001e8e9450c2c4ccaeccfc8d",
1403
+ "shasum": ""
1404
+ },
1405
+ "require": {
1406
+ "php": ">=5.3.3"
1407
+ },
1408
+ "type": "library",
1409
+ "extra": {
1410
+ "branch-alias": {
1411
+ "dev-master": "2.5-dev"
1412
+ }
1413
+ },
1414
+ "autoload": {
1415
+ "psr-0": {
1416
+ "Symfony\\Component\\Finder\\": ""
1417
+ }
1418
+ },
1419
+ "notification-url": "https://packagist.org/downloads/",
1420
+ "license": [
1421
+ "MIT"
1422
+ ],
1423
+ "authors": [
1424
+ {
1425
+ "name": "Fabien Potencier",
1426
+ "email": "fabien@symfony.com"
1427
+ },
1428
+ {
1429
+ "name": "Symfony Community",
1430
+ "homepage": "http://symfony.com/contributors"
1431
+ }
1432
+ ],
1433
+ "description": "Symfony Finder Component",
1434
+ "homepage": "http://symfony.com",
1435
+ "time": "2013-11-26 16:42:52"
1436
+ },
1437
+ {
1438
+ "name": "symfony/process",
1439
+ "version": "dev-master",
1440
+ "target-dir": "Symfony/Component/Process",
1441
+ "source": {
1442
+ "type": "git",
1443
+ "url": "https://github.com/symfony/Process.git",
1444
+ "reference": "4d0f32a1b595204f5c370b46f385d11a97b8d1f9"
1445
+ },
1446
+ "dist": {
1447
+ "type": "zip",
1448
+ "url": "https://api.github.com/repos/symfony/Process/zipball/4d0f32a1b595204f5c370b46f385d11a97b8d1f9",
1449
+ "reference": "4d0f32a1b595204f5c370b46f385d11a97b8d1f9",
1450
+ "shasum": ""
1451
+ },
1452
+ "require": {
1453
+ "php": ">=5.3.3"
1454
+ },
1455
+ "type": "library",
1456
+ "extra": {
1457
+ "branch-alias": {
1458
+ "dev-master": "2.5-dev"
1459
+ }
1460
+ },
1461
+ "autoload": {
1462
+ "psr-0": {
1463
+ "Symfony\\Component\\Process\\": ""
1464
+ }
1465
+ },
1466
+ "notification-url": "https://packagist.org/downloads/",
1467
+ "license": [
1468
+ "MIT"
1469
+ ],
1470
+ "authors": [
1471
+ {
1472
+ "name": "Fabien Potencier",
1473
+ "email": "fabien@symfony.com"
1474
+ },
1475
+ {
1476
+ "name": "Symfony Community",
1477
+ "homepage": "http://symfony.com/contributors"
1478
+ }
1479
+ ],
1480
+ "description": "Symfony Process Component",
1481
+ "homepage": "http://symfony.com",
1482
+ "time": "2013-11-26 16:42:52"
1483
+ },
1484
+ {
1485
+ "name": "symfony/yaml",
1486
+ "version": "dev-master",
1487
+ "target-dir": "Symfony/Component/Yaml",
1488
+ "source": {
1489
+ "type": "git",
1490
+ "url": "https://github.com/symfony/Yaml.git",
1491
+ "reference": "1481f096caead542c2dfadd67d9fd6124d97e273"
1492
+ },
1493
+ "dist": {
1494
+ "type": "zip",
1495
+ "url": "https://api.github.com/repos/symfony/Yaml/zipball/1481f096caead542c2dfadd67d9fd6124d97e273",
1496
+ "reference": "1481f096caead542c2dfadd67d9fd6124d97e273",
1497
+ "shasum": ""
1498
+ },
1499
+ "require": {
1500
+ "php": ">=5.3.3"
1501
+ },
1502
+ "type": "library",
1503
+ "extra": {
1504
+ "branch-alias": {
1505
+ "dev-master": "2.5-dev"
1506
+ }
1507
+ },
1508
+ "autoload": {
1509
+ "psr-0": {
1510
+ "Symfony\\Component\\Yaml\\": ""
1511
+ }
1512
+ },
1513
+ "notification-url": "https://packagist.org/downloads/",
1514
+ "license": [
1515
+ "MIT"
1516
+ ],
1517
+ "authors": [
1518
+ {
1519
+ "name": "Fabien Potencier",
1520
+ "email": "fabien@symfony.com"
1521
+ },
1522
+ {
1523
+ "name": "Symfony Community",
1524
+ "homepage": "http://symfony.com/contributors"
1525
+ }
1526
+ ],
1527
+ "description": "Symfony Yaml Component",
1528
+ "homepage": "http://symfony.com",
1529
+ "time": "2013-11-26 16:42:52"
1530
+ }
1531
+ ],
1532
+ "aliases": [
1533
+
1534
+ ],
1535
+ "minimum-stability": "dev",
1536
+ "stability-flags": [
1537
+
1538
+ ],
1539
+ "platform": [
1540
+
1541
+ ],
1542
+ "platform-dev": [
1543
+
1544
+ ]
1545
+ }