-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 800 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 800 Bytes
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
{
"name": "talentify/php-value-objects",
"description": "Provides some value objects.",
"type": "library",
"license": "lgpl-3.0",
"homepage": "https://github.com/talentify/php-value-objects",
"keywords": [
"value-objects", "vo", "ISO 3166", "ISO 639-1"
],
"require": {
"php": "^7.1.0 || ^8",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Talentify\\ValueObject\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Talentify\\ValueObject\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"scripts-descriptions": {
"test": "Run tests"
}
}