-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 2.04 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 2.04 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
51
52
53
54
55
56
{
"name": "freshp/php-enumeration",
"type": "library",
"description": "This small package can represent a enumeration field. For example in a database or an api.",
"license": "MIT",
"homepage": "https://github.com/freshp/php-enumeration",
"autoload": {
"psr-4": {
"FreshP\\PhpEnumeration\\": "src/"
}
},
"require": {
"php": "^7.4|^8.0"
},
"autoload-dev": {
"psr-4": {
"FreshP\\PhpEnumeration\\Tests\\": "tests/"
}
},
"require-dev": {
"tm/tooly-composer-script": "^1.4"
},
"scripts": {
"post-install-cmd": "Tooly\\ScriptHandler::installPharTools",
"post-update-cmd": "Tooly\\ScriptHandler::installPharTools",
"quickcheck": [
"./vendor/bin/phpunit.phar --testdox",
"./vendor/bin/phpstan.phar analyse",
"./vendor/bin/phpcs.phar"
]
},
"extra": {
"tools": {
"phpunit": {
"url": "https://phar.phpunit.de/phpunit-9.5.1.phar",
"sign-url": "https://phar.phpunit.de/phpunit-9.5.1.phar.asc",
"force-replace": true
},
"phpcs": {
"url": "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.5.8/phpcs.phar",
"sign-url": "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.5.8/phpcs.phar.asc",
"force-replace": true
},
"phpcbf": {
"url": "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.5.8/phpcbf.phar",
"sign-url": "https://github.com/squizlabs/PHP_CodeSniffer/releases/download/3.5.8/phpcbf.phar.asc",
"force-replace": true
},
"phpstan": {
"url": "https://github.com/phpstan/phpstan/releases/download/0.12.69/phpstan.phar",
"sign-url": "https://github.com/phpstan/phpstan/releases/download/0.12.69/phpstan.phar.asc",
"force-replace": true
}
}
}
}