-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.43 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.43 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "ptyhard/json-schema-bundle",
"description": "this bundles is json schema validation support.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "polidog",
"email": "polidogs@gmail.com"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"symfony/http-kernel": "~4.4|^5.0",
"symfony/config": "~4.4|^5.0",
"symfony/dependency-injection": "~4.4|^5.0",
"symfony/event-dispatcher": "~4.4|^5.0",
"symfony/http-foundation": "~4.4|^5.0",
"doctrine/common": "~2.7",
"justinrainbow/json-schema": "^5.2",
"symfony/cache": "~4.4|^5.0",
"psr/simple-cache": "^1.0",
"symfony/filesystem": "~4.4|^5.0",
"symfony/console": "~4.4|^5.0"
},
"autoload": {
"psr-4": {
"Ptyhard\\JsonSchemaBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ptyhard\\JsonSchemaBundle\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^2.16",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"cs": [
"php-cs-fixer fix -v --dry-run",
"phpcs src/"
],
"cs-fix": [
"php-cs-fixer fix -v",
"phpcbf src/"
],
"test": "phpunit",
"tests": ["@cs", "@test"]
}
}