-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.22 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
{
"name": "codelicia/depreday",
"description": "Let's commemorate deprecations' anniversary 🎂",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/codelicia/depreday",
"keywords": [
"deprecation",
"code quality",
"troll"
],
"authors": [
{
"name": "Jefersson Nathan",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Codelicia\\Depreday\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeliciaTest\\Depreday\\": "tests/"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"symfony/console": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"azjezz/psl": "^2.3.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^5.0",
"maglnet/composer-require-checker": "^4.2"
},
"bin": [
"bin/depreday"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}