-
Notifications
You must be signed in to change notification settings - Fork 8
/
example-composer.json
91 lines (91 loc) · 2.28 KB
/
example-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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "org/example",
"description": "Example composer.json for a project utilizing composer-test-scenarios.",
"license": "MIT",
"authors": [
{
"name": "Author Name",
"email": "[email protected]"
}
],
"autoload":{
"psr-4":{
"Org\\Example\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Org\\TestUtils\\": "tests/src"
}
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"g1a/composer-test-scenarios": "^1",
"phpunit/phpunit": "^4.8|^5.5.4",
"satooshi/php-coveralls": "^2",
"squizlabs/php_codesniffer": "^2.7"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "5.6"
}
},
"scripts": {
"cs": "phpcs --standard=PSR2 -n src",
"cbf": "phpcbf --standard=PSR2 -n src",
"unit": "phpunit --colors=always",
"lint": [
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"find tests/src -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"test": [
"@lint",
"@unit",
"@cs"
]
},
"extra": {
"scenarios": {
"symfony4": {
"require": {
"symfony/console": "^4.0"
},
"config": {
"platform": {
"php": "7.1.3"
}
}
},
"symfony2": {
"require": {
"symfony/console": "^2.8"
},
"config": {
"platform": {
"php": "5.4.8"
}
},
"scenario-options": {
"create-lockfile": "false"
}
},
"phpunit4": {
"require-dev": {
"phpunit/phpunit": "^4.8.36"
},
"config": {
"platform": {
"php": "5.4.8"
}
}
}
},
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}