-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
47 lines (47 loc) · 1.37 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
{
"name": "crazycodr/standard-exceptions",
"description": "This project is aimed at providing additional standard exceptions to php. Many exceptions that are missing from the SPL are constantly being reproduced in different projects. By providing a package of high-quality, well organised exceptions, it will, in the long run, increase interoperability between projects.",
"license": "MIT",
"authors": [
{
"name": "Mathieu Dumoulin",
"email": "thecrazycodr@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Exceptions\\": "Exceptions/",
"Exceptions\\Helpers\\": "Helpers/"
}
},
"autoload-dev": {
"psr-4": {
"Exceptions\\Tests\\": "Tests/"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^7.1"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": [
"vendor/bin/php-cs-fixer --diff --dry-run -v fix Exceptions",
"vendor/bin/php-cs-fixer --diff --dry-run -v fix Helpers",
"vendor/bin/php-cs-fixer --diff --dry-run -v fix Tests"
],
"fix": [
"vendor/bin/php-cs-fixer --diff -v fix Exceptions",
"vendor/bin/php-cs-fixer --diff -v fix Helpers",
"vendor/bin/php-cs-fixer --diff -v fix Tests"
]
}
}