-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1013 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "chrisharrison/vo-generator",
"description": "PHP value object generator",
"authors": [
{
"name": "Chris Harrison",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.0",
"twig/twig": "^3.0",
"symfony/yaml": "^5.0",
"php-di/php-di": "^6.0",
"ramsey/uuid": "^4.0",
"beberlei/assert": "^3.2",
"hassankhan/config": "^3.1",
"yosymfony/parser-utils": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5",
"phpspec/prophecy": "^1.10",
"slevomat/coding-standard": "^6.0"
},
"autoload": {
"psr-4": {
"ChrisHarrison\\VoGenerator\\": "src/"
},
"files": ["autoload.php"]
},
"bin": [
"bin/vogen"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}