-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.27 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "rlweb/jsonresume",
"description": "A package for JSON Resume for PHP. It includes the Datatypes and provides a parser.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^7.4",
"vimeo/psalm": "^3.0",
"swaggest/php-code-builder": "^0.2.3",
"jsonresume/resume-schema": "1.0.0",
"symfony/console": "^4.1",
"squizlabs/php_codesniffer": "^3.3"
},
"license": "MIT",
"authors": [
{
"name": "Rhys Laval",
"email": "rhyslaval@gmail.com"
}
],
"require": {
"php": "~7",
"swaggest/json-schema": "^0.12.5"
},
"autoload": {
"psr-4": { "Rlweb\\JSONResume\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Rlweb\\JSONResume\\Tests\\": "tests/",
"Rlweb\\JSONResume\\Dev\\": "src-dev/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "jsonresume/resume-schema",
"version": "v1.0.0",
"source": {
"url": "https://github.com/jsonresume/resume-schema.git",
"type": "git",
"reference": "v1.0.0"
}
}
}
]
}