-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
32 lines (32 loc) · 991 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "atoum/json-schema-extension",
"type": "library",
"description": "JSON Schema extension for atoum, the simple modern and intuitive unit testing framework for PHP 5.3+",
"keywords": ["TDD", "atoum", "test", "unit testing", "json", "atoum-extension"],
"homepage": "http://www.atoum.org",
"license": "BSD-3-Clause",
"authors": [
{
"name": "jubianchi",
"email": "[email protected]"
}
],
"minimum-stability": "beta",
"require": {
"php": "^5.6.0 || ^7.0.0",
"atoum/atoum": "^3.0",
"justinrainbow/json-schema": ">=3.0.0 <=6.0.0"
},
"require-dev": {
"atoum/praspel-extension": "^0.16||^0.17",
"hoa/praspel": "^1.16.01.14",
"hoa/compiler": "^3.16.08.15",
"hoa/iterator": "^2.16.03.15"
},
"autoload": {
"psr-4": {
"mageekguy\\atoum\\jsonSchema\\": "classes"
},
"files": ["configuration.php"]
}
}