forked from hostnet/accessor-generator-plugin-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "hostnet/accessor-generator-plugin-lib",
"type": "composer-plugin",
"description": "Generate get, set, add, remove methods on the fly.",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.0",
"ext-bcmath": "*",
"ext-json": "*",
"doctrine/annotations": "^1.14.3",
"doctrine/collections": "^1.8.0",
"doctrine/dbal": "^3.7.2",
"doctrine/inflector": "^2.0.8",
"doctrine/orm": "^2.17.2",
"symfony/filesystem": "^5.4||^6.0",
"twig/twig": "^3.9.3"
},
"require-dev": {
"composer/composer": "^2.0.0",
"hostnet/phpcs-tool": "^9.0.0",
"phpspec/prophecy": "^1.17",
"phpspec/prophecy-phpunit": "^2.1",
"phpunit/phpunit": "^9.6.0"
},
"autoload": {
"psr-4": {
"Hostnet\\Component\\AccessorGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Component\\AccessorGenerator\\Generator\\fixtures\\Generated\\": "test/Generator/fixtures/expected/",
"Hostnet\\Component\\AccessorGenerator\\": "test/"
},
"files": [
"test/annotation_loader.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"hostnet/*": true
}
},
"extra": {
"class": "Hostnet\\Component\\AccessorGenerator\\Plugin"
},
"archive": {
"exclude": [
"/test",
"/.gitignore",
"/phpunit.xml.dist",
"/phpcs.xml.dist",
"/cli-config.php"
]
}
}