-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.18 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.18 KB
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
{
"name": "codebuds/generate-ts-bundle",
"description": "Generate typescript code from the php files",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Dennis de Best",
"email": "dennis@codebuds.com"
}
],
"require": {
"php": "^8.1",
"symfony/http-client": "^6.1|^7.0"
},
"autoload": {
"psr-4": {
"CodeBuds\\GenerateTsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "src/Tests/data"
}
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"rector/rector": "^0.15.21",
"symfony/framework-bundle": "^6.1|^7.0",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/console": "^6.1|^7.0"
},
"scripts": {
"cs-fix": [
"php-cs-fixer fix --config=.php-cs-fixer.dist.php"
],
"rector": [
"./vendor/bin/rector"
],
"clean": [
"composer rector && composer cs-fix"
],
"test": [
"php -dxdebug.mode=debug ./vendor/bin/simple-phpunit --configuration ./phpunit.xml.dist "
],
"coverage": [
"export XDEBUG_MODE=coverage && php ./vendor/bin/simple-phpunit --configuration ./phpunit.xml.dist --coverage-text"
]
}
}