|
1 | 1 | { |
2 | | - "name": "hackpack/hackunit", |
3 | | - "description": "An xUnit testing framework for Hack", |
4 | | - "type": "library", |
5 | | - "keywords": ["testing", "xunit", "hack", "hhvm", "hacklang"], |
6 | | - "license": "MIT", |
7 | | - "authors": [ |
8 | | - { |
9 | | - "name": "Brian Scaturro", |
10 | | - "email": "scaturrob@gmail.com", |
11 | | - "role": "Creator" |
12 | | - }, |
13 | | - { |
14 | | - "name": "Isaac Leinweber", |
15 | | - "email": "brotchen@gmail.com", |
16 | | - "role": "Developer" |
17 | | - } |
18 | | - ], |
19 | | - "minimum-stability" : "dev", |
20 | | - "require": { |
21 | | - "hhvm": "^3.11", |
22 | | - "facebook/definition-finder": "^1.0" |
23 | | - }, |
24 | | - "autoload": { |
25 | | - "psr-4": { |
26 | | - "HackPack\\HackUnit\\": "src/" |
27 | | - }, |
28 | | - "files": [ |
29 | | - "src/Event/Listeners.php" |
30 | | - ] |
| 2 | + "name": "hackpack/hackunit", |
| 3 | + "description": "An xUnit testing framework for Hack", |
| 4 | + "type": "library", |
| 5 | + "keywords": [ |
| 6 | + "testing", |
| 7 | + "xunit", |
| 8 | + "hack", |
| 9 | + "hhvm", |
| 10 | + "hacklang" |
| 11 | + ], |
| 12 | + "license": "MIT", |
| 13 | + "authors": [ |
| 14 | + { |
| 15 | + "name": "Brian Scaturro", |
| 16 | + "email": "scaturrob@gmail.com", |
| 17 | + "role": "Creator" |
31 | 18 | }, |
32 | | - "autoload-dev": { |
33 | | - "psr-4": { |
34 | | - "HackPack\\HackUnit\\Tests\\": "test" |
35 | | - } |
| 19 | + { |
| 20 | + "name": "Isaac Leinweber", |
| 21 | + "email": "brotchen@gmail.com", |
| 22 | + "role": "Developer" |
| 23 | + } |
| 24 | + ], |
| 25 | + "minimum-stability": "dev", |
| 26 | + "require": { |
| 27 | + "hhvm": "^3.11", |
| 28 | + "facebook/definition-finder": "^1.0" |
| 29 | + }, |
| 30 | + "autoload": { |
| 31 | + "psr-4": { |
| 32 | + "HackPack\\HackUnit\\": "src/" |
36 | 33 | }, |
37 | | - "bin": ["bin/hackunit"], |
38 | | - "scripts": { |
39 | | - "test": ["HackPack\\HackUnit\\HackUnit::selfTest"], |
40 | | - "format": "hh_format src; hh_format test;" |
| 34 | + "files": [ |
| 35 | + "src/Event/Listeners.php" |
| 36 | + ] |
| 37 | + }, |
| 38 | + "autoload-dev": { |
| 39 | + "psr-4": { |
| 40 | + "HackPack\\HackUnit\\Tests\\": "test" |
41 | 41 | } |
| 42 | + }, |
| 43 | + "bin": [ |
| 44 | + "bin/hackunit" |
| 45 | + ], |
| 46 | + "scripts": { |
| 47 | + "test": [ |
| 48 | + "hhvm test/self-test.php" |
| 49 | + ], |
| 50 | + "format": "hh_format src; hh_format test;" |
| 51 | + } |
42 | 52 | } |
0 commit comments