Skip to content

Commit db80d19

Browse files
committed
Add ext-json to require and move roave/security-advisories to require-dev
1 parent 7514652 commit db80d19

File tree

1 file changed

+58
-52
lines changed

1 file changed

+58
-52
lines changed

composer.json

Lines changed: 58 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,62 @@
11
{
2-
"name": "event-engine/php-json-schema",
3-
"description": "Event Engine JSON Schema PHP Package",
4-
"homepage": "https://event-engine.io/",
5-
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Alexander Miertsch",
9-
"email": "[email protected]",
10-
"homepage": "http://www.prooph.de"
2+
"name": "event-engine/php-json-schema",
3+
"description": "Event Engine JSON Schema PHP Package",
4+
"homepage": "https://event-engine.io/",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Alexander Miertsch",
9+
"email": "[email protected]",
10+
"homepage": "http://www.prooph.de"
11+
},
12+
{
13+
"name": "Sandro Keil",
14+
"email": "[email protected]",
15+
"homepage": "http://prooph-software.com/"
16+
}
17+
],
18+
"require": {
19+
"php": "^7.2",
20+
"event-engine/php-data": "^0.1",
21+
"event-engine/php-engine-utils": "^0.1",
22+
"event-engine/php-schema": "^0.1",
23+
"ramsey/uuid": "^3.6"
1124
},
12-
{
13-
"name": "Sandro Keil",
14-
"email": "[email protected]",
15-
"homepage": "http://prooph-software.com/"
16-
}
17-
],
18-
"require": {
19-
"php": "^7.2",
20-
"roave/security-advisories": "dev-master",
21-
"event-engine/php-schema": "^0.1",
22-
"event-engine/php-data": "^0.1",
23-
"event-engine/php-engine-utils": "^0.1",
24-
"ramsey/uuid" : "^3.6"
25-
},
26-
"require-dev": {
27-
"phpunit/phpunit": "^7.0",
28-
"justinrainbow/json-schema": "^5.2",
29-
"opis/json-schema": "^1.0",
30-
"prooph/php-cs-fixer-config": "^0.3",
31-
"satooshi/php-coveralls": "^1.0",
32-
"malukenho/docheader": "^0.1.4"
33-
},
34-
"autoload": {
35-
"psr-4": {
36-
"EventEngine\\JsonSchema\\": "src/"
37-
}
38-
},
39-
"autoload-dev": {
40-
"psr-4": {
41-
"EventEngineTest\\JsonSchema\\": "tests/"
25+
"require-dev": {
26+
"ext-json": "*",
27+
"justinrainbow/json-schema": "^5.2",
28+
"malukenho/docheader": "^0.1.4",
29+
"opis/json-schema": "^1.0",
30+
"phpunit/phpunit": "^7.0",
31+
"prooph/php-cs-fixer-config": "^0.3",
32+
"roave/security-advisories": "dev-master",
33+
"satooshi/php-coveralls": "^1.0"
34+
},
35+
"autoload": {
36+
"psr-4": {
37+
"EventEngine\\JsonSchema\\": "src/"
38+
}
39+
},
40+
"autoload-dev": {
41+
"psr-4": {
42+
"EventEngineTest\\JsonSchema\\": "tests/"
43+
}
44+
},
45+
"prefer-stable": true,
46+
"config": {
47+
"sort-packages": true,
48+
"platform": {
49+
}
50+
},
51+
"scripts": {
52+
"check": [
53+
"@cs",
54+
"@docheader",
55+
"@test"
56+
],
57+
"docheader": "vendor/bin/docheader check examples/ src/ tests/",
58+
"cs": "php-cs-fixer fix -v --diff --dry-run",
59+
"cs-fix": "php-cs-fixer fix -v --diff",
60+
"test": "vendor/bin/phpunit"
4261
}
43-
},
44-
"prefer-stable": true,
45-
"scripts": {
46-
"check": [
47-
"@cs",
48-
"@docheader",
49-
"@test"
50-
],
51-
"docheader": "vendor/bin/docheader check examples/ src/ tests/",
52-
"cs": "php-cs-fixer fix -v --diff --dry-run",
53-
"cs-fix": "php-cs-fixer fix -v --diff",
54-
"test": "vendor/bin/phpunit"
55-
}
5662
}

0 commit comments

Comments
 (0)