-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
81 lines (81 loc) · 2.68 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "veewee/reflecta",
"description": "Unleash the Power of Optics in your code!",
"keywords": ["reflection", "lenses", "optics", "array-access", "isomorphisms"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"VeeWee\\Reflecta\\": "src/"
},
"files": [
"src/ArrayAccess/index_get.php",
"src/ArrayAccess/index_set.php",
"src/Lens/optional.php",
"src/Lens/compose.php",
"src/Lens/index.php",
"src/Lens/properties.php",
"src/Lens/property.php",
"src/Lens/read_only.php",
"src/Iso/compose.php",
"src/Iso/object_data.php",
"src/Reflect/class_attributes.php",
"src/Reflect/class_has_attribute.php",
"src/Reflect/class_is_dynamic.php",
"src/Reflect/instantiate.php",
"src/Reflect/object_attributes.php",
"src/Reflect/object_has_attribute.php",
"src/Reflect/object_is_dynamic.php",
"src/Reflect/properties_get.php",
"src/Reflect/properties_set.php",
"src/Reflect/property_get.php",
"src/Reflect/property_set.php",
"src/Reflect/Predicate/property_visibility.php"
]
},
"autoload-dev": {
"psr-4": {
"VeeWee\\Reflecta\\TestFixtures\\": "tests/fixtures/",
"VeeWee\\Reflecta\\SaTests\\": "tests/static-analyzer/",
"VeeWee\\Reflecta\\UnitTests\\": "tests/unit/"
}
},
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"azjezz/psl": "^2.7 || ^3.0"
},
"require-dev": {
"vimeo/psalm": "^5.15",
"phpunit/phpunit": "^10.4",
"friendsofphp/php-cs-fixer": "^3.38",
"veewee/composer-run-parallel": "^1.3",
"infection/infection": "^0.27.8"
},
"scripts": {
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php ./vendor/bin/php-cs-fixer fix --dry-run",
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 php ./vendor/bin/php-cs-fixer fix",
"psalm": "./vendor/bin/psalm --no-cache --stats",
"tests": "./vendor/bin/phpunit --coverage-text --color",
"testquality": "@parallel infection",
"infection": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/infection --show-mutations -v"
],
"ci": [
"@parallel cs psalm tests",
"@parallel infection"
]
},
"config": {
"allow-plugins": {
"veewee/composer-run-parallel": true,
"infection/extension-installer": true
}
}
}