-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "othyn/php-enum-enhancements",
"description": "Adds some helpful enum traits to the glorious new PHP Enum type.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ben",
"email": "git@othyn.com",
"homepage": "https://othyn.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.13",
"friendsofphp/php-cs-fixer": "^3.6"
},
"autoload": {
"psr-4": {
"Othyn\\PhpEnumEnhancements\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Othyn\\Tests\\": "tests"
}
},
"scripts": {
"docker-build": "docker-compose build",
"docker-up": "docker-compose up -d",
"docker-shell": "docker-compose run --rm testing /bin/sh",
"style": "vendor/bin/php-cs-fixer fix",
"test": "docker-compose run --rm testing vendor/bin/phpunit",
"test-local": "XDEBUG_MODE=coverage vendor/bin/phpunit"
}
}